.page-loading {
    position: fixed;
    z-index: 99999 !important;
    left: 0; 
    top: 0px; 
    right: 0px; 
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff !important;
}


#containerloader {
  width:50px;
  height:50px;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);

}

@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.donutSpinner {
    display: inline-block;
    border:5px solid rgba(0, 0, 0, 0.2);
    border-left-color: #062b4b ;
    border-radius: 50%;
    width:50px;
    height:50px;
    animation: donut-spin 1.2s linear infinite;
}





