:root {
	--orange: #e94e18;
	--bleu: #0d6673;
	--text: #000;
	--font:'Lato', sans-serif;;
}

/* PAGE LOADER */
.loader {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: relative;
}

.loader_ctn {
	width: 50vw;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 25vh;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	padding: 5%;
	box-sizing: border-box;
}

.loader_ctn img {
	margin-bottom: 20px;
}

.loader_ctn p {
	font-family: var(--font);
	color: #5c5c5c;
}

.loader_bar {
	width: 70%;
    display: block;
    background: #ececec;
    height: 30px;
    border-radius: 5px;
	overflow: hidden;
	position: relative;
	box-shadow: inset 0 0px 10px #0000004f;
	z-index: 10;
}


@keyframes progress-bar {
	from {
		background-position: 1rem 0;
	}
	
	to {
		background-position: 0 0;
	}
}

.loader_bar span {
	position: relative;
    width: 0%;
    height: 100%;
    left: -3%;
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
	background-color: var(--orange);
    display: block;
	animation:progress-bar 1s linear infinite;
	border-radius: 50px;
	box-shadow: inset 0 0px 10px #0000004f;
}


/* NAV */

header{
	position: fixed;
	width: 200px;
	height: 100%;
}

nav {
	position: relative;
	width: 100%;
	height: 100%;
	transform: translateX(calc(10px - 100%));
	background: var(--orange);
	transition: transform .2s ease-in;
	border-right: solid 10px var(--bleu);
	padding-top: 45px;
}

nav.open {
	transform: translateX(0);
}

#nav-open {
	width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    z-index: 10;
    transform: translate(50%, 50%);
    transition: .2s ease-in;
    cursor: pointer;
    background: #f1a3881f;
    border-radius: 50px;
    padding: 20px;
}

#nav-open.active {
	height: 40px;
	width: 40px;
	transform: translate(350%, 50%);
	padding: 0;
	background: transparent;
}

#nav-open:hover .bar:first-child {
	width: 75%;
}

#nav-open:hover .bar:nth-child(2) {
	width: 50%;
}

#nav-open:hover .bar:nth-child(3) {
	width: 75%;
}


#nav-open .bar {
	width: 100%;
	height: 5px;
	background: var(--orange);
	display: block;
	margin: 5px 0;
	transition: .2s ease-in;
}

#nav-open.active .bar {
	background: #fff;
	transition: .2s ease-in;
	border-radius: 5px;
}

#nav-open.active .bar:first-child {
	transform: rotate(45deg) translateX(20%);
}

#nav-open.active .bar:nth-child(2) {
	transform: rotate(-45deg) translateX(15%);
}

#nav-open.active .bar:nth-child(3) {
	transform: rotate(-45deg);
	opacity: 0;
}

#nav-open.active:hover .bar{
	width: 100%;
}

.liste_page {
	width: 100%;
    margin: 0;
    display: inline;
}

.liste_page li {
	list-style-type: none;
}

.liste_page li a {
	text-decoration: none;
    font-family: var(--font);
    color: #fff;
    width: 100%;
    padding: 20px 0;
    display: block;
    text-align: center;
}

.liste_page li a.selected, .liste_page li a:hover {
	background: #ffffff30;
	color: #fff;
}


header, main {
	display: none;
}

.content {
	display: none;
}

.content img {
	margin: 0 auto;
	display: block;
}

.content.page-select {
	display: block!important;
}