.nice-select{
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: right;
    font-family: inherit;
    outline: none;
    position: relative;
    white-space: nowrap;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    height: 35px;
    border: none;
    padding: 3px 10px 0 40px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #aaaaaa;
    background-color: #f5f5f5;
    border-left: solid 2px #abb0b3;
    border-radius: 1px;
    text-align: left;
    line-height: 32px;
}
.nice-select:after{
    content: '';
    position: absolute;
    right: 35px; top: 50%;
    border-bottom: 2px #7a7a7a solid;
    border-right: 2px #7a7a7a solid;
    height: 5px; width: 5px;
    margin-top: -4px;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
}
.nice-select:before{
    content: '\46';
    width: 30px;
    font-family:'boustanico';
    font-size:1.7rem;
    position:absolute;
    top:0;bottom:0;left:8px;
    line-height:38px;
    color:#abb0b3;
}
.nice-select.open:after{
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.nice-select.open .list{
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); 
    pointer-events: auto;
}
.nice-select.disabled{
    border-color: #ededed;
    color: #999;
}
.nice-select.disabled:after{
    border-color: #cccccc;
}
.nice-select.wide{
    width: 100%; 
}
.nice-select.wide .list{
    left: 0 !important;
    right: 0 !important; 
}
.nice-select.right{
    float: right; 
}
.nice-select.right .list{
    left: auto;
    right: 0; 
}
.nice-select.small{
    font-size: 12px;
    height: 36px;
    line-height: 34px; 
}
.nice-select.small:after{
    height: 4px; width: 4px; 
}
.nice-select.small .option{
    line-height: 34px;
    min-height: 34px; 
}
.nice-select .list{
    background-color: #fff;
    box-shadow: 0 0 0 1px rgb(239, 239, 239);
    box-sizing: border-box;
    margin-top: 1px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0; left: 0; top: 100%; z-index: 9;
    pointer-events: none;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.1s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.1s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 
}
.nice-select .list:hover .option:not(:hover){
    background-color: transparent !important; 
    color: #737373;
}
.nice-select .option{
    cursor: pointer;
    border-bottom: solid 1px #f3f3f3;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding:0 29px 0 40px;
    color: #989898;
    text-align: right;
    -webkit-transition: all 0.2s;
        transition: all 0.2s; 
    text-align: left;
    text-transform:capitalize;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus{
    background-color: #f9f9f9; 
    color: #6b98c5;
    position: relative;
}
.nice-select .option.selected:before{
    content: '\4e';
    font-family:'boustanico';
    font-size: 1.1rem;
    text-align: center;
    position: absolute;
    color: #979797;
    left: 5px;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 30px;
}
.nice-select .option.disabled{
    background-color: transparent;
    color: #d4d4d4 !important;
    cursor: default; 
}
.no-csspointerevents .nice-select .list{
    display: none; 
}
.no-csspointerevents .nice-select.open .list{
    display: block; 
}
