.nice-select {
	-webkit-tap-highlight-color: transparent;
	position: relative;
	width: auto;
	height: 46px;
	padding-left: 18px;
	padding-right: 30px;
	background-color: var(--colorWhite);
	border: 1px solid var(--colorHoverPale);
	border-radius: 10px;
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 12px;
	font-weight: normal;
	text-align: left !important;
	line-height: 46px;
	outline: none;
	transition: all 0.2s ease-in-out;
	user-select: none;
	white-space: nowrap;
}

.cartouche .nice-select {
	height: 69px;
	padding-right: 42px;
	background-color: var(--colorPale);
	border-color: var(--colorHoverPale);
	border-radius: 0 20px 20px 0;
	font-size: 17px;
	font-weight: 500;
	line-height: 69px;
}

.nice-select:hover, 
.nice-select:active, 
.nice-select.open, 
.nice-select:focus {}
	
.nice-select:after {
	content: '\e900';
	position: absolute;
	right: 17px;
	top: 0;
	font-family: var(--fontIco);
    font-size: 10px;
    transition: all 0.2s ease-out;
	display: block;
	pointer-events: none;
}

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

	.nice-select.open .list {
		opacity: 1;
		pointer-events: auto;
		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 {
		position: absolute;
		top: 100%;
		left: 0;
		margin-top: 4px;
		padding: 0;
		background-color: var(--colorWhite);
		border-radius: 10px;
		border: 1px solid var(--colorHoverPale);
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		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;
	}

	.cartouche .nice-select .list {
		left: auto;
		right: 0;
	}

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

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

	.formulaire .nice-select .option {
		min-height: 35px;
		font-size: 12px;
		line-height: 35px;
	}

	.nice-select .option:hover, 
	.nice-select .option.focus, 
	.nice-select .option.selected.focus {
		background-color: var(--colorPale);
	}
	
	.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;
}

/**********************************************************************************************/

@media only screen and (max-width : 767px) {

	.cartouche .nice-select {
		width: 100%;
		height: auto;
		padding: 0 0 14px;
		background-color: var(--colorMain);
		border-radius: 35px 35px 0 0;
		border: none;
		font-size: 14px;
		color: var(--colorPale);
		line-height: 21px;
		transition-duration: 0.4s;
	}

	.cartouche .nice-select.open {
		padding-bottom: 20px;
	}

	.cartouche .nice-select:after {
		content: '\e920';
		right: auto;
		left: 50%;
		top: 15px;
		transform: translateX(-50%) rotate(180deg);
	    font-size: 12px;
	}

	.cartouche .nice-select.open:after {
		transform: translateX(-50%) rotate(0deg);
	}

		.cartouche .nice-select .current {
		    display: flex;
		    align-items: flex-end;
		    justify-content: center;
			height: 66px;
			transition: all 0.4s ease-out;
		}

		.cartouche .nice-select.open .current {
		    height: 80px;
		    padding-bottom: 14px;
		}

		.cartouche .nice-select.open .current:before {
			content: 'Choisissez le métier de votre choix';
			position: absolute;
			background-color: var(--colorMain);
			font-size: 17px;
			color: var(--colorPale);
			font-weight: 500;
			text-align: center;
		}

		.cartouche .nice-select .list {
			position: relative;
			top: auto;
			left: auto;
			max-height: 0;
			background-color: var(--colorMain);
			border-radius: 0;
			border: none;
			opacity: 1;
			transform: none;
			transition: all 0.4s ease-out;
		}

		.cartouche .nice-select.open .list {
			max-height: 60vh;
			overflow: auto;
		}

			.cartouche .nice-select .option {
				display: flex;
	    		align-items: center;
	    		min-height: 1px;
				padding-left: 20px;
				color: var(--colorPale);
				font-weight: 500;
				line-height: 25.5px;
			}

			.cartouche .nice-select .option + .option {
				margin-top: 20px;
			}

			.cartouche .nice-select .option:hover, 
			.cartouche .nice-select .option.focus, 
			.cartouche .nice-select .option.selected.focus {
				background-color: var(--colorMain);
			}

			.cartouche .nice-select .option:before {
				content: '';
				width: 17px;
				height: 17px;
				margin-right: 17px;
				background-color: var(--colorWhite);
				border: 1px solid var(--colorSide);
				border-radius: 17px;
				display: inline-flex;
			}

			.cartouche .nice-select .option.selected:before {
				border-width: 4px;
			}
}

