/*** language ***/
.stt-lang-select.br {
    display: none !important;
}

.lang_btn::after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    right: 8px;
    top: calc(50% - 3px);
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    transform: rotate(45deg);
}

.stt-text {
    display: none;
}

.lang_btn {
    background: #2f2f2f;
    height: 40px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
}

.lang_btn:hover {
    background-color: #0097cd;
}

.lang_btn ul {
    width: 90px;
    height: 100%;
}

.lang_btn ul li {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
}

.parent-flex {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.lang_btn ul li a {
    font-size: 14px;
    font-weight: bold;
}

.lang_btn ul li img {
    width: auto;
}

.lang_btn ul li .submenu {
    background-color: #f8f8f8;
    flex-wrap: wrap;
    height: 0;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.lang_btn ul li .submenu a:hover {
    background: #0097cd;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
}

.lang_btn ul li .submenu li {
    display: block;
    width: 100%;
}

.lang_btn ul .parent a {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.lang_btn ul .parent a span {
    color: #fff;
}

.lang_btn ul .parent .submenu li {
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 0;
    overflow: hidden;
}

.lang_btn ul .parent .submenu li a {
    display: block;
    line-height: 46px;
    margin-right: 0;
    font-size: 12px;
    padding: 0;
}

.lang_btn ul .parent:hover .submenu {
    height: auto;
    top: 40px;
    z-index: 103;
}

.lang_btn ul .parent:hover .submenu li {
    border-top: solid 1px #e2e2e2;
    height: 46px;
    overflow: visible;
}

.lang_btn ul .parent:hover .submenu li a {
    border-left: none;
    text-align: center;
}

.lang_btn ul .parent:hover .submenu li:hover a {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .lang_btn .submenu {
        display: none;
    }
    .lang_btn .submenu.is-active {
        display: block;
    }
    .lang_btn:hover{
        background: #2f2f2f;
    }
}