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

 *:not(input):not(textarea) {
   -webkit-user-select: none; /* disable selection/Copy of web content */
   -webkit-touch-callout: none; /* disable the IOS popup when long-press on a link */
}



/* define standard CSS defaults for VAMUSO */

html, body, div, span, h1, h2, h3, h4, h5, h6, hr, p, a img, font, img, dd, dl, dt, li, ol, ul, blockquote, fieldset, form, label, legend, table, caption, tr, th, td, video {
	margin: 0;
	border: 0;
	line-height: inherit;
	font-family: inherit;
	font-size: 100%;
}


html, body {
	height: 100%;
	width: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

select:focus {
    outline: none !important;
    box-shadow: none !important;
}



/* clearFix for buggy browsers */

.clearFix {
	clear: both;
}

.blue {
	background-color: rgba(0,146,255,1.00);
}


.landing {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.logo {
	width: 40%;
	height: 40%;
	display: block;
	background-image: url("logo.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}


.legals {
	display: block;
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	color: rgba(255,255,255,0.50);
	font-family: 'Adelle';
	font-size: 12px;
	font-weight: 400;
}







