.dropdown-button {
    border: 0;
    background-color: #6490C3;
    color: white;
    padding: 0 !important;
    border-color: #6490C3;
}

.dropdown-button img {
    width: auto;
    height: 14px;
}

.dropdown-menulist {
    z-index: 1000;
    position: absolute;
    background-color: white;
    border: 1px solid gray;
    top: 30px!important;
    right: 0 !important;
    min-width: 300px !important;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, .175) !important;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .175) !important;
    display: none;
    list-style: none;
    text-align: left;
    padding: 0;
}

.open>.dropdown-menulist {
    display: block;
}

.dropdown-menulist li {
    padding: 15px 0;
    text-align: left;
    border-bottom: 1px solid gray;
    cursor: pointer;
}

.dropdown-menulist li:nth-child(n+2):hover {
    padding-left: 20px;
}

.dropdown-menulist li:nth-child(2) {
    background-color: #B1C5DC;
    color: white;
}

.dropdown-menulist li:last-child {
    border-bottom: 0px;
}

.dropdown-menulist span {
    display: inline-block;
    font-size: 14px;
}

.dropdown-menulist li input {
    width: 75%;
    border-radius: 10px;
    border: 1px solid gray;
    font-size: 12px;
    padding: 5px 10px;
}

.list-icon {
    display: inline-block;
    width: 50px;
    height: auto;
    padding: 0 5px;
    text-align: center;
}

.ui-state-highlight {
    height: 1.5em;
    line-height: 1.2em;
}

.list-icon img {
    height: 20px;
    width: auto;
}

.open>.dropdown-button img {
    transform: rotate(90deg);
}