/***
Regwiz-loader
***/
body {
    background-color: #ddd;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-size: large;
    color: white;
}

html, body {
    height: 100%;
}

#organization_banner {
    max-height: 200px;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 999999;
    background-color: #15191f;
}

#message {
    font-size: 2.5em;
    color: #fff;
    width: 100%;
}

img.no-box-shadow {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


.taking-time {
    display: none;
    font-size: 14px !important;
}

/*.taking-time div {
        display: inline-block;
    }*/

img.loading-animation {
    display: inline-block;
    margin-top: 30px;
}

.holdon {
    font-size: 0.7em;
    margin-top: 30px;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.loader-container {
    height: 100px;
    width: 100vw;
    font-family: "Open Sans", Arial, Helvetica;
    margin-bottom: 50px;
}

.loader {
    height: 20px;
    width: 250px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid white;
}

    .loader--dot:first-child {
        background-color: #fef100;
        animation-delay: 0.6s;
    }

    .loader--dot:nth-child(2) {
        background-color: #38b449;
        animation-delay: 0.5s;
    }

    .loader--dot:nth-child(3) {
        background-color: #00adee;
        animation-delay: 0.4s;
    }

    .loader--dot:nth-child(4) {
        background-color: #92268f;
        animation-delay: 0.3s;
    }

    .loader--dot:nth-child(5) {
        background-color: #d91b5c;
        animation-delay: 0.2s;
    }

    .loader--dot:nth-child(6) {
        background-color: #bf1d2d;
        animation-delay: 0.1s;
    }

    .loader--dot:nth-child(7) {
        background-color: #ef5428;
        animation-delay: 0s;
    }

.loader--text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 40rem;
    margin: auto;
    text-align:left;
}

    .loader--text:after {
        content: "Loading your application form";
        font-weight: bold;
        animation-name: loading-text;
        animation-duration: 3s;
        animation-iteration-count: infinite;
    }

@keyframes loader {
    15% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(230px);
    }

    65% {
        transform: translateX(230px);
    }

    95% {
        transform: translateX(0);
    }
}

@keyframes loading-text {
    0% {
        content: "Loading your application form";
    }

    25% {
        content: "Loading your application form.";
    }

    50% {
        content: "Loading your application form..";
    }

    75% {
        content: "Loading your application form...";
    }
}

/*Responsive*/
@media (max-width: 1024px) {
    #defaultCountdown span.countdown-amount {
        padding: 10px;
    }
}

@media (max-width: 767px) {

    .coming-soon-header,
    .coming-soon-countdown,
    .coming-soon-content,
    .coming-soon-footer {
        margin-top: 0px;
        padding: 10px;
    }
}

@media (max-width: 320px) {

    .coming-soon-content .btn-subscribe span {
        display: none;
    }
}
