/* common css  */
.paras-btn-common {
    background-color: #185DA9;
    border: 1px solid #185DA9;
    border-radius: 15px;
    padding: 10px 20px;
}

.paras-btn-common.cart-btn {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
}

.paras-btn-common.cart-btn svg {
    width: 21px;
    height: 21px;
    margin-left: 5px;
}

.paras-btn-common span {
    color: #FFFFFF;
    font-weight: 400;
}

.paras-btn-common.transparent {
    background-color: #FFFFFF;
}

.paras-btn-common.transparent span {
    color: #185DA9;
    font-weight: 500;
}

/* heading  */
.paras-section-heading {
    font-size: 26px;
    color: #292929;
    font-weight: 500;
    text-transform: capitalize;
    max-width: 400px;
}

.paras-section-heading.white {
    color: #FFFFFF;
}

.section-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* modal  */
.modal-hidden {
    display: none;
}

.modal-hidden.active {
    display: block;
}

/* breadcrump  */
.breadcrumb {
    background-color: #f0f4fb;
    padding: 12px 0 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #dce8f7;
    position: relative;
    top: 10px;
    z-index: 100;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
}

.breadcrumb .container ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb ul li {
    display: flex;
    align-items: center;
    color: #555;
}

.breadcrumb ul li::after {
    content: "›";
    margin-left: 6px;
    color: #185DA9;
    font-size: 15px;
    line-height: 1;
}


.breadcrumb ul li:last-child::after {
    display: none;
}

.breadcrumb ul li a {
    color: #185DA9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: #0d3fa6;
}

.breadcrumb ul li.active {
    color: #4C4C4C;
    font-weight: 500;
}


/* header  */
.revamp-header .top-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #B6C8CD80;
}

.header-wraper-row {
    position: relative;
}

.revamp-header .nav-menu {
    border-bottom: none;
}

.nav-menu .header-wraper-row {
    justify-content: center;
}

.header-location-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.symptoms-search-box {
    margin-bottom: 0;
}

/* .header-search-bar {
    width: 30%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} */

.header-search-bar {
    width: 40%;
}

.right-header {
    width: fit-content;
}

.search-icon {
    background-color: #185DA9;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.search-icon svg {
    width: 12px;
    height: 12px;
}

.symptoms-search-box input {
    padding-left: 60px;
}

.symptoms-search-box input::placeholder {
    color: #808080;
    font-weight: 400;
}

.top-header {
    position: relative;
}

.mobile-nav-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    box-shadow: 0px 24px 64px 0px #00000040;
    background-color: #FFFFFF;
    display: none;
    z-index: 999999;
    padding: 20px 0;
}

.bottom-nav-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.bottom-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bottom-nav span {
    color: #4C4C4C;
    font-weight: 400;
    font-size: 14px;
}

.bottom-nav:hover span,
.bottom-nav.active span {
    font-weight: 700;
    color: #185DA9;
}

.bottom-nav:hover svg path,
.bottom-nav.active svg path {
    stroke: #185DA9;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    color: #185DA9;
    font-size: 14px;
}

.mobile-header-bottom {
    display: none;
}

.paras-hero-wrapper {
    width: 100%;
}

.common-slide-btn {
    width: 42px;
    height: 42px;
}

.common-slide-btn svg {
    width: 12px !important;
    height: 12px !important;
}

.radius-15 {
    border-radius: 15px;
}

.btn-bolder {
    font-weight: 600;
}

/* quick links section  */

.quick-link-section {
    padding: 30px 0;
}


.quick-link-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.quick-link-box {
    background-color: #F5F5F5;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 5px;
    align-items: flex-end;
    transition: all 0.6s ease;
}

.quick-link-box:hover {
    box-shadow: 0 0 8px #00000017;
}


.quick-link-box .quick-link-col h4 {
    font-size: 18px;
    color: #4C4C4C;
    font-weight: 500;
}

.quick-link-box .quick-link-col p {
    font-size: 14px;
    color: #959595;
    font-weight: 400;
    line-height: 1.3;
    max-width: 180px;
    margin: 10px 0;
}

.quick-arrow-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #185DA9;
    border-radius: 50%;
}

.quick-arrow-wrapper svg {
    width: 8px;
}

/* popular test  */

.paras-popular-slider-top {
    position: relative;
    padding: 0;
}

.popular-test-section {
    background: linear-gradient(90deg, #185DA9 0%, #092442 100%);
}

.popular-test-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-explore-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-explore-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.section-explore-btn svg {
    width: 30px;
    height: 30px;
}

/* .section-explore-btn svg path{
    stroke: #000;
}

.section-explore-btn svg circle{
    stroke: #000;
} */




.price-card {
    border-radius: 16px;
    background: linear-gradient(152.05deg, #D0E9FA 17.33%, #FFFFFF 91.09%);
    overflow: hidden;
}

.price-card.swiper-slide {
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-top-wrapper {
    padding: 30px;
}

.pirce-info-chip {
    background-color: #fdad0066;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
}

.pirce-info-chip span {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: #6B511A;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.price-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 0;
    gap: 25px;
}

.price-row.border-tb {
    border-top: 1px solid #C2D3DE;
    border-bottom: 1px solid #C2D3DE;
    border-style: dashed;
    border-left: none;
    border-right: none;
}

.card-amount-wrapper{
    margin-left: auto;
    display: flex;
    flex-direction: column;
}


.price-row-half {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-row-half svg {
    width: 25px;
}

.price-info-list {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.price-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4C4C4C;
    font-size: 14px;
    font-weight: 400;
}

.price-row-heading,
.price-row-heading a {
    color: #292929;
    font-size: 16px;
    font-weight: 500;
}

.price-row-heading.big {
    font-size: 18px;
    min-height: 44px;
}

.card-actual-price {
    font-size: 24px;
    color: #006FBB;
    font-weight: 600;
    padding-right: 5px;
}

.card-actual-price.white {
    color: #fff;
}

.card-strike-price {
    color: #9B9B9B;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
}

.card-strike-price.white {
    color: rgba(255, 255, 255, 0.6);
}

.price-cta-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.price-cta {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #185DA9;
}

.discout-chip {
    background-color: #FDAB00;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    color: #292929;
    font-weight: 500;
}

.price-cta span {
    font-size: 14px;
    color: #FFFFFF;
}

.price-cta.light {
    background: #FFFFFF;
}

.price-cta.light span {
    color: #185DA9;
}

.price-cta svg {
    width: 24px;
}

.price-cta.light svg {
    width: 20px;
}

/* why choose css  */
.why-choose-lab {
    background-color: #FFFFFF;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.why-choose-number {
    font-weight: 600;
    font-size: 50px;
    color: #185DA9;
    margin-bottom: 20px;
    border-bottom: 1px solid #DCE0E4;
    padding-bottom: 10px;
    position: relative;
}

.why-choose-number::after {
    content: "";
    width: 40%;
    height: 1px;
    background-color: #185DA9;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
}

.why-choose-info {
    color: #4C4C4C;
    font-size: 16px;
    font-weight: 400;
}

/* vital organs css  */

.vital-organ-section {
    background-color: #F5F5F7;
}

.organ-prev,
.organ-next,
.women-care-prev,
.women-care-next,
.popular-test-prev,
.popular-test-next {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: unset !important;
    right: auto !important;
    bottom: auto !important;
    border: 1px solid #185DA9;
    background-color: transparent;
    align-self: flex-end;
}

.popular-test-prev,
.popular-test-next {
    border: 1px solid #FFFFFF;
    background-color: transparent;
}

.popular-test-prev svg path,
.popular-test-next svg path {
    stroke: #FFFFFF;
}

.women-care-prev,
.women-care-next {
    border: 1px solid #E4E4E4;
}

.organ-prev svg path,
.organ-next svg path {
    stroke: #185DA9;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.pagination-wrapper .swiper-button-next,
.pagination-wrapper .swiper-button-prev {
    margin-top: 0 !important;
}

.vital-organ-slider {
    overflow: hidden;
    height: auto;
    padding: 5px;
}

.swiper-slide .vital-organ-card {
    height: 85px;
}

.vital-organ-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border: 1px solid #D8D6D6;
    border-radius: 20px;
    padding: 10px 14px;
    gap: 8px;
    /* transition: all 0.5s ease; */
}

.vital-organ-link-card:hover {
    box-shadow: 0 0 5px #185ea941;
}

.vital-organ-link-card span {
    font-size: 14px;
    color: #4C4C4C;
    font-weight: 600;
}

/* women care slider css  */

.women-care-section {
    background-color: #F5F5F7;
}

.care-slider-tab-box {
    display: flex;
    margin-bottom: 20px;
    gap: 30px;
    border-bottom: 1px solid #DCE0E4;
    padding-bottom: 10px;
    overflow: auto;
    scrollbar-width: none;
}

.care-slider-tab-box::-webkit-scrollbar {
    display: none;
}


.care-slider-tab {
    color: #4C4C4C;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    text-wrap: nowrap;
}

.care-slider-tab.active {
    color: #185DA9;
    position: relative;
}

.care-slider-tab.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #185DA9;

}

.care-slider {
    display: none;
    overflow: hidden;
}

.care-slider.active {
    display: block;
}

.care-slider-tab-box {
    padding-left: 0;
    padding-right: 0;
}


.popular-test-top-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-test-slider-btn .swiper-button-prev,
.popular-test-slider-btn .swiper-button-next {
    position: static !important;
    margin: 0 !important;
}

/* quality section css  */
.quality-section {
    background-color: #FFFFFF;
}

.quality-card-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #C2D3DE;
    border-radius: 15px;
}


.quality-card {
    height: 170px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #C2D3DE;
}

.quality-card:last-child {
    border-right: none;
}

/* testimonial section  */
.testimonial-section {
    background-color: #F5F5F7;
}

.testimonials-slider {
    overflow: hidden;
}

.testimonial-card {
    min-height: 280px;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 0.64px solid #DFE4F3;
    padding: 30px 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    height: initial !important;
}

.testimonial-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.testimonial-para {
    font-size: 16px;
    font-weight: 400;
    color: #4C4C4C;
    text-align: center;
    max-width: 80%;
    margin: auto;
    margin-bottom: 10px;
    max-height: 70px;
    overflow-y: auto;
    padding-right: 5px;
}

.testimonial-para::-webkit-scrollbar {
    width: 3px;
}

.testimonial-para::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-para::-webkit-scrollbar-thumb {
    background: #185ea9df;
    border-radius: 10px;
}

.testimonial-para::-webkit-scrollbar-thumb:hover {
    background: #185ea99c;
}


.testimonial-name-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.testimonial-name-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.64px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
    background-color: rgba(34, 54, 111, 0.2);
}

.testimonial-name-wrapper {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EFF3FF;
}


.testimonial-name-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #185DA9 0%, #092442 100%);
    border-radius: 50%;
}

.testimonial-name {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-bottom {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.testimonial-customer-name {
    font-size: 14px;
    color: #313131;
    font-weight: 500;
}

/* faq section  */

.faq-section {
    background-color: #ffffff;
}

.faq-tab-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    align-items: start;
}

.faq-item {
    border-top: 1px solid #dce0e4;
    padding: 30px 0;
    width: 100%;
}

.faq-item:last-child,
.faq-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid #dce0e4;
}

.faq-top-box,
.popular-top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-heading {
    font-size: 16px;
    font-weight: 500;
    color: #4c4c4c;
    text-transform: capitalize;
}

.faq-arrow svg {
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-arrow svg path,
.popular-tab.active .popular-arrow svg path {
    stroke: #185da9;
}


.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
    overflow: hidden;
    margin-top: 0;
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
    margin-top: 12px;
}

.faq-content-inner {
    overflow: hidden;
}

.faq-content p {
    font-size: 14px;
    color: #959595;
    line-height: 1.6;
    font-weight: 400;
}

/* popular tab section  */
.popular-tab-section {
    padding: 30px 0;
    background-color: #F5F5F7;
}


.popular-tab-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.popular-tab {
    background-color: #FFFFFF;
    padding: 20px;
    border: 1px solid #DCE0E4;
    border-radius: 15px;
}

.popular-tab-heading {
    color: #4C4C4C;
    font-size: 16px;
    font-weight: 400;
}

.popular-arrow svg {
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.popular-tab.active .popular-arrow svg {
    transform: rotate(180deg);
}

.popular-tab-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
    overflow: hidden;
    margin-top: 0;
}

.popular-tab.active .popular-tab-content {
    grid-template-rows: 1fr;
    margin-top: 12px;
}

.popular-tab-content-inner {
    overflow: hidden;
}

.popular-listing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    list-style: none;
    padding-left: 5px;
}

.popular-listing li a {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
    text-decoration: none;
}

/* footer code  */
footer {
    margin-top: 0;
    background: linear-gradient(90deg, #185DA9 0%, #092442 100%);
}

footer.padding-t-b {
    padding-bottom: 20px;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border: 1px solid #c3d4df80;
    border-radius: 15px;
    overflow: hidden;
}

.footer-column {
    border-right: 1px solid #c3d4df80;
    height: 100%;
}

.footer-column:last-child {
    border-right: none;
}

.footer-column-inner {
    padding: 40px;
}

.footer-news-letter-heading {
    color: #FFF9F0;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
}

.newsletter-box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #C2D3DE;
    padding-bottom: 15px;
}

.newsletter-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
}

.newsletter-box input::placeholder {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}


.newsletter-box button {
    background: none;
    border: none;
    outline: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
}

.newsletter-box button svg {
    width: 15px;
}

.list-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.list-heading-wrapper svg {
    display: none;
}

.list-heading {
    color: #FFF9F0;
    font-size: 20px;
    font-weight: 400;
}

.footer-link-listing {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-listing li a {
    color: #ffffffd3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-link-listing li a:hover {
    color: #fff;
}

.footer-links-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.footer-copy-text {
    color: #ffffffaf;
    font-size: 12px;
    font-weight: 400;
}

.privacy-link {
    text-decoration: underline;
    color: #ffffffaf;
    line-height: 1.5;
}

/* product detail hero  */
.product-detail-hero {
    background: linear-gradient(90deg, #185DA9 0%, #092442 100%);
}

.product-detail-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-detail-hero-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.product-detail-hero-row.left {
    max-width: 605px;
}

.product-detail-hero-heading {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.product-detail-hero-para {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    font-style: regular;
    text-transform: capitalize;
}

.product-detail-info-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin: 30px 0;
    border-top: 1px dashed #C2D3DE;
    border-bottom: 1px dashed #C2D3DE;
}

.product-detail-info-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-info-wrap svg {
    width: 20px !important;
}

.product-info-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.product-detail-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-direction: row-reverse;
}

.product-detail-cta-row .price-cta {
    padding: 15px 30px;
}

.product-detail-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}


.product-detail-hero-card {
    background: linear-gradient(152.05deg, #B7E1FF 17.33%, #E1F2FE 91.09%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.product-hero-card-circle {
    background: linear-gradient(90deg, #4598F3 0%, #1C599C 100%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: relative;
}

.product-hero-card-circle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.product-detail-card-wrap h4 {
    font-weight: 600;
    font-size: 14px;
    color: #292929;
    margin-bottom: 5px;
}

.product-detail-card-wrap p {
    font-weight: 400;
    font-size: 15px;
    color: #292929;
}

/* product detail stat  */
.product-detail-stat-section {
    padding: 30px 0;
}

.product-detail-stat-grid {
    background-color: #F5F5F7;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 16px;
    min-height: 100px;
}

.product-detail-state-box {
    border-right: 1px dashed #185DA980;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.product-detail-state-box svg {
    height: 70px;
}

.product-detail-state-box:last-child {
    border-right: none;
}

.product-detail-stat-number {
    color: #185DA9;
    font-size: 26px;
    font-weight: 500;

}

.product-detail-stat-content-wrap h4 {
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-detail-stat-content-wrap h3 {
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-detail-stat-content-wrap p {
    color: #292929;
    font-size: 15px;
    font-weight: 400;
}

.product-detail-stat-content-wrap p:nth-child(3) {
    display: none;
}

.product-main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.product-main-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.popular-listing {
    display: none;
}

.active .popular-listing {
    display: block;
}

.product-main-row {
    margin-bottom: 30px;
}

.product-main-heading-primary {
    font-size: 26px;
    color: #292929;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-main-heading-secondary {
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    margin-bottom: 10px;
    margin-top: 20px;
}

.product-main-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #4C4C4C;
    list-style: disc;
}

.proudct-main-list {
    list-style-type: disc;
    padding-left: 15px;
}

.proudct-main-list li::marker {
    color: #4C4C4C;
}

/* .proudct-main-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4C4C4C;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    top: 50%;
    transform: translateY(-50%);
} */

.product-main-accordion-box {
    min-width: 500px;
    background-color: #F5F5F7;
    padding: 40px 30px;
    border-radius: 15px;
}

.product-home-accordion-item {
    border-bottom: 1px solid #E8E8E8;
    padding: 15px 0;
}

.product-main-accordion-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 14px;
}

.product-main-accordion-heading-text {
    color: #4C4C4C;
    font-weight: 500;
    font-size: 16px;
    max-width: 80%;
}

.product-main-accordion-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #185DA9;
    font-weight: 500;
}

.product-main-accordion-arrow-box svg {
    transition: all 0.6s ease-in-out;
    transform: rotate(0deg);
}

.product-home-accordion-item.active svg {
    transform: rotate(180deg);
}

.product-home-accordion-item .popular-listing {
    margin-top: 10px;
}

.product-home-accordion-item .popular-listing li a {
    font-size: 12px;
}



.account-dropdowen {
    display: none;
    transition: all 0.3s;
}

.account-dropdowen.show {
    display: block;
}

.account-dropdowen .top-header-btn.after-login-btn {
    display: none;
}


.test-tab-box {
    display: none;
}

.test-tab-box.active {
    display: block;
}

.seo-content {
    padding: 30px 0;
    background-color: #fff;
}

.seo-contnet-wrapper .seo-para,
.seo-contnet-wrapper p {
    font-size: 15px;
    color: #4C4C4C;
    line-height: 1.6;
    font-weight: 400;
}

.row-view-detail-wrpaer select.form-control{
border: 1px solid #185DA9;
border-radius: 4px;
padding: 6px 10px;
color: #185DA9;
font-weight: 500;
cursor: pointer;
}



@media only screen and (max-width: 1399px) {
    .symptoms-search-box input {
        padding-left: 50px;
    }

    .quick-link-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail-hero-row.left {
        max-width: 480px;
    }

    .product-main-accordion-box {
        min-width: 480px;
    }

}

@media only screen and (max-width: 1244px) {
    .women-care-slider-btn {
        display: flex;
    }

    .product-detail-hero-row.left {
        max-width: 420px;
    }

}

@media only screen and (max-width: 991px) {
    .header-location-nav {
        position: unset;
        top: auto;
        left: auto;
        transform: unset;
        margin-top: 20px;
    }

    .mobile-nav-bottom {
        display: block;
    }

    .mobile-header-bottom-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .mobile-header-bottom-wrapper .symptoms-search-box {
        width: 70%;
    }

    .mobile-header-bottom {
        display: block;
    }

    .quick-link-list {
        grid-template-columns: repeat(2, 1fr);

    }

    .why-choose-number {
        font-size: 35px;
    }

    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .quality-card-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-card {
        border-bottom: 1px solid #C2D3DE;
    }


    .quality-card:nth-child(3),
    .quality-card:nth-child(4) {
        border-bottom: none;
    }

    footer.padding-t-b {
        padding-bottom: 150px;
    }

    .product-detail-hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .product-detail-hero-row.left {
        max-width: 100%;
    }

    .product-detail-hero-row {
        width: 100%;
    }

    .product-detail-hero-heading {
        font-size: 28px;
    }

    .product-info-text {
        font-size: 14px;

    }

    .product-detail-stat-grid {
        grid-template-columns: repeat(2, 1fr);

    }

    .product-detail-state-box {
        padding-left: 20px;
        display: grid;
        grid-template-columns: 1fr .2fr 1.8fr;
        gap: 0;
    }

    .product-detail-state-box svg {
        height: 65%;
    }

    .product-detail-state-box:nth-child(2) {
        border-right: none;
        border-bottom: 1px dashed #185DA980;

    }

    .product-detail-state-box:nth-child(1) {
        border-bottom: 1px dashed #185DA980;
    }

    .product-detail-stat-content-wrap {
        padding: 40px 10px;
    }

    .product-main-wrapper {
        flex-direction: column-reverse;
    }

    .product-main-accordion-box {
        min-width: 100%;
    }

    .product-main-accordion-wrapper {
        width: 100%;
    }

    .product-main-accordion-heading-text {
        max-width: 70%;
    }
}

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

    .quick-link-icon-wrapper {
        width: 86px;
        height: 86px;
        background-color: #DFE8EE;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .quick-link-icon-box {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(139.16deg, rgba(0, 111, 187, 0.3) -9.74%, rgba(215, 239, 255, 0.3) 96.36%);
        border: 1px solid #185DA94D;
        border-radius: 50%;

    }
}

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

    .right-list-top-header li {
        width: auto;
        margin-right: 10px;
    }

    .right-list-top-header li:last-child {
        margin-right: 0;
    }


    .paras-btn-common.cart-btn svg {
        margin-left: 0;
        margin-right: 0;
    }

    .brand {
        padding-left: 0;
    }

    .paras-btn-common.cart-btn {
        width: 37px;
        height: 37px;
    }

    .paras-btn-common.cart-btn svg {
        width: 17px;
        height: 17px;
    }

    .paras-btn-common {
        padding: 4px 20px;
        border-radius: 12px;
    }

    .paras-btn-common.transparent span {
        font-weight: 600;
    }

    .top-header .container {
        padding: 0 15px;
    }

    .common-slide-btn {
        width: 34px;
        height: 34px;
    }

    .quick-link-box .quick-link-col p {
        display: none;
    }

    .quick-arrow-wrapper {
        display: none;
    }

    .quick-link-box {
        align-items: center;
        justify-content: center;
        flex-direction: row-reverse;
        padding: 15px;
        gap: 15px;

    }

    .quick-link-box .quick-link-col h4 {
        font-size: 14px;
    }

    /* .section-explore-btn {
        display: none;
    } */

    .popular-test-section .container {
        padding-right: 0;
    }



    .care-slider-tab-box {
        gap: 20px;
        padding-right: 15px;
        margin-right: -15px;
    }

    .care-slider-box,
    .testimonials-slider {
        margin-right: -15px;
    }

    .paras-section-heading {
        max-width: 320px;
    }


    .faq-tab-box {
        grid-template-columns: 1fr;
    }

    .faq-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    .faq-item:last-child {
        border-bottom: 1px solid #dce0e4;
    }

    .popular-tab-box {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    footer.padding-t-b {
        padding-bottom: 120px;
    }


    .footer-row {
        display: flex;
        flex-direction: column;
        max-width: 98%;
        margin: auto;
        border-bottom: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .footer-column {
        border-right: none;
        border-bottom: 1px solid #c3d4df80;
        width: 100%;
    }

    .footer-column:first-child {
        border-bottom: 1px solid #c3d4df80;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column-inner {
        padding: 20px;
        width: 100%;
    }

    .footer-column:not(:first-child) .footer-column-inner {
        padding: 0;
    }

    .list-heading-wrapper {
        padding: 20px;
        margin-bottom: 0;
        cursor: pointer;
    }

    .list-heading-wrapper svg {
        display: block;
        transition: transform 0.3s;
    }

    .footer-column.active .list-heading-wrapper svg {
        transform: rotate(180deg);
    }

    .footer-link-listing {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.3s;
        padding: 0 20px;
    }

    .footer-link-listing .navbar-link {
        padding: 0 !important;
    }

    .footer-column.active .footer-link-listing {
        max-height: 300px;
        padding: 0 20px 18px;
    }

    .footer-links-wrapper {
        flex-direction: column;
        text-align: center;
        border: 1px solid #c3d4df80;
        margin: 0px 3px;
        padding: 20px 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .newsletter-box {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .list-heading {
        font-size: 18px;
        font-weight: 300;
    }

    .footer-copy-text {
        max-width: 80%;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 300;
    }

    .newsletter-box input::placeholder {
        font-weight: 300;
    }

    .faq-top-box,
    .popular-top-box {
        align-items: flex-start;
    }

    .product-detail-hero-para {
        display: none;
    }

    .product-detail-info-wrap svg {
        width: 19px !important;
    }

    .product-detail-cta-row {
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 20px;
    }

    .discout-chip {
        font-size: 10px;
    }

    .product-detail-hero-card {
        padding: 15px;
    }

    .product-hero-card-circle {
        width: auto;
        height: auto;
        padding: 20px;
    }

    .product-hero-card-circle svg {
        width: 16px;
    }

    .product-detail-hero-card-wrapper {
        gap: 15px;
    }

    .product-detail-card-wrap p {
        font-size: 14px;
    }

    .product-detail-info-row {
        gap: 5px;
    }
}

@media only screen and (max-width: 480px) {
    .bottom-nav span {
        font-size: 12px;
    }

    .quick-link-section {
        padding: 15px 0;
    }

    .footer-news-letter-heading {
        font-size: 22px;
    }

    .product-info-text,
    .product-detail-cta-row .price-cta span,
    .product-detail-card-wrap p,
    .product-detail-card-wrap h4 {
        font-size: 12px;

    }

    .product-detail-cta-row .price-cta {
        padding: 10px 20px;
    }

    .product-main-accordion-heading-text {
        font-size: 14px;
    }

    .product-main-para {
        font-size: 16px;
    }

    .product-main-heading-secondary {
        font-size: 18px;
    }

    .product-main-accordion-box {
        padding: 40px 15px;
    }

    .product-main-accordion-heading-text {
        max-width: 60%;
    }

    .product-main-section {
        padding: 0;
    }

    .section-explore-btn {
        font-size: 12px;
    }

    .paras-section-heading {
        max-width: unset;
        font-size: 22px;
    }

    .popular-test-top-right {
        gap: 10px;
    }

    .section-explore-btn span {
        text-wrap: nowrap;
    }

}


/* new css akash */

.price-cta-box a {
    border-radius: 0;
}

.top-header-btn {
    width: 152px;
}

.login-btn-top-header {
    width: 76px;
    height: 44px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-link-box .quick-link-col h4 {
    text-transform: capitalize;
}

.price-row-heading.big {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 180px;
    text-wrap: wrap;
}

.select select {
    color: #fff !important;
}

.yt-videobox {
    padding-bottom: 0;
}

.blog-listing-section {
    margin-top: -30px;
}

.quick-link-box {
    justify-content: space-between;
}

.product-hero-card-circle img {
    margin: 0 !important;
}

.product-hero-card-circle {
    display: flex;
    align-self: center;
    justify-content: center;
}

.product-detail-hero-card {
    justify-content: flex-start;
}

.product-hero-card-circle {
    padding: 12px !important;
}

@media screen and (max-width: 767px) {
    .login-btn-top-header {
        width: 78px;
        height: 34px;
        font-size: 14px;
    }

    .blog-nav {
        margin-bottom: 20px;
    }

    .price-row-heading.big {
        max-height: max-content;
    }

    .quality-card:nth-child(2),
    .quality-card:nth-child(4) {
        border-right: 0;
    }

    .select-location-wraper {
        padding: 0 !important;
    }

    .select-location-wraper .close-dialog {
        background: #c7cbcb !important;
        border-radius: 20px;
        width: 20px !important;
        right: 7px !important;
        top: 5px !important;
        height: 20px !important;
    }

    .select-location-wraper .close-dialog svg {
        width: 14px;
        height: 14px;
    }

    .select-location-wraper .close-dialog svg line {
        color: #fff !important;
    }

    .popup-title {
        font-size: 16px;
    }

    .blog-listing-section {
        margin-top: 0;
    }

    .location-btn {
        justify-content: flex-start;
        margin-left: 17px;
    }


}

@media screen and (min-width:1399px) and (max-width: 1440px) {
    .quick-link-box {
        width: 312px;
        height: 150px;
    }
}

.suggestion-bar a {
    color: #61666b;
    background-color: #fff;
    z-index: 999;
}

.suggestion-bar {
    z-index: 111;
}

.suggestion-bar .suggestion-list {
    padding: 10px;
}

.newsletter-box {
    justify-content: space-between;
}

.footer-link-listing li a {
    text-transform: capitalize;
}

.lab-center-box {
    border: 0;
}

.active .popular-listing {
    max-height: 400px;
    /* adjust as needed */
    overflow-y: auto;
    padding-right: 6px;
    /* space for scrollbar */
}

/* Chrome, Edge, Safari */
.active .popular-listing::-webkit-scrollbar {
    width: 5px;
    /* thin scrollbar */
}

.active .popular-listing::-webkit-scrollbar-track {
    background: transparent;
}

.active .popular-listing::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    /* light grey */
    border-radius: 10px;
}

.active .popular-listing::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.why-choose-info {
    text-transform: capitalize;
}

@media only screen and (max-width:767px) {
    .price-cta span {
        font-size: 12px;
    }
}

.suggestion-list a {
    display: block;
    padding: 5px 15px;
    border-bottom: 1px solid #f5f5f5;
}

.select-location-wraper .close-dialog {
    background: #c7cbcb !important;
    border-radius: 20px;
    width: 20px !important;
    position: absolute;
    width: 24px;
    right: 20px !important;
    top: 24px !important;
    cursor: pointer;
    height: 20px !important;
}

.select-location-wraper .close-dialog svg {

    height: 14px;
}

.select-location-wraper .close-dialog svg line {
    color: #fff !important;
}

.select-location-wraper {
    padding: 0 !important;
}

.cart-btn {
    position: relative;
}

.cart-btn span {

    width: 20px;
    height: 20px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    background: #185DA9;
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -9px;
    right: -1px;
}

@media only screen and (max-width: 1299px) {
    .order-box {
        width: 50% !important;
    }
}

@media only screen and (max-width: 1024px) {
    .order-box {
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    /* .popular-test-slider-btn {
        margin-right: 20px;
    } */

    .popular-test-section .section-explore-btn {
        margin-right: 20px;
    }
}

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

    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price-row-heading.big {
        -webkit-box-orient: unset;
    }


}