/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500&display=swap');
@import url('../fonts/fonts.css');

:root {
  --font-default: "Collier";
  --font-default-book: 'Collier';

  --font-display: 'Lora', sans-serif;
  --font-mono: 'Nunito Sans', sans-serif;
  --color-white: #ffffff;
  --color-dark-gray: #9b9b9b;
  --color-dark-gray-100: #707070;
  --color-ash-gray: #6F6B67;
  --color-dim-gray: #efefef;
  --color-beige: #D1A272;
  --color-beige-light-200: #e4d0bb;
  --color-beige-light-300: #fff3e7;
  --yellow-color: #d9a06a;
  --color-beige-dark: #bc9166;

  --color-ivory: #FCFAF8;
  --color-teal-blue: #308f99;
  --avatar-size: 2.5rem;
  --theme: #d1a272;
}

body {
  font-family: var(--font-mono);
  color: var(--color-dim-gray);
  font-size: 1rem;

  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: var(--color-dark-gray-100);
}

a {
  color: var(--color-beige);
}

a:hover {
  color: var(--color-ash-gray);
}

ul li {
  list-style-type: none;
}

.color-grey {
  color: var(--color-dark-gray-100);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-beige);
  font-family: var(--font-default);
}

h1 {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.7rem + 0.25vw, 2rem);
}

h2 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
}

h3 {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
}

h4 {
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

h5 {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

h6 {
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

button {
  border: 0;
  background-color: transparent;
}

input:focus {
  outline: none;
}

input,
select,
textarea {
  background-color: var(--color-white) !important;
  border: #d0cecd 1px solid !important;
  border-radius: 0px !important;
  font-size: 0.85rem !important;
  color: #d0cecd !important;
  background: var(--color-white) !important;
}

:focus {
  border-color: var(--color-beige-dark) !important;
  box-shadow: none !important;
}

label {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.checkbox input[type="checkbox"] {
  display: none;
}

.background-grey {
  background-color: var(--color-dim-gray);
}

.background-grey-100 {
  background-color: #efefef;
}

.background-dark-white {
  background-color: var(--color-beige-light-300);
}

.background-white {
  background-color: var(--color-white);
}

.checkbox .custom-checkbox {
  position: relative;
  padding-left: 30px;
}

.checkbox .custom-checkbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-beige-dark);
}

.checkbox input[type="checkbox"]:checked+.custom-checkbox::before {
  background-color: var(--color-beige-dark);
}

.checkbox input[type="checkbox"]:checked+.custom-checkbox::after {
  content: '\2713';
  font-size: 16px;
  color: var(--color-white);
  position: absolute;
  top: 0;
  left: 4px;
}

.clr-beige {
  color: var(--color-dark-gray-100) !important;
}

.brdr-clr {
  border-color: var(--color-beige) !important;
}

/* Button Styles */
.buttons {
  display: flex;
  flex-direction: row;
}

.btn {
  border-radius: 0;
  padding: .5rem 1.5rem;
  color: var(--color-dark-gray);
  font-size: 0.85rem;
}

.btn:hover {
  color: var(--color-ash-gray);
}

.btn-outline-primary {
  border-color: var(--color-beige);

}

.btn-outline-primary:hover {
  background-color: var(--color-beige);
  border-color: var(--color-beige);
  color: var(--color-white);
}

.btn-outline-secondary {
  background-color: var(--color-beige);
  border-color: var(--color-beige);
  color: var(--color-white);
}

.btn-outline-secondary:hover {
  border-color: var(--color-beige-dark);
  color: var(--color-white);
  background-color: var(--color-beige-dark);
}

.c-search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.c-search input {
  padding: 5px 5px 5px 10px;
  border: 5px solid var(--theme);
  width: 100%;
  height: 50px;
  color: var(--color-dark-gray-100) !important;
}

.c-search button {
  padding: 5px 25px;
  background-color: var(--theme);
  border: 5px solid var(--theme);
  font-size: large;
  color: #fff;
  transition: 0.5s linear;
  height: 50px;
}

.c-search button:hover {
  color: #000;
  transition: 0.5s linear;
  cursor: pointer;
}

/* Navigation  */
nav.navbar {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.logo {
  height: 70px;
}

.search_btn {
  border: var(--color-beige-light-200) 1px solid;
  padding: 6px;
  display: inline-block;
  margin-right: 5px;
}

.search_btn:hover {
  background-color: var(--color-beige-light-200);
}

.search_btn:hover img {
  filter: brightness(0);
  opacity: 0.7;
}

.search_btn img {
  height: 25px;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: 8px 10px 8px !important;
  margin: 0 5px;
  color: var(--color-dark-gray);
  display: block;
  font-family: var(--font-default);
  font-size: 0.95rem;
}

.tell_number {
  color: #706245;
  position: absolute;
  left: 0px;
  right: 0px;
  text-align: center;
  margin-top: 45px;
  font-size: 15px;
}

.navbar .nav-link:hover,
.navbar .link__active {
  color: #6f6b67;
}


.navbar .nav-active {
  position: relative;
  background: var(--yellow-color);
  display: inline-block;

  color: var(--color-white) !important;
  text-decoration: none;
  border-radius: 6px;
}


.navbar .nav-active::after {
  position: absolute;
  top: 100%;
  left: 20%;
  margin-right: -9px;
  content: ' ';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--yellow-color);
  border-bottom: 10px solid transparent;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--color-ash-gray);
}

.navbar .navbar-nav .active .nav-link {
  color: var(--color-ash-gray);
}

.no-notif-icon {
  width: 20px !important;
}

#notif-menu {
  right: 0;
}

#notif-menu a.nav-link {
  color: var(--color-dark-gray) !important;
}

#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}



.hamburger .line {
  width: 35px;
  height: 5px;
  background-color: #d1a272;
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.dropdown .dropdown-menu {
  display: none;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

.dropdown-menu {
  background-color: var(--color-white);
  border-radius: 0;
  padding: 0;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #747d88;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 10px;
}

.dropdown-menu a {
  color: #9b9b9b;
  font-size: 0.80rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 10px;
  padding: 7px 0;
}

.dropdown-menu li:last-child a {
  border: 0px;
}

.logo-width {
  width: 120px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .dropend:hover>.dropdown-menu {
    position: absolute;
    top: -20px !important;
    left: 100%;
  }

  .dropdown-menu {
    margin-left: 10% !important;
  }

  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -o-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

.section {
  padding-top: 3.375rem;
  padding-bottom: 5.875rem;
}

.section-title {
  color: var(--color-beige);
  padding-bottom: 3rem;
  font-size: 2.125rem;
  font-weight: 200;
  font-family: var(--font-default-book);
}

/* Home */
.specialists .item {
  text-align: center;
  padding: 0 10px;
}

.specialists .item img {
  position: relative;


}



.link {
  background-color: var(--yellow-color);
  padding: 0.3rem 1rem;
  border-radius: 0.2rem;
  color: var(--color-white);
  display: inline-block;
  border: 1px transparent solid;
}

.specialists .item p {
  color: var(--color-dark-gray-100);
  padding-top: 1.625rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;

}

.link:hover {
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
  background-color: transparent;
}

.outline-link {
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
  background-color: transparent;
  padding: 0.3rem 1rem;
  display: inline-block;
  border-radius: 0.2rem;
}

.outline-link:hover {
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
  background-color: var(--color-white);
}

.media-review {
  padding: 3.5rem 1.8rem 1.8rem 1.8rem;
  background-color: var(--color-white);
  border-radius: 0.45rem;
}





.media .title {
  padding: 0;
  margin: 0;
}

.media .title span {
  font-size: 1rem;
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--font-mono);
  color: var(--color-dark-gray-100);
}

.media .description {

  color: var(--color-dark-gray-100);
  margin-bottom: 20px;
  line-height: 1.3;
}

.rating-row ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 0 8px 0;
}

.rating-row ul li {
  color: #f1e3d4;
  font-size: 1.75rem;
  margin: 0px 3px;
}

.rating-row ul li:hover,
.rating-row ul li.active {
  color: var(--color-beige);

  margin: 0px 3px;
}

.media .circle {
  background-color: var(--color-beige);
  border-radius: 50%;
  height: 40px;
  text-align: center;
  width: 40px;
  margin-right: 10px;
}

.avatar .col-3 {
  width: 50px;
}



.media .initials {
  font-size: calc(var(--avatar-size)*2 / 3);

  color: var(--color-white);
  /* 50% of parent */
  line-height: 40px;
  position: relative;
  font-weight: 600;

}

.avatar {
  margin-top: 2.5rem;

}

.video_overlay {
  background-color: rgba(209, 162, 114, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.avatar p {
  color: var(--color-dark-gray-100);
  font-size: 1rem;
  font-family: var(--font-mono);
}

.trusted .section-title {
  padding-bottom: 3rem;
}

.video_cs {
  padding: 30px 0px 30px 30px;
}

.video_cs .avatar {
  margin-top: 0;
}

.d__card {
  border-radius: 0.7rem;
  padding: 20px;
  box-shadow: 0px 0px 13px 1px rgba(209, 162, 114, 0.3);
  color: var(--color-dark-gray-100);
  text-align: center;
  width: 100%;
}

.d__card-img {
  width: 150px !important;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 15px;
}

.home-doctors .owl-stage,
.trusted .owl-stage,
.carousel-curated-Collection .owl-stage {
  display: flex;
}

.trusted .comment-section,
.trusted .media-review,
.carousel-curated-Collection .comment-section {
  height: 100%;
}

.home-doctors .item,
.trusted .item {
  padding: 10px;
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}

.carousel-curated-Collection .item {

  display: flex;
  flex: 1 0 auto;
  height: 100%;
}

.d__card-title {
  font-size: 1rem;
  font-weight: 700;
}

.d__card-designation {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.d__card__decription-bold {
  font-weight: 600;
}


.modal-content {
  border: 0px;
  background: transparent
}

.modal-body {
  position: relative;
  padding: 0px;
}

.close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 32px;
  font-weight: normal;
  color: var(--color-beige);
  opacity: 1;
  background: white;
}

.embed-responsive-item {
  width: 100%;
  height: 80vh
}

/* Blog page */

.curated-Collection .media-review {
  background-color: transparent;
  padding: 20px;
}

.curated-Collection .review {
  height: 100%;
}

.curated-Collection .review .video_cs {
  padding: 20px
}

.curated-Collection .comment-section {
  background-color: #fff3e7;
  border-radius: 0 0 10px 10px;
  height: 100%;

}

.curated-Collection .video_cs .fs-6 {
  min-height: 40px;
}

/* book-an-appointment */
.our-expert-experienced {
  background-color: var(--color-beige-light-300);
  padding: 10px 15px;
}

.our-expert-experienced img {
  height: 35px;
  padding-left: 10px;
  padding-right: 10px;
}

.our-expert-experienced .row>div {
  padding: 0px !important;
}

.our-expert-experienced p {
  margin-bottom: 0px;
  font-size: 0.85rem;
  color: var(--color-beige);
  font-weight: 600;
  line-height: 1;
}

.request-tabs-container {
  background-color: rgba(169, 131, 93, 0.8);

  position: absolute;
  bottom: 0;
  width: 100%;

}

.request-tabs-container p {
  display: flex;
  justify-content: space-between;
  color: var(--color-white);
  margin-bottom: 0;
  padding: 20px;
  font-size: 1.1rem;
}

.request__form {
  border: #d0cfcd 1px solid;
  padding: 5%;
}

.request__form .btn-primary,
.User-profle .btn-primary {
  background-color: var(--color-beige);
  color: var(--color-white);
  border-color: transparent;
  font-size: 1rem;
}

.carousel-floating {
  margin-top: 0.5rem;
}

.carousel-floating .item {
  position: relative;
  color: var(--color-white);
}

.carousel-floating .item::after {
  content: "";
  background-color: rgba(209, 162, 114, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-floating .item .caption h2 {
  color: var(--color-white);
  font-weight: 400;
  font-weight: bold;
}

.carousel-floating .item .caption {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  z-index: 99;
  transform: translateY(-50%);
  margin-top: 25%;
}

.carousel-floating .item .caption p {
  font-family: var(--font-mono)
}

.carousel-floating .owl-dots {
  position: absolute;
  left: 20px;
  bottom: 10%;
  width: 80%;
}

.carousel-floating .owl-dots .owl-dot {
  width: 20%;
  height: 2px;
  margin: 0 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-floating .owl-dots .owl-dot.active {
  background-color: var(--color-white);
}

/* .sidebar {
  width: 100%;
  height: 100%;
  float: left
}

.fixed {
  position: fixed;
  width: 25%;
}

.mainContent {
  position: relative;
  width: 100%;
} */
.request__form input,
.request__form select,
.User-profle input,
.User-profle select {
  color: var(--color-dark-gray-100) !important;
  text-transform: lowercase;
  padding: 0.5rem 1rem !important;
}

.User-profle input,
.User-profle select {
  margin-bottom: 7px;
  font-size: 16px !important;
}


.request__form .input-group-addon {
  border-radius: 0;
  background-color: transparent;
  border-left: 0px !important;
}

.request__form #startDate input {
  border-right: 0px !important;
}

.request-tabs .tab.is-active .request-tabs-container p {
  padding: 35px 15px;
}

.request__form .col-form-label {

  line-height: 1;
  font-size: 0.90rem;
}

.request__form .form-group {
  margin-bottom: 4px;
}

.request__form .input-group-addon img {
  height: 25px;
}

.input_select {

  border: unset;


  width: 100%;




  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d9a06a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.7rem top 50% !important;
  background-size: 0.65rem auto !important;
}

.modal {
  z-index: 99999;
}


.inside {
  background-color: #f5e6d6;
  background: radial-gradient(circle, rgba(245, 229, 211, 1) 0%, rgba(246, 228, 213, 1) 100%);
}

.dr-list {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1rem;
  padding-top: 1.5rem;
}

.dr-list:last-child {
  border: 0;
}

.dr-list .link {
  margin-bottom: 1rem;
}


.dr-list h3 {
  font-weight: 500;
}

.dr-list span {
  font-size: 0.85rem;
  display: inline-block;

  margin-bottom: 1rem;
}

.profile .link:first-child {
  margin-right: 20px;
}

.min-height-0 {
  min-height: auto !important;
}

.diseases .video_cs .fs-6 {
  text-transform: uppercase;
}

.diseases .d-link {
  background-color: var(--color-beige-light-300);
  display: flex;
  padding: 25px 10px;
  text-align: center;
  font-size: 1rem;
  color: var(--color-beige);
  height: 100%;
  align-items: center;
  justify-content: center;
}

.diseases .d-link:hover {
  background-color: var(--color-beige);
  color: #ffffff;
}


ul.tabs {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;


  width: 100%;
}

ul.tabs li {
  float: left;
  margin: 0;
  cursor: pointer;
  padding: 0px 15px;


  color: #707070;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

ul.tabs li::after {
  content: "";
  width: 1px;
  height: 15px;
  border-right: 1px solid #707070;
  position: absolute;
  right: 5px;

}

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

ul.tabs li:hover {

  color: var(--color-beige);
}

ul.tabs li.active {
  color: var(--color-beige);
}

.tab_container {

  clear: both;
  float: left;
  width: 100%;
  background: #fff;
  overflow: auto;
}
.tab_container ul li {
  list-style-type: disc !important;
}

.tab_content {
  padding: 20px;
  display: none;
}

.tab_content .d-img {
  float: left;
  margin-right: 20px;
  width: 280px;
  margin-bottom: 20px;
}

.tab_content .small {
  font-size: 0.65rem;
  line-height: 18px;
}

.tab_drawer_heading {
  display: none;
}

.do-link {
  border: 1px solid var(--color-beige);
  padding: 15px;
  text-align: center;
}

.tab_content .fs-6 {
  font-size: 0.85rem !important;
  margin-top: 10px;
}

.other__diseases-list .custom-select {

  position: relative;
}

.other__diseases-list select,
.other__diseases-list select:focus {
  appearance: none;
  /*  safari  */
  -webkit-appearance: none;
  /*  other styles for aesthetics */
  width: 100%;
  font-size: 1.15rem;
  padding: 0.675em 6em 0.675em 1em;
  background-color: #fff;
  border: 1px solid var(--color-beige) !important;
  border-radius: 0.25rem;
  color: var(--color-dark-gray-100) !important;
  cursor: pointer;
}

.other__diseases-list select:focus {
  outline: none;
}

.other__diseases-list .fs-6 {
  color: var(--color-beige);
  font-size: 0.85rem !important;
  font-weight: 800;
}

.other__diseases-list h4 {
  color: var(--color-white);
  font-size: 1.3rem;
  background-color: var(--color-beige);
  padding: 7px;
  font-weight: 600;
  display: block;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  text-align: center;
}

.other__diseases-list .custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}



.other__diseases-list .custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid var(--color-dark-gray-100);
  top: 50%;
}

.related__art .related__art--list {
  border-bottom: 1px solid #dedede;
  padding: 12px 0;
}

.related__art .related__art--list h5 {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-beige);
  padding-bottom: 7px;
  margin-bottom: 0;
}

.related__art .related__art--list p {
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 0;
}

.related__art .related__art--list img {
  width: 100%;
}

.related__art .related__art--list .row>div {
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 767px) {
  .tabs {
    display: none;
  }

  .tab_drawer_heading {
    background-color: var(--color-beige);
    color: #fff;
    margin: 0;
    padding: 5px 20px;
    display: block;
    cursor: pointer;
    border-bottom: 1px solid var(--color-beige-dark);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .d_active {
    background-color: var(--color-beige-dark);
    color: #fff;
  }

  .tab_container {
    margin-bottom: 1.5rem;
  }

  .tab_content .d-img {
    width: 100%;
  }
}

.faqs__page .accordion .accordion-item,
.wd-arogya .accordion .accordion-item {
  border-radius: 0px;
  border: 0px;
}

.faqs__page .accordion .accordion-button,
.wd-arogya .accordion .accordion-button {
  box-shadow: none;
  padding: 5px 15px;
  font-size: 1rem;
  color: var(--color-dark-gray-100);
  font-family: var(--font-mono);
  background-color: #faf5ef;
  border-radius: 0px;
}

.faqs__page .accordion .accordion-item:last-of-type .accordion-button.collapsed,
.wd-arogya .accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}

.faqs__page .accordion .accordion-button:after,
.wd-arogya .accordion .accordion-button:after {
  display: none;
}

.faqs__page .accordion-button,
.wd-arogya .accordion-button {
  border-top: 1px solid #000;

}

.faqs__page .accordion-item .accordion-button.collapse,
.wd-arogya .accordion-item .accordion-button.collapse {
  border-bottom: 1px solid #000;
}

.faqs__page .accordion-header,
.wd-arogya .accordion-header {
  display: flex;
  gap: 10px;
}

.faqs__page .accordion-header span,
.wd-arogya .accordion-header span {
  font-weight: 500;
  width: 25px;
}

.faqs__page .accordion-body,
.wd-arogya .accordion-body {
  padding-left: 3rem;
}

.banner {
  display: none;

}

.banner.active {
  display: block;
}

.kvp__tabs .nav-link {
  background-color: transparent !important;
  color: var(--color-beige);
  border: #a7a29d 1px solid;
  border-radius: 0 !important;
  padding: 8px 25px;
  font-size: 1.1rem;
}

.kvp__tabs .nav-link {
  display: flex;
  align-items: center;
}



.kvp__tabs .nav-item .active {
  background-color: var(--color-beige) !important;
  color: #fff;
}

.kvp__tabs .nav-item {
  margin-right: 6px;
  margin-bottom: -1px;
}

.kvp__tabs .nav-item img {
  margin-right: 25px;
}

.kvp__tabs .nav-item .active img {
  filter: brightness(0) invert(1);
}

.kvp__tabs .btn-primary {
  background-color: var(--color-beige) !important;
  color: #ffffff;
  border-color: transparent;
  padding: 10px 30px;
  font-family: var(--font-default);
  font-size: 1.2rem !important;
  margin-top: 15px;
}

.kvp__tabs .tab-content .small {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 0px;
}

.kvp__tabs .heading {
  margin-top: -5px;
  margin-bottom: 0;
}

.kvp__tabs .card {
  border: 0px !important;
  position: relative;
}

.kvp__tabs input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-beige-light-300) !important;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  border: 0px !important;
  cursor: pointer;
  outline: none;
  transition: transform 0.4s ease-in-out;
}

.kvp__tabs input[type="radio"]::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 5px;
  right: 5px;
}

.kvp__tabs input[type="radio"]::after {
  content: "";
  position: absolute;
  width: 0.35rem;
  height: 0.8rem;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transition: background 250ms;
  transform: rotate(45deg);

  top: 8.5px;
  right: 13.5px;
}

.kvp__tabs label {
  position: absolute;
  margin: 0 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.kvp__tabs .heading {
  color: var(--color-beige);
}

.kvp__tabs .card span {
  line-height: 1;

}

.kvp__tabs .card:hover img {
  transform: scale(1.05);
  transition: all 0.5 ease;

}

.kvp__tabs input[type="radio"]:checked {
  border: 1px solid var(--color-beige) !important;
}

.kvp__tabs input[type="radio"]:checked:after {
  border-color: #fff;
}

.kvp__tabs input[type="radio"]:checked::before {
  background-color: var(--color-beige);
}

.kvp__tabs .card {

  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
}

.wd-arogya .accordion .accordion-body p strong {
  color: var(--color-beige);
}

.card-item {
  background-color: #fff3e7;
  padding: 15px 10px;
  height: 100%;
}

.card-item p strong {
  color: var(--color-beige);
}

.card-item img {
  margin-right: 10px;
}

.card.hovercard {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 1);
  border: 2px solid var(--yellow-color);
}

.card.hovercard .card-background {
  height: 150px;
}

.card-background img {
  -webkit-filter: blur(25px);
  -moz-filter: blur(25px);
  -o-filter: blur(25px);
  -ms-filter: blur(25px);
  filter: blur(25px);
  margin-left: -100px;
  margin-top: -200px;
  min-width: 130%;

}

.card.hovercard .useravatar {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
}

.card.hovercard .useravatar img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid var(--yellow-color);
}

.card.hovercard .card-info {

  font-size: 12px;
  line-height: 20px;
  color: #737373;
  text-overflow: ellipsis;
  z-index: 9;
}

.card.hovercard .card-info .card-title {
  padding: 5px 15px 10px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  background-color: var(--yellow-color);

  border-radius: 10px;
}

.User-profle .nav-tabs {
  background-color: var(--color-beige);
  display: flex;
  align-items: center;
  padding: 10px 10px;
}

.User-profle .nav-tabs .nav-link {
  color: #fff;
  margin-right: 2px;
}

.User-profle .nav-tabs .nav-link svg {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.User-profle .nav-tabs .nav-link.active,
.User-profle .nav-tabs .nav-link:hover {

  border-color: transparent;
  color: var(--color-dark-gray-100);
  background-color: #fff;
  border-radius: 10px;
  padding: 0.3rem 1rem;

}

.User-profle .tab-content .fs-4 {
  color: var(--color-beige);
}

.User-profle .page-item:first-child .page-link,
.User-profle .page-item:last-child .page-link {
  border-radius: 0;
}

.User-profle .page-link,
.User-profle .page-link:hover {
  color: var(--color-beige);
}

.table__ {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}



.table__ tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

.table__ th,
.table__ td {
  padding: .625em;
  text-align: center;
}

.table__ th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .table__ {
    border: 0;
  }

  .table__ caption {
    font-size: 1.3em;
  }

  .table__ thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table__ tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  .table__ td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }

  .table__ td::before {

    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .table__ td:last-child {
    border-bottom: 0;
  }
}


.User-profle .right-border {
  border-right: 2px dotted #c2c2c2;
}

.User-profle ol.list {
  list-style-type: disc;
  padding-left: 0;
  margin-left: 20px;
  margin-bottom: 30px;
}

.User-profle ol.list li {
  margin-bottom: 10px;

}

.User-profle .border-white {
  border-color: #ddd !important;
}

.User-profle .border-3 {
  border-width: 1px !important;
}

.sitemap-info ul {
  margin: 0;
  padding: 0
}

.sitemap-info ul li a {
  color: var(--color-ash-gray);
}

.sitemap-info ul li a:hover {
  color: var(--color-beige);
}

.sitemap-info ul li a::before {
  content: "ï„…";
  font-family: FontAwesome;
  font-size: 1rem;
  padding-right: 0.5rem;
}

.mtop35 {
  margin-top: 35px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--color-white);
  box-shadow: 0px 6px 1px #efefef;
}

/* Footer */
footer {
  background-color: var(--color-ivory);
  padding: 3.5rem 0 0 0;
  position: relative;
  z-index: 999;
}




footer a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-dark-gray-100);
  padding-bottom: 0.5rem;
  display: block;
}

footer a:hover {
  color: var(--color-beige);
}

.footer__links-title {
  font-family: var(--font-default-book);
  font-size: 1.5rem;
  font-weight: 500;
}

.footer__links ul {
  padding: 0;
  margin: 0;
}

footer .copy a {
  padding-bottom: 0rem;
  margin-left: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-bottom {
  position: relative;
  padding: 17px 0px 10px;
  border-top: 1px solid var(--color-dark-gray-100);
  margin-top: 1.5rem;
}

.footer-bottom .footer-nav {
  position: relative;
  text-align: left;
  margin: 0;
  padding-left: 1rem;
}

.footer-bottom .footer-nav li {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;

  display: inline-block;
}

.footer-bottom .footer-nav li:last-child {
  padding-right: 0px;
  margin-right: 0px;
  border-right: none;
}

.footer-bottom .footer-nav li a {
  position: relative;
  color: var(--color-dark-gray-100);
  font-size: 15px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.footer-bottom .footer-nav li a:hover {
  color: var(--color-beige);


}

.footer-bottom .contact_footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  color: var(--color-dark-gray-100);
  font-size: 1rem;
  padding-right: 25px;
}

.contact_footer img {
  width: 25px;
  height: 25px;
}

/* Discover Doctors */
.flying-phone {
  background-color: #d1a272;
  padding: .7rem 1rem;
  position: fixed;
  right: 0px;
  top: 9rem;
  z-index: 9;
}

/* Ask A Doctor */
.ask-a-doctor-hero {
  background-image: url('../images/ask-a-doctor-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 13rem 0 15rem 0;
  margin: 0;
}

.msg-confirm {
  padding: 7rem 0;
}

.msg-confirm .btn {
  padding: .475rem 2.75rem;
  margin: 0.5rem 0;
}

/* Blogs */

section.blog {
  background-image: url(../images/bg-blog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0 23rem;
  margin: 0;
  text-align: center;
}

.knowledge-center {
  background: var(--color-ivory);
  padding: 7rem 0;
}

.knowledge-center .section-title {
  margin: 0;
}

.home-blog {
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-blog .section-title {
  padding-bottom: 15px;
}

.home-blog .media {
  margin-top: 30px;
}

.media.blog-media {
  margin-top: 30px;
  position: relative;
  display: table;
}

.media.blog-media .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  position: absolute;
  padding: 0;
  top: 20px;
  left: 20px;
  text-align: center;
  box-shadow: none;
  transform: translateX(0);
  color: var(--color-white);
  transition: background-color 0.3s ease;
}

.media.blog-media .circle .day {
  color: var(--color-white);
  transition: color 0.25s ease;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  margin-top: 12px;
}

.media.blog-media .circle .month {
  text-transform: uppercase;
  font-size: 14px;
}

.media.blog-media>a {
  position: relative;
  display: table-cell;
  vertical-align: top;
  min-width: 200px;
}

.media.blog-media>a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s;
  border: var(--color-beige-dark) 2px solid;
}

.media.blog-media>a img {
  width: 100%;
}

.media.blog-media:hover>a:before {
  opacity: 1;
  transform: scale(1);
}

.media.blog-media:hover .circle {
  background-color: rgba(255, 255, 255, 0.9);
}

.media.blog-media:hover .circle .day,
.media.blog-media:hover .circle .month {
  color: #222;
}

.media.blog-media:hover .media-body h5 {
  color: var(--color-teal-blue);
}

.media.blog-media:hover .media-body a.post-link {
  color: var(--color-teal-blue);
  text-decoration: underline;
}

.media.blog-media .media-body {
  padding: 15px 20px 10px;
  border-top: 1px solid #efeff3;
  border-left: none;
  display: table-cell;
  vertical-align: top;
}

.media.blog-media .media-body a.post-link {
  display: block;
  color: #222;
  font-size: 11px;
  padding: 23px 0;
  text-transform: uppercase;
  font-weight: 400;
}

.media.blog-media .media-body ul {
  position: relative;
  padding: 10px 0 0;
}

.media.blog-media .media-body ul li {
  display: inline-block;
  width: 49%;
  position: relative;
}

.media.blog-media .media-body ul li:before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 1px;
  height: 14px;
  background: var(--color-beige-dark);
}

.media.blog-media .media-body ul li:first-child:before {
  visibility: hidden;
}

.media.blog-media .media-body ul:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-beige);
}

.blog-listing {
  padding-top: 30px;
  padding-bottom: 30px;
}

.gray-bg {
  background-color: #f5f5f5;
}

/* Blog-Details */
.blog-grid {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-white);
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog-grid .blog-img {
  position: relative;
}

.blog-grid .blog-img .date {
  position: absolute;
  background: #fc5356;
  color: var(--color-white);
  padding: 8px 15px;
  left: 10px;
  top: 10px;
  border-radius: 4px;
}

.blog-grid .blog-img .date span {
  font-size: 22px;
  display: block;
  line-height: 22px;
  font-weight: 700;
}

.blog-grid .blog-img .date label {
  font-size: 14px;
  margin: 0;
}

.blog-grid .blog-info {
  padding: 20px;
}

.blog-grid .blog-info h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.blog-grid .blog-info h5 a {
  color: var(--color-beige-dark);
}

.blog-grid .blog-info p {
  margin: 0;
}

.blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-white);
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.blog-aside .widget-body {
  padding: 15px;
}

.blog-aside .widget-title {
  padding: 15px;
  border-bottom: 1px solid var(--color-dark-gray);
}

.blog-aside .widget-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-beige);
  margin: 0;
}

.blog-aside .widget-author .media {
  margin-bottom: 15px;
}

.blog-aside .widget-author p {

  margin: 0;
}

.blog-aside .widget-author .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-aside .widget-author h6 {
  font-weight: 600;
  color: var(--color-teal-blue);
  font-size: 22px;
  margin: 0;
  padding-left: 20px;
}

.blog-aside .post-aside {
  margin-bottom: 15px;
}

.blog-aside .post-aside .post-aside-title h5 {
  margin: 0;
}

.blog-aside .post-aside .post-aside-title a {
  font-size: 18px;
  color: var(--color-teal-blue);
  font-weight: 600;
}

.blog-aside .post-aside .post-aside-meta {
  padding-bottom: 10px;
}

.blog-aside .post-aside .post-aside-meta a {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}

.blog-aside .latest-post-aside+.latest-post-aside {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
  width: 90px;
}

.blog-aside .latest-post-aside .lpa-right img {
  border-radius: 3px;
}

.blog-aside .latest-post-aside .lpa-left {
  padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
  margin: 0;
  font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title a {
  color: var(--color-beige);
  font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
  color: var(--color-dim-gray);
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}

.tag-cloud a {
  padding: 4px 15px;
  font-size: 13px;
  color: var(--color-white);
  background: var(--color-beige);
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.tag-cloud a:hover {
  background: var(--color-beige-dark);
}

.blog-single {
  padding: 2rem 0;
}

.article {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-white);
  padding: 15px;
  margin: 15px 0 30px;
}

.article .article-title {
  padding: 15px 0 20px;
}

.article .article-title h6 {
  margin-bottom: 20px;
}

.article .article-title h6 a {
  text-transform: uppercase;
}

.article .article-title .media {
  padding-top: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}

.article .article-title .media .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.article .article-title .media .media-body {
  padding-left: 8px;
}

.article .article-title .media .media-body label {
  font-weight: 600;
  color: #fc5356;
  margin: 0;
}

.article .article-title .media .media-body span {
  display: block;
  font-size: 12px;
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

.article .article-content blockquote {
  max-width: 600px;
  padding: 15px 0 30px 0;
  margin: 0;
}

.article .article-content blockquote p {
  font-weight: 500;
  color: var(--color-beige);
  font-style: italic;
  margin: 0;
}

.article .tag-cloud {
  padding-top: 10px;
}

.article-comment {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-white);
  padding: 20px;
}

.article-comment h4 {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 22px;
}


/* Get Support */
section.support {
  background-image: url(../images/bg-support.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 15rem 0;
  margin: 0;
  text-align: center;
}


/* LOGIN PAGE */

#form-login ul.nav li {
  margin: 0 0.05rem;
}

#form-login ul.nav li a {
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
}

#form-login ul.nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-beige-dark);
  transition: width 0.3s ease;
}

#form-login ul.nav li a:hover::after {
  width: 100%;
  left: 0;
  transition: width 0.3s ease;
}

#form-login ul.nav li a.active::after {
  width: 100%;
  left: 0;
  transition: width 0.3s ease;
}


/* Multistep FORM */

.form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
}

.form-item {
  display: flex;
  flex-direction: column;
}

.form-item.has-error .form-label {
  color: red;
}

.form-item.has-error .form-input {
  border-color: red;
}

.form-label {
  margin-bottom: 6px;
}

.form-input {
  outline: none;
}

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-content {
  display: none;
  flex-direction: column;

}

.form-content.active {
  display: flex;
}

.btn[disabled] {
  cursor: not-allowed;
}

.wizard {
  position: relative;
  display: flex;
  width: 100%;
}

.wizard:before {
  content: "";
  position: absolute;
  background-color: var(--color-dark-gray);
  height: 2px;
  width: 100%;
  top: 10%;
  left: 0;
  transform: translateY(-50%);
}

.wizard-bar {
  position: absolute;
  background-color: var(--color-beige-dark);
  height: 2px;
  top: 12%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.wizard-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
}

.wizard-list p {
  text-transform: uppercase;
  font-size: small;
  font-size: 0.5rem !important;
  font-size: clamp(0.65rem, 0.5rem + 0.25vw, 0.75rem) !important;
}

#login-doctor .form {
  margin-top: 0px !important;
}

.wizard-list span.active+p {
  color: var(--color-beige-dark);
}

.wizard-item {
  z-index: 2;
  transition: 0.4s ease;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--color-dark-gray);
  color: var(--color-beige);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background-color: var(--color-dark-gray);
  margin-bottom: 10px;
  z-index: +1;
  position: relative;
}

.wizard-item.active {
  background-color: var(--color-beige-dark);
  color: var(--color-white);
  border: none;
}

.wizard-item.active.with-image:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 8.9087L17.1443 6L9.97468 13.191L6.8557 10.0399L4 12.888L8.53671 17.4126C8.91618 17.7888 9.4295 18 9.96456 18C10.4996 18 11.0129 17.7888 11.3924 17.4126L20 8.9087Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.wizard-item.with-image:after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 8.9087L17.1443 6L9.97468 13.191L6.8557 10.0399L4 12.888L8.53671 17.4126C8.91618 17.7888 9.4295 18 9.96456 18C10.4996 18 11.0129 17.7888 11.3924 17.4126L20 8.9087Z' fill='%231E4DBA'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}



/* Fixed Footer */
#login-doctor {
  margin: 4rem 0;
}

.footer-btns {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  padding: 2rem 0;
  z-index: 99;
}

.footer-btns .foo-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Accordion */
#faqs {
  margin: 4rem 0;
}

#accordionFaqs {
  margin: 1rem 0;
}

#accordionFaqs button {
  border: none;
  background-color: var(--color-teal-blue);
  color: var(--color-ivory);
}

.accordion-button {
  color: var(--color-beige-dark);
  background: var(--color-ivory);
  border-radius: 0;
  border-color: var(--color-beige-dark);
  font-size: 1rem;
  font-size: clamp(1rem, 1rem + 0.050000000000000044vw, 1.2rem);
}

.accordion-button:not(.collapsed) {
  color: var(--color-teal-blue);
  background: var(--color-ivory);
  border-radius: 0;
}

.accordion-body {
  font-size: 0.95rem;
  font-size: clamp(0.95rem, 0.94rem + 0.050000000000000044vw, 1rem);
}

.accordion-button::after {
  background-color: var(--color-ivory);
  background-blend-mode: multiply;
  border-radius: 55%;
  padding: 0.5rem;
}

.accordion-button:not(.collapsed)::after {
  background-color: var(--color-ivory);
  background-blend-mode: multiply;
  border-radius: 55%;
  padding: 0.5rem;
}

#forgot {
  display: none;
}


.carousel-trusted .owl-nav .owl-prev,
.home-doctors .owl-nav .owl-prev,
.carousel-curated-Collection .owl-nav .owl-prev {
  left: -40px;
}

.carousel-trusted .owl-nav .owl-next,
.home-doctors .owl-nav .owl-next,
.carousel-curated-Collection .owl-nav .owl-next {
  right: -40px;
}

.owl-nav .owl-prev {
  left: -25px;
  position: absolute;
  top: 40%;

}

.owl-nav .owl-next {
  right: -25px;
  top: 40%;
  position: absolute;

}

.cform p {
  font-size: 1.05rem;
  color: var(--color-dark-gray-100);
  font-family: var(--font-mono);
}

.cform .form-label {
  font-size: 0.95rem;
  color: var(--color-dark-gray-100);
  font-family: var(--font-mono);
  font-weight: 600;
}

#forgotPassword {
  font-size: 0.85rem;
  color: var(--color-beige);
  font-family: var(--font-mono);
  font-weight: 400;
}

.cform input,
.cform select,
.cform textarea {
  background-color: var(--color-white) !important;
  border: var(--color-beige) 1px solid !important;
  border-radius: 0px !important;
  font-size: 0.85rem !important;
  color: var(--color-dark-gray-100) !important;
  background: var(--color-ivory) !important;
  font-family: var(--font-mono);
}

.cform {
  font-family: var(--font-mono);
}

.cform .checkbox .custom-checkbox {
  color: var(--color-dark-gray-100) !important;
  font-weight: 600;
  font-family: var(--font-mono);
}

.btn-outline-primary {
  font-family: var(--font-mono);
}

.address_cs {
  padding: 20px;
}

.address_cs p,
.address_cs h3 {
  color: var(--color-dark-gray-100);
  font-family: var(--font-mono);
}

.address_cs svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  color: var(--color-beige);

}

.localAddress input,
.localAddress select {
  color: var(--color-dark-gray-100) !important;
}



/* Shine */
.nav-active {
  position: relative;

}

.nav-active::before {
  content: '';
  top: 0;
  transform: translateX(70%);
  width: 80%;
  height: 60px;
  position: absolute;
  z-index: 1;
  animation: slide 1s infinite;
  opacity: 0.6;

  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
  /* IE6-9 */
}

/* animation */

@keyframes slide {
  0% {
    transform: translateX(-70%);
  }

  100% {
    transform: translateX(70%);
  }
}

.diseases .video_cs p,
.carousel-curated-Collection .fs-6 {
  text-align: center !important;
}

.continue {
  display: inline-block;
  margin-left: 10px;
}

.carousel-trusted .review,
.footer__links,
.wd-arogya,
.diseases,
.inside,
.dr-list .dr-intro,
.curated-Collection,
p.color-grey,
.curated-Collection .video_cs .fs-6,
.kvp__tabs .tab-content {
  text-align: left;
}



.diseases .review a {
  color: var(--color-dark-gray-100);
}

.inside img {
  width: 100%;
}

.order-root {
  padding: 3rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}

figure h4,
figure h6,
figure h2 {
  color: var(--color-dark-gray-100);
}

figure {
  display: flex;
}

figure img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid var(--color-beige);
  margin-right: 1.5rem;
}

figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

figure figcaption h4 {
  font-size: 1.4rem;
  font-weight: 500;
}

figure figcaption h6 {
  font-size: 1rem;
  font-weight: 300;
}

figure figcaption h2 {
  font-size: 1.6rem;
  font-weight: 500;
}

.order-track {
  margin-top: 2rem;
  padding: 0 1rem;
  border-top: 1px dashed #aaaaaa;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
}

.order-track-step {
  display: flex;
  height: 7rem;
}

.order-track-step:last-child {
  overflow: hidden;
  height: 4rem;
}

.order-track-step:last-child .order-track-status span:last-of-type {
  display: none;
}

.order-track-status {
  margin-right: 1.5rem;
  position: relative;
}

.order-track-status-dot {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--color-beige);
}

.order-track-status-line {
  display: block;
  margin: 0 auto;
  width: 2px;
  height: 7rem;
  background: var(--color-beige);
}

.order-track-text-stat {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.order-track-text-sub {
  font-size: 0.92rem;
  font-weight: 300;
}

.order-track {
  transition: all 0.3s height 0.3s;
  transform-origin: top center;
}

.nav-top .nav-item.active {
  position: relative;
}

  .nav-top .nav-item.active::after {
    width: 70%;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--color-beige);
  }

.auth-provider {
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  padding: 0 21px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 16px;
  box-sizing: border-box;
  border: 1px solid #d6d9dc;
  text-align: center;
  background: #FFF;
  color: #535a60
}

.google-login {
  color: #535a60;
  border-color: #d6d9dc
}

.facebook-login {
  color: #FFF;
  background-color: #395697;
  border-color: transparent
}

.kyber-login {
  color: #FFF;
  background-color: #54ae85;
  border-color: transparent
}

.telegram-login {
  margin-bottom: 12px;
}

.svg-icon {
  vertical-align: middle;
  padding-bottom: 4px;
}

.login_block .active {
  position: relative;
}

.login_block.active,
.sign_block.active {
  position: relative;
}

  .login_block.active::after,
  .sign_block.active::after {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-beige);
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    text-align: center;
  }
.banner-blog-detail {
  width: 100%;
  height: 370px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0px 4px 6px 3px #bababa;
}
.related__art .related__art--list img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}
.login_block,
.sign_block {
  cursor: pointer
}
.btn-primary-pdf {
  background-color: var(--color-beige) !important;
  color: #ffffff;
  border-color: transparent;
  padding: 7px 15px;
  font-family: var(--font-default);
  font-size: 1.2rem !important;
  margin-top: 15px;
}
.specialists .item p {
  color: var(--color-dark-gray-100);
  padding-top: 1.625rem;
  padding-bottom: 0.5rem;
  font-size: 1rem !important;
  min-height: 80px !important;
}
#carousel-doctors .d__card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.curated-Collection .video_cs .fs-6 {
  margin-bottom: 0 !important;
  line-height: 1.2 !important;
  font-size: 0.85rem !important
}

.play_btn img {
  width: 30px !important
}


.curated-Collection .review .video_cs {
  padding: 10px !important
}

.yoga-img{display: flex; flex-wrap: wrap; padding:0; margin:0 ;  gap:15px}
.yoga-img li{display: flex; flex-direction: column; justify-content: space-between;}
.yoga-img li img{max-width:200px; margin-top:15px; height:auto}
.yoga-img p{text-align: center}


.tab_content ul {
  margin-bottom: 15px;
}


.tab_content ul:first-of-type {
  margin-bottom: 0px;
}
.tab_content ul + .small{padding-top:15px}

#navbarDropdown::after{display: none}
.shadow{position:relative}
.shadow::after{content:"x"; position:absolute; right:5px; right:5px; z-index:99; font-size:14px; color:#e0d0c0}
.carousel-text-overlay{position: absolute; bottom: 5%; right:0; color: #fff; text-align: left;  background-color:rgba(209, 162, 114,.85);  padding: 15px;  border-radius: 5px;  max-width:660px}
.carousel-text-overlay h2{color:#fff;     font-family: var(--font-default-book); font-size:1.4rem}
.carousel-text-overlay p{background-color:#fff; color:#D1A272; padding:5px 15px; width:130px; text-align: center; margin-top: 10px;  margin-bottom: 0px;}
#carousel-home-slider .owl-dots .owl-dot span{width:12px; height:12px; display:block; margin:0 3px; border-radius:50%; background:#D1A272}
#carousel-home-slider .owl-dots .owl-dot.active span{opacity:0.7}
#carousel-home-slider .owl-dots {text-align: center; padding:7px}
#carousel-home-slider .owl-nav button {position:absolute; top:40%;}
#carousel-home-slider .owl-nav .owl-prev{left:10px}
#carousel-home-slider .owl-nav .owl-next{right:10px}
.request-tabs-container p {
  cursor: pointer;
}
.stickybtns-grp {
  width: 300px;
/*  max-width: 430px;*/
  position: fixed;
  overflow: hidden;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  z-index: 9;
  border-radius: 20px 20px 0 0;
  display: flex;
}

  .stickybtns-grp .stickybtn {
    display: block;
    width: 100%;
  }

.stickybtn {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
  text-align: center;
  padding: 16px 20px;
  transition: .3s ease-in-out;
  border: 0;
  display: inline-block;
  margin: 0;
  background-color: #e6482e;
}
  .stickybtn.chatwithus-btn {
    background-color: #95211e;
  }
  .stickybtn:hover {
    color: #fff
  }

  .error_sections{
    background-color: #d3d3d3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
  }

  .error_button {
    text-decoration: none;
    background-color: #d9a06a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 700;
    transition: background-color .3sease;
}

.error-container h1{
  font-size: 5rem;
  color: #d9a06a;
}

.error-container  p {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

  .error-container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px #0000001a;
}

#tab6 .tab_content ul {
  display: flex;
  flex-wrap: wrap;
 
}

p img {
  width: 30%;
}

ol {
  list-style-type: decimal;
  counter-reset: item;
  padding-left: 20px; /* adjust */
}

ol li {
  display: block;
}

ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  font-weight: bold;
}

ol {
  list-style: decimal;
  margin-left: 1.5rem;
}

p.col-xs-6.col-sm-4.col-md-3.text-center {
  display: inline-block;
  min-width: 25%;
}
p.col-xs-6.col-sm-4.col-md-3.text-center img {
  display: inline-block;
  width: 61%;
}

ol li.has-image {
  position: relative;
}

ol li.has-image img {
  float: right;
  margin-left: 15px;
  max-width: 150px; /* Adjust as needed */
  height: auto;
}

p.ql-align-center img {
  width: 80%;
}

.tridoshas img {
  float: right;
}
