:root {
    /*---------------------------color------------------------*/
    --black-0: #000;
    --black-1: #010810;
    --white-0: #FFF;
    --red-1: #E51937;
    --red-2: #C4172C;
    --red-3: #A70A1D;
    --blue-1: #0B618A;
    --blue-2: #0096DE;
    --grey-1: #8C8C8C;
    /*---------------------------text-color------------------------*/
    --text-black-1: #010810;
    --text-red-1: #E51937;
    --text-red-2: #C4172C;
    --text-green-1: #17C423;
    --text-blue-1: #0B618A;
    --text-blue-2: #0096DE;
    --text-grey-1: #8C8C8C;
    --text-grey-2: #666;
    --text-grey-3: #525252;
    /*---------------------------bg-color------------------------*/
    --bg-1: #202020;
    --bg-2: #EBEBEB;
    --bg-3: #FFECEF;
    --bg-4: #C4172C;
    --bg-5: #010810;
    --bg-6: #F5F5F5;
    --bg-7: #F4F4F4;

    /*---------------------------border-color------------------------*/
    --border-1: #DDD;
    --border-2: #FFECEF;
}

body {
    font-family: Lato;
    font-size: .875rem;
}

.containerWithfooter {
    min-height: calc(100vh - 84px);
}

.containerWithHeaderfooter {
    min-height: calc(100vh - 151px);
}

.mainLayout {
    padding: 16px;
}

.error-red {
    color: var(--red-1);
}

.form-label {
    color: var(--text-black-1);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-check-input {
    box-shadow: none !important;
    width: 1.25em;
    height: 1.25em;
}

.btn,
.form-control {
    box-shadow: none !important;
}

.form-check-input:checked {
    border-color: var(--red-2);
    background-color: var(--red-2);
}

.navbar {
    border-bottom: 1px solid var(--border-1);
    background: var(--white-0);
}

header .navbar-brand img {
    width: 50%;
}

.btn-primary {
    background-color: var(--red-2) !important;
    border-color: var(--red-2) !important;
}

.btn-outline-primary {
    color: var(--text-red-2) !important;
    background-color: var(--white-0) !important;
    border-color: var(--red-2) !important;
}


.main-container .policyRenewalLabel {
    color: var(--text-black-1);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-align: center;
    margin-bottom: 2rem;
}

.main-container .page-title-container {
    margin: 1rem 0;
}

.main-container .page-title-container .page-count-container {
    border-radius: 50px;
    background: var(--bg-5);
    color: var(--white-0);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 7px 12px;
}

.main-container .page-title-container .page-title {
    margin-bottom: 0;
    margin-left: 1rem;
    color: var(--black-1);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.page-title-container .proposal-no {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black-1);
}

.page-title-container .quotation-no {
    margin-left: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black-1);
}

.page-title-container .proposal-no strong {
    font-weight: 700;
    margin-left: 4px;
}

.page-title-container .quotation-no strong {
    font-weight: 700;
    margin-left: 4px;
}

.accordion-title {
    flex: 1;
}
.more-info {
    margin-left: auto;
    font-size: 0.8rem;
    color: #C4172C;
    white-space: nowrap;
}

.blink-hint {
    animation: pulseHint 1.6s ease-in-out infinite;
}

@keyframes pulseHint {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.accordion-button:not(.collapsed) .blink-hint {
    display: none;
}

.custom-note-container p {
    color: var(--text-black-1);
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.custom-note-container p span {
    color: var(--text-red-2);
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

/*----------------------------------modal---------------------------------*/
.modal .modal-dialog .modal-content .modal-header {
    border-bottom: none;
    padding: 1rem 1rem 0 1rem;
}

.modal .modal-dialog .modal-content .modal-header button {
    filter: brightness(0) saturate(100%) invert(22%) sepia(100%) saturate(4290%) hue-rotate(342deg) brightness(64%) contrast(108%);
    opacity: 1;
}

.modal .modal-dialog .modal-content .modal-body {
    padding: 0 32px;
}

.modal .modal-dialog .modal-content .modal-footer {
    padding: 0 0 32px 0;
    border-top: 0;
}

/*----------------------------------accordion---------------------------------*/
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.custom-accordion .accordion-custom-header button {
    background-color: var(--bg-6);
    box-shadow: none;
    border-radius: 12px !important;
    padding: 6px 16px;
    border-radius: 12px;
    color: var(--text-black-1);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.custom-accordion .accordion-custom-dataContainer {
    background-color: var(--bg-7);
    margin-top: .5rem;
    border-radius: 12px;
}

.custom-accordion .accordion-custom-dataContainer .accordion-body {
    padding: 16px;
}

.custom-accordion .accordion-custom-dataContainer .accordion-body .accordion-body-wrapper {
    border-radius: 12px;
    border: 1px solid var(--white-0);
    background: var(--white-0);
    border-radius: 12px;
    padding: 1rem;
}

.custom-accordion .accordion-custom-dataContainer .accordion-body .accordion-body-wrapper .accordion-label {
    color: var(--text-black-1);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;   
    line-height: normal;
}
/*----------------------------------Custome-table---------------------------------*/
.custome-table-container {
    background-color: var(--white-0);
    border-radius: 12px;
    padding: 8px;
}

.custome-table-container .table-title {
    color: var(--text-black-1);
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: .5rem 1rem .0rem;
}

/* .custome-table-container table tbody:before {
    line-height:1em;
    content:"-";
    color:white; 
    display:block;
} */

.custome-table-container table thead tr th {
    background-color: var(--bg-4);
    padding: 1rem;
    color: var(--white-0);
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-bottom: none;
    white-space: nowrap;
}

.custome-table-container table tbody tr td {
    /* border: 1px solid #EEE; */
    background: var(--white-0);
    padding: 1rem;
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-bottom: none;
    vertical-align: middle;
    white-space: nowrap;
}

.custome-table-container table thead tr th:first-of-type {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.custome-table-container table thead tr th:last-of-type {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.custome-table-container .table-btn {
    background-color: var(--red-2);
    border-color: var(--red-2);
}

/*----------------------------------Footer---------------------------------*/
.footer-container {
    background-color: var(--bg-1);
}

.footer-container p {
    color: var(--white-0);
    font-family: Lato;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.footer-container p a {
    text-decoration: underline !important;
}

/*----------------------------------Steeper---------------------------------*/
.steeper-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}



.steeper-container .stepItem .step-count {
    border-radius: 50%;
    background-color: var(--grey-1);
    padding: 6px 10px;
    color: var(--white-0);
}

.steeper-container .stepItem .step-count i {
    font-size: .75rem;
}

.steeper-container .stepItem .step-label {
    color: var(--text-grey-1);
    margin-bottom: 0;
    margin-top: .5rem;
    display: none;
}

.steeper-container .stepItem .step-label,
.steeper-container .stepItem .step-count {
    font-size: .875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.steeper-container::before {
    z-index: -1;
    content: "";
    border: 1px solid var(--border-1);
    width: 100%;
    position: absolute;
}

.steeper-container .arrow-container {
    padding: .25rem;
    background-color: var(--white-0);
}

.steeper-container .arrow-container i {
    color: var(--text-grey-1);
}

.steeper-container .stepItem.completed {
    border: 1px solid var(--border-2);
    background: var(--bg-3);
}

.steeper-container .stepItem.completed .step-count {
    background-color: var(--bg-4);
}

.steeper-container .stepItem.completed .step-label {
    color: var(--text-red-2);
}

.steeper-container .stepItem.active .step-count {
    background-color: var(--bg-4);
}

.steeper-container .stepItem.active .step-label {
    color: var(--text-red-2);
}

/*----------------------------------Login---------------------------------*/
.login-container {
    background-color: var(--white-0);
}

.login-container .left-container .box_parent
{
    filter: url('#flt_tag');
}
.login-container .left-container .carousel {
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.login-container .left-container .flt_svg {
    visibility: hidden; 
    position: absolute;
    width: 0px;
    height: 0px;
}
.login-container .right-container .login-title {
    color: var(--black-1);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 2rem;
}

.login-container .right-container .login-form-label {
    color: var(--black-1);
    font-family: Lato;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-container .right-container .login-btn {
    background-color: var(--red-2);
    border-color: var(--red-2);
}

.login-container .right-container .otp-container .otp-label {
    color: var(--black-1);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-container .right-container .otp-container .form-control,
.login-container .right-container .otp-container .form-control::placeholder {
    text-align: center;
}

.login-container .right-container .info-container {
    border-radius: 8px;
    background: var(--bg-2);
    padding: 8px 16px;
}

.login-container .right-container .info-container i {
    color: var(--blue-1);
}

.login-container .right-container .info-container .info-label {
    color: var(--black-1);
    font-size: .875rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
}

/*----------------------------------VerifyDetails---------------------------------*/
.verifyDetailsContainer .claim-radio-container {
    border-radius: 12px;
    background: var(--bg-3);
}

.verifyDetailsContainer .claim-radio-container .claim-radio-label {
    color: var(--text-black-1);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*----------------------------------ViewQuote---------------------------------*/
.viewQuoteContainer .policy-detail-container {
    border-radius: 12px;
}


.viewQuoteContainer .policy-detail-container .policy-detail-container-title {
    background-color: var(--bg-3);
    border-radius: 10px;
}
.viewQuoteContainer .policy-detail-container .policy-detail-container-title .img-container {
    border-radius: 50%;
    overflow: hidden;
    height: 60px;
    background-color: #fff;
}
.viewQuoteContainer .policy-detail-container .policy-detail-container-title .label1 {
    color: var(--text-black-1);
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.56px;
}

.viewQuoteContainer .policy-detail-container .policy-detail-container-title .label2 {
    color: var(--text-grey-3);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.56px;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .detail-heading,
.viewQuoteContainer .policy-detail-container .addon-Cover-Box .Addon-heading {
    color: var(--text-black-1);
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.56px;
}
.viewQuoteContainer .policy-detail-container .addon-Cover-Box .Addon-heading{
    background-color: var(--bg-3);
    border-radius: 10px;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .show-hide-toggle-container .toggle-container {
    cursor: pointer;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .show-hide-toggle-container .toggle-container .label {
    color: var(--text-red-2);
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.56px;
    text-decoration: underline;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .show-hide-toggle-container .toggle-container .arrow-container {
    padding: .25rem;
    background-color: var(--bg-3);
    border-radius: 50%;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .show-hide-toggle-container .toggle-container .arrow-container i {
    color: var(--text-red-2);
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .edit-img {
    cursor: pointer;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .policy-detail-item-box {
    overflow: hidden;
}
.viewQuoteContainer .policy-detail-container .policy-detail-box .policy-detail-item-box.show {
    height: 60px;
}
.viewQuoteContainer .policy-detail-container .policy-detail-box .policy-detail-item.heading {
    background-color: var(--bg-3);
    border-radius: 10px;
}
.viewQuoteContainer .policy-detail-container .policy-detail-box .policy-detail-item {
    padding: .5rem 1rem;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .policy-detail-item h6 {
    color: var(--text-grey-3);
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

.viewQuoteContainer .policy-detail-container .policy-detail-box .policy-detail-item p {
    color: var(--text-black-1);
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
}

.viewQuoteContainer .policy-detail-container .addon-Cover-Box .form-check .form-check-label {
    color: var(--text-black-1);
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
}

.viewQuoteContainer .quotelist-container .quote-item {
    border-radius: 12px;
    display: flex;


}

.viewQuoteContainer .quotelist-container .quote-item .ic-img-container {
    width: 15%;
}

.viewQuoteContainer .quotelist-container .quote-item .ic-img-container .img-box {
    width: 90%;
}

.viewQuoteContainer .quotelist-container .quote-item .addonlist-container {
    width: 70%;
}

.viewQuoteContainer .quotelist-container .quote-item .addonlist-container .heading {
    color: var(--text-black-1);
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
}

.viewQuoteContainer .quotelist-container .quote-item .addonlist-container .listbox .list-item {
    margin-left: 1rem;
}

.viewQuoteContainer .quotelist-container .quote-item .addonlist-container .listbox .list-item i {
    color: var(--text-green-1);
}

.viewQuoteContainer .quotelist-container .quote-item .addonlist-container .listbox .list-item .label1,
.viewQuoteContainer .quotelist-container .quote-item .addonlist-container .listbox .list-item .label2 {
    color: var(--text-black-1);
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: capitalize;
}

.viewQuoteContainer .quotelist-container .quote-item .price-container {
    width: 15%;
    text-align: center;
    background-color: #F9F9F9;
}

.viewQuoteContainer .quotelist-container .quote-item .price-container .label1 {
    color: var(--text-black-1);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    margin-bottom: .25rem;
}

.viewQuoteContainer .quotelist-container .quote-item .price-container .label2 {
    color: var(--text-grey-3);
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    margin-bottom: .25rem;
}


.RegistrationType-disabled{
    background-color:#E9ECEF;
}


/*----------------------------------Proposal Preview---------------------------------*/
.proposalPreviewContainer .previewContainer {
    min-height: 400px;
}

/*----------------------------------Policy Preview---------------------------------*/

.policy-preview {
    font-family: 'Poppins', sans-serif;
    padding: 32px;
}

.policy-preview .policyPreviewLabel {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.disclaimer {
    background-color: var(--bg-6);
    padding: 10px;
    font-size: 12px;
    color: var(--text-black-1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

/*--Policy Preview--Brand Section--*/
.brand-section {
    display: flex;
    align-items: center;
    background-color: #c71c2b;
    border-radius: 8px;
    padding: 16px;
    color: white;
}

.brand-logo {
    background-color: white;
    padding: 8px;
    border-radius: 4px;
    margin-right: 20px;
}

    .brand-logo img {
        height: 60px;
        display: block;
    }

.brand-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 1;
}

    .brand-info .info-block {
        margin-right: 20px;
        min-width: 160px;
    }

.label {
    font-weight: 600;
    margin-bottom: 4px;
}

.value {
    white-space: nowrap;
}


/*--Policy Preview--Info Row--*/
.info-row {
    display: flex;
    padding: 16px 0;
    gap: 16px;
    font-size: 14px;
}

    .info-row .highlight {
        color: #c8102e;
        font-weight: bold;
    }



/*--Policy Preview--vehicle detail--*/

.vehicle-detail-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid var(--border-1);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-black-1);
    background-color: var(--white-0);
    margin-bottom: 1rem;
}

.detail-block {
    min-width: 200px;
    margin-right: 24px;
}

/*--Policy Preview--IDV Card--*/
.idv-card {
    border: 1px solid var(--border-1);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-black-1);
    margin-bottom: 1rem;
}

    .idv-card .idv-header {
        background-color: var(--bg-6);
        padding: 10px 16px;
        font-weight: 600;
        text-align: center;
        border: 1px solid var(--border-1);
    }

    .idv-card .idv-table {
        display: flex;
        flex-direction: column;
    }

        .idv-card .idv-table .idv-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 16px;
        }

        .idv-card .idv-table .idv-labels {
            font-weight: 600;
        }

        .idv-card .idv-table .idv-cell {
            flex: 1;
            text-align: left;
        }

            .idv-card .idv-table .idv-cell .values {
                display: block;
                font-weight: 400;
            }


/*--Policy Preview--Schedule for Premium--*/
.premium-schedule {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

    .premium-schedule .schedule-title {
        background-color: #f3f3f6;
        text-align: center;
        padding: 12px;
        font-weight: bold;
        border-bottom: 1px solid #ccc;
    }

.premium-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .premium-columns .premium-section {
        flex: 1;
        padding: 16px;
        margin: 14px;
        border: 1px solid #ddd;
    }

        .premium-columns .premium-section .section-title {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .premium-columns .premium-section .premium-item {
            margin: 6px 0;
            display: flex;
            justify-content: space-between;
        }

        .premium-columns .premium-section .premium-sub {
            margin: 10px 0;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }

        .premium-columns .premium-section .section-subtitle {
            font-weight: 600;
            margin-top: 12px;
            margin-bottom: 4px;
        }

        .premium-columns .premium-section .border_top_bottom {
            padding: 12px 0px;
            border-top: #ddd solid 1px;
            border-bottom: #ddd solid 1px;
        }

        .premium-columns .premium-section:first-child {
            margin-right: 0px;
        }

.amount {
    white-space: nowrap;
    font-weight: 600;
}

.bold {
    font-weight: 600;
}

.red {
    color: #d1001c !important;
}

.custom-card-policy-preview {
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #f6f6fb;
}

    .custom-card-policy-preview .custom-card-policy-preview-header {
        background-color: #f6f6fb;
        padding: 0.75rem 1rem;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ddd;
    }

    .custom-card-policy-preview .custom-card-policy-preview-body {
        padding: 0.75rem 1rem;
        background-color: white;
    }

.custom-kyc-btn {
    background-color: #c0182c;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0.3rem;
    border: none;
    font-weight: 500;
}

    .custom-kyc-btn:hover {
        background-color: #a91427;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .policy-preview {
        padding: 16px;
    }

        .policy-preview .brand-section {
            flex-direction: column;
        }

            .policy-preview .brand-section .brand-logo {
                margin-right: 0px;
            }

            .policy-preview .brand-section .info-block {
                margin-right: 0px;
                margin: 12px 0px;
            }

            .policy-preview .brand-section .value {
                white-space: unset;
            }

    .detail-block {
        margin-bottom: 12px;
    }

    .idv-row {
        padding: 16px 16px;
    }

    .idv-labels {
        flex-direction: column;
    }

    .premium-columns {
        flex-direction: column !important;
    }

        .premium-columns .premium-section {
            margin-right: 14px !important;
            border-bottom: 1px solid #ddd !important;
        }

            .premium-columns .premium-section:last-child {
                border-bottom: none;
            }

            .premium-columns .premium-section .premium-sub {
                flex-direction: column;
                align-items: flex-start;
            }

                .premium-columns .premium-section .premium-sub .amount {
                    margin-top: 4px;
                }
}

