.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  /* Fallback z-index */
  z-index: 1000;
  /* Forced z-index - admin toolbar */
  /* z-index: 6000000; */
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.splash-screen > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.splash-screen__wrapper {
  width: 100%;
}
.splash-screen__container {
  background-color: white;
  position: relative;
  padding: 15px;
}

.spalsh-screen__header {

}

.spalsh-screen__header .close {
  position: absolute;
  z-index: 1;
  right: 4px;
  top: 0px;
  opacity: 1;
  font-size: 15px;
}

.splash-screen__body {
  /*margin-bottom: 30px;*/
}

.splash-screen__body_image {
  /*display: flex;
  justify-content: center;
  align-items: center;*/
}

.splash-screen__body_image img {
  max-width: 100%;
  height: auto;
  max-height: 90vh;
  width: auto;
}

.splash-screen__body_description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.splash-screen__body_description > *:not(.btn) {
  width: 100%;
}
.splash-screen__body h2 {
  color: #671F5B;
  margin-bottom: 20px;
}

.splash-screen__body p {
  color: #000000;
  margin-bottom: 20px;
}

.splash-screen__footer .loading-counter {
  float: right;
  color: #000000;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1.25px;
}

@media (max-width: 991.98px) {
  .splash-screen__body_image p:not(:last-child){
    margin-bottom: 10px;
  }
  .splash-screen__body_image .btn{
    line-height: 1;
    font-size: 12px;
  }
  .splash-screen__body_description {
    align-items: center;
    text-align: center;
  }

  .splash-screen__container {
    max-height: 90vh;
    overflow-x: hidden;
  }

  /* Effet appariton : FROM BOTTOM */
  .effect-flip-h .splash-screen__container {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }

  .vf-show.effect-flip-h .splash-screen__container {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }


}

@media (min-width: 991.98px) {
  /* 3D flip horizontal */
  .effect-flip-h {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
  }

  .effect-flip-h .splash-screen__container {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-70deg);
    -moz-transform: rotateY(-70deg);
    -ms-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
  }

  .vf-show.effect-flip-h .splash-screen__container {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
    padding: 20px;
  }
  .spalsh-screen__header .close {
    font-size: 1.6875rem;
  }
}
