/* input(126,28): run-time error CSS1038: Expected hex color, found '#ffff'
input(483,12): run-time error CSS1038: Expected hex color, found '#ffff'
input(897,28): run-time error CSS1038: Expected hex color, found '#ffff' */
.avatar-container{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

#upload_image_region {
    position: relative;
    width: 100px;
    height: 100px;
    margin-top: 20px;
    background-color: #E5E5E5;
}

#drop-region {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    border: 1px dashed var(--bug-spanish-gray);
}

    #drop-region:hover {
        box-shadow: 0 0 45px rgba(0,0,0,0.1);
    }

#image-preview {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: var(--bug-white);
}

#selected_image {
    display: flex;
    position: relative;
    width: 250px;
    height: 250px;
    align-items: flex-end;
    margin: 20px 0px;
}

    #selected_image img {
        height: 250px;
        width: 250px;
        border-radius: 50%;
        object-fit: fill;
        margin: 0 auto;
        background: var(--bug-sonic-silver);
    }

    #selected_image i {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        right: 30px;
        z-index: 20;
        background: teal;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--bug-white);
        background: var(--bug-android-green);
    }

.bug-icon-btn {
    height: 25px;
    width: 25px;
    border: none;
    outline: none;
    bottom: 0;
}

.error-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%
}

.footer .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 40px;
}

.btn:active {
    background: var(--orange-web);
}

.btn:hover {
    transform: scale(1.01);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    background: var(--orange-web);
}

.error_notification_box {
    width: 100%;
}

:root {
    --legal-connect-white: #ffff;
    --legal-connect-black: #070b0d;
    --prussian-blue: #223044;
    --yellow-orange: #faaf40;
    --orange-web: #f9a424;
    --maximum-yello-red: #f9bc63;
    --cultured: #f5f5f5;
    --granite-gray: #5f5f60;
    --bisque: #f7debc;
    --onyx: #404042;
    --cinnabar: #EA4335;
    --maya-blue: #72BCFE;
    --warning-orange: #FFCC00;
    --input-border: 1px solid rgba(95, 95, 96, 0.5);
    --input-field-height: min(max(6.5vh,30px), 45px);
    --input-field-paddingmultiplier: 1;
    --input-field-fontmultiplier: 1;
}

@font-face {
    font-family: 'Metropolis';
    src: url('/fonts/metropolis/Metropolis-Regular.eot?v=BBa5oRIW0n8U29NfW5TzxNiUZys'); /* IE9 Compat Modes */
    src: url('/fonts/metropolis/Metropolis-Regular.eot?v=BBa5oRIW0n8U29NfW5TzxNiUZys&#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/fonts/metropolis/Metropolis-Regular.woff2?v=BBa5oRIW0n8U29NfW5TzxNiUZys') format('woff2'), /* Super Modern Browsers */
    url('/fonts/metropolis/Metropolis-Regular.woff?v=BBa5oRIW0n8U29NfW5TzxNiUZys') format('woff'), /* Pretty Modern Browsers */
    url('/fonts/metropolis/Metropolis-Regular.ttf?v=BBa5oRIW0n8U29NfW5TzxNiUZys') format('truetype'), /* Safari, Android, iOS */
    url('/fonts/metropolis/Metropolis-Regular.svg#svgFontName') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: Metropolis;
}

html {
    height: 100%;
    width: 100%;
    color: var(--granite-gray);
}

body {
    height: 100%;
    width: 100%;
}

a {
    cursor: pointer;
    text-decoration: underline;
    color: var(--maximum-yello-red);
}

form {
    display: flex;
    flex-direction: column;
    /*gap: 30px;*/
    gap: calc(var(--input-field-height)*(30/50)*var(--input-field-fontmultiplier))
}

button, .btn {
    position: relative;
    height: var(--input-field-height);
    color: var(--legal-connect-white);
    background: var(--yellow-orange);
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

    button:active {
        background: var(--orange-web);
    }

    button:hover {
        /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
        transform: scale(1.01);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        background: var(--orange-web);
    }

.choices__inner {
    min-height: 50px !important;
}

.site-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 40px;
}

    .site-content .left {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: var(--prussian-blue);
        overflow-y: hidden;
    }

    .site-content .right {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        overflow-y: scroll;
    }

#dike_container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
}

#dike {
    /*position: absolute;
    height: calc(100% + 400px);
    left: 0;*/
    opacity: 0.2;
    width: 100%;
    height: 100%;
    /*margin-left: -630px;*/
    object-fit: cover;
    transform: translate(max(-40%,-300px)) scale(1.25);
    margin: 0;
}

.logo {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0 2vh;
    height: 13vh;
    width: auto;
}

    .logo img {
        height: 100%;
        width: auto;
    }

.motto {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .motto h1 {
        font-size: 2.8rem;
        width: min(45vw,500px);
        color: var(--yellow-orange);
        margin: 0;
    }

    .motto h6 {
        width: 300px;
        font-size: 1.2rem;
        font-weight: 100;
        color: var(--legal-connect-white);
        margin: 0;
    }

.input-control {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    width: 100%;
    /*    gap: 10px;*/
    gap: calc(var(--input-field-height)*(10/50)*var(--input-field-fontmultiplier));
}

    .input-control input {
        /*height: 50px;*/
        height: var(--input-field-height);
        padding: calc(var(--input-field-height)*(10/50)*var(--input-field-paddingmultiplier));
        font-size: calc(var(--input-field-height)*(14/50)*var(--input-field-fontmultiplier));
        border: 1px solid rgba(95, 95, 96, 0.5);
        -webkit-appearance: none;
    }

        .input-control input:focus {
            outline: none;
            border: 1px solid var(--granite-gray);
            -webkit-appearance: none;
        }

    .input-control label {
        font-size: calc(var(--input-field-height)*(16/50)*var(--input-field-fontmultiplier))
    }

.input-controls label {
    font-size: calc(var(--input-field-height)*(16/50)*var(--input-field-fontmultiplier))
}

.input-loader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    width: 100%;
    gap: 10px;
}

input[type="checkbox"] {
    height: 15px;
    width: 15px;
    vertical-align: middle;
    border: 1px solid var(--yellow-orange);
    border-radius: 2px;
    -webkit-appearance: none;
    -webkit-transition: box-shadow 200ms;
    -webkit-border-radius: 2px;
}

    input[type="checkbox"]:not(:disabled):hover {
        border-color: var(--yellow-orange);
        cursor: pointer;
    }

    input[type="checkbox"]:active:not(:disabled) {
        border-color: var(--yellow-orange);
    }

    input[type="checkbox"]:focus {
        outline: none;
    }

    input[type="checkbox"]:checked {
        border-color: var(--yellow-orange);
        background-color: var(--yellow-orange);
    }

        input[type="checkbox"]:checked:before {
            content: '';
            display: block;
            width: 4px;
            height: 8px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            margin-left: 4px;
            margin-top: 1px;
        }

.iti input {
    width: 100%;
}

.iti__flag-container {
    height: 50px;
}

.center-content {
    justify-content: center;
}

.page-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

    .page-container h1 {
        font-size: 1.5rem;
        width: 500px;
        color: var(--yellow-orange);
        margin: 0;
    }

    .page-container .content {
        display: flex;
        flex-direction: column;
        /*justify-content: center;*/
        height: 100%;
        width: 100%;
        gap: 20px;
        overflow-y: scroll;
        padding: 50px 120px 10px 80px;
        overflow-x: hidden;
    }

        .page-container .content::-webkit-scrollbar {
            display: none;
        }

    .page-container .header {
        margin-top: 50px;
        line-height: 25px;
    }

.external-providers a {
    text-decoration: none;
}

.external-provider {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    cursor: pointer;
}

    .external-provider .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 50px;
        background: var(--cultured);
    }

    .external-provider .text {
        text-align: center;
        width: 100%;
        height: 100%;
        font-size: 1.1rem;
        color: var(--granite-gray);
    }

.action-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.form-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.arth {
    display: flex;
    padding: 20px;
    border-radius: 2px;
}

.alert-danger {
    background: #FF9494;
    color: #ffff;
}

.spinner {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 4px solid var(--granite-gray);
    border-top-color: var(--yellow-orange);
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
    margin-left: 10px;
    opacity: 0;
    transition: 0.5s;
}

button span.active {
    opacity: 1;
}

.error {
    color: red;
}

.select-add-area {
    padding: 10px 5px;
    border-radius: 5px;
    margin: 25px 0px;
}

    .select-add-area .label {
        margin-bottom: 10px;
    }

.select-add-input-control {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 20px;
}

.text-info {
    font-size: 0.8rem;
    font-style: italic;
    color: #0282f2;
}

.choices__button {
    height: 20px;
}

    .choices__button:hover {
        background-color: #00bcd4;
        box-shadow: none;
        background-repeat: no-repeat;
        background-position: center;
    }

.choices__heading {
    font-size: 18px !important;
    border-bottom: 2px solid #f7f7f7 !important;
}

.choices__list--dropdown {
    z-index: 2 !important;
}

*::-webkit-scrollbar {
    width: 0.3em;
}

::-webkit-scrollbar:horizontal {
    height: 0.3em;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--yellow-orange);
    outline: none;
    border-radius: 20px
}

#file_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#clear_file_icon {
    margin-right: 20px;
}

#notification-box {
    cursor: pointer;
    opacity: 0;
    transition: top 500ms ease-in-out 0ms, opacity 500ms ease-in-out 0ms;
}

    #notification-box.show {
        opacity: 1;
    }

.hidden {
    display: none !important;
}

.error_notification_box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--cinnabar);
    padding: 10px;
    border-left-width: 7px;
    font-size: 1.2rem;
    color: var(--cinnabar);
}

    .error_notification_box .notification_box_title::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f00d";
        font-size: 1.5rem;
        color: var(--cinnabar);
        margin-right: 10px;
    }

.show {
    opacity: 1;
}

.notification_box_title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    word-spacing: 5px;
    font-size: 1rem;
}

.warning_notification_box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--warning-orange);
    padding: 10px;
    border-left-width: 7px;
    font-size: 1.2rem;
    color: var(--warning-orange);
}

    .warning_notification_box .notification_box_title::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f06a  ";
        font-size: 1.5rem;
        color: var(--warning-orange);
    }

    .warning_notification_box.show {
        opacity: 1;
    }

.info_notification_box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--maya-blue);
    padding: 10px;
    border-left-width: 7px;
    font-size: 1.2rem;
    color: var(--maya-blue);
    width: 100%;
}

    .info_notification_box .notification_box_title::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f059";
        font-size: 1.5rem;
        color: var(--maya-blue);
    }

    .info_notification_box.show {
        opacity: 1;
    }

.notification_box_header {
    display: flex;
    flex-direction: row;
}

.notification-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .notification-modal .header {
        display: flex;
        flex-direction: row;
        justify-content: end;
    }

        .notification-modal .header i {
            color: crimson;
            font-size: 1.2rem;
        }

            .notification-modal .header i:hover {
                cursor: pointer;
            }

    .notification-modal .footer {
        display: flex;
        margin-top: 20px;
    }

.full-flex {
    flex: 1;
}

.animate__animated.animate__fadeInRight {
    --animate-duration: 0.5s;
}

.selected-files {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    width: fit-content;
    gap: 10px;
}



.selected-file {
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 10px;
    border-radius: 20px;
    color: white;
    background: var(--yellow-orange);
    cursor: pointer;
    transition: all 500ms ease-in-out;
}

    .selected-file:hover {
        transform: scale(1.03);
        background: #F99C10;
    }

.remove-image {
    margin-left: 5px;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@media(max-aspect-ratio: 4/3) and (min-aspect-ratio: 8/9) and (min-width:400px) {
    .right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .right .page-container {
            width: 60%;
            height: 95%;
            border-radius: 1vh;
            box-shadow: 0px 0px 2vh black;
            background-color: white;
        }

            .right .page-container .content {
                padding: 50px 80px 10px 80px;
                padding: 5vw max(10vw,40px);
                gap: 1vh;
                justify-content: center;
            }

    .motto {
        display: none;
    }

    .action-links {
        margin-bottom: 0;
        margin-top: 5vh;
    }

    .page-container .header {
        margin-top: 5vh;
    }

    .logo {
        /*left: 0px;
        top: 0px;
        width: 10%;*/
        margin-left: 0;
    }

        .logo img {
            /*aspect-ratio:auto;
        width:100%;
        margin: 0% 2%;
        height:auto;*/
        }
}

@media(max-aspect-ratio: 8/9) or (max-width: 400px) {

    .site-content {
        flex-direction: column;
    }

        .site-content .left {
            display: flex;
            flex-direction: row;
            width: 100%;
            height: 110px;
            justify-content: space-between;
        }

    .logo {
        height: 100%;
        width: 150px;
        position: relative;
        top: 0px;
        margin-left: 0px;
    }

        .logo img {
            height: 100%;
            width: 100%;
        }

    .motto {
        display: none;
        justify-content: center;
        height: 100%;
        width: 100%;
        padding: 0px 0px 0px 20px;
    }

        .motto h1 {
            font-size: 1.1rem;
            color: var(--yellow-orange);
            margin: 0;
            width: auto;
        }

        .motto h6 {
            font-size: 0.8rem;
            font-weight: 100;
            color: var(--legal-connect-white);
            margin: 0;
        }

    .page-container {
        width: 90%;
        height: 100%;
        margin: auto;
    }

    .content a {
        padding-top: 2%;
    }

    .page-container .content {
        /*            padding: 10vw min(10vw,50px);*/
        padding: 0px;
        aspect-ratio: 5/8;
        width: min(90%, calc((var(--input-field-height)*(14/50)*var(--input-field-fontmultiplier))*25));
        height: 100%;
        margin: auto;
        gap: 1vh;
        justify-content: center;
        min-width: 250px;
    }

    .page-container .header {
        margin-top: 20px;
    }

    .action-links {
        margin-top: 2vh;
    }
}

@media(max-aspect-ratio: 11/18) {
    .page-container {
        aspect-ratio: 9/16;
    }
}

@media(max-height:650px) {
    .page-container .content {
        justify-content: start !important;
    }
}


.title h6 {
    width: 300px;
    font-size: 0.9rem;
    font-weight: 100;
    margin: 0;
}

:root {
    --legal-connect-white: #ffff;
    --legal-connect-black: #070b0d;
    --prussian-blue: #223044;
    --yellow-orange: #faaf40;
    --maximum-yello-red: #f9bc63;
    --cultured: #f5f5f5;
    --granite-gray: #5f5f60;
    --bisque: #f7debc;
    --onyx: #404042;
    --input-border: 1px solid rgba(95, 95, 96, 0.5);
}

h6 {
    font-weight: 100;
}

.site-content .left {
    background: var(--onyx);
}

.lc-progress-bars {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    height: 20px;
}

.lc-progress-bar {
    height: 3px;
    border-radius: 10px;
    width: 100%;
    background: var(--bisque);
    transition: 0.5s;
}

.lc-progress-bars .active {
    background: var(--yellow-orange);
}

.slide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-controls {
    display: flex;
    flex-direction: column;
}

    .input-controls .controls {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }

.controls .input-control {
    width: calc((100% - 30px)/2)
}

#enter_details_slide {
    gap: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

    .info-text .sub-text {
        font-size: 0.95rem;
    }

.success-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-top: 150px;
}

    .success-message .title {
        color: var(--yellow-orange);
        font-size: 1.8rem;
        font-weight: 500;
        width: 350px;
    }

    .success-message .sub-title {
        width: 400px;
    }

#application_submitted_button {
    margin-top: 10px;
    width: 400px;
}

.code-inputs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 20px;
}

    .code-inputs input {
        height: 50px;
        width: 50px;
        font-size: 1.9rem;
        text-align: center;
    }

    .code-inputs .separator {
        width: 50px;
        height: 1px;
        background: var(--yellow-orange);
    }

input[type="file"] {
    height: 50px;
}

.select-file-region {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 0 0 20px;
    border: var(--input-border);
    cursor: pointer;
}

    .select-file-region i {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 50px;
        visibility: hidden;
    }

    .fa-times-circle {
        color: crimson;
    }

.select-file-region:hover {
    background: var(--cultured);
    transform: scale(1.005);
}

@media(max-width: 1068px) {
    .input-controls .controls {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .controls .input-control {
        width:100%;
    }

    .input-controls .controls input {
        width: 100%;
    }

    .success-message .sub-title {
        width: 300px;
    }

    .success-message {
        margin-top: 100px;
    }

    #application_submitted_button {
        margin-top: 10px;
        width: 300px;
    }

    .code-inputs {
        gap: 5px;
    }
}


.page-container .content {
    aspect-ratio: 23/56;
    height: auto;
    margin:auto;
    max-width:800px;
}

@media(max-aspect-ratio: 8/9) or (max-width: 400px){
    .page-container .content {
        width: min(90%, calc((var(--input-field-height)*(14/50)*var(--input-field-fontmultiplier))*30));
        
    }
}

.body-container {
    margin-top: 60px;
    padding-bottom: 40px;
}

.welcome-page li {
    list-style: none;
    padding: 4px;
}

.logged-out-page iframe {
    display: none;
    width: 0;
    height: 0;
}

.grants-page .card {
    margin-top: 20px;
    border-bottom: 1px solid lightgray;
}

    .grants-page .card .card-title {
        font-size: 120%;
        font-weight: bold;
    }

        .grants-page .card .card-title img {
            width: 100px;
            height: 100px;
        }

    .grants-page .card label {
        font-weight: bold;
    }

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

    .slides .slide {
        height: 100%;
    }

    .slides > div {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 100%;
        opacity: 0;
        top: -100%;
        transition: top 500ms ease-in-out 0ms, opacity 500ms ease-in-out 0ms;
        pointer-events:none;
    }

        .slides > div.active-slide {
            top: 0px;
            opacity: 1;
            pointer-events:auto;
        }

        .slides > div h1 {
            margin: 10px 0px;
        }

        .slides > div p {
            margin: 10px 0px;
            color: #222;
        }

@media(max-width: 1068px) {
    .slides > div {
        top: -780px;
    }
    .slides .slide {
        height: 780px;
    }
}


.grid-container {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}

.footer {
    margin-top: 50px;
}

