_loader.scss 3.71 KB
.ajax-loader-ct {
  width: 100vw;

  background: #E4EDF4;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999999999999;
  position: relative;
  height: 600px;
  @include bp-large-full{
    height: 100vh;
  }
  .ajax-loader-wrapper {
    opacity: 0;
    transition-delay: .5s;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    transform: none;
    @include bp-medium{
      transform:none;
    }
    .loader_spinner{
      margin-top: 0;
    }
    h3 {
      font-size: 2.4rem;
      color: $darkGray;
      @include bp-medium{
        font-size: 3.2rem;
      }

    }
    p {
      font-size: 1.8rem;
      max-width: 70%;
      margin-top: 20px;
      margin: 0 auto;
      padding-top: 20px;
      font-family: TheMixLight;
      line-height: 1.4;
      @include bp-medium{
        font-size: 2.4rem;
      }
    }
  }
  &.isActive {
    transform: translateY(0);
  }
  .ajax-loader-wrapper {
    opacity: 1;
  }
}

.profilation-page {
  .ajax-loader-wrapper {
    h3 {
      display: block;
    }
    p {
      display: block;
    }
  }
}

.loader_spinner,
.loader_spinner:after {
  border-radius: 50%;
  width: 56px;
  height: 56px;
}

.validation-loader__little{
  width:32px !important;
  height: 32px !important;
}

.loader_spinner {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 4px solid rgba(171, 172, 172, 1);
  border-right: 4px solid #FF463C;
  border-bottom: 4px solid #FF463C;
  border-left: 4px solid #FF463C;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}


.loader_spinner--green{
border-right: 4px solid #A0AC12;
  border-bottom: 4px solid #A0AC12;
  border-left: 4px solid #A0AC12;
}

.loader_spinner--green__doc{
   right: 0;
  width:39px ;
  height: 39px ;
  border-right: 1px solid #A0AC12;
  border-bottom: 1px solid #A0AC12;
  border-left: 1px solid #A0AC12;
  border-top: 1px solid rgba(171, 172, 172, 1);
  @include bp-medium{
    right: -34px;

  }
  @include bp-large{
    right: -34px;

  }
  @include bp-large-full{
    right: -8px;
  }
  @media only screen and (min-width: 1025px) {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-right: 4px solid #A0AC12;
    border-bottom: 4px solid #A0AC12;
    border-left: 4px solid #A0AC12;
    border-top: 4px solid rgba(171, 172, 172, 1);
    width: 56px;
    height: 56px;
    right: auto;
  }
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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


.mobile-upload-loader{
.ajax-loader-wrapper{
 
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:0 5rem;
}
    img{
      width:6rem;
    }

    h3{
          margin-top: 4rem;
          font-size: 2.4rem !important;
    }

    p{
            font-size: 1.4rem !important;
    }

    .loader_spinner{
      margin:0 auto;
    }

}