﻿#ApplicationForm {
    font-size: 0.9em;
    margin-top: 100px !important;
}

    #ApplicationForm .card-header i {
        margin-top: 4px;
    }


.validation-error {
    border: 1px solid #c62121;
}

.dropzone-container.validation-error {
    border: 3px dotted #c62121 !important;
}

.dropzone-container {
    border: 3px dotted #ccc;
    background-color: #fafafa;
    padding: 30px;
    color: #9a9a9a !important;
    text-align: center;
}

.dropzone-container {
    font-size: 1.4em !important;
    font-weight: bold;
}



.circle-loader {
    margin-bottom: 3.5em;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-left-color: #d1d1d1;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    transition: border 500ms ease-out;
}

.load-error {
    -webkit-animation: none;
    animation: none;
    border-color: #c62121;
    transition: border 500ms ease-out;
}

.cross {
    display: none;
    transform: scaleX(-1) rotate(136deg);
}

    .cross.draw:after {
        animation-duration: 800ms;
        animation-timing-function: ease;
        animation-name: cross;
        transform: scaleX(-1) rotate(180deg);
    }

.cross {
    background: #c62121;
    height: 100px;
    position: relative;
    width: 5px;
    left: 52px;
    top: 5px;
}

    .cross:after {
        background: #c62121;
        content: "";
        height: 5px;
        left: -47px;
        position: absolute;
        top: 48px;
        width: 100px;
    }

.checkmark {
    display: none;
}

    .checkmark.draw:after {
        animation-duration: 800ms;
        animation-timing-function: ease;
        animation-name: checkmark;
        transform: scaleX(-1) rotate(135deg);
    }

    .checkmark:after {
        opacity: 1;
        height: 3.5em;
        width: 1.75em;
        transform-origin: left top;
        border-right: 3px solid #5cb85c;
        border-top: 3px solid #5cb85c;
        content: '';
        left: 1.75em;
        top: 3.5em;
        position: absolute;
    }

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: 1;
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
}

.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    display: none;
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(255,255,255); /* Black fallback color */
    background-color: rgba(255,255,255, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

    .overlay-content h3 {
        margin-bottom: 60px;
    }


label.full-width {
    width: 100%;
}

.dz-clear {
    display: none;
}

.green {
    color: #5cb85c;
}

.red {
    color: #c62121;
}

.middle-message {
    margin-top: 20% !important;
}

.m-25 {
    margin: 25px;
}