body {
    background-color: #fbfbfb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    color: rgba(17, 17, 17, 1);
}

input::placeholder {
    color: rgba(176, 176, 176, 1);
    opacity: 1;
}

input::-moz-placeholder {
    color: rgba(176, 176, 176, 1);
    opacity: 1;
}

input:-ms-input-placeholder {
    color: rgba(176, 176, 176, 1);
}

a {
    text-decoration: none;
}

hr {
    border: 1px solid rgba(238, 238, 238, 1);
    color: rgba(238, 238, 238, 1);
    background-color: rgba(238, 238, 238, 1);
}

.main-header {
    height: 90px;
    background-color: #fff;
    box-shadow: 0px 1px 1px 0px rgba(14, 43, 69, 0.1);
}

.header-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: rgba(12, 128, 235, 1);
}

.header-title img {
    width: 38px;
}
main {
    padding-top: 24px;
}

.main-cart {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(218, 218, 218, 1);
    border-radius: 10px;
    position: relative;
}

.main-cart-body {
    padding: 24px;
}

.main-cart-header {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-cart-header h2 {
    margin: 0;
    font-size: 14px;
    color: rgba(12, 128, 235, 1);
    font-weight: 700;
}

@media (max-width: 992px) {
    .main-cart-body {
        padding: 24px 16px;
    }

    .main-cart-header {
        padding: 18px 16px;
    }
}

.main-image {
    object-fit: cover;
    border-radius: 50%;
}

.main-cart-body h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.icons {
    gap: 4px;
}

@media (max-width: 500px) {
    .icons {
        position: absolute;
        gap: 4px;
        left: 16px;
        top: 24px;
    }
}

.mc-pill {
    padding: 4px 8px;
    gap: 4px;
    border-radius: 20px;
    background: rgba(206, 231, 255, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.in-pill {
    padding: 4px 8px;
    gap: 4px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    background: rgba(11, 160, 86, 0.1);
}

.sub-pill {
    padding: 4px 0px;
    gap: 4px;
    font-size: 14px;
    line-height: 21px;
}

.serv-link {
    padding: 5px 8px 6px 8px;
    border-radius: 20px;
    background: rgba(229, 137, 45, 0.1);
    color: rgba(255, 65, 5, 1);
    font-size: 14px;
    font-weight: 500;
}

.about-section h2 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-section p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
}

.green-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 150, 129, 1);
}

/* Utilities */
.fs-12 {
    font-size: 12px !important;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-16 {
    font-size: 16px !important;
}
.fs-18 {
    font-size: 18px !important;
}
.fs-20 {
    font-size: 20px !important;
}
.fs-22 {
    font-size: 22px !important;
}
.fs-24 {
    font-size: 24px !important;
}

.text-blue {
    color: rgba(12, 128, 235, 1);
}
.text-orange {
    color: rgba(255, 65, 5, 1);
}
.text-gray {
    color: rgba(121, 121, 121, 1);
}
.text-green {
    color: rgba(15, 150, 129, 1);
}
.text-purple {
    color: rgba(216, 41, 160, 1);
}
.text-black {
    color: rgba(17, 17, 17, 1);
}

.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}

.text-dark-gray {
    color: rgba(121, 121, 121, 1);
}
.text-gray {
    color: rgba(176, 176, 176, 1);
}
.text-red {
    color: rgba(234, 33, 33, 1);
}

.collapse-chevron {
    -moz-transition: transform 1s;
    -webkit-transition: transform 1s;
    transition: transform 0.5s;
}

.rotate-180 {
    transform: rotate(180deg);
}

.mediaSwiper {
    height: 210px;
}

.mediaSwiper .swiper-slide {
    width: 360px !important;
    height: 192px;
    background: #000;
    border-radius: 5px;
}

.mediaSwiper video {
    width: 360px !important;
    height: 192px;
    border-radius: 5px;
}
.mediaSwiper img {
    width: 360px !important;
    height: 192px;
    object-fit: cover;
    border-radius: 5px;
}

.curser-pointer {
    cursor: pointer;
}

.comment-form textarea {
    width: 100%;
    background-color: rgba(246, 246, 246, 1);
    border: none;
    margin-top: 13px;
    padding: 16px;
    font-size: 12px;
    font-weight: 400;
}

.comment-form textarea:focus {
    outline: none;
}

.comment-form button {
    width: 100%;
    background-color: rgba(218, 218, 218, 1);
    border: none;
    margin-top: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    color: rgba(121, 121, 121, 1);
    margin-bottom: 16px;
}

.comment-parent {
    padding: 16px;
    background: rgba(246, 246, 246, 1);
    margin: 0 0px 4px 0px;
    border-radius: 5px;
}
.comment-parent.child {
    margin: 0 40px 4px 0px;
}

.comment-parent h5 {
    font-weight: 600;
    font-size: 12px;
}
.comment-parent span {
    color: rgba(121, 121, 121, 1);
    font-weight: 400;
    font-size: 10px;
}
.comment-parent p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: rgba(121, 121, 121, 1);
    margin: 8px 0 0 0;
}
@media (max-width: 500px) {
    .comment-parent {
        margin: 0 -16px 4px -16px;
        border-radius: 0;
    }
    .comment-parent.child {
        margin: 0 40px 4px -16px;
        border-radius: 0 5px 5px 0;
    }
}

.text-purple {
    color: rgba(216, 41, 160, 1) !important;
}

.blog-cart {
    display: flex;
    gap: 16px;
}

.blog-cart img {
    object-fit: cover;
}

.blog-cart h4 {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgba(17, 17, 17, 1);
    margin-bottom: 0;
}
.blog-cart p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(121, 121, 121, 1);
    margin-bottom: 0;
}
.text-light {
    color: rgba(176, 176, 176, 1) !important;
}

.blog-cart span {
    font-weight: 400;
    font-size: 12px !important;
}

.clinic-visit-header {
    display: flex;
    padding: 24px;
    gap: 8px;
    padding-bottom: 12px;
}

.clinic-visit-cart h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0;
    background-image: linear-gradient(
        256.77deg,
        #ff4105 10.14%,
        #ff0532 77.91%
    );
    color: transparent;
    background-clip: text;
}
.accordion-item {
    border: none;
    border-radius: 8px;
    background-color: rgba(246, 246, 246, 1);
}
.accordion-button {
    background: none;
    border: none;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 14px;
}

.clinic-ac-btn {
    padding: 18px;
    background: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-address {
    font-weight: 500;
    font-size: 14px;
    color: rgba(121, 121, 121, 1);
}

.clinic-visit-cart .accordion-item {
    margin-top: 12px;
}
.clinic-visit-cart .accordion-get-visit {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(17, 17, 17, 1);
}

.clinic-visit-cart .accordion-get-visit button {
    width: 152;
    height: 48;
    gap: 4px;
    border-radius: 5px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
}
.clinic-visit-cart hr {
    background-color: rgba(238, 238, 238, 1);
    border-color: rgba(238, 238, 238, 1);
    color: rgba(238, 238, 238, 1);
}

@media (max-width: 500px) {
    .clinic-visit-cart .accordion-get-visit {
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }
}

.clinic-visit-cart.online-visit-cart h3 {
    background-image: linear-gradient(
        256.77deg,
        #a353f1 10.14%,
        #7045ec 77.91%
    );
    color: transparent;
    background-clip: text;
}

.clinicMonthSwiper .swiper-slide {
    width: auto;
}
label.swiper-slide {
    cursor: pointer !important;
}

.clinicMonthSwiper input,
.clinicDaySwiper input,
.clinicHourSwiper input {
    display: none !important;
}

.clinicMonthSwiper label {
    display: block;
    background: none;
    padding: 12px 16px;
    color: rgba(17, 17, 17, 1);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    border-radius: 5px;
    border: 1px solid rgba(218, 218, 218, 1);
}
.clinicMonthSwiper input:checked + label {
    color: rgba(12, 128, 235, 1);
    border: 1px solid rgba(12, 128, 235, 1);
}

.clinicDaySwiper .swiper-slide {
    width: auto;
}

.clinicDaySwiper label {
    display: block;
    background: rgba(246, 246, 246, 1);
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    color: rgba(176, 176, 176, 1);
    font-weight: 400;
    font-size: 12px;
    border-radius: 5px;
    border: none;
    width: 85px;
}

.clinicDaySwiper input:checked + label {
    color: #fff;
    background: rgba(12, 128, 235, 1);
}

.clinicHourSwiper .swiper-slide {
    width: auto;
}

.clinicHourSwiper label {
    display: block;
    background: rgba(240, 247, 254, 1);
    text-align: center;
    padding-top: 7px;
    padding-bottom: 5px;
    color: rgba(12, 128, 235, 1);
    font-weight: 400;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    width: 72px !important;
}

.clinicHourSwiper input:checked + label {
    color: #fff;
    background: rgba(12, 128, 235, 1);
}

.add-clinic-visit {
    border: none;
    background: rgba(12, 128, 235, 1);
    width: 100%;
    color: #fff;
    border-radius: 5px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 24px;
}

.visit-notes {
    padding: 20px;
    background: rgba(243, 243, 243, 1);
    border-radius: 5px;
    margin-top: 24px;
}

.off-cart {
    background-color: rgba(255, 234, 248, 1);
    border: 1px solid rgba(216, 41, 160, 1);
}
.off-cart h2 {
    color: rgba(216, 41, 160, 1);
}

.offSwiperUpdate .swiper-slide {
    padding: 16px;
    width: 304px !important;
    background-color: #fff;
    border-radius: 10px;
    display: block;
}

.offSwiperUpdate .swiper-slide .off-image {
    width: 272px;
    height: 140px;
    border-radius: 5px;
    object-fit: cover;
}

.offSwiperUpdate .swiper-slide h3 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    color: rgba(17, 17, 17, 1);
    text-wrap: nowrap;
    overflow: hidden;
}
.offSwiperUpdate .off-percent {
    padding: 4px 8px;
    color: #fff;
    background: rgba(216, 41, 160, 1);
    display: inline-block;
    border-radius: 8px;
    font-size: 16px;
    font-size: 500;
}

.faq {
    font-size: 14px;
    font-weight: 600;
    color: rgba(121, 121, 121, 1);
    margin-bottom: 24px;
}

#accordionFAQ .accordion-item {
    margin-bottom: 8px;
    border-radius: 10px;
    background-color: rgba(232, 232, 232, 1);
}

#accordionFAQ h2 {
    color: rgba(17, 17, 17, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
}

#accordionFAQ p,
#accordionFAQ li {
    color: rgba(121, 121, 121, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.accordion-faq-header {
    background: none;
    border-radius: 10px;
    padding: 20px;
}

.accordion-faq-header.collapsed {
    background: rgba(246, 246, 246, 1);
}

#services-coll {
    max-height: 35px;
    overflow: hidden;
    transition: 0.5s;
}

#services-toggle {
    position: absolute;
    left: 0;
    top: 5px;
    display: none;
}

#about-coll {
    max-height: 160px;
    overflow: hidden;
    transition: 0.5s;
}

#about-toggle {
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) -29.41%,
        rgba(255, 255, 255, 0.6) 12.64%,
        #ffffff 77.06%
    );
    text-align: center;
    border-radius: 10px;
}

/* Doctors List */

.search-card-header {
    background: rgba(242, 242, 242, 1);
    height: 55px;
    box-shadow: 0px 1px 1px 0px rgba(14, 43, 69, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.search-card-header li {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-wrap: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-card-header li.active {
    color: rgba(12, 128, 235, 1);
    border-bottom: 2px solid rgba(12, 128, 235, 1);
}

.search-card input,
.search-card select {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid rgba(218, 218, 218, 1);
}

.search-card input:focus,
.search-card select:focus {
    outline: none;
}
.search-card select {
    padding: 15px 9px;
}
.search-card select option.placeholder {
    color: rgba(176, 176, 176, 1) !important;
}
.caret-down {
    position: absolute;
    left: 10px;
    top: 30px;
}
.search-card .custom-checkbox {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 21px;
}

.search-card .custom-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.search-card .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebebeb;
    transition: 0.4s;
    border-radius: 24px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1) inset;
}

.search-card .slider img {
    position: absolute;
    right: -3px;
    top: 0px;
    transition: 0.4s;
}

.search-card input:checked + .slider {
    background: rgba(12, 128, 235, 1);
}

.search-card input:checked + .slider img {
    right: 17px;
    top: 0px;
}

.search-card hr {
    margin: 16px 0;
}
.search-card .ins-input {
    background: rgba(218, 218, 218, 1);
    margin-bottom: 19px;
}

.search-card-footer {
    background: rgba(242, 242, 242, 1);
    color: rgba(121, 121, 121, 1);
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    padding: 15px 20px;
}

.doctor-list-article {
    padding: 20px 16px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(218, 218, 218, 1);
    margin-bottom: 10px;
}

.doctor-list-article h1 {
    color: rgba(12, 128, 235, 1);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.doctor-list-article p {
    font-weight: 400;
    font-size: 14px;
}

@media (max-width: 500px) {
    .doctor-list-article {
        border-radius: 0px !important;
    }
}

.sort-filter {
    padding: 17px;
    margin-bottom: 24px;
}

.sort-filter ul {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.sort-filter li {
    font-weight: 400;
    font-size: 12px;
}
.sort-filter li.active {
    color: rgba(12, 128, 235, 1);
}

.doctor-list-cart-body {
    padding: 24px;
}

.doctor-list-cart-image {
    border-radius: 50%;
}

.doctor-list-cart-body h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.doctor-list-cart-body .pills div {
    border-radius: 8px;
}

.ser-pill {
    max-width: 310px;
    height: 32;
    border: 1px solid rgba(218, 218, 218, 1);
    padding: 6px 12px;
    text-wrap: nowrap;
    overflow: hidden;
    color: rgba(255, 65, 5, 1);
    font-size: 12px;
}
.ser-pill a {
    color: rgba(255, 65, 5, 1);
}

.add-pill {
    max-width: 170px;
    height: 32;
    border: 1px solid rgba(218, 218, 218, 1);
    padding: 6px 12px;
    text-wrap: nowrap;
    overflow: hidden;
    font-size: 12px;
    font-weight: 400;
}

.doctor-list-cart-footer {
    padding: 16px 24px;
    background: rgba(248, 248, 248, 1);
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-list-cart-footer .get-vivist-btn {
    border-radius: 5px;
    background: rgba(12, 128, 235, 1);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 9px 30px;
}

.doctor-list-cart-rate {
    position: absolute;
    left: 24px;
    top: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* off */
.see-profile-btn {
    display: block;
    width: 100%;
    height: 48;
    gap: 4px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    background: #0c80eb;
    color: #fff;
    padding: 12px;
}

.off-visit-cart {
    border: 1px solid #d829a0;
    padding: 24px;
}
.off-visit-header {
    padding: 13px 33px;
    background: linear-gradient(82.54deg, #d829a0 1.44%, #98096a 96.33%);
    border-radius: 8px;
    color: #fff;
}

.off-timer {
    width: 160px;
    display: flex;
}

.off-timer div {
    text-align: center;
    width: 25%;
}

.off-timer h5 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.off-timer span {
    font-size: 12px;
    font-weight: 400;
}

.off-visit-cart .clinicMonthSwiper label.active {
    color: #d829a0;
    border-color: #d829a0;
}

.off-visit-cart .clinicDaySwiper label.active {
    background-color: #d829a0;
}

.off-visit-cart .clinicHourSwiper label {
    color: #d829a0;
}

.off-visit-cart .clinicHourSwiper label.active {
    color: #fff;
    background-color: #d829a0;
}
.off-visit-cart .add-clinic-visit {
    background-color: #d829a0;
}

/* Lab */
.lab-visit h3 {
    background-image: linear-gradient(
        256.77deg,
        #15b59c 10.14%,
        #108371 77.91%
    );
}

.lab-visit .get-vivist-btn {
    background: #0f9681;
    border-color: #0f9681;
    width: 152;
    height: 48;
    gap: 4px;
    border-radius: 5px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 16px;
}
.lab-form label {
    color: rgba(121, 121, 121, 1);
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 8px;
}
.lab-form .form-control {
    border-radius: 5px;
    border: 1px solid rgba(218, 218, 218, 1);
    padding: 12px;
    font-size: 12px;
}

.lab-form .add-clinic-visit {
    background: rgba(15, 150, 129, 1);
}

.related-btn {
    width: 100%;
    height: 49;
    border-radius: 5px;
    padding: 14px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: rgba(12, 128, 235, 1);
    background: rgba(240, 247, 254, 1);
}
.related-cart {
    border: 1px solid rgba(218, 218, 218, 1);
    padding: 16px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.colored-toast.swal2-icon-success {
    background-color: #198754 !important;
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
}

.colored-toast .swal2-title {
    color: white;
}

.colored-toast .swal2-close {
    color: white;
}

.colored-toast .swal2-html-container {
    color: white;
}
