/* STYLES CUSTOM SELECT */
.custom-select{
	display: inline-block;
	position: relative;
	cursor: pointer;
	transition: max-width .3s ease-in-out;
	max-width: 10000px;
}
.custom-select.hidden{
	max-width: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.custom-select-label{
	background: url(/images/icon_arrow.svg) calc(100% - 1rem) 50% no-repeat;
	background-size: 1rem;
	border: 1px solid #33324F;
	padding: .5rem 3rem .5rem .5rem;
}
.custom-select-selection:focus .custom-select-label{
	border-color: orange;
}
.custom-select-options{
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 0;
	transition: max-height .3s ease-in-out;
	overflow: hidden;
	position: absolute;
	min-width: 100%;
	z-index: 1;
}
.custom-select-selection.open ~ .custom-select-options{
	max-height: 10000px;
}
.custom-select-options.up{
    bottom: 100%;
}
.custom-select-options button{
	width: calc(100% - 2rem);
	background-color: #fff;
	border: 1px solid #eee;
	padding: 1rem;
}
.custom-select-options button:hover{
	background-color: #D5EAFD;
}
.custom-select-options li:first-child{
	font-style: italic;
}