.mobile-menu-open {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    width: 30px;
    height: 18px;
    position: relative;
    margin-left: 30px;
}
.mobile-menu-open__button {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
}
.mobile-menu-open__button:after {
    content: "";
    display: block;
    width: 100%;
    left: 0;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    transition: 0.3s;
}
.mobile-menu-open__button:before {
    content: "";
    display: block;
    width: 100%;
    left: 0;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    transition: 0.3s;
}
.mobile-menu-open.active .mobile-menu-open__button {
    background-color: transparent;
}
.mobile-menu-open.active .mobile-menu-open__button:after {
    transform: rotate(-45deg);
    bottom: 0;
    margin: auto;
}
.mobile-menu-open.active .mobile-menu-open__button:before {
    transform: rotate(45deg);
    top: 0;
    margin: auto;
}

.mobile-menu {
    position: fixed;
    right: 0;
    width: 100%;
    height: calc(100% - 124px);
    z-index: 11;
    overflow-y: auto;
    overflow-x: hidden;
    left: 100%;
    transition: 0.3s linear;
    flex-direction: column;
    padding-bottom: 50px;
    padding-top: 15px;
    background-color: var(--light);
    top: 124px;
}
.mobile-menu__wrapper {
    padding-top: 12px;
    padding-bottom: 12px;
}
.mobile-menu.opened,
.mobile-menu.active,
.mobile-menu .nav_close.opened {
    left: 0;
    display: flex;
}
.mobile-menu li {
    list-style-type: none;
}
.mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    padding: 8px 25px;
    font-size: 16px;
    line-height: 22px;
}
.mobile-menu li a > svg {
    width: 18px;
    height: 18px;
    fill: transparent;
    stroke: #b01217;
    margin-left: 8px;
}
.mobile-menu__contact {
    flex: 0 100%;
    background: #d2e9ed;
    padding: 20px 25px 32px;
    width: 100%;
}
.mobile-menu__contact-wrap {
    display: grid;
    grid-template-columns: auto;
    row-gap: 24px;
}
.mobile-menu__contact-wrap > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.mobile-menu__contact-wrap .contact-address span {
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    color: #121212;
}
.mobile-menu__contact-wrap .contact-address span:not(:last-child) {
    margin-bottom: 6px;
}
.mobile-menu__contact-wrap .contact-phones__wrap span {
    margin-bottom: 6px;
}
.mobile-menu__contact-wrap .contact-phones__wrap .mobile-phone {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    text-decoration: underline;
    color: #121212;
}
.mobile-menu__contact-wrap .contact-email {
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    text-decoration: underline;
    color: #121212;
}
.mobile-menu__contact-wrap .mobile-social {
    width: 30px;
    height: 30px;
    margin-top: -4px;
}
.mobile-menu__contact-wrap .mobile-social svg {
    width: 100%;
    height: 100%;
    fill: #121212;
}

.mobile-contact {
    padding: 40px 25px 0;
}
.mobile-contact .email-wrap,
.mobile-contact .phone-wrap {
    text-align: start;
    margin-left: 0;
    margin-bottom: 20px;
}

.address__holder,
.phones__holder {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .mobile-menu-open {
        display: flex;
    }
    .mobile-hidden {
        display: none !important;
    }
}
@media (max-width: 992px) {
    .mobile-menu {
        top: 124px;
        height: calc(100% - 124px);
    }
}
/* @media (max-width: 767px) {
    .mobile-menu {
        top: 124px;
        height: calc(100% - 124px);
    }
} */
@media (max-width: 592px) {
    .mobile-menu {
        top: 123px;
        height: calc(100% - 123px);
    }
    .mobile-callback {
        width: 100% !important;
    }
} /*# sourceMappingURL=mobile-menu.css.map */
