.catalog__select .dropdown__button {
    padding: .5rem 1.5625rem;
}                        
select#mse2_sort {
  appearance: none;
  @supports (appearance: base-select) {
    &,
    &::picker(select) {
      appearance: base-select;
    }
  }
}

select#mse2_sort {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  color: #151515;
  padding-inline: 10px 30px;
  border-radius: 5px;
  border: 2px solid #e4e4e4;
  cursor: pointer;
  background: #e4e4e4;
  @supports (appearance: base-select) {
    padding-inline: 10px;
    background-image: none;
    &::picker-icon {
        font-family: icons;
        font-style: normal;
        font-size: .8rem;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 1.22rem;
        height: 1.22rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    &::picker(select) {
      padding: 0;
      margin-top: 5px;
      border: .0625rem solid rgba(228, 228, 228, .8);
      background: #151515;
      border-radius: 5px;
      font-weight: 400;
      color: #a4a7ae;
      opacity: 0;
      height: 0;
      overflow: clip;
      transition: height 0.5s ease-out, opacity 0.5s ease-out, overlay 0.5s,
        display 0.5s;

      transition-behavior: allow-discrete;
    }
    &:open::picker(select) {
      opacity: 1;
      height: calc-size(auto, size);
      overflow: auto;
      @starting-style {
        opacity: 0;
        height: 0;
      }
    }
    option {
      padding: 10px;
      border-top: 1px solid transparent;
      cursor: pointer;
      transition-property: color, background;
      transition-duration: 0.2s;
      transition-timing-function: ease-out;
      &:where(:hover, :focus, :active) {
        background: #151515;
        color: white;
      }
      &:checked {
        background: #e4e4e4;
        color: #151515;
      }
      &::checkmark {
        display: none;
      }
      &:first-child {
        border: 0;
      }
    }
  }
}