/*
	application ofr
	$Author: perrick $
	$URL: svn://svn.noparking.net/usr/local/svn/projets/opentime.fr/sites/opentime-asso.com/medias/css/main.css $
	$Revision: 5199 $

	Copyright (C) No Parking 2010 - 2023
*/

/* ------------------------------------------------------------------------------------------------------- */
/* General */
/* ------------------------------------------------------------------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear {
	line-height: 0;

	clear: left;

	height: 0;
}

/* For modern browsers */
.clearfix:after { clear: both; }
.clearfix { zoom: 1; clear: both; }

/* For IE 6/7 (trigger hasLayout) */
ul, li { list-style: none; }
a { text-decoration: none; color: #666; }
a:hover { text-decoration: none; color: #000; }
p { line-height: 1.4em; }
img { vertical-align: middle; border: 0; }

/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
	display: block;
}

@font-face {
	font-family: "Futura";
	src: url("../fonts/Futura-text.ttf");
}

@font-face {
	font-family: "Futura";
	font-weight: bold;
	src: url("../fonts/Futura-title.ttf");
}

@font-face {
	font-family: "Futura";
	font-weight: 800;
	src: url("../fonts/Futura-800.ttf");
}

@media (orientation: landscape) and (max-device-width: 768px) {
	html,
	body {
	  -webkit-text-size-adjust: 100%;
	}
  }

html, body {
    margin: 0;
    padding: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	text-align: left;
}

section {
	margin-top: 30px;
}

.main {
	overflow: hidden;
	padding-bottom: 0;
}
/* Header
-------------------------------------------------------------------------------------------------------*/
.header {
	position: absolute;
	top: 0;
	width: 100%;
	height: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background-color: black;
	z-index: 9999;
  }

  .header.fixed {
	top: -60px;
	position: fixed;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .header.fixed.animated {
	top: 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  }

  .header .logo {
	float: left;
	margin-top: 12px;
  }


/* =======================
  Unsemantic Grid
  Doc : http://unsemantic.com/
======================= */

.grid-container {
	max-width: 960px;
}

.signup {
	padding-bottom: 320px;
}

  .grid-container.container-alt {
	max-width: 800px;
}

/* =======================
  Menu
======================= */
.menu {
	display: block;
	float: right;
	font-family: 'Oxygen', 'sans-serif';
	line-height: 1.4em;
	font-size: 14px;
}

.menu li {
	float: left;
}

.menu li a {
	color: #FFF;
	display: block;
	padding: 18px 20px 20px 20px;
	height: 100%;
}

.menu ul li a:hover,
.menu ul li a.current {
	color: #f7bc0f;
}

/* =======================
  Form
======================= */
form {
	position: relative;
  }

  form p {
	position: relative;
	margin: 0 0 10px 0;
  }

  form input[type="text"],
  form input[type="email"],
  form input[type="date"],
  form input[type="password"],
  form textarea,
  form select {
	border: 1px solid black;
	background: #FFF;
	padding: 6px 10px;
	width: 100%;
	height: 40px;
	color: #333;
	-webkit-border-radius: 0;
	-webkit-appearance: none !important;
	border-radius: 3px;
	font-size: 16px;
	font-family: arial, 'sans-serif';
  }

  form input[type="text"]:focus,
  form input[type="email"]:focus,
  form input[type="date"]:focus,
  form input[type="password"]:focus,
  form textarea:focus,
  form select:focus {
	border-color: #f7bc0f;
  }

  form textarea {
	min-height: 100px;
	width: 340px;
	vertical-align: top;
  }

  form input[type="submit"] {
	border: none;
	cursor: pointer;
  }

  /* Input icon */
  form .icon-input {
	padding-left: 50px;
  }

  /* Date Field */
  form .date-field {
	color: #000;
	margin: 15px 0 20px 0;
  }

  form .date-field label {
	display: block;
	color: #000;
	margin-bottom: 10px;
  }

  form .date-field input {
	width: 100px;
	margin: 0 5px;
  }

  /* Custom Checkbox */
  /* DOC : http://www.creativejuiz.fr/blog/tutoriels/personnaliser-aspect-boutons-radio-checkbox-css */
  form .no-field-label label {
	margin-left: 190px;
	margin-bottom: 10px;
	display: block;
  }

  .oldie form .no-field-label label {
	margin-left: 0;
	display: inline;
  }

  form .custom-radio input + label {
	margin-right: 20px;
	padding-top: 4px;
  }

  form .custom-checkbox input[type="checkbox"]:not(:checked),
  form .custom-checkbox input[type="checkbox"]:checked,
  form .custom-radio input[type="radio"]:not(:checked),
  form .custom-radio input[type="radio"]:checked {
	position: absolute;
	left: -9999px;
  }

  form .custom-checkbox input[type="checkbox"]:not(:checked) + label,
  form .custom-checkbox input[type="checkbox"]:checked + label,
  form .custom-radio input[type="radio"]:not(:checked) + label,
  form .custom-radio input[type="radio"]:checked + label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
  }

  /* Aspect des checkboxes */
  form .custom-checkbox label {
	margin-bottom: 20px;
  }

  form .custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
  form .custom-checkbox input[type="checkbox"]:checked + label:before,
  form .custom-radio input[type="radio"]:not(:checked) + label:before,
  form .custom-radio input[type="radio"]:checked + label:before {
	content: '';
	position: absolute;
	left: 1px;
	top: 3px;
	width: 16px;
	height: 16px;
	border: 1px solid #CCC;
	background: #FFF;
  }

  form .custom-checkbox input[type="checkbox"]:checked + label:before,
  form .custom-radio input[type="radio"]:checked + label:before {
	/*border: 1px solid #333;*/
  }

  form .custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
  form .custom-checkbox input[type="checkbox"]:checked + label:before {
	top: -1px;
  }

  form .custom-radio input[type="radio"]:not(:checked) + label:before,
  form .custom-radio input[type="radio"]:checked + label:before {
	border-radius: 20px;
  }

  /* Aspect général de la coche */
  form .custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
  form .custom-checkbox input[type="checkbox"]:checked + label:after,
  form .custom-radio input[type="radio"]:not(:checked) + label:after,
  form .custom-radio input[type="radio"]:checked + label:after {
	content: '✔';
	position: absolute;
	top: 0;
	left: 6px;
	font-size: 14px;
	color: #333;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
  }

  form .custom-radio input[type="radio"]:not(:checked) + label:after,
  form .custom-radio input[type="radio"]:checked + label:after {
	content: '';
	top: 8px;
	left: 6px;
	width: 8px;
	height: 8px;
	background: #333;
	border-radius: 10px;
  }

  /* Aspect si "pas cochée" */
  form .custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
  form .custom-radio input[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
  }

  /* Aspect si "cochée" */
  form .custom-checkbox input[type="checkbox"]:checked + label:after,
  form .custom-radio input[type="radio"]:checked + label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
  }

  /* aspect désactivée */
  form .custom-checkbox input[type="checkbox"]:disabled:not(:checked) + label:before,
  form input[type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
  }

  /* styles de la coche (si cochée/désactivée) */
  form .custom-checkbox input[type="checkbox"]:disabled:checked + label:after {
	color: #999;
  }

  /* on style aussi le label quand désactivé */
  form .custom-checkbox input[type="checkbox"]:disabled + label {
	color: #aaa;
  }

  /* aspect au focus de l'élément */
  form .custom-checkbox input[type="checkbox"]:checked:focus + label:before,
  form .custom-checkbox input[type="checkbox"]:not(:checked):focus + label:before {
	/*border: 1px dotted blue; */
  }

  /* === Error === */
  form .alert-field input[type="text"],
  form .alert-field input[type="email"],
  form .alert-field input[type="date"],
  form .alert-field input[type="password"],
  form .alert-field textarea,
  form .alert-field select,
  form .alert-field .customSelect {
	border: 1px solid #EF4343;
  }

  .signup form {
	background: #FFF;
	border-radius: 1em;
  }

  .signup h3 {
	margin-bottom: 30px;
  }

  .signup h3 strong {
	color: #f7bc0f;
  }

  .signup form + p {
	font-size: 20px;
	margin: 30px 0 0 0;
  }

  .signup form fieldset {
	margin: 20px 0 0 0;
	padding: 0 20px;
	float: left;
	width: 33%;
	display: block;
	vertical-align: top;
	border: none;
	text-align: left;
	min-height: 340px;
	margin-bottom: 20px;
  }

  .signup form fieldset + fieldset {
	border-left: 1px solid #efefef;
  }

  .signup form fieldset legend {
	text-align: center;
	margin-bottom: 20px;
	width: 100%;
	font-size: 20px;
  }

  .signup form fieldset legend:before {
	content: "1";
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto 20px auto;
	border: 1px solid #efefef;
	color: #efefef;
	font-weight: 700;
	text-align: center;
	border-radius: 50px;
	line-height: 1.6em;
	font-size: 30px;
  }

  .signup form fieldset + fieldset legend:before {
	content: "2";
  }

  .signup form fieldset + fieldset + fieldset legend:before {
	content: "3";
  }

  .signup form fieldset:hover legend:before {
	/*color: $yellow;
	border-color: $yellow;*/
  }

  .signup form fieldset.focus legend:before {
	color: #f7bc0f;
	border-color: #f7bc0f;
  }

  .signup form fieldset .itemsform > li {
	margin-bottom: 10px;
  }

  .signup form fieldset label {
	display: block;
	color: #999;
	margin-bottom: 6px;
	font-size: 16px;
	text-align: center;
  }

  .signup form fieldset + .itemsform {
	background: white;
	clear: both;
	text-align: center;
	position: relative;
	padding: 30px 20px;
  }

  .signup form fieldset + .itemsform:after {
	position: absolute;
	top: 0;
	right: 15%;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 25px 0 25px;
	border-color: #ffffff transparent transparent transparent;
  }

  .signup form .itemsform-submit {
	display: inline-block;
	text-align: center;
	width: 33%;
  }

  .signup form .itemsform-submit input {
	display: inline-block;
	height: 40px;
	font-weight: bold;
	padding: 0 20px 0 20px;
	-webkit-appearance: none;
	border-radius: 20px;
	background-color: black;
	color: white;
	border: 1px solid black;
	font-weight: 400;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 1.5em;
  }

  .signup form .itemsform-submit input:hover {
	background: #f7bc0f;
	color: #FFF;
	border: 1px solid #f7bc0f;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  }

  .signup form .field_complement li {
	color: #FFF;
	padding: 6px 8px;
	position: relative;
	display: block;
	font-size: 12px;
	margin: 0 0 10px 0;
	position: relative;
  }

  .signup form .field_complement li:after {
	display: block;
	content: "";
	position: absolute;
	top: -5px;
	left: 25px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
  }

  .signup form .field_complement .errors {
	color: #FFF;
	background: #E83348;
  }

  .signup form .field_complement .errors li:after {
	border-color: transparent transparent #E83348 transparent;
  }

  .signup form .field_complement .placeholder {
	color: #FFF;
	background: #55BF2B;
  }

  .signup form .field_complement .placeholder li:after {
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #55BF2B transparent;
  }


/* SIGNED UP REDIRECTION PAGE */

.signupsuccessful p{
	font-size: 14px;
	margin: 0;
}
div.grid_3 p {
	font-size: 14px;
	font-weight: bold;
}
a#account-link div.btnconfirm p{
	font-size: 16px;
	color: #f7bc0f;
}

/* ------------------------------------------------------------------------------------------------------- */
/* Main page */
/* ------------------------------------------------------------------------------------------------------- */

h1 {
	color: black;
	font-family: Futura;
	font-weight: 800;
	font-size: 6em;
}

h2 {
	font-size: 3.5em;
	color: rgb(236, 110, 65);
}

h3 {
	color: black;
	font-family: Futura;
	font-weight: 800;
	font-size: 3em;
}

h4 {
	font-family: Futura;
	font-weight: 800;
	font-size: 2.5em;

	color: black;
}

h5 {
	font-size: 1.8em;
	line-height: 1.8em;

	color: black;
}

p {
	font-size: 1.2em;

	color: rgb(66, 65, 65);
}

.flex-col strong {
	font-size: 1.5em;
	color: black;
}

ul, ol {
	padding-left: 2em;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
	min-width: 0;
	min-height: 0;
}

a img {
	border: 0;
}

input {
	border: 1px solid black;
	border-radius: 5px;
}

input:focus {
	border: 1px solid rgb(236, 110, 65);
	border-radius: 5px;
	outline: none;
}

.horizontal-lines {
	line-height: normal;
	margin: auto;
	text-align: center;
}

.horizontal-lines::before,
.horizontal-lines::after {
	content: "";
	border-radius: 1em;
	display: block;
	margin: 0.2em  auto;
	border: 0.15em solid;
	width: 50%;
	background-color: black;
}

.vertical-line {
	text-align: right;
	padding-right: 0.8em;
}

.vertical-line::after {
	content: "";
	border-radius: 1em;
	display: inline-block;
	flex-direction: row;
	position: absolute;
	border: 0.15em solid;
	height: 15%;
	margin: -2em auto auto 0.5em;
	background-color: black;
}

.container-1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 50%;
	margin: auto;
}

.container-2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 30%;
}

.container-3 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 70%;
}

.container-4 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: visible;
	margin-top: 2.5em;
	margin-bottom: 3.5em;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.transition {
	max-width: 1000px;
	margin: 3em auto;
	text-align: center;
}

.transition strong {
	margin-top: 1em;
}

/* Accueil */

#accueil {
	margin: 3em auto;
	position: relative;
	max-width: 1000px;
}

#accueil div.bg-lvl-0 {
	position: absolute;

	width: 1500px;
    left: 50%;
    transform: translate(-50%, 0);
	z-index: -999;
}

#accueil div.bg-lvl-0 img {
	position: absolute;

	top: 3em;
    left: 50%;
    transform: translate(-50%, 0);
}

#accueil div.bg-lvl-1 {
	position: absolute;

	width: 600px;
	left: 50%;
    transform: translate(-50%, 0);
	z-index: -999;
}

#accueil div.bg-lvl-1 img {
	position: absolute;

	left: -25em;
	top: 10em;
	transform: scale(0.5);
}

#accueil div.content {
	width: 600px;

	padding-top: 23em;

	margin: auto;

}

#accueil div.content h2 {
	position: relative;
	top: -1.2em;
	left: 2em;
}

#accueil div.content strong {
	position: relative;
	top: -2em;
}

/* Opentime */

#opentime {
	position: relative;
	margin: 5em auto;
	max-width: 1000px;
}

#opentime h3 {
	margin-bottom: 1.5em;
}

#opentime strong,
#opentime p {
	text-align: center;
}


/* Accès Spécifique */

#acces-spe {
	margin: auto;
	position: relative;
	text-align: right;
	max-width: 1000px;
}


#acces-spe div.content-img{
}

#acces-spe div img{
	max-height: 500px;
	margin: auto 0;
}

#acces-spe div.content {
}

#acces-spe div.content strong,
#acces-spe div.content p {
	text-align: right;
}

/* Puces */
#puces {
	position: relative;
	max-width: 1000px;
	margin: 3em auto;
}

#puces div.bg-lvl-0 {
	position: absolute;

	width: 1200px;
	z-index: -999;
}

#puces div.bg-lvl-0 img {
	position: absolute;
	width: 100%;
	left: -8em;
}

#puces div.bg-lvl-1 {
	position: absolute;
	z-index: -998;
	top: -8em;
}

#puces div.bg-lvl-1 img {
	position: absolute;
	transform: scale(0.5);
	left: -22em;
}

#puces div.container-2 {
	margin: 0 auto;
	margin-top: 7em;
	justify-content: flex-start;
}

#puces div.container-2 h3 {
	font-size: 2.5em;
	margin: 0;
}

/* Opentime-resumé */
#opentime-resume {
	margin: auto;
	position: relative;
	text-align: right;
	max-width: 1000px;
}

#opentime-resume .container {
	max-width: 1000px;
}

#opentime-resume .container .container-2,
#opentime-resume .container .container-1 {
	margin: auto;
}

#opentime-resume .container .content-img img {
	width: 300px;
	height: 300px;
}

#opentime-resume .container .content {
	justify-content: right;
}

#opentime-resume .content-wide {
	margin: auto;
	max-width: 1000px;
}

#opentime-resume .content-wide img {
	width: 80vw;
	max-width: 1000px;
}

/* tarifs */
#tarifs {
	margin: auto;
	max-width: 1000px;
}

#tarifs div.content-img {
	margin: 0;
}

#tarifs div.content-img img {
	width: 500px;
	height: 500px;
}

#tarifs div.content {
	text-align: center;
}

#tarifs div.content strong {
	margin-top: 1em;
}

/* Essai-gratuit */

#essai-gratuit {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 15em;
}

#essai-gratuit div.bg-lvl-0 {
	position: absolute;
	top: 0;
	z-index: -999;
}

#essai-gratuit div.bg-lvl-0 img {
	position: absolute;
	top: -10em;
	left: 15em;
	width: 400px;
}

/* Form */

.input-form {
	color: black;
	font-size: 2em;
	margin: 5% 5% 5% 5%;
	height: 3em;
	padding-left: 3%;
	padding-right: 3%;
}

.button-form {
	color: white;
	font-size: 1.5em;
	width: 25%;
	height: 2.8em;
	background-color: rgb(18, 18, 18);
	border-radius: 1.3em;
	margin: auto auto 5% auto;
}
.button-form:hover,
.button-form:focus {
	color: white;
	width: 25%;
	height: 2.8em;
	background-color: rgb(236, 110, 65);
	border-radius: 1.3em;
	margin: auto auto 5% auto;
	outline: none;
}

/* ------------------------------------------------------------------------------------------------------- */
/* Footer */
/* ------------------------------------------------------------------------------------------------------- */
.footer {
	background: #999;
	padding: 20px 0;
	font-size: 12px;
	color: #333;
}

.footer p {
	font-family: 'Oxygen', 'sans-serif';
	font-weight: 300;
	font-size: 12px;
	color: #333;
	line-height: 1.4em;
}

.txtcenter {
    text-align: center;
}

.itemsform .itemsform-cgv div.cgv .cvg-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

h2 .go-summary {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 8px;
    text-indent: -9999px;
    background: url(../images/arrow-top.png) no-repeat right top;
    float: right;
}

a#account-link { font-weight: bold; text-decoration: underline; }
