:root {
    --black: #000000;
    --white: #FFFFFF;
    --tum-blue-brand: #3070B3;
    --plyr-color-main: var(--tum-blue-brand);
    --tum-blue-dark: #072140;
    --tum-blue-dark-1: #0A2D57;
    --tum-blue-dark-2: #0E396E;
    --tum-blue-dark-3: #114584;
    --tum-blue-dark-4: #14519A;
    --tum-blue-dark-5: #165DB1;
    --tum-blue-light: #5E94D4;
    --tum-blue-light-1: #9ABCE4;
    --tum-blue-light-2: #C2D7EF;
    --tum-blue-light-3: #D7E4F4;
    --tum-blue-light-4: #E3EEFA;
    --tum-blue-light-5: #F0F5FA;
    --tum-yellow: #FED702;
    --tum-yellow-dark: #CBAB01;
    --tum-yellow-1: #FEDE34;
    --tum-yellow-2: #FEE667;
    --tum-yellow-3: #FEEE9A;
    --tum-yellow-4: #FEF6CD;
    --tum-orange: #F7B11E;
    --tum-orange-dark: #D99208;
    --tum-orange-1: #F9BF4E;
    --tum-orange-2: #FAD080;
    --tum-orange-3: #FCE2B0;
    --tum-orange-4: #FEF4E1;
    --tum-orange-danger: #C24814;
    --tum-pink: #B55CA5;
    --tum-pink-dark: #9B468D;
    --tum-pink-1: #C680BB;
    --tum-pink-2: #D6A4CE;
    --tum-pink-3: #E6C7E1;
    --tum-pink-4: #F6EAF4;
    --tum-blue-bright: #8F81EA;
    --tum-blue-bright-dark: #6955E2;
    --tum-blue-bright-1: #B6ACF1;
    --tum-blue-bright-2: #C9C2F5;
    --tum-blue-bright-3: #DCD8F9;
    --tum-blue-bright-4: #EFEDFC;
    --tum-red: #EA7237;
    --tum-red-dark: #D95117;
    --tum-red-1: #EF9067;
    --tum-red-2: #F3B295;
    --tum-red-3: #F6C2AC;
    --tum-red-4: #FBE4DA;
    --tum-green: #9FBA36;
    --tum-green-dark: #7D922A;
    --tum-green-1: #B6CE55;
    --tum-green-2: #C7D97D;
    --tum-green-3: #D8E5A4;
    --tum-green-4: #E9F1CB;
    --tum-grey-1: #20252A;
    --tum-grey-2: #333A41;
    --tum-grey-3: #475058;
    --tum-grey-4: #6A757E;
    --tum-grey-5: #ABB5BE;
    --tum-grey-6: #CDD4DB;
    --tum-grey-7: #DDE2E6;
    --tum-grey-8: #E8ECEF;
    --tum-grey-9: #F8F9FA;
    --theme-color: var(--tum-blue-dark);
    --primary-color: #3070B3;
    --dark-background: #072140;
    --light-background: #F0F5FA;
    --accent-color: #FED702;
    --text-color: #333;
}


body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.625;
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
}


.instructions {
    font-style: italic;
}


select {
    flex-grow: 1;
    min-width: 80%;
    font-size: inherit;
    padding: 10px;
    border: 1px solid var(--black);
    border-radius: 0;
    margin-top: 5px;
}

.notice {
    width: 100%;
    max-width: 250px;
    display: none; /* Allow stacking elements horizontally */
    gap: 10px; /* Adjust gap between text and progress bar */
    border-radius: 5px;
    padding: 10px 15px; /* Adjust padding as needed */
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    text-align: center;
    /* Already defined for horizontal layout */
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Center elements horizontally */
    justify-content: center;
}

.progress {
    background-color: #0000cc; /* Use your orange color */
    height: 5px; /* Define height of the loading bar */
    width: 50%; /* Make the progress bar fill the container width */
    animation: loading-bar 1.8s ease-in-out infinite; /* Add animation */
}

@keyframes loading-bar {
    from {
        transform: translateX(-30%); /* Start from left side */
    }
    to {
        transform: translateX(125%); /* Move to the right side */
    }
}

#loader {
    background-color: inherit; /* Inherit background color from parent */
}

#warn {
    background-color: #d32210;
}

.u-file-icon input[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    cursor: pointer;
    color: black;
    opacity: 1;
    appearance: none;
    border: 2px solid black;
    background-color: #fff;

}

.u-file-icon input[type="checkbox"]:checked {

    background-color: #0000cc;
}

.u-file-icon input[type="checkbox"]:checked::after {
    content: "\2713";
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    position: absolute;
    top: 25%;
    left: 30%;
    transform: translate(-50%, -50%);
}


@media (max-width: 575px) {

    .u-file-icon input[type="checkbox"]:checked::after {
        content: "\2713";
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        position: absolute;
        top: 43%;
        left: 9%;
        transform: translate(-50%, -50%);
    }
}