/**
 * selectFilter  --v1.0
 * 
 **/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

.filter-disabled {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.filter-box {
    position: relative;
    margin-top: -1.5rem;
}

.filter-box select {
    display: none;
}

.filter-text {
    height: 40px;
    width: 120px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0 30px 0 10px;
    color: #fff;
    border: 2px solid #1880bb;
    border-radius: 50px;
    vertical-align: middle;
    background: #143269;
    box-sizing: border-box;
}

.filter-text input {
    font-size: 14px;
}

.filter-text .filter-title {
    width: 100%;
    height: 40px;
    line-height: 34px;
    border: 0;
    background-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    cursor: pointer;
    color: #4cc6f4;
    font-style: italic;
    font-size: 20px;
    font-weight: bold;
    vertical-align: top;
    text-align: center;
}

.filter-list {
    display: none;
    width: 120px;
    max-height: 300px;
    background-color: #1e7385;
    font-size: 14px;
    position: absolute;
    top: 42px;
    right: 263px;
    z-index: 99;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.50);
}

.filter-list li.filter-null a {
    color: #d2d2d2;
}

.filter-list li a {
    display: block;
    padding: 0 10px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.filter-list li:hover {
    background-color: #37889d;
    color: #f1f1f1;
}

.filter-list li.filter-selected {
    background-color: #37889d;
}

.filter-list li.filter-selected a {
    display: block;
    color: #fff;
}

.filter-list li.filter-disabled {
    background-color: #fff;
}

.filter-list li.filter-disabled a {
    display: block;
    color: #d2d2d2;
}

.filter-list li.filter-disabled:hover a {
    cursor: not-allowed!important;
    background-color: #fff;
}

.icon {
    position: absolute;
}

.icon-filter-arrow {
    width: 8px;
    height: 6px;
    background-repeat: no-repeat;
    background-image: url(../img/icon_arrow_down_x2.png);
    background-size: 100%;
    right: 10px;
    top: 17px;
    transition: all .2s;
}

.icon-filter-arrow.filter-show {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.filter-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.filter-list::-webkit-scrollbar-track {
    background: #fff
}

.filter-list::-webkit-scrollbar-thumb {
    background: #CBCBCB;
}