/* 
DASSI TENE Roméo-Ledoux
*/


/* Basic */
p {
    margin: 0px;
    padding: 0px;
 }
td {
 vertical-align: center;
 }
/* Style the active class, and buttons on mouse-over */
.active/* , .nav-item:hover */ {
background-color: rgb(94, 115, 134);
border-radius: 5px;
color: rgb(255, 255, 255);
font-weight: bold;
/* border: 0.1px solid	rgb(255, 255, 255); */
}
.Sactive/* , .nav-item:hover */ {
background-color: rgba(117, 134, 150, 0.671);
border-radius: 5px;
font-weight: bold;
/* border: 0.1px solid	rgb(255, 255, 255); */
}








.wrap {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 100px;
  background: white;
  padding-bottom: 100px;
  box-shadow: 0px 40px 60px -20px rgba(0, 0, 0, 0.2);
}

.spinner {
  background: #2cabff52;
  border-radius: 50%;
  display: inline-block;

  position: fixed;
  opacity: 0.9;
  left: 50%;
  top: 30%;
  height:90px;
  width:90px;
  margin:0px auto;
}
.spinner:after,
.spinner:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.spinner-1:after {
  position: absolute;
  top: -4px;
  left: -4px;
  border: 4px solid transparent;
  border-top-color: #279eff;
  border-bottom-color: #279eff;
  -webkit-animation: spinny 1.5s linear infinite;
  animation: spinny 1s linear infinite;
}

@keyframes spinny {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.2);
    transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
.spinner-2 {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.spinner-2:before,
.spinner-2:after {
  height: 20px;
  width: 20px;
  background: #84cdfa;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
}
.spinner-2:after {
  top: auto;
  bottom: -10px;
}

@keyframes bouncy {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

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

.spinner-3:before,
.spinner-3:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  background: rgba(0, 131, 239, 0.9);
  -webkit-animation: pulse 1.5s linear infinite;
  animation: pulse 1.5s linear infinite;
  opacity: 0;
}
.spinner-3:after {
  -webkit-animation: pulse 1.5s linear 1s infinite;
  animation: pulse 1.5s linear 1s infinite;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}






