.languages {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 30px;
    position: relative;
    margin-right: 140px;
}

.languages:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #4e4b48;
    transition: all 250ms ease-in-out;
    position: absolute;
    right: 5px;
    margin-top: 4px;
    cursor: pointer;
}

.languages.active {
    background: #f5f1f2;
}

.languages.active:after {
    transform: rotate(180deg);
}

.languages.active ul {
    height: 90px;
    background: #f5f1f2;
}

.languages .center {
    display: inline-block;
    height: 30px;
}

.languages ul {
    transition: all 250ms ease-in-out;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 30px;
    overflow: hidden;
    width: 100%;
    opacity: 1;
    padding: 5px;
    padding-right: 25px;
}

.languages ul li {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
}

.languages ul li a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    cursor: pointer;
    color: #4e4b48;
}

.languages ul li a[lang=es-ES]::before {
    background: url(../images/icons/ico_es.png) no-repeat 50%;
    background-size: contain;
}

.languages ul li a[lang=en-US]::before {
    background: url(../images/icons/ico_en.png) no-repeat 50%;
    background-size: contain;
}

.languages ul li a[lang=pt-BR]::before {
    background: url(../images/icons/ico_pt.png) no-repeat 50%;
    background-size: contain;
}

.languages ul li a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

@media screen and (max-width: 860px){
    .languages{margin-right: 0;right: 100px;}
    .header .header__nav ul.menu-redes{display: none;}
}

.skiptranslate {
    display: none !important;
  }