/* lang */

#ytWidget{
    display: none;
}

.lang {
    position: relative;
    text-align: center;
    perspective: 700px;
}

.lang__link {
    cursor: pointer;
    transition: .3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 2px;
    padding: 4px;
    padding-bottom: 2px;
}

.lang__img {
    width: 42px;
    height: 28px;
    flex-shrink: 0;
    font-size: 10px;
    display: block;
    transition: .3s all;
}

.lang__link_sub:hover {
    filter: drop-shadow(0 0 3px rgb(136, 136, 136)) brightness(130%);
}


.lang__name {
    color: #737b84;
    font-size: 12px;
    line-height: 12px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.lang__link_sub {
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
    margin-bottom: 2px;
}

.lang__list {
    max-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    transition: .3s all;
    z-index: 10;
    line-height: 13px;
    transform-origin: center top;
    box-sizing: border-box;
    padding-top: 0;
    position: absolute;
    overflow: hidden;
    top: 34px;
    left: 0;
}

.lang__list.lang-select-active {
    max-height: 500px;
}

.lang__link_select {
    align-items: flex-start;
    text-align: center;
    font-size: 0;
}
