<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid #000;
	color: #000;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	margin-bottom: 15px;
	outline: none;
	padding-left: 10px;
	padding-right: 30px;
	position: relative;
	text-align: left;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	text-indent: 0;
	width: calc(100% - 40px);
}
.nice-select .current {
	color: #AAAAAA;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: .5px;
}

.nice-select:hover {
	border-color: #BCB09C;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #BCB09C;
}
.nice-select::after {
	/* border-bottom: 2px solid #000; */
	/* border-right: 2px solid #000; */
	background-image: url("/library/pagination/icons/arrow-down.svg");
	content: '';
	display: block;
	height: 28px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 12px;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 28px;
	background-repeat: no-repeat;
}
.nice-select.open:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}
.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: #f2f2f2;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	opacity: 0;
	overflow: hidden;
	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: 9;
	width: 100%;
}
.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}
.nice-select .option {
	color: #000;
	cursor: pointer;
	font-weight: 400;
	line-height: 35px;
	list-style: none;
	min-height: 35px;
	outline: none;
	padding-left: 10px;
	padding-right: 30px;
	text-align: left;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	width: calc(100% - 40px);
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
	background-color: #cfcfcf;
	color: #5D4E34;
}
.nice-select .option.selected {
	font-weight: 400;
}
.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;
}


.barra-configuratore .nice-select {
	padding: 0 !important;
	border: none;
	background-color: transparent;
	color: #fff;
	font-family: "europa", Arial, Helvetica, Clean, sans-serif;
	height: 16px;
	line-height: 20px !important;
	margin: 8px 40px 8px 8px;
	font-size: 15px;
	width: auto;
}
.barra-configuratore .nice-select::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	right: -20px;
}
.barra-configuratore .nice-select .list {
	width: 150px;
}

.elenco-content .nice-select {
	float: left;
	width: 300px;
	clear: none;
	margin: 20px 10px;
}
.elenco-content .nice-select:nth-child(5) {
	display: none;
}

form .nice-select {
	height: 60px;
	line-height: 60px;
	width: 100%;
}</pre></body></html>