#header .menu {
  display: none;
}

@media screen and (max-width: 1023px) {
  #header .menu {
    display: block;
    position: fixed;
    top: 35px;
    right: 20px;
    z-index: 5;
    width: 30px;
    height: 19px;
    cursor: pointer;
  }
  #header .menu span {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color2);
    -webkit-box-shadow: 0 0 2px 1px #ffffff;
            box-shadow: 0 0 2px 1px #ffffff;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
  #header .menu span:nth-child(1) {
    top: 0;
  }
  #header .menu span:nth-child(2) {
    margin: 8px 0;
  }
  #header .menu span:nth-child(3) {
    top: 0;
  }
  #header #gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 50px;
    left: 0;
    z-index: 4;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    height: auto;
    margin-right: 0;
    padding: 10px;
    overflow-y: auto;
  }
  #header #gnav .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: auto;
  }
  #header #gnav .blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: auto;
  }
  #header #gnav .blocks li.qanda, #header #gnav .blocks li.contact, #header #gnav .blocks li.sell {
    width: auto;
    height: auto;
    background-color: transparent;
    color: inherit;
  }
  #header #gnav .blocks li.qanda::after, #header #gnav .blocks li.contact::after, #header #gnav .blocks li.sell::after {
    display: none;
  }
  body.open {
    overflow: hidden;
  }
  body.open #header .menu span {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #fff;
    text-decoration: none;
  }
  body.open #header .menu span:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  body.open #header .menu span:nth-child(2) {
    opacity: 0;
  }
  body.open #header .menu span:nth-child(3) {
    top: -13px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  body.open #header #gnav {
    visibility: visible;
    opacity: 1;
    background: rgba(28, 41, 147, 0.8);
  }
}/*# sourceMappingURL=sp_nav.css.map */