.form-messages {
    /* display: none;*/
}
.form-messages.msg-success {
    color: green;
}
.form-messages.errors {
    color: red;
}
.warning ~ .feedback__pseudockeckbox {
    border-color: red;
}

.languages {
    border-radius: 5px 5px 0 0;
    position: absolute;
    right: -7%;
    z-index: 5;
    color: #FFF;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.5s;
    font-size: 14px;
}

.languages svg{
    width: 16px;
    margin-left: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
}

.languages path{
    fill: white !important;
}

.languages .head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    background: #E60E81;
    color: #fff;
}

.l-header{
    position: relative;
}

.languages.is-open {
    background-color: #FFF;
}

.languages.is-open .head{
    border-radius: 5px 5px 0 0;
}

.languages.is-open .dropdown{
    display: block;
}

.languages .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #E60E81;
    border-radius: 0 0 5px 5px;
    color: #fff;
}

.languages .dropdown a {
    display: block;
    padding: 5px 10px;
    color: inherit;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

.header__container{
    position: relative;
}
@media(max-width: 1400px) {
    .languages{
        right: 0;
    }
    .main-menu{
        padding-right: 80px;
    }
}
@media(max-width: 991px) {
    .main-menu{
        padding-right: 0;
    }
    .languages{
        right: 50px;
        top: 44%;
    }
}