/* Dropdown Button */
.LTdropdownerAjaxListbutton {
    display:block;
    background-color: #FFF;
    border:1px solid #ced4da;
    color: #333;
    padding: 4px;
    font-size: 14px;
    cursor: pointer;
    width:100%;
    height:38px;
    border-radius:5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:1rem;
}

.LTdropdownerAjaxListbutton:after{
    content: "▾";
    position: absolute;
    right:5px;
    font-size:9px;
}

.LTdropdownerAjaxListbutton-lg {
    height:44px;
    font-size:1.1rem;
}

.LTdropdownerAjaxListbutton-xl {
    height:54px;
    font-size:1.26rem;
}

/* Dropdown button on hover & focus */
.LTdropdownerAjaxListbutton:hover, .LTdropdownerAjaxListbutton:focus {
    background-color: #F6F6F6;
}

.LTdropdowneRAjaxListbackgroundOverlay{
    background-color:transparent;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display:block;
}

/* The search field */
.searchInputFieldAjaxList {
    width:100%;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 16px;
    padding: 6px 15px 6px 15px;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color:#FFF !important;
}

/* The search field when it gets focus/clicked on */
.searchInputFieldAjaxList:focus {
    outline: 3px solid #86b7fe;
}

/* The container <div> - needed to position the dropdown content */
.LTdropdownerAjaxList {
    position: relative;
    display: inline-block;
    width:100%;
}

/* Dropdown Content (Hidden by Default) */
.LTdropdownerAjaxList-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    border: 1px solid #ddd;
    z-index: 3;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0px 0px 5px #AAA;
}

/* Links inside the dropdown */
.LTdropdownerAjaxList-content a {
    color: black !important;
    padding: 8px 10px;
    font-size:15px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border-bottom:1px solid #EEE;
}

/* Change color of dropdown links on hover */
.LTdropdownerAjaxList-content a:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.showAjaxList {
    display:block;
}