html,
body {
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 20px; */
}

.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 80px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  }
}

.progress-wrapper {
  position: relative;
  top:10px;
  height: 8px;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 30px;
  overflow: hidden;
}

.progress {
  position: absolute;
  height: 100%;
  width: 0%;
  background-color: #1d94cc;
  animation: progress 30s linear forwards;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}


.toastify.on.toastify-right.toastify-bottom {
  position: fixed !important;
  bottom: 180px  !important;
  border-radius: 10px !important;
  background: rgb(12, 107, 24) !important ; 
}


.loaderLP-text {
  font-family: 'Poppins', sans-serif !important;
  margin-top: 30px !important;
  font-size: 12px !important;
  color: #333 !important;
}

@media (max-width: 767px) {
.loader-text {
color: #333 !important;
}
}


.center {
  text-align: center;
}

.center img {
  display: block;
  margin: 0 auto;
}