﻿:root {
    --primary: #3e4698;
     --success-heading: #16A34A;
    /* your custom primary */
}

.over-lay {
    background: rgb(1 1 25 / 67%);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    left: 0px;
    top: 0px
}

.simple-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.simple-spinner span {
    display: block;
    width: 120px;
    height: 120px;
    border: 20px solid rgba(0, 0, 0, 0.5882352941);
    border-left-color: rgb(71, 63, 168);
    border-radius: 50%;
    animation: spinner-anim 0.8s linear infinite;
}

.simple-spinner img {
    width: 75px;
    position: absolute;
    top: 18px;
    left: 22px;
}

@keyframes spinner-anim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.gradient-section {
    background: linear-gradient(180deg, rgba(155, 159, 216, 0.5) 0%, #FFFFFF 100%);
    display: flex;
}

.report-status-container {
    margin: auto;
    border-radius: 16px;
    max-width: 613px;
    width: 90%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.report-heading {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    vertical-align: middle;
    font-family: 'Inter';
}

.report-description {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--light-text);
    font-family: 'Inter';
}



.report-download-button {
    box-sizing: border-box;
    width: 203.81px;
    height: 48px;
    background: #FFF3F8;
    border: 1px solid #FA7FB5;
    border-radius: 8px;
    color: #FA7FB5;
    font-size: 13.6px;
    font-weight: 500;
    font-family: 'Inter';
}


.report-email-button {
    box-sizing: border-box;
    width: 203px;
    height: 48px;
    background: #E4E7F7;
    border: 1px solid #4D6DF5;
    border-radius: 8px;
    color: #4D6DF5;
    font-size: 13.6px;
    font-weight: 500;
    font-family: 'Inter'

}

.gradient-bg {
    background: linear-gradient(to bottom right, #f0f0ff, #ffffff);
}

.custom-border {
    border-left: 0.25rem solid var(--primary) !important;
}



.custom-table td:first-child {
    padding-left: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}



.faq-accordion .accordion .accordion-item .accordion-header button {
    background-color: #fff;

}

.faq-accordion .accordion .accordion-item .accordion-header button:focus {
   outline: none !important;
   box-shadow: none !important;
   color: #212529 !important;

}

.faq-accordian .accordion-button:not(.collapsed){
    color: #212529 !important;
}

.faq-accordion .accordion {
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 12px;
}

.accordion-button {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}

.custom-primary-text{
    color: var(--primary)  !important
}

.table-custom{
    color: var(--primary)  !important
}





