/* YOUR CUSTOM CSS */
:root {
  --BrandPrimary: #35b6b4;
  --BrandSecondary: #3f4079;
  --BrandSecondary-active: #3f4079ee;
  --BrandPink: #e74e84;
  --BrandPink-active: #dd2666;
  --BrandWhite: #ffffff;

}

.nav-top-new.bg-white .dropdown-toggle::after {
  color: black;
}

.navbar-cstm-bg-new {
  background-color: var(--BrandSecondary-active);
}

.navbar-cstm-bg-new .navbar-nav-wrraper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #7a88af #333a62;
}

.navbar-cstm-bg-new .navbar-nav-wrraper::-webkit-scrollbar {
  height: 6px;
}

.navbar-cstm-bg-new .navbar-nav-wrraper::-webkit-scrollbar-track {
  background: #2c3357;
  border-radius: 10px;
}

.navbar-cstm-bg-new .navbar-nav-wrraper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #aab2d2, #6e77a1);
  border-radius: 10px;
  border: 1px solid #2c3357;
  transition: background 0.3s ease;
}

.navbar-cstm-bg-new .navbar-nav-wrraper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #ffffff, #8d96c5);
}

.navbar-cstm-bg-new .nav-item.dropdown.megamenu {
  position: static;
}

.navbar-cstm-bg-new .nav-item.dropdown.megamenu .dropdown-menu {
  width: 100%;
  top: 100%;
  left: 0;
  padding: 20px 0;
  border-bottom: none;
  border-radius: 0;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.navbar-cstm-bg-new .nav-item.dropdown.megamenu .dropdown-menu h5{
  font-weight: bold;
}
.navbar-cstm-bg-new .nav-item.dropdown.megamenu .dropdown-menu a{
  color: #000000;
}
.navbar-cstm-bg-new .nav-item.dropdown.megamenu .dropdown-menu a:hover{
  color: var(--BrandPink-active);
}

.object-fit-cover{
  object-fit: cover;
}
/* end  */

.text-BrandPrimary {
  color: var(--BrandPrimary);
}

.text-BrandSecondary {
  color: var(--BrandSecondary);
}

.text-BrandPink {
  color: var(--BrandPink);
}

.bg-BrandPrimary {
  background-color: var(--BrandPrimary);
}

.bg-BrandSecondary {
  background-color: var(--BrandSecondary);
}

.bg-BrandPink {
  background-color: var(--BrandPink);
}

.border-BrandPink {
  border-color: var(--BrandPink) !important;
}

.btn-link {
  color: var(--BrandPink);
  border: none;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  color: var(--BrandPink-active);
  text-decoration: underline;
}

body {
  font-family: "Open Sans", sans-serif;
  /* font-family: 'SF Pro Display,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif'; */
}

.modal-backdrop.show {
  --bs-backdrop-opacity: 0.9;
}

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

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl .container-xxxl {
    max-width: 1536px;
  }
}

@media screen and (min-width: 992px) {
  .navbar-cstm-bg.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 60vw;
  }
}

.fs-xs {
  font-size: 12px;
}

.fs-18 {
  font-size: 18px;
}

.fs-sm {
  font-size: 14px;
}

.txt-primary {
  color: var(--BrandPrimary);
}

.btn_primary {
  background-color: var(--BrandPrimary);
  color: var(--BrandWhite);
  border-color: var(--BrandPrimary);
}

.btn_primary:hover,
.btn_primary:active,
.btn_primary:focus {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
  border-color: var(--BrandSecondary);
}

.txt-secondary {
  color: var(--BrandSecondary);
}

.bg_secondary {
  background-color: var(--BrandSecondary);
}

.btn_outline_2 {
  background-color: var(--BrandWhite);
  border-color: var(--BrandSecondary);
  color: var(--BrandSecondary);
}

.btn_outline_2:hover,
.btn_outline_2:active,
.btn_outline_2:focus {
  background-color: var(--BrandSecondary);
  border-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

.btn_2 {
  background-color: var(--BrandSecondary);
  border-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

.btn_2:hover,
.btn_2:active,
.btn_2:focus {
  background-color: var(--BrandSecondary-active);
  border-color: var(--BrandSecondary-active);
  color: var(--BrandWhite);
}

.btn_pink {
  background-color: var(--BrandPink);
  border-color: var(--BrandPink);
  color: var(--BrandWhite);
}

.btn_pink:hover,
.btn_pink:active,
.btn_pink:focus {
  background-color: var(--BrandPink-active);
  border-color: var(--BrandPink);
  color: var(--BrandWhite);
}

.btn_outline_pink {
  background: var(--BrandWhite);
  border: 2px solid var(--BrandPink);
  color: var(--BrandPink);
  padding: 5px 20px;
  font-weight: 500;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.btn_outline_pink:hover,
.btn_outline_pink:active,
.btn_outline_pink:focus {
  background: var(--BrandPink);
  color: var(--BrandWhite);
}


.navbar-cstm-bg {
  background-color: var(--BrandSecondary-active);
  text-transform: capitalize;
}

.login-dropdown .dropdown-menu {
  width: 300px;
}

header .navigation-bg .main-menu>ul>li>a:hover,
ul#top_access li a:hover {
  color: var(--BrandPink);
}

ul.mega-menu {
  max-width: 70vw;
  width: 100%;
}

ul.mega-menu .menu-item-card {
  transition: all 0.4s;
  background-color: var(--BrandWhite);
  border-color: rgba(231, 78, 132, 0.1);
}

ul.mega-menu .menu-item-card:hover {
  background-color: rgba(231, 78, 132, 0.1);
}

.login-dropdown .dropdown-menu {
  width: 300px;
}

ul#top_access li.login-dropdown .dropdown-menu a.forgot {
  color: var(--BrandPink);
}

/* header end  */

.nav-tabs .nav-link {
  color: #767676;
}

.nav-tabs .category-title {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--BrandPink);
}

.doctor-page #results {
  color: var(--BrandWhite);
  background: var(--BrandPink);
}

.strip_list a.btn {
  color: var(--BrandWhite);
  background: var(--BrandSecondary);
  border: 2px solid var(--BrandSecondary);
  cursor: pointer;
  padding: 7px 20px;
  display: inline-block;
  outline: none;
  font-size: 0.875rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

.strip_list a.btn:hover {
  color: var(--BrandSecondary);
  background: transparent;
}

.scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;              /* Firefox */
  scrollbar-color: #ec4899 #f3f4f6;    /* Firefox */
}
.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #ec4899; /* pink like screenshot */
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #db2777;
}




/* Home page  */

.bg-cst-blue {
  background-color: var(--BrandSecondary);
}

ul#services-dropdown {
  margin: -20px 0 !important;
}

.dropdown.service-filter-cls ul.dropdown-menu.show {
  max-height: 250px;
  overflow: auto;
}

.dropdown.service-filter-cls ul.dropdown-menu.show li {
  display: table !important;
}

.brand img {
  max-width: 196px
}

.treatment .nav-pills .nav-link.active {
  background-color: var(--BrandPrimary);
  color: var(--BrandWhite);
}

.treatment .nav-pills .nav-link {
  font-weight: bold;
  color: var(--BrandSecondary);
  border: 1px solid var(--BrandPrimary);
}

.faqs .heading {
  background-color: var(--BrandSecondary)
}

.faqs .heading h2,
.faqs .heading h3 {
  color: var(--BrandWhite);
}

.faqs .nav.tabs-wrapper {
  background-color: var(--BrandSecondary)
}

.faqs .nav .nav-link {
  color: var(--BrandWhite);
  font-weight: bold;
}

.faqs .nav .nav-link.active {
  color: var(--BrandPrimary);
}

.faqs .tab-content .accordion .accordion-header .accordion-button {
  color: var(--BrandSecondary);
  font-weight: 500;
  justify-content: space-between;
}

.faqs .tab-content .accordion .accordion-header .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--BrandPrimary);
}

.faqs .tab-content .accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--BrandPrimary)38;
}

.carousel-item img.d-block.w-100 {
  height: 400px;
}

.btn-cstm {
  color: var(--BrandWhite);
  background: var(--BrandPink);
  transition: all 0.4s;
}

.btn-cstm:hover {
  color: var(--BrandWhite);
  background: var(--BrandPrimary);
}

.btn.btn-cstm:active,
.btn.btn-cstm:focus {
  color: var(--BrandWhite);
  background: var(--BrandPrimary);
}


.search-doctor-section {
  margin-top: -75px;
  position: relative;
}

.sympthoms .image-wrraper {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  border: 2px dotted;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.sympthoms .card:hover .image-wrraper {
  transform: scale(1.1);
  border-style: inset;
  border-color: var(--BrandPink);
}

.sympthoms .image-wrraper img,
.second-category .post_info img {
  width: 100%;
  height: 100%;
}

/* Home page end  */

.doctor-page .nav-tabs .nav-link.active {
  border: none;
  background-color: transparent;
}

.doctor-page .dropdown-toggle {
  white-space: nowrap;
  background-color: var(--BrandWhite);
  border: 1px solid #e1e8ed;
  height: 32px;
  color: var(--BrandSecondary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.patient-detail-modal form label.service-for {
  border: 1px solid #ddd;
  width: 100%;
  padding: 10px;
  background-color: var(--BrandWhite);
}

.blogs-section .blog-wraper {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.6s;
  display: block;
}

.blogs-section .blog-wraper .hover-content{
  position: absolute;
  right: -100%;
  bottom: 0px;
  padding: 8px;
  transition: all 0.5s;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  background-color: white;
  white-space: nowrap;
}

.blogs-section .blog-wraper .hover-content .hover-arrow-icon{
  margin-left: -21px;
  color: white;
}
.blogs-section .blog-wraper:hover .hover-content{
  right: 0%;
}

.blogs-section .blog-wraper .blog-content-wrraper {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -15%);
  padding: 15px;
  padding-right: 50px;
}

.blogs-section .blog-wraper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: all 0.6s;
}

.blogs-section .blog-wraper:hover img {
  transform: scale(1.03);
}

.content-section .image-wrraper {
  max-width: 250px;
  max-height: 250px;
  border: 5px solid #ddd;
  overflow: hidden;
}

.content-section .image-wrraper img {
  width: 100%;
}

.nav-tabs .nav-link.txt-secondary.active {
  color: var(--BrandPrimary);
}

#breadcrumb {
  background-color: #efefef;
  color: #000;
}

#breadcrumb ul li a {
  color: var(--BrandPink);
}

.list-group .list-group-item {
  background-color: transparent;
  border: 0;
}


/* my_account-page */
.my_account-page .nav.nav-pills .nav-link {
  background-color: var(--BrandWhite);
  color: var(--BrandSecondary);
  box-shadow: 0 0 3px #ddd;
  padding: 15px 8px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.my_account-page .nav.nav-pills .nav-link.active {
  color: var(--BrandWhite);
  background-color: var(--BrandSecondary);
}

.add-member .member-img-wraper {
  width: 120px;
}

.add-member-modal label.btn-outline-primary,
.add-member-modal label.btn-outline-primary:hover {
  border-color: var(--BrandPink);
  color: var(--BrandPink);
}

.add-member-modal .btn-check:checked+.btn {
  background-color: var(--BrandPink);
  color: var(--BrandWhite);
  border-color: var(--BrandPink);
}

form .error-message {
  font-size: 12px;
  text-align: center;
}

.dropdown-toggle::after {
  color: var(--BrandWhite);
}

.bg-verticle-gradient {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(116, 209, 198, 1) 100%);
}

.confused-help-offcanvas .offcanvas-confused-btn {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0;
  top: 70%;
  z-index: 9999;
}

.footer-cta {
  bottom: 0vh;
  left: 50%;
  width: 100%;
  z-index: 2;
}

/* navbar start  */

.nav-item.dropdown-mega .mega-menu-left.nav-pills {
  height: 75vh;
  overflow-y: auto;
}

.nav-item.dropdown-mega .nav-pills .nav-link {
  cursor: pointer;
  color: var(--BrandSecondary);
  font-weight: 600;
}

.nav-item.dropdown-mega .nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--BrandPink);
  text-decoration: underline;
}

.nav-item.dropdown-mega ul li {
  padding: 4px 18px;
  position: relative;
}

.nav-item.dropdown-mega ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: rgb(0, 0, 0);
  clip-path: polygon(0 0, 0% 100%, 62% 50%);
  left: 0;
  top: 10px;
  position: absolute;
}

.nav-item.dropdown-mega ul {
  padding-left: 5px;
  list-style-type: none;
}

.nav-item.dropdown-mega ul li a {
  color: #000;
}

.nav-item.dropdown-mega ul li a:active,
.nav-item.dropdown-mega ul li a:hover {
  color: var(--BrandPink);
  text-decoration: underline;
}

/* navbar end  */

footer .input-group .btn {
  z-index: 0;
}

/* OTP inputs  */
#otp.inputs input {
  width: 40px;
}

#otp input[type=number]::-webkit-inner-spin-button,
#otp input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0
}

/* OTP inputs  end*/
.box_list.doctor-card {
  padding-bottom: 85px;
}

.most-viewed-doctors .box_list.doctor-card {
  padding-bottom: 40px;
}

/* profile input with previw  */
.profile-pic-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
}

.profile-pic-wrapper label.upload-file-block {
  opacity: 0;
  transition: all 0.4s;
}

.profile-pic-wrapper:hover label.upload-file-block {
  opacity: 1;
}

.clinic-slider h3,
.doctor-card .wrapper h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.w-230 {
  width: 230px;
}

.services-category-tabs .nav.nav-tabs {
  border-bottom: 2px solid var(--BrandPink);
  overflow-x: auto;
  overflow-y: hidden;
}

.services-category-tabs .nav-tabs .nav-link {
  border-radius: 0;
  border: 0;
  color: #000000;
  padding: 15px;
  text-transform: capitalize;
  flex-shrink: 0;
}

.services-category-tabs .nav-tabs .nav-link.active {

  background-color: var(--BrandPink);
  color: rgb(255, 255, 255);
}

.services-category-tabs .tab-pane .list-group .list-group-item {
  border-color: #ddd;
  text-transform: capitalize;
}

.services-category-tabs .tab-pane .list-group .list-group-item.hover,
.services-category-tabs .tab-pane .list-group .list-group-item.focus {
  background-color: #ddd;
  color: var(--BrandPink);
}

.services-category-tabs .tab-pane .list-group .list-group-item.active {
  background-color: var(--BrandPink);
  color: var(--BrandWhite);
}

.services-category-tabs .service-categry-tabs-height {
  height: 700px;
  overflow-y: scroll;
}



.step-form-wraper ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}


.step-form-wraper ul li:not(:last-child):after,
.step-form-wraper ul li:not(:last-child):before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: -1;
}

.step-form-wraper ul li::before {
  left: -50%;
}

.step-form-wraper ul li.completed:not(:last-child):after {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--BrandSecondary);
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: -1;
}

.step-form-wraper ul li .step-circle {
  width: 50px;
  height: 50px;
  background-color: #ddd;
  color: #000000;
}

.step-form-wraper ul li.completed .step-circle {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

/* compare form  */
.offcanvas.offcanvas-bottom.compare-offcanvas {
  /* height: 70vh; */
  height: min-content;
}

.offcanvas-header .offcanvas-header-badge {
  position: absolute;
  left: 10%;
  background-color: var(--BrandSecondary);
  padding: 10px 65px;
  bottom: 100%;
  clip-path: polygon(0% 100%, 10% 0%, 90% 0%, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
}

.offcanvas-header .offcanvas-header-badge .offcanvas-title {
  color: var(--BrandWhite);
}

.compare-card-wraper ul {
  border: 1px solid var(--BrandSecondary);
  border-radius: 5px;
  width: max-content;
}

.compare-card-wraper .compare-card {
  width: 250px;
  height: 250px;
  margin: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card-wraper .compare-card img.img-thumbnail {
  width: 80px;
  margin-bottom: 5px;
}

.compare-card-wraper .compare-card img.img-thumbnail.plus {
  width: 30px;
  margin-bottom: 5px;
}

.compare-card-wraper .compare-card label {
  text-align: center;
}

.compare-card-wraper .seprator-vs {
  position: relative;
  width: 1px;
  min-height: 100%;
  background-color: var(--BrandSecondary);
}

.compare-card-wraper .seprator-vs::before {
  content: "VS";
  position: absolute;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2px;
  border: 1px solid var(--BrandSecondary);
  border-radius: 50%;
  z-index: 2;
  background: var(--BrandSecondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--BrandWhite);
  font-size: 14px;
  font-weight: 600;
}

.service-ui-cls {
  height: 75vh;
  overflow-y: auto;
}

.mob-card-img-wrap {
  height: 72px;
  width: 72px;
  flex-shrink: 0;
}

.doctor-info .reviews {
  font-size: 12px;
}

.doctor-info h4 {
  font-size: 16px;
}

.dropdownContainer .dropdown-menu {
  min-width: 100% !important;
  max-height: 100% !important;
  max-width: 500px;
}

.wp-video video {
  position: initial;
}

@media screen and (max-width: 768px) {
  #scroll-triggered-cta {
    position: relative !important;
    transform: translate(0px, 0px) !important;
    left: auto;
    margin: 15px 0;
  }

  #scroll-triggered-cta .rounded-pill {
    border-radius: 10px !important;
  }

  /* navbar start */
  .nav-item.dropdown-mega .nav-pills .nav-link,
  .nav-item.dropdown-mega ul li a {
    font-size: 12px;
  }

  .nav-item.dropdown-mega ul li h5.txt-primary {
    font-size: 14px;
  }

  .nav-item.dropdown-mega ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
  }

  .nav-item.dropdown-mega ul li {
    padding: 4px 6px 4px 20px;
    position: relative;
  }

  .nav-item.dropdown-mega ul li::before {
    content: "";
    left: 4px;
    top: 10px;
    position: absolute;
    border-top: 5px solid transparent;
    border-left: 10px solid #6c6c6c;
    border-bottom: 5px solid transparent;
  }

  /* navbar end */
}

@media screen and (max-width: 575px) {
  .add-member .member-img-wraper {
    width: 100%;
  }

}

.doctor-wishlist-sec .wishlist-image-left {
  width: 85px;
}

.bootstrap-select .inner.show {
  height: 100%;
  max-height: 400px !important;
  overflow-y: auto;
}

.related-post .thumb {
  position: relative;
  width: 100%;
  height: 70px;
}

.related-post .thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.widget .recent-blog-post li a {
  position: relative;
  max-width: 100px;
  height: 70px;
  flex-shrink: 0;
  width: 100%;
}

.widget .recent-blog-post li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.post-content-data {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.one-line-ellips {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* popup card  */
.popup-animated-card {
  box-shadow: 0px 0px 4px rgb(144 144 144);
  width: fit-content;
  background-color: rgb(223 251 245);
  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 99;
}

.popup-card-left-img {
  border: 2px solid rgb(221, 221, 221);
  width: 50px;
  height: 50px;
}

@media screen and (max-width:768px) {
  .popup-animated-card {
    top: 5px;
    bottom: auto;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    margin: 0 5px;
  }
}

/* popup card  */


/* footer css  */
.mw-88 {
  min-width: 88px;
}

.footer-social ul.nav li a {
  width: 32px;
  height: 32px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social ul.nav li a.facebook {
  background-color: #3b5998;
}

.footer-social ul.nav li a.twitter {
  background-color: #1da1f2;
}

.footer-social ul.nav li a.linkedin {
  background-color: #0077B5;
}

.footer-social ul.nav li a.instagram {
  background-color: #000;
}

.footer-social ul.nav li a:hover {
  background-color: var(--BrandPink);
}

footer .other-links ul.nav li,
footer .nav.footer-bottom-links li {
  position: relative;
  padding-right: 10px;
}

footer .nav.footer-bottom-links li a.link,
footer .nav.comma-separator-links li a.link {
  color: #0066CC;
}

footer .other-links ul.nav li a:hover,
footer .nav.footer-bottom-links li a.link:hover,
footer .nav.comma-separator-links li a.link:hover {
  color: var(--BrandPink);
  text-decoration: underline;
}

footer .other-links ul.nav li:not(:last-child):after,
footer .nav.footer-bottom-links li:not(:last-child):after {
  position: absolute;
  content: "|";
  right: 0;
}

footer .nav.comma-separator-links li {
  position: relative;
  padding-right: 4px;
}

footer .nav.comma-separator-links li:not(:last-child):after {
  position: absolute;
  content: ",";
  right: 0;
}

img {
  max-width: 100%;
  height: auto;
}



.profileImagePreview {
  object-fit: cover;
}

.visibleAfterYes {
  display: none;
}

.tab-pane .accordion-button::after {
  margin-left: 0;
}


.rating-star-cstm .ratingStar {
  color: #ccc;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.2s;
}

.rating-star-cstm .ratingStar:hover,
.rating-star-cstm .ratingStar.selected {
  color: #ffd500;
}


/* 10-08-2024  */

.custom-stepper .nav-tabs {
  z-index: 1;
}

.custom-stepper .nav-tabs .timeline {
  z-index: -1;
}

.custom-stepper .nav-tabs .nav-link .round-tab {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: var(--BrandWhite);
  border: 1px solid var(--BrandSecondary);
  color: var(--BrandSecondary);
  text-align: center;
}

.custom-stepper .nav-tabs .nav-link.active .round-tab {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

.confused-help-offcanvas .radio-card-input:checked~.radio-card {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

.confused-help-offcanvas .radio-card:hover {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

/* .tab-pane.active {
  display: block;
} */

.confused-help-offcanvas .input_radio_tile {
  border: 1px solid var(--BrandSecondary);
  padding: 6px 12px;
}

.confused-help-offcanvas .checkbox-card-input:checked~.checkbox-card {
  background-color: var(--BrandSecondary);
  color: var(--BrandWhite);
}

.offcanvas.offcanvas-top.offcanvasOfferAndDescounts {
  height: 100%;
  max-height: 500px;
}

body.swal2-toast-shown .swal2-container.swal2-top-end {
  z-index: 9999 !important;
}

body .swal2-popup.swal2-toast {
  padding: 8px 16px;
}

.swal2-container.swal2-top>.swal2-popup {
  border-radius: 50px;
}

.my_account-page .aboutAccordion .accordion-btn.collapsed .icon-angle-up:before {
  transform: rotate(180deg);
}

.terms-and-conditions ul {
  list-style: none;
}

.terms-and-conditions ul ul {
  padding-left: 20px;
}

.terms-and-conditions ul.lower-alpha-list {
  list-style-type: disc;
}

.terms-and-conditions .custom-list {
  margin: 20px 0;
}

.terms-and-conditions .custom-list li span {
  margin-right: 10px;
  font-weight: 700;
}

.terms-and-conditions .custom-list li {
  line-height: 35px !important;
}

.terms-and-conditions ul.lower-rom-list {
  padding-left: 10px;
  list-style-type: lower-roman;
}

.terms-and-conditions a {
  word-break: break-all;
}

/* new design start 08-05-2025  */
.brandSliderActionSection {
  background: linear-gradient(to top, #eaf9ed, transparent);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol {
  overflow-y: hidden;
  transition: all 0.4s;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 0 16px;
  border-bottom: 2px solid transparent;
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoBox {
  transition: all 0.4s;
  width: 100%;
  margin-bottom: -32px;
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoBox h3 {
  font-size: 20px;
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:hover .brandSliderInfoBox {
  margin-bottom: 32px;
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:hover {
  border-bottom: 2px solid var(--BrandPink);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(1) {
  background: linear-gradient(to top, #ffeecf, #fff9e642);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(2) {
  background: linear-gradient(to top, #cce5ff, #e6f3ff3b);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(3) {
  background: linear-gradient(to top, #c8f7c5, #e9fce62e);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(4) {
  background: linear-gradient(to top, #f6ccf0, #ffffff3b);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(5) {
  background: linear-gradient(to top, #ffd9b3, #fff3e638);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(6) {
  background: linear-gradient(to top, #ffd1a1, #ffeedd);
}

.brandSliderActionSection .brandSliderWrraper .brandSliderInfoCol:nth-child(7) {
  background: linear-gradient(to top, #b3ffe9, #e6fff9);
}

/* 2nd  */

.how-it-works h2 span {
  color: #f44336;
}

.how-it-works .how-it-works-icon-circle {
  width: 120px;
  height: 120px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.how-it-works .how-it-works-icon-circle::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  border-radius: 50%;
  border: 2px dashed #d6d6d6;
}


/* new-card top image bottom content */
.doctor-clinic-tab-lst .services-category-tabs .tab-content {
  height: 450px;
  overflow-y: auto;
}

.doctor-clinic-tab-lst .brand-showcase-slder-wrper .brand-slider-nav button {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.doctor-clinic-tab-lst .brand-showcase-slder-wrper .brand-showcase-slder .brand-tab-item {
  background-color: #ccc;
}

.doctor-clinic-tab-lst .brand-showcase-slder-wrper .brand-showcase-slder .brand-tab-item.active {
  background-color: var(--BrandWhite);
}

.get-direction {
  height: 24px;
  display: inline-block;
  width: 24px;
  transform: rotate(45deg) scale(0.8);
  position: relative;
  background-color: #000;
  border-radius: 3px;
  margin: auto;
}

.get-direction::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 12px;
  height: 9px;
  transform: rotate(-45deg) translate(0px, 12px);
  border-top: 3px solid white;
  border-left: 3px solid white;
  border-top-left-radius: 2px;
}

.get-direction::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 10px;
  background-color: var(--BrandWhite);
  clip-path: polygon(50% 0%, 0 80%, 100% 80%);
  transform: rotate(45deg) translate(0px, 4px);
}

/* new design end  */

@media screen and (max-width: 567px) {
  .terms-and-conditions ul {
    padding-left: 10px;
  }

  .terms-and-conditions ul ul {
    margin-left: 10px;
  }
}


.nav-pills.custom-tabs-style .nav-link {
  border-radius: 0;
  border: 0;
  color: var(--BrandSecondary-active);
  padding: 8px 16px;
  text-transform: capitalize;
}

.nav-pills.custom-tabs-style .nav-link.active {
  background-color: var(--BrandPink);
  color: rgb(255, 255, 255);
}

#professionalStatement,
#eductionSec,
#awardsReconizationSec,
#researchPaperSec,
#productSec {
  scroll-margin-top: 90px;
}

.youtubeVideoEvents .slick-slide {
  height: auto !important;
}