/*для переводчика*/
body {
    top: 0 !important;
}
.skiptranslate,
#goog-gt-tt,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
    height: 0 !important;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    background-color: unset !important;
    box-shadow: unset !important;
}
/*для переводчика*/

.header__lang {
    display: flex;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
}

.header__lang:hover {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.lang-selector {
    display: inline-block;
    position: relative;
}

.lang-selector svg {
    width: 30px;
    height: 30px;
}

.lang-selector .selected-lang {
    display: flex;
    align-items: center;
    /*padding: 5px 10px;*/
    border: 1px solid #ccc;
    border-radius: 50%;
}

.lang-selector .lang-options {
    position: absolute;
    top: calc(100% + 15px);
    left: -15px;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
    display: none;
}
.header__lang:hover .lang-options {
    display: block;
}

.lang-selector .lang-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    text-decoration: none;
    color: #333;
}

.lang-selector .lang-options a:hover {
    /*background: red;*/
    background: #f0f0f0;
}

@media only screen and (max-width: 1024px) {
    .header__lang {
        position: fixed;
        bottom: 5rem;
        left: 1rem;
        transform: scale(1.3);
        transform-origin: left;
    }
    .lang-selector .lang-options {
        position: absolute;
        top: unset;
        bottom: calc(100% + 15px);
        left: -15px;
        background: #fff;
        border: 1px solid #ccc;
        z-index: 10;
        display: none;
    }
    .header__lang:hover {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}