single-select-directive {
    /*position: absolute;*/
}

single-select-directive .dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
    outline: 0;
}

single-select-directive .toggle-select {
    box-shadow: none; 
    color: #333;
    cursor: default; 
    width: 250px;
    height: 30px;
    border-radius: 5px;
    border: solid 1px #d9d9d9;
    background-color: #ffffff;
    font-size: 13px;
    text-align: left;
    position: relative;
}
single-select-directive .toggle-select.select-popup-open {
    border: solid 1px #02abfd;
}

single-select-directive .toggle-select .icon-sort {
    background: url('/partner/resources/assets/images/general/sort-down.svg') no-repeat;
    background-size: contain;
    width: 13px;
    height: 100%;
    display: inline-block;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 5px;
}

single-select-directive .toggle-select.select-popup-open .icon-sort {
    background: url('/partner/resources/assets/images/general/sort-up.svg') no-repeat;
    background-size: contain;
    background-position: center;
}

single-select-directive .header {
    text-align: left;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    height: 100%;
    box-sizing: border-box;
    vertical-align: text-bottom;
}

single-select-directive .popup {
    max-height: 250px;
    width: 100%;
    overflow:auto;
    margin: 0;
    list-style: none;
    padding-left: 0;
}

single-select-directive .popup-height {
    height: 20px;
}

single-select-directive .caret-margin {
    margin-top: 7px;
}

single-select-directive .label-all {
    color: #333;
    cursor: pointer;
}

single-select-directive .label-item {
    color: #333;
    cursor: pointer;
    font-size: 13px;
    font-weight: normal;
}

single-select-directive .btn:focus {
    outline: 0;
}

single-select-directive .open {
    display: block;
}

single-select-directive .single-select-search-wrapper{
    padding-bottom: 4px;
}

single-select-directive .single-select-search-icon {
    position: absolute; 
    top: 8px;
    right: 5px; 
    color: lightgray; 
    cursor: pointer;
}

single-select-directive .single-select-search-input { 
    border-radius: 3px; 
    height: 28px; 
    line-height: 28px; 
    max-width: none ; 
    width: 100%; 
    padding-left: 8px; 
    border: 2px solid lightgray;
}

single-select-directive .single-select-all {
    cursor: pointer;
}

single-select-directive .single-select-item { 
    cursor: pointer; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    overflow-x: hidden;
    padding: 8px 10px;
}

single-select-directive .single-select-item:hover {
    background-color: #d3d3d3;
}

single-select-directive .selected-item {
    background-color: #d3d3d3;
}

single-select-directive.display-inline {
    display: inline-flex;
}

single-select-directive .btn-disable,
single-select-directive .btn-disable:hover,
single-select-directive .btn-disable:active,
single-select-directive .btn-disable:focus {
    color: graytext;
    background: #ffffff;
    outline: none ;
    box-shadow: none;
}

.single-select-popup.dropdown-menu {
    border-radius: 5px;
    box-shadow: 0 10px 30px -2px rgba(0, 0, 0, 0.15);
    border: none;
    min-width: 250px;
    top: 100%;
    margin: 5px 0;
}