.custom-dropdown {
    width:100%;
    height:40px;
    float:left;
    position: relative;
    margin-top: 5px;
}

.filter-input {
    width: inherit;
    height:inherit;
    float:left;
    padding-left: 15px;
    padding-right:15px;
    border:1px solid #e4e7eb;
    outline:none;
    font-family: nunitosemibold;
    font-size: 14px;
    position: relative;
}

.options-list {
    width:calc(100% - 2px);
    height:auto;
    float:left;
    display: none;
    position: relative;
    background-color: white;
    border: 1px solid #e4e7eb;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 350px;
    overflow-y: auto;
    z-index:1000;
}
/*
.triangle {
    position: absolute;
    content: "";
    top: 17px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #e4e7eb transparent transparent transparent;
} 

.triangle.rotate {
    transform: translateY(-50%) rotate(180deg); 
}
*/

.options-list li {
    width:calc(100% - 30px);
    height:auto;
    float:left;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    border-bottom:1px solid #e4e7eb;
    color:#272d36;
    font-family: nunitosemibold;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.options-list li:last-child{
    border-bottom: none;
}

.options-list li.last-item{
    border-bottom:none;
}

.options-list li:hover{
    background:#f5f7fa
}

.options-list .no-results{
    border-top:none;
}