.selectricWrapper {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.selectricDisabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectricOpen {
    z-index: 9999;
}

.selectricOpen .selectricItems {
    display: block;
}

.selectricHideSelect {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectricHideSelect select {
    position: absolute;
    left: -100%;
    display: none;
}

.selectricInput {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    _font: 0/0 a;
    background: none !important;
}

.selectricTempShow {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

.selectricOpen .selectric {
    border-bottom: none !important;
    background: #e7e7e7;
    z-index: 9999;
}

.selectric {
    border: 1px solid #000 !important;
    background: #fff;
    position: relative;
    border-radius: 0px;
    height: 23px;
}
.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 6px 0 6px;
    margin: 0 0 0 0;
    font-size: 12pt !important;
    color: #000;
    max-height: 23px !important;
    width: 80%;
}
.selectric .button {
    background-image: url( '../../img/arrows/select.svg' );
    background-repeat: no-repeat;
    background-position: right 5px top 5px;
    border-radius: 0px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 23px;
    margin: 0 !important;
}
.selectricHover .selectric {
    border-color: #000;
}
.selectricHover .selectric .button {
    color: #000;
}

/* Items box */
.selectricItems {
    display: none;
    position: absolute;
    overflow: auto;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 9998;
}
.selectricItems ul {
    border: 1px solid #000;
}
.selectricOpen .selectricItems ul {
    border-top: none;
    border-bottom: 1px solid #000 !important;
}
.selectricItems ul {
    min-height: 23px;
}
.selectricItems ul,
.selectricItems li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12pt !important; 
} 
.selectricItems li {
    display: block;
    min-height: 25px;
    padding: 0px 6px 0 6px;
    color: #000;
    cursor: pointer;
    line-height: 25px;
}
.selectricItems li.selected {
   
}
.selectricItems li:hover {
    background: #fff;
    color: #000;
}
.selectricItems li.disabled {
    background: #F5F5F5;
    color: #BBB;
    cursor: default;
}
