.load_aid_container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 1151;
}
.load_aid_container:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.load_aid_container .load_aid_spinner-frame {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid #a0b3b0;
    padding: 10px;
}
.load_aid_container .load_aid_spinner-frame .load_aid_spinner-cover {
    background: blue;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.load_aid_container .load_aid_spinner-frame .load_aid_spinner-bar {
    background: #29d;
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
    -webkit-animation: spinny 2s linear infinite;
    transform-origin: 100% 100%;
}
@-webkit-keyframes spinny {
    0% {
        transform: rotate(0deg);
        background: #FFBB13;
    }
    50% {
        transform: rotate(90deg);
        background: #003571;
    }
    50% {
        transform: rotate(180deg);
        background: #002E62;
    }
    100% {
        transform: rotate(270deg);
        background: #297450;
    }
    100% {
        transform: rotate(360deg);
        background: #ff9f1c;
    }
}
.load_aid_spinner-cover {
    display: flex;
    align-items: center;
    justify-content: center;
}
.text {

      text-align: center;
      position: absolute;

    }