.language {
    position: absolute;
    width: 202px;
    height: 57px;
    margin: 20px 0 0;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 200;
    top: 30px;
    left: 50%;
    margin-left: 550px;
    font-family: Tahoma, Arial, Verdana, sans-serif;
}
.language .current {
    position: absolute;
    top: 0;
    height: 57px;
    font-weight: bold; 
    color: #3e1308;
    padding: 0;
    width: 202px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(img/bg-select.png) no-repeat;
    font-size: 21px;
    z-index: 2;
}
.language .current:before {
    width: 27px;
    height: 27px;
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 14px;
    background: url(img/earth.png) no-repeat;

}
.language .current:after {
    width: 30px;
    height: 30px;
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    right: 15px;
    background: url(img/arrow-down.png) no-repeat;
}

.currentInput {
    overflow: visible;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    height: 0;
}
.language__list {
    width: 196px;
    overflow: hidden;
    max-height: 0;
    background: #ffffff;
    border: 3px solid #e59420;
    border-radius: 0 0 25px 25px;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1;
}
.language__list ul {
    width: 202px;
    padding: 0;
}
.language__list ul li {
        width: 202px;
        height: 40px;
        margin: 0;
        position: relative;
    }
.language__list ul li:after {
    opacity: 0;
}
.language__list ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    color: #3e1308;
    height: 40px;
    text-decoration: none;
}

.language__list ul li a:hover {
    background: rgba(#f6d9b1, .9);
}
.language__list ul li.active:after {
    width: 19px;
    height: 17px;
    background: url(img/icon-check.png) no-repeat;
    position: absolute;
    top: 10px;
    right: 20px;
    content: " ";
    opacity: 1;
}



input[type="checkbox"]:checked + .current:after{
    
            transform: rotate(180deg);
        
    }
    input[type="checkbox"]:checked + .current + .language__list {
        max-height: 999px;
        padding-top: 10px;
    }
