/* 2016 (c) CedricMure */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html, body{position: relative}
html {font-size: 62.5%}

body{
	font-family: "Advent Pro", Arial, sans-serif;
	font-size: 3rem;
	font-weight: 200;
	line-height: normal;
	letter-spacing: normal;
	color: #FFF;
	background: #5c5b5a;
}

a{
	color: inherit;
	text-decoration: none;
}
a:hover{text-decoration: none}

img{
	border: 0;
    vertical-align: bottom;
}

header, nav, footer, section, article, aside, video, figure {display: block}
button{cursor: pointer}


/* !VOEUX2017 ----------------------- */

.parallax-container img{display: none}
#url{
	position: relative;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
}
#width-error{
	display: none;
	background: #181f3c;
	text-align: center;
	font-size: 1.5rem;
}
#width-error.open{display: block}


/* LOADING */
#loading-mask{
    position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	background: #181f3c;
}
#loading-txt,
#loading-ok{
    display: block;
    position: absolute;
    width: 100%;
    top: 45%;
    margin-top: 20px;
    text-align: center;
}
#loading-ok{
	display: none;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 40%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #FFF;

    -webkit-animation: spin 1s linear infinite; 
    animation: spin 1s linear infinite; 
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #FFF;

    -webkit-animation: spin 2s linear infinite; 
    animation: spin 2s linear infinite; 
}
/* ihatetomatoes.net/create-custom-preloading-screen/ */
@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg); 
        -ms-transform: rotate(360deg);  
        transform: rotate(360deg);  
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);  
    }
    100% {
        -webkit-transform: rotate(360deg); 
        -ms-transform: rotate(360deg);  
        transform: rotate(360deg);  
    }
}

/* MàJ 2020 */
audio#son {
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0px;
}