.nice-select {
	padding: 11px 20px;
	position: relative;
	background: rgba(0, 67, 55, 0.8);
	border-radius: 10px;
	font-family: 'Roboto';
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	cursor: pointer;
	user-select: none;
	transition: all 0.2s ease-in-out;
	display: block;
	border: 3px solid transparent;
	outline: none;
}

.nice-select::after {
	content: '';
	width: 16px;
	height: 12px;
	position: absolute;
	top: 18px;
	right: 15px;
	background-image: url(../../images/core/selectbox-arrow.svg);
	background-size: cover;
	transition: all 0.2s;
}

.nice-select.open {
	border: 3px solid rgba(0, 0, 0, 0.2);
	outline: none;
}

.nice-select.open::after {
	transform: rotate(180deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1) translateY(0);
	outline: none;
}

.nice-select.disabled {
	pointer-events: none;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select .list {
	padding: 0;
	margin: 10px 0 0 0;
	background: rgba(0, 67, 55, 0.8);
	max-height: 200px;
	min-width: 150px;
	border-radius: 10px;
	opacity: 0;
	/* overflow: hidden; */
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	transform-origin: 50% 0;
	transform: scale(0.75) translateY(-21px);
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
	outline: none;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #fcf9cc transparent;
}

.nice-select .list::-webkit-scrollbar {
	width: 5px;
}

.nice-select .list::-webkit-scrollbar-track {
	background: transparent;
}

.nice-select .list::-webkit-scrollbar-thumb {
	background-color: #fcf9cc;
	border-radius: 10px;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	padding: 7px 20px;
	list-style: none;
	cursor: pointer;
	transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background: rgba(252, 249, 204, 0.1);
	color: #FCF9CC;
}

.nice-select .option.selected {

}

.nice-select .option.disabled {

}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

@media (max-width: 919.8px) {
	.nice-select .list {
		min-width: 100%;
	}
}