/*loading*/

@keyframes runthis {
    0% {
        top: 0;
        left: 0;
    }
    1%{
        top: -4%;
        left: 0;
    }
    24% {
        top: -4%;
        left: 85%;
    }
    25% {
        top: 0%;
        left: 91%;
    }
    26% {
        top: 6%;
        left: 93%;
    }
    49% {
        top: 80%;
        left: 93%;
    }
    50% {
        top: 85%;
        left: 92%;
    }
    51% {
        top: 90%;
        left: 88%;
    }
    74% {
        top: 90%;
        left: 5%;
    }
    75% {
        top: 87%;
        left: -1%;
    }
    76% {
        top: 81%;
        left: -3%;
    }
    99% {
        top: 6%;
        left: -3%;
    }
    100% {
        top: 0;
        left: 0;
    }
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}
.obg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    background-color: #fff;
}
#loaderImage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* width: calc(214px * 0.333333); */
    /* height: calc(150px * 0.333333); */
    width: 120px;
    height: 120px;
    z-index: 99999;
}
#loaderImage .loadsvg{
    width: 100%;
    height: 100%;
}
.midlogo{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.outerline{
    width: 120px;
    height: 120px;
}
.lightning{
    width: 15px;
    /* height: 50px; */
    height: 15px;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    background: #a12444;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    /* -webkit-transform: skewX(-25deg); */
    /* transform: skewX(-25deg); */
    /* animation: runthis 1.5s infinite linear;
    -o-animation: runthis 1.5s infinite linear;
    -moz-animation: runthis 1.5s infinite linear;
    -webkit-animation: runthis 1.5s infinite linear; */
}
#loaderImage:after {
    /* position: absolute; */
    /* left: 50%; */
    /* top: 50%; */
    display: block;
    display: none;
    /* margin-left: 35px; */
    text-align: center;
    color: #a12444;
    content: "LOADING...";
    font-family: Arial;
    font-weight: bold;
    margin-top: 15px;
}
.r_loading {
    width: 100%;
}

.outer {
    stroke: #97213D;
    /*   transition: all 0.8s ease-out; */
    /*   -webkit-transition: all 0.8s ease-out; */
    fill: none;
    animation: dash1 60s linear forwards;
    animation-iteration-count: infinite;
    stroke-dasharray: 43;
}

.rf {
    fill: #97213D;
}

@keyframes dash1 {
    to {
        stroke-dashoffset: -4000;
    }
}