span.selectboxit-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    vertical-align: middle;
    font-size: 11px;
    background: url('select-bg.svg') #fafafa no-repeat 98% 45%;
    border: 1px solid #efefef;
    box-sizing: border-box;
    border-radius: 1px;
    color: #999999;
    cursor: pointer;
}
.selectboxit-container .selectboxit {
    display: inline-block;
    width: 100%;
    height: 38px;
}
.selectboxit-container .selectboxit-text{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;

    font-size: 11px;
    line-height: 40px;
    user-select: none;
}
.selectboxit-options {
    display: none; /* hidden by default */
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    max-height: 255px; /* override plugin default calculation : 10x26px-5px */
    margin: 0;
    padding: 0;
    border: solid 1px #efefef;
    /*box-sizing: border-box;*/
    overflow: auto;

    z-index: 2;
    list-style: none;
    font-size: 11px;
    line-height: 1;
    background: #ffffff;
}
.selectboxit-option{
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    margin: 0 0 5px;
}
.selectboxit-option:last-child{
    margin: 0;
}
.selectboxit-option.selectboxit-focus{
    background: #efefef;
}
.selectboxit-options > li a {
    text-decoration: none;
}