/*Donne au fond_translucide un fond semi-transparent*/
/*----------------------------------------*/
.fond_translucide {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.fond_translucide .jumbotron {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .6;
  width: 100%;
  height: 100%;
}
/*----------------------------------------*/

#title {
  padding-bottom: 0;
}

#title-text {
  font-family: 'sign-painter', sans-serif;
  color: #3e3e3e;
}

#intro {
  background-image: url("../img/bg_pink.jpg");
  background-repeat:repeat;
  font-family: 'sign-painter', sans-serif;
  font-size: 3em;
  color: #3e3e3e;
}

#intro strong, #decouverte strong {
  color: #ee1818;
  font-weight: normal;
}

#decouverte {
  font-family: 'sign-painter', sans-serif;
  font-size: 4em;
  color: #3e3e3e;
}

#presentation {
  font-family: 'Raleway', sans-serif;
  font-size: 3em;
  color: black;
}

#quotes {
  font-family: 'times', serif;
  font-size: 3em;
  color: #555555;
}

#quotes.fa {
  font-size: 0.6em;
}

#quotes.glyphicon {
  font-size: 0.7em;
}

/*Permet de spécifier l'emplacement préféré pour passer à la ligne dans les citations*/
span.avoidwrap { display: inline-block; }

.container-fluid {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer {
  background-color: #717171;
  color: white;
  font-size: 1.5em;
  margin-top: 3em;
  padding-top: 10px;
  padding-bottom: 10px;
}

#moi {
  width: 6em;
  height: 6em;
  top: -2em;
  position: absolute;
}

#footer_text {
  /*min-height: 4em car la photo fait 6em de haut et déclaée de 2em*/
  min-height: 4em;
  margin-left: 6em;
  padding-left: 1em;
}

.left {
   float: left;
   padding-right: 2em;
   padding-bottom: 2em;
}

.section_blanche {
  font-family: 'Raleway', sans-serif;
  font-size: 3em;
  color: black;
}

.fond-math {
  background-image: url("../img/bg_math.jpg");
  background-repeat: no-repeat;
  /*background-attachment: fixed;*/
  background-position: center;
  background-size: cover;
}

#download_info {
  font-size: 1.2em;
}

/* video modal --------------------------------------- */
#modal_streaming_body {
  padding: 0;
  color: white;
  background-color: black;
}

#video-loader {
  position: absolute;
  z-index: 10;
  display: none;

  background-color: black;

  width: 100%;
  height: 100%;

  /*border: 16px solid #6c6c6c;
  border-top: 16px solid white;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  animation: spin 2s linear infinite;*/
}

#video-loader-spinner {
  height: 26px;
}

/*-- spinner ------------------*/
.spinner {
  text-align: center;
}

.spinner > div {
  /*width: 18px;
  height: 18px;*/
  width: 22px;
  height: 22px;
  /*background-color: #333;*/
  background-color: #a6a3a3;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/*-- spinner ------------------*/

#video {
  height: 100%;
  width: 100%;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#no_play_warning {
  display: none;
  margin-bottom: 0;
  font-size: 1.5em;
}
/* ---------------------------------------------------- */


/* Media queries --------------------------------------- */
/* xs < 768 */
@media screen and (max-width: 767px) {
    body { font-size: 0.8em; }
    .valign { margin-top: 0.3em; }
    .talign-right { text-align: center; }
    .talign-left { text-align: center; }
    .btnValign { margin-top: 20px; }
    .xs-padding {
      padding-left: 0;
      padding-right: 0;
    }
}

/* sm */
@media screen and (min-width: 768px) {
    body { font-size: 0.98em; }
    .valign { margin-top: 0.5em; }
    .talign-right { text-align: center; }
    .talign-left { text-align: center; }
    .btnValign { margin-top: 20px; }
}

/* md */
@media screen and (min-width: 992px) {
    body { font-size: 1em; }
    .valign { margin-top: 1em; }
    .talign-right { text-align: right; }
    .talign-left { text-align: left; }
    .btnValign { margin-top: 11%; }
}

/* lg */
@media screen and (min-width: 1200px) {
    body { font-size: 1.1em; }
    .valign { margin-top: 1.5em; }
    .talign-right { text-align: right; }
    .talign-left { text-align: left; }
    .btnValign { margin-top: 8%; }
}
/* ---------------------------------------------------- */

/* Media queries debug -------------------------------- */
/*@media screen and (max-width: 767px) {
    body { color: red; }
}
@media screen and (min-width: 768px) {
    body { color: blue; }
}
@media screen and (min-width: 992px) {
    body { color: green; }
}
@media screen and (min-width: 1200px) {
    body { color: yellow; }
}*/
/* ---------------------------------------------------- */
