/* Loading Page Styles */
.full_page{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 0.5s;
    z-index: 3 !important;
    background: #fcefef !important;
}

.load_page{
    width: 100%;
    position: relative;
    background: #fcefef;
    display: flex; 
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 1;
}

.triple-spinner {
    display: block;
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-left: 0%;
    border: 4px solid transparent;
    border-top: 4px solid #8ac700;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
  
.triple-spinner::before,
.triple-spinner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}

.triple-spinner::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: #53b1b1;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3.5s linear infinite;
}

.triple-spinner::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: #11222c;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.75s linear infinite;
}
       
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
      }
}
    
  
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}