/* language */

.language {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.language__img {
    margin: 2px;
    cursor: pointer;
    opacity: .5;
    width: 40px;
    height: 30px;
}
.language__img img {
	max-width: 100%;
}
.language__img:hover,
.language__img_active {
    opacity: 1;
}