/*-----------------------------------*/
/* Select Elements */
/*-----------------------------------*/

.cusel,
#cuselBox .cusel-scroll-wrap,
#cuselBox .jScrollPaneContainer,
#cuselBox .cusel-scroll-pane {
    width: 100% !important;
}
.cusel {
    font-family: 'Allerta', sans-serif;
    height: 50px;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 30px 0 12px;
    outline: none;
}
.cuselOpen {z-index: 9999;}

.cuselText label::selection {background-color: transparent;}

/* Right Arrow */
.cuselFrameRight {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    cursor: pointer;
    background: #b8c901;
    text-align: center;
}
.cuselFrameRight:before {
    content: '\e114';
    font-family: "Glyphicons Halflings";
    font-weight: normal;
    font-size: 18px;
    line-height: 42px;
    color: #b8c901;
    text-shadow: 0 4px 0 #fff;
}
.ie8 .cuselFrameRight:before,
.ie9 .cuselFrameRight:before {
    color: #fff;
    text-shadow: none;
    line-height: 48px;
}

/* Selected Item */
.cuselText {cursor: pointer;} /* Needed for iPad */

.cuselText label {
    width: 100%;
    height: 100%;
    line-height: 48px;
    font-size: 18px;
    color: #7380b0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Select List */
#cuselBox {
    position: absolute;
    z-index: 9999;
}
#cuselBox .jScrollPaneContainer {
    position: relative;
    overflow: hidden;
    border: 1px solid #f2e2e6;
    border-top: none;
    background: #fefbfc;
    border-radius: 1px;
}
#cuselBox .cusel-scroll-pane {padding-right: 0 !important;}

#cuselBox span {
    display: block;
    cursor: pointer;    /* Needed for iPad */
}
#cuselBox span label {
    display: block;
    padding: 10px 12px;
    position: relative;
    border-top: 1px solid #f2e2e6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 700;
    color: #985965;
    text-transform: uppercase;
}
#cuselBox span:first-child label {border-top: none;}

#cuselBox span:hover label,
#cuselBox span.cuselOptHover label,
#cuselBox span.cuselActive label {
    color: #bf5d90;
    background: #faf6f8;
}

/* Scrolling */
#cuselBox .jScrollPaneTrack {
    height: 100%;
    width: 8px !important;
    background: #b8c901;
    background: rgba(184, 201, 1, 0.36);
    position: absolute;
    top: 0;
    right: 4px;
}
#cuselBox .jScrollPaneDrag {
    position: absolute;
    cursor: pointer;
    width: 10px !important;
    height: 26px !important;
    right: -1px;
    background: #b8c901;
}
.jScrollArrowUp,
.jScrollArrowDown {
    width: 10px !important;
    height: 8px;
    position: absolute;
    top: 0;
    right: 3px;
    cursor: pointer;
}
.jScrollArrowDown {
    top: auto;
    bottom: 0;
}
.jScrollArrowUp:before,
.jScrollArrowDown:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #b8c901;
}
.jScrollArrowDown:before {
    border-top: 8px solid #b8c901;
    border-bottom: none;
}