/*
 * DATAMA SAS
 * --------------
 * NOTICE:  All information contained herein is, and remains
 * the property of DataMa SAS and/or some open source packages used
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to DataMa SAS
 * and its suppliers and may be covered by French and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from DataMa SAS.
 * Notice created by Django <django@datama.fr>, Wazhabits <anatole@datama.fr> updated by Anatole Piveteau
 * Copyright (c) 2024 DATAMA SAS, All rights reserved.
 * Generated for file : splash.css project project-deep-sky
 */

#AppLoading{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 999999;
}
#AppLoading.unsplash {
  opacity: 0;
  z-index: -1;
  transition: .5s ease-in;
}

#AppLoadingContent{
  position: absolute;
  animation: a-s .5s .5s 1 forwards;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
}
#AppLoadingContent img {
  height: 80px;
}
#AppLoadingContent img + img {
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
}
#AppLoadingProgress {
  animation: a-s .5s .5s 1 forwards;
  background-color: #f1f1f1;
  border-radius: 10px;
  height: 4px;
  margin: 56px auto 20px;
  opacity: 0;
  overflow: hidden;
  position: relative;
  width: 300px;
}
#AppLoadingProgress:before {
  animation: a-lb 20s .5s linear forwards;
  background-color: #159587;
  content: '';
  display: block;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  transform: translateX(-300px);
  width: 100%;
}

@keyframes a-s {
  100% {
    opacity: 1
  }
}

/* Then animate the stuff */
@-webkit-keyframes load { 
    0% { width: 0% ;
		background-position:0 0;}
    100% { width: 100%;
			background-position:-40px 0;
			}
}
@-ms-keyframes load { 
   0% { width: 0% ;
		background-position:0 0;}
    100% { width: 100%;
			background-position:-40px 0;
			}
}
@-o-keyframes load { 
    0% { width: 0% ;
		background-position:0 0;}
    100% { width: 100%;
			background-position:-40px 0;
			}
}
@keyframes load { 
  0% { width: 0% ;
		background-position:0 0;}
    100% { width: 100%;
			background-position:-40px 0;
			}
}

@keyframes a-lb {
  0% {
    transform: translateX(-300px)
  }

  5% {
    transform: translateX(-240px)
  }

  15% {
    transform: translateX(-30px)
  }

  25% {
    transform: translateX(-30px)
  }

  30% {
    transform: translateX(-20px)
  }

  45% {
    transform: translateX(-20px)
  }

  50% {
    transform: translateX(-15px)
  }

  65% {
    transform: translateX(-15px)
  }

  70% {
    transform: translateX(-10px)
  }

  95% {
    transform: translateX(-10px)
  }

  100% {
    transform: translateX(-5px)
  }
}