/* Dropdown control */
.selectBox-dropdown {
    min-width: 192px;
    height: 26px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    border: 1px solid #4a4d4c;
    line-height: 24px;
    text-decoration: none;
    text-align: left;
    color: #767676;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    vertical-align: middle;
    background: #000;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    display: inline-block;
    cursor: pointer;
}

.selectBox-dropdown.selectBox-menuShowing {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
    padding-left: 18px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
}
.selectBox-dropdown .selectBox-arrow::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 7px;
    background-image: url(../images/select-arr.png);
    background-repeat: no-repeat;
    background-position: 0 -7px;
    top: 50%;
    margin-top: -3px;
    right: 10px;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: 1px solid #4a4d4c;
    border-top: 0;
    background: #000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    color: #767676;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    -webkit-border-radius: 0 0 13px 13px;
    -moz-border-radius: 0 0 13px 13px;
    border-radius: 0 0 13px 13px;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options LI A {
    line-height: 24px;
    padding: 0 18px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #141414;
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
    display: none;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #50acbd;
    color: #fff;
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}