.on-mobile{
    display:none !important;
    z-index:9999999;
    width:100vw;
    height:100vh;
    background-color:#fff;
    position:absolute;
}
@media only screen and (max-width: 810px) {
  .on-mobile{
        display:block !important;
        }
}

.disclaimer-text {
text-align:center;
font-family: sans-serif;
color:#000;
}

.loader-holder{
position: absolute;
    left: 50%;
    top: 30%;
    height: 50%;
    width: 40%;
    transform: translate(-50%,0%);
}

.loader-holder-inner{
    position:relative;
}

.loading-image{
position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.loading-title{
font-family: Sans-Serif;
    color: #034677;
    margin-bottom: 80px;
    text-align: center;
}

        /*Loading Css*/
        .arc:before {
            -webkit-animation: spin 0.25s infinite linear;
            animation: spin 0.5s infinite linear;
            border-radius: 100%;
            border-top: 6px solid var(--primary, #105CAA);
            content: '';
            display: block;
            height: 50px;
            width: 50px;
            margin: auto;
        }

        @-webkit-keyframes spin {
            to {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

        @keyframes spin {
            to {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }