/**{
  outline: 5px solid red;
}*/

html{
  width: 100% !important;
}

/* *{
  box-sizing: border-box !important;
  max-width: 100% !important;
}*/
video{
  max-width: 100%;
}
         
            /* SPINNER */
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(255, 255, 255, 1.0);*/ /* Couleur de fond du spinner */
    background-color: rgba(0, 0, 0, 1.0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/*#content {
    opacity: 0;
    transition: opacity 1s ease;
}*/
.fade-in {
  opacity: 0;
  /*transform: translateY(20px);*/ /* Décalage pour plus d'effet */
  transition: opacity 1s ease, transform 1s ease;
}


            /* ANIMATION SPINNER */
/*
.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .loader:before,
  .loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulsOut 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 1rem black);
    background-color: #00ff00;
  }
  .loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 1rem #00ff00;
    animation-name: pulsIn;
  }
  .loader:after {
    width: calc(100% - 2rem);
    padding-bottom: calc(100% - 2rem);
    box-shadow: 0 0 0 0 #00ff00;
  }

  @keyframes pulsIn {
    0% {
      box-shadow: inset 0 0 0 1rem black;
      opacity: 1;
    }
    50%, 100% {
      box-shadow: inset 0 0 0 0 black;
      opacity: 0;
    }
  }

  @keyframes pulsOut {
    0%, 50% {
      box-shadow: 0 0 0 0 black;
      opacity: 0;
    }
    100% {
      box-shadow: 0 0 0 1rem black;
      opacity: 1;
    }
  }
*/

.loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.loader:before , .loader:after{
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
  
}
.loader:after {
  box-shadow: 0 3px 0 #00ff00 inset;
  animation: rotate 2s linear infinite;
} 

@keyframes rotate {
  0% {  transform: rotate(0)}
  100% { transform: rotate(360deg)}
}

  .show-content {
    opacity: 1;
    transition: 1s;
}