﻿#application-rendered-form {
}

    #application-rendered-form .panel-heading {
        font-size: 18px;
        font-weight: bold;
        border-bottom: 1px solid #ddd;
    }

    #application-rendered-form h1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

.application-dropzone {
    border: 2px dashed #d6d6d6;
    min-height: 36px;
}

#application-rendered-form .dz-preview {
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 4px;
    display: inline-block;
    margin: 5px;
}

#application-rendered-form .dz-message {
    margin: auto;
    text-align: center;
    margin-top: 6px;
    color: #696E7A !important;
}

    #application-rendered-form .dz-message i {
        margin-right: 5px;
    }

#application-rendered-form .file-entry {
    padding: 7px;
    border: 1px solid #ddd;
    min-height: 36px;
    border-radius: 4px;
}

#application-rendered-form .disabled {
    background-color: #fafafa;
    cursor: not-allowed;
}

#application-rendered-form .file-entry .remove-button {
    float: right;
    cursor: pointer;
}

label.error {
    color: #f00;
    font-size: 13px;
}

input.error,
textarea.error,
select.error {
    border: 1px solid #f00;
}

.submit-panel{
    border: none !important;
    margin:0 !important;
}

.panel-show{
    display:block !important;
}



.panel-show[data-conditional="True"],
.form-group[data-conditional="True"]{
    display:none !important;
}

.panel-show[data-conditional="True"].conditionalShown,
.form-group[data-conditional="True"].conditionalShown{
    display:block !important;
}



/* Loader */

.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: 45px;
    top: -2px;
}

    .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;
    }

.note-fontsize-10 {
    font-size: 12px !important;
}
