@media all and (max-width: 1000px) {
  .no-scroll {
    overflow-y: hidden;
  }
  header {
    height: 72px;
    padding: 23px 16px;
  }
  header .bl-content-header {
    min-width: 100%;
  }
  header .bl-content-header .bl-navigation-panel {
    display: none;
  }
  header .bl-content-header .burger-menu {
    max-width: 24px;
    width: 100%;
    height: 24px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    list-style: none;
  }
  header .bl-content-header .burger-menu li {
    width: 16px;
    height: 2px;
    background: white;
    border-radius: 6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .bl-content-header .burger-menu.open li {
    position: absolute;
  }
  header .bl-content-header .burger-menu.open li:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .bl-content-header .burger-menu.open li:nth-of-type(2) {
    display: none;
  }
  header .bl-content-header .burger-menu.open li:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .bl-content-header .bl-background-blur {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    max-width: 393px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 24px 16px;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-not-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 24px;
    position: relative;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-not-auth p {
    display: block;
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgb(22, 25, 37);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-not-auth .bl-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    width: 100%;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-not-auth .bl-btns button {
    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;
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgb(130, 141, 156);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-not-auth .bl-btns button:nth-of-type(1), header .bl-content-header .bl-background-blur .bl-content-menu .bl-not-auth .bl-btns button:nth-of-type(2) {
    background: rgb(245, 248, 255);
    border-radius: 8px;
    width: 50%;
    height: 56px;
    padding: 0;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    position: relative;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-info-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-info-user .avatar {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-platform);
    border-radius: 50%;
    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;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-info-user .avatar::before {
    content: attr(data-name);
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    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;
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: rgb(22, 25, 37);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-info-user .bl-name-id h4 {
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgb(22, 25, 37);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-info-user .bl-name-id p {
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgb(130, 141, 156);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-btns a {
    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;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(249, 250, 251);
    border-radius: 50%;
    position: relative;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-btns a:hover::before {
    background: var(--color-platform) !important;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-btns a:nth-of-type(1)::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/support-v1.svg");
            mask-image: url("/assets/img/nav-bar/support-v1.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-auth .bl-btns a:nth-of-type(2)::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/settings-v1.svg");
            mask-image: url("/assets/img/nav-bar/settings-v1.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .btn-dropdown {
    display: none;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .dropdown {
    display: none;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    height: calc(100vh - 48px - 48px - 24px - 24px - 24px - 24px);
    overflow-y: scroll;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page p {
    display: block;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #ffffff;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li {
    width: 100%;
    height: 56px;
    padding: 16px;
    border-radius: 10px;
    background: rgb(245, 248, 255);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    width: 100%;
    height: 24px;
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgb(130, 141, 156);
    text-decoration: none;
    position: relative;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:hover {
    background: var(--color-platform);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:hover a {
    color: rgb(255, 255, 255);
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:hover a::before {
    background: rgb(255, 255, 255) !important;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:nth-of-type(1) a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/dashboard-v2.svg");
            mask-image: url("/assets/img/nav-bar/dashboard-v2.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:nth-of-type(2) a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/home-v1.svg");
            mask-image: url("/assets/img/nav-bar/home-v1.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:nth-of-type(3) a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/about-v1.svg");
            mask-image: url("/assets/img/nav-bar/about-v1.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:nth-of-type(4) a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/review-v1.svg");
            mask-image: url("/assets/img/nav-bar/review-v1.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur .bl-content-menu .bl-page .menu-burger li:nth-of-type(5) a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: rgb(130, 141, 156);
    -webkit-mask-image: url("/assets/img/nav-bar/exit-v1.svg");
            mask-image: url("/assets/img/nav-bar/exit-v1.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
  header .bl-content-header .bl-background-blur.open {
    right: 0;
  }
  header .bl-grid-left,
  header .bl-grid-right {
    width: calc(100% - 802px);
  }
}
@media all and (max-width: 768px) {
  header .bl-content-header {
    min-width: 361px;
  }
  header .bl-grid-left,
  header .bl-grid-right {
    width: calc(100% - 361px);
  }
}