

/**********************************


 Auteur : Julien Bovagnet <julienbovagnet@lsbox.eu> 
 Version : 1.0 
 Date de création : 01/01/2018 
 Date de dernière modification : 15/05/2020


**********************************/


body {
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	margin:0px;
	line-height: 30px;
}

div {
	overflow: hidden;
}

button, .button, input[type="submit"] {
	border:none;
	background-color: #45b5ff;
	color:white;
	border-radius:3px;
	font-family: 'Raleway', sans-serif;
	cursor:pointer;
	padding:10px;
	font-size:16px;
	vertical-align: top;
	display:inline-block;
	transition:all 0.3s;
}
button:hover, .button:hover, input[type="submit"]:hover {
	background-color: #3cb0fd;
}
button:focus, .button:focus, input[type="submit"]:focus {
	box-shadow:0px 0px 0px 10px #E5E7E9;
}

.softButton {
	background-color:white;
	color:grey;
	border:1px solid lightgray;
	padding:5px;
	border-radius:3px;
	cursor:pointer;
	display:inline-block;
	transition:all 0.3s;
}
.softButton:hover {
	background-color:lightgray;
}

.linkBtn {
	border:none;
	background-color: #E5E7E9;
	color:black;
	border-radius:3px;
	font-family: 'Raleway', sans-serif;
	cursor:pointer;
	padding:5px;
	vertical-align: top;
	transition:all 0.3s;
}
.linkBtn:hover {
	background-color: #3cb0fd;
}

hr {
	width:50%;
	margin-top:50px;
	margin-bottom:50px;
	padding:0px;
	border: 1px solid #C1C1C1;
}

a {
	color:black;
	text-decoration:none;
	cursor:pointer;
}


h1,h2,h3,h4,h5 {
	font-weight: normal;
}

img {
	vertical-align:top;
}

.info {
	padding:15px;
	background-color: #7CB342;
	color:white;
	position:fixed;
	width:50%;
	left:25%;
	top:0px;
	border-bottom: 3px solid lightgray;
	cursor:pointer;
	display:none;
}
.info>div {
	word-wrap: break-word;
}

input[type="text"], textarea {
	border:1px solid #E6E6E6;
	padding:10px;
	font-size:16px;
	font-family: 'Raleway', sans-serif;
	border-radius:3px;
	cursor:pointer;
	transition:all 0.3s;
}
input[type="text"]:focus, textarea:focus {
	cursor:auto;
	border:1px solid dodgerblue;
}

iframe {
	border:none;
	min-height: 500px;
}

/* Right Click Menu */

.RClickMenu {
	position:absolute;
	box-shadow:0px 0px 20px lightgray;
	width:300px;
	height:auto;
}

/* window */


.window {
	position:fixed;
	z-index:50000;
	top:2.5%;
	left:2.5%;
	width:95%;
	height:95%;
	background-color: white;
	overflow: hidden;
	box-shadow: 0px 0px 0px 50px black;
}
.window>.topBar {
	background-color:#45b5ff;
	color:white;
	height:30px;
	padding:10px;
	font-size:20px;
}
.window>.topBar>.close {
	position:absolute;
	right:10px;
	top:0px;	
}
.window>.content {
	margin-top:30px;
	overflow-x:hidden;
	overflow-y: auto;
	width:100%;
	height:auto;
}

/* mise en page */

.w-30 {
	width:30%;
}
.w-35 {
	width:35%;
}
.w-40 {
	width:40%;
}
.w-45 {
	width:45%;
}
.w-50 {
	width:50%;
}
.w-55 {
	width:55%;
}
.w-60 {
	width:60%;
}
.w-65 {
	width:65%;
}
.w-70 {
	width:70%;
}
.w-75 {
	width:75%;
}
.w-80 {
	width:80%;
}
.w-85 {
	width:85%;
}
.w-90 {
	width:90%;
}
.w-95 {
	width:95%;
}
.w-100 {
	width:99.9%;
}

.padding {
	padding:50px;
	box-sizing: border-box;
}

.center {
	margin-left: auto;
	margin-right:auto;
}
.centerTxt {
	text-align:center;
}

.block {
	display:block;
	padding:50px 0px 50px 0px;
}

.flexContainer {
	display:flex;
}

.flexRow {
	flex: 1 1 auto;
}

.col-2 {
	display:inline-block;
	width:49%;
	vertical-align: top;
	margin:0px;
}

.col-2-tiers {
	display:inline-block;
	width:64%;
	vertical-align: top;
	margin:0px;
}

.col-3 {
	display:inline-block;
	width:32%;
	vertical-align: top;
	margin:0px;
}

.col-4 {
	display:inline-block;
	width:24%;
	vertical-align: top;
	margin:0px;
}

.elemBlock {
	display:block;
}
.elemInline {
	display:inline-block;
}

.full {
	width:100%;
	height:100%;
	position: fixed;;
	top:0px;
	left:0px;
	margin:0px;
}

.hide {
	display:none;
}
.show {
	display:block;
}


/* Effets */

.ef-scale {
	transition: all 0.3s;
	transform: scale(1);
}
.ef-scale:hover {
	transform: scale(1.05);
}

.white {
	background-color:white;
	color:grey;
}
.black {
	background-color:black;
	color:lightgrey;
}
.red {
	background-color:red;
	color:white;
}

.circle {
	border-radius:180px;
}

.curved {
	border-radius:5px;
}


/* font size */

.fs-60 {
	font-size: 60px;
}

.fs-55 {
	font-size: 55px;
}

.fs-50 {
	font-size: 50px;
}

.fs-45 {
	font-size: 45px;
}

.fs-40 {
	font-size: 40px;
}

.fs-35 {
	font-size: 35px;
}

.fs-30 {
	font-size: 30px;
}

.fs-25 {
	font-size: 20px;
}

.fs-20 {
	font-size: 20px;
}

.fs-18 {
	font-size: 18px;
}

.fs-16 {
	font-size: 16px;
}

.fs-14 {
	font-size: 14px;
}

.fs-12 {
	font-size: 12px;
}

.fs-10 {
	font-size: 10px;
}


/* media screen */


@media screen and (max-width: 1300px) {
	.w-50,.w-55,.w-60,.w-65,.w-70,.w-75 {
		width:70%;
	}
	.block {
		padding:20px 0px 20px 0px;
	}
	.padding {
		padding:20px;
	}
}

@media screen and (max-width: 1200px) {
	.w-30,.w-35,.w-40,.w-45 {
		width:60%;
	}
	.w-50,.w-75,.w-40 {
		width:80%;
	}
	.block {
		padding:20px 0px 20px 0px;
	}
	.padding {
		padding:20px;
	}
}

@media screen and (max-width: 600px) {
	.col-2,.col-3,.col-4 {
		display: block;
		width:100%;
		margin-right: auto;
		margin-left: auto;
	}
	.w-50,.w-55,.w-60,.w-65,.w-70,.w-75 {
		width:80%;
	}
	.padding {
		padding:20px;
	}
	.img-click {
		margin-bottom:10px;
	}
}