.top-header {
  margin-top: 35px;

  &-wrapper {
    padding: 17px 25px 16px 37px;
    border-radius: 20px;
    background: #262c3a url("./../images/background/bg-header.png") 0 0
      no-repeat;
    background-size: 100% 100%;

    &::before {
      border-radius: 20px;
      top: 8px;
      right: -7px;
      left: -7px;
      background-color: rgba(#262c3a, 0.62);
    }
  }

  &-logo {
    margin-right: 149px;
  }

  &-nav ul {
    li {
      &:not(:last-child) {
        margin-right: 28px;
      }

      a {
        font-weight: 500;

        &:hover {
          color: #8f2ffd;
        }
      }
    }
  }

  &-auth {
    margin-left: auto;

    i {
      margin-right: 4px;
      font-size: 19px;
    }
  }

  &-btn-nav {
    font-size: 18px;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    line-height: 40px;
  }

  @include lg {
    &-logo {
      margin-right: 48px;
    }
  }

  @include md {
    &-auth {
      height: 40px;
      line-height: 40px;
    }
  }

  @include xs {
    margin-top: 0;
    background: #262c3a url("./../images/background/bg-header-2.png") 0 0
      no-repeat;
    background-size: 100% 100%;

    &-wrapper {
      background: unset;
      padding: 16px 0;

      &::before {
        right: -12px;
        left: -12px;
        border-radius: 0;
      }
    }

    &-auth {
      max-width: 40px;

      i {
        margin-right: 0;
        color: #fff2f8;

        &::before {
          content: "\e90d";
        }
      }
    }
  }
}

.nav-responsive {
  z-index: 999;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;

  &,
  &-backdrop {
    @include fix;
  }

  &-backdrop {
    background-color: rgba(#000, 0.7);
    backdrop-filter: blur(8px);
  }

  &-content {
    top: 0;
    left: -280px;
    background-color: #202533;
    padding: 20px 12px;
    overflow: hidden auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 100%;
    width: 280px;
    transition-delay: 0s;

    &::-webkit-scrollbar {
      display: none;
    }

    ul {
      margin-top: 32px;

      li {
        &:not(:last-child) {
          margin-bottom: 10px;
        }

        a {
          line-height: 48px;
          color: #757D91;
          font-size: 16px;
          font-weight: 500;
          padding: 0 20px;
          @extend %radius-8;

          &:hover {
            color: #fff;
            background-color: rgba(#fff, .06);
          }
        }
      }
    }
  }

  &.opened {
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
  }

  &.opened &-content {
    transition-delay: 0.3s;
    left: 0;
  }
}