@media (max-width: 1024px) {
  .menu > .menu__items {
    display: flex;
    gap: 35px;
    flex-direction: column;
    justify-content: center;
    transition: left .25s;
    position: relative;
    left: 0;
  }

  .menu__items--open {
    left: -100vw;
  }

  .menu__item--level-0 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
  }

  .menu__item--level-0 > .menu__items {
    position: relative;
    z-index: 1;
  }

  .menu__item--expandable.menu__item--level-0 .menu__link--level-0 {
    position: relative;
    cursor: pointer;
  }
  
  .menu__item--expandable.menu__item--level-0 .menu__link--level-0:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-left: .5rem;
    width: .6875rem;
    height: .375rem;
    transform: rotate(90deg);
    background-size: cover;
    background-image: url('/themes/custom/dsz/res/icons/arrow_min--white.svg');
  }

  .menu__item-header,
  .menu__item-bottom {
    display: none;
  }

  .menu__item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: fixed;
    top: 9.375rem;
    left: 100vw;
    width: 100vw;
    padding: 0 25px 25px;
    box-sizing: border-box;
    background-color: var(--secondary);
    overflow: scroll;
    height: -webkit-fill-available;
    transition: left .25s;
  }

  .menu__items--open .menu__item-wrapper {
    left: 0;
  }

  .menu__mobile-arrow {
    position: fixed;
    top: 4.1rem;
    left: 100vw;
    height: 26px;
    width: 100vw;
    cursor: pointer;
    text-align: left;
    transition: left .25s;
  }

  .menu__mobile-arrow:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-color: #fff;
    transition: right 0.25s;
    clip-path: path('M4.91226 13.5653L12.9552 5.52243L11.5409 4.10822L1.79094 13.8582L1.08383 14.5653L1.79094 15.2724L11.5409 25.0224L12.9552 23.6082L4.91226 15.5653H26.0605V13.5653H4.91226Z');
  }

  .menu__items--open .menu__mobile-arrow {
    left: 25px;
  }

  .menu__link--level-1 {
    font-weight: 400;
  }

  .menu__link--level-1.menu__link--active {
    font-weight: 700;
  }

  .menu__mobile-newsletter {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: .875rem;
    color: #000;
    padding: 25px 0;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--brown);
    transition: left .25s;
  }

  .menu__items--open .menu__mobile-newsletter {
    left: -100vw;
  }

  .menu__item-newsletter {
    position: relative;
  }

  .menu__item-newsletter:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: .1875rem;
    right: -1.5625rem;
    width: .9375rem;
    height: .9375rem;
    background-color: #000;
    transition: right 0.25s;
    clip-path: path('M13.6549 8.62559C14.0166 8.20824 14.0166 7.53157 13.6549 7.11421L7.76056 0.313017C7.39885 -0.104339 6.8124 -0.104339 6.45069 0.313017C6.08899 0.730374 6.08899 1.40704 6.45069 1.82439L11.6901 7.8699L6.45069 13.9154C6.08899 14.3328 6.08899 15.0094 6.45069 15.4268C6.8124 15.8442 7.39885 15.8442 7.76056 15.4268L13.6549 8.62559ZM0 8.93861H13V6.8012H8.0972e-08L0 8.93861Z');
  }

  .menu__item-newsletter:hover:after {
    right: -2.5rem;
  }

  .menu__social-list {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .menu__item-social {
    margin-top: .625rem;
  }

  .menu__item-social a,
  .menu__item-social a:after {
    color: #686B5E !important;
    border-color: #686B5E !important;
  }
}
