.hidden_select_container {
    width: 0;
    height: 0;
    overflow: hidden;
}

.simpleselect,
.simpleselect * {
    box-sizing: content-box;
}

.simpleselect {
    position: relative;
    width: 150px;
    height: 38px;
    color: #fff;

    font-size: 13px;

}

.simpleselect .options {
    width: 148px;
}

.simpleselect .placeholder,
.simpleselect .options .option,
.simpleselect .options .optgroup .optgroup-label {
    padding: 9px 10px;
    line-height: 18px;
    cursor: pointer;

}

.simpleselect .options .optgroup .optgroup-label {
    cursor: default;
    font-weight: bold;
}

.simpleselect .options .optgroup .option {
    padding-left: 20px;
}

.simpleselect .placeholder,
.simpleselect .options {
    background-color:#2168a9;
    border: 1px solid #ccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.simpleselect .placeholder {
    position: relative;
}

.simpleselect .placeholder:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 9px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAYAAADESFVDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFJJREFUeNqckEEOACEIAy3x/18eNyZe3LLoksBpaAsBtKqjHZSDqCAcGB8K7BBJHBZEkZv+DP257lX9wG4qVXZadhmoPZMc4ILLLURmcf2CIcAAE6AlCgRkm5MAAAAASUVORK5CYII=") 0 center no-repeat;
}

.simpleselect .placeholder:hover {
    background: #2168a9;
}

.simpleselect .options {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.simpleselect .options .option.active {
    background: #fff;
    color: #2168a9;
}

.simpleselect.disabled .placeholder,
.simpleselect.disabled .placeholder:hover {
    background: #fafafa;
    color: #aaa;
    border-color: #eee;
    cursor: default;
}

.simpleselect.disabled .placeholder:after {
    opacity: .5;
}