/*
 *
 * Page cours
 */
#carousel .slides li {
  position: relative;
}
#carousel .slides li img {
  transition: 0.5s border;
  -webkit-transition: 0.5s border;
}
#carousel .slides li.flex-active-slide img {
  border: 4px solid #FFCF01;
}
#carousel .slides li ._pastille_fiche_vue {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
  bottom: 5px;
  right: 10px;
}
#carousel .slides li ._pastille_fiche_vue._vue {
  background: greenyellow;
}
._fullscreen {
  position: fixed;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1000000;
}
._fullscreen ._close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  cursor: pointer;
  z-index: 2;
}
._fullscreen ._close:before {
  margin: 0;
  cursor: pointer;
}
._fullscreen ._close:hover {
  opacity: 0.8;
}
._fullscreen ._prev,
._fullscreen ._next {
  position: absolute;
  height: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  z-index: 2;
}
._fullscreen ._prev:before,
._fullscreen ._next:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
}
._fullscreen ._prev:hover,
._fullscreen ._next:hover {
  opacity: 0.8;
}
._fullscreen ._prev {
  left: 30px;
}
._fullscreen ._prev:before {
  content: '\f001';
}
._fullscreen ._next {
  right: 30px;
}
._fullscreen ._next:before {
  content: '\f002';
}
._fullscreen ._screen {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 95vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
._fullscreen ._screen[data-anim="out_to_right"] {
  animation: _anim_out_to_right 0.5s forwards;
  -webkit-animation: _anim_out_to_right 0.5s forwards;
}
._fullscreen ._screen[data-anim="out_to_left"] {
  animation: _anim_out_to_left 0.5s forwards;
  -webkit-animation: _anim_out_to_left 0.5s forwards;
}
._fullscreen ._screen[data-anim="in_to_right"] {
  animation: _anim_in_to_right 0.5s forwards;
  -webkit-animation: _anim_in_to_right 0.5s forwards;
}
._fullscreen ._screen[data-anim="in_to_left"] {
  animation: _anim_in_to_left 0.5s forwards;
  -webkit-animation: _anim_in_to_left 0.5s forwards;
}
._fullscreen ._options {
  position: absolute;
  left: 0;
  bottom: -7.7vh;
  width: 100%;
  height: 8.7vh;
  background: #fff;
  padding: 1vh 8vw 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-top: 1px solid #d8e1e8;
  z-index: 4;
}
._fullscreen ._options:before {
  content: 'options';
  position: absolute;
  top: -1.5vh;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 1.5vh;
  line-height: 1.5vh;
  font-size: 1.4vh;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  padding: 2px;
  text-align: center;
  border-radius: 4px;
  border-top: 1px solid #d8e1e8;
}
@media only screen and (max-width: 790px) {
  ._fullscreen ._options:before {
    top: -5vh;
    height: 5vh;
    line-height: 5vh;
    font-size: 4vh;
    width: 50vw;
  }
}
._fullscreen ._options:hover,
._fullscreen ._options._open {
  bottom: 0;
}
@media only screen and (max-width: 790px) {
  ._fullscreen ._options:hover,
  ._fullscreen ._options._open {
    padding-bottom: 10vh;
  }
}
._fullscreen ._options ._option {
  display: none;
  font-size: 2rem;
}
._fullscreen ._options ._option img {
  max-height: 8vh;
}
._fullscreen ._show_option {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  left: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 5vh;
}
._fullscreen ._show_option[data-anim="out_to_right"] {
  animation: _anim_out_to_right 0.5s forwards;
  -webkit-animation: _anim_out_to_right 0.5s forwards;
}
._fullscreen ._show_option[data-anim="in_to_right"] {
  animation: _anim_in_to_right 0.5s forwards;
  -webkit-animation: _anim_in_to_right 0.5s forwards;
}
._fullscreen ._show_option ._close_option {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  cursor: pointer;
  z-index: 2;
}
._fullscreen ._show_option ._close_option:before {
  margin: 0;
  cursor: pointer;
}
._fullscreen ._show_option ._close_option:hover {
  opacity: 0.8;
}
._fullscreen ._show_option ._content {
  width: 906px;
  height: 85vh;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  overflow: auto;
}
@media only screen and (max-width: 790px) {
  ._fullscreen ._show_option ._content {
    width: 100vw;
    height: 80vh;
  }
}
@-webkit-keyframes _anim_out_to_right {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes _anim_out_to_right {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes _anim_out_to_left {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes _anim_out_to_left {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@-webkit-keyframes _anim_in_to_right {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@keyframes _anim_in_to_right {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes _anim_in_to_left {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes _anim_in_to_left {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
/*# sourceMappingURL=cours.css.map */