/* LE PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader-img {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    z-index: 1001;  
    background-image: url('../media/image/my-virtualschool-logo-big.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    z-index: 1020;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255, 255, 255, 0);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255, 255, 255, 0);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255, 255, 255, 0);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;  
   background-color: #0b92cc;
    z-index: 1000;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.loader-section.section-left {
    left: 0
}

.loader-section.section-right {
    right: 0
}

.panel_left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.panel_right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.loaded-circle {
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.loaded-img {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .3s 1s ease-out;
    transition: all .3s 1s ease-out
}

/* BOUTONS SIGN IN/UP */

.mvs-signin-btn {
    margin-left: 5px;
    padding: 12px;
    border: 2px solid #00a9ec;
    border-radius: 10px;

    text-decoration: none;
    color: #00a9ec;

    transition: .3s;
}

.mvs-signin-btn:hover {
    background-color: #00a9ec;
    color: white;
    text-decoration: none;
    border: 2px solid #00a9ec;

    transition: .3s;
}

.mvs-signup-btn {
    margin-right: 5px;

    text-decoration: none;
    color: #00a9ec;

    transition: .3s;
}

.mvs-signup-btn:hover {
    color: #00a9ec;
    text-decoration: none;

    border-bottom: 1px solid #00a9ec;

    transition: .3s;
}

/* Creation compte */
.account-type-create:hover {
    background-color: #00A9EC !important;
    color: white;
    cursor: pointer;

    transition: .3s;
}

/* anim btn */
.button {
    position: relative;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 40px;
    box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
    transition: 0.5s all ease-in-out;
    &:hover {
      cursor: pointer;
      background: white;
      color: #059de9;
      animation: none;
      /*animation-play-state: paused;*/
    }
  }

.button-pulse {
    animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
    box-shadow: 0 0 0 0 white;
  }
  @keyframes pulse {
    to {
      box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }
  }

  .button-wiggle {
    animation: wiggle 4s 2s infinite;
  }
  
  @keyframes wiggle {
    5%,
    50% {
      transform: scale(1);
    }
    10% {
      transform: scale(0.9);
    }
    15% {
      transform: scale(1.15);
    }
    20% {
      transform: scale(1.15) rotate(-5deg);
    }
    25% {
      transform: scale(1.15) rotate(5deg);
    }
    30% {
      transform: scale(1.15) rotate(-3deg);
    }
    35% {
      transform: scale(1.15) rotate(2deg);
    }
    40% {
      transform: scale(1.15) rotate(0);
    }
  }
  

  /* New Testimonials*/  
  .testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #14213d;
  }
  .testimonial-slide {
    padding: 20px;
  }
  .testimonial_box-top {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    position: relative;
    box-shadow: 5px 5px 20px rgba(229, 229, 229, 0.301);
  }
  .testimonial_box-icon {
    margin-top: -12px;
    padding-right: 20px;
  }
  .testimonial_box-icon i {
    font-size: 25px;
    color: #14213d;
  }
  .testimonial_box-text p {
    color: #707070;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
  .testimonial_box-shape {
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    -webkit-transform: rotateZ(50deg);
    transform: rotateZ(45deg);
  }
  .testimonial_box-bottom {
    padding-top: 35px;
    padding-left: 25px;
  }
  .testimonial_box-profile {
    display: flex;
  }
  .testimonial_box-img {
    display: flex;
    justify-content: center;
  }
  .testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #ffffff;
  }
  .testimonial_box-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 20px;
  }
  .testimonial_box-name h4 {
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 0;
  }
  .testimonial_box-job p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
  }
  
  .slick-dots li button:before {
    font-size: 15px;
    color: #ffffff;
  }
  
  /* Le spinner */
  #loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 172, 237,.3);
    border-radius: 50%;
    border-top-color: rgb(0, 172, 237);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }
  @-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }

  /* Preloader module et activite */
  #mod-act-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998
  }

  .mod-act-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(18, 171, 253, 0.1);
    border-top: 5px solid #0f91e8;
    border-radius: 50%;
    animation: modactspin 1s linear infinite;
}

@keyframes modactspin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Les modules home */
.module-elt {
  height: 213.75px;
  background-image: url(../media/image/module-bubble-elt.png);
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;

  transition: .3s;
}

.module-elt>p {
  display: block;
  font-size: 24px;
}

.module-elt:hover {
  cursor: pointer;
  background-size:110%;
  background-position: center;

  transition: .5s;
}

/* Chargement skelet */
.card-skeleton {
  border: 1px solid #d6d6d6;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

.info-wrapper {
  display: flex;
  align-content: center;
  margin: 20px;
}

.boxskel {
  width: 100%;
  height: 200px;
}

.lineeer {
  width: 100%;
  height: 20px;
  background-color: red;
  margin-top: 10px;
}

.short-line {
  flex: 1;
  height: 20px;
  background-color: red;
  margin: 20px 0 20px 20px;
}


.skeleton-loader {
  position: relative;
  background-color: #F2F2F2 !important;
  overflow: hidden;
}

.skeleton-loader::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to right, #f2f2f2 0, #fafafa 20%, #f2f2f2 40%, #f2f2f2 100%);
  animation: loading 1s infinite;
}

@keyframes loading {
  100% {
    transform: translateX(100%);
  }
}

/* Form du feedback */
.feedback_rank {
  
  --size: 80px;

  display: flex;
  justify-content: center;
  align-items: center;

  height: var(--size) !important;
  width:  var(--size) !important;
  border-radius: 10px;

  border : 0px solid rgb(0, 192, 255);

  transition: .3s;

  /*box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.398);*/

}

.feedback_rank:hover, .feedback_rank>.active {
  /*background-color: rgb(0, 192, 255);*/
  color: rgb(22, 189, 125);
  cursor: pointer;
  transition: .3s;
}

.feedback_rank i {
  font-size: 40px;

  transition: .4s;
}

.slick-prev:before,
.slick-next:before {
    color: rgb(0, 192, 255) !important;
}

ol, ul {
  padding-left: 0 !important;
}