/**
 * ==============================================
 * BBH Language Switcher
 * ==============================================
 */
.bbh-language-switcher{
    z-index: 100;
    position: relative;
    display: inline-block;
    margin: 0px 5px;

}
 .bbh-language-switcher .switch-language{
     min-height: 32px;
     color: #333;
     background-color: #fff;
     border: 1px solid #ccc;
     display: flex;
     align-items: center;
     padding: 4px 15px;
     margin-bottom: 0;
     /* font-size: 14px; */
     font-weight: 400;
     line-height: 1.42857143;
     text-align: center;
     white-space: nowrap;
     vertical-align: middle;
     -ms-touch-action: manipulation;
     touch-action: manipulation;
     cursor: pointer;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-image: none;
     border-radius: 4px;
 }
 .bbh-language-switcher .bbh-language-list{
     padding: 5px 15px;
     color: #333;
     background-color: #fff;
     border: 1px solid #ccc;
     display:none;
     position:absolute;
     z-index:100000;
     margin:0px;
     margin-top: 1px;
     border-radius: 4px;
     -webkit-transform: translate3d(0, 0, 1px);
    transform: translate3d(0, 0, 1px);
 }

 .bbh-language-switcher li{
    list-style: none;
}
.bbh-language-switcher li.current-language{
    display: none;
}
.bbh-language-switcher li a{
    text-decoration: none !important;
    color: #333;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    min-height: 24px;
}

.bbh-language-switcher li a img{
    object-fit: contain;
}

.bbh-language-switcher .drop-dl ul{
    display: none;
    width: max-content;
    position: absolute;
    margin: 0px;
    z-index: 100;
    padding: 4px 5px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    left: 0px;
    border-radius: 4px;
}

.bbh-language-switcher.flag_only-true{
    position: relative;
}
.bbh-language-switcher.flag_only-true .switch-language span{
    display: none;
}
.bbh-language-switcher.flag_only-true li a img{
    margin-right: 0px !important;
}

.bbh-language-switcher.flag-false .lang-text{
    padding-left: 0px !important;
}
