html, body{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-size:14px;
}
img.affiche{
	width:100%;
}
img.logo{
	display:block;
	width:250px;
	height:auto;
	margin:20px auto 0 auto;
}
a{
	color:#9fa2a5!important;
}
a:hover{
	color:#000!important;
}
h1{
	font-family: 'Josefin Sans', sans-serif;
	text-transform:uppercase;
}
.container{
	width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: stretch; 
    padding: 20px;
}
.column{
	display:flex;
	align-items:center;
	flex-direction:column;
}
.column.first{
	font-family: 'Montserrat', sans-serif;
		display: flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}
input{
	width:100%;
	height:50px;
	line-height:50px;
	margin-bottom:20px!important;
}
.submit-btn{
	width:350px;
	margin:0 auto;
}
button.submit{
	width:100%;
    padding: 0 60px;
    color: #ffffff;
	background:#000;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
	text-transform:uppercase;
}
button.submit:hover{
	background:#6b6b6b;
}
p.unsub{
	font-size:12px;
	margin-top:40px;
}
p.ok, p.err{
	text-align:center;
}
p.ok{
	color:#000;
}
p.err{
	color:#C2392C;
}
div#slick-buttons {
    position: absolute;
    right: 15px;
    top: 5px;
	z-index: 1000;
}
.toogle-switch button{
	position:relative;
	width: 45px;
	height: 26px;
	background: #242526;
	border-radius: 13px;
	border:0px!important;
}
body.darkmode .toogle-switch button{
	background: #fff;
}
.toogle-switch button{
	background: #000;
}
.toogle-switch button i.fa{
	display:inline-block;
	font-size:12px;
	width: 22px;
	height: 22px;
	line-height:22px;
	border-radius: 50%;
	transition: all 0.5s ease;
	color:#000!important;
	position:absolute;
	top:2px;
	opacity:1!important;
}
body.darkmode .toogle-switch button i.fa{
	color:#fff!important;
}
.toogle-switch button i.dark-button{
	background: #ffffff!important;
	right:2px;
}
.toogle-switch button i.light-button{
	background: #000!important;
	left:2px;
}
.darkmode a:hover{
	color:#fff!important;
}
.darkmode button i.light-button{
	display:block;
}
.darkmode {
  background-color: black;
  color: white;
}
body.darkmode .toogle-switch button i.dark-button, .toogle-switch button i.light-button, body.darkmode img.light, img.logo.dark, img.dark{
	display:none;
}
body.darkmode .toogle-switch button i.light-button, .toogle-switch button i.dark-button, body.darkmode img.dark, img.logo.light, img.light{
	display:block;
}
body.darkmode h1, body.darkmode p{
	color:#E4E6EB!important;
}
body.darkmode button.submit{
	background:#F1E3BD!important;
	color:#18191A!important;
	border: 1px solid transparent;
}
body.darkmode button.submit:hover{
	background:#000!important;
	color:#F1E3BD!important;
	border: 1px solid #F1E3BD;
}
body.darkmode input.input100{
	border: 1px solid #535558!important;
	background:#000!important;
	color:#E4E6EB!important;
}
.focus-input100 {
  position: absolute;
  display: block;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scaleX(1.1) scaleY(1.2);
  -moz-transform: scaleX(1.1) scaleY(1.2);
  -ms-transform: scaleX(1.1) scaleY(1.2);
  -o-transform: scaleX(1.1) scaleY(1.2);
  transform: scaleX(1.1) scaleY(1.2);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
	height:50px;
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  padding: 5px 25px 5px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Montserrat, sans-serif;
  color: #C2392C;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;

  opacity: 1;
}

.alert-validate::after {
	height:40px;
  content: "\f06a";
  font-family: 'Font Awesome 5 Free';
  display: block;
  position: absolute;
  color: #C2392C;
  font-size: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 576px) {
	img.logo{
		display:block;
		width:160px;
	}
	h1{
		text-align:center;
	}
}
@media (max-width: 767px) {
	img.logo{
		display:block;
		width:180px;
		height:auto;
		margin:20px auto 60px auto;
	}
	.container{
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start; 
		padding: 20px;
	}
}
@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
