/*******************/
/*      Fonts      */

@font-face {
	font-family: 'SilverStreak';
    src: url('../fonts/SilverStreak/OTF/Silver_Streak.otf');
}

@font-face {
	font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf');
}

@font-face {
	font-family: 'Poppins Semi Bold';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf');
}

@font-face {
	font-family: 'Poppins Bold';
    src: url('../fonts/Poppins/Poppins-Bold.ttf');
}

/*                 */
/*******************/

/* Reset CSS
	http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

input {
  /* Réinitialisation des styles par défaut */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  letter-spacing: normal;
  font-weight: normal;
}

input[type="radio"] {
  /* Rétablissement des styles spécifiques pour les radio buttons */
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  margin-right: 5px;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #DFDFDF;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #D1D1D1;
}

/*** Waiting screen ***/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#containerPage {
	position: relative;
	height: 100%;
	padding: 30px 35px;
	box-sizing: border-box;
	color: #303F4C;
}

#tittle img {
	height: 30px;
}

#tittle h1 {
	display: none;
}

#text {
	margin-top: 20vh;
	font-family: 'Poppins';
	font-size: 15px;
	line-height: 20px;
	width: 100%;
}

#tittleWait {
	display: block;
	margin-top: 45px;
	font-family: 'SilverStreak';
	font-size: 28px;
}

footer {
	position: absolute;
	bottom: 30px;
	font-size: 17px;
}

footer ul {
	display: flex;
}

footer li {
	margin-right: 13px;
}

footer li:last-child {
	margin-right: 0;
}

footer a:hover, footer:focus {
	opacity: 0.7;
}

@media screen and (min-device-width: 600px) {
	#containerPage {
		padding: 50px 100px;
	}

	#tittle img {
		height: 64px;
	}

	#text {
		margin-top: 10vh;
		font-size: 25px;
		line-height: 40px;
	}

	#tittleWait {
		font-size: 70px;
	}

	footer {
		font-size: 25px;
		bottom: 50px;
	}

	footer li {
		margin-right: 23px;
	}
}

@media screen and (min-width: 1000px) {
	#text {
		width: 70%;
	}
}

@media screen and (min-width: 1300px) {
	#text {
		width: 60%;
	}
}

@media screen and (min-width: 1700px) {
	#text {
		width: 40%;
	}
}