.nice-select {
	display: inline-flex;
	width: 100%;
	height: 40px;
	position: relative;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.nice-select:focus,
.nice-select:hover {
	border-color: #A0A0A0;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
	outline: none;
}

.nice-select:after {
	content: "";
	display: block;
	width: 40px;
	height: 100%;
	background-image: url(/img/icon-down-min.svg);
	background-position: center;
	background-size: 12px auto;
	background-repeat: no-repeat;
	border-left: 1px solid #e0e0e0;
}

.nice-select.calendar-open:after,
.nice-select.open:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	border-right: 1px solid #e0e0e0;
	border-left: 0 solid #e0e0e0;
}

.nice-select.open .list {
	width: 100%;
	opacity: 1;
	pointer-events: auto;
}
.nice-select .current {
	width: 100%;
	display: flex;
	align-items: center;
	font-weight: 500;
	padding: 0 10px;
	cursor: pointer;
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #ccc;
}

.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;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 5px;
	opacity: 0;
	overflow: auto;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9;
	max-height: calc(100vh - 50px);
}

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

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: 500;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

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

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