.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #000;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: var(--wp--preset--font-size--large);
    outline: none;
    padding: 13px 33px 13px 19px;
    position: relative;
    text-align: left !important;
    -webkit-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;
    white-space: nowrap;
    width: auto;
    min-width: 100px;
    color:  var(--color-primary);
	white-space: normal;
    word-wrap: break-word;
	line-height:1.2;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: var(--color-primary);
}
ul li.selected {
    display: none;
}
.nice-select:after {
     content: '\f140';
    font-family: dashicons;
    display: inline-block;
    height: 24px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 50%;
	line-height:1;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(0deg) translateY(-50%);
    -ms-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 24px;
}
.nice-select.open:after {
    -webkit-transform: rotate(-180deg) translateY(20%);
    -ms-transform: rotate(-180deg) translateY(20%);
    transform: rotate(-180deg) translateY(20%);
	top:45%;
}
.nice-select.open .list {
	width:100%;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
	height:380px;
	overflow-y:scroll;
}
.nice-select .list {
    background-color: #fff;
    color:  #000;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -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.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 300;
	scrollbar-width: thin;
	scrollbar-color: #888  #f1f1f1;
	border-width:0 1px 1px 1px;
	border-style:solid;
	border-color:#000;
}
.nice-select .list::-webkit-scrollbar{
	width:3px;
}
.nice-select .list::-webkit-scrollbar-track{
	background-color:#f1f1f1
}
.nice-select .list::-webkit-scrollbar-thumb{
	background: #888;
	border-radius: 6px;
}
.nice-select .list::-webkit-scrollbar-thumb:hover{
	background:var(--color-primary);
}
.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important; }
.nice-select .option {
    cursor: pointer;
    line-height: normal;
    list-style: none;
    min-height: 50px;
    outline: none;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-bottom: 2px solid #E5E5E5;
	width: 100%;
    white-space: normal;
    word-wrap: break-word;
    padding: 12px 29px 12px 16px;
}
.nice-select .option:hover {
    background-color: #000;
    color:var(--color-primary);
}
.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}
.nice-select .option:last-child{
	border-bottom:none;
}
.no-csspointerevents .nice-select .list {
    display: none;
}
.no-csspointerevents .nice-select.open .list {
    display: block;
}