/*****l-select*****/

l-select,
l-select.form-control {
    display: inline-block;
    visibility: hidden;
    height: auto;
    position: relative;
    cursor: pointer;
    padding: 0;
    border-width: 0;
    min-height: 36px;
}

l-select option {
    display: none;
}

l-select .current {
    outline: none;
    padding: 7px 15px 7px 5px;
    position: relative;
    cursor: pointer;
}

l-select.noselect .current {
    padding: 7px 15px 7px 15px;
    cursor: default;
}

l-select .current::after {
    content: "▼";
    position: absolute;
    right: 5px;
    font-size: 0.7em;
    top: 12px;
}

l-select .options {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 300px;
    overflow-y: hidden;
    z-index: 10;
    background-color: #cef8ff;
    color: black;
}

l-select .options.show {
    overflow-y: auto;
}

l-select .options .optview {
    cursor: pointer;
    padding: 1px 0;
    white-space: normal;
    word-break: break-word;
    padding: 5px 5px;
}

l-select .options .optview.selected {
    background-color: #71dcee;
}

l-select .options .optview.active {
    color: white;
    background-color: #00556b;
}

l-select select {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-width: 0;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

l-select.noselect .current::after {
    content: "";
}


/*FIX for hovered or clicked*/

l-select.noselect.btn-success {
    background-color: #28a745!important;
}


/*FIX for hovered or clicked*/

l-select.noselect.btn-danger {
    background-color: #dc3545!important;
}


/*FIX for hovered or clicked*/

l-select.noselect.btn-info {
    background-color: #17a2b8!important;
}