.nice-select {
-webkit-tap-highlight-color: transparent;
background-color: #fff;
border-radius: 5px;
border: none;
clear: both;
cursor: pointer;
display: block;
float: left;
font-family: inherit;
font-weight: 400;
height: 40px;
line-height: 20px;
outline: none;
padding-left: 15px;
padding-right: 27px;
position: relative;
text-align: left !important;
transition: all 0.2s ease-in-out;
user-select: none;
white-space: nowrap;
color: #666;
padding-top: 2px;
}
.nice-select.open .list {
opacity: 1;
pointer-events: auto;
transform: scale(1) translateY(0);
}
.nice-select.disabled {
border-color: #ccc;
color: #888;
pointer-events: none;
}
.nice-select.disabled:after {
border-color: #888;
}
.nice-select .list {
background-color: #fff;
box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
margin-top: 53px;
opacity: 0;
overflow: hidden;
padding: 0;
pointer-events: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
transform-origin: 50% 0;
transform: scale(0.75) translateY(-20px);
transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
z-index: 9999;
width: 100%;
box-sizing: border-box;
height: 39vh;
border: 1px solid #888;
border-top: 0;
overflow: auto;
}
.nice-select .option {
cursor: pointer;
font-weight: 400;
line-height: 38px;
list-style: none;
min-height: 30px;
outline: none;
text-align: left;
transition: all 0.2s;
padding: 0 15px;
margin: 0;
border: 0;
border-bottom: 1px solid #ddd;
}
.nice-select .option:hover {
color: #E54750;
}
.nice-select .option.selected {
background-color: #F6F1D3;
color: #E54750;
}
.nice-select .option.selected:after {
font-family: 'ElegantIcons';
content: "\4d";
float: right;
color: #666;
font-size: 25px;
}
.nice-select .option.disabled {
background-color: transparent;
color: #aaa;
cursor: default;
}
.no-csspointerevents .nice-select .list {
display: none;
}
.no-csspointerevents .nice-select.open .list {
display: block;
}
.nice-select.has-multiple {
white-space: inherit;
height: auto;
line-height: 18px;
}
.nice-select.has-multiple span.current {
background: #F6F1D3;
padding: 5px;
border-radius: 3px;
color: #E54750;
display: inline-block;
margin: 2px 4px 2px 0;
}
.nice-select.has-multiple .multiple-options {
display: block;
padding: 0
}
.nice-select .nice-select-search-box {
box-sizing: border-box;
position: absolute;
width: 100%;
margin-top: 15px;
left: 0;
z-index: 8;
padding: 5px;
background: #FFF;
opacity: 0;
pointer-events: none;
-webkit-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transform: scale(.75) translateY(-21px);
-ms-transform: scale(.75) translateY(-21px);
transform: scale(.75) translateY(-21px);
-webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out
}
.nice-select.has-multiple .nice-select-search-box {
margin-top: 17px;
}
.nice-select .nice-select-search {
box-sizing: border-box;
border: 1px solid #aaa;
border-radius: 4px;
color: #555;
display: inline-block;
vertical-align: middle;
padding: 8px 12px;
width: 100%;
font-size: 15px;
line-height: 22px;
}
.nice-select.open .nice-select-search-box {
opacity: 1;
z-index: 10;
pointer-events: auto;
-webkit-transform: scale(1) translateY(0);
-ms-transform: scale(1) translateY(0);
transform: scale(1) translateY(0);
border: 1px solid #888;
border-bottom: 0;
}
