html {
  background: #99CDE5;
  min-height: 100%;
  font-family: 'Roboto', sans-serif;
}

body {
  padding-top: 5px;
}

.title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  color: #0e98df;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 1px;
}

.description {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

a. {
  padding-left: 90%;
}

a.stylebouton {
  padding: 20px 20px;
  border: 2px solid #e7e5e5;
  border-radius: 6px;
  display: block;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 3px;
  background: #0e98df;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

/************************* FORMULAIRE */
input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 20px 20px;
  border: 2px solid #e7e5e5;
  border-radius: 6px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #0e98df;
}

input[type="radio"] {
  margin-right: 15px;
}


label {
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
  color: #666;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  cursor: pointer;
}

label:first-child {
  margin-bottom: 0;
  border-bottom: none;
}



input[type="submit"] {
  padding: 10px 20px;
  border-radius: 3px;
  background: #0e98df;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
  width: 150px;
  white-space: normal; /* pour le retour à la ligne pour > 150px; */
  word-wrap: break-word; /* pour le retour à la ligne - un seul mot */

}

#formulaire_mail {
  width: 600px;
  text-align: center;
  margin: 50px auto;
  background: white;
  padding: 20px;
}

fieldset {
  border: none;
  /* border-top:  */
}

legend {
  margin: 30px 0 0;
  text-transform: uppercase;
  text-align: center;
  color: #0e98df;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 1px;
  text-align: left;
}

textarea#message {
  width: 100%;
}

label.text {
  text-align: left;
}

.button,
.rerun-button {
  padding: 10px 20px;
  border-radius: 3px;
  background: #0e98df;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
}

.button:hover,
.rerun-button:hover {
  background: #1273a5;
  transition: .2s;
}

.button.rerun-button,
.rerun-button.rerun-button {
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  box-shadow: 0px 10px 15px -6px rgba(0, 0, 0, 0.2);
  display: none;
}


.text-center {
  text-align: center;
}

.form-wrap {
  max-width: 800px;
  margin: 50px auto;
  transition: transform 600ms ease-in-out;
}

.form-header {
  height: 45px;
  background: white;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-header span {
  display: block;
  height: 12px;
  width: 12px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.form-header span.is-active {
  background: rgba(0, 0, 0, 0.4);
  background: #0e98df;
}



.form-bodies {
  position: relative;
  perspective: 1000px;
}

.form-body {
  background: white;
  padding: 40px 100px;
  box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
  position: absolute;
  top: 0;
  display: none;
  box-sizing: border-box;
  width: 100%;
  transform-origin: top left;
}



.form-body.is-showing {
  display: block;
}



.animate-out {
  animation: out 600ms ease-in-out forwards;
}

.animate-in {
  animation: in 500ms ease-in-out forwards;
  display: block;
}

.animate-up {
  transform: translateY(-500px) rotate(30deg);
}

@keyframes out {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  60% {
    transform: rotate(60deg);
  }

  100% {
    transform: translateY(800px) rotate(10deg);
  }
}

@keyframes in {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

/************************* ROUE */
#page {

  margin: auto;
  max-width: 1100px;
  position: relative;
 
  flex-wrap: wrap;
  justify-content: center;
}

#page>div:first-child {
  flex: 0 0 85%;
}

#page>div:last-child {
  flex: 0 0 15%;
}

@media (max-width: 1474px) {

  #page>div:last-child {
    flex: 0 0 100%;
    height: 100%;
  }
}

@media (max-width: 1474px) {
  .custom-card {
    margin: -60px;
  }
}

@media (min-width: 1199px) and (max-width: 1474px) {
  #page {
    max-width: 1064px;
  }
}


#yt {
  top: 10px;
  left: 60px;
  position: absolute;
}

#fb {
  top: 50px;
  left: 30px;
  position: absolute;
}

#g {
  top: 105px;
  left: 10px;
  position: absolute;
}

#twitter {
  top: 160px;
  left: -30px;
  position: absolute;
}

#webradio {
  top: 450px;
  left: 10px;
  position: absolute;
}

#tool {
  top: 550px;
  left: 980px;
  position: absolute;
}

.nacelles {
  border-radius: 15px 15px 35px 35px;
  width: 120px;
  height: 60px;

}

.ct {
  font-size: 12px !important;
  font-weight: bold !important;
  color: #FFF !important;
  background: transparent !important;
  border: none !important;
  margin-top: 0px !important;
  padding: 0% !important;
  width: 118px !important;
  height: 60px;
}

.centre {
  font-size: 12px !important;
  font-weight: bold !important;
  color: #FFF !important;
  background: #ff8200 !important;
  border: none !important;
  margin-top: 0px !important;
  padding: 0% !important;
  width: 158px !important;
  height: 158px;
  border-radius: 60% !important;
}

/*tre*/
#nacelle20 {
  top: 90px;
  left: 325px;
  position: absolute;
  background: #356748;
  border: solid 3px #2e8751;
  border-top: solid 10px #2e8751;
}

/*fle*/
#nacelle21 {
  top: 45px;
  left: 490px;
  position: absolute;
  background: #34b866;
  border: solid 3px #71da99;
  border-top: solid 10px #71da99;
}

/*alpha*/
#nacelle22 {
  top: 90px;
  left: 650px;
  position: absolute;
  background: #7f5bc2;
  border: solid 3px #a396bc;
  border-top: solid 10px #a396bc;
}

/*francais*/
#nacelle23 {
  top: 200px;
  left: 765px;
  position: absolute;
  background: #36225b;
  border: solid 3px #722cf4;
  border-top: solid 10px #722cf4;
}

/*actualité*/
#nacelle24 {
  top: 365px;
  left: 805px;
  position: absolute;
  background: #114e77;
  border: solid 3px #35566d;
  border-top: solid 10px #35566d;
}

/*prevention*/
#nacelle25 {
  top: 520px;
  left: 769px;
  position: absolute;
  background: #5493bf;
  border: solid 3px #0a3c5f;
  border-top: solid 10px #0a3c5f;
}

/*tic*/
#nacelle26 {
  top: 635px;
  left: 650px;
  position: absolute;
  background: #646464;
  border: solid 3px #2f2f2f;
  border-top: solid 10px #2f2f2f;
}

/*Anglais*/
#nacelle27 {
  top: 670px;
  left: 490px;
  position: absolute;
  background: #af7864;
  border: solid 3px #ac5434;
  border-top: solid 10px #ac5434;
}

/*sciences*/
#nacelle28 {
  top: 635px;
  left: 330px;
  position: absolute;
  background: #d35159;
  border: solid 3px #d03c45;
  border-top: solid 10px #d03c45;
}

/*maths*/
#nacelle29 {
  top: 525px;
  left: 215px;
  position: absolute;
  background: #c81e28;
  border: solid 3px #701016;
  border-top: solid 10px #701016;
}

/*concours*/
#nacelle30 {
  top: 360px;
  left: 175px;
  position: absolute;
  background: #ee6a43;
  border: solid 3px #bb5233;
  border-top: solid 10px #bb5233;
}

/*bureautique*/
#nacelle31 {
  top: 200px;
  left: 215px;
  position: absolute;
  background: #e6b54f;
  border: solid 3px #bc9645;
  border-top: solid 10px #bc9645;
}

#centre {
  top: 245px;
  left: 470px;
  position: absolute;
}



/*************** DIV CATEGORIE / LIEN *****************
****************************************************
***********************************************************/
.barrehaute {
  display: inline-block;
  width: 100%;
}

.affichage {
  background-color: white;
  margin: 0px;
  padding: 15px;
  height: auto;
}

/*niveau*/

#button-a11,
#button-a1,
#button-a2,
#button-b1 {
  border-width: 2px;
  border-style: solid;
  cursor: pointer;
  transition: 0.3s;
}

#button-a11:hover,
#button-a1:hover,
#button-a2:hover,
#button-b1:hover {
  color: #fff;
}

#button-a11:hover {
  background: #943CC6;
}

#button-a1:hover {
  background: #C85766;
}

#button-a2:hover {
  background: #dc8f5a;
}

#button-b1:hover {
  background: #92DD5A;
}

#button-a11 {
  border-color: #943CC6;
  color: #943CC6;
}

#button-a1 {
  border-color: #C85766;
  color: #c75866;
}

#button-a2 {
  border-color: #dc8f5a;
  color: #dc8f5a;
}

#button-b1 {
  border-color: #92DD5A;
  color: #92DD5A;
}

/* phon et RSB*/
#button-pho:hover,
#button-rsb:hover {
  color: #fff;
}

#button-pho:hover,
#button-rsb:hover {
  background: black;
}

#button-pho,
#button-rsb {
  border-color: white;
  color: black;
}

.barre-icone {
  display: flex;
  justify-content: space-evenly;
  padding: 15px 0;
  list-style-type: none;
}

.mosaique {
  column-count: 3;
}

.categorie {
  font-size: 20px;
  font-weight: bold;
  font-variant: small-caps;
  line-height: 25px;
  padding: 10px 0px;
  border-bottom: 1px dashed #F6B037;
  text-align: center;

}

.cat {
  background-color: #f5f5f5;
  margin: 20px 5px;
  padding: 5px;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  box-shadow: 2px 2px 3px #cecece;
}

.cat:hover {
  background: aliceblue;
}

.url {
  font-size: 14px;
  line-height: 19px;


}

.rq {
  text-align: justify;
  font-size: 12px;
  font-style: italic;
  color: #666;
  max-width: 500px;
}

.lien {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 3px;
  border-bottom: 1px solid #dadada;
}

#petale {
  margin-top: 1%;
}

#fle-button {
  top: 25px;
  left: 25px;
}

table,
th,
td,
tr#tab1 {
  border: 1px solid grey;
  border-collapse: collapse;
}

li.icone-theme {
  cursor: pointer;
  position: relative;
}

li.icone-theme::before {
  content: attr(data-theme);
  color: #000;
  position: absolute;
  width: 800%;
  top: 0%;
  text-align: right;
  right: 0;
  pointer-events: none;
  transition: 0.5s;
  opacity: 0;
}

li.icone-theme:hover::before {
  content: attr(data-theme);
  color: #000;
  position: absolute;
  width: 800%;
  top: -60%;
  text-align: right;
  right: 0;
  pointer-events: none;
  display: block;
  opacity: 1;
}

.theme-choisi {
  width: 20%;
  background: violet;
  padding: 10px;
  color: #fff;
}

.theme-choisi span {
  text-transform: uppercase;
}

#a11 .theme-choisi {
  background: #943CC6;
}

#a1 .theme-choisi {
  background: #C85766;
}

#a2 .theme-choisi {
  background: #dc8f5a;
}

#b1 .theme-choisi {
  background: #92dd5a;
}

#a11 li.icone-theme::before,
#a11 li.icone-theme:hover::before {
  color: #943CC6;
}

#a1 li.icone-theme::before,
#a1 li.icone-theme:hover::before {
  color: #C85766;
}

#a2 li.icone-theme::before,
#a2 li.icone-theme:hover::before {
  color: #dc8f5a;
}

#b1 li.icone-theme::before,
#b1 li.icone-theme:hover::before {
  color: #92DD5A;
}

.tableau-lien {
  width: 80%;
  margin: auto;

}

.tableau-lien tr {
  display: flex;
}

.sujet-theme {
  width: 80%;
}

.link-theme {
  width: 20%;
}

#mail {
  float: right;
}


h2 {
  text-align: center;
  padding: 20px 0;
}

table caption {
  padding: .5em 0;
}

table.dataTable th,
table.dataTable td {
  white-space: nowrap;
}

.p {
  text-align: center;
  padding-top: 140px;
  font-size: 14px;
}

/********************** boutton liens*/



.button-two {
  color: #fff;
  text-align: center;
  padding: 20px;
}


.sub-main {
  margin: 2%;
}

.button-two {
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  margin: 0 0 0 10px;
}



/*Button Two*/
.button-two {
  border-radius: 4px;
  background-color: #d35400;
  border: none;
  padding: 7px;
  width: 100px;
  transition: all 0.5s;
  box-shadow: 1px 2px 5px #aaa;
}


.button-two span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-two span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-two:hover span {
  padding-right: 15px;
}

.button-two:hover span:after {
  opacity: 1;
  right: 0;
}

.sepherds-custom-class.shepherd-element {
  max-width: 650px !important;
}