.body-lock {
    overflow: hidden;
    height: 100vh;
}
header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    height: 61px;
    padding: 0 40px;
    z-index: 2001;
}
header .left,
header .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
header .left img {
    height: 25px;
    width: auto;
}
header .left .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 0 3px;
}
header .left .burger span,
header .left .burger.open span {
    background: #001136;
}
header .left .burger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    position: relative;
}
header .left .burger.open span:nth-child(2) {
    opacity: 0;
}
header .left .burger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
    position: relative;
}
.custom-select {
    position: relative;
    background: #F4F5F8;
    min-width: 110px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 14px;
    color: #001136;
    height: 32px;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
}
.custom-select .selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    height: 32px;
}
.custom-select .selected img {
    height: 18px;
    width: auto;
}
.custom-select .selected img.chevron {
    width: 10px;
    height: auto;
    margin-left: 4px;
}
div.multi_lang {
    position: absolute;
    left: 0;
    top: 61px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #fff;
    height: 100vh;
    width: 100%;
    padding: 50px 100px 0;
    z-index: 6666;
}
div.multi_lang div.backL {
    display: none;
}
div.multi_lang img.close {
    position: absolute;
    top: 60px;
    right: 100px;
    cursor: pointer;
}
div.multi_lang div.search {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
div.multi_lang div.search label {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #001136;
}
div.multi_lang div.search input[type="text"] {
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 8px 50px 8px 12px;
    font-size: 16px;
    line-height: 24px;
    color: #001136;
    max-width: 370px;
    outline: 1px solid #d8dae0;
    font-family: var(--font-family-base);
}
div.multi_lang div.search input[type="search"]:focus {
    outline: 2px solid #1e49bb;
}
div.multi_lang div.search > img {
    position: absolute;
    top: 80px;
    left: 330px;
}
div.multi_lang div.list_lang {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 10px 20px;
}
div.multi_lang div.list_lang div.country {
    width: calc((100% - 60px) / 4);
    min-width: 300px;
    transition: transform 0.2s ease-in-out;
}
div.multi_lang div.list_lang div.country:hover {
    transform: scale(1.05);
}
div.multi_lang div.list_lang div.country a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    color: #001136;
    padding: 10px;
}
div.multi_lang div.list_lang div.country a img {
    border-radius: 1px;
    border: 1px solid #eee;
}
div.multi_lang div.list_lang div.country a .nameC {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}
div.multi_lang div.list_lang div.country a .langC {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}
header .right {
    gap: 25px;
}
header .right .newMenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #001136;
}
header .right .newMenu .subMenuLink {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
header .right .newMenu .subMenuLink:after {
    content: '';
    background: url(../images/theme2021/svg/chevron_menu.svg);
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
}
header .right .newMenu a {
    text-decoration: none;
    color: inherit;
}
header .right .btnMenu {
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    color: #001136;
    border: 1px solid #001136;
    border-radius: 4px;
    padding: 5px 12px 4px;
}
header .right .mobile_lang {
    display: none;
}
.sub_dom {
    display: block;
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    border-radius: 10px;
}
.sub_dom .bottom-sub {
    margin-top: 20px;
}

@media (max-width: 1249px) {
    header .right .newMenu > *:first-child {
        display: none;
    }
}

@media (max-width: 1199px) {
    header { padding: 0 20px; }
    header .left .custom-select {
        display: none;
    }
    header nav.right {
        position: fixed;
        top: 61px;
        right: 0;
        bottom: 0;
        height: calc(100vh - 61px);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        padding: 0 0 40px;
    }
    header nav.right.show {
        transform: translateX(0);
    }
    header nav.right .newMenu {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        height: calc(100% - 50px);
        width: 100vw;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 40px 40px 0;
    }
    header nav.right .newMenu > * {
        width: 100%;
        font-size: 18px;
        line-height: 24px;
    }
    header .right .newMenu > *:first-child {
        display: block;
    }
    header .right .newMenu .subMenuLink {
        justify-content: space-between;
    }
    header .right .newMenu .subMenuLink:after {
        transform: rotate(-90deg);
        transition: transform 0.3s ease-in-out;
    }
    header .right .newMenu .subMenuLink[aria-expanded="true"]:after {
        transform: rotate(0deg);
    }
    header .right .btnMenu {
        margin: auto;
        width: calc(100% - 80px);
        text-align: center;
    }
    header .right .mobile_lang {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        color: #001136;
        width: 100%;
        padding: 0 40px;
    }
    header .right .mobile_lang .langL {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }
    header .left {
        width: 100%;
        justify-content: space-between;
    }
    header .left .burger {
        display: flex;
    }
    header .left .burger span {
        height: 3px;
        border-radius: 2px;
        width: 100%;
        display: block;
        transition: all 0.3s ease;
    }

    .sub_dom{
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        width: 100%;
        margin: 6px 0 0;
        border: 1px solid #eee;
        border-radius: 8px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none !important;
    }
    .sub_dom.is-open{
        display: block !important;
        padding: 0;
        margin: 0;
        box-shadow: none;
        border: 0;
    }
    .sub_dom div[class^="flex-col"] {
        width: 100%;
        gap: 20px;
    }
    .sub_dom div[class^="flex-col"] .col-sub .title.heavy {
        display: none;
    }
    .sub_dom div[class^="flex-col"] .col-sub {
        width: 100%;
    }
    .sub_dom .bottom-sub {
        display: none;
    }
    .sub_dom div[class^="flex-col"] .col-sub .elem-m {
        display: flex;
    }
    .sub_dom div[class^="flex-col"] .col-sub .elem-m img,
    .sub_dom div[class^="flex-col"] .col-sub .elem-m .desc {
        display: block;
    }
    .sub_dom div[class^="flex-col"] .col-sub .elem-m .title {
        margin-left: 0;
    }


    div.multi_lang {
        padding: 30px 20px;
        height: calc(100vh - 61px);
        width: 100vw;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    div.multi_lang div.search {
        gap: 20px;
    }
    div.multi_lang div.search > img {
        top: 112px;
    }
    div.multi_lang div.backL {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        width: max-content;
        color: #001136;
        font-weight: 600;
    }
    div.multi_lang div.backL .chevronL {
        transform: rotate(90deg);
    }
    div.multi_lang div.search label {
        padding-right: 50px;
    }
    div.multi_lang img.close {
        display: none;
        top: 30px;
        right: 20px;
    }
}

@media (max-width: 500px) {
    div.multi_lang {
        margin-top: 15px;
    }
    div.multi_lang div.search label {
        display: none;
    }
    div.multi_lang div.search input[type="text"] {
        width: 100%;
        max-width: 100%;
    }
    div.multi_lang div.search > img {
        top: 52px;
        right: 15px;
        left: unset;
    }
    div.multi_lang img.close {
        top: 0;
    }
}