/* <!-- what is health insurance two cards css start  --> */

#whatishealthImage {
    background-color: #f0f0f0;
}

#whatishealthImage .card-container {
    display: flex;
    gap: 16px;
    padding: 20px;

    justify-content: center;
    flex-wrap: wrap;
}

/* Card Styling */
#whatishealthImage .card {
    display: flex;
    align-items: center;
    background-color: #1f3b84;
    border-radius: 12px;
    padding: 0px;
    color: #fff;
    max-width: 610px;
    flex: 1;
    box-shadow: none;
}

/* Image Container */
#whatishealthImage .card img {
    width: 140px;
    height: auto;
    margin-right: 16px;
}

/* Text Content */
#whatishealthImage .card-content {
    flex: 1;
}

#whatishealthImage .card-content h3 {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 1.4;
}

/* Button Styling */
#whatishealthImage .buy-btn {
    background-color: #f59c36;
    color: #fff;
    border: 0;
    border-radius: 30px;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    #whatishealthImage .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #whatishealthImage .card img {
        margin: 0 0 16px 0;
    }
}



/* <!-- what is health insurance two cards css end  --> */




/* <!-- ready to purchase banner html css start --> */

/* Container */
#readtopurchase .banner {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #084298 0%, #042157 100%);
    color: #fff;
    border-radius: 12px;
    max-width: 1440px;
    margin: 20px auto;
    overflow: hidden;
}

/* Image Section */
#readtopurchase .banner-image {
    flex-shrink: 0;
    width: 100px;
    height: auto;
    margin-right: 20px;
}

/* Text Content */
#readtopurchase .banner-content {
    flex: 1;
}

#readtopurchase .banner-content h3 {
    font-size: 22px;
    line-height: 1.4;
}

#readtopurchase .banner-content p {
    font-size: 18px;
    margin-top: 5px;
    line-height: 1.4;
}

#readtopurchase .letsstart {
    background-color: #f39c12;
    color: #fff;
    border-radius: 30px;
    padding: 10px 40px;
    margin-right: 0px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    #readtopurchase .banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    #readtopurchase .banner-image {
        margin: 0 0 20px 0;
        width: 80px;
    }

    #readtopurchase .banner-content h3 {
        font-size: 20px;
    }

    #readtopurchase .banner-content p {
        font-size: 16px;
    }

    #whatishealthImage .card img {
        width: 100px;
        height: auto;
        margin-right: 16px;
    }

    #whatishealthImage .card-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0;
        line-height: 1.4;
    }

    #whatishealthImage .buy-btn {
        background-color: #f59c36;
        color: #fff;
        border: 0;
        border-radius: 30px;
        padding: 8px 21px;
        cursor: pointer;
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }
}


@media (max-width: 600px) {
    #whatishealthImage .card {
        flex: 1 1 100%;
        /* Stack cards on smaller screens */
    }
}

/* <!-- ready to purchase banner html css end --> */
.health-images-div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}
.secureIcon {
    width: 100%;
    height: auto;
    flex: 1;
    max-width: 640px;
}
.why-section {
    display: flex;

    margin-bottom: 20px;
    flex-direction: row;
}
.why-section .why-title {
    font-size: 3rem;
    color: #000;
    font-weight: 600;
        margin-bottom: 15px;
        margin-top: 25px !important;
}

.why-section .sub-text {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
}
.why-section .text-section {
    width: fit-content;
    padding-top: 20px;
            padding-bottom: 20px;
}
.image-section {
    flex: 0 0 30%;
    /* 30% width */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
}
.image-section img {
    max-width: 100%;
    margin: 10px 0;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        /* Stack on smaller screens */
    }

    .text-section,
    .image-section {
        flex: 1 0 auto;
        /* Full width */
        width: 100%;
    }
.why-section .text-section {

    padding-bottom: 0px;
}
#whatishealthImage .card {
    max-width: 400px;
}
}
/* 
<!-- health insurance blog CSS start --> */

#health-insurance-blog {
    margin-top: 20px;
    margin-bottom: 20px;
}

#health-insurance-blog .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Adjusts space between cards */
}

#health-insurance-blog .card-custom {
    flex: 1 1 30%;
    /* Adjusts base size for each card */
    margin: 10px;
    /* Adds margin for spacing */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Adds a subtle shadow */
    border-radius: 8px;
    /* Rounds card corners */
    overflow: hidden;
    /* Ensures child elements stay within the card */
    background: #fff;
    /* White background for the card */
    padding: 10px 10px;
}

#health-insurance-blog .card-custom img {
    max-width: 100%;
    /* Ensures images are responsive */
    height: auto;
    /* Keeps image aspect ratio */
    border-radius: 8px;
}

#health-insurance-blog .card-custom .title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
}

#health-insurance-blog .card-custom .sub-text {
    font-size: 1.5rem;
    color: #000;
}

#health-insurance-blog .card-custom .blogDate {
    font-size: 1.5rem;
    color: #000;
    text-align: right;
    margin-top: 10px;
}

#health-insurance-blog .readmore {
    font-size: 1.8rem;
    font-weight: 600;
    float: right
}

#health-insurance-blog .blog-btn-div {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#health-insurance-blog .allblogs {
    font-size: 1.8rem;
    color: #f89c30;
    font-weight: 600;
    border: 1px solid #f89c30;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 20px;

}




@media (max-width: 768px) {
    #health-insurance-blog .card-custom {
        flex: 1 1 100%;
        /* Full width on smaller screens */
    }
}


/* 
<!-- health insurance blog CSS end --> */

/* <!-- Health Insurance Reviews & Ratings css start --> */

#Reviews {
    margin-top: 20px;
}

#Reviews .review-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: none;
    width: 100%;
    /* Adjust as needed */
    overflow: hidden;
    /* Hide overflowing items */
    text-align: center;
}

#Reviews .mainTitle {
    color: #000;
    text-align: left;
}



#Reviews .based-on {
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
}

#Reviews .carousel {
    overflow: hidden;
    position: relative;
    margin: 0px 0;
}

#Reviews .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

#Reviews .carousel-item {
    flex: 0 0 33.333%;
    /* Shows 3 items at a time */
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
}

#Reviews .carousel-item h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 5px;
}

#Reviews .carousel-item p {
    font-size: 1.8rem;
    color: #585653;
    font-weight: 400;
}

#Reviews .controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

#Reviews .controls button {
    background: none;
    border: none;
    font-size: 3em;
    cursor: pointer;
    color: #ff9900;
}

#Reviews .footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#Reviews .footer .viewstories {
    font-size: 1.8rem;
    color: #F89C30;
    font-weight: 600;
    border: 1px solid #F89C30;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 20px;
}

#Reviews .footer .Sharefeedback {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    border: 1px solid #F89C30;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    background-color: #F89C30;
}

#Reviews .footer a:hover {
    text-decoration: underline;
}


#Reviews .rating {
    font-size: 2.1rem;
    color: #000;
    font-weight: 600;
    margin-right: 6px;
    margin-top: 6px;
}

#Reviews .rating-number {
    display: inline-block;
    /* Allow vertical alignment */
    margin-top: 5px;
    /* Adjust this value to control how far down "5" goes */
    font-weight: bold;
    /* Optional: make it bold for emphasis */
}

#Reviews .reviewer-image {
    width: 150px;
    margin-bottom: 20px;
}

#Reviews .rating-div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#Reviews .messagesection {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#Reviews .message-review {
    width: 65px;
    height: auto;
    margin-right: 30px;
}


#Reviews .multireviewer-image {
    width: 170px;
}





/* Responsive Design */
@media (max-width: 768px) {
    #Reviews .carousel-item {
        flex: 0 0 100% !important;
        /* Shows 2 items at a time */
    }

#Reviews .footer {
    display: grid;
    justify-content: center;
    margin-top: 0;
}

#Reviews .footer .viewstories {
    width: 100%;
    margin-bottom: 15px;
}

#Reviews .footer .Sharefeedback {
     width: 100%;
}
}

@media (max-width: 480px) {
    #Reviews .carousel-item {
        flex: 0 0 100% !important;
        /* Shows 1 item at a time */
    }


}


#Reviews .carousel {
    position: relative;
}

#Reviews .carousel-container {
    display: flex;
    /* Align items in a row */
    transition: transform 0.5s ease;
    /* Smooth transition */
}

#Reviews .carousel-item {
    flex: 0 0 50%;
    /* Each item takes up 50% of the carousel width */
    box-sizing: border-box;
    /* Ensure padding/margin is included in width */
    padding: 10px;
    /* Adjust padding as needed */
}

/* <!-- Health Insurance Reviews & Ratings css end --> */



/* <!-- Health Insurance Plan by Bajaj Allianz General Insurance Company: Inclusions & Exclusions css start --> */


#Inclusions-exclusions .mainTitle {
    color: #000;
}

#Inclusions-exclusions .table-container {
    width: 100%;
    padding: 20px;
}

#Inclusions-exclusions .responsive-table {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
}

#Inclusions-exclusions .table-column {
    width: 50%;
    padding: 20px;
    box-shadow: none;
}

#Inclusions-exclusions .table-column h3 {
    margin-top: 0;
    text-align: left;
    color: #000;
}

#Inclusions-exclusions table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: none;
    border-radius: 8px;
}

#Inclusions-exclusions th {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

#Inclusions-exclusions td {
    padding: 15px;
    border: 1px solid #ddd;
}

#Inclusions-exclusions .table-column ul {
    list-style: none;
    padding: 0;
}

#Inclusions-exclusions .table-column ul li {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1.8rem;
    color: #000;

}

#Inclusions-exclusions .table-column ul li img {
    width: 24px;
    /* Set desired size of the image */
    height: 24px;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #Inclusions-exclusions .responsive-table {
        flex-direction: column;
    }

    #Inclusions-exclusions .table-column {
        width: 100%;
    }
}

/* <!-- Health Insurance Plan by Bajaj Allianz General Insurance Company: Inclusions & Exclusions css end --> */



#premium .health-documents{
margin-top:30px;
}
.timeline-container {
    display: block;
 
}
.timeline-container .MainTitle {
    color: #000;
}

.timeline-container .sub-text {
    color: #000;
    font-weight: 400;
}

.timeline-container ul.tl {
    margin: 20px 0;
    padding: 0;
    display: inline-block;

}
.timeline-container ul.tl li {
    list-style: none;
    margin: auto;
    min-height: 50px;
    border-left: none;
    padding: 0 0 20px 30px;
    position: relative;
    display: flex;
    flex-direction: row;
}
.timeline-container ul.tl li.dashed {
    border-left: 1px dashed #D9D9D9;
}
.timeline-container ul.tl li:last-child {
    border-left: 0;
}

.timeline-container ul.tl li .item-icon {
    position: absolute;
    left: 0px;
    top: 4px;
    content: " ";
    border: 6px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #f39c12;
    height: 20px;
    width: 20px;
}

.timeline-container ul.tl li:hover::before {
    border-color: #FF9B41;
    transition: all 1000ms ease-in-out;
}

ul.tl li .item-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

ul.tl li .item-title {}
ul.tl li .item-detail {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
}
ul.tl li .item-timestamp {
    color: #8D8D8D;
    font-size: 12px;
    text-align: right;
    padding-left: 20px;
}

@media (max-width: 768px) { 
.timeline-container ul.tl {
    margin: 15px 10px;
}

.timeline-container ul.tl li {

    padding: 0 0 20px 30px;

}
#premium .health-documents {
    padding-top: 0px !important;
}
.id-documents {
    margin-bottom: 20px !important;
}

#buy-online {
    margin-top: 15px;
}
.timeline-container .MainTitle {
    color: #000;
    font-size:2.5rem !important;
}

.health-documents .MainTitle {
  font-size:2.5rem !important;
            color:#000;
}

}


.health-premuim .title {
    color: #000;
}

.health-premuim .sub-text {
    color: #000;
    padding-bottom: 15px;

}

.health-premuim .subTitle {
    color: #000;
    padding-bottom: 0;
}


.title-container {
    display: flex;
    align-items: center;
    /* Vertically centers the content */
}

.title-icon {
    margin-right: 8px;
    /* Adds spacing between the image and the title */
    width: 24px;
    /* Adjust the size as needed */
    height: 24px;
}

.title-container .bulletIcon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


.health-documents {
	padding-top:0px !important;
}
.health-documents .MainTitle {
    color: #000;
}

.health-documents .sub-text {
        color: #000;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-top: 10px;

}

.health-documents .subTitle {
    color: #000;
    padding-bottom: 0;
}


.health-documents .title-container {
    display: flex;
    align-items: center;
    /* Vertically centers the content */
}

.health-documents .title-container .bulletIcon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.health-documents .checkMark {
    width: 18px;
    margin-right: 8px;
    /* Adds spacing between the image and the title */
}


.id-documents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 16px;
    /* Adjusts spacing between items */
    max-width: 600px;
    /* Optional: sets max width of the container */
}

.title-container {
    display: flex;
    align-items: center;
    /* Aligns image and text vertically */
}

.checkMark {
    width: 18px;
    margin-right: 8px;
    height: 18px;
}

.id-documents {
    margin-bottom: 25px !important;
      margin-left: 30px !important;
}


#typesofInsurance {
    margin-top: 40px !important;
}

.typesofInsurance .title {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
}

.typesofInsurance .sub-text {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
}



.typesofInsurance .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.typesofInsurance .category-box {
    margin-top: 20px;
}

.typesofInsurance .category-btn {
    border: 2px solid #9CA1AA;
    border-radius: 25px;
    padding: 8px 20px;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
    min-width: 125px;
    background-color: #fff;

}



.typesofInsurance .category-btn.active {
    background-color: #FF9B41;
    /* Active background color */
    color: white;
    /* Active text color */
    border: 1px solid #FF9B41;
    /* Optional: Same as background color */
}

.typesofInsurance .card {
    flex: 1 1 calc(100% - 15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    border: 1px solid #9CA1AA;
    padding-bottom: 20px;

}

.typesofInsurance .card-body {
    padding: 15px 15px;
}

.typesofInsurance .btn-group {
    float: right;
}

.typesofInsurance .dashed-border {
    border-bottom: 1px dashed #9CA1AA;
    margin-bottom: 20px;
    margin-top: 20px;
}

.typesofInsurance ul.card-text {
    margin-left: 30px;
}

.typesofInsurance li {
    list-style-type: disc;
}


.typesofInsurance .card-header.bg-warning.text-white {

    border-bottom-right-radius: 22px !important;
    border: none;
    background-color: #5CD4FF;
    border-top-left-radius: 24px;
    color: #fff;
    font-size: 1.5rem;
    max-width: 150px;
    padding: 10px;
    text-align: center;
}

.typesofInsurance .card-header.bg-warning.text-white.recommended {

    border-bottom-right-radius: 22px !important;
    border: none;
    background-color: #AF52DE;
    border-top-left-radius: 24px;
    color: #fff;
    font-size: 1.5rem;
    max-width: 150px;
    padding: 10px;
    text-align: center;
}

.typesofInsurance .card-container .card-title {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
}


.typesofInsurance .card-container .card-text {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
}

@media (max-width: 768px) {
    .typesofInsurance .card {
        flex: 1 1 calc(50% - 15px);
        /* Two cards per row on smaller screens */
    }

    .typesofInsurance .category-btn {
        border: 2px solid #9ca1aa;
        border-radius: 25px;
        padding: 8px 20px;
        margin-right: 15px;
        font-size: 14px;
        cursor: pointer;
        width: auto;
        background-color: #fff;
        margin-bottom: 15px;
    }

    .typesofInsurance .btn-group {
        display: flex !important;
        justify-content: center !important;
        align-items: center;
    }

    a.btn.btn-link.KnowMore {
        margin-right: 15px;
    }

}



#our-plans {

    margin-top: 30px;
}

#coverage {
    margin-top: 30px;
}

.HInsuranceCoverage .Maintitle {
    color: #000;
    margin-bottom: 10px;
}


.HInsuranceCoverage .card-title {
    color: #000;
}


@media (max-width: 480px) {
    .typesofInsurance .card {
        flex: 1 1 100%;
        /* One card per row on extra small screens */
    }

}
.why-buy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px !important;
    float: left;
    width: 100%;
     margin-to: 20px !important;
}

.whybytitle {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
        padding-bottom: 40px;
}

.why-buy-section .mainTitle {
    font-size: 2.5rem;
    color: #000;
    font-weight: 600;
}

.why-buy-section .sub-text {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
}

.why-buy-section .whybuyvideoimage {
    width: 617px;
}

.text-content {
    width: 50%;
    padding-top: 20px;
}

.video-content {
    width: 48%;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0056b3;
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup video {
    width: 80%;
    max-width: 800px;
}

@media (max-width: 768px) {
    .why-buy-section {
        flex-direction: column;
    }

    .text-content,
    .video-content {
        width: 100%;
            margin-top: 20px;
    }

.whybytitle {
   
    padding-bottom: 15px;
}


}

.buynowtable {
    margin-top: 20px !important;
}
.buynowtable .typeOfplanTable {
    width: 100%;
    border: 1px solid #cbcbcb;
}

.buynowtable .tableOuter table td,
.tableOuter table th {
    border: 1px solid #cbcbcb;
    color: #000;
}


.insurance-video-content {

    height: 300px !important;
    max-width: 600px !important;
    width: 100%;
    padding: 20px 20px;
}


.modal-container {

    margin: 10% !important;
}


@media screen and (max-width: 768px) { 

.modal-container {
background: transparent !important;
    margin: 3%;
}
}

    .CashlessNetwork .tableOuter {
border-radius:13px;
}







/* <!-- Health Insurance Myths css start --> */

.myth .mainTitle {
    color: #000;
}

.myth .sub-text {
    color: #000;
}

.myth .accordion {
    width: 100%;
    max-width: 100%;
}

.myth .accordion-item {
    background-color: #FFEDD9;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.myth .accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    background-color: #FFEDD9;
    color: #000;
    transition: background-color 0.3s ease;
}

.myth .accordion-label:hover {
    background-color: #FEE2C1;
}

.myth .accordion-label::after {
    content: "";
    width: 24px;
    /* Adjust according to image size */
    height: 24px;
    /* Adjust according to image size */
    background-image: url('../../../../../content/dam/bagic/health-insurance-new/iconamoon_arrow-up-2.png');
    /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* Rotate icon when checked */
.myth input[type="checkbox"]:checked+.accordion-label::after {
    transform: rotate(90deg);
    /* Adjust rotation as needed */
}

.myth .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background-color: #FFF6EB;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color:#000;
}

/* Checkbox styling */
.myth input[type="checkbox"] {
    display: none;
}

/* Show content when checkbox is checked */
.myth input[type="checkbox"]:checked~.accordion-content {
    max-height: 200px;
    /* Adjust height as needed */
    padding: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
  .myth .accordion-label {
        font-size: 16px;
    }

  .myth .accordion-content {
        font-size: 14px;
}

.myth  .accordion-label span {
    width: 95% !important;
}

}

/* <!-- Health Insurance Myths css end --> */




@font-face {
    font-family: 'AllianzB';
    src: url("../common/content/dam/bagic/fonts/Allianz Sans Bold.eot");
    src: url("../common/content/dam/bagic/fonts/Allianz Sans Bold.eot?#iefix") format("embedded-opentype"), url("../common/content/dam/bagic/fonts/Allianz Sans Bold.woff2") format("woff2"), url("../common/content/dam/bagic/fonts/Allianz Sans Bold.woff") format("woff"), url("../common/content/dam/bagic/fonts/Allianz Sans Bold.svg#Allianz Sans Bold") format("svg");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0-10FFFF;
}

@font-face {
    font-family: 'AllianzSans';
    src: url("../common/content/dam/bagic/fonts/Allianz-Sans.eot");
    src: url("../common/content/dam/bagic/fonts/Allianz-Sans.eot?#iefix") format("embedded-opentype"), url("../common/content/dam/bagic/fonts/Allianz-Sans.woff2") format("woff2"), url("../common/content/dam/bagic/fonts/Allianz-Sans.woff") format("woff"), url("../common/content/dam/bagic/fonts/Allianz-Sans.svg#Rubik Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
}

@font-face {
    font-family: 'AllianzSansLight';
    src: url("../common/content/dam/bagic/fonts/Allianz-Sans-Light.eot");
    src: url("../common/content/dam/bagic/fonts/Allianz-Sans-Light.eot?#iefix") format("embedded-opentype"), url("../common/content/dam/bagic/fonts/Allianz-Sans-Light.woff2") format("woff2"), url("../common/content/dam/bagic/fonts/Allianz-Sans-Light.woff") format("woff"), url("../common/content/dam/bagic/fonts/Allianz-Sans-Light.svg#Rubik Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
}

body,
p,
input,
button,
textarea {
    font-family: "AllianzSans";
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-family: "AllianzSans";
}


a,
button,
input,
label,
li,
p,
textarea {
    font-size: 1.8rem;
    line-height: 1.4;
}

h2 {
    font-size: 3rem !important;
}

h3 {
    font-size: 2rem;
}

/************************* Leadform CSS Start here ****************************/

#HealthLeadform {
    width: 100%;
    float: left;
    background-color: #F5F9FF !important;
    padding-top: 20px !important;
    padding: 0px !important;
}

#HealthLeadform .healthBannerSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#HealthLeadform .mainTitle {
    font-size: 4rem;
    color: #000000;
    font-weight: 400;
    font-family: AllianzB;
    padding-top: 20px !important;
}

#HealthLeadform .right-content .subText {
    font-size: 1.5rem;
    color: #000 !important;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "AllianzSans";
}

#HealthLeadform .form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#HealthLeadform .form-container h2 {
    background-color: #0872B9;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: -20px;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 500;
}

#HealthLeadform .get-quote-btn {
    background-color: #FF9B41;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    font-size: 1.8rem;
}

#HealthLeadform .get-quote-btn:hover {
    background-color: #FF9B41;
}

#HealthLeadform .checkbox-container {
    display: flex;
    align-items: center;
}

#HealthLeadform .checkbox-container label {
    margin-left: 5px;
}

#HealthLeadform .feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#HealthLeadform .feature i {
    font-size: 24px;
    margin-right: 10px;
    color: #007bff;
}

#HealthLeadform .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#HealthLeadform .col {
    width: 48%;
}

#HealthLeadform .Defaulttitle {
    font-size: 2.2rem;
    color: #545454;
    font-weight: 600;
}

#HealthLeadform .right-content .subText {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
}

@media (max-width: 768px) {
    #HealthLeadform .col {
        width: 100%;
        margin-bottom: 20px;
    }

    #HealthLeadform .right-content {
        padding-left: 0;
    }
}

/* Form Input Styles */
#HealthLeadform label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #787878;
    margin-top: 10px;
}

#HealthLeadform input[type="text"],
#HealthLeadform select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #E4E4E4;
    border-radius: 5px;
    font-size: 14px;
}

/* Checkbox Container */
#HealthLeadform .checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

#HealthLeadform .checkbox-container label {
    margin-left: 8px;
    font-size: 14px;
}

/* Get Quote Button */
#HealthLeadform .get-quote-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.8rem;
}

#HealthLeadform .get-quote-btn:hover {
    background-color: #e67e22;
}

/* Media Queries */
@media (max-width: 768px) {

    #HealthLeadform .mainTitle {
        font-size: 3.5rem;
        margin-top: 10px;
    }

    #HealthLeadform .form-container {
        padding: 15px;
    }

    #HealthLeadform h2 {
        font-size: 18px;
        padding: 10px;
    }

    #HealthLeadform .get-quote-btn {
        font-size: 14px;
        padding: 10px;
    }

    #HealthLeadform .healthBannerSection {
        display: block;
    }

    .banner-quote-btn {
        margin-right: 0%;
        padding-top: 10px !important;
    }

    #HealthLeadform .Defaulttitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    #HealthLeadform h2 {
        font-size: 16px;
        padding: 8px;
    }

    #HealthLeadform input[type="text"],
    #HealthLeadform select {
        font-size: 12px;
    }

    #HealthLeadform .get-quote-btn {
        font-size: 12px;
        padding: 8px;
    }
}

#HealthLeadform {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f8f9fa;
}

/* Container for the cards */
#HealthLeadform .cards-container {
    display: flex;
    flex-wrap: initial;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
}

.banner-quote-btn {
    margin-right: 30%;
    padding-top: 110px;
}

/* Individual card styles */
#HealthLeadform .card {
    background-color: transparent;
    border-radius: 10px;
    padding: 16px;
    box-shadow: none;
    display: flex;
    align-items: center;
    max-width: 48%;
    flex: 1 1 48%;
    box-sizing: border-box;
}

#HealthLeadform .card-icon {
    width: 20%;
    margin-right: 15px;
}

#HealthLeadform .card .card-title {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

#HealthLeadform .card .card-text {
    font-size: 1.5rem;
    color: #000;
    font-weight: 400;
}

#HealthLeadform .card-content {
    font-size: 16px;
    color: #333;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    #HealthLeadform .cards-container {
        flex-direction: column;
    }

    #HealthLeadform .card {
        max-width: 100%;
    }

    #HealthLeadform .cards-container {
        gap: 0px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #HealthLeadform .card {
        padding: 5px 10px;

    }

    .banner-quote-btn {
        text-align: center;
        width: 100%;
    }

    .secureIcon {
        width: 80%;
    }

    #HealthLeadform .card .card-title {
        font-size: 14px;
        padding-bottom: 0px;
    }

    #HealthLeadform .card .card-text {
        font-size: 14px;
        padding-bottom: 0px;
    }
}

@media (max-width: 480px) {
    #HealthLeadform .card-icon {
        font-size: 30px;
    }

    #HealthLeadform .card-content {
        font-size: 14px;
    }
}

#HealthLeadform input#privacyPolicy {
    opacity: 1;
    margin-bottom: 5px;
}

#HealthLeadform input#keepPosted {
    opacity: 1;
    margin-bottom: 5px;
}

/* Container for the select box */
#HealthLeadform .custom-select-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Style the select box */
#HealthLeadform .custom-select-container select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    /* Hide default dropdown arrow */
    background: white;
    background-image: url('../../../../../content/dam/bagic/health-insurance-new/iconamoon_arrow-up-2.png');
    /* Example arrow icon */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    /* Adjust size of the arrow */
    cursor: pointer;
}

/* Make it responsive */
@media (max-width: 480px) {
    #HealthLeadform .custom-select-container select {
        font-size: 14px;
    }

}

.health-plans {
    margin-top: 20px !important;
}
.health-plans .title{
    color: #000;
}

.health-plans .subTitle{
    color: #000;
    margin-bottom: 20px;
}
  /* Container Styling */
  .health-plans {
    display: flex;
    flex-wrap: wrap;
margin-top: 20px;
    
}

/* Card Styling */
.health-plans .card {
    background-color: #F6FBFF;
    border-radius: 19px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 calc(100% - 40px); /* Full width on small screens */
    max-width: 100%;
    transition: transform 0.3s;
    border: none;
    margin-bottom: 20px;
}

/* .health-plans .card:hover {
    transform: translateY(-5px);
} */

.health-plans .card h3 {
    color: #000;
    margin-bottom: 0;
}

.health-plans  .card p {
    color: #000000;
    margin-bottom: 8px;
}

.health-plans  .card ul {
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
    color: #000000;
}

.health-plans  .card ul li {
    margin-bottom: 0;
    list-style-type: disc;
    color: #000;
}

.health-plans .healtplans-btn{
  float: right;
}

.health-plans .healtplans-btn .quote{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 40px;
    color: #fff;
    background-color: #FF9B41;
    text-decoration: none;
    border-radius: 29px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #FF9B41;
    font-size: 1.8rem;
    margin-left: 15px;
}

.health-plans .healtplans-btn .knowmore{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 40px;
    color: #FF9B41;
    background-color: transparent;
    text-decoration: none;
    border-radius: 29px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #FF9B41;
    font-size: 1.8rem;
}

.health-plans .title-container {
    display: flex;
    align-items: center; /* Aligns items vertically */
}

.health-plans .healthplansImage {
    margin-right: 8px; /* Adds spacing between image and text */
    width: 48px; /* Adjusts image width */
    height: 48px;
}

/* Responsive Styling */
@media (min-width: 768px) {
    .health-plans  .card {
        flex: 1 1 calc(50% - 40px); /* Two cards per row on medium screens */
        max-width: calc(50% - 40px);
    }


}

@media (min-width: 1024px) {
    .health-plans  .card {
        flex: 1 1 calc(100% - 40px); /* Three cards per row on large screens */
        max-width: calc(100% - 40px);
    }
}





            @media (max-width: 768px) { 
 .healtplans-btn{
    float: none !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

           #our-plans a.knowmore {

    padding: 10px 20px !important;

    font-size: 1.5rem;
}

          #our-plans   .healtplans-btn a.quote {

    padding: 10px 20px !important;


    font-size: 1.5rem;

}
        }


        .HInsuranceCoverage {

}

.HInsuranceCoverage .mainTitle{
    color: #000;
}

.HInsuranceCoverage .mainTitle{
    color: #000;
}
.HInsuranceCoverage .sub-text {
    color: #000;
}

.HInsuranceCoverage .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: #F5FDFF;
    margin-top: 20px;
}

.HInsuranceCoverage .col {
    flex: 1 1 48%;
    max-width: 48%;
}

.HInsuranceCoverage .card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border: none;
    border-radius: 0;
    padding: 16px;
    box-shadow: none;
}


.HInsuranceCoverage .card-image {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 0;
}

.HInsuranceCoverage .card-body {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-left: 15px;
}

.HInsuranceCoverage .card-title {
    font-size: 18px;
    font-weight: bold;
}

.HInsuranceCoverage .card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Media Queries */
@media (max-width: 768px) {
    .HInsuranceCoverage .col {
        flex: 1 1 100%;
        max-width: 100%;
    }


        .health-plans .healtplans-btn .quote {

    margin-left: 5px !important;
}
}

#add-ones .glance-section {
    margin-top: 30px;
}

.glance-section .tableOuter {
    overflow-x: auto;
    margin-bottom: 20px;
}

.glance-section .title {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}



.glance-section .subtext {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}

.glance-section table {
    width: 100%;
    border: 1px solid #cbcbcb;
}

.tableOuter table td {
    background-color: #F6F6F6 !important;
    color: #000;
}

.glance-section table th {
    background-color: #0f5d92 !important;
    color: #fff !important;
}

th,
td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

.glance-section tr {
    border-bottom: 1px solid #cccbcb;
    background-color: #0872B9 !important;
}

.glance-section .tableOuter {
    overflow-x: auto;
    /* Enable horizontal scrolling on small screens */
}

.glance-section .tableOuter table {
    width: 100%;
    border-collapse: collapse;
    /* Combine borders */
}

.glance-section .tableOuter th,
.tableOuter td {
    padding: 12px;
    text-align: left;
    /* Align text to the left */
    border: 1px solid #ddd;
    /* Add border */
}

.glance-section .tableOuter th {
    background-color: #f2f2f2;
    /* Background color for header */
}

.glance-section .subtext {
    font-size: 1.8rem;
    color: #000 !important;
    font-weight: 400;
    margin-bottom: 10px;
}


/* Outer container for the table with horizontal scrolling */
.CashlessNetwork .tableOuter {
    overflow-x: auto;
    margin-bottom: 20px;
}

/* Title styles */
.CashlessNetwork .title {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Subtext styles */
.CashlessNetwork .subtext {
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Table styles */
.CashlessNetwork table {
    width: 100%;
    border: 1px solid #cbcbcb;
}

/* Table cell background color */
.CashlessNetwork .tableOuter table td {
    background-color: #F6F6F6 !important;
    color: #000;
}

/* Table header background and text color */
.CashlessNetwork table th {
    background-color: #0f5d92 !important;
    color: #fff !important;
}

/* Table cell styles */
th,
td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

/* Table header background color */
th {
    background-color: #f4f4f4;
}

/* Row styles */
.CashlessNetwork tr {
    border-bottom: 1px solid #cccbcb;
    background-color: #0872B9 !important;
}

.menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* Style for the menu item */
.menu-item {
    padding: 10px 15px;
    color: #000;
    text-decoration: none !important;
    margin: 5px;
    border: none;
    font-weight: 400;
    position: relative;
    /* Required for positioning the border */
}

.menu-item.active {
    color: #f39c12;
    /* Highlight color */
    border-bottom: 2px solid #f39c12;
    /* Bottom border instead of underline */
    text-decoration: none;
}

.menu-item:hover {
    color: #f39c12;
    /* You can change the hover color */
    border-bottom: 2px solid #f39c12;
    /* Optional: Add hover border */
}

.mobscroll {
    display: none;
    /* Show mobscroll only on mobile */

}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-wrapper {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center items */
    }

    .menu-item {
        width: 20%;
        text-align: center;
        margin: 5px 0;
    }
}

@media screen and (max-width: 480px) {
    .menu-wrapper {
        padding: 5px;
        /* Less padding on smaller screens */
    }

    .menu-item {
        padding: 8px 10px;
        /* Smaller padding for mobile */
    }


}




.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Adjust based on your layout */
    z-index: 1000;
    /* Ensure it stays above other content */
}


.menu-wrapper.custom-carousel {
    overflow-x: auto;
    /* Allow horizontal scrolling */
    white-space: nowrap;
    /* Prevent items from wrapping */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    display: flow-root;
    /* Use flexbox for horizontal layout */
    align-items: center;
    /* Center items vertically */
    text-align: center;
}

.menu-item {
    display: inline-block;
    /* Ensure items are in a row */
    padding: 10px 20px;
    /* Add some padding */
    text-decoration: none;
    /* Remove underline from links */
    color: #000;
    /* Default text color */
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Media query for mobile view */
@media screen and (max-width: 768px) {
    .mobscroll {
        display: block;
        /* Show mobscroll only on mobile */
                text-align: center;
    border-radius: 0 0 12px 11px;
    background: #0071bb;
    color: #fff;

    }

    /* Adjust padding and font size for better usability */
    .menu-item {
        padding: 10px 0px !important;
        /* Smaller padding for mobile */
        font-size: 14px;
        /* Adjust font size */
    }
}

.mobscroll .swipe {
    text-align: center !important;
    padding: 5px;
}


.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.fixedMob {
    position: fixed;
    top: 58px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .menu-item:hover {
        border-bottom: none;
        /* Optional: Disable hover border on mobile */
    }
}


    .section-100 {
padding-top:80px !important;
}
@font-face {
    font-family: 'AllianzB';
    src: url("../../../../../content/dam/bagic/fonts/Allianz Sans Bold.eot");
    src: url("../../../../../content/dam/bagic/fonts/Allianz Sans Bold.eot?#iefix") format("embedded-opentype"), url("../../../../../content/dam/bagic/fonts/Allianz Sans Bold.woff2") format("woff2"), url("../../../../../content/dam/bagic/fonts/Allianz Sans Bold.woff") format("woff"), url("../../../../../content/dam/bagic/fonts/Allianz Sans Bold.svg#Allianz Sans Bold") format("svg");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0-10FFFF;
    font-display: swap;
}

@font-face {
    font-family: 'AllianzSans';
    src: url("../../../../../content/dam/bagic/fonts/Allianz-Sans.eot");
    src: url("../../../../../content/dam/bagic/fonts/Allianz-Sans.eot?#iefix") format("embedded-opentype"), url("../../../../../content/dam/bagic/fonts/Allianz-Sans.woff2") format("woff2"), url("../../../../../content/dam/bagic/fonts/Allianz-Sans.woff") format("woff"), url("../../../../../content/dam/bagic/fonts/Allianz-Sans.svg#Rubik Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
    font-display: swap;
}

@font-face {
    font-family: 'AllianzSansLight';
    src: url("../../../../../content/dam/bagic/fonts/Allianz-Sans-Light.eot");
    src: url("../../../../../content/dam/bagic/fonts/Allianz-Sans-Light.eot?#iefix") format("embedded-opentype"), url("../../../../../content/dam/bagic/fonts/Allianz-Sans-Light.woff2") format("woff2"), url("../../../../../content/dam/bagic/fonts/Allianz-Sans-Light.woff") format("woff"), url("../../../../../content/dam/bagic/fonts/Allianz-Sans-Light.svg#Rubik Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
    font-display: swap;
}

/******** Reset css START *********/
* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: none;
    -webkit-border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.rs {
    font-family: 'rupee_foradian-webfont';
}

body {
    height: 100%;
    font-family: "AllianzSans";
    overflow-x: hidden !important;
    color: #005596;
    overflow-y: hidden !important;
}

a,
a:hover {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

img {
    border: none;
}

html {

    /* height: 100%; */
    width: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
}

input,
textarea {
    outline: none;
}

input {
    appearance: auto;
}

p,
input,
textarea,
button,
a,
li,
label {
    font-size: 1.8rem;
    line-height: 1.4;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section,
summary,
mark {
    float: left;
    width: 100%;
}

h2 {
    font-size: 3.3rem;
}

p,
.ul,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding-bottom: 5px;
}

table,
table tr td,
table tr th {
    border: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: #005596;
    cursor: pointer;
}

.popupSec {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 800px;
    width: 100%;
    height: 350px;
    padding: 40px;
    background: #fff;
    display: none;
    z-index: 99;
    -webkit-box-shadow: 0 5px 20px 5px #333333;
    -moz-box-shadow: 0 5px 20px 5px #333333;
    -ms-box-shadow: 0 5px 20px 5px #333333;
    -o-box-shadow: 0 5px 20px 5px #333333;
    box-shadow: 0 5px 20px 5px #333333;
}

.bodyOverlay {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    display: none;
}

.addOnWrap {
    padding: 100px 0 50px 0;
    position: relative;
    background: #f9f9f9;
    text-align: center;
}

.addOnWrap .container {
    max-width: 1440px;
}

.addOnWrap h2 {
    max-width: 65%;
    float: none;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    font-size: 3rem;
}

.textLink {
    position: relative;
    text-decoration: none;
}

.textLink:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 0px;
    height: 1px;
    margin: 5px 0 0;
    background: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
}
.model-container {
    margin: 0 auto;
    width: 80%;
    position: relative;
}
.textLink:hover:before {
    opacity: 1;
    filter: alpha(opacity=100);
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.fr {
    float: right !important;
}

.fl {
    float: left !important;
}

/******** Reset css END *********/

/********* COMMON CSS START *********/
.splTab .claimLists li {
    color: #000;
}

.claimLists li {
    font-size: 1.6rem;
    padding: 7px 0 7px 20px;
    position: relative;
}

.splTabWrap .splTab .tab-accord-item-details h4 {
    text-align: left;
    font-size: 2.2rem;
}

.dsp-none {
    display: none;
}

.d-flex {
    display: flex;
}

.d-flex-center {
    display: flex;
    align-items: center;
}

.d-flex-all-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.m-0-auto {
    margin: 0 auto;
}

.m-0-auto-abs {
    margin: 0 auto;
    left: 0;
    right: 0;
}

.pointer {
    cursor: pointer;
}

.wh-100 {
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden;
}

.hide-in-desktop {
    display: none;
}

.height-zero {
    height: 0px;
    overflow: hidden;
}

.carrenewfeatures {
    padding: 10px 0 5px;
    width: 100%;
    float: left;
    margin-top: -1%;
    padding: 1%;
    background: #f1f1f1;
    box-shadow: 0 2px 5px #d2d2d2;
    -moz-box-shadow: 0 2px 5px #d2d2d2;
    -webkit-box-shadow: 0 2px 5px #d2d2d2;
    -ms-box-shadow: 0 2px 5px #d2d2d2;
    margin-bottom: 6%;
}

.carrenewmedia .carrenewmedia-left img {
    vertical-align: middle;
    width: 100%;
}

.renewmedia-body .renewmedia-heading {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.renewmedia-body {
    overflow: hidden;
    zoom: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrenewfeatures .refeatureWrapp .carrenewmedia .carrenewmedia-left {
    padding: 8px;
    height: auto;
    margin: 0;
    display: table-cell;
    vertical-align: top;
    box-sizing: border-box;
}

.carrenewfeatures .refeatureWrapp {
    border-right: 1px solid #ccc;
    width: 25%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    zoom: 90%;
}

.carrenewfeatures .refeatureWrapp .carrenewmedia:first-child {
    margin-top: 0;
}

.carrenewfeatures .refeatureWrapp .carrenewmedia {
    overflow: hidden;
    zoom: 1;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (min-width:390px) {

    /* Your Styles... */
    body {
        height: 100%;
        font-family: "AllianzSans";
        overflow-x: hidden;
        color: #005596;
        overflow-y: hidden;
    }

    .datepickerSetRenewal {
        display: block;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        min-height: 1.2em;
    }

    .carrenewfeatures .refeatureWrapp {
        padding-right: 2px !important;
        padding-left: 5px !important;
        text-align: center !important;
    }

    .renewmedia-body .renewmedia-heading {
        font-size: 12px;
    }

}

@media only screen and (max-width:768px) {
    .hide-in-mobile {
        display: none;
    }

    /********requestcallback Mobile CSS START  *********/
    .communicationSec img {
        max-width: 40px;
    }

    .communicationSec .callBack p {
        display: none;
    }

    /********requestcallback Mobile CSS START  *********/
}

/********* Modal CSS START *********/
.modal-bg-overlay {
    background: rgb(0 0 0 / 50%);
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: auto;
}

.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;    /* height: 100% !important; --Amruta */
    margin: 1%;
}

.modal-close-icon {
    width: 20px;
    position: absolute;
    height: 20px;
    right: 12px;
    top: 12px;
    cursor: pointer;
    z-index: 9999;
}

/***** Modal CSS END *****/

/********* COMMON CSS END *********/

/********* Header CSS START *********/
.mainHeader {
    background: #0071bb;
    position: relative;    /* padding: 0 0 10px; */
    padding: 0;
}

header.mainHeader .logoSec {
    margin-top: 10px;
    margin-left: -17px;
    float: left;
    width: 17% !important;
}

.humbugMenu {
    width: 25px;
    position: absolute;
    right: 20px;
    bottom: 22px;
    display: none;
}

.humbugMenu span {
    display: block;
    background: #fff;
    height: 3px;
    width: 100%;
    margin-bottom: 5px;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}

.mainHeader nav {
    margin-top: 25px;
    margin-bottom: 25px;
    float: left;
}

header.mainHeader nav ul {
    margin-left: 18px;
}

header.mainHeader .container nav>ul>li {
    margin: 0 9px;    /* min-width: 62px; */
}

.mainHeader nav ul li {
    display: inline-block;
}

.mainHeader nav ul li a {
    font-size: 1.8rem;
    color: #fff;
}

.mainHeader nav ul li:hover a {
    color: #ff9b41;
}

.mainHeader nav ul .sumMenuSec .container {
    border: 2px solid #eee;
    border-top: none;
}

.mainHeader .sumMenuSec .container {
    position: relative;
}

.mainHeader .sumMenuSec .closeBtn {
    position: absolute;
    right: 5%;
    top: 50px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat !important;
    background-position: -280px -88px !important;
}

.mainHeader .sumMenuSec .container>ul>li {
    vertical-align: top;
    width: 33%;
    margin: 0;
    margin-top: 30px;
}

.mainHeader .sumMenuSec .container>ul>li .iconSec {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    text-align: right;
    width: 110px;
}

.mainHeader .sumMenuSec .container>ul>li .iconSec {
    width: 85px;
}

.mainHeader .sumMenuSec .container>ul>li .iconSec p {
    font-size: 2.0rem;
    color: #005596;
    font-family: "AllianzB";
    padding-top: 3px;
    text-align: center;
}

.mainHeader .sumMenuSec .container>ul>li .iconSec .animIconSec .imgBox {
    margin-top: 0;
    margin-right: 10px;
}

.mainHeader .sumMenuSec .container>ul>li .links {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 152px);
}

.mainHeader .sumMenuSec .container>ul>li .links ul li {
    display: block;
    margin: 0;
    margin-bottom: 4px;
}

.mainHeader .sumMenuSec .container>ul>li .links ul li a {
    position: relative;
    width: auto;
    display: inline-block;
    color: #0072bc;
    font-size: 1.7rem;
    font-family: "AllianzSansLight";
}

.mainHeader .sumMenuSec .container>ul>li .links ul li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #0072bc;
    left: 0;
    bottom: -2px;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}

.mainHeader nav .sumMenuSec ul li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #005596;
    left: 0;
    bottom: -2px;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}

.mainHeader nav .sumMenuSec ul li a:hover:before,
.mainHeader .sumMenuSec .container>ul>li .links ul li a:hover:before {
    width: 100%;
    left: 0;
    bottom: -2px;
    height: 1px;
}

.govtScheme {
    position: relative;
}

.govtSchemeSub:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    left: 0;
    right: 0;
    margin: auto;
    top: -10px;
}

.govtSchemeSub {
    position: absolute;
    background-color: #ffffff;
    width: 150%;
    left: -40px;
    right: -10px;
    margin-top: 10px;
    z-index: 99;
    border: 1px #cccccc solid;
}

.mainHeader nav ul li.govtScheme .govtSchemeSub a:hover {
    color: #ff9b41;
}

.mainHeader nav ul li.govtScheme .govtSchemeSub a {
    display: block;
    margin: 10px 0;
    color: #005596;
    font-size: 1.4rem;
    padding: 0px 10px;
}

.app_do_mo {
    padding: 4px 23px;
    font-weight: bold;
    display: none;
}

.app_do_mo img {
    padding-right: 11px;
}

.mainHeader nav .contactSec {
    display: none;
}

.mainHeader .rightSec {
    text-align: right;
    float: right;
    width: auto;
}

.mainHeader .rightSec .langSec.customSelect {
    display: none;
    cursor: pointer;
    min-width: 70px;
}

.mainHeader .rightSec .langSec.customSelect .selectedText {
    font-size: 1.6rem;
    color: #8de2ff;
}

.customSelect select {
    opacity: 0;
    z-index: -11;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mainHeader .rightSec .rightBottom {
    position: relative;
    margin-top: 23px;
}

.searchSec {
    display: none;
    float: left;
    height: 20px;
    width: 20px;
    margin: 7px 0px 0 14px;
    -webkit-transition: 1s all;
    -ms-transition: 1s all;
    -moz-transition: 1s all;
}

.searchSec .inputbox {
    display: none;
    z-index: -1;
    left: -700px;
    top: 5px;
    width: 726px;
    padding-bottom: 5px;
    float: left;
    padding: 5px 10px 4px 20px;
    position: absolute;
    padding-right: 35px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    background: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
    transition: 0.5s ease all;
}

.searchSec .inputbox input {
    width: 100%;
    float: left;
    background: transparent;
    color: #0071bb;
    padding-right: 10px;
}

.searchSec .inputbox .closeBtn {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    width: 34px;
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
    background: #f89c30;
    cursor: pointer;
    z-index: 10;
}

.mainHeader .rightSec .rightBottom .searchSec>a {
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -35px -58px;
    width: 26px;
    height: 26px;
    display: block;
}

.searchSec a {
    cursor: pointer;
    left: -15px;
    top: 0px;
    z-index: 10;
    float: right;
    position: relative;
}

.notificationWrap {
    display: none;
    width: auto;
    position: relative;
    float: left;
    right: auto;
    top: auto;
}

.mainHeader .rightSec .notificationWrap .notification {
    cursor: pointer;
}

.mainHeader .rightSec .notification span {
    font-size: 1.1rem;
    color: #fff;
    background: #bd1f0a;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    text-align: center;
    display: block;
    padding: 2px;
    line-height: 12px;
    position: absolute;
    top: -6px;
    right: -2px;
}

.dropdown-menu-notify {
    display: none;
    position: absolute;
    width: 220px;
    z-index: 1000;
    margin: 2px 0 0;
    min-width: 160px;
    right: 0%;
    top: 100%;
    margin-top: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    text-align: left;
}

.dropdown-menu-notify ul {
    width: 100%;
    float: left;
}

.dropdown-menu-notify ul li {
    width: 100%;
    float: left;
    border-bottom: 1px solid #ebebeb;
    padding: 10px;
    position: relative;
}

.dropdown-menu-notify ul li:last-child {
    border-bottom: 0;
}

.formaction {
    position: relative;
    float: left;
    transition: 1s all;
    -webkit-transition: 1s all;
    -ms-transition: 1s all;
    -moz-transition: 1s all;
    z-index: 11;
}

.app_do {
    width: 151px;
    margin-left: 7px;
}

.mainHeader .rightSec .rightBottom .app_do {
    display: inline-block;
    vertical-align: middle;
}

.mainHeader .rightSec .rightBottom .app_do a.btn {
    border: 0px;
    padding: 0 !important;
    background: none !important;
    height: 30px;
}

.mainHeader .rightSec .rightBottom .app_do a {
    padding: 0 !important;
    background: none !important;
    height: 30px;
    width: 30px;
}

.app_do a {
    float: left;
    width: 100% !important;
    text-align: left;
}

.mainHeader .rightSec .rightBottom .app_do .btn:before {
    background: none !important;
}

.nonTouch .btn:before {
    content: '';
    z-index: -1;
    background: white;
    position: absolute;
    top: 50%;
    right: 100%;
    margin: -15px 0 0 1px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    -moz-transform: scale3d(1, 2, 1);
    -ms-transform: scale3d(1, 2, 1);
    -o-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}

.app_do img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.app_do span {
    color: #fff;
    font-size: 1.4rem !important;
}

.app_do span:hover {
    text-decoration: underline;
}

.mainHeader .rightSec .rightBottom .app_do {
    display: inline-block;
    vertical-align: middle;
}

.search {
    margin-right: 10px;
    display: inline-block;
}

.mainHeader .rightSec .rightBottom .claimAssistance {
    display: inline-block;
}

.claimAssistance {
    position: relative;
}

.mainHeader .rightSec .rightBottom .getInTouch a,
.mainHeader .rightSec .rightBottom .claimAssistance a {
    height: 25px;
    width: 25px;
    display: inline-block;
}

.mainHeader .rightSec .rightBottom .claim-dropdown-menu {
    top: 58px;
}

.claim-dropdown-menu {
    position: absolute;
    background: #ffffff;
    right: 0;
    width: 200px;
    margin-top: 10px;
    border: 1px #cccccc solid;
}

.claim-dropdown-menu li {
    border-bottom: 1px #cccccc solid;
}

.claim-dropdown-menu p {
    text-align: center !important;
    padding: 5px;
}

.mainHeader .rightSec .rightBottom .claim-dropdown-menu p strong {
    font-size: 1.5rem;
}

.claim-dropdown-menu p span {
    display: block;
    font-size: 1.4rem;
    color: #0071bb;
}

.mainHeader .rightSec .rightBottom .claimAssistance .claim-dropdown-menu a {
    width: 100%;
}

.claim-dropdown-menu li:last-child {
    border-bottom: none;
}

.claim-dropdown-menu p a {
    display: block !important;
    font-size: 1.6rem;
    color: #005596;
}

.getInTouch {
    display: none !important;
}

.mainHeader .rightSec .rightBottom .getInTouch .dropdown-menu {
    top: 53px;
}

.dropdown-menu {
    position: absolute;
    width: 270px;
    z-index: 1000;
    margin: 2px 0 0;
    min-width: 160px;
    right: 0%;
    top: 100%;
    margin-top: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    text-align: left;
    display: none;
}

.dropdown-menu ul {
    width: 100%;
    float: left;
}

.dropdown-menu ul li {
    width: 100%;
    float: left;
    border-bottom: 1px solid #ebebeb;
    padding: 3px 12px;
    position: relative;
}

.dropdown-menu ul li .icon {
    padding: 5px 0 5px 45px;
    position: relative;
}

.dropdown-menu ul li p {
    font-size: 1.8rem;
    color: #4f4f4f;
}

.dropdown-menu ul li p span {
    color: #0071bb;
}

.mainHeader .dropdown-menu ul li a[href^="tel:"] {
    width: auto !important;
    height: auto !important;
}

.dropdown-menu ul li a[href^="tel:"] {
    pointer-events: none !important;
    cursor: default;
    text-decoration: none;
}

.mainHeader .rightSec .ph-numbers-header {
    display: block;
    float: right;
    position: absolute;
    top: 60px;
    right: 60px;
}

.ph-numbers-header .sales-icon {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.ph-numbers-header .sales-icon a {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    text-decoration: none !important;
}

.mainHeader .container:after {
    content: "";
    clear: both;
    display: block;
}

.popupSec.searchPopup {
    height: auto;
}

.search-popup .model-container {
    background: #ffffff;
    max-width: 800px;
    padding: 40px;
    -webkit-box-shadow: 0 5px 20px 5px #333333;
    -moz-box-shadow: 0 5px 20px 5px #333333;
    -ms-box-shadow: 0 5px 20px 5px #333333;
    -o-box-shadow: 0 5px 20px 5px #333333;
    box-shadow: 0 5px 20px 5px #333333;
    margin: 0 auto;
    position: relative;
}

.searchinput {
    position: relative;
}

.inpusearch {
    font-size: 16px;
    border: 1px solid #c3c3c3;
    border-radius: 8px;
    color: #c4c4c4;
    width: 100%;
    padding: 6px 20px;
    color: #005596;
}

.searchinput img {
    background: #f89c30;
    position: absolute;
    right: 1px;
    top: 1px;
    padding: 7px 24px;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
}

.searchresult {
    box-shadow: 0 0 10px 2px #d3d3d3;
    padding: 10px 0px;
    width: 90%;
    background: #fff;
    position: absolute;
    display: none;
    height: 200px;
    overflow: scroll;
    height: 226px;
    overflow-x: hidden;
}

.model-container .keyword {
    margin-top: 38px;
}

.model-container .keyword p {
    display: inline-block;
    width: auto;
    margin-right: 6px;
    font-size: 15px;
    padding: 4px 20px;
    border-radius: 6px;
    border: 1px solid #fab25e;
    box-shadow: 0 0 10px 2px #d3d3d3;
    color: #f89c30;
    margin-bottom: 18px;
    cursor: pointer;
}

.model-container .keyword .keywordHeader {
    font-size: 2.0rem;
    font-weight: normal;
    margin-bottom: 30px;
    cursor: default;
    width: 100%;
    border: 0px solid #fab25e;
    box-shadow: none;
    margin-right: 0px;
    padding: 0px;
    color: #005596;
}

/********* Header CSS END *********/

/********* Breadcrumb CSS START *********/
.bredcrumbs {
    padding-top: 18px;
    clear: both;
}

.bredcrumbs ul li {
    font-size: 1.4rem;
    font-family: "AllianzSansLight";
    color: black;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    position: relative;
}

.bredcrumbs ul li:before {
    content: '';
    position: absolute;
    right: -12px;
    top: 6px;
    border: solid black;
    border-width: 0 1px 1px 0;
    border-color: #757575;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    width: 6px;
    height: 6px;
}

.bredcrumbs ul li a {
    font-size: 1.4rem;
    font-family: "AllianzSansLight";
    color: black;
}

.bredcrumbs ul li a:hover {
    text-decoration: underline;
}

/********* Breadcrumb CSS END *********/

/******** Insurance banner CSS Start  *********/
.bannerWrap {
    padding: 30px 0 70px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1440px;
}

.bannerWrap .bannerHeads {
    width: 100%;
    float: left;
}

.bannerWrap.headsDetailPage .bannerHeads h1 {
    padding-bottom: 40px;
    color: #ff9b41;
    font-family: "AllianzB";
    font-size: 4rem;
    text-align: center;
    font-weight: normal;
    display: inline-block;
    width: 100%;
}

.bannerWrap .bannerWrapLeft {
    float: left;
    width: 35%;
}

.bannerImgWrap.bannerActive .bannerCircle {

    /* -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease; */
}

.bannerImgWrap .bannerCircle {
    background: #0071bb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 435px;
    height: 435px;
    position: relative;    /*  -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); */
}

.bannerImgWrap .bannerCircle.fourWheelerBanner .bannerCircleText {
    font-size: 4rem;
}

.bannerImgWrap.bannerActive .bannerCircleText {

    /* -webkit-transition: all 2.5s ease;
    -moz-transition: all 2.5s ease;
    -ms-transition: all 2.5s ease;
    -o-transition: all 2.5s ease;
    transition: all 2.5s ease; */
    opacity: 1;
    filter: alpha(opacity=100);    /* -webkit-transition-delay: 2s;
    transition-delay: 2s;*/
}

.bannerImgWrap .bannerCircleText {
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: "AllianzB";
    font-size: 2.6rem;
    opacity: 0;
    filter: alpha(opacity=0);
    position: relative;
    top: 17%;
    padding: 0% 20%;
}

.bannerImgWrap .bannerCircle.fourWheelerBanner .bannerCircleImg {
    top: 10%;
}

.bannerImgWrap.bannerActive .bannerCircleImg {

    /* -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease; */
    opacity: 1;
    filter: alpha(opacity=100);    /* -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;*/
}

.bannerImgWrap .bannerCircleImg {
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    position: relative;
    top: 25%;
    display: block;
}

.bannerImgWrap .bannerCircleImg img {
    width: auto;
    max-width: 100%;
}

img {
    border: none;
    max-width: 100%;
    vertical-align: top;
    border: none;
}

.bannerWrap .bannerWrapCenter {
    float: left;
    width: 35%;
}

.bannerWrap .bannerWrapCenter .buyWheelForm {
    width: 100%;
    float: left;
}

.bannerWrap .bannerWrapCenter .buyWheelForm {
    zoom: 90%;
}

.bannerWrap.headsDetailPage .bannerWrapCenter .buyWheelForm p {
    padding: 70px 70px 0px;
}

.bannerWrap .bannerWrapCenter .buyWheelForm p {
    text-align: center;
    color: #0072bc;
    font-family: "AllianzB";
    font-size: 2.6rem;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .vehicleNumberInput {
    max-width: 270px;
    margin: 0px auto 20px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #0072bc;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .vehicleNumberInput,
.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput {
    position: relative;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .vehicleNumberInput input {
    padding: 0px 10px;
    text-align: center;
    width: 100%;
    font-size: 2.1rem;
    color: #757575;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput .errorMsg,
.bannerWrap .bannerWrapCenter .buyWheelForm .vehicleNumberInput .errorMsg {
    font-size: 1.4rem;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput .errorMsg,
.bannerWrap .bannerWrapCenter .buyWheelForm .vehicleNumberInput .errorMsg {
    z-index: 1;
    position: absolute;
    left: 50%;
    bottom: -34px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bannerWrap .bannerWrapCenter .buyWheelForm .registrationInput .errorMsg {
    margin-bottom: 3px !important;
}

.buyWheelForm .errorMsg {
    padding: 2px 0 0px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.errorMsg,
.errorMsg1 {
    color: red;
    font-family: "AllianzSans";
    font-size: 1.2rem;
    padding: 5px 0 15px;
    display: none;
    width: 100%;
    float: left;
}

.otphide {
    display: none;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .mobNumberInput {
    max-width: 270px;
    margin: 0px auto 20px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #0072bc;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .registrationInput {
    max-width: 270px;
    margin: 0px auto 20px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #0072bc;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .mobNumberInput input {
    padding: 2px;
    text-align: center;
    width: 100%;
    font-size: 2.1rem;
    color: #757575;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .registrationInput input {
    padding: 2px;
    text-align: center;
    width: 100%;
    font-size: 2.1rem;
    color: #757575;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .protectWheelGo {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 2%;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .protectWheelGo .btn {
    width: 100%;
    max-width: 270px;
    display: block;
    margin: 0 auto;
    font-size: 2.4rem;
    font-family: 'AllianzB';
}

.btnSec .btn {
    padding: 8px 24px 10px !important;
}

.btn {
    background: #f89c30;
    padding: 8px 30px 10px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    color: white;
    font-size: 1.8rem;
    display: inline-block;
    clear: both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: 1px solid #f89c30;
    font-family: "AllianzSans";
    letter-spacing: 1px;
}

.btn:before {
    content: '';
    z-index: -1;
    background: white;
    position: absolute;
    top: 50%;
    right: 100%;
    margin: -15px 0 0 1px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    -moz-transform: scale3d(1, 2, 1);
    -ms-transform: scale3d(1, 2, 1);
    -o-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}

.btn:hover:before {
    -webkit-transform: scale3d(10, 9, 1);
    -moz-transform: scale3d(10, 9, 1);
    -ms-transform: scale3d(10, 9, 1);
    -o-transform: scale3d(10, 9, 1);
    transform: scale3d(10, 9, 1);
}

.btn:hover {
    color: #f89c30;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap {
    width: 100%;
    float: left;
    padding-top: 25px;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap {
    width: 100%;
    float: left;
    padding-top: 25px;
    text-align: center;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retriveQuote,
.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retrieveSubmitBtn {
    text-align: center;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    color: #005596;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a {
    margin: 0 15px;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retriveQuote:before,
.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retrieveSubmitBtn a.forgotCarNumber:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 1px;
    margin: 5px 0 0;
    background: #005596;
    left: 0px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.letsStartLinkWrap a.forgotCarNumber:after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 1px;
    height: 20px;
    background: #005596;
    right: -17px;
    top: 2px;
}

.letsStartLinkWrap a.forgotCarNumber:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 1px;
    margin: 5px 0 0;
    background: #005596;
    left: 0px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberWrap {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput {
    max-width: 270px;
    margin: 20px auto 30px;
    text-align: center;
    width: 100%;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput input {
    width: 100%;
    text-align: center;
    padding: 7px;
    color: #757575;
    border-bottom: 1px solid #0072bc;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput .refWrapper .errorMsg {
    position: static;
    -webkit-transform: none;
    transform: none;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .refNumberInput input {
    width: 100%;
    text-align: center;
    padding: 7px;
    color: #757575;
    border-bottom: 1px solid #0072bc;
}

.btnWrapper {
    width: 100%;
    float: left;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retriveQuote,
.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retrieveSubmitBtn {
    text-align: center;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    color: #005596;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retriveQuote:hover:before,
.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retrieveSubmitBtn:hover:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0px;
    height: 1px;
    margin: 5px 0 0;
    background: #005596;
    left: 0px;
}

/* Whats in it START */
.bannerWrap .bannerWrapRight {
    float: left;
    width: 30%;
}

.bannerWrap .bannerWrapRight p {
    text-align: center;
    color: #005596;
}

.bannerWrap .bannerWrapRight>p {
    font-size: 2.6rem;
}

.wit-feature-div {
    border-radius: 10px;    /* background: rgb(210 212 212); */
    color: #ffffff;
    margin-bottom: 10px;
    border-radius: 10px 10px 10px 10px;
    border: solid 1px #d4d4d4;
}

.wit-text-div {
    padding: 12px;
}

.wit-title {
    font-size: 18px;
    display: block;
}

.wit-subtitle {
    font-size: 12px;
}

.wit-icon {
    width: 70px;
    padding: 12px;
    background: #d9f9ff;    /* border-radius: 10px; */
    border-radius: 10px 0px 0px 10px;
    border-right: solid 1px #d4d4d4;
}

/* Whats in it END*/

/******** Insurance banner CSS END  *********/

/******** What is bike Insurance CSS START  *********/
.whyUs {
    background: #d9f9ff;
    text-align: center;
    padding: 50px 0;
}

.whyUs h2.whyUsHead {
    color: #005596;
    font-size: 3rem;
    font-family: "AllianzB";
    padding-bottom: 15px;
    text-transform: uppercase;
}

.whyUs p {
    line-height: 24px;
    padding-bottom: 30px;
    color: #5e5e5e;
    font-size: 1.8rem;
    max-width: 85%;
    width: 70%;
    margin: 0 auto;
    display: inline-block;
}

.whyUs p.secondWhyUsContent,
.whyUs p span {
    display: none;
}

.whyUs p a.moreWhyUsClick,
.lessWhyUsClick {
    font-size: 1.8rem;
    color: #005596;
    cursor: pointer;
    display: inline-block;
}

.v-more {
    font-size: 1.6rem;
    color: #005596;
    cursor: pointer;
    position: relative;
}

.v-more::before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 1px;
    margin: 5px 0 0;
    background: #005596;
    left: 0px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.v-more:hover:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0px;
    height: 1px;
    margin: 5px 0 0;
    background: #005596;
    left: 0px;
}

.vmore-ht-100px {
    height: 100px;
    overflow: hidden;
}

/******** What is bike Insurance CSS ENDS  *********/

/******** Scroll tabs List CSS START  *********/
.splTabWrap .addOnWrap,
.splTabWrap .insPolicyTabsContentWrap {
    padding: 0px !important;
}

.insPolicyTabsWrap .insPolicyTabsContentWrap {
    float: left;
    width: 100%;
}

.insPolicyTabsWrap .insPolicyTabsContentWrap .insPolicyTabsContent {
    float: left;
    width: 100%;
}

.registerYourClaimFRMwrp.terms-tabbing-wrap {
    background: #f9f9f9;
}

.registerYourClaimFRMwrp.terms-tabbing-wrap .tabbing-container {
    top: auto;
}

#lefty {
    position: absolute;
    top: 20px;
    left: 0px;
    color: #ffffff;
    background: #0072ca;
    padding: 8px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 2px;
    cursor: pointer;
    z-index: 1;
    -moz-box-shadow: 0px 0px 5px rgba(68, 68, 68, 0.6);
    -webkit-box-shadow: 0px 0px 5px rgb(68 68 68 / 60%);
    box-shadow: 0px 0px 5px rgb(68 68 68 / 60%);
}

.splTab .tabbing-links {
    background: #005596;
    padding-bottom: 10px;
    padding-top: 10px;
    position: relative;
    height: 80px !important;
    margin: 0 !important;
    border: 0px solid black;
    max-width: max-content;
}

.splTab .tabbing-links ul.ulSplTab {
    height: auto;
    background: #005596;
    box-sizing: border-box;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 98%;
    margin: 0 auto;
    padding-top: 14px;
}

.terms-tabbing-wrap .tabbing-container .tabbing-links ul {
    position: relative;
}

.terms-tabbing-wrap .tabbing-container .tabbing-links ul li.active {
    border-bottom: none;
    border-right: none;
}

.splTab .tabbing-links ul.ulSplTab li.active {
    z-index: 0;
    background: #005596;
    border-right: 1px solid #ebebeb;
}

.splTab .tabbing-links ul.ulSplTab li {
    z-index: 0 !important;
    background: #005596 !important;
    border: 0px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    margin-bottom: 10px;
    border-radius: 0 !important;
    display: inline-block;
    outline: 0px dotted gray;
    padding: 5px 17px;
    box-sizing: border-box;
    margin-bottom: 0px;
    height: auto;
}

.splTab .tabbing-links ul.ulSplTab li {
    z-index: 0 !important;
    background: #005596 !important;
    border: 0px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    margin-bottom: 10px;
    border-radius: 0 !important;
    display: inline-block;
    outline: 0px dotted gray;
    padding: 5px 17px;
    box-sizing: border-box;
    margin-bottom: 0px;
    height: auto;
}

.splTab .tabbing-links ul.ulSplTab li a {
    color: #ffffff;
}

.splTab .tabbing-links ul.ulSplTab li.active a {
    color: #ff9b41 !important;
}

.splTab .scrollsub {
    display: none;
}

#righty {
    position: absolute;
    top: 20px;
    right: 0px;
    color: #ffffff;
    background: #0072ca;
    padding: 8px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 2px;
    cursor: pointer;
    -moz-box-shadow: 0px 0px 5px rgba(68, 68, 68, 0.6);
    -webkit-box-shadow: 0px 0px 5px rgb(68 68 68 / 60%);
    box-shadow: 0px 0px 5px rgb(68 68 68 / 60%);
}

.registerYourClaimFRMwrp.terms-tabbing-wrap .tabbing-container .tabbing-content-wrap {
    background: #fff;
}

.terms-tabbing-wrap .tabbing-container .tabbing-content-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.terms-tabbing-wrap .tabbing-container .tabbing-content-wrap .tabbing-content-item .tab-accord-wrap .tab-accord-item {
    border-bottom: 1px solid #d3d3d3;
    padding: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.splTab .tabHeading {
    text-align: center;
}

.tabHeading {
    font-family: "AllianzB";
    font-weight: normal;
    color: #ff9b41;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.splTab .tabHeading h2 {
    margin-bottom: 20px;
    max-width: 100%;
}

.splTab p {
    float: none !important;
}

.terms-tabbing-wrap .tab-accord-item .tab-accord-item-details p {
    font-family: 'AllianzSans';
    font-size: 1.8rem;
    color: #000;
    padding-bottom: 0;
}

.terms-tabbing-wrap .tab-accord-item .tab-accord-item-details .claims-normal-cont p,
.registerYourClaimFRMwrp.terms-tabbing-wrap .tabbing-content-item .tab-accord-wrap .tab-accord-item .tab-accord-item-details p {
    float: left;
    font-size: 1.8rem;
    text-align: left;
    padding-bottom: 20px;
}

.splTabWrap .splTab .tab-accord-item-details .claimLists {
    text-align: left;
}

.claimLists {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.claimLists li {
    font-size: 1.6rem;
    color: #5e5e5e;
    padding: 7px 0 7px 20px;
    position: relative;
}

.splTab .claimLists li {
    color: #000000;
}

.claimLists li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: 15px;
    background: #ff9b41;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
}

.splTabWrap .splTab .tab-accord-item-details h3 {
    display: block !important;
    text-align: left;
    font-size: 2.2rem;
}

.terms-tabbing-wrap .tab-accord-item .tab-accord-item-details .claims-normal-cont p:last-child,
.registerYourClaimFRMwrp.terms-tabbing-wrap .tabbing-content-item .tab-accord-wrap .tab-accord-item .tab-accord-item-details p:last-child {
    padding-bottom: 0px;
}

.tableOuter {
    width: 100%;
    float: left;
    overflow-x: auto;
    padding-bottom: 15px;
}

.splTabWrap .splTab .tableOuter .productCustomTable.splTabTableSmall {
    width: 50%;
    margin: 0 auto;
}

.tableOuter table td,
.tableOuter table th {
    border-left: 1px solid #cbcbcb;
    border-left-width: 1px;
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: 0.3em 1em;
    font-size: 1.6rem;
}

.tableOuter .productCustomTable td {
    padding: 25px;
    border: 1px solid #e8e8e8;
}

.tableOuter table td td,
.tableOuter table tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

.splTab .tableOuter .productCustomTable td {
    border-color: #e0c94c;
}

.splTabWrap .splTab .tableOuter .productCustomTable td,
.splTabWrap .splTab .tableOuter .productCustomTable.splTabTableSmall td {
    padding: 15px;
}

.tableOuter .productCustomTable td td,
.tableOuter .productCustomTable tr:nth-child(2n-1) td {
    background-color: #ffffff;
}

.splTab .tableOuter .productCustomTable td:last-child {
    border-color: #e0c94c;
    background-color: #ffffff !important;
}

.terms-tabbing-wrap .tab-accord-item .tab-accord-item-details .claims-normal-cont p a,
.registerYourClaimFRMwrp.terms-tabbing-wrap .tabbing-content-item .tab-accord-wrap .tab-accord-item .tab-accord-item-details p a {
    font-size: 1.8rem;
    text-decoration: underline;
}

.tableOuter .productCustomTable th.standard-yellow {
    background-color: #ffeb82;
}

.tableOuter .productCustomTable td td,
.tableOuter .productCustomTable tr:nth-child(2n-1) td {
    background-color: #ffffff;
}

.splTabWrap .splTab .tableOuter .productCustomTable td.standard-yellow {
    background-color: #ffeb82 !important;
}

.splTabWrap .splTab .tableOuter .productCustomTable td.silver-plan {
    background-color: #e7e7e7 !important;
}

.splTabWrap .splTab .tableOuter .productCustomTable td.gold-plan {
    background-color: #f6f1e6 !important;
}

.splTabWrap .splTab .tableOuter .productCustomTable td.platinum-plan {
    background-color: #cfe8fd !important;
}

.splTabWrap .splTab .tableOuter .productCustomTable td,
.splTabWrap .splTab .tableOuter .productCustomTable.splTabTableSmall td {
    padding: 15px;
}

/******** Scroll tabs List CSS ENDS  *********/

/******** Get Quote CSS START  *********/
.textRte-listing-div {
    width: 100%;
    float: left;
    padding: 50px 0;
}

.getQuoteInner {
    width: 100%;
    max-width: 985px;
    margin: 0 auto;
}

.getQuoteInner p {
    color: white;
    font-size: 3rem;
    font-family: "AllianzB";
    line-height: 43px;
    width: 80%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    max-width: 985px;
}

.getQuoteInner .btn {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    background: white;
    color: #0b2150;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/******** Get Quote CSS ENDS  *********/

/******** insuranceBenefitWrap CSS START  *********/
.healthPolicyCategory.insuranceBenefitWrap {
    background: #f9f9f9;
}

.healthPolicyCategory.insuranceBenefitWrap,
.heathSaveTax.healthPolicyCategory {
    position: relative;
}

.insuranceBenefitWrap {
    padding: 70px 0;
}

.healthPolicyCategory.insuranceBenefitWrap .thirdPartyFixed,
.healthPolicyCategory.insuranceBenefitWrap .thirdPartyFixed {
    position: absolute;
    -webkit-box-shadow: 0px 0px 13px 0px #ccc;
    -moz-box-shadow: 0px 0px 13px 0px #ccc;
    -ms-box-shadow: 0px 0px 13px 0px #ccc;
    -o-box-shadow: 0px 0px 13px 0px #ccc;
    box-shadow: 0px 0px 13px 0px #ccc;
    border-radius: 50%;
    width: 230px;
    height: 230px;
    background: #fff;
    z-index: 2;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.healthPolicyCategory.insuranceBenefitWrap .thirdPartyFixed {
    right: 2%;
    top: -25%;
}

.healthPolicyCategory.insuranceBenefitWrap .thirdPartyFixed .thirdPartyFixedInner,
.healthPolicyCategory.insuranceBenefitWrap .thirdPartyFixed .thirdPartyFixedInner {
    width: 100%;
    float: left;
    text-align: center;
    padding: 50px 30px;
}

.insuranceBenefitWrap .col {
    width: 49.5%;
    display: inline-block !important;
    vertical-align: top;
}

.healthPolicyCategory.insuranceBenefitWrap .col .contentSec {
    width: 80%;
}

.insuranceBenefitWrap .col .contentSec h2 {
    text-transform: uppercase;
    font-size: 3rem;
    font-family: "AllianzB";
}

.insuranceBenefitWrap .col .contentSec ul {
    margin-top: 25px;
}

.claimLists {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.healthPolicyCategory.insuranceBenefitWrap .col .contentSec ul li {
    margin-bottom: 15px;
}

.insuranceBenefitWrap .col .contentSec ul li {
    font-size: 1.8rem;
    color: #0072bc;
    font-family: "AllianzSans";
    padding-left: 25px;
    position: relative;
}

.insuranceBenefitWrap .col .contentSec ul li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px !important;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff9b41;
    display: block;
}

.insuranceBenefitWrap .col .contentSec .videoHeading {
    text-transform: uppercase;
    font-size: 2.8rem;
    font-family: "AllianzB";
    line-height: 1;
    padding: 0px;
    color: #005596;
}

.insuranceBenefitWrap .insuranceVideo p {
    color: #000000;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 25px 0;
}

.insuranceBenefitWrap .insuranceVideo .insVideoWrap {
    background: #F7F7F7;
    min-height: 236px;
    float: left;
    width: 100%;
    max-width: 510px;
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.insuranceBenefitWrap .insuranceVideo .insVideoWrap img {
    width: 100%;
}

.insuranceBenefitWrap .insuranceVideo .insVideoWrap .videoPlayIcon {
    position: absolute;
    content: '';
    width: 53px;
    height: 53px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.insuranceBenefitWrap .insuranceVideo .insVideoWrap .videoPlayIcon:before {
    position: absolute;
    content: '';
    width: 53px;
    height: 53px;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -365px -231px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.healthPolicyCategory.insuranceBenefitWrap .blueBox.locateSec {
    max-width: 100%;
    z-index: 1;
    background: none;
    bottom: -45px;
}

.healthPolicyCategory .blueBox.locateSec {
    width: 80%;
}

.blueBox.locateSec {
    margin-top: -35px;
    position: absolute;
    left: 0;
    right: 0;
}

.blueBox {
    margin: 0 auto;
    text-align: center;
}

.blueBox ul,
.blueBox ul li,
.blueBox ul li a {
    display: inline-block;
    vertical-align: middle;
}

.insuranceBenefitWrap.healthPolicyCategory .nearestBranch {
    float: left;
    padding: 0px 50px;
    width: 100%;
}

.insuranceBenefitWrap.healthPolicyCategory .nearestBranch ul {
    width: auto;
    display: inline-block;
    float: none;
}

.insuranceBenefitWrap.healthPolicyCategory .nearestBranch ul {
    background: #005596;
    padding: 30px;
}

.insuranceBenefitWrap.healthPolicyCategory .nearestBranch ul li {
    width: auto;
    padding: 0 28px;
    border: 0;
    text-align: center;
    vertical-align: middle;
    float: left;
    position: relative;
}

.healthPolicyCategory.insuranceBenefitWrap .nearestBranch ul li:nth-child(1):before {
    background-position: -236px -276px;
}

.healthPolicyCategory .nearestBranch ul li:before {
    content: "";
    width: 26px;
    height: 26px;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -236px -208px;
    margin-right: 17px;
    display: inline-block;
    vertical-align: middle;
}

.healthPolicyCategory .blueBox.locateSec .nearestBranch ul li a {
    font-size: 1.8rem;
    cursor: pointer;
}

.blueBox ul li a {
    color: #fff;
    font-family: "AllianzSansLight";
}

.healthPolicyCategory.insuranceBenefitWrap .nearestBranch ul li a:after {
    width: 8px;
    height: 13px;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat -39px -88px;
    position: absolute;
    content: '';
    right: -15px;
    top: 6px;
}

.healthPolicyCategory .blueBox.locateSec .nearestBranch ul li:after {
    position: absolute;
    content: '';
    height: 40px;
    width: 1px;
    top: -5px;
    right: -5px;
    background: #4a94cb;
    bottom: 0;
}

.insurance-video-content {
    position: relative;
    height: 400px;
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
}

.insurance-video-content iframe {
    width: 100%;
    height: 100%;
}

.insurance-video-content .video-iframe {
    height: 100%;
}

.bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.forgotCarNumber {
    text-align: center;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    color: #005596;
}

/******** insuranceBenefitWrap CSS END  *********/

/******** coversunderauto CSS START  *********/
.addOnWrap span {
    color: #000;
    float: left;
    font-family: "AllianzSans";
    font-size: 1.8rem;
    font-weight: normal;
    padding: 10px 10px 20px;
    width: 100%;
    line-height: normal;
}

.addOnWrap .addonFlipcontainer {
    width: 100%;
    float: left;
    padding: 35px 0;
}

.addOnWrap .addonFlipcontainer .addonOuter {
    width: 23%;
    margin: 1%;
    float: left;
}

.addOnWrap .addonInner {
    cursor: pointer;
    margin: 0 auto;
    height: 260px;
    width: 302px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -ms-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    z-index: 1;
}

.addOnWrap .addonInner.flip .flipFront {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
}

.addOnWrap .flipFront {
    z-index: 2;
    height: 100%;
    width: 100%;
    -webkit-box-shadow: 0 0 40px 2px #eaeaea;
    -moz-box-shadow: 0 0 40px 2px #eaeaea;
    -ms-box-shadow: 0 0 40px 2px #eaeaea;
    -o-box-shadow: 0 0 40px 2px #eaeaea;
    box-shadow: 0 0 40px 2px #eaeaea;
    backface-visibility: hidden;
    transition: 0.6s;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    background: #fff;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -ms-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.addOnWrap .flipFront .flipIcon {
    padding: 30px 0;
    width: 100%;
    float: left;
}

.addOnWrap .iconSec.animIconSec .svgSec {
    margin: 0 auto;
    display: inline-block;
}

.addOnWrap .iconSec.animIconSec .svgSec.driveSmartsvg {
    width: 88px;
    height: 88px;
}

.addOnWrap p.flipFrontHead {
    color: #005596;
    font-size: 2rem;
    font-family: "AllianzSans";
    width: 100%;
    float: left;
    text-align: center;
}

.addOnWrap .addonInner.flip .flipBack {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.flipback-height {
    height: 260px !important;
    overflow: hidden;
}

.addonHideContent {
    display: none;
}

.addOnWrap .flipBack {

    /* display: table; */
    height: 100%;
    width: 100%;
    -webkit-box-shadow: 0 0 40px 2px #eaeaea;
    -moz-box-shadow: 0 0 40px 2px #eaeaea;
    -ms-box-shadow: 0 0 40px 2px #eaeaea;
    -o-box-shadow: 0 0 40px 2px #eaeaea;
    box-shadow: 0 0 40px 2px #eaeaea;
    transition: 0.6s;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    background: #fff;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -ms-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
}

.addOnWrap .flipBack p {
    color: #58585a;
    font-size: 1.6rem;
}

.addOnWrap .addonFlipcontainer .addonOuter .addonInner .flipBack p a {
    display: block;
    font-size: 1.6rem;
    color: #005596;
}

.flipBack .contentMore {
    z-index: 1;
    padding: 5px 0;
    text-decoration: underline;
    width: 80px;
    text-align: center;
    margin: 0 auto;
}

/* Popup */
.ba-addons-popup-content {
    position: relative;
    height: auto;
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    -webkit-box-shadow: 0 5px 20px 5px #333333;
    -moz-box-shadow: 0 5px 20px 5px #333333;
    -ms-box-shadow: 0 5px 20px 5px #333333;
    -o-box-shadow: 0 5px 20px 5px #333333;
    box-shadow: 0 5px 20px 5px #333333;
}

.popupSec.hiddenShowContent .showAllContent {
    width: 100%;
    float: left;
    overflow: hidden;
}

.showAllContent p {
    font-size: 1.5rem;
}

/******** coversunderauto CSS END  *********/

/******** docdownloadandrenew CSS START  *********/
.docDownAndRenew {
    font-size: 0;
}

.docDownAndRenew .docDownloadSec {
    background: #005596;
}

.docDownAndRenew .docDownloadSec,
.docDownAndRenew .renewSec {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    text-align: center;
    padding: 45px 0 35px;
    height: 180px;
}

.docDownAndRenew h4,
.docDownAndRenew h3 {
    color: #fff;
    font-size: 2.4rem;
    font-family: "AllianzB";
}

.docDownAndRenew .docDownloadSec ul {
    margin-top: 35px;
}

.docDownAndRenew .docDownloadSec ul li {
    display: inline-block;
    margin-right: 18px;
}

.docDownAndRenew .docDownloadSec ul li:before,
.docDownAndRenew .docDownloadSec ul li:after {
    display: inline-block;
    vertical-align: middle;
}

.docDownAndRenew .docDownloadSec ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -485px -187px;
    margin-right: 15px;
}

.docDownAndRenew .docDownloadSec ul li a {
    color: #fff;
    font-family: "AllianzSansLight";
    font-size: 1.8rem;
    text-decoration: none;
    cursor: pointer;
}

.docDownAndRenew .docDownloadSec ul li:after {
    content: "";
    width: 1px;
    height: 35px;
    background: #4a94cb;
    margin-left: 25px;
}

.textLink:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 0px;
    height: 1px;
    margin: 5px 0 0;
    background: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
}

.docDownAndRenew .docDownloadSec,
.docDownAndRenew .renewSec {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    text-align: center;
    padding: 45px 0 35px;
    height: 180px;
}

.docDownAndRenew .renewSec {
    background: #ff9b41;
}

.docDownAndRenew h4 {
    color: #fff;
    font-size: 2.4rem;
    font-family: "AllianzB";
}

.docDownAndRenew .renewSec .btn {
    background: #fff;
    color: #0b2150;
    margin-top: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.docDownAndRenew .renewSec .btn:before {
    background: #005596;
    width: 35px;
}

.nonTouch .btn:before {
    content: '';
    z-index: -1;
    background: white;
    position: absolute;
    top: 50%;
    right: 100%;
    margin: -15px 0 0 1px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    -moz-transform: scale3d(1, 2, 1);
    -ms-transform: scale3d(1, 2, 1);
    -o-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
}

.docDownAndRenew .renewSec .btn:hover {
    color: #fff;
}

.docDownAndRenew .docDownloadSec ul li:last-child {
    margin-right: 0;
}

.setRenewalWrap {
    position: relative;
    max-width: 450px;
    padding: 20px;
    background: #ffffff;
}

.setRenewalWrap p.loginHeadTxt {
    color: #1e3a87;
    font-size: 2.8rem;
    float: left;
    width: 100%;
    text-align: center;
}

.setRenewalWrap .fieldBox {
    width: 100%;
    float: left;
    padding: 20px 0 0;
}

.setRenewalWrap label {
    font-size: 1.6rem;
}

.setRenewalWrap .fieldBox .inputBox {
    padding: 5px 0px 2px;
}

.setRenewalWrap .inputBox input {
    background: transparent;
    width: 100%;
    font-size: 1.8rem;
    color: #757575;
}

.setRenewalWrap .inputBox:after {
    background: transparent;
}

.setRenewalWrap .inputBox {
    width: 100%;
    float: left;
    border-bottom: 1px solid #ebebeb;
    position: relative;
    padding: 25px 0px 2px;
}

.inputBox:after {
    content: "";
    width: 0;
    height: 1px;
    background: #2ac9ff;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}

.setRenewalWrap .fieldBox span.errorTxt {
    width: 100%;
    float: left;
    padding-top: 3px;
    color: red;
    z-index: 1;
    position: relative;
    display: none;
}

.inputBox .cc,
.textareaBox .cc {
    position: absolute;
    left: 0;
    bottom: 4px;
    font-size: 1.8rem;
    color: #757575;
    display: none;
}

.setRenewalWrap .fieldBox .inputBox .cc {
    display: block;
}

.inputBox .cc:before,
.textareaBox .cc:before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    width: 20px;
    height: 30px;
    background: #fff;
}

.inputBox .cc~input.setRenewalMobile {
    padding-left: 60px;
}

.renewalThankyou,
.renewalFail {

    /* display: none; */
    width: 100%;
    float: left;
}

.renewalThankyou p,
.renewalFail p {
    font-size: 1.8rem;
    color: #757575;
    text-align: center;
}

/******** docdownloadandrenew CSS END  *********/

/******** beforebuyinsurance CSS START  *********/
.beforeBuyWrap {
    padding: 25px 0 25px;
}

.beforeBuyWrap .thirdPartyFixed.thirdPartyfixedshow {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.beforeBuyWrap .thirdPartyFixed {
    position: absolute;
    left: 6%;
    top: -12%;
    -webkit-box-shadow: 0 10px 20px 1px #eaeaea;
    -moz-box-shadow: 0 10px 20px 1px #eaeaea;
    -ms-box-shadow: 0 10px 20px 1px #eaeaea;
    -o-box-shadow: 0 10px 20px 1px #eaeaea;
    box-shadow: 0 10px 20px 1px #eaeaea;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 230px;
    height: 230px;
    background: #fff;
    z-index: 3;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.beforeBuyWrap .thirdPartyFixed .thirdPartyFixedInner {
    width: 100%;
    float: left;
    text-align: center;
    padding: 50px;
}

.beforeBuyWrap .thirdPartyFixed .thirdPartyFixedInner p {
    color: #717272;
    font-size: 1.6rem;
    font-family: "AllianzSansLight";
}

.beforeBuyWrap .impPointOuter {
    width: 100%;
    float: left;
    padding-left: 80px;
}

.beforeBuyWrap .impPointOuter .impPointInnerL {
    width: 30%;
    float: left;
}

.beforeBuyWrap .impPointInnerL h2 {
    text-transform: uppercase;
}

.beforeBuyWrap .impPointInnerL .impPointList {
    float: left;
    width: 100%;
}

.beforeBuyWrap .impPointInnerL .impPointList li.sel {
    color: #0072bc;
    font-family: "AllianzB";
    font-size: 2rem;
}

.beforeBuyWrap .impPointInnerL .impPointList li {
    font-family: "AllianzSans";
    font-size: 1.6rem;
    color: #000;
    width: auto;
    position: relative;
    text-transform: uppercase;
    padding: 30px 0;
    cursor: pointer;
}

.beforeBuyWrap .impPointInnerL .impPointList li:before {
    background: #717272;
    width:110px ;
    height: 1px;
    position: absolute;
    content: '';
    bottom: 20px;
}

.beforeBuyWrap .impPointInnerL .impPointList li.sel:before {
    background: #ff9b41;
    width: 110px;
    height: 1px;
    position: absolute;
    content: '';
    bottom: 20px;
}

.beforeBuyWrap .impPointInnerR {
    width: 70%;
    float: left;
}

.beforeBuyWrap .impPointInnerR {
    width: 70%;
    float: left;
}

.beforeBuyWrap .impPointInnerR .innerBanner {
    float: left;
    width: 100%;
    height: 400px;
}

.beforeBuyWrap .impPointInnerR .innerBanner .carouselSlide {
    width: 700px;
    height: 100%;
}

.carouselSlide {
    margin: 0px auto;
    position: relative;
    clear: both;
    overflow: hidden;
    z-index: 1;
}

.carouselSlide {
    margin: 0px auto;
    position: relative;
    clear: both;
    overflow: hidden;
    z-index: 1;
}

.beforeBuyWrap .impPointInnerR .innerBanner .carouselSlide {
    width: 700px;
    height: 100%;
}

.carouselSlide .shadow {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 40px 2px #eaeaea;
    -moz-box-shadow: 0 0 40px 2px #eaeaea;
    -ms-box-shadow: 0 0 40px 2px #eaeaea;
    -o-box-shadow: 0 0 40px 2px #eaeaea;
    box-shadow: 0 0 40px 2px #eaeaea;
    background: #fff;
}

.beforeBuyWrap .impPointInnerR .innerBanner .carouselSlide .shadow {
    width: 350px;
    height: 350px;
    padding: 75px 0;
    margin: 25px auto;
}

.beforeBuyWrap .impPointInnerR .innerBanner .carouselSlide .shadow .carous_desc {
    padding: 0px 15px;
    margin-bottom: 15px;
    height: auto;
}

.carouselSlide .shadow .carous_desc {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.beforeBuyWrap .impPointInnerR .insuranceRoundListDetail {
    width: 100%;
    vertical-align: middle;
    padding: 25px;
    text-align: center;
}

.beforeBuyWrap .impPointInnerR .insuranceRoundNum {
    width: 62px;
    height: 39px;
    margin: 0 auto;
    text-align: center;
    color: #ff9b41;
    font-size: 3rem;
    font-family: "AllianzSansLight";
}

.impPointInnerR {
    padding-left: 50px;
    padding-top: 20px;
}

.ip-point {
    margin-bottom: 20px;
}

.ip-heading {
    color: #005596;
    font-size: 1.8rem;
}

.ip-subheading {
    color: #717272;
    font-size: 1.4rem;
}

.beforeBuyWrap .impPointInnerL .impPointList li.sel:before {
    background: #ff9b41;
}

/******** beforebuyinsurance CSS END  *********/

/******** cusotmerstories CSS START  *********/
.aboutBoxSec.prodListing {
    padding: 50px 0;
    text-align: center;
}

.aboutBoxSec.prodListing h2 {
    text-transform: uppercase;
}

.averageCustomerRating {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    width: 270px;
    color: #000;
    margin-top: 15px;
}

.averageCustomerRating .averagerating {
    float: left;
    margin-right: 7px;
}

.averageCustomerRating .starsDiv {
    float: left;
    width: 145px;
}

.averageCustomerRating span.stars,
.averageCustomerRating span.stars span {
    background: url(../../../../../content/dam/bagic/motor-insurance/averageRatingStar.png) 0 -22px repeat-x;
    display: block;
    width: 100px;
    height: 20px;
    float: left;
}

.averageCustomerRating span.stars span {
    background-position: 0 0;
}

.averageCustomerRating .rating_amount {
    float: left;
    font-size: 1.2rem;
    margin-left: 7px;
    font-weight: bold;
    line-height: 23px;
}

.averageCustomerRating .reviewCunt {
    font-size: 12px;
    width: 100%;
    display: inline-block;
}

.aboutBoxSec .aboutBoxSecSlider {
    margin: 0 auto;
}

.aboutBoxSec .aboutBoxSecSlider .item {
    margin: 0 1%;
    width: 31%;
    padding: 0 10px 30px;
    display: inline-block;
    vertical-align: top;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec {
    padding: 50px 35px;
    -webkit-box-shadow: 0 0 40px 2px #eaeaea;
    -moz-box-shadow: 0 0 40px 2px #eaeaea;
    -ms-box-shadow: 0 0 40px 2px #eaeaea;
    -o-box-shadow: 0 0 40px 2px #eaeaea;
    box-shadow: 0 0 40px 2px #eaeaea;
    margin-top: 22px;
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec .topSec {
    height: 185px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .item .boxSec .topSec {
    height: auto;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .item .boxSec .topSec .imgSec {
    display: block;
    width: 119px;
    height: 119px;
    margin: 0 auto;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .item .boxSec .topSec .imgSec {
    display: none;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .item .boxSec .topSec .imgSec img {
    position: absolute;
    z-index: 1;
    left: 0;
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec .topSec .imgSec img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: auto;
    margin: 0 auto;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .item .boxSec .topSec .nameSec {
    margin-top: 25px;
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec .topSec .nameSec:before {
    position: relative;
    top: -20px;
    content: "";
    display: inline-block;
    vertical-align: top;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -290px 0;
    width: 41px;
    height: 41px;
    margin-right: 12px;
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec .topSec .nameSec p {
    font-size: 1.8rem;
    color: #000;
    font-family: "AllianzSans";
    display: inline-block;
    text-align: left;
    font-weight: bold;
    line-height: 1;
}

.starRating {
    width: 100%;
    float: left;
    display: inline-block;
    padding: 15px 0 0;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .starRating .startWrap {
    width: 100px;
    float: none;
    margin: 0 auto;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .starRating ul {
    width: auto;
    float: left;
}

.starRating ul li {
    margin: 0px 3px;
    padding: 0px;
    list-style: none;
    width: 22px;
    height: 20px;
    float: left;
    position: relative;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -771px -180px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.starRating ul li.active {
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -743px -180px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .starRating ul li {
    width: 20px;
    height: 20px;
    background-position: -769px -261px;
    margin: 0;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .starRating ul li.active {
    background-position: -748px -261px;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .starRating ul li input {
    width: 20px;
    height: 20px;
    left: 0;
}

.starRating ul li input {
    width: 22px;
    height: 20px;
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

input[type=checkbox] {
    opacity: 0;
    filter: alpha(opacity=0);
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec .detailSec {
    height: 145px;
}

.aboutBoxSec.prodListing .aboutBoxSecSlider .item .boxSec .detailSec {
    margin-top: 25px;
    max-height: 110px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: justify;
    scrollbar-width: thin;
}

.aboutBoxSec .aboutBoxSecSlider .item .boxSec.custmStory .detailSec p {
    font-size: 1.5rem;
    color: #000;
    line-height: 26px;
    padding: 0 15px;
}

.aboutBoxSec .btnSec {
    margin-top: 20px;
}

/******** cusotmerstories CSS END  *********/

/********faq simplifyInsurance CSS START  *********/
.simplifyInsurance .simplifyAccordWrap .simplifyAccordInner .simplifyAccordMain.active h3 {
    border-bottom: 1px solid #fff;
}

.healthPolicyCategory.simplifyInsurance .simplifyAccordMain.active h3::before {
    background-position: -298px -405px;
}

.simplifyInsurance {
    padding: 80px 0;
}

.simplifyInsurance .simplifyAccordWrap {
    width: 100%;
    float: left;
}

.simplifyInsurance .simplifyAccordWrap .simplifyAccordHead {
    width: 100%;
    float: left;
}

.simplifyInsurance .simplifyAccordWrap .simplifyAccordHead .iconSec {
    display: inline-block;
    vertical-align: middle;
    margin-left: 9%;
}

.simplifyInsurance .simplifyAccordWrap .simplifyAccordHead .iconSec .svgSec {
    width: 102px;
    margin-right: 30px;
    float: right;
}

.simplifyInsurance .simplifyAccordWrap .simplifyAccordHead h2 {
    width: 60%;
    display: inline-block;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 3rem;
    font-family: "AllianzB";
    color: #005596;
}

.simplifyInsurance .simplifyAccordWrap .simplifyAccordInner {
    margin-left: 19%;
    width: 60%;
    display: inline-block;
    vertical-align: top;
}

.simplifyInsurance .simplifyAccordMain {
    width: 100%;
    float: left;
}

.simplifyInsurance .simplifyAccordMain h3 {
    font-size: 1.8rem;
    color: #000000;
    font-family: "AllianzSans";
    position: relative;
    border-bottom: 1px solid #cccccc;
    padding: 25px 35px 25px 0;
    cursor: pointer;
    font-weight: normal;
}

.simplifyInsurance .simplifyAccordMain h3:before {
    width: 15px;
    height: 15px;
    position: absolute;
    content: '';
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -298px -385px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.simplifyInsurance .simplifyAccordContent {
    display: none;
    padding: 25px 0;
}

.simplifyInsurance .simplifyAccordMain.active .simplifyAccordContent {
    display: block;
}

.simplifyInsurance .simplifyAccordMain.active .simplifyAccordContent {
    border-bottom: 1px solid #cccccc;
    float: left;
    width: 100%;
}

.simplifyAccordMain.active h3 {
    color: #005596;
}

.simplifyInsurance .simplifyAccordContent p {
    font-size: 1.6rem;
    color: #000000;
    font-family: "AllianzSans";
}

.simplifyInsurance .simplifyAccordMain.active .simplifyAccordContent ul {
    width: 100%;
    padding: 10px 0;
    float: left;
}

.simplifyInsurance .simplifyAccordMain.active .simplifyAccordContent ul li {
    font-size: 1.6rem;
    color: black;
    font-family: "AllianzSans";
    position: relative;
    padding-left: 15px;
    margin-bottom: 0px;
}

.simplifyInsurance .simplifyAccordMain.active .simplifyAccordContent ul li:before {
    width: 5px;
    height: 5px;
    background: #000;
    position: absolute;
    content: '';
    left: 0;
    top: 9px;
    border-radius: 50%;
}

.simplifyAccordWrap .accordShowHide .dsp-none {
    display: none;
}

.accordShowHide {
    width: 60%;
    display: inline-block;
    vertical-align: top;
    margin-left: 19%;
    text-align: right;
    padding: 20px 0;
}

.accordHide.accordHideActive,
.accordShow {
    display: inline-block;
}

.accordShow,
.accordHide {
    position: relative;
    color: #005596;
}

.accordShow:after,
.accordHide:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #005596;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    bottom: 0;
    left: 0;
}

.accordShow:hover:after,
.accordHide:hover:after {
    width: 0;
}

/********faq simplifyInsurance CSS END  *********/

/********demystifyInsur CSS START  *********/
.demystifyInsur.productlanding {
    background: #f8f8f8;
    padding: 30px 0 30px 0;
    text-align: center;
}

.demystifyInsur .headingSec {
    margin-right: 100px;
}

.demystifyInsur .headingSec,
.demystifyInsur ul,
.demystifyInsur ul li,
.demystifyInsur .btn,
.demystifyInsur .headingSec .iconSec,
.demystifyInsur .headingSec h3 {
    display: inline-block;
    vertical-align: middle;
}

.demystifyInsur .headingSec .iconSec {
    margin-right: 15px;
}

.demystifyInsur.productlanding .headingSec .iconSec .svgSec {
    width: 87px;
    margin: 0;
}

.blogHeading {
    text-transform: uppercase;
    color: #005596;
    display: inline-block;
    vertical-align: middle;
    font-size: 2.6rem;
}

.demystifyInsur ul li {
    color: #005596;
    font-size: 2.0rem;
    text-align: left;
    line-height: 22px;
    margin-right: 60px;
    position: relative;
}

.demystifyInsur.productlanding ul li:before {
    left: 0;
}

.demystifyInsur ul li:before {
    content: "";
    position: absolute;
    left: -16px;
    top: 5px;
    background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
    background-position: -189px 0;
    width: 9px;
    height: 13px;
}

.demystifyInsur.productlanding ul li a {
    padding-left: 15px;
    float: left;
}

.demystifyInsur ul li a {
    color: #005596;
    line-height: 22px;
}

/********demystifyInsur CSS END  *********/

/********requestcallback CSS START  *********/
.communicationSec {
    position: fixed;
    right: 10px;
    bottom: 90px;
    text-align: center;
    z-index: 2;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
    width: auto;
}

.communicationSec .callBack {
    margin-bottom: 97px !important;
}

.communicationSec p {
    font-size: 1.4rem;
    color: #000000;
    margin-top: 5px;
}

.callback-content p {
    color: #4f4f4f;
    font-size: 2.2rem;
    font-family: 'AllianzB';
    font-weight: normal;
    line-height: 1;
    font-weight: bold;
}

.show-callback {
    display: block !important;
    right: 0 !important;
}

.callback-content .inputBox input {
    padding-left: 0 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/********requestcallback CSS END  *********/

/********quickquote CSS START  *********/
.getQuoteFixed {
    position: fixed;
    right: 25px;
    bottom: 50%;
    display: none;
    text-align: center;
    z-index: 1;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}

.getQuoteFixed .getQuoteContent a {
    position: relative;
}

.getQuoteFixed p {
    font-size: 1.4rem;
    color: #000;
    margin-top: 5px;
}

/********quickquote CSS END  *********/

/* New CSS for HEADER start */
.header-sub {
    background: white;
    padding: 2px 0px 0px;
}

.sub-menu-link {
    text-align: right;
    padding: 3px !important;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}

.sub-menu-link ul li {
    display: inline-block;
    vertical-align: middle;
}

.sub-menu-link ul li a {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #0072bc;
    margin: 0 15px 0 0;
    text-transform: capitalize;
}

.sub-menu-link ul li a:hover {
    color: #ff8100;
}

.header-sub .ph-numbers-header {
    float: right;
    padding: 0;
}

.ph-numbers-header .sales-icon {
    color: #000000 !important;
    font-size: 1.3rem !important;
    margin-top: 4px;
}

.header-sub .ph-numbers-header p {
    padding: 0;
}

a[href^="tel:"] {
    pointer-events: auto !important;
    cursor: default !important;
    text-decoration: none;
}

.ph-numbers-header .sales-icon a {
    color: #000000 !important;
    font-size: 1.3rem !important;
    text-decoration: none !important;
}

.ph-numbers-header .sales-icon a {
    cursor: pointer !important;
    text-decoration: none;
}

.mainHeader .sumMenuSec {
    left: auto !important;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    top: 79px;
    width: auto;
    height: 0;
    background: #fff;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    opacity: 0;
    display: none;
    z-index: -1;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}

.mainHeader nav>ul>li .sumMenuSec {
    visibility: hidden;
    opacity: 0;
    transition: all 0.9s;
    top: 130%;
    display: block;
    z-index: 2;
    min-height: auto;
    min-width: 222px;
    display: block;
    background: #ffffff;
    height: auto !important;
    width: auto;
    box-shadow: 0 0 15px 2px rgb(58 36 36 / 27%);
}

.mainHeader nav>ul>li:hover .sumMenuSec {
    top: 118%;
    visibility: visible;
    opacity: 1;
    transition: all 0.9s;
    z-index: 2;
    padding-top: 0;
    margin-top: -40px;
    height: auto !important;
    width: 273px;
    box-shadow: 0 0 15px 2px rgb(58 36 36 / 27%);
}

.mainHeader nav>ul>li.open a:after {
    background-position: -320px -404px !important;
}

.mainHeader .sumMenuSec ul {
    display: grid;
    margin: 8%;
}

.mainHeader .sumMenuSec ul>li {
    vertical-align: top;
    width: auto;
    margin: 0;
    margin-top: 0px;
}

.mainHeader .sumMenuSec ul>li .iconSec p {
    font-size: 2.0rem;
    color: #005596;
    font-family: "AllianzB";
    padding-top: 3px;
}

.mainHeader nav .sumMenuSec ul li a {
    color: #000000 !important;
    text-decoration: none;
    position: relative;
    width: auto;
    display: inline-block;
    font-size: 1.4rem !important;
    white-space: nowrap;
}

.mainHeader nav ul li:hover a {
    font-family: "AllianzSans" !important;
}

.mainHeader nav .sumMenuSec ul li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #005596;
    left: 0;
    bottom: -2px;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}

.mainHeader nav .sumMenuSec ul li a:hover:before,
.mainHeader .sumMenuSec .container>ul>li .links ul li a:hover:before {
    width: 100%;
    left: 0;
    bottom: -2px;
    height: 1px;
}

.iconSec p span {
    height: 10%;
    padding: 0;
    position: absolute;
    transition: .4s;
    cursor: pointer;
    float: right;
    margin-top: 7%;
    right: 19%;
}

.iconSec p span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #5f5f5f;
    border-top: 2px solid #5f5f5f;
    display: block;
    position: absolute;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: .4s;
    transition: .4s;
}

.mainHeader .sumMenuSec ul>li .links {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    min-width: 324px;
    padding: 11%;
    top: 0px;
    left: 100%;
    min-height: 347px;
    background: white;
}

.mainHeader nav>ul>li .sumMenuSec>ul>li .links {
    padding: 10px 10px 10px 0px;
    float: left;
    min-width: 316px;
    min-height: 260px;
    box-shadow: 0 0 15px 2px rgb(58 36 36 / 27%);
}

.mainHeader nav>ul>li .sumMenuSec ul>li .links {
    visibility: hidden;
    opacity: 0;
    transition: all 0.9s;
    z-index: 2;
}

.mainHeader nav>ul>li .sumMenuSec ul>li:hover .links {
    visibility: visible;
    opacity: 1;
    transition: all 0.9s;
    z-index: 2;
}

.mainHeader nav>ul>li .sumMenuSec ul>li:hover a {
    color: #ff9b41 !important;
}

.mainHeader nav>ul>li .sumMenuSec ul>li:hover .links a {
    color: #000000 !important;
}

.mainHeader nav>ul>li .sumMenuSec ul>li:hover .links a:hover {
    color: #ff9b41 !important;
}

.links .animIconSec {
    display: none !important;
}

.mainHeader .sumMenuSec ul>li .links ul li {
    display: block;
    margin: 0;
    margin-bottom: 4px;
}

.TravalInsuranceArticleAustrelliaCard {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: auto;
}

.TravalInsuranceArticleAustrelliaCard div {
    margin: 17px;
    width: 350px;
    padding: 20px;
    box-shadow: 0 2px 5px #302f2f;
}

.TravalInsuranceArticleAustrellia {
    padding: 32px;
}

#TravalInsuranceArticleAustrellia p {
    font-size: 1.2rem;
}

button.ReadblogBtn {
    margin: 33px 40px 35px -25px;
    background-color: rgb(248, 156, 48);
    border-radius: 20px;
    padding: 10px 10px 10px 10px;
    width: 245px;
}

.ReadblogBtn a {
    color: white;
}

@media only screen and (device-width:390px) and (device-height:844px) and (-webkit-device-pixel-ratio:3) {
    .insurance-video-content .video-iframe {
        height: 90%;
        margin: 18px 6px 1px 1px;
    }

}

@media screen and (max-width:767px) {
    .insuranceBenefitWrap .insuranceVideo .insVideoWrap .videoPlayIcon:before {
        top: 28%;
    }

    /* --5 */
    .sub-menu-link {
        width: 100%;
        justify-content: space-between;
    }

    .sub-menu-link ul li a {
        margin: 0 8px 0 0;
        font-size: 1.2rem;
        text-decoration: underline;
    }

    .header-sub .ph-numbers-header {
        float: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mainHeader nav>ul>li .sumMenuSec {
        display: none;
    }

    .mainHeader .sumMenuSec ul {
        margin-top: 0px;
        display: grid;
        margin: 0%;
    }

    .mainHeader nav>ul>li .sumMenuSec>ul>li {
        display: block;
        margin: 0;
        width: 100%;
    }

    .mainHeader nav>ul>li .sumMenuSec>ul>li .iconSec {
        width: 100%;
        text-align: left;
    }

    .mainHeader nav>ul>li .sumMenuSec>ul>li .iconSec p {
        display: flex;
        padding: 12px 5px 12px 55px;
        font-size: 1.8rem;
        font-family: "AllianzSans";
        color: #6c6c6c;
        font-weight: bold;
        position: relative;
    }

    .mainHeader nav>ul>li .sumMenuSec>ul>li .iconSec p:after {
        right: 30px !important;
    }

    .mainHeader nav>ul>li .sumMenuSec>ul>li .iconSec p:after {
        content: "";
        width: 12px;
        height: 12px;
        position: absolute;
        top: 20px;
        right: 24px;
        background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
        background-position: -320px -386px;
    }

    /* Rupali 05-09-23 */
    .mainHeader nav>ul>li.open a:after,
    .mainHeader nav>ul>li .sumMenuSec>ul>li>.iconSec>p.open:after {
        background-position: -320px -404px;
    }

    .mainHeader nav>ul>li:hover .sumMenuSec {
        transition: none;
        margin-top: 0;
        position: static;
    }

    .iconSec p span::after {
        display: none;
    }

    .mainHeader nav>ul>li .sumMenuSec ul>li .links {
        display: none;
        visibility: visible;
        opacity: 1;
        position: static;
        box-shadow: none;
        transition: none;
        padding: 0px 5px 0px 50px;
        min-height: auto;
    }

    .mainHeader nav>ul>li .sumMenuSec>ul>li .links li {
        margin-bottom: 12px;
        line-height: 16px;
    }

}

@media screen and (max-width:480px) {

    .popupSec.changeLangPopup {
        position: absolute;
        max-width: 635px;
        width: 92%;
        height: auto;
        border-radius: 6px;
        padding: 4px;
        background: #fff;
        display: none;
        z-index: 99;
        left: 2.5px !important;
        top: 42.664px !important;        /* top: 75.664px;*/
        margin-left: 15px;
    }

    .multilung {
        width: auto !important;
        display: block !important;
        margin-top: 18px;
    }

    .insuranceBenefitWrap .insuranceVideo .insVideoWrap .videoPlayIcon:before {
        top: 28%;
    }

    .header-opti .container {
        padding: 10px;
    }

    .header-sub .container {
        padding: 0 10px !important;
    }

    .ph-numbers-header .sales-icon {
        font-size: 1.3rem !important;
    }

    .ph-numbers-header .sales-icon a {
        font-size: 1.3rem !important;
    }

    .mainHeader nav>ul>li:hover .sumMenuSec {
        bottom: -36px;
        opacity: 1;
        box-shadow: none;
    }

    .mainHeader nav>ul>li .sumMenuSec {
        box-shadow: none;
    }

    header.mainHeader .logoSec {
        width: 154px !important;
        margin: 2% !important;
    }

    /* .mainHeader .humbugMenu {bottom: 36px !important;}*/
    .mainHeader .rightSec .formaction {
        margin-right: 42px;
        margin-top: 20px !important;
    }

}

@media only screen and (min-width:320px) {
    .carrenewfeatures .refeatureWrapp {
        padding-right: 2px !important;
        padding-left: 5px !important;
        text-align: center !important;
    }

    .renewmedia-body .renewmedia-heading {
        font-size: 12px;
    }

    .setRenewalWrap .fieldBox span.errorTxt {
        font-size: 12px !important;
    }

}

/* .modal-close-icon {
position: absolute;
top: -4px;
margin: 0 auto;
right: -3px;
cursor: pointer;
} */

/* New CSS for HEADER end */
@media screen and (max-width:1280px) {

    /********* Header MOBILE CSS START *********/
    .mainHeader .container {
        padding: 0 10px;
    }

    .mainHeader nav ul li a {
        font-size: 1.6rem;
    }

    header.mainHeader .logoSec {
        width: 154px !important;
        margin-top: 0px;
        padding: 4px
    }

    .ph-numbers-header .sales-icon {
        font-size: 1.4rem !important;
    }

    /********* Header MOBILE CSS END *********/

    /******** insuranceBenefitWrap CSS END  *********/
    .insuranceBenefitWrap.healthPolicyCategory .nearestBranch {
        padding: 0;
    }

    .insuranceBenefitWrap.healthPolicyCategory .nearestBranch ul li {
        padding: 0 20px;
    }

    /******** insuranceBenefitWrap CSS END  *********/

    /******** coversunderauto Mobile CSS START  *********/
    .addOnWrap .addonInner {
        width: 270px;
    }

    /******** coversunderauto Mobile CSS END  *********/
}

@media screen and (max-width:992px) {
    .container {
        padding: 0 10px;
    }
.beforeBuyWrap .impPointInnerL .impPointList li.sel:before {

    left: 0px;}
.beforeBuyWrap .impPointInnerL .impPointList li:before {

    left: 0px;
}
.beforeBuyWrap .impPointInnerL .impPointList li:before {

    width:100% ;
 
}

.beforeBuyWrap .impPointInnerL .impPointList li.sel:before {
  
    width: 100%;
   
}
    .btn {
        font-size: 1.5rem;
        padding: 5px 25px 7px;
    }

    .bredcrumbs {
        display: none !important;
    }

    .multilung {
        width: auto !important;
        display: block !important;
        margin-top: 18px;
    }

    /********* Header MOBILE CSS START *********/
    header.mainHeader {
        z-index: 98;        /* height: 95px; */
    }

    .app_do {
        display: none !important;
    }

    .mainHeader .humbugMenu {
        right: 10px;
        display: block;
        z-index: 9;
        bottom: 40px;        /* top: 20px; */
    }

    .mainHeader .humbugMenu.close {
        bottom: 48px;
        right: 0;
    }

    .humbugMenu.close span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-bottom: -3px;
    }

    .humbugMenu.close span:nth-child(2) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .humbugMenu.close span:nth-child(3) {
        display: none;
    }

    .menuOverlay {
        position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
        display: none;
    }

    .mainHeader nav {
        width: 90%;
        top: 100%;
        right: -100vw;
        background: #fff;
        z-index: 2;
        position: absolute;
        padding-top: 10px;
        margin-top: 0;
        -webkit-transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -ms-transition: 0.5s ease all;
        -o-transition: 0.5s ease all;
        transition: 0.5s ease all;
    }

    .mainHeader nav.active {
        right: 0;
    }

    .mainHeader nav>ul>li {
        display: block;
    }

    .mainHeader nav>ul>li>a {
        color: #005596;
        padding: 13px 15px 14px 30px;
        display: block;
        font-family: "AllianzB";
        font-size: 1.8rem;
        position: relative;
    }

    .mainHeader nav>ul>li>a:after {
        content: "";
        width: 12px;
        height: 12px;
        position: absolute;
        top: 20px;
        right: 24px;
        background: url(../../../../../content/dam/bagic/index/sprite.png) no-repeat;
        background-position: -320px -386px;
    }

    .mainHeader nav>ul>li .sumMenuSec {
        position: relative;
        height: auto;
        top: auto;
        left: auto;
        opacity: 1;
        visibility: visible;
        z-index: 2;
        -webkit-transition: 0s ease all;
        -moz-transition: 0s ease all;
        -ms-transition: 0s ease all;
        -o-transition: 0s ease all;
        transition: 0s ease all;
    }

    .mainHeader nav ul .sumMenuSec .container {
        border: none;
    }

    .mainHeader .sumMenuSec {
        padding-top: 0;
    }

    .mainHeader nav>ul>li .sumMenuSec .container {
        padding: 0;
    }

    .mainHeader nav>ul>li .sumMenuSec .closeBtn {
        display: none;
    }

    .mainHeader .sumMenuSec .closeBtn {
        right: 3%;
        top: 25px;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li {
        display: block;
        margin: 0;
        width: 100%;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .iconSec {
        width: 100%;
        text-align: left;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .iconSec p {
        position: relative;
        padding: 12px 5px 12px 55px;
        font-size: 1.8rem;
        font-family: "AllianzSans";
        color: #6c6c6c;
        font-weight: bold;
        text-align: inherit;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .iconSec .animIconSec {
        display: none;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .links {
        display: none;
        width: 100%;
        padding: 0px 5px 0px 70px;
        position: relative;
        margin: 8px 0 15px;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .links:before {
        content: "";
        position: absolute;
        left: 55px;
        top: 0;
        height: 100%;
        width: 1px;
        background: #e1e1e1;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .links li {
        line-height: 16px;
        margin-bottom: 12px;
    }

    .mainHeader nav>ul>li .sumMenuSec .container>ul>li .links a {
        color: #0071bb;
        font-size: 1.5rem;
        font-family: "AllianzSans";
        line-height: 16px;
    }

    .mainHeader nav>ul>li:last-child a:before {
        background: url(../../../../../content/dam/bagic/index/govt-scheme.png) no-repeat;
    }

    .govtSchemeSub {
        left: 0px;
        margin-top: -3px;
    }

    .mainHeader nav ul li.govtScheme .govtSchemeSub a {
        margin: 7px 0;
    }

    .app_do_mo {
        display: block;
    }

    .mainHeader nav .contactSec {
        display: block;
        background: #f2f2f2;
        padding: 30px 10px 30px 25px;
        margin-top: 20px;
    }

    .mainHeader nav .contactSec span {
        display: block;
        color: #5e5e5e;
        font-size: 1.6rem;
        font-family: "AllianzSansLight";
        margin-bottom: 2px;
    }

    .mainHeader nav .contactSec strong {
        font-family: "AllianzB";
        color: #5e5e5e;
        font-size: 1.6rem;
        display: block;
    }

    .mainHeader nav .contactSec .mailId {
        margin-top: 10px;
    }

    .mainHeader nav .contactSec span {
        display: block;
        color: #5e5e5e;
        font-size: 1.6rem;
        font-family: "AllianzSansLight";
        margin-bottom: 2px;
    }

    .mainHeader .rightSec {
        text-align: left;
        margin-right: 0;
        margin-top: 10px;
        float: right;
    }

    .mainHeader .rightSec .langSec.customSelect {
        margin-top: 8px;
        right: 2px;
        min-width: 60px;
        margin-left: 10px;
        position: absolute;
        top: 0;
    }

    .mainHeader .rightSec .rightBottom {
        padding: 3px 0px;
        margin-top: -6px !important;
    }

    .searchSec {
        margin: 7px 0px 4px 14px;
    }

    .mainHeader .rightSec .rightBottom .searchSec {
        right: 115px;
        top: 14px;
    }

    .searchSec .inputbox,
    .searchActive .searchSec .inputbox {
        top: 3px;
    }

    .searchSec .inputbox,
    .searchSec .inputbox,
    .searchActive .searchSec .inputbox {
        width: 90%;
        left: 0px;
    }

    .searchSec .inputbox input {
        padding: 1px 10px 1px 0;
    }

    .searchSec .inputbox input.placeholder,
    .searchSec .inputbox input {
        font-size: 1.4rem;
    }

    .searchSec .inputbox .closeBtn {
        width: 28px;
    }

    .mainHeader .rightSec .notificationWrap .notification {
        position: relative;
        top: 0px;
        right: 0;
        margin-top: 5px;
        z-index: 2;
    }

    .dropdown-menu-notify,
    .dropdown-menu-notify:before {
        right: auto;
    }

    .mainHeader .rightSec .formaction {
        margin-right: 40px;
    }

    .mainHeader .rightSec .rightBottom .claim-dropdown-menu {
        left: -100px;
        top: 32px;
    }

    .mainHeader .rightSec .rightBottom .getInTouch {
        margin-top: -2px;
    }

    .mainHeader .rightSec .rightBottom .getInTouch .dropdown-menu {
        top: 30px;
        left: -180px;
        width: 300px;
    }

    .dropdown-menu ul li {
        padding: 10px;
    }

    .dropdown-menu ul li p {
        font-size: 1.6rem;
    }

    .dropdown-menu ul li .icon a[href^="tel:"] {
        pointer-events: auto !important;
        cursor: pointer;
        text-decoration: none;
    }

    .dropdown-menu ul li .icon a {
        font-size: 1.6rem;
    }

    .mainHeader .rightSec .ph-numbers-header {
        top: 68px !important;
        right: 2% !important;
    }

    .ph-numbers-header .sales-icon {
        font-size: 1.3rem !important;
    }

    .ph-numbers-header .sales-icon a {
        font-size: 1.3rem !important;
    }

    .popupSec {
        padding: 10px;
        height: 280px;
    }

    .popupSec.searchPopup {
        top: 212px !important;
    }

    .model-container .keyword {
        margin-top: 22px;
    }

    .model-container .keyword .keywordHeader {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .search-popup .model-container {
        padding: 10px;
        max-width: 94%;
        padding-top: 40px;
    }

    .model-container .keyword p {
        padding: 4px 10px;
        margin-bottom: 13px;
    }

    /********* Header MOBILE CSS END *********/

    /********* Breadcrumb CSS START *********/
    .ip-heading {
        font-size: 2rem;
    }

    .ip-subheading {
        font-size: 1.4rem;
    }

    /********* Breadcrumb CSS END *********/

    /******** Insurance banner Mobile CSS Start  *********/
    .bannerWrap.headsDetailPage {
        padding: 30px 0;
    }

    .bannerWrap.headsDetailPage .bannerHeads h1 {
        font-size: 2rem;
    }

    .bannerWrap .bannerWrapLeft,
    .bannerWrap .bannerWrapCenter {
        width: 100%;
    }

    .bannerImgWrap.bannerActive .bannerCircle {
        width: 290px;
        height: 290px;
        margin: 0 auto;
        float: none;
    }

    .bannerImgWrap .bannerCircle.fourWheelerBanner .bannerCircleText {
        font-size: 2.2rem;
    }

    .bannerImgWrap .bannerCircle.fourWheelerBanner .bannerCircleImg img {
        max-width: 90%;
    }

    .bannerWrap .bannerWrapCenter {
        padding-top: 30px;
    }

    .bannerWrap .bannerWrapCenter .buyWheelForm {
        zoom: 100%;
    }

    .bannerWrap.headsDetailPage .bannerWrapCenter .buyWheelForm p {
        padding: 20px 10px;
    }

    .bannerWrap .bannerWrapCenter .buyWheelForm p,
    .bannerWrap .bannerWrapCenter .buyWheelForm .protectWheelGo .btn {
        font-size: 2rem;
    }

    .bannerWrap .bannerWrapCenter .buyWheelForm .vehicleNumberInput input {
        font-size: 1.8rem;
    }

    .bannerWrap .bannerWrapCenter .buyWheelForm .registrationInput input {
        font-size: 1.8rem;
    }

    .bannerWrap .bannerWrapCenter .buyWheelForm .mobNumberInput input {
        font-size: 1.8rem;
    }

    .bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.forgotCarNumber,
    .bannerWrap .bannerWrapCenter .buyWheelForm .letsStartLinkWrap a.retriveQuote {
        font-size: 1.6rem;
    }

    .refNoteTooltip span.toolContent {
        right: auto;
        left: -180px;
    }

    .bannerWrap .bannerWrapRight {
        display: none;
    }

    /******** Insurance banner Mobile CSS End  *********/

    /******** What is bike Insurance Mobile CSS START  *********/
    .whyUs {
        padding: 30px 0;
    }

    .whyUs h1.whyUsHead,
    .whyUs h2.whyUsHead {
        font-size: 2.1rem;
    }

    .whyUs p {
        font-size: 1.8rem;
    }

    .healthPolicyCategory.whyUs p,
    .whyUs p {
        width: 100%;
    }

    .whyUs p a.moreWhyUsClick,
    .lessWhyUsClick {
        font-size: 1.4rem;
    }

    .vmore-ht-100px {
        height: 160px;
    }

    /******** What is bike Insurance Mobile CSS End  *********/

    /******** Scroll tabs List Mobile CSS START  *********/
    #righty,
    #lefty {
        display: none;
    }

    .splTab .tabbing-links {
        padding-bottom: 7px !important;
        padding-top: 7px !important;
    }

    .terms-tabbing-wrap .tabbing-container .tabbing-links ul {
        text-align: center;
        padding-left: 14px;
    }

    .splTab .tabbing-links ul.ulSplTab {
        overflow-x: scroll;
        overflow-y: scroll;
        width: 100% !important;
    }

    .splTab .scrollsub {
        display: block;
        position: absolute;
        top: 57px;
        right: 13px;
        font-size: 13px;
        color: #ffffff;
        text-transform: uppercase;
    }

    .tabHeading {
        font-size: 2.5rem;
        padding-bottom: 0px;
        margin-bottom: 10px;
    }

    .demystifyInsur .headingSec h3,
    .addOnWrap h2,
    .beforeBuyWrap .impPointOuter .impPointInnerL h2,
    .docDownAndRenew h4,
    .aboutBoxSec.prodListing h2,
    .demystifyInsur .headingSec h3 {
        font-size: 2rem;
    }

    .registerYourClaimFRMwrp.terms-tabbing-wrap .tabbing-container .tabbing-content-wrap .tabbing-content-item .tab-accord-wrap .tab-accord-item .tab-accord-item-details p {
        padding-bottom: 10px;
        font-size: 1.8rem;
        padding-left:10px
    }

    .tableOuter {
        overflow: auto;
    }

    .tableOuter .productCustomTable {
        border: none;
        width: 767px;
        overflow: auto;
    }

    .splTabWrap .splTab .tableOuter .productCustomTable.splTabTableSmall {
        width: 100%;
    }

    .tableOuter table td,
    .tableOuter table th {
        font-size: 1.4rem;
    }

    /******** Scroll tabs List Mobile CSS End  *********/

    /******** coversunderauto Mobile CSS START  *********/
    .addOnWrap .addonFlipcontainer {
        width: auto;
    }

    /* carousel */
    .slider-container {
        display: inline-flex;
        overflow: hidden;
        transform: translateX(0);
        transition: transform 0.3s ease-out;
        cursor: grab;
    }

    .slide {
        max-height: 100vh;
        width: 100vw !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        user-select: none;
    }

    .slide {
        max-width: 100%;
        max-height: 60%;
        transition: transform 0.3s ease-in-out;
    }

    .slide h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .slide h4 {
        font-size: 1.3rem;
    }

    .btn {
        color: #fff;
        text-decoration: none;
    }

    .grabbing .slide {
        transform: scale(0.9);
    }

    .addOnWrap .addonFlipcontainer .addonOuter {
        margin: 0;
    }

    .addOnWrap {
        padding: 30px 0;
    }

    .pc-slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
        position: absolute;
        bottom: 41px;
        left: 0;
        right: 0;
    }

    .slide-dot {
        width: 7px;
        height: 7px;
        background: black;
        border-radius: 50%;
        opacity: .25;
    }

    .slide-dot.active {
        opacity: 1;
    }

    /* Popup */
    .ba-addons-popup-content {
        padding: 11px 10px 6px 10px;
        max-width: 350px;        /* Amruta*/
        height: 125vh;
    }

    .ba-addons-popup-content p {
        font-size: 1.5rem;
    }

    /******** coversunderauto Mobile CSS END  *********/

    /******** Get Quote Mobile CSS START  *********/
    .textRte-listing-div {
        padding: 30px 0;
    }

    .getQuoteInner p {
        font-size: 2rem;
        line-height: 27px;
    }

    /******** Get Quote Mobile CSS End  *********/

    /******** insuranceBenefitWrap Mobile CSS START  *********/
    .insuranceBenefitWrap {
        padding: 30px 0 0;
    }

    .insuranceBenefitWrap .col.insuranceBenefitDetail {
        padding-bottom: 0px;
    }

    .insuranceBenefitWrap .col {
        width: 100%;
    }

    .healthPolicyCategory.insuranceBenefitWrap .col .contentSec {
        width: 100%;
        padding-right: 0;
    }

    .insuranceBenefitWrap .col .contentSec h2,
    .insuranceBenefitWrap .col .contentSec .videoHeading {
        font-size: 2.2rem;
        line-height: normal;
    }

    .healthPolicyCategory.insuranceBenefitWrap .col .contentSec ul li {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .insuranceBenefitWrap .col .contentSec ul li:before {
        top: 14px;
    }

    .healthPolicyCategory.insuranceBenefitWrap .col.insuranceVideo {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .insuranceBenefitWrap .col.insuranceVideo p {
        font-size: 1.8rem;
    }

    .insuranceBenefitWrap .col.insuranceVideo .insVideoWrap {
        width: 100%;
    }

    .healthPolicyCategory.insuranceBenefitWrap .blueBox.locateSec {
        margin-top: 0;
        position: relative;
        bottom: 0;
        max-width: 100%;
        width: 100%;
    }

    .insuranceBenefitWrap.healthPolicyCategory .nearestBranch {
        background: #005596;
    }

    .insuranceBenefitWrap.healthPolicyCategory .nearestBranch ul {
        padding: 0px 20px;
        width: 100%;
        max-width: 250px;
    }

    .insuranceBenefitWrap.healthPolicyCategory .nearestBranch ul li {
        width: 100%;
        padding: 15px;
        text-align: left;
    }

    .healthPolicyCategory .blueBox.locateSec .nearestBranch ul li a {
        font-size: 1.4rem;
    }

    .healthPolicyCategory .blueBox.locateSec .nearestBranch ul li:after {
        height: 1px;
        width: 100%;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    /* .insurance-video-content{
        padding: 15px;
        max-width: 80%;
        height: 260px;

    } */
    .insurance-video-content {
        padding: 20px;        /* max-width: 80%; */
        height: 294px;
        top: 200px;
    }

    .modal-container {
        display: block;
        align-items: center;
        justify-content: center;
        height: 100% !important;
    }

    .modal-bg-overlay {
        background: rgb(0 0 0 / 50%);
        position: fixed;
        z-index: 999;
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0;
        overflow: auto;
    }

    /******** insuranceBenefitWrap Mobile CSS End  *********/

    /******** beforebuyinsurance Mobile CSS START  *********/
    .impPointInnerR {
        padding-left: 20px;
        padding-right: 20px;
    }

    .beforeBuyWrap {
        padding: 10px 0 30px;
    }

    .beforeBuyWrap .impPointOuter {
        padding-left: 0px;
    }

    .beforeBuyWrap .impPointOuter .impPointInnerL,
    .beforeBuyWrap .impPointOuter .impPointInnerR {
        width: 100%;
        float: left;
    }

    .beforeBuyWrap .impPointOuter h2 {
        text-align: center;
    }

    .beforeBuyWrap .impPointOuter .impPointInnerL .impPointList {
        width: 100%;
        margin: 0 auto;
        float: none;
    }

    .beforeBuyWrap .impPointOuter .impPointInnerL .impPointList li {
        width: 50%;
        float: left;
        text-align: center;
        line-height: 40px;
    }

    .beforeBuyWrap .impPointOuter .impPointInnerL .impPointList li.sel {
        font-size: 1.8rem;
    }

    /******** beforebuyinsurance Mobile CSS End  *********/

    /******** docdownloadandrenew Mobile CSS START  *********/
    .docDownAndRenew .docDownloadSec,
    .docDownAndRenew .renewSec {
        width: 100%;
        height: auto;
    }

    .docDownAndRenew .docDownloadSec ul {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .docDownAndRenew .docDownloadSec ul li {
        width: 100%;
        border: none;
        padding: 15px 0;
        position: relative;
    }

    .docDownAndRenew .docDownloadSec ul li:after {
        width: 100%;
        position: absolute;
        bottom: 0;
        height: 2px;
        background: #0072bc;
        content: '';
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        margin-left: 0;
    }

    .docDownAndRenew .docDownloadSec ul li:last-child {
        padding-bottom: 0;
    }

    .docDownAndRenew .docDownloadSec ul li:last-child:after {
        content: none;
    }

    .docDownAndRenew .renewSec {
        padding: 30px 0;
    }

    /******** docdownloadandrenew Mobile CSS END  *********/

    /******** cusotmerstories Mobile CSS START  *********/
    .aboutBoxSec.prodListing {
        padding: 30px 0;
    }

    .aboutBoxSec .aboutBoxSecSlider {
        max-width: 100%;
    }

    .aboutBoxSec .aboutBoxSecSlider .item {
        width: 100%;
        display: inline-block;
        padding: 0 15px 30px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .aboutBoxSec .aboutBoxSecSlider .item .boxSec {
        padding: 10px 20px 15px;
        -webkit-box-shadow: 0 0 22px 2px #eaeaea;
        -moz-box-shadow: 0 0 22px 2px #eaeaea;
        -ms-box-shadow: 0 0 22px 2px #eaeaea;
        -o-box-shadow: 0 0 22px 2px #eaeaea;
        box-shadow: 0 0 22px 2px #eaeaea;
    }

    .aboutBoxSec .aboutBoxSecSlider .item .boxSec .topSec .nameSec:before {
        width: 41px;
        height: 41px;
        margin-right: 8px;
        background-position: -290px 0;
    }

    .aboutBoxSec .aboutBoxSecSlider .item .boxSec .detailSec {
        height: auto;
    }

    .aboutBoxSec .btnSec {
        margin-top: 0px;
    }

    /******** cusotmerstories Mobile CSS END  *********/

    /********faq simplifyInsurance Mobile CSS START  *********/
    .simplifyInsurance {
        padding: 0 0 50px 0;
    }

    .simplifyInsurance .simplifyAccordWrap .simplifyAccordHead .iconSec {
        margin: 0 2% 0 0;
        float: left;
        width: 90px;
    }

    .simplifyInsurance .simplifyAccordWrap .simplifyAccordHead .iconSec .svgSec {
        width: 90px;
        margin-left: 0;
        margin-right: 0;
    }

    .simplifyInsurance .simplifyAccordWrap .simplifyAccordHead h2 {
        width: 60%;
        font-size: 2.2rem;
    }

    .simplifyInsurance .simplifyAccordWrap .simplifyAccordInner {
        width: 100%;
        margin: 0;
    }

    .simplifyInsurance .simplifyAccordWrap .simplifyAccordInner .simplifyAccordMain h3 {
        font-size: 1.5rem;
        padding: 20px 35px 20px 0;
    }

    .simplifyInsurance .simplifyAccordWrap .simplifyAccordInner .simplifyAccordMain .simplifyAccordContent p {
        font-size: 1.5rem;
    }

    .accordShowHide {
        width: 100%;
        margin: 0;
    }

    .accordShow,
    .accordHide {
        font-size: 1.4rem;
    }

    /********faq simplifyInsurance Mobile CSS END  *********/

    /********demystifyInsur Mobile CSS START  *********/
    .demystifyInsur {
        text-align: left;
        padding: 30px 0;
    }

    .demystifyInsur .headingSec {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0px;
        text-align: center;
    }

    .demystifyInsur.productlanding .headingSec .iconSec .svgSec,
    .demystifyInsur .headingSec .iconSec .svgSec {
        width: 68px;
        margin: 0;
    }

    .demystifyInsur ul {
        width: 100%;
        padding-bottom: 15px;
    }

    .demystifyInsur ul li {
        margin-right: 0px;
        display: block;
        font-size: 1.6rem;
        float: left;
        margin-bottom: 15px;
    }

    .demystifyInsur .btn {
        margin: 0 auto;
        display: block;
        width: 144px;
    }

    /********demystifyInsur Mobile CSS END  *********/
}

.btnlink {
    display: none;
}

header.mainHeader .container nav>ul>li:nth-child(1) .sumMenuSec>ul>li:nth-child(2) .iconSec a::after {
    background: #ff8100;
    padding: 1px 6px;
    content: "New";
    font-size: x-small;
    color: white;
    border-radius: 9px;
    margin: 6%;
}

.searchresult li {
    border-bottom: 1px solid #c7c7c7;
    padding: 5px 20px;
    cursor: pointer;
    display: none;
}

ul#searchresult::-webkit-scrollbar {
    display: none;
}

.mainHeader nav>ul>li.open .sumMenuSec {
    z-index: 1;
    min-height: auto !important;
    min-width: 324px;
    display: contents !important;
}

/* ====== 7-12-2023 ======================== */
.setRenewalWrap .inputBox input {
    background: transparent;
    width: 100%;
    font-size: 1.8rem;
    color: #757575;
    border-bottom: 1px solid lightgrey;
}

.setRenewalWrap .modal-close-icon {
    width: 20px;
    position: absolute;
    height: 20px;
    right: 12px;
    top: 25px;
    cursor: pointer;
    z-index: 9999;
}

.setRenewalWrap .inputBox input {
    background: transparent;
    width: 100%;
    font-size: 1.8rem;
    color: #757575;
    border-bottom: 1px solid #ccc;
}

.setRenewalWrap .inputBox .cc:before {
    display: none;
}

a.landingClick {
    position: inherit !important;
}

.setRenewalWrap .fieldBox {
    width: 100%;
    float: left;
    padding: 8px 0 0;
}

.fieldBox.disclaimerandwhatsapp {
    margin-top: inherit !important;
    padding: 0% !important;
}

@media screen and (max-width:992px) {
    .modal-container {
        display: block;
        align-items: center;
        justify-content: center;
        height: 100% !important;
        background: #fff;
        margin: 5%;
    }

}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

/*     ===== --13-12-2023 ================= */
@media screen and (max-width:480px) {
    #set-renewal-popup .modal-container {
        height: auto !important;
        margin: 1%;
    }

    #set-renewal-popup .setRenewalWrap {
        position: absolute;
        max-width: 95%;
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #set-renewal-popup .setRenewalWrap input::-webkit-date-and-time-value {
        text-align: left;
    }

    svg.dnc_svg_icon {
        transform: rotate(90deg);
        margin-right: 7px;
    }

    .app_do_mo .dnc {
        background: #fff !important;
        border: none;
        color: #005596;
        font-size: 1.8rem;
        padding: 0;
    }

}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
svg.dnc_svg_icon {
    transform: rotate(90deg);
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

/* ===== --5 ============ */
.sub-menu-link ul li {
    display: inline-flex;
    align-items: center;
}

li.update-kyc a {
    bottom: 0px !important;
}

.sub-menu-link ul li a {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #0072bc;
    margin: 0 15px 0 0;
    text-transform: capitalize;
    cursor: pointer;
}

.header-sub {
    zoom: 95%;
}

@media only screen and (max-width:480px) {
    li.update-kyc {
        position: relative !important;
        top: 0px !important;
        height: inherit !important;
    }

    .sub-menu-link {
        width: 100% !important;
    }

    .sub-menu-link ul li a {
        font-size: 1rem !important;
        left: 0px !important;
    }

    li.update-kyc a {
        bottom: 0px !important;
        padding: 5px !important;
        margin: 0 !important;
    }

    header.mainHeader nav ul {
        display: flow !important;
    }

    .mainHeader nav {
        width: 90% !important;
    }

}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

/* --5 */
.mainHeader .updatekyc a {
    background-color: #ff9b41;
    padding: 4px;
    color: white !important;
    border-radius: 10px;
}

.mainHeader .sub-menu-link ul li a {
    margin: 0 5px 0 0;
}

@media screen and (max-width:768px) {
    .mainHeader .sub-menu-link {
        justify-content: space-between;
    }

    .mainHeader .sub-menu-link ul li a {
        margin: 0 4px 0 0;
    }

    .mainHeader .sub-menu-link ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

