.lng-select {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat',Arial,sans-serif;
}
.lng-content {
    display: flex;
    align-items: center;
    padding: 0 18px;
    width: 45px;
    height: 35px;
    background-color: #f3f5f6;
    border-radius: 13px;
}
.lng-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.lng-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 9px;
    padding: 11px 18px;
    min-width: 83px;
    
    background-color: #f3f5f6;
    border-radius: 13px;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.lng-icon {
    color: rgb(34, 38, 42);
    height: 16px;
    width: 16px;
}
.lng-chevron{
    margin-left: 0.5rem;
    height: 22px;
    width: 22px;
}
.lng-wrapper {
    display: flex;
    justify-content: space-between;
}
.lng-open {
    visibility: visible;
    opacity: 1;
    height: auto;
}
.lng-item {
   cursor: pointer;
   color: #000;
   font-size: 16px;
   font-weight: 500;
}
.lng-item+.lng-item { margin-top: 11px;}
#allrecords .lng-item a{
    color: #000;
    display: block;
    width: 100%;
}
#allrecords .lng-item:hover, #allrecords .lng-item:hover a, #allrecords .lng-item:hover .lng-icon {
    color: rgb(255, 217, 0);
}
.selected-lng {
    cursor: pointer;
}
.selected-lng:hover, .selected-lng:hover .lng-icon{
    color: rgb(255, 217, 0);
}
.lng-divider {
    margin-top: 11px;
}
.lng-divider span {
    display: block;
    background-color: #e5e9eb;
    border-radius: 1px;
    height: 1px;
}

@media (min-width: 960px) {
    .lng-text {
        
    }
    .lng-dropdown {
        
    }
    .lng-item {
        
        
    }
    .selected-lng {
        
    }
}