.upload_report_container{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 1, 1, .6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.upload_report{
    position: relative;
    height: 80vh;
    max-width: 1400px;
}
.upload_reports{
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.upload_errors{
    background: rgba(0, 0, 0, .75);
    padding: 20px;
    border-radius: 10px;
}
.upload_errors h1{
    color: #990000;
    -webkit-text-shadow: 0px 0px 10px rgba(255, 0, 0, .8);
    text-shadow: 0px 0px 10px rgba(255, 0, 0, .8);
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    text-align: center;
}
.report_errors_line{
    content: "";
    width: 450px;
    height: 1px;
    background: #990000;
    box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, .8);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, .8);
    -moz-box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, .8);
    margin: auto;
}
.upload_success{
    background: rgba(0, 0, 0, .75);
    padding: 20px;
    border-radius: 10px;
}
.upload_success h1{
    color: #009900;
    -webkit-text-shadow: 0px 0px 10px rgba(0, 255, 0, .8);
    text-shadow: 0px 0px 10px rgba(0, 255, 0, .8);
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    text-align: center;
}
.report_success_line{
    content: "";
    width: 450px;
    height: 1px;
    background: #009900;
    box-shadow: 0px 0px 10px 0px rgba(0, 255, 0, .8);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 255, 0, .8);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 255, 0, .8);
    margin: auto;
}
.upload_report_close_btn{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 300px;
    margin: auto;
    font-size: 1.5rem;
    padding: 5px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, .75);
    color: rgba(255, 254, 254, .5);
    border-radius: 7px;
}
.upload_report_close_btn:hover{
    background: var(--primary_color);
    color: var(--complementary_text_color);
}

.upload_data_info{
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 5px;
    max-height: 500px;
    overflow: auto;
}
.upload_data_info_card{
    text-align: center;
    font-size: 1rem;
    color: white;
}

.hidden{
    display: none;
}


.success_report_form{
    width: 400px;
    height: 300px;
    border-radius: 10px;
    background: var(--cream_color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
}

.success_report_form_two{
    width: 500px;
    height: 300px;
    border-radius: 10px;
    background: var(--cream_color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
}


.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
    
    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4CAF50;
        
        &::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        
        &::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }
        
        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: var(--cream_color);
            transform: rotate(-45deg);
        }
        
        .icon-line {
            height: 5px;
            background-color: #4CAF50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
            
            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }
            
            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }
        }
        
        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, .5);
        }
        
        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: var(--cream_color);
        }
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.success_report_msg{
    font-size: 1.3rem;
}

.not_logged_form{
    position: relative;
    background: var(--cream_color);
    padding: 40px 40px 25px 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0, .35);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0, .35);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0, .35);
}
.report_logo{
    height: 80px;
    display: flex;
    justify-content: center;
}
.report_logo img{
    object-fit: contain;
    height: 80px;
}
.not_logged_form span{
    display: block;
    margin: 25px 0 0 0;
    font-size: 1.2rem
}
.not_logged_form_btn button{
    background: var(--primary_color);
    color: white;
    padding: 8px 20px;
    font-size: 1.1rem;
    border: none;
    outline: none;
    border-radius: 5px;
}
.not_logged_form_btn button:hover{
    background: var(--primary_hover_color);
}
.not_logged_form_close_btn{
    position: absolute;
    top: 20px;
    right: 25px;
    border: none;
    outline: none;
    font-size: 1.7rem;
    color: rgba(0, 0, 0, .5);
}
.not_logged_form_close_btn:hover{
    color: black;
}

@media only screen and (max-width: 480px) {
    .upload_report_container{
        flex-direction: column;
    }
    .upload_report{
        height: 100vh;
        width: 100%;
        max-width: 480px;
        padding: 40pt 0;
    }
    .upload_reports{
        display: flex;
        flex-direction: column;
        gap: 15pt;
    }
    .upload_errors{
        padding: 20pt;
        border-radius: 10pt;
    }
    .upload_errors h1{
        -webkit-text-shadow: 0pt 0pt 10pt rgba(255, 0, 0, .8);
        text-shadow: 0pt 0pt 10pt rgba(255, 0, 0, .8);
    }
    .report_errors_line{
        width: 100%;
        max-width: 450px;
        height: 1pt;
        box-shadow: 0pt 0pt 10pt 0pt rgba(255, 0, 0, .8);
        -webkit-box-shadow: 0pt 0pt 10pt 0pt rgba(255, 0, 0, .8);
        -moz-box-shadow: 0pt 0pt 10pt 0pt rgba(255, 0, 0, .8);
    }
    .upload_success{
        padding: 20pt;
        border-radius: 10pt;
    }
    .upload_success h1{
        -webkit-text-shadow: 0pt 0pt 10pt rgba(0, 255, 0, .8);
        text-shadow: 0pt 0pt 10pt rgba(0, 255, 0, .8);
    }
    .report_success_line{
        width: 100%;
        max-width: 450px;
        height: 1pt;
        box-shadow: 0pt 0pt 10pt 0pt rgba(0, 255, 0, .8);
        -webkit-box-shadow: 0pt 0pt 10pt 0pt rgba(0, 255, 0, .8);
        -moz-box-shadow: 0pt 0pt 10pt 0pt rgba(0, 255, 0, .8);
    }
    .upload_report_close_btn{
        bottom: 40pt;
        max-width: 300px;
        width: 100%;
        font-size: 16pt;
        padding: 5pt;
        border-radius: 7pt;
    }
    .upload_data_info{
        margin: 20pt 0;
        row-gap: 5pt;
        max-height: 150pt;
        height: 100%;
        overflow-y: auto;
    }
    .upload_data_info_card{
        font-size: 14pt;
        display: block;
    }
}