/***********************************/
@font-face {
    font-family: 'Roboto';
    src: local('☺'), url('/fonts/Roboto-Cyrillic/roboto-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto-Medium';
    src: local('☺'), url('/fonts/Roboto-Cyrillic/roboto-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto-Light';
    src: local('☺'), url('/fonts/Roboto-Cyrillic/roboto-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto-Thin';
    src: local('☺'), url('/fonts/Roboto-Cyrillic/roboto-thin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/***********************************/
/********************************************/
/********************************************/
/********* CSS PreLoader ***************/

.css_preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32,33,39,0.9);
    z-index: 777;
    display: none;
}
.css_preloader.show {
    display: block;
}
.css_preloader-figura {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -75px 0 0 -75px;
    width: 150px;
    height: 150px;
    -webkit-perspective: 780px;
    perspective: 780px;
}
.css_preloader-line {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
.css_preloader-line.css_preloader-first {
    left: 0%;
    top: 0%;
    animation: cssload-rotate-one 1.0s linear infinite;
    -o-animation: cssload-rotate-one 1.0s linear infinite;
    -ms-animation: cssload-rotate-one 1.0s linear infinite;
    -webkit-animation: cssload-rotate-one 1.0s linear infinite;
    -moz-animation: cssload-rotate-one 1.0s linear infinite;
    border-bottom: 3px solid #d7df21;
}
.css_preloader-line.css_preloader-second {
    right: 0%;
    top: 0%;
    animation: cssload-rotate-two 1.0s linear infinite;
    -o-animation: cssload-rotate-two 1.0s linear infinite;
    -ms-animation: cssload-rotate-two 1.0s linear infinite;
    -webkit-animation: cssload-rotate-two 1.0s linear infinite;
    -moz-animation: cssload-rotate-two 1.0s linear infinite;
    border-right: 3px solid #ed1066;
}
.css_preloader-line.css_preloader-three {
    right: 0%;
    bottom: 0%;
    animation: cssload-rotate-three 1.0s linear infinite;
    -o-animation: cssload-rotate-three 1.0s linear infinite;
    -ms-animation: cssload-rotate-three 1.0s linear infinite;
    -webkit-animation: cssload-rotate-three 1.0s linear infinite;
    -moz-animation: cssload-rotate-three 1.0s linear infinite;
    border-top: 3px solid #892a7c;
}

@keyframes cssload-rotate-one {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-one {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes cssload-rotate-two {
    0% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-two {
    0% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes cssload-rotate-three {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-three {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}
/********************************************/
/********************************************/
/********************************************/
.header {
    height: 79px;
    width: 100%;
    position: fixed;
    z-index: 776;
    top: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #dae2e6;
}
.header_container {
    height: 100%;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: content-box;
}
.header_wrap {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.bgBorder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dae2e6;
    height: 80px;
    box-sizing: border-box;
}
.burgerMenu {
    display: none;
    width: 40px;
    height: 40px;
    background: url(https://mnogo.ru/enterpics/enter3136/pic963_188862.svg) no-repeat center;
    margin: 0 24px 0 0;
    z-index: 3;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}
.headerLogo {
    flex-basis: 12%;
    z-index: 3;
}
.headerLogo_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerLogo_link {
    display: inline-block;
    max-width: 136px;
}
.headerLogo_img {
    display: inline-block;
    width: 100%;
    height: auto;
}
.menu_wrap {
    height: 100%;
    flex-basis: 64%;
    margin: 0;
    z-index: 2;
    box-sizing: border-box;
}
.menu_list {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.menuList_item {
    height: 100%;
    margin: 0 22px 0 0;
    position: relative;
}
.menuList_item:last-of-type {
    margin: 0;
}
.menuList_item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    border-bottom: 3px solid #782882;
    transition: all .2s linear;
}
.menuList_item:hover:after {
    left: 0;
    width: 100%;
}
.menuList_item:hover .menuSecondList {
    display: block;
}
.menuList_item__lime:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    border-bottom: 3px solid #d2dc00;
    transition: all .2s linear;
}
.menuList_item__lime:hover:after {
    left: 0;
    width: 100%;
}
.menuList_link {
    display: flex;
    font: 500 14px/1.2em Montserrat,sans-serif;
    align-items: center;
    height: 100%;
    color: #1b2226;
    text-decoration: none;
    transition: all .3s ease
}
.menuList_link__mob {
    display: none;
    position: relative;
}
.menuList_link__desk {
    display: flex;
}
.menuList_arrow {
    display: none;
    width: 12px;
    height: 10px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 5px);
    right: 23px;
    margin: 0;
    transition: all .3s ease;
    background: url(https://mnogo.ru/enterpics/enter3137/pic963_189784.svg) no-repeat 50%;
}
.menuList_arrow.active {
    transform: rotate(180deg);
}
.menuSecondList {
    display: none;
    box-sizing: border-box;
    position: absolute;
    width: 284px;
    max-height: calc(100vh - 79px);
    overflow-y: auto;
    left: 0;
    top: 78px;
    padding: 8px;
    background: #fff;
    border: 1px solid #dae2e6;
    box-shadow: 0 4px 16px rgb(0 0 0 / 5%), 0 2px 6px rgb(0 0 0 / 10%), 0 6px 12px rgb(0 0 0 / 5%);
}
.menuSecindList.showMenu {
    display: block!important;
    transition: .3s ease-in;
}
@keyframes bounce-in {

    0% {
        max-height: 0;
    }

    80% {
        max-height: 200px;
    }

    100% {
        max-height: 999px;
    }
}

@keyframes bounce-out {

    0% {
        max-height: 999px;
    }

    20% {
        max-height: 200px;
    }

    100% {
        max-height: 0;
    }
}
.menu_listSecond {
    padding: 0;
    margin: 0;
}
.menuSecondList_item {
    display: block;
    list-style: none;
}
.menuSecondList_link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    transition: all .3s ease;
    text-decoration: none;
    color: #1b2226;
    font: 500 14px/1.2em Montserrat,sans-serif;
}
.menuSecondList_link:hover {
    background: #f3f8fa;
    text-decoration: none;
    color: #1b2226;
}
.signWrap {
    flex-basis: 24%;
}
.siginHeaderLoader {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}
.loader {
    height: 50px;
    width: 50px;
    position: relative;
}

.loader span {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    height: 32px;
    width: 32px;
}

.loader span:before,
.loader span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    border: 2px solid #531c5a;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: loader-6-1 1.5s cubic-bezier(.075, .82, .165, 1) infinite;
    animation: loader-6-1 1.5s cubic-bezier(.075, .82, .165, 1) infinite;
}

@keyframes loader-6-1 {

    0% {
        transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1.5);
        opacity: 0;
    }
}

.loader span:after {
    animation: loader-6-2 1.5s cubic-bezier(.075, .82, .165, 1) .25s infinite;
}

@keyframes loader-6-2 {

    0% {
        transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
}
.siginWrapDesc {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}
.ui-button {
    border-radius: 4px;
    border: none;
    position: relative;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}
.ui-button__void {
    background-color: #fff;
    color: #597380;
    transition: all .3s ease;
}
.ui-button__void:hover {
    color: #1b2226;
    background-color: #fff;
}
.ui-button_md {
    padding: 16px 32px;
    font: 400 16px/1.5em Montserrat,sans-serif;
}
.lnk-button {
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}
.lnk-button__primary-inversed {
    background-color: #d2dc00;
    border: 1px solid #d2dc00;
    color: #1b2226;
    transition: all .3s ease;
}
.lnk-button__primary-inversed:hover {
    background-color: #b9c200;
    border: 1px solid #b9c200;
    color: #000;
    text-decoration: none;
}
.lnk-button_md {
    padding: 16px 32px;
    font: 400 15px/1.5em "Montserrat",sans-serif;
}
.siginWrapMob {
    display: none;
    position: relative;
    z-index: 2;
}
.siginWrapMob_btn {
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    width: 40px;
    height: 40px;
    background-position: 50%;
    background: url(https://mnogo.ru/enterpics/enter3139/pic963_189808.svg) no-repeat center, #f3f8fa;
    border-radius: 50%;
    cursor: pointer;
}
.siginWrapDesc_btn {
    background: #fff!important;
}
.burgerClose {
    background: url(https://mnogo.ru/enterpics/enter3139/pic963_189917.svg) no-repeat 50%;
    position: relative;
    z-index: 2;
}
.usersMenuWrap {
    display: flex;
    justify-content: flex-end;
}
.usersMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.bonus {
    display: flex;
    align-items: center;
    margin: 0 16px 0 0;
    z-index: 2;
}
.bonus_img {
    margin: 0 8px 0 0;

}
.bonus_text {
    color: #1b2226;
    font: 500 14px/1.2em Montserrat,sans-serif;
    margin: 0;
    padding: 0;
}
.usersMenu_wrap {
    z-index: 1;
    width: 320px;
    max-height: calc(100vh - 79px);
    overflow-y: auto;
    background: #fff;
    position: absolute;
    top: 72px;
    right: -12px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 5%), 0 2px 6px rgb(0 0 0 / 10%), 0 6px 12px rgb(0 0 0 / 5%);
}
.userInfo {
    display: flex;
    align-items: center;
    padding: 12px 15px 12px 12px;
    background: #fff;
    cursor: pointer;
    border-radius: 3px;
    transition: all .3s ease;
    z-index: 2;
    box-sizing: border-box;
}
.userInfo:hover {
    background: #f3f8fa;
}
.userInfo:hover .userInfo_avatarj {
    background-color: #fff;
}
.userInfo_avatar {
    height: 40px;
    width: 40px;
    background-color: #f3f8fa;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(https://mnogo.ru/enterpics/enter3141/pic963_189927.svg);
    border-radius: 50%;
    margin: 0 12px 0 0;
    cursor: pointer;
}
.userInfo_name {
    font: 400 16px/1.5em Montserrat,sans-serif;
    color: #1b2226;
    margin: 0 11px 0 0;
    padding: 0;
}
.userInfo_arrow {
    width: 12px;
    height: 10px;
    transition: all .3s ease;
    background: url(https://mnogo.ru/enterpics/enter3141/pic963_190023.svg) no-repeat 50%;
}
.userInfo_arrow_active {
    transform: rotate(180deg);
}
.usersMenu_content {
    background: #fff;
    position: relative;
    z-index: 2;
}
.usersMenuInfo {
    width: calc(100% - 16px);
    padding: 16px;
    margin: 8px 8px 0;
    cursor: pointer;
    background: #782882;
    border-radius: 3px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    box-shadow: none;
    outline: none;
}
.usersMenuInfo.active {
    background: #49bd77;
}
.usersMenuInfo_name {
    color: #fff;
    font: 500 16px/1.2em Montserrat,sans-serif;
    text-align: left;
}
.usersMenuInfo_card {
    display: flex;
    margin: 4px 0 0;
    align-items: center;
}
.usersMenuInfo_cardText {
    color: #fff;
    font: 500 14px/1.2em Montserrat,sans-serif;
    margin: 0 8px 0 0;
}
.usersMenuInfo_cardNumber {
    color: #fff;
    font: 500 14px/1.2em Montserrat,sans-serif;
}
.usersMenuInfo_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.25);
    background-repeat: no-repeat;
    background-image: url(https://mnogo.ru/enterpics/enter3141/pic963_190024.svg),url(https://mnogo.ru/enterpics/enter3141/pic963_190025.svg);
    background-position: 50%,center bottom -30px;
    transition: all .3s ease;
}
.usersMenuInfo.active .usersMenuInfo_btn {
    background-position: center top -30px,50%;
}
.usersMenu_list {
    padding: 8px 8px 16px;
    background: #fff;
    margin: 0;
    list-style-type: none;
}
.usersMenu_link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    font: 500 14px/1.2em Montserrat,sans-serif;
    color: #1b2226;
    transition: all .3s ease;
    text-decoration: none;
    box-sizing: border-box;
}
.usersMenu_link:hover {
    background: #f3f8fa;
    text-decoration: none;
}
.usersMenu_line {
    width: 90%;
    height: 1px;
    background: #ebf0f2;
    border: none;
}
.socialHeader {
    background: rgba(45,57,64,.05);
    padding: 23px 25px 24px;
}
.socialHeader_list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.socialHeader_link {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
}
.socialHeader_link__vk {
    background-image: url(https://www.mnogo.ru/enterpics/enter3073/pic963_186534.png);
}
.socialHeader_link__od {
    background-image: url(https://www.mnogo.ru/enterpics/enter3073/pic963_186535.png);
}
.socialHeader_link__ru {
    background-image: url(https://www.mnogo.ru/enterpics/enter3073/pic963_186537.png);
}
.socialHeader_link__te {
    background-image: url(https://www.mnogo.ru/enterpics/enter3073/pic963_186536.png);
}
.header_auth {
    position: fixed;
    z-index: 776;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.sigin__bg {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #1b2226;
    opacity: .6;
}
.sigin__overlay {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    min-height: 100%;
}
.sigin__wrap {
    position: relative;
    z-index: 1;
    width: 440px;
    height: 703px;
}
.sigin__iframe {
    border: 0;
    border-radius: 6px;
    width:100%;
    height:100%;
}
.notif {
    position: fixed;
    z-index: 34;
    /*    top: 136px;*/
    left: 0;
    width: 100%;
    height: 0;
    top: 80px;
    /* no extra-promo*/
}
.notif_open {
    height: 120px;
}
.content-wrapper {
    padding: 80px 0 0 0;
}
.page-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1024px;
    padding: 0 20px;
    box-sizing: border-box;
}
/******************************************/
/* Это стили для адаптива НОВОСТЕЙ, он не полный, там куча разных блоков */

.homepage-news {
    padding: 35px 0 50px;
    background: #F2F2F2;
}
.redefinition_maxwidth {
    width: 100% !important;
    max-width: 600px !important;
}
.redefinition_maxwidth_img {
    width: 100% !important;
    height: auto !important;
}
.redefinition_minwidth {
    min-width: 100% !important;
}
.redefinition_half_width {
    width: 50% !important;
    vertical-align: top !important;
}
.appStyleWidth {
    width: auto !important;
    max-height: 280px !important;
}
a.move_restaurant {
    display: inline-block;
    vertical-align: top;
    padding: 20px 50px !important;
    background: #fe3410;
    text-align: center !important;
}
a.move_restaurant span {
    background-color: transparent !important;
    border-color: transparent !important;
    border-width: 0 !important;
    line-height: 20px !important;
}

/******************************************/





.show {
    display: block!important;
}
.hide {
    display: none;
}
.hideSegment {
    display: none;
}
@media (max-width: 1124px) {
    .burgerMenu {
        display: block;
    }
    .headerLogo {
        flex-basis: 30%;
    }
    .menu_list {
        flex-wrap: wrap;
        background: #fff;
    }
    .menuList_item {
        width: 100%;
        margin: 0;
        height: auto;
    }
    .menuList_item:hover:after {
        width: 0;
    }
    .menuList_item:hover .menuSecondList {
        display: none;
    }
    .menuList_item__lime:hover:after {
        width: 0;
    }
    .menuList_link {
        padding: 12px 18px;
        background: #fff;
    }
    .menuList_link:hover {
        background: #f3f8fa;
    }
    .menuList_link__mob {
        display: block;
    }
    .menuList_link__desk {
        display: none;
    }
    .menuSecondList {
        left: 276px;
        top: -8px;
        border: none;
    }
    .menu_wrap {
        display: none;
        width: 284px;
        height: auto;
        flex-wrap: wrap;
        position: absolute;
        top: 78px;
        left: -24px;
        margin: 0;
        background: #fff;
        padding: 8px;
        box-shadow: 0 4px 16px rgb(0 0 0 / 5%), 0 2px 6px rgb(0 0 0 / 10%), 0 6px 12px rgb(0 0 0 / 5%);
    }
    .signWrap {
        flex-basis: 70%;
    }
}
@media (max-width: 1024px) {
    .userInfo:hover {
        background: #fff;
    }
}
@media (max-width: 820px) {
    .notif_open {
        height: 174px;
    }
}
@media (max-width: 768px) {
    .header_container {
        padding: 0 12px 0 32px;
    }
    .headerLogo_link {
        width: 107px;
    }
    .headerLogo_img {
        width: 107px;
    }
    .menu_wrap {
        left: -32px;
    }

}
@media (max-width: 720px) {
    .notif_open {
        height: 238px;
    }
}
@media (max-width: 600px) {
    .menu_wrap {
        width: calc(100% + 44px);
        height: 100vh;
        overflow-y: auto;
        top: 0;
        padding: 79px 8px 8px;
        z-index: 1;
    }
    .menu_list {
        height: auto;
    }
    .menuList_arrow {
        display: block;
    }

    .menuSecondList {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        padding: 0 16px;
        border: none;
        box-shadow: none;
        max-height: none;
        /*      -webkit-animation: bounce-out .3s ease-in;
              animation: bounce-out .3s ease-in;*/
    }
    /*  .menuSecindList.showMenu {
            animation: bounce-in .3s ease-in;
      }*/
    .menuSecondList_link {
        font-size: 12px;
        color: #597380;
    }
    .siginWrapDesc {
        display: none;
    }
    .siginWrapMob {
        display: flex;
        justify-content: flex-end;
    }
    .bonus {
        display: none;
    }
    .bgBorder {
        z-index: 2;
        left: -32px;
        width: calc(100% + 44px);
    }
    .userInfo {
        padding: 0;
    }
    .userInfo_avatar {
        margin: 0;
    }
    .userInfo_name {
        display: none;
    }
    .userInfo_arrow {
        display: none;
    }
    .usersMenu_content {
        height: auto;
    }
    .usersMenu_wrap {
        width: 100vw;
        height: calc(100vh - 64px);
        max-height: none;
        top: -19px;
        padding: 79px 0 0;
        right: -12px;
        box-sizing: content-box;
    }
    .userInfo.open .userInfo_avatar {
        background-image: url(https://mnogo.ru/enterpics/enter3139/pic963_189917.svg);
    }
    .header_auth {
        top: 80px;
    }
    .sigin__bg {
        background: #fff;
        opacity: 1;
    }
    .sigin__overlay {
        min-height: auto;
    }
    .sigin__wrap {
        width: 100%;
        height: 750px;
    }
    .sigin__iframe {
        border-radius: 0;
    }
    .notif {
        top: 65px;
    }

}
@media (max-width: 500px) {
    .header {
        height: 64px;
    }
    .header_container {
        padding: 0 24px;
    }
    .burgerMenu {
        margin: 0 20px 0 0;
    }
    .menu_wrap {
        width: calc(100% + 48px);
        left: -24px;
        padding: 64px 8px 8px;
    }
    .menu_list {
        top: 64px;
    }
    .bgBorder {
        height: 65px;
        left: -24px;
        width: calc(100% + 48px);
    }
    .usersMenu_wrap {
        top: -12px;
        padding: 64px 0 0;
        right: -24px;
    }
    .header_auth {
        top: 65px;
    }
    .content-wrapper {
        padding: 65px 0 0 0;
    }
}
