//stylons les checkboxx
@import 'https://fonts.googleapis.com/css?family=Poiret+One';
body {
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-family: "Poiret One", cursive;
  color: white;
  font-size: 100%;
  height: 100vh;
}

input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background: #333;
    color: #f2f2f2;

}

.custom-file-upload:hover{
    background:black;
}

.container {
  position: relative;
  width: 50%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .image {
  opacity: 0.5;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color:ghostwhite;
  color: black;
  font-size: 16px;
  padding: 16px 32px;
}




/* Custom Code Here */
.container {
  max-width: 400px;
}
.container .checkboxes {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;

}
.container .checkboxes + p {
  text-align: center;
}
.container .check input {
  display: none;
}
.container .check input:checked + label .box {
  -webkit-animation: animOnTransform 1s 1 forwards;
          animation: animOnTransform 1s 1 forwards;
  background: rgba(0, 0, 0, 0.66);
  color:whitesmoke;
}
.container .check input:checked + label .box i {
  transform: translate(-50%, -50%) scale(1);
  transition-duration: 200ms;
  transition-delay: 400ms;
  opacity: 1;
}
.container .check label {
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  min-height: 60px;
  cursor: pointer;
}
.container .check label .box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: relative;
  width: 20px;
  height: 20px;
  transition: background 300ms ease;
}
.container .check label .box:hover {
  background: rgba(0, 0, 0, 0.5);
}
.container .check label .box i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  transition-delay: 200ms;
  transform: translate(-50%, -50%) scale(4);
}

@-webkit-keyframes animOn {
  40% {
    height: 20px;
    width: 100px;
  }
  50% {
    height: 60px;
    width: 30px;
  }
  60% {
    height: 40px;
    width: 70px;
  }
  70% {
    height: 55px;
    width: 45px;
  }
  100% {
    height: 50px;
    width: 50px;
  }
}

@keyframes animOn {
  40% {
    height: 20px;
    width: 100px;
  }
  50% {
    height: 60px;
    width: 30px;
  }
  60% {
    height: 40px;
    width: 70px;
  }
  70% {
    height: 55px;
    width: 45px;
  }
  100% {
    height: 50px;
    width: 50px;
  }
}
@-webkit-keyframes animOnTransform {
  40% {
    transform: scale(1.5, 0.5);
  }
  50% {
    transform: scale(0.5, 1.5);
  }
  60% {
    transform: scale(1.3, 0.6);
  }
  70% {
    transform: scale(0.8, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes animOnTransform {
  40% {
    transform: scale(1.5, 0.5);
  }
  50% {
    transform: scale(0.5, 1.5);
  }
  60% {
    transform: scale(1.3, 0.6);
  }
  70% {
    transform: scale(0.8, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* end of custom code for checkbox*/

/*
body {
  font: normal 18px/1.5 "Fira Sans", "Helvetica Neue", sans-serif;
  color: #fff;
  padding: 50px 0;
}
*/


.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.petitbouton{
    background: #333;
    color: #f2f2f2;
}

.container * {
  box-sizing: border-box;
}

.flex-outer,
.flex-inner {
  list-style-type: none;
  padding: 0;
}

.flex-outer {
  max-width: 800px;
  margin: 0 auto;
}

.flex-outer li,
.flex-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flex-inner {
  padding: 0 8px;
  justify-content: space-between;
}

.flex-outer > li:not(:last-child) {
  margin-bottom: 20px;

}

.flex-outer li label,
.flex-outer li p, .datedenaissancelabel {
  font-weight: 300;
  letter-spacing: .11em;
  text-transform: uppercase;
 margin-left: auto;
 margin-right: auto;

}

.flex-outer > li > label,
.flex-outer li p, .datedenaissancelabel {
  flex: 1 0 120px;
  max-width: 155px;
  margin-top: 1em;
  margin-bottom: -0.4em;
}

.flex-outer > li > label,
flex-outer li p, .datedenaissancelabel {
  flex: 1 0 120px;
  max-width: 132px;
  margin-top: 1em;
  margin-bottom: -0.4em;
}

.flex-outer > li > label + *,
.flex-inner, .datedenaissancelabel {
  flex: 1 0 220px;
  margin-top: 1em;
  margin-bottom: -0.4em;
}

.mr50
{
padding-right: 50px;
}

.mr60
{
margin-right: 60px;
}


.flex-outer li p {
  margin: 0;
  margin-top: 1em;
  margin-bottom: -0.4em;
}

.flex-outer li input:not([type='checkbox']),
.flex-outer li textarea, select {
  padding: 15px;
  border: none;
  margin-top: 1em;

  height: 46px;
  margin-bottom: -0.4em;
}

.flex-outer li textarea
{
height: auto;
}


.flex-outer li button {
 margin-left: auto;
 margin-right: auto;
  margin-top: 1.1em;
  padding: 8px 16px;
  border: none;
  background: #333;
  color: #f2f2f2;
  text-transform: uppercase;
  letter-spacing: .09em;
  border-radius: 4px;
  margin-bottom: -0.4em;
}

.flex-outer li button {
 margin-left: auto;
 margin-right: auto;
  margin-top: 1.2em;
  padding: 8px 16px;
  border: none;
  background: #333;
  color: #f2f2f2;
  text-transform: uppercase;
  letter-spacing: .09em;
  border-radius: 4px;
  margin-bottom: -0.4em;
  max-width: 185px; /*initialement 140*/
}

.flex-inner li {
  width: 100px;
}

.dns /*le div pour la date de naissance  */
{
margin-bottom: 1em;
}

body
{
font-family: "Lato", sans-serif
}

blockquote{
  display:block;
  background: #fff;
  padding: 15px 20px 15px 44px;
  margin: 0 0 0px;
  position: relative;

margin-left: 37px;
margin-right: 18px;

  /*Font*/
  font-family: Georgia, serif;
  font-size: 16px;
 line-height: 1.2;
  color: #666;
  text-align: justify;


    /*border optional*/
 border-left: 15px solid darkolivegreen;
  border-right: 2px solid darkolivegreen;

  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/

  /*Font*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;

  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: darkolivegreen;

 }
 blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}

cite{
  text-decoration: none;
  padding: 0 3px;
  color:darkolivegreen;

 }

.c76c0c
{
color: #c76c0c;
 }

#creercompte
{
/*background: #3AAFAB;*/

}

.conditions
{
text-align: center;
text-decoration: none;
padding-top: 1em;
color: blue;
}

.citation
{
  display:block;
  padding: 15px 20px 15px 44px;
  margin: 0 0 0px;
  position: relative;

margin-left: 0px;
margin-right: 20px;

  /*Font*/
text-align: justify;
color: #555;

}

.color555
{
color: #555;
}

.color111
{
color: #111;
}

.notespam
{
font-size: 0.75em;
margin-left: auto;
margin-right: auto;
line-height: 0.75em;
}

.promo
{
padding-top: 50px;
background-color: khaki;
font-size: 1.1em;
text-align: center;
margin-left: auto;
margin-right: auto;
padding-left: 2.5%;
padding-right: 2.5%;
}

.tempsrestant
{
background-color: teal;
font-size: 1.2em;
text-align: center;
color: ghostwhite;
}


#fd, #fdp
{
color: #D6E4F9;
font-weight: bold;
}

#petitscreen h1
{
color: pink;
}

#up
{
font-weight: bold;
}

.serrer
{
  letter-spacing: 0.09em;
    border-radius: 4px;
}



.btn
{
  background: #333;
  color: #f2f2f2;
}

.grand
{
font-size: 1.1em;
}

.slogan
{
font-size: 1.1em;
margin-top: -15px;
}

.petit
{
font-size: 0.65em;
text-transform: lowercase;

}

.liens a
{
color: dodgerblue;
text-decoration: none;
cursor: pointer;
}

h1, h3, .logo, h4
{
text-shadow: -3px 1 4px #000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(255,0,0,1)), to(rgba(255,0,0,0.40)));
text-align: center;
color: black;
}


h2
{
font-size: 2.105em;
}

h3
{
font-style: italic;
color: MidnightBlue;
}

h4
{
text-decoration: underline;
}


.pointer
{
cursor: pointer;
}

.blue
{
color: blue;
}

.darkblue
{
color: darkblue;
font-weight: bold;
}

.darkred_1
{
color: darkred;
}


@font-face {
font-family: "Marker Felt Regular";
src: url('MarkerFeltRegular.ttf');

}

.b
{

font-family: "Marker Felt", "Marker Felt Regular";
color: chocolate;
font-size: 1.4em;
text-shadow: -1px 0 2px #4d0000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.9)));
margin-right: 3px;
vertical-align: -15%;
}

.bw
{

font-family: "Marker Felt", "Marker Felt Regular";
color: #f22;
font-size: 1.5em;
text-shadow: -1px 0 2px #4d0000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.20)));
margin-right: 3px;
vertical-align: -15%;
}

.bws
{

font-family: "Marker Felt", "Marker Felt Regular";
color: #f22;
font-size: 1.5em;
text-shadow: -1px 0 2px #4d0000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.20)));
margin-right: 2px;
vertical-align: -25%;
}

.bwsrose
{

font-family: "Marker Felt", "Marker Felt Regular";
color: cghostwhite;
font-size: 1.5em;
text-shadow: -1px 0 2px #4d0000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.55)));
margin-right: 2px;
vertical-align: -25%;
}

.bwsnom
{

font-family: "Marker Felt", "Marker Felt Regular";
color: cghostwhite;
font-size: 1.15em;
text-shadow: -1px 0 2px #4d0000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.55)));
margin-right: 2px;
letter-spacing: .02em;

}

.markerfelt
{
font-family: "Marker Felt", "Marker Felt Regular";
}



.bww
{

font-family: "Marker Felt", "Marker Felt Regular";
color: #f22;
font-size: 1.32em;
text-shadow: -1px 0 2px #4d0000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.20)));
margin-right: 2px;
vertical-align: -10%;
}



.r
{
font-family: "Marker Felt", "Marker Felt Regular", sherif;
font-size: 1.05em;
text-shadow: -1px 0 3px #330000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.15)));
vertical-align: -4%;
}

.rw
{
color: ghostwhite;
font-family: "Marker Felt", "Marker Felt Regular", sherif;
font-size: 1.05em;
text-shadow: -1px 0 3px ghostwhite;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,255.15)));
vertical-align: -4%;
}

.rww
{
color: ghostwhite;
font-family: "Marker Felt", "Marker Felt Regular", sherif;
font-size: 0.95em;
text-shadow: -1px 0 3px ghostwhite;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,255.15)));
vertical-align: -4%;
margin-right: 1px;
}

.o, .u, .m1
{
font-weight: 600;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));

}

.ow, .uw, .m1w
{
color: ghostwhite;
font-weight: 600;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));

}

.oww, .uww, .m1ww
{
color: ghostwhite;
font-size: 0.95em;
font-weight: 600;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));
margin-right: 1px;

}

.v, .r2, .o2, .u2, .m2
{
font-weight: 500;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));
}

.u2profil
{
color:black;
font-weight: 500;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,0.85)), to(rgba(0,0,0,0)));
}

.vw, .r2w, .o2w, .u2w, .m2w
{
color: ghostwhite;
font-weight: 500;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));
}

.vww, .r2ww, .o2ww, .u2ww, .m2ww
{
color: ghostwhite;
font-size: 0.95em;
font-weight: 500;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));
    margin-right: 1px;
}

.uww
{
color: ghostwhite;
font-weight: 400;
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.6)));
}

.bb
{
color: red;
text-shadow: -1px 0 6px red;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.20)));
}

.rb
{
color: ghostwhite;
text-shadow: -2px 0 4px white;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.15)));
}

.ghostwhite
{
background-color: ghostwhite;
}

.cghostwhite
{
color: ghostwhite;
}

.lightblack
{
background-color: black;
}

/* section a propos*/

#map
{
width: 100%;
height: 0%;
background-color: grey;
position: relative;
top: 100px;
}

#description
{
font-family: Roboto;
font-size: 15px;
font-weight: 300;
}

#infowindow-content .title
{
font-weight: bold;
}

#infowindow-content
{
display: none;
}

#map #infowindow-content
{
display: inline;
}

.pac-card
{
margin: 10px 10px 0 0;
border-radius: 2px 0 0 2px;
box-sizing: border-box;
-moz-box-sizing: border-box;
outline: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
background-color: #fff;
font-family: Roboto;
}

#pac-container
{
padding-bottom: 12px;
margin-right: 12px;
}

.pac-controls
{
display: inline-block;
padding: 5px 11px;
}

.pac-controls label
{
font-family: Roboto;
font-size: 13px;
font-weight: 300;
}

#title
{
color: #fff;
background-color: #4d90fe;
font-size: 25px;
font-weight: 500;
padding: 6px 12px;
}

#target
{
width: 345px;
}

#pac-input
{
margin-bottom: 1px;
}

#pac-input:focus, #pac-input2:focus
{
background-color: white;
height: 42px;
}


//datepicker

.div.ui-datepicker{
 font-size:16px;
}


.width100
{
width: 100px;
}

input:invalid+span:after {
  content: '✖';
  padding-left: 5px;
}

input:valid+span:after {
  content: '✓';
  padding-left: 5px;
}


// Fasollasido
body {
  background-color: #333;
  font-family: 'Luckiest Guy', cursive;
  font-size: 31em;
}


.logofasol
{
padding-top: 46px;
}

.pubhd
{
padding-top: 46px;
margin-right: 0px;
}

.padding0
{
padding-left: 0px;
padding-right: 0px;
}

.margin0
{
margin-left: 0px;
margin-right: 0px;
}

.plusagauche
{
padding-right:100px;
}

.down
{
padding-top: 50px;
padding-right: 40px;
}

.leftleft
{
position: relative;
left: -40px;
color: dodgerblue;
}

.left45
{
position: relative;
left: -45px;
color: dodgerblue;
}

.left50
{
position: relative;
left: -50px;
color: dodgerblue;
}

.left55
{
position: relative;
left: -55px;
color: dodgerblue;
}

.left5
{
position: relative;
left: -5px;
}

.left10
{
position: relative;
left: -10px;
}

.left15
{
position: relative;
left: -15px;
}

.left14
{
position: relative;
left: -14px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
        background-color: black;
}

/* Style the header */
.header {

    padding: 50px;
    text-align: center;
}

/* Container for flexboxes */
.row {
    display: -webkit-flex;
    display: flex;
}

/* Create three unequal columns that sits next to each other */
.column {
    padding: 15px;
background-color: ghostwhite;
}

/* Left and right column */
.column.sided1 {
width: 190px;
border-radius: 11px;
height: 170px;
margin-bottom: 11px;
/*
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
*/
}

.column.sided2 {
width: 190px;
border-radius: 11px;
height: 322px;
margin-bottom: 11px;
}

.sided2 li, .sided2 a
{
color: blue;
text-decoration: none;
text-align: center;
font-size: 1.2em;
}

.column.sided3 {
width: 190px;
border-radius: 11px;
height: 125px;
margin-bottom: 11px;
}

.column.sided4 {
width: 190px;
border-radius: 11px;
height: 125px;
margin-bottom: 11px;
}

.column.sided5 {
padding-left: 5px;
width: 190px;
border-radius: 11px;
height: 545px;

}

.column.sideg {
width: 190px;
height: 630px;
border-radius: 11px;
margin-bottom: 11px;
/*
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
*/
}

.column.sideg2 {
width: 190px;
height: 125px;
border-radius: 11px;
margin-bottom: 11px;
}

.column.sideg3 {
width: 190px;
height: 352px;
border-radius: 11px;
padding-left: 5px;

}

.column.sideg4 {
width: 190px;
height: 189px;
border-radius: 11px;
margin-bottom: 11px;
}

/* Middle column */
.column.middle {
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
    border-radius: 11px;
    margin-right: 2px;
    margin-left: 2px;

    /*    max-height: 766px; */
}

.middlesanspub /*sans pub*/
{
    background-color: ghostwhite;
    padding: 11px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;

    text-align: center;
    /*
    margin-bottom: 11px;
    margin-top: 11px;
    border-radius: 11px;
    */


    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-color: ghostwhite;

}

@media only screen and (min-width: 768px) {
.column.middle {
    margin-right: 11px;
    margin-left: 11px;
  }
}

.middle p
{
font-size: 1.15em;
text-align: justify;
}

.middle h3
{
text-align: left;
text-decoration: underline;
}


.section /*sans pub*/
{
    padding: 11px;

    margin-top: 11px;
    border-radius: 11px;
    text-align: center;
    /*
    margin-bottom: 11px;
    margin-top: 11px;
    border-radius: 11px;
    */


    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-color: ghostwhite;


    background-position:left;
    background-repeat:no-repeat;
    background-size: 100% auto;
    color: white;

    animation: fadeInBackground 3s ease-in-out forwards;

}

@keyframes fadeInBackground {
    0% {
        background-color: rgba(0, 128, 0, 0.75);  /* Vert opaque */
    }
    100% {
        background-color: rgba(0, 128, 0, 0.4);  /* Vert semi-transparent */
    }
}


@media (max-width: 600px) {
.section
{
/* avec pub
margin-left: 2px;
margin-right: 2px;
*/

margin-left: 0px;
margin-right: 0px;

}

}




/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .row {
      -webkit-flex-direction: column;
      flex-direction: column;
    }
}

                     #warped {position: relative; display: block; width:588px; height:390px;}

                     #warped>span[class^=w]:nth-of-type(n+0){display:block; position:absolute;
                     -moz-transform-origin:50% 100%; -webkit-transform-origin:50% 100%; -o-transform-origin:50%
                     100%; -ms-transform-origin:50% 100%; transform-origin:50% 100%; }

                     #warped span{font-family:'ABeeZee';font-size:45px;font-weight:regular;font-style:normal;
                     line-height:0.655; white-space:pre; overflow:visible; padding:0px;}

                     #warped .w0 {-moz-transform: rotate(-7.85rad);-webkit-transform: rotate(-7.85rad);-o-transform:
                     rotate(-7.85rad);-ms-transform: rotate(-7.85rad); transform: rotate(-7.85rad);
                     width: 14px; height: 29px; left: 33px; top: 189.8px;}

                     #warped .w1 {-moz-transform: rotate(-7.72rad);-webkit-transform: rotate(-7.72rad);-o-transform:
                     rotate(-7.72rad);-ms-transform: rotate(-7.72rad); transform: rotate(-7.72rad);
                     width: 14px; height: 29px; left: 34.98px; top: 161.42px;}

                     #warped .w2 {-moz-transform: rotate(-7.53rad);-webkit-transform: rotate(-7.53rad);-o-transform:
                     rotate(-7.53rad);-ms-transform: rotate(-7.53rad); transform: rotate(-7.53rad);
                     width: 24px; height: 29px; left: 37.77px; top: 128.55px; color: darkred;}

                     #warped .w3 {-moz-transform: rotate(-7.29rad);-webkit-transform: rotate(-7.29rad);-o-transform:
                     rotate(-7.29rad);-ms-transform: rotate(-7.29rad); transform: rotate(-7.29rad);
                     width: 14px; height: 29px; left: 57.49px; top: 97.91px;}

                     #warped .w4 {-moz-transform: rotate(-7rad);-webkit-transform: rotate(-7rad);-o-transform:
                     rotate(-7rad);-ms-transform: rotate(-7rad); transform: rotate(-7rad); width:
                     28px; height: 29px; left: 73.97px; top: 70.57px;color: tomato;}

                     #warped .w5 {-moz-transform: rotate(-6.71rad);-webkit-transform: rotate(-6.71rad);-o-transform:
                     rotate(-6.71rad);-ms-transform: rotate(-6.71rad); transform: rotate(-6.71rad);
                     width: 14px; height: 29px; left: 110.87px; top: 51.45px;}

                     #warped .w6 {-moz-transform: rotate(-6.41rad);-webkit-transform: rotate(-6.41rad);-o-transform:
                     rotate(-6.41rad);-ms-transform: rotate(-6.41rad); transform: rotate(-6.41rad);
                     width: 26px; height: 29px; left: 138.79px; top: 41.95px;color: dodgerblue;}

                     #warped .w7 {-moz-transform: rotate(-6.13rad);-webkit-transform: rotate(-6.13rad);-o-transform:
                     rotate(-6.13rad);-ms-transform: rotate(-6.13rad); transform: rotate(-6.13rad);
                     width: 14px; height: 29px; left: 178.98px; top: 42.5px;}

                     #warped .w8 {-moz-transform: rotate(-5.83rad);-webkit-transform: rotate(-5.83rad);-o-transform:
                     rotate(-5.83rad);-ms-transform: rotate(-5.83rad); transform: rotate(-5.83rad);
                     width: 27px; height: 29px; left: 206.84px; top: 53.44px;color: indigo;}

                     #warped .w9 {-moz-transform: rotate(-5.54rad);-webkit-transform: rotate(-5.54rad);-o-transform:
                     rotate(-5.54rad);-ms-transform: rotate(-5.54rad); transform: rotate(-5.54rad);
                     width: 14px; height: 29px; left: 242.04px; top: 73.29px;}

                     #warped .w10 {-moz-transform: rotate(-5.3rad);-webkit-transform: rotate(-5.3rad);-o-transform:
                     rotate(-5.3rad);-ms-transform: rotate(-5.3rad); transform: rotate(-5.3rad);
                     width: 16px; height: 29px; left: 260.55px; top: 96.44px;color: blue;}

                     #warped .w11 {-moz-transform: rotate(-5.09rad);-webkit-transform: rotate(-5.09rad);-o-transform:
                     rotate(-5.09rad);-ms-transform: rotate(-5.09rad); transform: rotate(-5.09rad);
                     width: 14px; height: 29px; left: 275.23px; top: 123.14px;}

                     #warped .w12 {-moz-transform: rotate(-4.89rad);-webkit-transform: rotate(-4.89rad);-o-transform:
                     rotate(-4.89rad);-ms-transform: rotate(-4.89rad); transform: rotate(-4.89rad);
                     width: 23px; height: 29px; left: 279.51px; top: 155.05px;color: darkolivegreen;}

                     #warped .w13 {-moz-transform: rotate(-4.73rad);-webkit-transform: rotate(-4.73rad);-o-transform:
                     rotate(-4.73rad);-ms-transform: rotate(-4.73rad); transform: rotate(-4.73rad);
                     width: 14px; height: 29px; left: 286.98px; top: 188.6px;}

                     #warped .w14 {-moz-transform: rotate(-4.89rad);-webkit-transform: rotate(-4.89rad);-o-transform:
                     rotate(-4.89rad);-ms-transform: rotate(-4.89rad); transform: rotate(-4.89rad);
                     width: 28px; height: 29px; left: 282.98px; top: 226.94px;color: mediumseagreen;}

                     #warped .w15 {-moz-transform: rotate(-5.11rad);-webkit-transform: rotate(-5.11rad);-o-transform:
                     rotate(-5.11rad);-ms-transform: rotate(-5.11rad); transform: rotate(-5.11rad);
                     width: 14px; height: 29px; left: 299.81px; top: 261.5px;}

                     #warped .w16 {-moz-transform: rotate(-5.36rad);-webkit-transform: rotate(-5.36rad);-o-transform:
                     rotate(-5.36rad);-ms-transform: rotate(-5.36rad); transform: rotate(-5.36rad);
                     width: 26px; height: 29px; left: 310.91px; top: 291.92px;color: maroon;}

                     #warped .w17 {-moz-transform: rotate(-5.64rad);-webkit-transform: rotate(-5.64rad);-o-transform:
                     rotate(-5.64rad);-ms-transform: rotate(-5.64rad); transform: rotate(-5.64rad);
                     width: 14px; height: 29px; left: 341.22px; top: 316.51px;}

                     #warped .w18 {-moz-transform: rotate(-5.87rad);-webkit-transform: rotate(-5.87rad);-o-transform:
                     rotate(-5.87rad);-ms-transform: rotate(-5.87rad); transform: rotate(-5.87rad);
                     width: 11px; height: 29px; left: 366.37px; top: 330.54px;color: red;}

                     #warped .w19 {-moz-transform: rotate(-6.1rad);-webkit-transform: rotate(-6.1rad);-o-transform:
                     rotate(-6.1rad);-ms-transform: rotate(-6.1rad); transform: rotate(-6.1rad);
                     width: 14px; height: 29px; left: 391.24px; top: 338.84px;}

                     #warped .w20 {-moz-transform: rotate(-6.41rad);-webkit-transform: rotate(-6.41rad);-o-transform:
                     rotate(-6.41rad);-ms-transform: rotate(-6.41rad); transform: rotate(-6.41rad);
                     width: 31px; height: 29px; left: 419.95px; top: 340.13px;color: palegoldenrod;}

                     #warped .w21 {-moz-transform: rotate(-6.72rad);-webkit-transform: rotate(-6.72rad);-o-transform:
                     rotate(-6.72rad);-ms-transform: rotate(-6.72rad); transform: rotate(-6.72rad);
                     width: 14px; height: 29px; left: 464.53px; top: 329.9px;color: aliceblue;}

                     #warped .w22 {-moz-transform: rotate(-7.02rad);-webkit-transform: rotate(-7.02rad);-o-transform:
                     rotate(-7.02rad);-ms-transform: rotate(-7.02rad); transform: rotate(-7.02rad);
                     width: 27px; height: 29px; left: 487.74px; top: 310.35px;color: aliceblue;}

/*message erreur formulaire*/
input, textarea{
/*
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 15px #666;
    box-shadow: 0 0 15px #666;
*/
background-color: ghostwhite;
}

.depart, .arrivee, .choisirdate,
{
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 15px #666;
    box-shadow: 0 0 15px #666;
height: 40px;
}

.enfantlist
{
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 15px #666;
    box-shadow: 0 0 15px #666;
height: 40px;
color:grey;
}


input:focus, textarea:focus
{
-webkit-appearance: none;
      -webkit-box-shadow: 0 0 19px darkolivegreen;
    box-shadow: 0 0 19px darkolivegreen;
    background-color: white;

}

footer input
{
max-height: 42px;
color: black;
}

footer input:focus, .promotion:focus
{
  -webkit-appearance: none;
  outline-width: 1px;
  outline-style: dashed;
  outline-color: darkgreen;
    -webkit-box-shadow: 0 0 31px darkgreen;
    box-shadow: 0 0 31px darkgreen;
}

.fc
{
font-weight: bold;
font-size: 1.025em;
}

.mesliens a:active
{
font-size: 3em;
color: red;
}

.opacitynormal
{
opacity: 1;
}

.opacity60
{
opacity: 0.6;
}

.opacity50
{
opacity: 0.5;
}

.opacity40
{
opacity: 0.4;
}

.gw
{
color:ghostwhite;
}

.lignes
{

background-position:right;
background-repeat:no-repeat;
background-size: 200px 60px
}

.lignes_connected
{
background-position:right;
background-repeat:no-repeat;
background-size: 224px 60px
}

.lignesen
{
background-position:right;
background-repeat:no-repeat;
background-size: 175px 60px
}

.lignesw
{

background-position:right;
background-repeat:no-repeat;
background-size: 100% 60px
}

.defile
{
    background: url(images/downleft/galaxie400.png);
    background-position:left;
    background-repeat:no-repeat;
    background-size: 100% auto;
}
.white
{
color: ghostwhite;
}

.margintop5
{
margin-top: 5px;
}


.margintop40
{
margin-top: 40px;
}

.o75{opacity: 0.75;}.o85{opacity: 0.85;}.o90{opacity: 0.90;}

.bgblack
{
background-color: black;
}

#ccnx, #pcnx
{
height: 24px;
opacity: 0.75;
background-color: ghostwhite;
}

#ccnx:focus, #pcnx:focus
{
height: 25px;
opacity: 1;
background-color: white;
}

#ccnx:hover, #pcnx:hover
{
height: 25px;
opacity: 1;
background-color: white;
}

.cblack
{
color: black;
}

.dejauncompte
{
margin-top: -40px;
color: ghostwhite;
margin-bottom: 90px;
text-align: center;
font-style: italic;
}


@media (max-width: 300px) {

 select
 {
 margin-left:0px;
 }

}

#meconnecter
{
    color: ghostwhite;
font-weight: 600;
    text-shadow: 1px 1px 2px black, 0 0 10px black, 0 0 5px darkblue;
    visibility: hidden;

}

.lumiere
{
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4) inset;
opacity: 1;
}

.fondlogo
{
background-color: black;
background: url(logo/Bnoir/android-icon-48x48.png);
background-position:left;
background-repeat:no-repeat;
}

.addlogo
{
background: url(/icons/apple-touch-icon.png);
background-position:left;
background-repeat:no-repeat;
}

.fondlogopetitkkkk
{
background: url(icons/favicon-32x32.png);

background-repeat:no-repeat;
background-position: 10px center;


}



.ml25{margin-left: 25px;}.ml31{margin-left: 31px;}.ml36{margin-left: 36px;}.ml40{margin-left: 40px;}


.c_fefbd8
{
color: #fefbd8;
}

.radio
{
/*
font-style: italic;
margin-top: 22px;
margin-bottom: -12px;
margin-left: 67px;
*/
}

.publiertrajet
{
margin-top: -10px;
margin-left: 49px;
font-style: italic;
}

#schedule
{
padding-top: 50px;
}

.animate-left-600{position:relative;animation:animateleft 1s}@keyframes animateleft{from{left:-600px;opacity:0} to{left:0;opacity:1}}

.animate-left-4000{position:relative;animation:animateleft 3.6s}@keyframes animateleft{from{left:-4000px;opacity:0} to{left:0;opacity:1}}

.animate-right-4000{position:relative;animation:animateright 3.6s}@keyframes animateleft{from{right:4000px;opacity:0} to{right:0;opacity:1}}

.hide-v-ipad
{
color: ghostwhite;
}

@media only screen and (max-width: 1000px) {
.hide-v-ipad {
display: none;
  }
}

.corner
{
border-radius: 11px;
}

.darkred
{
color: darkred;
}

.brown
{
color: brown;
}

.pluspetit
{
font-size: 0.9em;
}

.marginbottom10, .mb10
{
margin-bottom: 10px;
}

.mb11
{
margin-bottom: 11px;
}

.mb15
{
margin-bottom: 15px;
}

.mb20
{
margin-bottom: 20px;
}

.margintop10, .mt10
{
margin-top: 10px;
}

.mt11
{
margin-top: 11px;
}

.mt15
{
margin-top: 15px;
}

.mt25
{
margin-top: 25px;
}

.paddingbottom10, .pb10
{
padding-bottom: 10px;
}

.pb11
{
padding-bottom: 11px;
}

.pb15
{
padding-bottom: 15px;
}

.pb25
{
padding-bottom: 25px;
}

.mrc
{
padding-right: 25px;;
}

.espace
{
margin-right: 25px;
}

.padding-24-32 {
padding-top:32px!important;padding-bottom:32px!important
  }

@media only screen and (max-width: 768px) {
.padding-24-32 {
padding-top:24px!important;padding-bottom:24px!important
  }
}

}

.grey
{
color: grey;
}


.nodegrade h1
{
text-shadow: -3px 1 4px #000;
-webkit-mask-image: -webkit-gradient(linear, left top,
    left bottom, from(rgba(255,0,0,1)), to(rgba(255,0,0,1)));
text-align: center;
color: #405d27;
}

.em3p2
{
font-size: 3.2em;
}
.animate-opacity{animation:opac 1.5s}@keyframes opac{from{opacity:0} to{opacity:1}}

.animate-opacity-slow{animation:opac 4.5s}@keyframes opac{from{opacity:-1} to{opacity:1}}

/*
input[type="file"]
{
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;

}
.custom-file-upload_test {
    border: 1px solid #ccc;
  display: inline-block;

    padding: 6px 12px;
    cursor: pointer;

}
*/

.black
{
color: black;
}

.darkred
{
color:darkred;
}

.blue
{
color:blue;
}

.darkgreen
{
color:darkgreen;
}

.darkolivegreen
{
color:darkolivegreen;
}

.darkblue
{
color:darkblue;
}

.or
{
color: #DAA520;
}

.bold
{
font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .titre2
  {
font-size: 2.17em;
  }
  .espacegauche
  {
  margin-left: 50px;
  vertical-align: -20%;
  }
  .v-20
  {
  vertical-align: -20%;
  }
  .smallsize
  {
  font-size: 2.9em;
  }
  .smallmt-31
  {
  margin-top: -31px;
  }
  .smallmt-10
  {
  margin-top: -10px;
  }
  .smallmr
  {
  margin-right: 60px;
  padding-right: 60px;
  }
}

.fond_degrade
{
background-image: radial-gradient(ellipse at center, white, white, ghostwhite, #C0C0C0);
/*
background-image: radial-gradient(ellipse at center, #2b5876, #4e4376);*/
/*
background: url(images/lignes/lignes400.png);
background-position:right;
background-repeat:no-repeat;

background-size: 100%;
*/

}

.bordergw
{
border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-color: ghostwhite;
}

.ddn
{
font-weight: 300;
text-transform: uppercase;
margin-left: auto;
margin-right: auto;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/*  profil responsive desisg */
* {
  box-sizing: border-box;
}

.menu {
  float: left;
  width: 20%;
  text-align: center;
}

.menu a {
  background-color: #e5e5e5;
  padding: 8px;
  margin-top: 7px;
  display: block;
  width: 100%;
  color: black;
}

.main {
  float: left;
  width: 60%;
  padding: 0 20px;
}

.right {
  background-color: #e5e5e5;
  float: left;
  width: 20%;
  padding: 15px;
  margin-top: 7px;
  text-align: center;
}


/* pour mettre bouton sur image*/
.container {
  position: relative;
  width: 100%;
  max-width: 1600px;
}

.container img {
  width: 100%;
  height: auto;
}

.container .btn {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #333;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
}

.container .btn:hover {
  background-color: black;
}

/* fin pour mettre bouton sur image*/

@media only screen and (max-width: 620px) {
  /* For mobile phones: */
  .menu, .main, .right {
    width: 100%;
  }
}

.button-cta {
  height: 40px;
  width: 40%;
  background: #3367d6;
  color: white;
  font-size: 15px;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.48);
  cursor: pointer;
}

.search-container {
    margin-bottom: 0px;
    margin-top: 6px;
}

#searchInput {
    padding: 10px;
    width: 100%;
    font-size: 16px;
}

.menu {
    margin-top: 20px;
}

.menu-button {
    margin: 10px 0;
    padding: 10px;
    cursor: pointer;
}

.menu-items {
    list-style: none;
    padding-left: 20px;
    display: none; /* caché par défaut */
}

.menu-items-kk {
    list-style: none;
    padding-left: 20px;
    display: none; /* caché par défaut */
}

.menu-items li {
    margin: 5px 0;
    color:#fdf5e6;
}

* {
  box-sizing: border-box;
}

/* Create a column layout with Flexbox */
.row {
  display: flex;
}

/* Left column (menu) */
.left {
  flex: 35%;
  padding: 15px 0;
}

.left h2 {
  padding-left: 8px;
}

/* Right column (page content) */
.right {
  flex: 65%;
  padding: 15px;
}

/* Style the navigation menu inside the left column */
#myMenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myMenu li a {
  padding: 12px;
  text-decoration: none;
  color: ghostwhite;
  display: block
}

#myMenu li a:hover {
  background-color: blue;
}

#resultsContainer {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.result-item {
    padding: 5px;
    border-bottom: 1px solid #eee;
}

.result-item:hover {
    background-color: blue;
}
