﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*html {*/
   /* font-size: 16px;*/ /* Base size */
    /*-webkit-text-size-adjust: 100%;*/ /* Safari & Chrome */
    /*-moz-text-size-adjust: 100%;*/ /* Firefox */
    /*-ms-text-size-adjust: 100%;*/ /* Edge */
    /*text-size-adjust: 100%;
}

body {
    font-size: calc(1rem + 0.5vw);
}

@media (min-width: 1200px) {
    body {
        font-size: 1rem;
    }
}

@media (max-width: 800px) {
    body {
        font-size: 0.9rem;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        font-size: 1.1rem;
    }
}

body {
    font-size: clamp(14px, 1.5vw, 18px);
}*/

@font-face {
    font-family: 'NexaBold';
    src: url("../font/NexaBold.otf") format("opentype");
}

@font-face {
    font-family: 'NexaRegular';
    font-weight: normal;
    src        : url("../font/NexaRegular.otf") format("opentype");
}

@font-face {
    font-family: 'Nexa-Regular-Italic';
    src        : url("../font/Nexa-Regular-Italic.otf") format("opentype");
}

@font-face {
    font-family: 'Nexa-Light-Italic';
    src        : url("../font/Nexa-Light-Italic.otf") format("opentype");
}

@font-face {
    font-family: 'Nexa-Bold-Italic';
    src        : url("../font/Nexa-Bold-Italic.otf") format("opentype");
}

@font-face {
    font-family: 'Nexa-Light';
    font-weight: normal;
    src: url("../font/Nexa-Light.otf") format("opentype");
}

@font-face {
    font-family: 'AakritiRegular';
    src        : url("../font/AakritiRegular.ttf") format("truetype");
}

@font-face {
    font-family: 'AAKRITIBOLD';
    src        : url("../font/AAKRITIBOLD.TTF") format("truetype");
}

/* body {
    font-family: 'Tangerine', serif;
    font-size: 48px;
  } */

/*body {
    font-family: "Poppins", sans-serif;  
}*/

body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'NexaRegular';
    font-size:16px;
}

h1, h2 {
    font-family: 'NexaBold';
}

.tooltip {
    font-family: 'NexaRegular';
}

@media (max-width: 1367px) {
    p, li, a, th, td, label {
        font-size: 14px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: #324448;
}

a {
    text-decoration: none;
    color: #324448;
}

    a:hover {
        color: #324448;
    }

.text-primary {
    color: #17592E !important;
}

.text-secondary {
    color: #e36000 !important;
}

.main-navbar {
    height: 80px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px #62626217;
}

@media (min-width: 992px) {
    .main-navbar {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 5px 2px rgb(38 34 34 / 14%);
}

.main-navbar a.nav-link {
    padding: 15px !important;
}

.main-navbar .dropdown-menu {
    padding: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-radius: 0;
}

    .main-navbar .dropdown-menu li {
        padding: 2px 10px;
    }

    .main-navbar .dropdown-menu a {
        padding: 2px 10px !important;
    }

        .main-navbar .dropdown-menu a:hover {
            background-color: #4fbc63;
            color: #fff !important;
        }

.main-navbar .toggle-btn i {
    font-size: 24px;
}

.navbar-brand {
    margin-left: 30px;
}

    .navbar-brand img {
        height: 50px;
    }

.dropdown-item:hover {
    background-color: #4fbc63;
    color: #fff;
}

.main-navbar .nav-link {
    color: #555;
}

@media (max-width: 767px) {
    .main-navbar .nav-link {
        color: #fff;
    }
}

.main-navbar .nav-link:hover {
    color: #4fbc63 !important;
}

.main-navbar .navbar-nav .nav-link.active,
.main-navbar .navbar-nav .show > .nav-link {
    color: #4fbc63;
}

.main-navbar .navbar-nav > .nav-item > .nav-link {
    position: relative;
    text-decoration: none;
}

@media (max-width: 992px) {
    .navbar-collapse {
        background: #17592E;
        z-index: 999;
    }

    .main-navbar .dropdown-menu {
        background: #016101;
    }
}

.btn-close:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: #17592E;
    border-color: #17592E;
    border-radius: 30px;
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary.active {
        background-color: #077617 !important;
        border-color: #077617 !important;
    }

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    background-color: #17592E;
    border-color: #17592E;
    border-radius: 30px;
    opacity: 0.5;
}

.btn-outline-primary {
    border-color: #17592E;
    color: #17592E;
}

    .btn-outline-primary:hover {
        background: #17592E;
        border-color: #17592E;
        color: #fff;
    }

.btn-primary:checked + .btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-primary) + .btn-primary:active {
    background-color: #077617 !important;
    border-color: #077617 !important;
}

.btn-outline-secondary {
    border-color: #324448;
    color: #324448;
    border-radius: 30px;
}

.btn-secondary {
    color: #fff;
    background-color: #324448;
    border-color: #324448;
    border-radius: 30px;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: #fff;
    background-color: #324448;
    border-color: #324448;
}

.radio-group label {
    border-radius: 35px;
}

/* .page-wrapper {
    margin-top: 80px;
} */

@media (max-width: 576px) {
    .page-wrapper {
        padding: 1.5rem;
    }
}

.sec-pad {
    padding-top: 50px;
    padding-bottom: 50px;
}

.get-mobile-numb-wrapper {
    background-color: #f2faf6;
    min-height: calc(100vh - 80px);
    width: 100%;
}

.get-mobile-numb-card {
    margin: 0 10px;
    border: 0;
    border-radius: 30px;
}

    .get-mobile-numb-card .card-body {
        padding: 20px;
    }

@media (min-width: 768px) {
    .get-mobile-numb-card {
        width: 630px;
        margin: auto;
    }

        .get-mobile-numb-card .card-body {
            padding: 80px;
        }
}

.page-wrapper .brand-logo {
    width: 130px;
    margin-bottom: 20px;
}

.main-title {
    font-size: 30px;
    font-weight: 600;
}
@media (max-width: 1367px) {
    .main-title {
        font-size: 24px;
    }
}

.sub-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0 70px 30px;
    border-bottom: 2px solid #324448;
    padding-bottom: 20px;
}

@media (max-width: 1367px) {
    .sub-title {
        font-size: 18px;
    }
}

.get-mobile-numb-card .btn-primary {
    width: 100%;
}

.form-control {
    border-radius: 3px;
}

::placeholder {
    opacity: 0.5 !important;
}

::-ms-input-placeholder {
    opacity: 0.5 !important;
}

.form-check-input {
    border-color: #324448a3;
}

    .form-check-input:checked {
        background-color: #324448;
        border-color: #324448;
    }

.form-select {
    border-radius: 3px;
}

.text-bold {
    font-weight: 600;
}

.or-divider {
    position: relative;
    margin-right: 10px;
    color: gray;
}

    .or-divider:before {
        content: "";
        position: absolute;
        height: 12px;
        width: 1px;
        top: -10px;
        left: 5px;
        background-color: gray;
    }

    .or-divider:after {
        content: "";
        position: absolute;
        height: 12px;
        width: 1px;
        top: 20px;
        left: 5px;
        background-color: gray;
    }

.get-mobile-numb-alert {
    width: 370px;
    margin: auto;
    margin-top: 50px;
    display: flex;
    box-shadow: 0px 8px 24px 0px #1717172b;
}

    .get-mobile-numb-alert i {
        margin-right: 10px;
        font-size: 20px;
    }

.get-mobile-numb-alert-inner {
    line-height: 16px;
}

.get-mobile-numb-alert .small {
    font-size: 12px;
}

.get-mobile-numb-privacy-wrapper {
    text-align: center;
    font-size: 14px;
    margin-top: 50px;
}

    .get-mobile-numb-privacy-wrapper a {
        color: #17592E;
        text-decoration: underline;
    }

.get-mobile-numb-card .form-control {
    background-color: #e6f6ee;
    border-color: #e6f6ee;
}

footer {
    background-color: #17592E;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-inner li a {
        color: #fff;
    }

        .footer-inner li a:hover {
            color: #fff;
            text-decoration: underline;
        }

    .footer-inner p {
        color: #fff;
    }

.tooltip-img {
    width: 20px !important;
    margin-left: 20px;
}

.lable-with-tooltip {
    display: flex;
}

.iconWrap {
    position: relative;
    cursor: pointer;
}

    .iconWrap .tooltip {
        position: absolute;
        left: 4rem;
        top: 0.325rem;
        width: 250px;
        color: #fff;
        background-color: #324448;
        padding: 0.325rem 1rem;
        border-radius: 4px;
        transform: translateX(-0.325rem);
        opacity: 0;
        pointer-events: none;
        transition: opacity 250ms ease-in-out 0s, transform 300ms ease-in-out 0s;
        list-style: none;
    }

    .iconWrap:hover .tooltip {
        transform: translateX(0.325rem);
        opacity: 1;
    }

    .iconWrap .tooltip::before {
        content: "";
        position: absolute;
        width: 0.6rem;
        height: 0.6rem;
        background-color: #324448;
        left: 0px;
        top: 15px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-radius: 1px;
    }

.tooltip-table {
    color: transparent;
}

    .tooltip-table td, .tooltip-table th {
        color: #fff;
        background: transparent;
    }

.form-control:focus {
    border-color: #17592E;
    outline: 0;
    box-shadow: none;
}

.form-select:focus {
    border-color: #17592E;
    outline: 0;
    box-shadow: none;
}

/* quotation page starts */
.quotation-wrapper {
    background-color: #f2faf6;
    min-height: calc(100vh - 80px);
}

.quotaion-img-inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.quotaion-img-wrapper {
    width: 50%;
    background: #e6f6ee;
    border: 1px solid #d1e1d9;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.quotation-product-section {
    padding: 20px;
}

.quotaion-product-wrapper {
    padding: 20px;
}

.quotaion-product-wrapper {
    padding-bottom: 20px;
}

    .quotaion-product-wrapper h5 {
        /*color: #fff;*/
        font-size: 16px;
        font-weight: 600;
    }

    .quotaion-product-wrapper .featured-content-inner {
        display: flex;
    }


        .quotaion-product-wrapper .featured-content-inner label {
            width: 100px !important;
            height: 80px !important;
            margin: 5px;
            padding: 6px !important;
            font-weight: normal;
            font-size: 13px;
            line-height: 1.2;
            display: flex;
            flex-flow: column;
            justify-content: center;
            border: 1px solid #d1e1d9;
            border-radius: 12px !important;
            text-align: center;
            transition: all 0.4s ease;
            background: #fff !important;
            box-shadow: none;
        }

            .quotaion-product-wrapper .featured-content-inner label img {
                width: 35px;
                margin-bottom: 0 !important;
                opacity: 1;
            }

        .quotaion-product-wrapper .featured-content-inner .product-inner {
            width: 100px;
            height: 80px;
            margin: 5px;
            padding: 6px;
            font-weight: normal;
            font-size: 13px;
            line-height: 1.2;
        }

            .quotaion-product-wrapper .featured-content-inner .product-inner img {
                width: 35px;
                margin-bottom: 0;
            }

.quotation-card {
    border-radius: 30px;
    overflow: hidden;
}

.quotaion-content {
    background-color: #fff;
    padding: 20px;
}

.quotaion-img-wrapper {
    display: none;
}


.quotaion-product-wrapper .radio-group [type="radio"]:not(:checked) + label:before {
    opacity: 0;
}

.quotaion-product-wrapper .radio-group [type="radio"]:checked + label:before, .radio-group [type="radio"]:not(:checked) + label:before {
    top: 5px;
    right: 5px;
    transform: none;
    left: auto;
    width: 15px;
    height: 15px;
    border-color: #17592E;
    background: #17592E;
}

.quotaion-product-wrapper .radio-group [type="radio"]:checked + label:after, .quotaion-product-wrapper .radio-group [type="radio"]:not(:checked) + label:after {
    top: 6px;
    right: 8px;
    transform: none;
    left: auto;
    font-size: 10px;
    color: #fff;
}

.quotaion-product-wrapper .btn-check:checked + .btn, .btn.active, .btn.show, .quotaion-product-wrapper .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: #324448;
    border-color: #00560d;
}

@media (min-width: 768px) {
    .quotation-card {
        display: flex;
    }

    .quotaion-content {
        width: 50%;
        padding: 40px 60px;
    }

    .quotaion-img-wrapper {
        display: block;
    }
}

.quotaion-content .btn-group {
    flex-wrap: wrap;
}

.quotaion-content .radio-group {
    margin-right: 10px;
    position: relative;
    margin-bottom: 5px;
}

.quotaion-content .btn-check {
    clip: auto;
    top: 49%;
    transform: translateY(-50%);
    left: 10px;
}

.quotaion-content .radio-group label {
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-size: 14px;
}

.quotaion-content .form-label {
    font-size: 16px;
    font-weight: normal;
}

.radio-group [type="radio"]:checked + label,
.radio-group [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 35px;
    display: inline-block;
}

    .radio-group [type="radio"]:checked + label:before,
    .radio-group [type="radio"]:not(:checked) + label:before {
        content: "";
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        border: 1px solid #adb4b6;
        border-radius: 100%;
        background: #fff;
    }

    .radio-group [type="radio"]:checked + label:after,
    .radio-group [type="radio"]:not(:checked) + label:after {
        content: "\f00c";
        font-family: "FontAwesome";
        color: #324448;
        font-weight: bold;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 12px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .radio-group [type="radio"]:not(:checked) + label:after {
        opacity: 0;
    }

    .radio-group [type="radio"]:checked + label:after {
        opacity: 1;
    }



.radio-group [type="checkbox"]:checked + label:before,
.radio-group [type="checkbox"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid #adb4b6;
    border-radius: 100%;
    background: #fff;
}

.radio-group [type="checkbox"]:checked + label:after,
.radio-group [type="checkbox"]:not(:checked) + label:after {
    content: "\f00c";
    font-family: "FontAwesome";
    color: #324448;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.radio-group [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

.radio-group [type="checkbox"]:checked + label:after {
    opacity: 1;
}




.form-control-lg {
    font-size: 14px;
    padding: 0.8rem 1rem;
}

.form-select-lg {
    font-size: 14px;
    padding: 0.8rem 1rem;
}

.quotation-wrapper .form-control {
    background-color: #e6f6ee;
    border-color: #e6f6ee;
}

.info-notes-wrapper {
    margin-top: 50px;
    border: 1px solid #17592E;
    padding: 10px;
    border-radius: 10px;
}

.info-notes-card {
    box-shadow: 0px 8px 24px 0px #1717172b;
}

.form-label {
    font-weight: 600;
}

.radio-custom:checked + .radio-custom-label:before {
    content: "\f00c";
    font-family: "FontAwesome";
    color: #bbb;
}

/* premium calculation page starts */
.premium-calc-wrapper {
    background-color: #f2faf6;
    min-height: calc(100vh - 80px);
    overflow-x: hidden;
}

.premium-calc-vehicle-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

    .premium-calc-vehicle-card .navbar-brand {
        margin-left: 10px;
    }

    .premium-calc-vehicle-card .iconWrap .tooltip {
        width: 200px;
        left: 3rem;
    }

@media (min-width: 768px) {
    .premium-calc-vehicle-card {
        /*width: 98vw;*/
        margin: auto;
        /*overflow: hidden;*/
    }

        .premium-calc-vehicle-card .card-body {
            display: flex;
            align-items: center;
            justify-content: center;
        }
}

@media (max-width: 768px) {
    .premium-calc-vehicle-card .card-body .form-group {
        margin-bottom: 20px;
        border-bottom: 1px dashed #3244481c;
    }
}

.premium-calc-vehicle-card .card-body img {
    width: 80px;
}

form.is-readonly .btn-save {
    display: none;
}

form.is-readonly input[disabled],
form.is-readonly textarea[disabled],
form.is-readonly select[disabled] {
    cursor: text;
    background-color: #fff;
    border-color: transparent;
    outline-color: transparent;
    box-shadow: none;
    font-weight: bold;
    padding-left: 0;
    --bs-form-select-bg-img: none;
}

form.is-editing .btn-edit {
    display: none;
}

.premium-calc-wrapper form label {
    margin-bottom: 10px;
    font-size: 14px;
}

@media (max-width: 1367px) {
    .premium-calc-wrapper form label {
        font-size: 14px;
    }

    .premium-calc-wrapper .btn {
        font-size: 14px;
    }
}

.insurance-compare-title .content-title {
    font-weight: bold;
}

    .insurance-compare-title .content-title:nth-child(1) {
        margin-left: 20px;
    }

.insurance-compare-logo {
    margin-left: 20px;
}

    .insurance-compare-logo img {
        width: 100px;
    }

    .insurance-compare-logo hr {
        width: 150px;
        border-color: #324448;
        opacity: 1;
        margin: 2rem 0;
        border-width: 2px;
    }

.insurance-compare-card {
    border: 1px solid #3244481c;
    padding: 20px;
    border-radius: 30px;
}

    .insurance-compare-card .insurance-compare-card-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .insurance-compare-card .insurance-compare-card-heading img {
            width: 50px;
        }

    .insurance-compare-card .btn-primary {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .insurance-compare-card hr {
        width: 150px;
        border-color: #324448;
        opacity: 1;
        margin: 1rem 0;
    }

    .insurance-compare-card .arrow-link:hover {
        color: #17592E;
    }
.insurance-compare-card-heading .main-title {
    font-size: 24px;
    font-weight: 600;
}
.insurance-compare-feature {
    list-style: none;
}

    .insurance-compare-feature li {
        position: relative;
        padding-left: 0.8em;
    }

        .insurance-compare-feature li + li {
            margin-top: 10px;
        }

        .insurance-compare-feature li.active::before {
            content: "";
            display: inline-block;
            position: absolute;
            left: -0.5em;
            top: 0;
            transform: rotate(45deg);
            height: 1em;
            width: 0.5em;
            border-bottom: 0.12em solid green;
            border-right: 0.12em solid green;
        }

        .insurance-compare-feature li.inactive {
            position: relative;
        }

            .insurance-compare-feature li.inactive::before,
            .insurance-compare-feature li.inactive::after {
                content: "";
                display: inline-block;
                position: absolute;
                left: -0.5em;
                top: 0.3em;
                height: 1em;
                width: 0.12em;
                background-color: red;
            }

            .insurance-compare-feature li.inactive::before {
                transform: rotate(45deg);
            }

            .insurance-compare-feature li.inactive::after {
                transform: rotate(-45deg);
            }

.insurance-compare-rating {
    margin-bottom: 20px;
}

    .insurance-compare-rating i {
        color: #d9d9d9;
        font-size: 20px;
    }

        .insurance-compare-rating i + i {
            margin-left: 5px;
        }

.insurance-compare-progress-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 5px;
}

    .insurance-compare-progress-inner p {
        width: 60%;
    }

    .insurance-compare-progress-inner .progress {
        width: 40%;
        border-radius: 0;
        margin-left: 30px;
    }

    .insurance-compare-progress-inner .progress {
        --bs-progress-bg: #cdeddc;
    }

        .insurance-compare-progress-inner .progress .progress-bar {
            background-color: #17592E;
        }

@media (max-width: 1367px) {
    .insurance-compare-title .content-title {
        font-size: 20px;
    }

    .insurance-compare-feature li {
        font-size: 13px;
    }
}

/* thirtparty info */

.breadcrumb-wrapper {
    border-top: 1px solid #324448;
    border-bottom: 1px solid #324448;
}

    .breadcrumb-wrapper nav {
        display: flex;
    }

.breadcrumb-wrap img {
    width: 100px;
}

.breadcrumb-wrapper .go-back-link {
    font-size: 25px;
    cursor: pointer;
    margin-left: 30px;
    position: absolute;
    transform: translateX(-5px);
    transition: all .5s;
}

    .breadcrumb-wrapper .go-back-link:hover {
        opacity: 1;
        transform: translateX(-15px);
    }

.content-title {
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 1367px) {
    .content-title {
        font-size: 20px;
    }
}

.content-sub-title {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 1367px) {
    .content-sub-title {
        font-size: 18px;
    }
}

.premium-table thead th {
    background-color: #324448;
    color: #fff;
    font-weight: normal;
}

@media(min-width: 768px) {
    .premium-tbl-wrapper {
        margin-left: 80px;
    }
}

.premium-table th {
    font-weight: 500;
}

.premium-table th,
.premium-table td {
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 3px solid #fff;
    color: #324448;
}

.premium-table tr td:nth-child(2),
.premium-table tr th:nth-child(2) {
    text-align: right;
    border-left: 2px solid #dee2e6;
}

.btn-fade {
    background-color: #cdeddc;
    color: #324448;
    border: 1px solid #cdeddc;
}

    .btn-fade:hover {
        background-color: #17592E;
        border-color: #17592E;
        color: #fff;
    }

.mascot-notes-wrapper {
    margin-top: 50px;
    padding: 30px;
}

/*@media(min-width:768px) {
    .mascot-img-wrapper {
        margin-top: -90px;
    }
}*/

.background-gray {
    background-color: #ebeced;
}

.mascot-notes-inner {
    display: flex;
    align-items:center;
}

.mascot-notes-content p {
    width: 80%;
}

.mascot-notes-inner img {
    width: 150px;
}

.table-dark th {
    background-color: #324448;
    color: #fff;
    font-weight: normal;
}

.info-table th,
.info-table td {
    border-bottom: 1px solid #fff;
}

    .info-table th + th,
    .info-table td + td {
        border-left: 2px solid #dee2e6;
    }

.info-badge {
    width: max-content;
    background-color: #324448;
    padding: 4px;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.mascot-notes-wrapper .content {
    padding: 20px;
    background: #d6d8da;
}

@media(min-width:768px) {
    .mascot-notes-wrapper .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.mascot-notes-wrapper .content button i {
    background: #fff;
    color: #324448;
    padding: 6px;
    border-radius: 100%;
}

.learn-more-info-card {
    box-shadow: 0px 8px 24px 0px #17171717;
    border: 1px solid #3244481c;
}

@media (max-width: 992px) {
    .learn-more-info-card {
        margin-bottom: 10px;
    }
}

.learn-more-info-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.learn-more-info-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .learn-more-info-card-title img {
        width: 50px;
    }

.learn-more-info-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.learn-more-info-card a {
    color: #17592E;
}

/* register page starts */

.register-wrapper .quotation-card {
    border-radius: 0;
    min-height: calc(100vh - 72px);
}

@media(min-width:768px) {
    .register-wrapper .quotaion-content {
        padding-left: 80px;
        padding-right: 80px;
        width: 60%;
    }
}

.title-with-line {
    overflow: hidden;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .title-with-line::before,
    .title-with-line::after {
        background-color: #324448;
        content: "";
        display: inline-block;
        height: 1px;
        position: relative;
        vertical-align: middle;
        width: 50%;
    }

    .title-with-line::before {
        right: 0.5em;
        margin-left: -50%;
    }

    .title-with-line::after {
        left: 0.5em;
        margin-right: -50%;
    }

.register-wrapper .form-control,
.register-wrapper .form-select {
    background-color: #e6f6ee;
    border-color: #e6f6ee;
}

.register-wrapper .quotaion-img-inner {
    /*background-image: url(../images/login-bg.png);*/
    background-image: url(../images/mascotBG2.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    align-items: flex-start;
    padding: 80px;
    justify-content: center
}

    .register-wrapper .quotaion-img-inner .main-title {
        z-index: 1;
        color: #C05D26;
        line-height: 1.5;
/*        font-size: 2.5rem;
*/        font-size: 1.5rem;
    }

.register-wrapper .quotaion-img-wrapper {
    width: 40%;
}

.register-wrapper .quotaion-img-inner:before {
    content: "";
    position: absolute;
    /*background-color: #000000a2;*/
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* vehicle selection page starts */
.vehicle-selection-wrapper {
    min-height: calc(100vh - 149px);
}

.vehicle-selection-img {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: end;
}

    .vehicle-selection-img img {
        width: 350px;
    }

/*@media (max-width: 768px) {
    .vehicle-selection-img {
        display: none;
    }
}*/
@media (max-width: 1399px) {
    .vehicle-selection-img img {
        display: none;
    }
}
/* test */

.vehicle-selection-card #msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

    .vehicle-selection-card #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        position: relative;
    }

.vehicle-selection-card .form-card {
    text-align: left;
}

.vehicle-selection-card #msform fieldset:not(:first-of-type) {
    display: none;
}

/* .vehicle-selection-card #msform input,
.vehicle-selection-card #msform textarea {
    padding         : 8px 15px 8px 15px;
    border          : 1px solid #ccc;
    border-radius   : 0px;
    margin-bottom   : 25px;
    margin-top      : 2px;
    width           : 100%;
    box-sizing      : border-box;
    font-family     : montserrat;
    color           : #2C3E50;
    background-color: #ECEFF1;
    font-size       : 16px;
    letter-spacing  : 1px
} */

.vehicle-selection-card #msform input:focus,
.vehicle-selection-card #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #17592E;
    outline-width: 0;
}

.vehicle-selection-card #msform .action-button {
    min-width: 240px;
    float: right;
    margin-top: 20px;
}

.vehicle-selection-card #msform .action-button-previous {
    min-width: 240px;
    border-radius: 35px;
    cursor: pointer;
    float: right;
    margin-top: 20px;
    margin-right: 5px;
}

    .vehicle-selection-card #msform .action-button-previous:hover,
    .vehicle-selection-card #msform .action-button-previous:focus {
        background-color: #000000;
    }

.vehicle-selection-card .vehicle-selection-card {
    z-index: 0;
    border: none;
    position: relative;
}

.vehicle-selection-card .purple-text {
    color: #17592E;
    font-weight: normal;
}

.vehicle-selection-card .steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.vehicle-selection-card .fieldlabels {
    color: gray;
    text-align: left;
}

.vehicle-selection-card #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    padding-left: 0;
}

    .vehicle-selection-card #progressbar .active {
        color: #324448;
    }

        .vehicle-selection-card #progressbar .active .content-sub-title {
            font-weight: normal;
        }

    .vehicle-selection-card #progressbar li {
        list-style-type: none;
        width: 14%;
        float: left;
        position: relative;
        font-weight: 400;
        padding-bottom: 50px;
        text-align: left;
    }

        .vehicle-selection-card #progressbar li:after {
            content: "";
            width: 90%;
            height: 7px;
            transition: all ease-in-out 0.5s;
            background-color: #cdeddc;
            position: absolute;
            border-radius: 35px;
            left: 0;
            bottom: 0px;
            z-index: -1;
        }

        .vehicle-selection-card #progressbar li.rounded-start-0:after {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

        .vehicle-selection-card #progressbar li.active:after {
            background-color: #17592E;
            transition: all ease-in-out 0.5s;
        }

        .vehicle-selection-card #progressbar li.progressbar-full-width:after {
            width: 100%;
        }

.vehicle-selection-card .progress {
    height: 20px;
}

.vehicle-selection-card .progress-bar {
    background-color: #17592E;
}

.vehicle-selection-card .fit-image {
    width: 100%;
    object-fit: cover;
}

.vehicle-selection-card #progressbar li .progressbar-title {
    opacity: 0;
    width: 250px;
    position: absolute;
    top: -4px;
}

.vehicle-selection-card #progressbar li.active .progressbar-title {
    opacity: 1;
}

.vehicle-selection-card #progressbar li .progressbar-title .content-title,
.vehicle-selection-card #progressbar li .progressbar-title .content-sub-title {
    font-size: 16px;
}

@media(max-width:768px) {
    .vehicle-selection-card #progressbar li .progressbar-title .content-title,
    .vehicle-selection-card #progressbar li .progressbar-title .content-sub-title {
        font-size: 11px;
    }

    .vehicle-selection-card #progressbar li .progressbar-title {
        width: 50px;
        line-height: 1;
    }
}

.vehicle-selection-form-inner .radio-group {
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vehicle-selection-form-inner .user-select-inner .radio-group {
    border: 1px solid #00560d5e;
    padding: 15px;
    border-radius: 3px;
    width: 182px;
    position: relative;
    border-radius: 6px;
    background: #fff;
}

    .vehicle-selection-form-inner .user-select-inner .radio-group:last-child {
        border-style: dashed;
    }

.ribbon {
    width: 150px;
    height: 102px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
}

    .ribbon::before,
    .ribbon::after {
        position: absolute;
        z-index: 0;
        content: '';
        display: block;
        border: 5px solid #324448;
    }

    .ribbon span {
        position: absolute;
        display: block;
        width: 270px;
        padding: 3px 0;
        background-color: #324448;
        box-shadow: 18px 2px 10px rgba(0, 0, 0, .1);
        color: #fff;
        text-shadow: 0 1px 1px rgba(0,0,0,.2);
        text-transform: uppercase;
        text-align: center;
        font-size: 14px;
    }

.ribbon-top-left {
    top: -10px;
    left: -10px;
}

    .ribbon-top-left::before,
    .ribbon-top-left::after {
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-top-left::before {
        top: 0;
        right: 47px;
    }

    .ribbon-top-left::after {
        bottom: 0;
        left: 0;
    }

    .ribbon-top-left span {
        right: -25px;
        top: 30px;
        transform: rotate(-45deg);
    }


.vehicle-selection-form-inner .user-select-inner .radio-group p {
    line-height: 1.2;
}

.vehicle-selection-form-inner .radio-group .user-info {
    margin: 0;
    font-size: 14px;
    color: gray !important;
    font-weight: normal !important;
}

    .vehicle-selection-form-inner .radio-group .user-info i {
        opacity: 0.5;
        color: #fff;
        text-shadow: -1px -1px 0 #999, 1px -1px 0 #999, -1px 1px 0 #999, 1px 1px 0 #999;
    }

.vehicle-selection-form-inner .radio-group label {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background: #cdeddc;
    padding-left: 4px !important;
    padding-right: 4px !important;
    display: flex !important;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

    .vehicle-selection-form-inner .radio-group label img {
        width: 30px;
    }

.vehicle-selection-form-inner .radio-group p {
    text-align: center;
    margin-top: 20px;
}

.vehicle-selection-form-inner
.radio-group
[type="radio"]:not(:checked) + label:before {
    opacity: 0;
}

.vehicle-selection-form-inner
.radio-group
[type="radio"]:checked + label:before,
.vehicle-selection-form-inner
.radio-group
[type="radio"]:not(:checked) + label:before {
    /*top: 10px;
        right: 0px;*/
    top: 0px;
    right: 0px;
    transform: none;
    left: auto;
    width: 15px;
    height: 15px;
}

.vehicle-selection-form-inner .radio-group [type="radio"]:checked + label:after,
.vehicle-selection-form-inner
.radio-group
[type="radio"]:not(:checked) + label:after {
    /*top: 11px;
        right: 4px;*/
    top: 0px;
    right: 3px;
    transform: none;
    left: auto;
    color: #fff;
    /*font-size: 15px;*/
    font-size: 10px;
}

.vehicle-selection-form-inner .radio-group .btn-check:checked + .btn,
.vehicle-selection-form-inner .btn.active,
.vehicle-selection-form-inner .btn.show,
.vehicle-selection-form-inner .btn:first-child:active,
.vehicle-selection-form-inner :not(.btn-check) + .btn:active {
    background: #cdeddc !important;
    border: 1px solid #17592E;
    color: #212529;
}

.vehicle-selection-form-inner
.radio-group
[type="radio"]:checked + label:before {
    opacity: 1;
    background-color: #17592E;
    border-color: #17592E;
}

.vehicle-selection-form-inner .radio-group .btn-check + .btn:hover {
    background-color: #cdeddc;
    border: 1px solid #17592E;
}

/*.vehicle-selection-form-inner
    .radio-group
    [type="radio"]:not(:checked) + label
    img {
        filter: grayscale(1);
    }*/

.kyc-sample-card {
    margin-right: 0 !important;
}

.kyc-sample-slider .item {
    margin: 20px 3px;
}

.kyc-sample-card label {
    height: 150px !important;
    border-radius: 6px !important;
    width: 100% !important;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #32444826;
    backdrop-filter: blur(15px);
    box-shadow: 2px 3px 6px rgb(0 0 0 / 6%);
}

    .kyc-sample-card label img {
        width: 35px !important;
        margin-bottom: 10px;
        opacity: 0.5;
    }

.kyc-sample-card .kyc-sample-name {
    font-size: 14px;
    line-height: 1.2;
    font-family: 'Nexa-Light';
}

.kyc-sample-card .kyc-sample-phone {
    color: gray;
}

.kyc-sample-card label i {
    opacity: 0.5;
    color: #fff;
    text-shadow: -1px -1px 0 #999, 1px -1px 0 #999, -1px 1px 0 #999, 1px 1px 0 #999;
}

.kyc-sample-slider .owl-dots {
    display: none;
}

.kyc-sample-slider .owl-nav {
    margin-top: 0;
}

    .kyc-sample-slider .owl-nav button span {
        font-size: 50px;
    }

    .kyc-sample-slider .owl-nav .owl-prev,
    .kyc-sample-slider .owl-nav .owl-next {
        position: absolute;
        top: 0;
        height: 150px;
    }

    .kyc-sample-slider .owl-nav .owl-prev {
        left: -30px;
    }

    .kyc-sample-slider .owl-nav .owl-next {
        right: -30px;
    }

    .kyc-sample-slider .owl-nav [class*="owl-"] {
        color: #17592E !important;
    }

        .kyc-sample-slider .owl-nav [class*="owl-"]:hover {
            background: none;
            color: #077617 !important;
        }

.vehicle-selection-form-inner
.kyc-sample-card
[type="radio"]:checked + label:after,
.vehicle-selection-form-inner
.kyc-sample-card
[type="radio"]:not(:checked) + label:after {
    top: 4px !important;
    right: 8px !important;
}

.vehicle-selection-form-inner
.kyc-sample-card
[type="radio"]:checked + label:before,
.vehicle-selection-form-inner
.kyc-sample-card
[type="radio"]:not(:checked) + label:before {
    top: 4px;
    right: 5px;
}

.vehicle-selection-form-inner .search-link {
    text-decoration: underline;
    color: #17592E;
    cursor: pointer;
    font-weight: normal;
    font-size: 13px;
}

.vehicle-selection-form-inner .search-link-vehicle {
    text-decoration: underline;
    color: #17592E;
    cursor: pointer;
    font-weight: normal;
    font-size: 13px;
}

.upload-img-wrapper {
    margin-bottom: 30px;
}

.upload-img-card {
    border: 0;
    padding: 0;
    margin-bottom: 10px;
    height: 250px;
    overflow: hidden;
}

    .upload-img-card img {
        width: 100px;
        margin: auto;
    }

.detail-confirm-contact-wrapper {
    display: flex;
    justify-content: space-between;
}

    .detail-confirm-contact-wrapper a {
        width: 33%;
    }

@media (max-width: 768px) {
    .detail-confirm-contact-wrapper {
        display: block;
    }

        .detail-confirm-contact-wrapper a {
            width: 100%;
            margin-bottom: 10px;
        }
}

.kyc-confirm-detail-card {
    background-color: #f5f6f6;
    border: 0;
}

@media (max-width: 768px) {
    .kyc-confirm-detail-card {
        margin-bottom: 20px;
    }
}

.kyc-confirm-detail-card .kyc-confirm-detail-inner {
    padding: 20px 10px;
}

.kyc-confirm-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #324448;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.kyc-confirm-detail-tbl {
    width: 100%;
}

    .kyc-confirm-detail-tbl tr td:nth-child(2),
    .kyc-confirm-detail-tbl tr th:nth-child(2) {
        text-align: right;
    }

.payment-confirm-card {
    background-color: #f5f6f6;
    border: 0;
}

@media (min-width: 768px) {
    .hei-payment .payment-confirm-card {
        width: 600px;
        margin: auto;
    }
}

.payment-confirm-card .card-body {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hei-payment .payment-confirm-card .btn-group {
    display: block;
}

.payment-confirm-card .btn-group img {
    width: 85px;
    margin-left: 50px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.hei-payment .payment-confirm-card .radio-group + .radio-group {
    margin-top: 5px;
}

.nlg-payment .payment-confirm-card .radio-group {
    margin: 5px;
}

.nlg-payment .payment-confirm-card .btn-group {
    display: grid;
    grid-template-columns: auto auto auto;
}

@media(max-width:992px) {
    .nlg-payment .payment-confirm-card .btn-group {
        display: block;
    }
}

.payment-confirm-card .radio-group [type="radio"]:checked + label,
.payment-confirm-card .radio-group [type="radio"]:not(:checked) + label {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 60px;
    padding-right: 30px;
    border-radius: 35px;
    border: 1px solid #32444838;
    height: 95px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-confirm-card .radio-group [type="radio"]:not(:checked) + label {
    background: #fff;
}

.payment-confirm-card .btn-check:checked + .btn,
.payment-confirm-card .btn.active,
.payment-confirm-card .btn.show,
.payment-confirm-card .btn:first-child:active,
.payment-confirm-card :not(.btn-check) + .btn:active {
    background-color: #cdeddc;
    color: #212529;
}

.text-left {
    text-align: left;
}

/* Individual policy details */

.featured-content-inner .product-inner {
    width: 140px;
    height: 140px;
    margin: auto;
    background: #fff;
    padding: 12px;
    font-weight: 500;
    display: flex;
    flex-flow: column;
    justify-content: center;
    border: 1px solid #00560d;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
}

    .featured-content-inner .product-inner img {
        max-width: 100%;
        width: 50px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        height: auto;
        transition: all 0.4s ease;
    }

.featured-content-inner .feature-Carousel-one .owl-nav {
    display: none;
}

.refer-friend-card {
    background-color: #f5f6f6;
    border: 0;
    text-align: center;
    padding: 50px 100px;
    position: relative;
}

    .refer-friend-card .input-group .btn {
        width: 200px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.text-underline {
    text-decoration: underline;
}

.refer-friend-card .form-control {
    border-radius: 35px;
}

.refer-friend-card img {
    width: 250px;
    position: absolute;
    right: -100px;
    bottom: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

@media(max-width: 768px) {
    .refer-friend-card {
        padding: 30px;
    }

        .refer-friend-card img {
            display: none;
        }

        .refer-friend-card .input-group .btn {
            width: auto;
        }
}

.contact-card-wrapper {
    background-color: #324448;
    padding: 30px;
}

    .contact-card-wrapper h1,
    .contact-card-wrapper p {
        color: #fff;
    }

    .contact-card-wrapper a {
        display: block;
        margin-top: 20px;
        color: #fff !important;
    }

.claim-modal .modal-body {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 992px) {
    .individual-kyc-action-button {
        margin-top: 90px;
    }
}

.individual-kyc-action-button .btn {
    height: 60px;
    /* border-width: 2px; */
    box-shadow: 0px 5px 8px 0px #17171740;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-right: 0;
    font-size: 16px;
}

#myPDF {
    width: 100%;
    height: 1150px;
}

/* dashboard page starts */

.graph-card {
    box-shadow: 1px 0px 16px rgba(0, 0, 0, 0.1);
    border: 0;
}

.get-app-wrapper button {
    margin-bottom: 20px;
}

.get-app-wrapper img {
    width: 400px;
}

.get-app-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 450px;
}

    .get-app-img img {
        position: absolute;
        width: 450px;
    }
/* sidemenu */
.main-wrapper {
    transition: margin-left 0.3s;
    overflow-x: hidden;
}

.sidemenu.show + .main-wrapper {
    margin-left: 260px;
    /* Adjust this value as needed */
}

    .sidemenu.show + .main-wrapper .page-wrapper {
        margin-left: 20px;
    }

    .sidemenu.show + .main-wrapper .custom-logo {
        opacity: 0;
    }

.sidemenu {
    width: 260px !important;
}

.dropdown-toggle {
    outline: 0;
}

.btn-toggle {
    padding: 0.7rem 1rem;
    font-weight: 600;
    background-color: transparent;
    width: 100%;
    position: relative;
}

    .btn-toggle:hover,
    .btn-toggle:focus {
        color: rgba(var(--bs-emphasis-color-rgb), 0.85);
        background-color: var(--bs-tertiary-bg);
    }

    .btn-toggle::before {
        width: 1.25em;
        line-height: 0;
        content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
        transition: transform 0.35s ease;
        transform-origin: 0.5em 50%;
        position: absolute;
        right: 10px;
    }

[data-bs-theme="dark"] .btn-toggle::before {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28255,255,255,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
}

.btn-toggle[aria-expanded="true"] {
    color: rgba(var(--bs-emphasis-color-rgb), 0.85);
}

    .btn-toggle[aria-expanded="true"]::before {
        transform: rotate(90deg);
    }

.btn-toggle-nav a {
    padding: 0.5rem;
    margin-left: 1.25rem;
    width: 100%;
}

    .btn-toggle-nav a:hover,
    .btn-toggle-nav a:focus {
        color: #17592E !important;
        background: transparent;
    }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #324448;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    /* border: 16px solid #f3f3f3;
    border-top: 16px solid #17592E;
    border-radius: 50%;*/
    width: 100%;
    height: 100%;
    /*    animation: spin 2s linear infinite;*/
    background: url(/assets/images/Loading-150150.gif) 50% 50% no-repeat;
    
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:768px) {
    .scroll-table {
        width: 100%;
        overflow: scroll;
    }
}

.is-invalid {
    border-color: red;
}

.invalid-feedback {
    display: none;
    color: red;
}

.is-invalid + .invalid-feedback {
    display: block;
}

.upload-img-card-wrapper {
    position: relative;
    border: 1px solid #3244481c;
    padding: 20px;
    border-radius: 3px;
}

    .upload-img-card-wrapper input[type=file] {
        height: 250px;
        width: 100%;
        position: absolute;
        top: 0;
        color: #aaa;
        font-size: .875em;
        padding: 10px;
        left: 0;
    }

    .upload-img-card-wrapper input[type="file"]::file-selector-button {
        display: none;
    }

    /* Fallback for Safari, Chrome, and Opera */
    .upload-img-card-wrapper input[type="file"]::-webkit-file-upload-button {
        display: none;
    }

    /* Fallback for Legacy Edge and IE */
    .upload-img-card-wrapper input[type="file"]::-ms-browse {
        display: none;
    }

    .upload-img-card-wrapper input:focus {
        border: 0 !important;
    }

.upload-img-card p {
    font-size: .875em;
}

#vehicleForm input[type="text"].ng-invalid.ng-touched {
    border: 1px solid red !important;
}

#vehicleForm input[type="date"].ng-invalid.ng-touched {
    border: 1px solid red !important;
}


.dashboard-stats-card {
    border: 1px solid #00560d5e;
    margin-bottom: 25px;
    box-shadow: 1px 0px 16px rgba(0, 0, 0, 0.1);
    
}

.illustration.dashboard-stats-card {
    background: url('/assets/images/card-bg.png');
    background-size: cover;
    width: 620px;
    color: #fff;
}
.dashboard-stats-card h4.illustration-text {
    font-size: 22px;
    color: #fff;
}

.error-msg {
    font-size: .875em;
    color: red
}

.search-icon {
    border-radius: 0;
    background: #324448;
    color: #fff;
}

.header-flex {
    display: flex;
    justify-content: space-between;
}

.report-table-card {
    margin: 20px 0;
    box-shadow: 0 0 .875rem 0 rgba(41, 48, 66, .05);
}

.insurance-report-tbl {
    font-size: 13px;
}

.report-table-card {
    border: 0;
}

    .report-table-card .dropdown-toggle {
        border-bottom: 1px solid #dee2e6;
        border-radius: 0;
        font-size: 13px;
    }

    .report-table-card .dropdown-item {
        font-size: 14px;
    }

    .report-table-card .dataTables_length {
        font-size: 13px;
    }

.dropdown .dropdown-menu.show {
    animation-name: dropdownAnimation;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes dropdownAnimation {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-tbl .pagination {
    position: absolute;
    right: 30px;
}

.active > .page-link, .page-link.active {
    background-color: #324448;
    border-color: #324448;
}

.page-link {
    color: #324448;
}

.report-table-card .info-table th + th, .report-table-card .info-table td + td {
    border-bottom: 1px solid #dee2e6;
}

.error {
    color: #dc3545 !important;
}

.page-wrapper {
    min-height: calc(100vh - 72px);
}

#kycIdentification.ng-touched.ng-invalid {
    border: 1px solid red !important;
}

aside.offcanvas {
    overflow-y: auto;
    overflow-x: hidden;
}

.dashboard-featured-product .product-inner {
    display: flex;
    align-items: center;
    vertical-align: bottom;
    width: 146px !important;
    height: 110px !important;
    font-size: 14px;
    margin: 5px;
    padding: 6px !important;
    line-height: 1.2;
    border: 1px solid #d1e1d9;
    font-weight: normal;
    cursor: pointer;
}

.agent-dashboard-product .product-inner {
    display: inline-block;
    width: 100px !important;
    height: 80px !important; 
}

.dashboard-featured-product .product-inner a {
    font-size: 14px;
    line-height: 1.2;
    font-family: 'Nexa-Light';
}

.dashboard-featured-product .product-inner img {
    width: 50px !important;
    margin: 0;
}

.agent-dashboard-product .product-inner img {
    width: 36px !important;
}

.get-app-wrapper {
    background: url('/assets/images/get-app-bg.png');
    background-size: cover;
    border-radius: 35px;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    height: 310px;
    margin-top: 80px;
}

aside.offcanvas::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);*/
    background-color: #F5F5F5;
}

aside.offcanvas::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

aside.offcanvas::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    background-color: #c1c1c1;
}

.insurance-feature-collapse .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: #212529;
}

.insurance-feature-collapse .accordion-button:focus {
    box-shadow: none;
}

.insurance-feature-collapse .accordion-button {
    font-weight: 500;
}

.cancellation-card {
    margin: 20px 0;
}

    .cancellation-card img {
        width: 200px;
        margin-bottom: 20px;
    }

@media (min-width: 768px) {
    .cancellation-card .quotaion-content {
        width: 100%;
        padding: 70px;
    }
}

.cancellation-card .accordion-button:not(.collapsed) {
    background-color: #324448;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.cancellation-card .accordion-button {
    font-weight: 600;
}

.cancellation-card .btn-danger {
    border-radius: 30px;
}

.submitted-document .document-img-box-inner {
    display: inline-block;
    margin: 5px;
}

    .submitted-document .document-img-box-inner img {
        width: 200px;
        height: 200px;
        object-fit: contain;
    }

.submitted-document .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #324448;
}

.action-button-previous {
    min-width: 240px;
    border-radius: 35px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 5px;
}

.action-button {
    min-width: 240px;
    margin-top: 20px;
}

.vehicle-wrapper-nlg {
    min-height: calc(100vh - 149px);
}

.text-danger {
    font-size: 13px;
}

.error {
    font-size: 13px;
}

.tooltip-img {
    color: #324448;
}

.banner-slider img {
    border-radius: 12px;
}

.banner-slide-top {
    margin-bottom: 20px;
}

.offcanvas .nav-link {
    font-weight: 600;
    color: #212529;
    width: 100%;
}

    .offcanvas .nav-link.active a {
        color: #fff !important;
        font-weight: 600;
    }

.offcanvas .btn-toggle-nav .nav-link {
    padding: 2px;
}

.form-group {
    position: relative;
}

#RegDBs {
    padding-right: 40px; 
}

.calendar-icon-btn {
    position: absolute;
    top: 78%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    background: none;
    border: none;
    z-index: 2;
}

    .calendar-icon-btn:before {
        content: '\f133';
        font-family: 'Font Awesome 5 Free';
        cursor: default;
    }

.insurance-compare-title.sticky {
    padding-top: 15px;
}
.insurance-compare-title.sticky .content-title {
    font-size: 18px;
}

.nav-item.dropdown-hover:hover .dropdown-menu {
    display: block;
}
.dropdown-item img {
    vertical-align: middle;
    margin-right: 8px;
}

.dashboard-action-btn a {
    width: 300px;
    height: 56px;
    border-radius: 6px;
    margin-bottom: 30px;
    margin-right: 20px;
}

.dashboard-stats-card .content-title {
    font-size: 20px !important;
}

.user-dashboard-card {
    background: url('/assets/images/card-bg.png');
    background-size: cover;
    width: 620px
}

    .user-dashboard-card table {
        border-left: 1px solid #fff;
    }
        .user-dashboard-card table td {
            background-color: transparent !important;
            color: #fff !important;
            border: 0;
            padding: 2px;
            padding-left: 20px;
        }

.user-dashboard-card .main-title {
    color: #fff;
}

.user-dashboard-action-btn a {
    height: auto;
    margin-bottom: 20px;
}

.user-dashboard-action-btn a img {
    width: 18px;
}

.agent-dashboard-product h5 {
    font-size: 18px;
    margin-top: 10px;
}

.insurer-select-nav {
    
}

    .insurer-select-nav .nav-link {
        border: 1px solid #dee2e6;
        border-radius: 0;
        color: #324448;
        min-width: 200px;
        border-bottom: 0;
    }
        .insurer-select-nav .nav-link:hover {
            background: #fff;
            font-weight: bold;
            cursor: pointer;
        }

        .insurer-select-nav .nav-link.active {
            border-top: 2px solid #17592e !important;
            font-weight: bold
        }

.portfolio-select-nav .nav-link {
    border: 0;
    color: #324448;
    min-width: 200px;
    border-radius: 0;
}

    .portfolio-select-nav .nav-link.active {
        border-bottom: 2px solid #17592e !important;
    }

    .portfolio-select-nav .nav-link:hover {
        background: #fff;
        font-weight: bold;
        cursor: pointer;
    }
.vehicle-selection-wrapper .form-control  {
    background-color: #e6f6ee;
/*    border-color: #e6f6ee;
*/}
.vehicle-selection-wrapper .form-select {
    background-color: #e6f6ee;
/*    border-color: #e6f6ee;
*/}
    .vehicle-selection-wrapper .form-select:disabled {
        background-color: #e9ecef;
        /*    border-color: #e6f6ee;
*/
    }

.quotation-product-section-title {
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.offer-ribbon-content {
    background: #f7ce00;
    height: 25px;
    width: auto;
    display: inline-block;
    position: relative;
    /*color: #FFF;*/
    line-height: 25px;
    padding: 0px 20px;
    font-size: 12px;
    border-radius: 20px 0px 0px 20px;
}

    .offer-ribbon-content:after {
        content: "";
        height: 0;
        width: 0;
        top: 0px;
        right: -30px;
        position: absolute;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 25px solid #f7ce00;
    }

    .offer-ribbon-content:before {
        content: "";
        height: 0;
        width: 0;
        top: 0px;
        right: -30px;
        position: absolute;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 25px solid #f7ce00;
    }

.insurance-compare-card .offer-ribbon {
    background: #f7ce00;
    /*color: #FFF;*/
    font-size: 12px;
    padding: 3px 20px;
    position: absolute;
    bottom: 32px;
    /* right: -12px; */
    left: -12px;
    border-radius: 0 20px 20px 0;
}

    .insurance-compare-card .offer-ribbon:after {
        /*position: absolute;
        content: '';
        background-color: #fc5185;
        height: 35px;
        width: 35px;
        top: 3rem;
        right: -23px;
        transform: rotate(45deg);
        z-index: 10;*/

        position: absolute;
        /* right: 0px; */
        left: 0;
        /* top: 0px; */
        bottom: -26px;
        z-index: 9999;
        content: "";
        /* border-bottom: 27px solid #3543ea; */
        border-left: 12px solid #ed757500;
        border-right: 0px solid #23242400;
        border-top: 8px solid #d3b001;
        /* width: 30px; */
        height: 26px;
        z-index: 0;
    }

.dashboard-featured-product .product-inner {
    position: relative;
}

    .dashboard-featured-product .product-inner i.offer-icon {
        text-align: right;
        position: absolute;
        right: 5px;
        top: 5px;
        color: #f7ce00;
    }

.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}