@charset "UTF-8";
/* CSS Document */

	/*						*/	
	/*						*/	
	/* Pre-Registration		*/
	/*						*/	
	/*						*/	

		section.pre-registration {
			margin-top: 160px;
		}
		section.pre-registration .mirror {
			position: relative;
			left: 50%;
			transform: translateX(-50%);
			max-width: 90vw;
		}
		section.pre-registration h2 {
			font-size: 2.5rem;
			margin-bottom: 1rem;
			padding-right: 20%;
		}
		section.pre-registration p {
			font-size: 1.0rem;
			margin-bottom: 2rem;
			padding-right: 20%;
		}
		section.pre-registration .user-form .form-rows .form-row .field-label {
			display: none;
		}


		.layer[data-label="overlays"] .popups {
			display: none;
		}




	/*						*/	
	/*						*/	
	/* Forms				*/
	/*						*/	
	/*						*/	

		.user-form .form-rows {
		
		}
		
		.user-form .form-rows .form-row-group {
			display: flex;
			width: calc(100% + 5px);
		}
		.user-form .form-rows .form-row-group .form-row[data-size="50"] {
			vertical-align: top;
			width: calc(50% - 5px);
			margin-right: 5px;
		}
		
		.user-form .form-rows .form-row {
			margin: 0 0 30px 0;
		}
		
		.user-form .form-rows .form-row .field-label {
			display: block;
			position: relative;
			width: 100%;
			height: 30px;
			margin: 0 0 -30px 0;
			top: -20px;
			font-size: 1rem;
		}
		.user-form .form-rows .form-row .field-label:empty { display: none; }
		
		.user-form input[type="text"],
		.user-form input[type="email"], 
		.user-form input[type="password"] {
			background-color: rgba(255,255,255,0.46);
			width: calc(100% - 40px);
			padding: 20px 20px;
			outline: none;
			border: none;
			font-size: 1.3rem;
			line-height: 1;
			border-radius: 0;
		}
		.user-form input[type="text"]::placeholder,
		.user-form input[type="email"]::placeholder, 
		.user-form input[type="password"]::placeholder {
			color: white!important;
		}
		.user-form input:focus {
			background-color: white;
		}
		.user-form input[type="checkbox"] {
			position: absolute;
			opacity: 0;
		}
		.user-form label {
		}

		/* checkbox */
		
		.user-form .checkbox {
			display: block;
			height: 40px;
		}
		.user-form .checkbox i {
			display: block;
			position: relative;
			text-align: center;
			width:  calc(40px - 6px);
			height: calc(40px - 6px);
			margin: 0 0 -40px 0;
			line-height: 35px;
			border: 3px solid white;
			background-color: rgba(255,255,255,0.1);
			font-size: 0;
			transition: background-color 1s ease, font-size 0.25s ease;
		}
		.user-form .checkbox i:before { content:"\E940"; }
		.user-form input[type="checkbox"]:checked ~ .checkbox i {
			background-color: var(--brand_red);
			color: white;
			font-size: 1.5rem;
		}
		.user-form .checkbox em {
			display: block;
			position: relative;
			margin: 0 0 0 70px;
			font-style: normal;
			top: 50%;
			transform: translateY(-50%);
		}
		.user-form .checkbox em a {
			color: inherit;
		}
		.user-form .buttons {}
		.user-form .buttons > a {
			display: block;
			background-color:var(--brand_color);
			text-decoration: none;
			color: white;
			padding: 15px 0px;
			text-align: center;
			font-size: 1.8rem;
			font-weight: bold;
			text-transform: uppercase;
			background-color: var(--brand_red);
		}
		.user-form .buttons > a em {
			font-style: normal;
		}
		
		/* warnings */

		.user-form .form-rows .form-row .field-warning {
			display: block;
			margin-top: 8px;
			margin-bottom: 10px;
			color: var(--brand_color);
			color: var(--brand_red);
		}
		.user-form .form-rows .form-row .field-warning i {
			display: block;
			vertical-align: top;
			width: 20px;
			height: 20px;
			position: relative;
			margin-bottom: -20px;
		}
		.user-form .form-rows .form-row .field-warning i:before { content:"\E900"; }
		.user-form .form-rows .form-row .field-warning em {
			display: block;
			position: relative;
			width: calc(100% - 20px);
			margin: 0 0 0 20px;
			vertical-align: top;
			font-style: normal;
		}
		.user-form .form-rows .form-row[data-mandatory="0"]   .field-warning,
		.user-form .form-rows .form-row[data-has_warning="0"] .field-warning { display: none; }

		/* saved */
		
		section.pre-registration[data-action="saved"] {
			
		}
		section.pre-registration[data-action="saved"] .form-wrapper {
			border: 1px solid white;
			padding: 15px;
		}
		section.pre-registration[data-action="saved"] .form-wrapper form {
			filter:grayscale(1);
			pointer-events: none;
			user-select: none;
			transform:scale(0.9,0.9);
			opacity: .5;
		}
		section.pre-registration[data-action="saved"] .user-form input[type="text"], 
		section.pre-registration[data-action="saved"] .user-form input[type="email"], 
		section.pre-registration[data-action="saved"] .user-form input[type="password"] {
			background-color: transparent;
			color: white;
			margin: -1px;
			border: 1px solid white;
		}
		section.pre-registration[data-action="saved"] .user-form .checkbox i {
			border-color: black;
			background-color:transparent;
			box-shadow: 0 0 0 1px white;
		}
		section.pre-registration[data-action="saved"] .user-form .buttons > a {
			background-color: transparent;
			box-shadow: inset 0 0 0 1px white;
		}
		
		
		.registration-exists,
		.registration-saved {
			
		}
		
		.registration-exists p.note,
		.registration-saved p.note {
			display: block;
			margin-bottom: 15px;
			color: var(--brand_color);
			font-size: 32px;
			line-height: 40px;
			color: var(--brand_red);
		}
		.registration-exists p.note i,
		.registration-saved p.note i {
			display: block;
			vertical-align: middle;
			width: 40px;
			height: 40px;
			font-size: 40px;
			line-height: 40px;
			position: relative;
			margin-bottom: -40px;
		}
		.registration-exists p.note i:before { content:"\E900"; }
		.registration-saved p.note i:before  { content:"\EABE"; }
		
		.registration-exists p.note em,
		.registration-saved p.note em { 
			display: inline-block;
			vertical-align: middle;
			font-size: 1.3rem;
			font-style: normal;
			font-weight: bold;
			line-height: 1.3;
			padding-left: 15px;
			margin-left: 40px;
			}
			
		@media screen and (min-width:   0px) and (max-width: 399px) {
			.user-form .form-rows .form-row { margin-bottom: 5px; }
			.user-form .form-rows .form-row[data-label="notifications"]        { margin-top: 30px; margin-bottom: 15px; }
			.user-form .form-rows .form-row[data-label="privacy_policy"]       { margin-top: 10px; margin-bottom: 15px; }
			.user-form .form-rows .form-row[data-label="general_terms_of_use"] { margin-top: 10px; margin-bottom: 15px; }
			.user-form .form-rows .form-row[data-label="age_16_confirmation"]  { margin-top: 10px; margin-bottom: 30px; }
		}
			
			
			
		section.pre-registration .successful-registration {
			text-align: center;
			min-height: 50vh;
			padding-top:150px;
		}
		section.pre-registration .successful-registration .picto {
			height: 200px;
			background-image: url("../../images/pages/pre-registration/registration.red.webp");
			background-size: contain;
			background-repeat: no-repeat;
			margin: 0  0 50px 0;
		}
		section.pre-registration .successful-registration h2 {
			font-size: 3rem;
			padding: 0;
		}
		section.pre-registration .successful-registration p {
			font-size: 1.2rem;
			padding: 0;
		}
		@media screen and (min-width:   0px) and (max-width: 399px) {
			section.pre-registration .successful-registration { padding-top: 0px; }
		}


	@media screen and (min-width:1600px) and (max-width:1799px) { }
	@media screen and (min-width:1400px) and (max-width:1599px) { }
	@media screen and (min-width:1200px) and (max-width:1399px) { }
	@media screen and (min-width:1000px) and (max-width:1199px) { }
	@media screen and (min-width: 800px) and (max-width: 999px) { }
	@media screen and (min-width: 700px) and (max-width: 799px) { }
	@media screen and (min-width: 600px) and (max-width: 699px) { }
	@media screen and (min-width: 500px) and (max-width: 599px) { }
	@media screen and (min-width: 400px) and (max-width: 499px) { }
	@media screen and (min-width:   0px) and (max-width: 399px) { section.pre-registration .mirror { min-width: calc(100vw - 80px); } section.pre-registration h2 { font-size: 2.2rem; margin-bottom: 1.5rem; padding-right: 0%; } }




.char-counter {
	position: relative;
	display: block;
	background-color: white;
	z-index: 99;
	text-align: right;
	top:-32px;
	left: -10px;
	float: right;
	width: 100px;
	height: 20px;
	margin: 0 0 -20px 0;
	overflow: hidden;
	font-size: 12px;
	line-height: 20px;
	color: #000000;
	pointer-events: none;
}
.css.skn-2 .char-counter,
.css.skn-2 .char-counter * { color: #000000; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.char-counter { top:-25px; }
}
.char-counter .chars-entered {

}
.char-counter .chars-required {

}
