.language-block {
    position: relative;
    padding-right: 95px;
    min-height: 45px;
}

.row-overflow-visible {
    overflow: visible !important;
}

.language-select {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 91px;
}

.language-select__inner {
    border-radius: 30px;
    border: 1px solid rgba(68,186,188, 1);
    cursor: pointer;
    background: #ffffff;
}

.language-select__current {
    height: 40px;
    width: 100%;
    position: relative;
    padding: 0 20px 0 20px;
    color: rgba(68,186,189,1);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}



.language-select__current:after {
    content: '';
    display: block;
    border: 10px solid transparent;
    border-top: 17px solid #44BABD;
    position: absolute;
    top: 12px;
    right: 12px;
}

.language-select__list {
    display: none;
}

.language-select__item {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 0px 0 20px;
    color: rgba(68,186,189,1);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
}


.glide .language-block {
    display: none;
}


@media (max-width:991px){
    .language-select {
        width: 80px;
        height: 29px;
        top: 18px;
	right:60px;
    }

    .language-select__current {
        height: 29px;
        padding: 0 20px 0 17px;
    }

    .language-select__current:after {
        border: 8px solid transparent;
        border-top: 12px solid #44BABD;
        top: 9px;
        right: 12px;
    }

    .language-select__inner {
        border-radius: 20px;
    }

    .language-select__item {
        font-size: 14px !important;
        height: 29px;
        padding: 0 20px 0 17px;
    }
}

