.loaderBox {
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.36);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999 !important;
    padding: 0 1rem;
}
.loadAnim {
    width: 200px;
    height: 200px;
    margin-top: 20%;
    /* margin-left: 43%; */
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.loadeAnim1,
.loadeAnim2,
.loadeAnim3 {
    position: absolute;
    border-radius: 100%;
    border: 10px solid transparent;
}
.loadeAnim1 {
    width: 150px;
    height: 150px;
    border-top: 10px solid #727272;
    border-bottom: 10px solid #727272;
    top: 15px;
    left: 15px;
    animation: leftToRight 0.5s linear infinite;
}
.loadeAnim2 {
    width: 130px;
    height: 130px;
    border: 10px solid #ed3237;
    top: 25px;
    left: 25px;
}
.loadeAnim3 {
    width: 110px;
    height: 110px;
    border-right: 10px solid #FFFFFF;
    border-left: 10px solid #FFFFFF;
    top: 35px;
    left: 35px;
    animation: topToBottom 0.5s linear infinite;
}
@keyframes leftToRight {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes topToBottom {
    from {transform: rotate(0deg);}
    to {transform: rotate(-360deg);}
}