@import url("../fonts/stylesheet.css");
@import url("./comaan.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary: #5846a5;
  --white: #ffffff;
  --SecondaryLight: #a6e6ff;
  --SecondaryDark: #1b294a;
  --TextColor: #222b45;
  --des-color: #00000099;
}

/* =====================================Header start====================================== */
header {
  width: 100%;
  z-index: 999;
  box-shadow: 0px 0px 4px 0px #00000040;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

/* -------sticky-header---------- */
/* .page-header.is-sticky {
  animation: slideDown 0.35s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
} */
/* ------- */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* .navbar-brand img {
  height: 35px;
} */
.navbar-brand img {
  height: 31px;
}

header {
  .navbar-nav {
    .nav-link {
      line-height: 100%;
      letter-spacing: 0%;
      font-family: "museo_sans_cyrl500";
      font-weight: 500;
      color: var(--TextColor);
    }

    .nav-link.active {
      font-family: "museo_sans_cyrl700";
      font-weight: 700;
      color: var(--primary);
    }
  }

  .navbar {
    padding: 18px 0;
  }

  .navbar-nav {
    gap: 42px;
  }

  .btn {
    /* max-width: 132px; */
    width: 132px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link {
    display: inline-block;
    position: relative;
  }

  .nav-link::before {
    transition: 300ms;
    height: 2px;
    content: "";
    position: absolute;
    background-color: var(--primary);
  }

  .nav-link::before {
    width: 0%;
    bottom: 0px;
  }

  .nav-link:hover::before {
    width: 100%;
  }

  .offcanvas-header {
    box-shadow: 0px 0px 4px 0px #00000040;
  }
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn {
  cursor: pointer;
  text-align: center;
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(to right,
      var(--primary),
      #a6e6ff,
      var(--TextColor),
      #a6e6ff);
  border-color: #c9eeff;
  color: #ffffff;
}

.navbar-expand-xl .dropdown-menu.to-top {
  top: calc(100% - -19px) !important;
}

/* =====================================Header end====================================== */
/* =============================Authentication start ======================== */
.auth_sec {
  background-image: url("../imges/banner/auth_bg.png");

  .left_content {
    height: 100vh;
    padding: 70px 80px;
  }

  .right_content {
    height: 100vh;
    padding: 70px 42px 40px 42px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .right_content::-webkit-scrollbar {
    display: none;
  }

  .no_account_text {
    color: #202020;

    a {
      color: #775da6;
    }
  }

  .auth_card {
    background-image: url("../imges/banner/authcard-bg.png");
    padding: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  .btn {
    padding: 15px;
  }

  .verify-code {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .verify-code .form-control {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #fff;
    text-align: center;
    margin: 0 10px;
  }

  .verify-code {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .confrim_txt {
    p {
      color: #222b45cc;
    }

    .form-check-input {
      width: 18px;
      height: 18px;
      border: 1px solid #222b4580;
    }
  }
}

.input_fild input {
  background-color: white !important;
}

.input_fild .form-control {
  border: none;
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: white !important;
}

.form-control::placeholder {
  font-size: 14px;
  color: #404a6b;
}

.iti__country-list {
  width: 418px;
  overflow-x: hidden;
}

.input_fild label {
  color: #0a0812;
  margin-bottom: 12px;
}

.icon {
  position: absolute;
  top: 13px;
  /* color: #5f6368;
  font-size: 18px; */
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

span.icon img {
  width: 24px;
  display: inline-block;
  /* height: 24px; */
}

.rightIcon {
  right: 15px;
}

.leftIcon {
  left: 15px;
}

.date-icon {
  top: 14px;
}

.nav-pills {
  background: #f3f3f3;
  padding: 5px;
  border-radius: 10px;
  gap: 12px;
  justify-content: space-between;
}

.nav-pills .nav-link {
  color: #5f6368;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #ffffff;
  background-color: var(--primary);
}

.nav-pills li.nav-item {
  width: 48%;
}

.profile_sec {
  background-image: url("../imges/banner/profile_bg.png");

  .progress,
  .progress-stacked {
    border-radius: 18.61px;
    --bs-progress-bar-color: #fff;
  }

  .progress-bar {
    background-color: #a6e6ff;
    border-radius: 18.61px;
  }

  .progress.custom {
    width: calc(100% - 186px);
  }

  /* .Profile_content {
    height: calc(100vh - 179px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 0;
  } */
  .Profile_content {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 179px);
    height: 100%;
    padding: 80px 0;
  }

  .gender-items .items .radio-img>input {
    display: none;
  }

  .gender-items .items .radio-img>.icon-text i {
    cursor: pointer;
    background: #f9fafb;
    border-radius: 100px;
    height: 170px;
    width: 170px;
    display: flex;
    object-fit: contain;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    color: #000000;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
  }

  .radio-img .icon-text p {
    color: #000000cc;
  }

  .gender-items .items .radio-img>input:checked+.icon-text i {
    background: var(--primary);
    color: #fff;
  }

  .radio-img input:checked+.icon-text p {
    color: var(--primary);
  }

  .dATE_iNPUT label {
    color: #222b45;
  }
}

.identity-option {
  padding: 14px 16px;
  background-color: white;
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  transition: 0.2s;
  border: 2px solid transparent;
  color: #222b45;
  font-family: "museo_sans_cyrl500";
  font-weight: 500;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.identity-option:hover {
  background-color: #f3f0ff;
}

.identity-option.selected {
  border-color: var(--primary);
  color: var(--primary);
  position: relative;
  font-family: "museo_sans_cyrl700";
  font-weight: 700;
}

.identity-option.selected::after {
  content: "f00c";
  position: absolute;
  right: 16px;
  color: var(--primary);
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
}

.dec_txt {
  color: #6b779a;
}

.flex-item {
  max-width: 433px;
  width: 100%;
  margin: auto;
}

.maxwidth_auto {
  max-width: fit-content;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.slot {
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slot:hover {
  background-color: #ddd;
}

.slot.active {
  background-color: var(--primary);
  color: #fff;
}

.therapist-options {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.therapist-card {
  width: 222px;
  text-align: left;
  box-shadow: 0 0 0 2px transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 16.14px;
  -webkit-border-radius: 16.14px;
  -moz-border-radius: 16.14px;
  -ms-border-radius: 16.14px;
  -o-border-radius: 16.14px;
  padding: 18px 15px;
}

.therapist-card.active {
  box-shadow: 0 0 0 2px var(--primary);
}

.therapist-card ul li {
  color: #6b779a;
}

.therapist-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #f1f0f9;
}

.UploaD_CARD {
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================Authentication end ======================== */
/*====================================== main-conetnt strat====================================*/
.dropdown-menu {
  animation: 0.5s slideup;
}

@keyframes slideup {
  from {
    transform: translateY(10%);
  }

  to {
    transform: translateY(0);
  }
}

.hero_sec {

  .carousel-control-next,
  .carousel-control-prev {
    width: 7%;
    z-index: 2;
    opacity: 1;
  }

  .btn {
    border: 2px solid var(--primary);
  }

  .btn:hover {
    border: 2px solid transparent;
  }

  .carousel-item {
    height: 100vh;
  }
}

.avatars .profile-pic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1.6px solid white;
  object-fit: cover;
  margin-left: -11px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatars .profile-pic:first-child {
  margin-left: 0;
}

.single-slider {
  height: auto;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.slider-content-wrapper {
  position: relative;
  z-index: 99;
  padding-top: 48px;
  padding-bottom: 200px;
  margin-top: 0px;
}

.Dark_border {
  border-bottom: 1px solid var(--des-color);
}

.hotline {
  color: var(--des-color);
}

/* ----home banner slider -------- */
.BannerAds_sec {
  background-image: url("../imges/banner/AdsBanner_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  padding-top: 95px;
  padding-bottom: 95px;
}

.title {
  line-height: 48.2px;
  letter-spacing: 1px;
  color: #090914;
}

.BannerAds_sec h3 {
  position: absolute;
  bottom: 30px;
}

.BannerAds_sec .slick-dots {
  bottom: -34px;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  /* Adds space between the dots */
}

.slick-dots li button:before {
  font-size: 12px !important;
  /* Make dots smaller */
  color: #b8b8b8;
  opacity: 1;
  line-height: 1;
}

.BannerAds_sec .slick-dots li.slick-active button:before {
  color: var(--primary);
  font-size: 14px !important;
  /* Slightly larger for active dot */
}

.BannerAds_sec .slick-dots li button:before {
  font-size: 42px;
}

.ads_slider_img {
  max-height: 742px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.Experience_Therapists_sec {
  background-image: url("../imges/banner/Experience-bg.svg");
  padding: 143px 0;
}

.Experience_Therapists_sec p {
  line-height: 180%;
}

.Experience_Therapists_sec .title {
  line-height: 59.2px;
}

.Works_sec {
  background-image: url("../imges/banner/white_bg.png");
  padding-top: 70px;
  padding-bottom: 70px;
}

.Assign-Therapist_sec {
  background-image: url("../imges/banner/white_bg.png");
  padding-top: 70px;
  padding-bottom: 70px;
}

.bottom_linE {
  max-width: 82%;
}

.NO_box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.horizontal_line {
  position: absolute;
  top: 30px;
  z-index: 1;
}

.Works_sec .card .Therapy_img {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.card {
  padding: 33px 20px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.Works_sec .card:hover {
  background-image: linear-gradient(74deg, #c3eeff 36%, #b9aaf5 92%);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transform: scale(0.9);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.faq_sec {
  background-image: url("../imges/banner/white_bg1.png");
  padding-top: 98px;
  padding-bottom: 98px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

hr {
  border-color: #707070;
}

.accordion-button::after {
  transition: none;
}

#accordionExample {
  .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    font-family: "museo_sans_cyrl700";
    font-weight: 700;
  }

  button {
    background-color: transparent;
    box-shadow: none;
    font-family: "museo_sans_cyrl500";
    font-weight: 500;
    color: #101828;

    &.accordion-button::after {
      background-image: url("../imges/icons/plus.svg");
    }

    &.accordion-button:not(.collapsed)::after {
      background-image: url("../imges/icons/minus.svg");
    }
  }

  .accordion-button:not(.collapsed)::after {
    transform: none;
  }

  .accordion-button::after {
    background-size: contain;
  }

  .accordion-button {
    align-items: baseline;
  }

  .card-text {
    color: #667085;
  }

  .card-title {
    color: #101828;
  }
}

.faq_sec .avatars .profile-pic {
  width: 56px;
  height: 56px;
  margin-left: -16px;
}

.nav_Tab {
  max-width: 558px;
  width: 100%;
  margin: auto;
}

.bluE_Card {
  background: var(--primary);
  color: #fff;
  border-radius: 11px;
  padding: 22px;
  box-shadow: 0 0 0 3px transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bluE_Card .body {
  border-top: 1px dashed;
}

.bluE_Card.active {
  box-shadow: 0 0 0 3px #f9a825;
}

.bluE_Card::after,
.bluE_Card::before {
  position: absolute;
  content: "";
  background-color: #5e4ddb;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  display: inline-block;
  opacity: 0.3;
  z-index: -1;
}

.bluE_Card::before {
  width: 184px;
  height: 59px;
  bottom: 0;
  left: -18px;
  opacity: 0.3;
}

.bluE_Card::after {
  width: 141px;
  height: 69px;
  top: 0px;
  right: -18px;
}

.bluE_Card .header li:nth-child(2) {
  padding: 0 30px;
  border-right: 0.76px solid #ffffff59;
  border-left: 0.76px solid #ffffff59;
}

.Upcoming_sec .bluE_Card .header li:nth-child(2) {
  padding: 0 120px;
}

.bluE_Card .header li:last-child {
  border-right: none;
  padding-right: 0;
}

.blue_card {
  background: var(--SecondaryLight);
  color: var(--SecondaryDark);
}

.blue_card::after,
.blue_card::before {
  background-color: #b8ebff;
  opacity: 0.9;
}

.position-btn {
  padding: 16px;
  position: absolute;
  top: 6px;
  right: 8px;
}

.custom_input {
  padding: 16px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.exclamation-circle {
  width: 100px;
}

.Orange {
  color: #f2a54a;
}

.Therapist_CREd .Therapist_img {
  max-width: 237px;
  /* height: 185px; */
  height: auto;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.Therapist_CREd.active {
  box-shadow: 0 0 0 3px #5846a5;
}

.nav_Tab1 {
  max-width: 400px;
  width: 100%;
}

/* .plan_sec {
  background-image: url("../imges/banner/background.png");
} */
.dropdown-menu {
  padding: 14px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

.main_dropdown .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  border: none;
  color: var(--des-color);
  margin-bottom: 1px;
}

.toggleafter_none::after {
  display: none !important;
}

.profile-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.dark_brbox {
  border: 1px solid #57525133;
  padding: 8px 12px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: inline-block;
}

.dropdown-menu.to-top {
  top: calc(100% - -28px) !important;
}

.dropdown-menu {
  border: 0;
  border-radius: 16px;
  box-shadow: 0px 13px 30px 10px rgba(46, 45, 116, 0.05);
  padding: 16px;
  background-color: #ffffff;
}

.badge_box {
  padding: 6px 10px;
}

span.badge {
  background: #5846a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 10px;
  top: -10px;
  right: -9px;
  width: 22px;
  height: 22px;
}

.TherapistTips_no {
  font-size: 98px;
  line-height: 180%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #b2b2b299;
}

.TherapyTips_imgBox {
  /* max-height: 193px; */
  width: 100%;
}

.TherapyTips_imgBox img {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  object-fit: cover;
}

.play_button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.Therapy_upcomming {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.mainBg {
  background-image: url("../imges/banner/mainbg.png");
}

.TherapistTips_sec {
  background-image: url("../imges/banner/bg1.png");
}

.top_banner {
  background-image: url("../imges/banner/banner.png");
  /* padding: 200px 16px; */
  padding: 160px 16px;
}

/* ---------chat secion start-------- */

.serch {
  padding: 12px 24px;
}

.serch_bar_box {
  position: relative;
}

.serch_bar_box input {
  border: transparent;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: 15px 15px 15px 60px;
  background: #f5f5f5;
}

.serch_bar_box input::placeholder {
  font-weight: 400;
  font-size: 24px;
  color: #707991;
}

.serch_bar_box span {
  position: absolute;
  left: 20px;
  top: 9px;
}

.serch_bar_box .form-control:focus {
  background-color: #f5f5f5;
}

.user_profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user_profile_item {
  padding: 15px 24px;
  cursor: pointer;
}

.active_box {
  background: #f5f5f5;
}

.use_img .user_profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
}

.use_img span {
  background: #8babd8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user_name .msg_No {
  width: 21px;
  height: 21px;
  padding: 2px 8px 2px 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user_name p {
  color: #6b779a;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
}

.user_name h6 {
  color: #0e1728;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 2px;
}

.checkmark {
  width: 18px;
  height: 18px;
}

.chat_wrepper {
  display: flex;
  padding-top: 1px;
}

.chat_list {
  width: 546px;
  background: white;
  border-right: 1.5px solid #d9dce0;
  height: 85vh;
  overflow: hidden;
}

.chat_list ul {
  /* height: calc(100% - 200px); */
  /* height: 100%; */
  overflow-y: auto;
  height: calc(100% - 108px);
}

.chat_body {
  height: calc(100vh - 310px);
  overflow-y: auto;
  padding: 10px 80px;
}

.chat_body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chat_body::-webkit-scrollbar {
  display: none;
}

.chat_details {
  /* margin-left: 546px; */
  /* background-color: #e9e6f3; */
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.chat_header {
  background-color: #ffffff;
  padding: 12px 24px;
  border-bottom: 1.5px solid #d9dce0;
}

.chat_card .day_box span {
  border-radius: 100px;
  margin-top: 10px;
  display: inline-block;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: 5px 34px;
}

.chating_left {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  max-width: 50%;
}

.chating_right {
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: end;
  width: fit-content;
  max-width: 50%;
  margin-left: auto;
}

.cheting_messg {
  background: #5846a5;
  padding: 15px;
  border-radius: 17px 17px 0px 17px;
  -webkit-border-radius: 17px 17px 0px 17px;
  -moz-border-radius: 17px 17px 0px 17px;
  margin-bottom: 5px;
  color: white;
  margin-bottom: 6px;
}

.chating_left .cheting_messg {
  border-radius: 8px 8px 8px 0px;
  -webkit-border-radius: 8px 8px 8px 0px;
  -moz-border-radius: 8px 8px 8px 0px;
  -ms-border-radius: 8px 8px 8px 0px;
  -o-border-radius: 8px 8px 8px 0px;
  background-color: #ffffff;
  color: #011627;
}

.chat_footer {
  padding: 12px 80px;
}

.type_messgae-input {
  width: 100%;
}

.type_messgae-input input {
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.type_messgae-input input::placeholder {
  font-family: "museo_sans_cyrl500";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.23px;
  color: #6b779a;
}

.sendMsg {
  position: absolute;
  right: 20px;
  top: 17px;
}

/* ---------chat secion end-------- */
.info-card {
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0 10px 10px 10px;
  text-align: center;
  background-color: #fff;
  position: relative;
  height: 100%;
}

.info-card .icon-badge {
  width: 65px;
  height: 84px;
  border-bottom-right-radius: 20.11px;
  border-bottom-left-radius: 20.11px;
  display: flex;
  align-items: end;
  justify-content: center;
  left: 50%;
  margin: auto;
  padding-bottom: 12px;
}

.bg-light-blue {
  background: #7acefa26;
}

.bg-light-pink {
  background: #fdf1f3;
}

.bg-light-yellow {
  background: #fef6ec;
}

/* .info-card .icon {
  font-size: 24px;
} */
.Contact_info .icon-badge {
  width: 70px;
  height: 68px;
  border-radius: 20.41px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radius_15 {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.radius_12 {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.datetime_info {
  border-left: 0.5px solid #00000033;
  border-right: 0.5px solid #00000033;
}

.date_txt {
  border-bottom: 1px solid #00000033;
  padding-bottom: 13px;
  display: inline-block;
}

.View_MorRBUtton {
  border: 1.14px solid #1b294a;
}

.nav_Tab2 {
  max-width: 517px;
}

.nav_Tab2.nav-pills li.nav-item {
  width: 31%;
}

.filter-badge {
  border-radius: 4.95px;
  -webkit-border-radius: 4.95px;
  -moz-border-radius: 4.95px;
  -ms-border-radius: 4.95px;
  -o-border-radius: 4.95px;
}

.filter-badge.bg1 {
  background: #e6ffdd;
  color: #288507;
}

.filter-badge.bg2 {
  background: #ffe8e5;
  color: #ff4d36;
}

.filter-badge.bg3 {
  background: #e4ecff;
  color: #1b294a;
}

.filter-badge.bg4 {
  background: #fffad9;
  color: #a8960a;
}

.feed-card {
  height: 100%;
}

.feed-card_header .avtar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
}

.feed-card_header .avtar-img1 {
  width: 56px;
  height: 56px;
}

.feed-card_body .feed_mainImg {
  width: 100%;
  height: 157px;
  border-radius: 7.68px;
}

/* ----------modal start--------------- */

.modal-dialog {
  max-width: 567px;
}

.modal-sm {
  max-width: 535px;

  hr {
    border: 0.68px solid #0000001a;
  }

  .modal-content {
    border-radius: 27.23px;
    -webkit-border-radius: 27.23px;
    -moz-border-radius: 27.23px;
    -ms-border-radius: 27.23px;
    -o-border-radius: 27.23px;
    overflow: hidden;
  }
}

.modal-lg {
  max-width: 782px;
}

.modal .modal-content .btn-close {
  position: absolute;
  right: 30px;
  top: 22px;
  z-index: 99;
  background-size: 30px;
  opacity: 1;
}

.modal .modal-content .btn-close {
  background-image: url("../imges/icons/close-Button.svg");
}

.modal-body {
  background-color: #ededfb;
}

.modal-content {
  border-radius: 16px;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.modal-header {
  background-color: var(--primary);
  border: 0;
  border-radius: 0;
  padding: 14px 30px;
}

.rating-card .stars {
  display: flex;
  gap: 8px;
}

.rating-card .star {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  /* color: #aaa; */
  color: #5d3cc4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.rating-card .star.filled {
  /* background: #5d3cc4;
  color: #86d7f2; */
  background: #86d7f2;
  color: #5d3cc4;
}

.rating-card .star:hover {
  /* border: 2px solid #5d3cc4; */
  border: 2px solid #86d7f2;
}

.rating-card .star.half-filled {
  background: #86d7f2;
  color: transparent;
  position: relative;
} 

.rating-card .star.half-filled::before {
  content: '★';
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    to right,
    #5d3cc4 50%,
    #aaa 50% 
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}




/* ----------modal end--------------- */
.w365 {
  max-width: 365px;
  width: 100%;
}

/* ----------calander css start-------------- */
.flatpickr-calendar.inline {
  width: 100%;
  padding: 0 10px;
}

.flatpickr-innerContainer {
  padding: 16px 0;
}

.flatpickr-rContainer {
  width: 100%;
}

.flatpickr-days {
  width: 100%;
}

.flatpickr-day {
  width: 100%;
  max-width: 130px !important;
}

.dayContainer {
  min-width: -webkit-fill-available;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover .flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* -----------calander css end----------- */
.Therapist_LIST {
  height: 530px;
  overflow-y: auto;
}

/* .setting_sec {
  background: #f1eff7;
} */

/* .setting_sec {
  background-image: url("../imges/banner/setting-bg.png");
} */
.setting_sec .tab-content_bg {
  background-image: url("../imges/banner/setting-bg.png");
}

.setting_sec .left_sidebar .nav-link {
  font-family: "museo_sans_cyrl500";
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0%;
  color: #222b45;
  text-align: left;
  padding: 20px 16px;
  border-bottom: 0.53px solid #0000001a;
}

.setting_sec .left_sidebar .nav-link.active {
  color: #5846a5;
  font-weight: 700;
  position: relative;
}

.setting_sec .left_sidebar .nav-link.active::after {
  content: "";
  width: 6px;
  height: 51px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  background: #5846a5;
  position: absolute;
  left: 0;
  top: 10px;
}

.setting_sec .left_sidebar .nav-link.active svg path {
  fill: #5846a5;
}

.setting_sec .left_sidebar .nav-link:last-child {
  border: none;
}

.setting_sec .left_sidebar .nav-link:last-child.active {
  color: #ec4d4d;
}

.setting_sec .left_sidebar .nav-link:last-child.active::after {
  background: #ec4d4d;
}

.setting_sec .left_sidebar .nav-link:last-child.active svg path {
  fill: #ec4d4d;
}

.setting_sec .user_detalis .user_img {
  width: 117px;
  height: 117px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 5px solid #5846a526;
}

.user-ProfilE {
  width: 117px;
  height: 117px;
  border: 5px solid #5846a526;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.user-ProfilE .userPofile_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.Edit_btn {
  position: absolute;
  bottom: -9px;
  right: -10px;
  z-index: 99;
}

.setting_sec .left_sidebar .delete_btn {
  color: #ec4d4d;
}

.setting_sec .input_fild .form-control {
  border: none;
  padding: 20px 15px;
  background-color: white !important;
}

.setting_sec .input_fild label {
  margin-bottom: 15px;
}

.setting_sec .icon {
  top: 20px;
}

.Cursor {
  cursor: pointer;
}

.setting_sec .identity-option {
  color: #404a6b;
  font-size: 16px;
}

.setting_sec hr {
  border-color: #00000040;
}

/* .setting_sec .tab-content > .tab-pane {
  max-height: 862px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
} */
.top_icon {
  position: absolute;
  right: -4px;
  top: -12px;
}

.about_card .about_img {
  max-height: 835px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.ContactUs_bottom h2 {
  color: #213650;
}

/* .ContactUs_sec {
  background: #f9faf9;
} */
.profile_dropdown .dropdown-menu {
  overflow: hidden;
}

.profile_dropdown .dropdown-item {
  padding: 15px 20px;
}

.profile_dropdown .dropdown-item.active svg path {
  fill: #ffffff;
}

.profile_dropdown .dropdown-item.active,
.profile_dropdown .dropdown-item:active {
  background-color: #5846a5;
  color: #ffffff;
}

.Notifaction_dropdown .notifaction_list {
  background-color: #f0eff7;
  padding: 28px 30px;
}

.notifaction_header {
  background-color: #5846a5;
  padding: 15px 24px;
}

.notifaction_card {
  max-height: 370px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

/* --------hover scollbar---------- */
.notifaction_card::-webkit-scrollbar {
  width: 6px;
  display: none;
}

.notifaction_card::-webkit-scrollbar-thumb {
  background-color: #5846a5;
  border-radius: 4px;
  visibility: hidden;
}

.notifaction_card:hover {
  scrollbar-width: thin;
}

.notifaction_card:hover::-webkit-scrollbar {
  display: block;
}

.notifaction_card:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

/* --------------- */
.bg1 {
  background-image: url("../imges/banner/setting-bg.png");
}

.custom_checkbox .form-check-input {
  width: 32px;
  height: 32px;
  border-color: #00000066;
  padding-left: 28px;
}

.custom_checkbox .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom_checkbox {
  max-width: 172px;
  width: 100%;
  display: flex;
  align-items: center;
}

span.time_icon {
  position: absolute;
  top: 20px;
  right: 14px;
}

.nav_Tab3.nav-pills li.nav-item {
  width: 23%;
}

#Cancel-Booking .identity-option {
  color: #404a6b;
  font-size: 16px;
}

.file_type {
  width: 64px;
  height: 62px;
  border-radius: 7.85px;
  -webkit-border-radius: 7.85px;
  -moz-border-radius: 7.85px;
  -ms-border-radius: 7.85px;
  -o-border-radius: 7.85px;
}

.UploaD_imgVideo_CARD {
  height: 835px;
}

.commnet_input input {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 0;
}

.feed_upload_img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 1620;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.Earning_selection .form-control {
  border: 1.15px solid #57525133;
  color: #222b45;
  width: 142px;
  border-radius: 11.49px;
  -webkit-border-radius: 11.49px;
  -moz-border-radius: 11.49px;
  -ms-border-radius: 11.49px;
  -o-border-radius: 11.49px;
  padding: 11px 12px;
}

#Add-UnavalibleDate .date-icon {
  top: 9px;
}

/*====================================== main-conetnt End====================================*/

/* ========================================footer start======================= */
footer {
  .Download_card p {
    color: #ffffff99;
  }

  ul li a:hover {
    color: #a6e6ff !important;
    border-bottom: 1px solid #a6e6ff;
  }

  .input-fild {
    margin-top: 25px;
    position: relative;
  }

  .footer-bottom-wrapper {
    background-color: #0d1c37;
  }

  .fa-brands:hover {
    color: #a6e6ff !important;
  }
}

.bot-chat_btn {
  position: fixed;
  right: 20px;
  bottom: 68px;
  z-index: 9999;
}

/* ------- */
/* CSS Multiple bot Chat */

#bot-chat {
  position: fixed;
  width: 600px;
  bottom: 0px;
  right: 0px;
  overflow: hidden;
  z-index: 9999;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

#bot-chat .chat_details {
  background-color: #e9e6f3;
}

a.blantershow-chat {
  position: fixed;
  z-index: 98;
  bottom: 25px;
  right: 30px;
}

@keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }

  15% {
    background-color: rgb(17, 17, 17);
  }

  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }

  25% {
    background-color: rgb(17, 17, 17);
  }

  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }

  35% {
    background-color: rgb(17, 17, 17);
  }

  45% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

.bot-chat_Hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.bot-chat_Show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

/* ----------------- */
#bot-chat .chat_body {
  height: calc(100vh - 552px);
  padding: 30px 30px;
}

#bot-chat .chat_footer {
  padding: 15px 30px;
}

#bot-chat .chat_details {
  border-radius: 12px 12px 0 0;
}

#bot-chat .chating_left .user {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#bot-chat .chat_header {
  background: var(--primary);
  padding: 15px 30px;
}

/* =======================Footer end-=================== */

/* ------date remover icon---- */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  opacity: 0;
  z-index: 99;
}

input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  z-index: 99;
}

input[type="file"] {
  display: none;
}

/* ------------------contry code start-------------- */

.intl-tel-input,
.iti {
  width: 100%;
}

/* ------------------contry code end-------------- */
.react-tel-input .form-control {
  border-radius: 7px !important;
}

.react-tel-input .flag-dropdown {
  border-radius: 7px 0 0 7px !important;
}

.react-tel-input .selected-flag {
  border-radius: 7px 0 0 7px !important;
}

/* react select */
/* Clean react-select styling */
.react-select__control {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding-left: 6px; /* Ensure no text gets cut */
  font-size: 14px;
  box-shadow: none;
}

.react-select__value-container {
  padding: 2px 8px;
}

.react-select__single-value {
  overflow: visible;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
}

.react-select__menu {
  z-index: 100;
}