
/* PRELOADER CSS */
.page-loader {
  width: 100%;
    height: 100vh;
    position: absolute;
    background: #1d285c;
    background: linear-gradient(to bottom, #1d285c, #314399);
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.page-loader .txt {
    color: #ffffff;
    text-align: center;
    /* top: 40%; */
    position: relative;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    /* line-height: 1.5; */
    font-family: 'Indivisa Display Sans Regular';
    font-size: 2em;
}

 /*LOADER-7*/
.loader {
    position: relative;
    /* top: 50%; */
    width: 100%;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    /* margin-left: 75px; */
    /* display: block; */
    /* vertical-align: middle; */
}
    
    .loader-7 .line {
        width: 1em;
        position: absolute;
        border-radius: 5px;
        bottom: 0;
        background: linear-gradient(to bottom, #ffffff, #1d285c00);
		
		
    }
    
    .loader-7 .line1 {
        left: 0;
        -webkit-animation: line-grow 0.5s ease alternate infinite;
        animation: line-grow 0.5s ease alternate infinite;
    }
    
    .loader-7 .line2 {
        left: 1.5em;
        -webkit-animation: line-grow 0.5s 0.2s ease alternate infinite;
        animation: line-grow 0.5s 0.2s ease alternate infinite;
    }
    
    .loader-7 .line3 {
        left: 3em;
        -webkit-animation: line-grow 0.5s 0.4s ease alternate infinite;
        animation: line-grow 0.5s 0.4s ease alternate infinite;
    }

@-webkit-keyframes line-grow {
        0% {
            height: 0;
        }
        100% {
            height: 75%;
        }
    }
    
    @keyframes line-grow {
        0% {
            height: 0;
        }
        100% {
            height: 75%;
        }
    }


/* SPINNER ANIMATION */
.spinner {
  position: relative;
  top: 35%;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  background-color: #ce0e2d;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}