html,
body {
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
	/*background-color: #f1f1f1;*/
	line-height: 1.42857143;
	/* because bootstrap */
}

main {
	height: 100vh;
	width: 100vw;
}

@supports (height: 100dvh) {

	html,
	body,
	main {
		height: 100dvh;
		width: 100dvw;
	}
}

.vconsole_bg {
	height: 100%;
	width: 100%;
	background-image: linear-gradient(122deg, #8cca89, #3cbca6 40%, #168198);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.vconsole_bg .logo_bg {
	height: 100%;
	width: 100%;
	background-image: url('/sites/all/modules/vodalys/vconsole/images/logo_bg.png');
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.09;
}

.vconsole_loader {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.vconsole_loader .content {
	padding-top: 120px;
	padding-bottom: 30px;
	background-image: url('/sites/all/modules/vodalys/vconsole/images/logo.png');
	background-size: 85%;
	background-position: top center;
	background-repeat: no-repeat;
	font-family: Capriola, sans-serif;
	font-size: 21px;
	letter-spacing: -0.1px;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
	position: relative;
	width: 400px;
}

@keyframes wanimation {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.vconsole_loader .content .loading {}

.vconsole_loader .content .loading .line {
	position: absolute;
	left: -100%;
	bottom: 0;
	width: 50%;
	height: 3px;
	background-color: #eee;
	animation-name: wanimation;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	border-radius: 0px;
}

.vconsole_loader .content .loading .line.two {
	display: none;
	animation-delay: 1.5s;
}

/* on load la font capriola en latin exprès pour le text du loader*/
@font-face {
	font-family: 'Capriola';
	font-style: normal;
	font-weight: 400;
	src: local('Capriola Regular'), local('Capriola-Regular'), url(https://fonts.gstatic.com/s/capriola/v5/1uu0rRDB9aBBIKvbF1Q_1PesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

.splashscreen {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.splashscreen .lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 160px;
	height: 160px;
}

.splashscreen .lds-ellipsis div {
	position: absolute;
	top: 66px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #333;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.splashscreen .lds-ellipsis div:nth-child(1) {
	left: 16px;
	animation: splashscreen-lds-ellipsis1 0.6s infinite;
}

.splashscreen .lds-ellipsis div:nth-child(2) {
	left: 16px;
	animation: splashscreen-lds-ellipsis2 0.6s infinite;
}

.splashscreen .lds-ellipsis div:nth-child(3) {
	left: 64px;
	animation: splashscreen-lds-ellipsis2 0.6s infinite;
}

.splashscreen .lds-ellipsis div:nth-child(4) {
	left: 112px;
	animation: splashscreen-lds-ellipsis3 0.6s infinite;
}

@keyframes splashscreen-lds-ellipsis1 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes splashscreen-lds-ellipsis3 {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes splashscreen-lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(48px, 0);
	}
}
