.header-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .header-mobile {
        display: block;
        position: relative;
    }

    .header-mobile__content {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 7.5rem;
    }

    .header-mobile__logo img {
        display: block;
        max-height: calc(100% - 2rem);
        max-width: 20rem;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .header-mobile__logo {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        color: inherit;
        text-decoration: none;
        margin: 0 4.5rem;
        font-weight: 500;
        font-size: 2.2rem;
        height: 100%;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .header-mobile__phone-btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 7.5rem;
        height: 100%;
        color: inherit;
    }

    .header-mobile__phone-btn svg {
        width: 2rem;
        height: 2rem;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        fill: currentColor;
        fill-rule: evenodd;
    }

    .header-mobile__shadow {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2100;
        background: rgba(0, 0, 0, 0.8);
        padding: 3rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: end;
        justify-content: flex-end;
        transition: opacity 0.25s, visibility 0.25s;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header-mobile__shadow-container {
        background: var(--main-background-color);
        color: var(--main-text-color);
        border-radius: 5px;
        overflow: hidden;
    }

    .header-mobile__shadow._active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .header-mobile__menu-btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 7.5rem;
        height: 100%;
        color: inherit;
    }

    .header-mobile__menu-btn svg {
        width: 2rem;
        height: 1.2rem;
        fill: currentColor;
        fill-rule: evenodd;
        vertical-align: middle;
        display: block;
        position: relative;
        top: 1px;
    }

    .header-mobile__phone-target .dropdown__container.phone__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0;
    }

    .header-mobile__phone-target .phone__dropdown-item {
        border-bottom: 1px solid #E4E7F1;
        padding: 0;
        text-decoration: none;
        transition: color 0.25s;
        color: var(--main-text-color);
        margin-bottom: 0;
        line-height: 1.2;
        font-weight: 500;
        font-size: 1.5rem;
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        min-height: 5rem;
    }

    .header-mobile__phone-target .phone__num_dropdown {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .header-mobile__phone-target .phone__num_dropdown svg {
        width: 2rem;
        height: 2rem;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        fill: currentColor;
        fill-rule: evenodd;
    }
    .header-mobile__shadow-close {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        min-height: 5rem;
        padding: 1rem 2rem;
        color: var(--main-text-color);
        text-decoration: none;
        font-size: 1.5rem;
        line-height: 1.2;
        font-weight: 500;
        width: 100%;
        background: var(--main-background-color);
    }
}