.container_dropdown_drop {
    text-align: center
}

span.msg,
span.choose {
    color: #555;
    padding: 10px 35px;
    display: inherit
}


/*Styling Selectbox*/
.dropdown {
    display: inline-block;
    background-color: #5354a8;
    box-shadow: 0 0 2px rgb(204, 204, 204);
    transition: all .5s ease;
    position: relative;
    font-size: 15px;
    line-height: 15px;
    color: #fff;
    text-align: center;
    vertical-align: bottom;
    border-radius: 6px;
}


.dropdown .language-dropdown-select {
    cursor: pointer;
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    width: 90px;
}

.dropdown .language-dropdown-select>i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}

.dropdown:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}

.dropdown:active {
    background-color: #5354a8
}

.dropdown.active:hover,
.dropdown.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 6px 6px 0 0;
    background-color: #5354a8
}

.dropdown.active .language-dropdown-select>i {
    transform: rotate(-90deg)
}

.dropdown .dropdown-menu {
    position: absolute;
    background-color: #5354a8;
    left: 0;
    color: #fff !important;
    margin-top: 1px;
    min-width: 4rem !important;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 6px 6px;
    overflow: hidden;
    display: none;
    overflow-y: auto;
    z-index: 9;
    width: 90px;
    text-align: center;
}

.dropdown .dropdown-menu li {
    padding: 5px;
    transition: all .2s ease-in-out;
    cursor: pointer
}

.dropdown .dropdown-menu {
    padding: 0;
    list-style: none
}

.dropdown .dropdown-menu li:hover {
    background-color: grey
}

.dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}

.dropdown_language {
    display: none;
}

@media (max-width: 992px) {

    .dropdown_language {
        position: fixed;
        top: 8px;
        right: 2em;
        z-index: 1082;
        display: inline;
    }

    .desktop_language {
        display: none;
    }

}