/* =================================== Common CSS code start here ================================================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html[dir="rtl"] .sidebar {
  float: right;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body,
.page {
  padding: 82px 0 0;
  margin: 0;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: normal;
  color: #222222;
}

body *,
.page * {
  font-family: "Montserrat", sans-serif;
}

body.menu-scroll--hide {
  overflow-y: hidden;
}

main {
  min-height: calc(100vh - 878px);
}

img,
a,
input,
nav,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

a {
  display: inline-block;
  color: #222222;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

a:hover {
  color: #f82c51;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input::placeholder,
textarea::placeholder {
  color: 666666 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: 666666 !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: 666666 !important;
}

input[type="date"]::placeholder,
input[type="date"]::-webkit-datetime-edit {
  color: #666666 !important;
}

.listing-box-data h3:hover {
  color: #f82c51;
}

.new-listing-type-added {
  padding-bottom: 0px !important;
}

.product-card-btn.add-qty-btn .product-card__qty-wrap {
  justify-content: space-between;
  padding: 0 6px;
}

.container {
  max-width: 1344px;
  padding-left: 12px;
  padding-right: 12px;
}

.container-fluid {
  max-width: 1424px;
  padding-left: 12px;
  padding-right: 12px;
}

.py-60 {
  padding: 60px 0;
}

.text-body {
  color: #222222;
}

.text-gray {
  color: #666666;
}

.text-pink {
  color: #f82c51;
}

.text-purple {
  color: #6141D3;
}


/* preview container styles start */

.preview-img-cls {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-item {
  position: relative;
  display: inline-block;
}

.preview-item img.custom-preview-img-cls-adding {
  border-radius: 10px;
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
}

.preview-item .close-btn {
  position: absolute;
  top: 2px;
  right: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.preview-item .close-btn svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

/* preview container styles over */

.scroll-top-btn {
  position: fixed;
  bottom: 280px;
  right: 60px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #6141D3;
  box-shadow: 2px 6px 18px 0px #6141D333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1051;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn {
  position: fixed;
  bottom: 210px;
  right: 60px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1051;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.whatsapp-btn.show {
  opacity: 1;
  visibility: visible;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
  border-radius: 40px;
  flex: none;
}

.btn-secondary:hover {
  background-color: #6141D3;
  color: #ffffff;
}

.btn-secondary.disabled,
.btn-secondary[disabled] {
  background-color: #666666;
  border-color: #666666;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  cursor: none;
}

.btn-primary {
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
  border-radius: 44px;
  flex: none;
}

.btn-primary:hover {
  background-color: transparent;
  color: #6141D3;
}

.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #666666;
  border-color: #666666;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  cursor: none;
}

/* ================================================================== Specialty Filter CSS start  ===================================================================== */
.specialty-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.specialty-filter__option {
  position: relative;
  display: inline-block;
}

.specialty-filter__option input[type="radio"] {
  display: none;
}

.specialty-filter__option span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-radius: 10px;
  font-size: 16px;
  line-height: 18px;
  color: #666666;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease;
}

.specialty-filter__option input[type="radio"]:checked+span {
  background-color: #6141d3;
  color: #fff;
  border-color: #6141d3;
}

/* ================================================================== Specialty Filter over ============================================================================ */

/* ================================================================== purple Filter CSS start ========================================================================= */
.purple-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.purple-filter__option {
  position: relative;
  display: inline-block;
}

.purple-filter__option input[type="radio"] {
  display: none;
}

.purple-filter__option span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-radius: 10px;
  font-size: 18px;
  line-height: 20px;
  color: #666666;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease;
}

.purple-filter__option input[type="radio"]:checked+span {
  color: #ffffff;
  border-color: #6141d3;
  background-color: #6141d3;
}

/* ================================================================== purple Filter Over =============================================================================== */

/* ================================================================== Breadcrumb CSS Start ============================================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.breadcrumb .breadcrumb-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #666666;
}

.breadcrumb .breadcrumb-item a {
  color: #666666;
}

.breadcrumb .breadcrumb-item.active {
  color: #222222;
}

/* ================================================================== Breadcrumb CSS Over ============================================================================ */

/* ================================================================== Heading and typo CSS Start ===================================================================== */
.h-xl {
  font-size: 52px;
  line-height: 57px;
  font-weight: 500;
}

.h-lg {
  font-size: 42px;
  line-height: 46px;
  font-weight: 500;
}

.h-md {
  font-size: 32px;
  line-height: 32px;
  font-weight: 500;
}

.h-sm {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
}

.h-xs {
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.t-lg {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}

.t-md {
  font-size: 16px;
  line-height: 17px;
  font-weight: 400;
}

.t-sm {
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
}

/* ================================================================== Heading and typo CSS Over ======================================================================= */

/* ================================================================== Title With Link CSS Start ====================================================================== */
.title-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.link {
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  color: #f82c51;
}

.link:hover {
  color: #f82c51;
}

/* ================================================================== Title With Link CSS Over ====================================================================== */

/* ================================================================== Filter CSS Start =============================================================================== */
.filter-box {
  width: 100%;
  max-width: 260px;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  padding: 20px 16px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #222222;
  cursor: pointer;
  user-select: none;
}

.filter-header .arrow {
  transform: rotate(270deg);
  transition: transform 0.3s ease;
}

.filter-options {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.filter-box.open .filter-options {
  display: flex;
}

.filter-box.open .arrow {
  transform: rotate(360deg);
}

.checkbox-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  cursor: pointer;
  gap: 12px;
  position: relative;
}

.checkbox-item a {
  color: #222;
}

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

.custom-check {
  width: 18px;
  height: 18px;
  border: 2px solid #666666;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked+.custom-check {
  background-color: #f82c51;
  border-color: #f82c51;
}

.checkbox-item input[type="checkbox"]:checked+.custom-check::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ================================================================== Filters CSS Over here ============================================================================ */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(102, 102, 102, 0.2);
  color: #666666;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 18px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.filter-tag .close-btn {
  margin-left: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================================================================== Filters CSS Over here =========================================================================== */

/* ================================================================== Tabs CSS start here ============================================================================= */
.tabs {
  max-width: 100%;
}

.tab-buttons {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.tab-button {
  padding: 12px;
  background-color: #fff;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  color: #666666;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tab-button.active {
  background-color: #f5f5f5;
  color: #222222;
  border-color: transparent;
}

.tab-content-wrap {
  display: none;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 0 10px 10px 10px;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em transparent;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em transparent;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.tab-content-wrap.active {
  display: block;
}

/* ================================================================== Tabs CSS Over here ============================================================================= */

/* ================================================================== Faq CSS Start Here ============================================================================= */
.faq-wrapper {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 20px 14px;
}

.faq-header {
  margin-bottom: 20px;
}

.faq-item .accordion-button {
  background-color: #fff;
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #222222;
  box-shadow: none;
  padding: 16px;
}

.faq-item .accordion-button:not(.collapsed) {
  background-color: rgba(102, 102, 102, 0.1);
  border-radius: 8px 8px 0 0;
}

.faq-item .accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-image: var(--bs-accordion-btn-icon) !important;
}

.faq-item .accordion-body {
  background-color: #fff;
  font-size: 16px;
  line-height: 19px;
  color: #666666;
  padding: 16px;
}

.accordion-item {
  border: none;
  border-top: 1px solid #eee;
  background: transparent;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.accordion-item:first-child {
  border-top: none;
}

/* ================================================================== Faq CSS Over Here ============================================================================= */

/* ================================================================== header related css start ======================================================================  */
.header {
  background: #f5f5f5;
  position: fixed;
  width: 100%;
  z-index: 1052;
  padding: 18px 0;
  top: 0;
  transition: all 0.3s ease;
}

.header .header-inner {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header .logo picture {
  display: -ms-flex;
  display: flex;
  align-items: center;
}

.header .logo picture img {
  transition: all 0.3s ease;
}

.header .header-nav {
  position: relative;
  flex: 1;
}

.header .header-nav .nav-menu {
  transition: all 0.2s ease;
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.header .header-nav .nav-menu .nav-list {
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  gap: 26px;
  margin-right: auto;
}

.header .header-nav .nav-menu .nav-list li a {
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: normal;
  display: inline-block;
  transition: all 0.3s ease;
  color: #222222;
}

.header .header-nav .nav-menu .nav-list li a:hover {
  color: #f82c51;
}

.header .header-nav .nav-menu .nav-list li a.active {
  color: #f82c51;
  font-weight: 600;
}

.header .header-nav .nav-menu .lang-dropdown {
  position: relative;
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__toggle {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 0px;
  cursor: pointer;
  min-width: 70px;
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__toggle>img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__toggle svg {
  transition: transform 0.3s ease;
}

.header .header-nav .nav-menu .lang-dropdown.open .lang-dropdown__toggle svg {
  transform: rotate(180deg);
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 10px;
  margin-top: 8px;
  list-style: none;
  display: none;
  min-width: 100px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 0px #00000026;
  z-index: 1;
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  background-color: transparent;
  border: 0;
  width: 100%;
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__menu button:not(:last-child) {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

.header .header-nav .nav-menu .lang-dropdown .lang-dropdown__menu button:hover {
  background: #f5f5f5;
}

.header .header-nav .nav-menu .lang-dropdown.open .lang-dropdown__menu {
  display: block;
}

.header .header-nav .nav-menu .login-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
  flex: none;
}

.header .header-nav .nav-menu .login-btn:hover {
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
}

.header .header-nav .nav-menu .login-btn.disabled,
.header .header-nav .nav-menu .login-btn[disabled] {
  background-color: #666666;
  border-color: #666666;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  cursor: none;
}

.header .header-nav .nav-menu .register-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
  flex: none;
}

.header .header-nav .nav-menu .register-btn:hover {
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
}

.header .header-nav .nav-menu .register-btn.disabled,
.header .header-nav .nav-menu .register-btn[disabled] {
  background-color: #666666;
  border-color: #666666;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  cursor: none;
}

.header .header-nav.menu-open .nav-menu {
  left: 0;
  overflow-y: auto;
}

.header .header-nav.menu-open .menu-toggle .menu-bars {
  background: transparent;
}

.header .header-nav.menu-open .menu-toggle .menu-bars::before {
  transform: rotate(45deg);
  top: 0;
}

.header .header-nav.menu-open .menu-toggle .menu-bars::after {
  transform: rotate(-45deg);
  top: 0;
}

.header .header-nav .menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid #f82c51;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  position: relative;
}

.header .header-nav .menu-toggle .menu-bars {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 2px;
  background: #f82c51;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.header .header-nav .menu-toggle .menu-bars::before,
.header .header-nav .menu-toggle .menu-bars::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  background: #f82c51;
  transition: all 0.3s ease;
}

.header .header-nav .menu-toggle .menu-bars::before {
  top: -6px;
}

.header .header-nav .menu-toggle .menu-bars::after {
  bottom: -6px;
}

.header.active {
  background: whitesmoke;
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  backdrop-filter: blur(20px) saturate(200%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.header .header-nav .nav-menu .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .header-nav .nav-menu .topbar-right .notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.header .header-nav .nav-menu .topbar-right .notification-icon .badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #6141d3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 11px;
  font-weight: 500;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle {
  min-width: 210px;
  background-color: #ffffff;
  color: #222222;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 110.00000000000001%;
  padding: 6px;
  border: 0px solid #ccc;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle picture {
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle::after {
  display: none;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle .arrow {
  transition: transform 0.3s ease;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle .arrow.up {
  transform: rotate(180deg);
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  background-color: #fff;
  border: 0px solid #ddd;
  border-radius: 10px;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 0px 18px 0px #00000026;
  overflow: hidden;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu.show {
  display: block;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #666666;
  font-weight: 400;
  line-height: 110.00000000000001%;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link img {
  margin-right: 6px;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link:last-child {
  border: none;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link:hover {
  background-color: #f9f9f9;
}

.header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link svg {
  stroke: #6141d3;
  margin-right: 8px;
}

/* ================================================================== header related css Over ======================================================================  */

/* ================================================================== Footer css Start Here ========================================================================= */
.footer {
  background-color: #f5f5f5;
  color: #222222;
  padding: 60px 0 30px;
}

.doctor-cta {
  padding-bottom: 60px;
}

.doctor-cta .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
}

.doctor-cta .doctor-cta__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-cta .footer-logo {
  display: block;
  width: 164px;
  height: 50px;
  margin-bottom: 20px;
}

.doctor-cta .footer-logo img {
  width: 100%;
  height: 100%;
}

.doctor-cta .doctor-cta__left .doctor-cta__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
  max-width: 500px;
}

.doctor-cta .doctor-cta__left .doctor-cta__desc {
  font-size: 18px;
  line-height: 1.2;
  color: #666;
}

.doctor-cta .doctor-cta__desc p {
  margin-bottom: 10px;
}

.doctor-cta .doctor-cta__desc p:first-child {
  margin-bottom: 20px;
}

.doctor-cta .doctor-cta__desc p.phone-email-wrap {
  display: flex;
  gap: 20px;
}

.doctor-cta .doctor-cta__desc p.phone-email-wrap a {
  color: #666;
  text-decoration: none;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  transition: color 0.2s;
}

.doctor-cta .doctor-cta__desc p.phone-email-wrap a:hover {
  color: #6141D3;
}

.doctor-cta .doctor-cta__right {
  max-width: 490px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 340px;
  position: relative;
}

.doctor-cta .doctor-cta__right .doctor-cta__img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.doctor-cta .doctor-cta__right .doctor-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.doctor-cta .doctor-cta__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  width: 100%;
}

.doctor-cta .doctor-cta__card .doctor-cta__card-wrap {
  max-width: 322px;
}

.doctor-cta .doctor-cta__card h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
}

.custom-footer__container .container {
  display: flex;
  gap: 60px;
  padding-bottom: 60px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}

.custom-footer__map {
  flex: 0 0 652px;
  max-width: 652px;
  min-width: 320px;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: stretch;
}

.custom-footer__map img,
.custom-footer__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 0 0 18px;
  display: block;
}

.custom-footer__links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 68px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 40px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-col ul li a {
  color: #666;
  text-decoration: none;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #6141D3;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 110%;
  color: #222222;
  font-weight: 400;
}

.footer-bottom .footer-socials {
  display: flex;
  gap: 10px;
}

.footer-bottom .footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: rgba(102, 102, 102, 0.2);
}

/* ================================================================== Footer css Start Here ========================================================================= */

/* ================================================================== hero related css start here ==================================================================== */
.hero {
  background: linear-gradient(280deg,
      rgba(83, 39, 169, 0) 31.11%,
      rgba(83, 39, 169, 0.1137) 41.3%,
      #5327a9 62.74%,
      #5327a9 100%),
    url(../images/hero-section.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .heading-top-bottom {
  padding-bottom: 100px;
}

.hero .heading-top-bottom .hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 57px;
  text-align: left;
  max-width: 713px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero .heading-top-bottom .hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: left;
  max-width: 526px;
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.7);
}

.hero .hero__search-card {
  background: #ffffff;
  border-radius: 0px 10px 10px 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero .nav-pills .nav-link {
  font-weight: 500;
  color: #222;
  border-radius: 0.5rem;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  line-height: 22px;
  padding-left: 20px;
  align-items: center;
  display: flex;
  gap: 8px;
}

.hero .nav-pills .nav-link img {
  filter: invert(7%) sepia(37%) saturate(24%) hue-rotate(320deg) brightness(98%) contrast(85%);
}

.hero-flex {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 10px;
}

.hero-flex .select2-selection {
  border: none;
  background: transparent;
}

.hero__content-col .tabbing-hero-part .nav-pills {
  align-items: center;
}

.hero__content-col .tabbing-hero-part {
  width: fit-content;
  align-items: center;
  background: #fff;
  border-radius: 10px 10px 0px 0px;
  padding: 14px;
  border-bottom: 1px solid #66666633;
}

.hero .nav-pills .nav-link.active {
  font-family: "Montserrat", sans-serif;
  background-color: #6141D3;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  padding: 12px 20px;
  border-radius: 10px;
}

.hero .nav-pills .nav-link.active img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(40deg) brightness(109%) contrast(101%);
}

.hero .hero__form {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 14px;
}

.hero .hero__field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero .hero__field label {
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 0.25rem;
}

.hero .hero__select {
  position: relative;
  display: flex;
}

.hero .hero__select .hero__icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #6c757d;
  pointer-events: none;
}

.hero .hero__select select {
  font-family: "Montserrat", sans-serif;
  padding-left: 2rem;
  padding-right: 1.5rem;
  min-width: 0;
}

.hero .hero__search-btn {
  background-color: #6141D3;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  padding: 27px 23px 26px 23px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
}

.hero .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%228%22%20viewBox%3D%220%200%2015%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M13.5469%200.975708L7.54688%206.97571L1.54688%200.975708%22%20stroke%3D%22%23222222%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-size: 15px 8px;
  border: none;
  width: 15px;
  height: 15px;
  top: 0;
  margin-top: 8px;
}

.hero .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
  margin-top: 0px;
}

.select2-search--dropdown .select2-search__field:focus-visible {
  outline: none;
}

.hero-flex .select2-container .select2-selection--single .select2-selection__rendered:focus-visible {
  outline: none;
}

.hero-flex .select2-selection:focus-visible {
  outline: none;
}

/* ================================================================== hero related css Over here ==================================================================== */

/* ================================================================== profile card css start here ==================================================================== */
.profile-card-wrapper .profile-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 14px;
  height: 100%;
}

.profile-card-wrapper .profile-card .link.h-sm {
  font-size: 24px !important;
  line-height: 26px !important;
  font-weight: 500 !important;
  color: #6141D3;
}

.profile-card-wrapper .profile-info .profile-name {
  color: #222222;
  margin-bottom: 8px;
}

.profile-card-wrapper .profile-info .subtitle {
  color: #666666;
  margin-bottom: 8px;
}

.profile-card-wrapper .profile-info .product-price-wrap {
  margin-top: 14px;
  color: #222222;
}

.profile-card-wrapper .profile-info .product-price-wrap .h-sm {
  color: #f82c51;
}

.profile-card-wrapper .rating-stars {
  color: #ffcf26;
}

.profile-card-wrapper .rating-text {
  color: #666666;
}

.profile-card-wrapper .profile-meta {
  margin-top: 20px;
}

.profile-card-wrapper .profile-meta .label {
  color: #666666;
}

.profile-card-wrapper .profile-meta a {
  text-decoration: underline;
  color: #222222;
  font-weight: 500;
}

.profile-card-wrapper .profile-meta i {
  margin-right: 6px;
}

.profile-card-wrapper .subspecialties span {
  text-decoration: underline;
  margin-right: 6px;
  color: #222222;
  font-weight: 500;
}

.profile-card-wrapper .more-link {
  color: #f82c51 !important;
  font-weight: bold !important;
  cursor: pointer;
}

.profile-card-wrapper .extra-subspecialties {
  display: none;
}

.profile-card-wrapper .meta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.profile-card-wrapper .meta-group i {
  color: #555;
}

.profile-card-wrapper .profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 15px;
}

/* ================================================================== profile card css over here ==================================================================== */

/* ================================================================== common css for select2 start here ============================================================== */
.common-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%228%22%20viewBox%3D%220%200%2015%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M13.5469%200.975708L7.54688%206.97571L1.54688%200.975708%22%20stroke%3D%22%23222222%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-size: 15px 8px;
  border: none;
  width: 15px;
  height: 15px;
  top: 0;
  margin-top: 8px;
}

.common-select2 .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
  margin-top: 0px;
}

.common-select2 .select2-search--dropdown .select2-search__field:focus-visible {
  outline: none;
}

.common-select2 .select2-container .select2-selection--single .select2-selection__rendered:focus-visible {
  outline: none;
}

.common-select2 .select2-selection:focus-visible {
  outline: none;
}

.common-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 8px;
  top: 0px;
  bottom: 0;
  margin: auto;
}

.common__select .select2-selection {
  border: none;
  box-shadow: 0px 0px 18px 0px #00000026;
  background: #ffffff;
  height: fit-content !important;
  border-radius: 10px !important;
}

.common__select .select2-selection__rendered {
  padding: 12px 16px;
  font-size: 16px;
  color: #222222 !important;
}

.common__select .select2-selection__placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #666666 !important;
  line-height: 20px;
}

.common__select .select2-container--open .select2-selection {
  border-radius: 10px 10px 0px 0px !important;
}

.select2-dropdown {
  border: none;
  background: #f5f5f5;
  border-radius: 0px 0px 10px 10px !important;
  box-shadow: 0px 0px 18px 0px #00000026;
}

.select2-dropdown .select2-search .select2-search__field {
  border: none;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #6141d3;
}

.select2-results__option {
  border-bottom: 1px solid #66666633;
  padding: 12px 16px;
  font-size: 16px;
}

.select2-results__option:last-child {
  border-bottom: none;
}

/* ================================================================== common css for select2 over here ================================================================ */

/* ===================================================== Hero Inner section related css start here ==================================================================== */
.new-inner-common-hero .heading-top-bottom .hero__title {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 36px;
  max-width: 100%;
}

.new-inner-common-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.new-inner-common-hero .heading-top-bottom {
  padding-bottom: 20px;
}

.new-inner-common-hero .heading-top-bottom .hero__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  max-width: 540px;
}

/* ===================================================== Hero Inner section related css start here ==================================================================== */

/* ================================================================= doctor card grid related css start here ========================================================== */
.doctor-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.doctor-card-grid .doctor-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.doctor-card-grid .doctor-card__img {
  flex: 0 0 144px;
  width: 144px;
  height: 144px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-card-grid .doctor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card-grid .doctor-card__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-card-grid .doctor-card__name {
  color: #222;
  margin-bottom: 6px;
}

.doctor-card-grid .doctor-card__specialty {
  font-size: 16px;
  color: #666666;
  margin-bottom: 14px;
}

.doctor-card-grid .doctor-card__meta {
  font-size: 18px;
  color: #666;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.doctor-card-grid .doctor-card__meta h5.h-xs {
  color: #222;
}

.doctor-card-grid .doctor-card__rating span {
  color: #f7b500;
}

.doctor-card-grid .doctor-card__fees-label {
  color: #222;
  font-weight: 500;
  margin-left: 8px;
}

.doctor-card-grid .doctor-card__fees {
  color: #f82c51;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 2px;
}

/* ================================================================= doctor card grid related css Over here ========================================================== */

/* ======================================================================== Common Purple Box css Start here ========================================================= */
.common-purple-box {
  background: #f5f5f5;
  border-radius: 10px;
}

.common-purple-box .form-header {
  background-color: #6141d3;
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 10px 10px 0 0;
}

.common-purple-box form {
  padding: 14px;
}

.common-purple-box form>div:not(:last-child) {
  margin-bottom: 20px;
}

.common-purple-box .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.common-purple-box .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.common-purple-box .form-group label {
  margin-bottom: 4px;
  font-weight: 500;
  color: #222222;
}

.common-purple-box .form-group label .text-danger {
  color: #F82C51 !important;
}

.common-purple-box .input-group .form-control,
.common-purple-box .form-group .form-control {
  padding: 15px 16px;
  border-radius: 10px !important;
  font-size: 16px;
  color: #222222;
  background-color: #ffffff;
  box-shadow: none;
  border-color: transparent;
}

.common-purple-box .form-group textarea.form-control {
  padding: 10px 16px;
  resize: none;
}

.common-purple-box .form-group .form-control.date-picker {
  width: 100%;
}

.common-purple-box .form-group .form-control[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.common-purple-box .form-group .common__select .select2-selection {
  box-shadow: none;
}

.common-purple-box .form-group .common__select .select2-selection__rendered {
  padding: 14px 16px;
}

.common-purple-box .form-group .document-wrapper {
  padding: 8px 18px;
  border-radius: 10px;
  background-color: white;
}

.common-purple-box .form-group .document-name {
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 350px;
}

.common-purple-box .form-group .document-wrapper:not(:last-child) {
  margin-bottom: 10px;
}

.common-purple-box .form-group .document-wrapper .btn-download {
  background: transparent;
  border: none;
  padding: 0;
}

.common-purple-box .form-group .custom-upload .upload-box {
  border: 1px dashed #666666;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.common-purple-box .form-group .custom-upload .upload-box.dragover {
  border-color: #6141d3;
}

.common-purple-box .form-group .custom-upload .upload-icon {
  margin-bottom: 16px;
}

.common-purple-box .form-group .custom-upload .t-md {
  color: #666666;
}

.common-purple-box .separator {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.common-purple-box .separator::before,
.common-purple-box .separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(102, 102, 102, 0.2);
  margin: 0 10px;
}

.common-purple-box .form-group .custom-upload .browse-link {
  color: #6141D3 !important;
  cursor: pointer;
  text-decoration: underline;
  margin: 0 !important;
}

.form-group .note-list,
.common-purple-box .final-shipping-note {
  color: #666666;
}

.common-purple-box .final-shipping-note {
  line-height: 19px;
}

.common-purple-box .input-group button {
  background-color: transparent !important;
  border-color: transparent !important;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  padding: 0 16px;
}

.common-purple-box .input-group button img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(6%) saturate(17%) hue-rotate(9deg) brightness(96%) contrast(88%);
}

.common-purple-box .input-group button img.card-icon {
  filter: none;
}

.common-purple-box .form-group .form-control:focus {
  border: 1px solid #6141d3;
  outline: none;
  box-shadow: 0px 1px 2px 0px #e4e5e73d;
}

.common-purple-box .error-message {
  font-size: 14px;
  color: #6141d3;
  margin-top: 6px;
}

.common-purple-box .btn-group {
  gap: 20px;
}

.common-purple-box .btn-group button {
  flex: 1;
}

.common-purple-box .toggle-radio-box {
  background: #fff;
  box-shadow: 0px 1px 2px 0px #e4e5e73d;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-radius: 10px;
}

.common-purple-box .toggle-radio-box .form-group .form-control {
  border-color: #66666633 !important;
  line-height: normal;
  padding: 12px !important;
}

.common-purple-box .toggle-radio-box .payment-head {
  padding: 12px 20px;
}

.common-purple-box .toggle-radio-box .form-check-input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  box-shadow: none;
  margin: 0;
  float: unset;
  margin-top: 2px;
}

.common-purple-box .toggle-radio-box .form-check-input:checked {
  background-color: #f82c51;
  border-color: #f82c51;
}

.common-purple-box .toggle-radio-box .form-check-label {
  cursor: pointer;
  color: #666666;
}

.common-purple-box .payment-box {
  display: none;
  border-top: 1px solid #66666633;
  padding: 24px 14px;
}

.common-purple-box .payment-box.active {
  display: block;
}

.common-purple-box .promo-title {
  color: #222222;
}

.common-purple-box .promo-feedback {
  color: #6141d3;
}

.common-purple-box .form-row .social-btn {
  display: flex;
  gap: 12px;
  width: 100%;
}

.common-purple-box .form-row .social-btn .login-Gfa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 110%;
  font-weight: 500;
  color: #222;
  flex: 1;
}

/* ======================================================================== Common Purple Box css over here =========================================================== */

/* ====================================================================== Gradient Action Box css Start here ========================================================= */
.gradient-action-box {
  background: linear-gradient(180deg,
      rgba(248, 44, 81, 0.1) 0%,
      rgba(97, 65, 211, 0.1) 99.95%);
  padding: 13px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gradient-action-box .action-box-content {
  max-width: 526px;
}

.gradient-action-box .action-box-content p {
  line-height: 18px;
  opacity: 0.8;
}

.gradient-action-box .text-purple {
  color: #6141d3;
}

/* ====================================================================== Gradient Action Box css Over here ========================================================= */

/* ===================================================================== dashbord Modal Css Start here =============================================================== */

.modal {
  background-color: rgba(34, 34, 34, 0.6);
}

.modal .modal-dialog {
  margin: auto;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.modal .modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
}

.modal .modal-header {
  background: #6141d3;
  padding: 14px;
  justify-content: space-between;
  border-radius: 0;
  border: 0;
}

.modal-title {
  flex: 1;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
}

.close-modal-btn {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: none;
  outline: none;
  box-shadow: inherit;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
}

.modal .modal-body {
  padding: 14px 14px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #666666;
  background-color: #f5f5f5;
}

.modal .modal-body .modal-inner-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 14px;
  color: #222222;
}

.modal .modal-footer {
  background-color: #f5f5f5;
  border: none;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0 14px 14px;
}

.modal .modal-footer .footer-btn {
  margin: 0;
  width: calc(50% - 10px);
  padding: 14px;
}

.cancelappointment .modal-dialog {
  max-width: 496px;
}

.modal .modal-body>picture {
  display: inline-block;
  margin-bottom: 20px;
}

.modal .modal-body textarea {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  color: #666666;
  border: none;
  outline: none;
  box-shadow: inherit;
  min-height: 100px;
  resize: none;
}

.changestatus .modal-dialog {
  max-width: 453px;
}

/* ===================================================================== dashbord Modal Css Over here =============================================================== */

/* ==================================================================== Sort by related css start here ============================================================== */
.dropdown-toggle .dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.common-sorting-cls .custom-dropdown-menu li .dropdown-item.active,
.common-sorting-cls .custom-dropdown-menu li .dropdown-item:active {
  background: #f5f5f5;
}

.common-sorting-cls .custom-radio .form-check-input:checked {
  background-color: #e60000;
  border-color: #e60000;
  opacity: 1;
}

.common-sorting-cls .custom-radio .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0px;
  border: 2px solid #66666633;
  box-shadow: 0px 2px 2px 0px #1b1c1d1f;
  opacity: 1;
}

.irs--round .irs-line {
  top: 37px;
  height: 10px;
  background-color: #dee4ec;
  border-radius: 44px;
}

.common-sorting-cls.custom-radio .form-check-label {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  line-height: 20px;
}

.irs--round .irs-bar {
  background-color: #f82c51;
  height: 10px;
}

.irs--round .irs-handle {
  background-color: #fff;
  box-shadow: none;
  border: 2px solid #f82c51;
  width: 16px;
  height: 16px;
  top: 32px;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: #fff;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background-color: transparent;
  color: #666666;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before,
.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}

.custom-check:checked {
  background-color: #f82c51;
  border-color: #f82c51;
}

.custom-check {
  width: 16px;
  height: 16px;
}

.common-price-cls .custom-dropdown-toggle {
  border-radius: 10px;
  margin-bottom: 0px !important;
  background: #e5e5e5 !important;
  border: none;
  min-width: 232px;
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  padding: 14px 16px;
  line-height: 24px;
}

.common-price-cls .custom-dropdown-menu {
  border-radius: 0px 0px 10px 10px;
  border: none;
  background: #f5f5f5;
  box-shadow: 0px 0px 10px 0px #00000026 !important;
  min-width: 232px !important;
  padding: 0px;
}

.common-price-cls .custom-dropdown-menu li {
  border-bottom: 1px solid #66666633;
}

.common-price-cls .custom-dropdown-menu li .dropdown-item {
  padding: 10px 14px 10px 35px;
  display: flex;
  align-items: center;
}

.sort-by-arrow {
  margin-left: auto;
}

.common-price-cls .custom-dropdown-toggle.show .sort-by-arrow .common-arrow-cls-type {
  transform: rotate(0deg);
}

.common-price-cls .custom-dropdown-toggle .sort-by-arrow .common-arrow-cls-type {
  transform: rotate(180deg);
}

.common-sorting-cls .custom-dropdown-toggle.show .sort-by-arrow .common-arrow-cls-type {
  transform: rotate(0deg);
}

.common-sorting-cls .custom-dropdown-toggle .sort-by-arrow .common-arrow-cls-type {
  transform: rotate(180deg);
}

.common-sorting-cls .custom-dropdown-toggle {
  border-radius: 10px;
  margin-bottom: 0px !important;
  background: #e5e5e5 !important;
  border: none;
  min-width: 232px;
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  padding: 14px 16px;
  line-height: 24px;
}

.new-form-check-input-cls .form-check-input[type="checkbox"] {
  margin-top: -1px;
}

.new-form-check-input-cls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-form-check-input-cls .form-check-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #666;
}

.new-form-check-input-cls .form-check-input[type="checkbox"]:focus {
  box-shadow: none;
  border-color: #f82c51;
}

.common-sorting-cls .custom-dropdown-toggle.show {
  border-bottom: 1px solid #66666633;
}

.common-sorting-cls .custom-dropdown-menu li:last-child {
  border-bottom: none;
}

.common-sorting-cls .custom-dropdown-menu li {
  border-bottom: 1px solid #66666633;
}

.common-sorting-cls .custom-dropdown-menu li .dropdown-item {
  padding: 10px 14px 10px 35px;
  display: flex;
  align-items: center;
}

.common-sorting-cls .custom-dropdown-menu {
  border-radius: 0px 0px 10px 10px;
  border: none;
  background: #f5f5f5;
  box-shadow: 0px 0px 10px 0px #00000026 !important;
  min-width: 232px;
  padding: 0px;
}

/* ==================================================================== Sort by related css Over here ============================================================== */

/* =================================== Common CSS code over here ================================================================================================= */

/* =================================== My Address code Start here ================================================================================================= */
.address-card {
  background: #f5f5f5;
  border-radius: 10px;
  max-width: 555px;
  margin: auto;
  padding: 0;
  overflow: hidden;
}

.address-header {
  background: #6141d3;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address-header h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}

.address-header button {
  background: #fff;
  border: none;
  border-radius: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.address-details-form .address-header button {
  background: transparent;
}

.address-list {
  padding: 14px;
}

.address-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.address-label-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.radio-mark::after {
  content: "";
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0px 2px 2px 0px #1b1c1d1f;
}

.custom-radio input:checked+.radio-mark {
  border-color: #ff2b54;
  background: #ff2b54;
}

.custom-radio input:checked+.radio-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.address-desc-text {
  border-radius: 10px;
  padding: 20px 16px;
  background: #ffffff;
}

.address-desc {
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  margin: 0;
}

.address-title {
  color: #666666;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}

.address-default {
  padding: 6px 8px;
  background: rgba(97, 65, 211, 0.1);
  border-radius: 50px;
  color: #6141d3;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  margin: 0;
}

.address-item.address-item-border {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

.address-detail-form-main .address-label-main {
  margin-bottom: 20px;
}

.address-detail-form-main .address-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-detail-form-main .form-group {
  display: flex;
  align-items: center;
  gap: 10px 20px;
}

.address-detail-form-main .form-group.address-group {
  flex-direction: column;
}

.address-detail-form-main .form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.address-form label {
  color: #222222;
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
}

.address-form input {
  padding: 18px 16px;
  border: none;
  border-radius: 10px;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  min-height: 36px;
  height: 100%;
}

.address-form input::placeholder {
  color: #222222;
}

.address-form input:focus {
  outline: none;
}

.address-detail-form-main .form-group .common__select .select2-selection {
  height: 56px !important;
  box-shadow: none;
}

.add-address-form .address-form input::placeholder {
  color: #666666;
}

.address-detail-form-main .form-group .common__select .select2-selection__placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #666666 !important;
  line-height: 110%;
}

.address-card.personal-info-form {
  max-width: 100%;
}

.profile-picture-group .profile-picture-field {
  max-width: 100px;
  width: 100%;
  border-radius: 20px;
}

.profile-picture-group .profile-picture-field .profile-picture {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.address-card .form-group.gender-group .purple-filter {
  gap: 10px 14px;
}

.address-card .form-group.gender-group .purple-filter .purple-filter__option {
  flex: 1 1 auto;
}

.address-card .form-group.gender-group .purple-filter .purple-filter__option span {
  display: block;
  text-align: center;
}

.address-card .form-group.gender-group .purple-filter .purple-filter__option input[type="radio"]:checked+span {
    color: #6141d3;
    border-color: #6141d3;
    background-color: #fff;
}

.date-of-birth-group .form-field .date-picker-field {
  position: relative;
  display: flex;
}

.date-of-birth-group .form-field .date-picker-field input {
  width: 100%;
}

.date-of-birth-group .form-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.calendar-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.profile-edit-section .profile-picture-group .profile-picture-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.profile-edit-section .profile-picture-group .profile-picture-wrapper .edit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.profile-edit-section .profile-picture-group .profile-picture-wrapper .edit-icon img {
  width: 20px;
  height: 20px;
}

.profile-edit-section .profile-picture-group .profile-picture-wrapper .upload-input {
  display: none;
}

.reset-password-wrapper {
  display: grid;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: calc(56% - 10px) calc(44% - 10px);
}

.address-card.address-details-form.reset-password-form {
  max-width: 100%;
  width: 100%;
}

.address-card.address-details-form.reset-password-form .address-header {
  justify-content: center;
}

.reset-password-form .password-input-container {
  position: relative;
  display: flex;
}

.reset-password-form .password-input-container input[type="password"],
.reset-password-form .password-input-container input[type="text"] {
  width: 100%;
}

.reset-password-form .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.reset-password-form .toggle-password img {
  width: 22px;
  height: 22px;
}

.reset-password-btn-group {
  margin-top: 20px;
}

.reset-password-image {
  width: 100%;
}

.reset-password-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.form-note__text {
  margin: 0;
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
}

/* =================================== My Address code Over here ================================================================================================= */

/* =================================== My Cards code Start here ================================================================================================= */
.visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right {
  width: 100%;
  max-width: 552px;
  margin: auto;
}

.visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right form .payment-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border-radius: 20px;
  background: #fff;
}

.visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right form .payment-card-item .payment-card-type {
  font-size: 12px;
  line-height: 13px;
  padding: 6px 8px;
  color: #6141d3;
  background-color: #6141d31a;
  border-radius: 999px;
  margin-left: 10px;
}

.visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right form .payment-card-item .btn-secondary {
  margin-left: auto;
}

.visitor-login-wrap .my-cards-page .common-purple-box .toggle-radio-box .form-check-label {
  cursor: default;
}

/* =================================== My Cards code Over here ================================================================================================= */

/* ==================================== Booking Summary related code Start here ================================================================================= */
.visitor-login-wrap {
  padding: 20px 0 60px;
}

.visitor-login-wrap .visitor-login-inner {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left {
  width: calc(57% - 10px);
}

.visitor-login-wrap .visitor-login-inner .visitor-login-right {
  width: calc(43% - 10px);
}

.visitor-login-wrap .subscription-payment-thankyou.visitor-login-inner .visitor-login-left,
.visitor-login-wrap .subscription-payment-thankyou.visitor-login-inner .visitor-login-right {
  width: calc(50% - 10px);
}

.visitor-login-wrap .home-visit-inner {
  align-items: stretch;
}

.visitor-login-wrap .home-visit-inner .visitor-login-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.visitor-login-wrap .home-visit-inner .common-purple-box .final-shipping-note {
  max-width: 532px;
  margin: auto;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-meta {
  margin-top: 14px;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper>div:not(:last-child) {
  margin-bottom: 14px;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper .profile-avatar {
  width: 116px;
  height: 116px;
  margin: 0;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper .booking-title-sm {
  margin-bottom: 20px;
  color: #222222;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper .profile-card.booking-summary-wrap .h-xs {
  color: #666666;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper .profile-card.booking-summary-wrap .t-lg,
.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper .profile-card.booking-summary-wrap .text-decoration-underline {
  color: #222222;
}

.visitor-login-wrap .visitor-login-inner .visitor-login-left .profile-card-wrapper .profile-card.booking-summary-wrap .total-amt {
  color: #f82c51;
}

/* ==================================== Booking Summary related code Over here ================================================================================= */

/* ==================================== Checkout related code Start here ================================================================================= */
.checkout-wrap {
  padding: 20px 0 60px;
}

.checkout-wrap .checkout-inner {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.checkout-wrap .checkout-inner .checkout-left {
  width: calc(57% - 10px);
}

.checkout-wrap .checkout-inner .checkout-right {
  width: calc(43% - 10px);
}

.checkbox-payment-wrap .checkout-inner .checkout-left,
.checkbox-payment-wrap .checkout-inner .checkout-right {
  width: calc(50% - 10px);
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper>div:not(:last-child) {
  margin-bottom: 14px;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-card.booking-summary-wrap .h-xs {
  color: #666666;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-avatar {
  width: 160px;
  height: 122px;
  margin: 0;
  background: radial-gradient(87.55% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      rgba(104, 77, 133, 0.1) 100%);
  border-radius: 10px;
  object-fit: cover;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-info {
  padding-right: 20px;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper button {
  margin-left: auto;
  background-color: transparent !important;
  border-color: transparent !important;
  padding: 0;
  position: absolute;
  top: 14px;
  right: 14px;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper button .close-icon {
  filter: brightness(0) saturate(100%) invert(8%) sepia(6%) saturate(17%) hue-rotate(9deg) brightness(96%) contrast(88%);
}

.checkout-wrap .checkout-inner .profile-card-wrapper .profile-card .order-summary-title {
  color: #222222;
  margin-bottom: 20px;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-card .order-summary-card {
  padding: 14px;
  background-color: white;
  border-radius: 19px;
  margin-bottom: 20px;
  position: relative;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-card .order-summary-card:nth-last-child(1) {
  margin-bottom: 0;
}

.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-card.booking-summary-wrap .t-lg,
.checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-card.booking-summary-wrap .text-decoration-underline {
  color: #222222;
}

.checkout-wrap .checkout-inner .profile-card-wrapper .booking-summary-wrap .total-amt {
  color: #f82c51;
}

.checkout-wrap .checkout-inner .checkout-right .toggle-radio-box {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
}

.checkout-wrap .checkout-inner .common-purple-box .toggle-radio-box .form-group .form-control {
  border-color: transparent !important;
  line-height: 24px;
  padding: 15px 16px !important;
}

.checkout-wrap .checkout-inner .common-purple-box .toggle-radio-box .form-group .form-control:focus {
  border: 1px solid #6141d3 !important;
  outline: none !important;
  box-shadow: 0px 1px 2px 0px #e4e5e73d !important;
}

.checkout-wrap .checkout-inner .common-purple-box .toggle-radio-box .payment-head {
  padding: 0;
}

.checkout-wrap .checkout-inner .common-purple-box .payment-box {
  border: 0;
  padding: 20px 0;
  border-bottom: 1px solid #66666633;
}

.checkbox-payment-wrap .form-group label {
  margin-bottom: 4px;
  font-weight: 500;
  color: #222222;
}

.checkbox-payment-wrap .form-group .note-list {
  color: #666666;
}

/* ==================================== Checkout related code Start here ================================================================================= */

/* =================================== my order related css start here ================================================================================ */
.myorder-account .order-placed-here {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.myorder-account .my-order-process {
  padding-bottom: 60px;
}

.new-my-order-wrapped {
  margin: 40px 0px 40px 0px;
}

.my-order-process .tab-button {
  min-width: 150px;
}

.myorder-account .search-product-wrap {
  padding: 16px;
  background: #f5f5f5;
  margin: 0px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 34%;
  border-radius: 10px;
}

.myorder-account .search-product-wrap .search-product {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.myorder-account .search-product-wrap .search-product .search-btn {
  border: none;
  padding: 0;
  background-color: transparent;
}

.myorder-account .search-product-wrap .search-product .search-btn img {
  height: 20px;
  width: 20px;
}

.myorder-account .search-product-wrap .search-product .search-input {
  border: none;
  padding: 0;
  background-color: transparent;
  font-size: 16px;
  line-height: 18px;
  color: #222;
  font-weight: 400;
  width: 100%;
}

.myorder-account .order-summary-card {
  padding: 14px;
  background-color: white;
  border-radius: 19px;
  position: relative;
}

.myorder-account a:not(:last-child) .order-summary-card {
  margin-bottom: 20px;
}

.myorder-account .profile-avatar {
  width: 140px;
  height: 140px;
  margin: 0;
  background: radial-gradient(87.55% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      rgba(104, 77, 133, 0.1) 100%);
  border-radius: 10px;
  object-fit: cover;
}

.myorder-account .profile-info {
  padding-right: 20px;
}

.myorder-account .profile-name {
  color: #222222 !important;
  margin-bottom: 14px;
}

.myorder-account .subtitle {
  color: #666666;
  margin-bottom: 6px;
}

.myorder-account .order-right-side .subtitle {
  margin-bottom: 8px;
}

.myorder-account .product-price-wrap {
  margin-top: 14px;
  color: #222222;
}

.myorder-account .order-left-side {
  display: flex;
  align-items: center;
  gap: 15px;
}

.myorder-account.myappointements-cls .order-left-side {
  align-items: flex-start;
}

.myorder-account .order-right-side {
  margin-left: auto;
}

.myorder-account .bolding-text {
  color: #222;
  font-weight: 500;
}

.myorder-account .order-place-details-cls {
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  color: #222222;
}

.myorder-account .bolding-label {
  background: #f6e655;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 12px;
  color: #222222;
  border-radius: 40px;
  text-transform: uppercase;
  min-width: 200px;
  text-align: center;
}

.myorder-account .load-more-wrap {
  margin: 0 auto;
  text-align: center;
}

.myorder-account .load-more-wrap .load-more-btn {
  min-width: 126px;
  padding: 10px 16px;
}

.myorder-account .deliverd-label-cls {
  background: #90d54e !important;
}

.myorder-account .outof-delivery-cls {
  background: #fa834b !important;
}

.myorder-account .cancelled-cls {
  background: #F82C51 !important;
  color: #ffffff;
}

.myorder-account .flex-order-part {
  display: flex;
  align-items: center;
}

.my-order-details-cls .product-price-wrap {
  margin-top: 14px;
  color: #222222;
}

.my-order-details-cls .h-sm {
  color: #f82c51;
}

.my-order-details-cls .wrapped-main {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.order-information-cls .wrapped-main {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.my-order-details-cls .order-summary-card {
  margin-bottom: 0px;
}

.my-order-details-cls .my-order-details-heading {
  font-weight: 500;
  font-size: 24px;
  color: #222;
  line-height: 28px;
  margin-bottom: 20px;
}

.order-information-cls .my-order-process-details .order-label-same {
  margin-bottom: 14px;
}

.order-information-cls .my-order-process-details .bg-back-added-cls {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
}

.order-information-cls .my-order-process-details .order-label-same:last-child {
  margin-bottom: 0px;
}

.order-information-cls .my-order-process-details .order-label-same .subtitle {
  margin-bottom: 0px;
}

.myorder-account .order-lefttoright-side-details {
  margin-left: auto;
}

.new-order-appointement-cls .my-order-process-details {
  margin-top: 0px;
}

.new-order-main-checkout-cls {
  padding: 0px 0px 0px 0px;
  margin-top: 40px;
}

.my-order-process-details .my-order-details-heading {
  font-weight: 500;
  font-size: 24px;
  color: #222;
  line-height: 28px;
  margin-bottom: 20px;
}

.order-information-cls .my-order-process-details {
  margin-bottom: 40px;
  margin-top: 40px;
}

.my-order-details-cls .download-invoice-btncls {
  text-align: center;
  margin: 40px auto 20px auto;
}

.my-order-details-cls .download-invoice-btncls .download-invoice-cls:hover {
  border: 1px solid #f82c51;
  background-color: transparent;
  color: #f82c51;
}

.my-order-details-cls .download-invoice-btncls .download-invoice-cls {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #f82c51;
  background-color: #f82c51;
  color: #ffffff;
  flex: none;
  width: 100%;
}

.myappointements-cls .profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.myappointements-cls .order-right-side .subtitle {
  margin-bottom: 14px;
}

.appointement-details-type .bg-back-added-cls {
  height: calc(100% - 48px);
}

.appointement-all-type .booking-log-add {
  padding: 40px 0 20px 0;
}

.appointement-all-type .booking-log-add .cancel-appointement-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
  flex: none;
  width: 100%;
}

.appointement-all-type .booking-log-add .cancel-appointement-btn:hover {
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
}

.appointement-all-type .booking-log-add .reschedule-appointement-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
  flex: none;
  width: 100%;
}

.appointement-all-type .booking-log-add .reschedule-appointement-btn:hover {
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
}

.cancelappointment .booking-info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.cancelappointment .booking-info-card .booking-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  align-items: center;
  width: 100%;
  padding: 0px 14px 14px 14px;
}

.cancelappointment .booking-info-card .booking-header h3.booking-date {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  color: #222;
  margin-bottom: 0;
}

.cancelappointment .booking-info-card .booking-header .next-prev-slot {
  display: flex;
  gap: 8px;
}

.cancelappointment .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
  padding: 0;
}

.cancelappointment .booking-info-card .bokingslot-list {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  padding: 14px 15px 20px 15px;
}

.cancelappointment .booking-info-card .slot-checkbox:has(input[type="checkbox"]:checked) {
  border-color: #6141d3;
  color: #6141d3;
  background: transparent;
}

.cancelappointment .booking-info-card .slot-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(102, 102, 102, 0.6);
  color: rgba(102, 102, 102, 0.6);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  width: 104px;
  transition: border 0.2s, background 0.2s, color 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cancelappointment .booking-info-card .slot-checkbox input[type="checkbox"] {
  display: none;
}

.cancelappointment .booking-info-card .slot-checkbox span {
  width: 100%;
  text-align: center;
}

.cancelappointment .booking-info-card .slot-checkbox span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 300px) / 1620);
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.cancelappointment .booking-info-card .slotbooking-btn {
  display: flex;
  padding: 0px 14px;
  width: 100%;
}

.cancelappointment .booking-info-card .slotbooking-btn button {
  padding: 14px 14px;
}

.cancelappointment .booking-info-card .slot-checkbox:has(input[type="checkbox"]:disabled) {
  background: #f5f5f5;
  color: #bbb;
  border: 1px solid rgba(102, 102, 102, 0.6);
  cursor: not-allowed;
}

.cancelappointment .modal-body {
  padding-left: 0px;
  padding-right: 0px;
}

.cancelappointment .modal-inner-title {
  padding-top: 20px;
  color: #666666 !important;
  margin-bottom: 0px !important;
  font-size: 16px !important;
  max-width: 339px;
  margin-left: auto;
  margin-right: auto;
}

.cancelappointment .full-note-cls {
  color: #222222;
}

.rateyourexperience-cls .modal-dialog {
  max-width: 530px;
}

.rateyourexperience-cls .inner-rate-exerience {
  padding: 0 14px;
}

.rateyourexperience-cls .inner-rate-exerience .heading-textarea-main {
  text-align: left;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  line-height: 24px;
}

.rating-stars {
  display: flex;
  gap: 20px;
  cursor: pointer;
  margin-bottom: 14px;
}

.doctor-booking-wrapper .rating-stars,
.explore-now .rating-stars {
  margin-bottom: 0;
}

.rating-stars .star {
  position: relative;
  color: transparent;
  width: 25px;
  height: 25px;
}

.rating-stars .star::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 1px #d3d3d3;
  font-size: 30px;
}

.rating-stars .star.filled::before {
  color: #ffc107;
  -webkit-text-stroke: 1px #ffc107;
}

.textarea-heading-cls {
  margin-bottom: 20px;
}

.textarea-heading-cls:last-child {
  margin-bottom: 0px;
}

.myorder-account .search-product-wrap .search-product .search-input:focus,
.myorder-account .search-product-wrap .search-product .search-input:focus-visible {
  outline: none;
}

/* =================================== my order related css start here ================================================================================ */

/* ==================================== Login Register all code Start here ================================================================================= */

.login-register-section {
  padding: 40px 0 60px;
}

.login-register-section .login-register-form {
  display: flex;
  gap: 20px;
}

.login-register-section .login-register-form .common-purple-box {
  width: calc(54% - 12px);
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

.login-register-section.contact-form-section .contact-form .common-purple-box {
  width: calc(57% - 14px);
}

.login-register-section.contact-form-section .contact-form .common-purple-box .form-group textarea.form-control {
  min-height: 106px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box {
  width: calc(43% - 0px);
  background-color: #6141d3;
  border-radius: 10px;
  padding: 24px;
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
}

.login-register-section .login-register-form .common-purple-box form {
  padding: 14px 14px 20px 14px;
}

.login-register-section .login-register-form .common-purple-box .form-row .checkbox-item {
  font-size: 16px;
  line-height: 110%;
}

.login-register-section .login-register-form .common-purple-box .form-row .checkbox-item .link {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  text-decoration: underline;
}

.login-register-section .login-register-form .common-purple-box .btn-group {
  margin-top: 40px;
}

.login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-group {
  align-items: center;
  gap: 14px;
}

.login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-control-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 6px;
}

.login-register-section .login-register-form .common-purple-box .form-row.otp-wrap p {
  font-size: 18px;
  line-height: 110%;
  font-weight: 400;
  color: #666;
}

.login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .resend-otp {
  font-size: 18px;
  line-height: 110%;
  font-weight: 400;
  color: #222;
  text-decoration: underline;
}

.login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-control-wrap .form-control {
  height: 56px;
  width: 56px;
  text-align: center;
}

.alredy-link {
  font-size: 18px;
  line-height: 20px;
  color: #666;
  text-align: center;
}

.alredy-link a {
  text-decoration: underline;
}

.login-register-section .login-register-image {
  display: block;
  width: calc(46% - 8px);
  border-radius: 10px;
  overflow: hidden;
}

.login-register-section .login-register-image.forgot-img {
  max-height: 252px;
}

.login-register-section .login-register-image.forgot-img img {
  object-position: top;
}

.login-register-section .login-register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-register-form .form-row.forgot-link-wrap {
  justify-content: space-between;
}

.login-register-form .form-row.forgot-link-wrap.doctor-forgot {
  justify-content: flex-end;
}

.login-register-form .form-row.forgot-link-wrap .link {
  font-size: 16px;
  line-height: 110%;
  color: #222;
  text-decoration: underline;
  font-weight: 400;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .h-md {
  color: #fff;
  margin-bottom: 10px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box p {
  color: #fff;
  margin-bottom: 40px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  color: #fff;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li h5 {
  font-size: 18px;
  line-height: 110%;
  font-weight: 500;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li p {
  margin-bottom: 0;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li:last-child {
  margin-bottom: 0px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: 50px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer .contact-social {
  display: flex;
  gap: 10px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer .contact-social a {
  height: 40px;
  width: 40px;
}

.login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer .contact-social a img {
  height: 100%;
  width: 100%;
}

/* ==================================== Login Register all code Over here ================================================================================= */

/* ========================== Terms Condition Policy Flow CSS start here ============================================================================================= */
.custom-container {
  width: 100%;
  max-width: 1374px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.main-content {
  padding: 0 0 60px;
}

.terms-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.terms-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f5f5f5;
  width: 100%;
  position: relative;
}

.terms-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  padding-bottom: 20px;
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-heading {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  margin: 0;
}

.terms-text {
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}

.terms-list .terms-text {
  margin-bottom: 4px;
}

.terms-list .terms-text:last-child {
  margin-bottom: 0;
}

ul.terms-text {
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
  padding-left: 25px;
  list-style-type: none;
}

ul.terms-text li {
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 3px;
  position: relative;
}

ul.terms-text li:last-child {
  margin-bottom: 0;
}

ul.terms-text li:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #666666;
  position: absolute;
  top: 46%;
  bottom: auto;
  left: -15px;
  right: auto;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ========================== Terms Condition Policy Flow CSS Over here ============================================================================================= */

/* ========================== About CSS Start here ==================================================================================================================== */

.aboutus-team .nav-link.active {
  background: #6141d3;
}

.aboutus-team .nav-link {
  background: #f5f5f5;
  margin-bottom: 10px;
  padding: 19px 15px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  color: #222222;
  max-width: 260px;
}

.aboutus-team .common-sub-heading {
  font-size: 32px;
  font-weight: 500;
  color: #222222;
  line-height: 36px;
}

.aboutus-team .common-sub-paragraph {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 25px;
  margin-bottom: 14px;
}

.aboutus-team .common-about-inner {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.aboutus-team .border-line-about {
  border: 1px solid #66666633;
  margin-top: 20px;
  margin-bottom: 20px;
}

.aboutus-team .sub-heading-child {
  font-size: 24px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 14px;
  line-height: 28px;
}

.aboutus-team .top-spacing-about {
  padding-top: 10px;
}

.our-team-card .card {
  border: none;
  padding: 14px;
}

.our-team-card .card-body {
  padding: 14px 0px 0px 0px;
}

.our-team-card .card-title {
  font-size: 24px;
  color: #222;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 6px;
}

.our-team-card .card-sub-title {
  font-size: 18px;
  color: #222;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 14px;
}

.our-team-card .card-text {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0px;
}

.aboutus-team .nav-link.active:focus-visible {
  box-shadow: none;
}

.aboutus-team .card-img-top {
  object-fit: cover;
  min-height: 230px;
  border-radius: 10px;
}

.our-careers-main .common-sub-heading {
  margin-bottom: 14px;
}

.our-careers-main .common-sub-paragraph {
  margin-bottom: 20px;
}

.about-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.about-flex .about-flex-left {
  width: 260px;
}

.about-flex-right {
  width: calc(100% - 280px);
}

.our-careers-main .careerhealth-care {
  border-radius: 10px;
  max-height: 310px;
  object-fit: cover;
}

.our-accordion-process .accordion-header .accordion-button {
  background: #fff;
  border-radius: 10px 10px 0px 0px;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #222;
  display: grid;
  padding: 0px;
}

.our-accordion-process .accordion-header .accordion-button:focus-visible {
  box-shadow: none;
}

.our-accordion-process .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.our-accordion-process .accordion-header .accordion-button::after {
  content: inherit;
}

.our-accordion-process .career-flex {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-accordion-process .career-flex label {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  margin-bottom: 0px;
}

.our-accordion-process .apply-now-career-btn-cls {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
  flex: none;
}

.our-accordion-process .apply-now-career-btn-cls:hover {
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
}

.our-accordion-process .accordion-flex {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #fff;
  gap: 4px;
  cursor: pointer;
}

.our-accordion-process .accordion-item .accordion-collapse.collapse.show {
  border-top: 1px solid #66666633;
}

.our-accordion-process .accordion-body {
  padding: 14px;
  background: #ffffff99 !important;
}

.our-accordion-process .accordion-body .career-label-accordion {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  line-height: 20px;
  margin-bottom: 10px;
}

.our-accordion-process .accordion-body .career-paragraph-accordion {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  margin-bottom: 20px;
}

.our-accordion-process .accordion-body .career-label-accordion {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  line-height: 20px;
  margin-bottom: 10px;
}

.our-accordion-process .accordion-body ul li {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.correct-ics-cls {
  flex: none;
}

/* ========================== About CSS Over here ==================================================================================================================== */

/* ==================================================== Medical Library Related CSS start here ======================================================================== */
.main-disease-condition .diseases-heading {
  font-size: 24px;
  font-weight: 500;
  color: #222222;
  line-height: 28px;
  padding-top: 20px;
  margin-bottom: 20px;
}

.main-disease-condition .main-disease-condition-inner {
  background: #f5f5f5;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 60px;
}

.main-disease-condition .main-typedisease-condition {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #222;
  padding: 18px 16px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  align-items: center;
  height: 100%;
}

.main-disease-condition .main-typedisease-condition:hover {
  color: #222;
}

.psychiatry-topics-inner .diseases-heading {
  margin-bottom: 8px;
}

.psychiatry-topics-inner .condition-paragraph {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #666666;
  margin-bottom: 20px;
}

.medical-library-inner {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 60px;
  margin-top: 40px;
}

.medical-library-inner .topic-inner-flex {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.medical-library-inner .common-heading-topics-inner {
  font-size: 32px;
  font-weight: 500;
  color: #222222;
  line-height: 36px;
  margin-bottom: 20px;
}

.medical-library-inner .common-paragraph-topics-inner {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 23px;
}

.medical-library-inner .medical-library-img {
  width: 240px;
}

.medical-library-inner .topic-inner-flex-right {
  width: calc(100% - 255px);
}

.medical-library-inner .medical-library-paragraph {
  display: grid;
  gap: 16px;
}

.medical-library-inner .horizantal-line-cls {
  border-color: #66666633;
  margin: 20px 0px;
}

.medical-library-inner .inner-medical-info-cls .common-heading-topics-inner {
  margin-bottom: 14px;
}

.medical-library-inner .inner-medical-listing-part {
  margin: 14px 0px;
}

.medical-library-inner .inner-medical-listing-part .inner-medical-listing-paragraph {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 26px;
}

.medical-library-inner .inner-medical-listing-part .inner-medical-listing-common {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 23px;
}

.medical-library-inner .inner-medical-info-description .common-paragraph-topics-inner {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 23px;
  margin-bottom: 14px;
}

.medical-library-inner .inner-medical-listing-part ul {
  list-style: inherit;
  padding-left: 28px;
}

.medical-library-inner .recommand-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.medical-library-inner .doctor-card-grid {
  gap: 20px;
}

.medical-library-cls {
  border-radius: 10px;
}

.psychiatry-topics-inner .recommended-heading-cls {
  font-size: 32px;
  font-weight: 500;
  color: #222222;
  line-height: 36px;
}

.psychiatry-topics-inner .showall-cls {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #f82c51;
}

.psychiatry-topics-inner .showall-cls:hover {
  color: #222;
}

/* ==================================================== Medical Library Related CSS Over here ======================================================================== */

/* ==================================================== Medical Question Related CSS start here ======================================================================== */
.visitor-login-wrap .medical-questions-page.visitor-login-inner .visitor-login-right {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.visitor-login-wrap .medical-questions-page .common-purple-box .form-group textarea.form-control {
  min-height: 140px;
}

/* ==================================================== Medical Question Related CSS start here ======================================================================== */

/* ============================================================================================================================== Subscription Related CSS start here */

.main-chossing-plan {
  padding: 20px 0px 40px 0px;
}

.main-chossing-plan .sub-heading-choose {
  text-align: center;
  font-size: 52px;
  font-weight: 500;
  line-height: 56px;
  margin-bottom: 14px;
}

.main-chossing-plan .paragraph-choose {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 22px;
  text-align: center;
}

.main-chossing-plan .main-subscription-plan-inner {
  padding: 40px 0px;
}

.main-chossing-plan .subscription-card-plan {
  background: #f5f5f5;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  display: grid;
  cursor: pointer;
}

.main-chossing-plan .subscription-card-plan .individual-plan {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #222222;
  margin-bottom: 3px;
}

.main-chossing-plan .per-user {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 19px;
  margin-bottom: 20px;
}

.main-chossing-plan .line-cls-subscription {
  border-color: #66666633;
  margin: 40px 0px;
}

.main-chossing-plan .pricing-value {
  font-size: 32px;
  font-weight: 500;
  color: #f82c51;
  line-height: 36px;
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.main-chossing-plan .underline-tag-cls {
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  line-height: 24px;
  text-decoration: line-through;
}

.main-chossing-plan .per-year-cls {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.main-chossing-plan .plan-benetifits {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #222;
  margin-bottom: 14px;
}

.main-chossing-plan .subscription-card-plan ul .common-listing-plan {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 19px;
}

.main-chossing-plan .correct-ics-cls {
  flex: none;
}

.main-chossing-plan .get-started-btn-card .get-started-btn {
  border: 1.5px solid #6141d3;
  width: 100%;
  padding: 12px 15px;
  border-radius: 44px;
  font-size: 18px;
  font-weight: 500;
  color: #6141d3;
  line-height: 22px;
  background: #f5f5f5;
  margin-top: 35px;
}

.main-chossing-plan .subscription-card-plan:hover .get-started-btn-card .get-started-btn {
  color: #F82C51;
}

.main-chossing-plan .subscription-card-plan:hover {
  background: #6141d3;
  transition: all 0.4s ease;
}

.main-chossing-plan .subscription-card-plan:hover .individual-plan,
.main-chossing-plan .subscription-card-plan:hover .pricing-value,
.subscription-card-plan:hover .underline-tag-cls,
.subscription-card-plan:hover .plan-benetifits,
.subscription-card-plan:hover .common-listing-plan {
  color: #fff !important;
}

.subscription-card-plan:hover .get-started-btn {
  border-color: #fff;
}

.subscription-card-plan:hover .correct-ics-cls .ics-type-choose {
  filter: brightness(0) saturate(100%) invert(99%) sepia(11%) saturate(115%) hue-rotate(221deg) brightness(117%) contrast(100%);
}

.get-started-btn-card {
  margin-top: auto;
}

.main-chossing-plan .subscription-card-plan:hover .line-cls-subscription {
  border-color: #ffffff33;
}

.main-chossing-plan .subscription-card-plan:hover .per-user,
.subscription-card-plan:hover .per-year-cls {
  color: #ffffffcc;
}

.main-chossing-plan .redeem-now-cls {
  margin-left: auto;
}

.main-chossing-plan .faq-wrapper {
  margin: 40px 0 70px 0;
}

.cancelsubscription .modal-dialog {
  max-width: 458px;
}

.cancelsubscription .modal-body .modal-inner-title {
  max-width: 303px;
  margin: 0 auto 20px;
}

/* ============================================================================================================================== Subscription Related CSS Over here */

/* ================================================================================== Offer Flow Related CSS start here ============================================== */

.offer-list-section {
  padding: 40px 0 60px;
  overflow-x: hidden;
}

.offer-list-section .breadcrumb {
  margin-top: 0;
  margin-bottom: 40px;
}

.offer-list-section .offer-list-nav {
  margin-bottom: 40px;
  position: relative;
}

.offer-list-section .offer-list-nav::before {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: -100%;
  right: -100%;
  border-bottom: 1px solid #2222221a;
}

.offer-list-section .offer-list-nav .nav-item .nav-link {
  padding: 9px 26px;
  border-radius: 0;
  background-color: transparent !important;
  color: #666666 !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.offer-list-section .offer-list-nav .nav-item .nav-link.active {
  color: #222222 !important;
  border-bottom: 2px solid #f82c51;
}

.listing-box {
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
}

.offer-list-section .listing-box .listing-box-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.offer-list-section .listing-box .listing-box-head .listing-select-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.offer-list-section .listing-box .listing-box-head .listing-select-wrap .common__select .select2-selection {
  box-shadow: none;
}

.offer-list-section .listing-box .listing-box-head .listing-select-wrap .common-select2-special {
  width: 232px;
}

.offer-list-section .listing-box .listing-box-head .listing-select-wrap .clear-all-btn {
  color: #f82c51;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  outline: none;
}

.offer-list-section .listing-box-title {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
}

.offer-list-section .trending-box .listing-box-title {
  margin-bottom: 20px;
}

.offer-list-section .trending-box {
  margin-bottom: 40px;
}

.offer-list-section .trending-now {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, calc(20% - 16px));
}

.offer-list-section .offer-list-card,
.offer-list-section .trending-now-card {
  background: #fff;
  border-radius: 19px;
  padding: 8px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: max-content auto;
}

.offer-list-section .offer-list-card .discount-offer,
.offer-list-section .trending-now-card .discount-offer {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ff2d55;

  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  padding: 6px 16px;
  border-radius: 8px;
  z-index: 2;
}

.offer-list-section .listing-box .listing-img-wrapper {
  display: block;
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 71%;
}

.offer-list-section .listing-box .listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.listing-box-data {
  padding: 14px 6px 45px;
  width: 100%;
  text-align: left;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  position: relative;
}

.listing-box-data h3 {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-box-data p {
  margin-bottom: 6px;
}

.listing-box-data .card-review-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;

  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
}

.listing-box-data .card-review-wrap .review-star {
  display: flex;
  align-items: center;
  gap: 8px;
}

.listing-box-data .card-review-wrap p {
  margin-bottom: 0;
  margin-top: 5px;
}

.listing-box-data .btn-primary {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.listing-box-data .price-offer-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.listing-box-data .price-offer-wrap .price {
  text-decoration: line-through;
}

.listing-box-data .price-offer-wrap .offer {
  color: #ff2d55;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.offer-list-section .offer-list-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, calc(33.333% - 13px));
}

.offer-list-section .listing-box .offer-list-card .listing-img-wrapper {
  padding-bottom: 39.85%;
}

.offer-list-section .offer-list-card .offer-card-head {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.offer-list-section .offer-list-card .offer-card-head::before {
  content: "";
  background: rgba(34, 34, 34, 0.4);
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.offer-list-section .offer-list-card .doctor-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: -100%;
  left: 10px;
  transition: all 0.3s linear;
  z-index: 1;
}

.offer-list-section .offer-list-card .doctor-details .doctor-profile-img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}

.offer-list-section .offer-list-card .doctor-details .doctor-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-list-section .offer-list-card .doctor-details .doctor-data {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.offer-list-section .offer-list-card .doctor-details .doctor-data span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.offer-list-section .offer-list-card:hover .offer-card-head::before {
  opacity: 1;
}

.offer-list-section .offer-list-card:hover .doctor-details {
  bottom: 10px;
}

.offer-list-section .offer-load-more {
  display: flex;
  margin: 40px auto 0;
}

.offer-detail-section {
  padding: 40px 0;
}

.offer-detail-section .breadcrumb {
  margin-top: 0;
  margin-bottom: 40px;
}

.offer-detail-section .offer-detail-slider {
  background: #f5f5f5;
  padding: 14px;
  border-radius: 10px;
}

.offer-detail-section .offer-details-wrap {
  display: flex;
  gap: 20px;
}

.offer-detail-section .offer-detail-left {
  width: calc(56.85% - 10px);
}

.offer-detail-section .offer-main-slider {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #ffffff;
}

.offer-detail-section .offer-main-slider .swiper-slide .slide-img-wrap {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.offer-detail-section .offer-main-slider .swiper-slide .slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-detail-section .offer-thumbs-slider {
  display: flex;
  align-items: center;
  background: none;
}

.offer-detail-section .offer-thumbs-slider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-detail-section .offer-thumbs-slider .swiper-slide-thumb-active {
  border-color: #f82c51;
}

.offer-detail-section .offer-thumbs-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.offer-detail-section .offer-details-wrap .sub-box-title {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-detail-section .sessions-box {
  padding: 19px 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f5f5f5;
  border-radius: 10px;

  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  position: relative;
}

.offer-detail-section .sessions-box strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 62px;
  margin-bottom: 8px;
}

.offer-detail-section .odl-data-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: calc(79.7% - 10px) calc(20.3% - 10px);
  margin-top: 20px;
}

.offer-detail-section .odl-data-wrap .listing-box {
  display: flex;
  gap: 14px;
}

.offer-detail-section .odl-data-wrap .listing-box .odl-box-img {
  width: auto;
  height: auto;
  border-radius: 100px;
}

.offer-detail-section .odl-data-wrap .listing-box .odl-box-img img {
  width: auto;
  height: 130px;
  object-fit: contain;
  object-position: center;
}

.offer-detail-section .odl-box-data {
  width: 100%;
  text-align: left;

  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  position: relative;
}

.offer-detail-section .odl-box-data h3 {
  margin-bottom: 5px;
}

.offer-detail-section .odl-box-data p {
  margin-bottom: 6px;
}

.offer-detail-section .odl-box-data .card-review-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
}

.offer-detail-section .odl-box-data .card-review-wrap .review-star {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-detail-section .odl-box-data .card-review-wrap p {
  margin-bottom: 0;
  margin-top: 5px;
}

.offer-detail-section .odl-box-data .btn-primary {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.offer-detail-section .odl-box-data .odl-info-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.offer-detail-section .odl-box-data .odl-info-text:last-child {
  margin-bottom: 0;
}

.offer-detail-section .odl-box-data .price-offer-wrap .price {
  text-decoration: line-through;
}

.offer-detail-section .odl-box-data .price-offer-wrap .offer {
  color: #ff2d55;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.offer-detail-section .odl-box-data .price-offer-wrap .discount {
  color: #222222;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
}

.offer-detail-section .description-box {
  margin-top: 20px;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;

  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
}

.offer-detail-section .description-box h3 {
  margin-bottom: 6px;
}

.offer-detail-section .description-box hr {
  height: 1px;
  color: rgb(102 102 102 / 50%);
}

.offer-detail-section .description-box .des-list li {
  position: relative;
  padding-left: 25px;
}

.offer-detail-section .description-box .des-list li::before {
  content: "";
  width: 2px;
  height: 2px;
  background-color: #666666;
  position: absolute;
  top: 6px;
  left: 10px;
  border-radius: 50%;
}

.offer-detail-section .patient-reviews {
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
  margin-top: 20px;
}

.media-section-parent.offer-detail-section .patient-reviews {
  padding: 0;
  border-radius: none;
  background: transparent;
  margin-top: 0;
}

.media-section-parent.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link {
  background: #f5f5f5;
}

.media-section-parent.offer-detail-section .patient-reviews .reviews-nav-tab {
  margin-bottom: 20px !important;
  border: 0;
}

.offer-detail-section .patient-reviews .sub-box-title {
  margin-bottom: 20px;
}

.offer-detail-section .patient-reviews .reviews-nav-tab {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item:first-child {
  width: calc(28.75% - 15px);
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item {
  width: calc(23.75% - 15px);
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 20px;
  width: 100%;
  height: 100%;

  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link span {
  display: block;
  color: #222222;
  font-size: 32px;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 14px;
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link .stars-icon {
  display: inline-block;
  margin-bottom: 8px;
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link.active {
  background-color: #6141d3;
  color: #ffffffcc;
}

.offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link.active span {
  color: #ffffff;
}

.offer-detail-section .patient-reviews .rating-tab {
  font-family: "Montserrat", sans-serif;
  padding: 14px;
  background-color: #ffffff;
  border-radius: 10px;
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  margin-bottom: 20px;
}

.offer-detail-section .patient-reviews .rating-tab .rating-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-right: 65px;
  margin-bottom: 18px;
  position: relative;
}

.offer-detail-section .patient-reviews .rating-tab .rating-head h4 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0%;
}

.offer-detail-section .patient-reviews .rating-tab .rating-head .user-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  position: absolute;
  right: 0;
}

.offer-detail-section .patient-reviews .rating-tab .rating-head .user-rating::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/icon-star.svg) center no-repeat;
  background-size: contain;
  margin-bottom: 4px;
}

.offer-detail-section .patient-reviews .view-more {
  display: flex;
  margin: 40px auto 0;
  padding: 8px 16px;
  min-height: 39px;
}

.offer-detail-section .offer-detail-right {
  width: calc(43.15% - 10px);
}

.offer-detail-section .offer-detail-right .odl-box-data {
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
}

.offer-detail-section .offer-detail-right .odl-box-data h3 {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  margin-bottom: 8px;
}

.offer-detail-section .offer-detail-right .limited-offer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
  margin-top: 20px;
}

.offer-detail-section .offer-detail-right .limited-offer h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
}

.offer-detail-section .offer-detail-right .odl-box-data p.odl-text {
  margin-bottom: 10px;
}

.offer-detail-section .offer-detail-right .booking-view-wrap {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, calc(50% - 10px));
}

.offer-detail-section .offer-provider-wrap {
  margin-top: 20px;
  border-radius: 14px;
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 14px;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-title {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-count {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav {
  display: flex;
  gap: 8px;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.15s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button.swiper-button-disabled {
  opacity: 0.5;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button.offer-provider-prev {
  transform: rotate(180deg);
  background: url(../images/next.svg) center no-repeat;
  background-size: contain;
}

.offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button.offer-provider-next {
  background: url(../images/next.svg) center no-repeat;
  background-size: contain;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider {
  width: 100%;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .swiper-wrapper {
  display: flex;
  gap: 0;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card {
  height: auto;
  border-radius: 19px;
  background: #ffffff;
  box-shadow: none;
  padding: 14px;
  border: 2px solid transparent;
  transition: border 0.2s;
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card .selected-field {
  cursor: pointer;
  opacity: 0;
  z-index: 1;
  position: absolute;
  inset: 0;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card:has(.selected-field:checked) {
  border: 2px solid #e53935;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card .provider-doctor-img {
  position: relative;
  padding-bottom: 60%;
  display: block;
  margin-bottom: 14px;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card-name {
  color: #222222;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 8px;
}

.offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card-title {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}

.offer-detail-section .location-section {
  background: #f5f5f5;
  padding: 14px;
  border-radius: 12px;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
}

.offer-detail-section .location-section .nav-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.offer-detail-section .location-section .nav-pills .nav-item {
  width: max-content;
}

.offer-detail-section .location-section .tab-btns .nav-link {
  border: 1px solid #66666633;
  border-radius: 8px;
  padding: 10px 16px;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
}

.offer-detail-section .location-section .sub-box-title {
  margin-bottom: 14px;
}

.offer-detail-section .location-section .tab-btns .nav-link.active {
  background-color: #f5f5f5;
  color: #6141d3;
  border-color: #6141d3;
}

.offer-detail-section .location-section .tab-pane {
  margin-top: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
}

.offer-detail-section .location-section .address-text {
  font-weight: 500;
  color: #222222;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  line-height: 1;
}

.offer-detail-section .location-section .address-text::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/map-pin.svg) center no-repeat;
  background-size: contain;
}

.offer-detail-section .location-section iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  border: none;
}

.offer-detail-section .booking-info-card {
  margin-top: 20px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-header {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  align-items: center;
  width: 100%;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-header h3.booking-date {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(18px + 6 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot {
  display: flex;
  gap: 8px;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .next-date-btn,
.offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
  padding: 0;
  width: 36px;
  height: 36px;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-date-row .date-label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-date-row .arrow-btn {
  background: none;
  border: none;
  color: #222;
  font-size: 1.5rem;
  padding: 0 8px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.offer-detail-section .offer-detail-right .booking-info-card .booking-date-row .arrow-btn:hover {
  background: #f7f7f7;
}

.offer-detail-section .offer-detail-right .booking-info-card .slotbooking-btn {
  display: flex;
  padding: 0 14px 14px;
  width: 100%;
}

.offer-detail-section .offer-detail-right .booking-info-card .slotbooking-btn button {
  padding: 14px 14px;
}

.offer-detail-section .offer-detail-right .booking-info-card .bokingslot-list {
  gap: 10px;
  padding: 14px;
  justify-content: center;
}

.offer-detail-section .offer-detail-right .booking-info-card .bokingslot-list p {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(14px + 3 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0px;
  text-align: center;
  color: #666666;
  padding: 20px 12px;
}

.offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(102, 102, 102, 0.6);
  color: rgba(102, 102, 102, 0.6);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  width: 104px;
  transition: border 0.2s, background 0.2s, color 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 300px) / 1620);
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox input[type="checkbox"] {
  display: none;
}

.offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox span {
  width: 100%;
  text-align: center;
}

.offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox:has(input[type="checkbox"]:checked) {
  border-color: #6141d3;
  color: #6141d3;
  background: transparent;
}

.offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox:has(input[type="checkbox"]:disabled) {
  background: #f5f5f5;
  color: #bbb;
  border: 1px solid rgba(102, 102, 102, 0.6);
  cursor: not-allowed;
}

.offer-detail-section .offer-detail-right .booking-info-card .book-btn {
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 0;
  width: 100%;
  margin-top: 8px;
  transition: all 0.2s ease-in-out;
}

.offer-detail-section .offer-detail-right .booking-info-card .book-btn:hover {
  background: #d32f2f;
}

/* ================================================================================== Offer Flow Related CSS over here ============================================== */

/* ========================================================================= Clinic Detail Page related CSS start here ============================================== */
.bootstrap-select.selectservices {
  width: calc(33.53% - 10px) !important;
}

body .bootstrap-select .dropdown-toggle,
body .bootstrap-select .dropdown-toggle:focus {
  background: #ffffff !important;
  outline: thin dotted transparent !important;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
  padding: 12px 16px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  line-height: 1;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  opacity: 1;
}

.bootstrap-select .dropdown-toggle::after {
  background-image: url("../images/selectpicker.svg");
  width: 12px;
  height: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}

.about-specialties {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Montserrat", sans-serif;
  background: transparent;
  color: #222;
}

.about-specialties .about-subtitle {
  font-size: calc(18px + 6 * (100vw - 300px) / 1620);
  font-weight: 500;
  color: #222;
}

.about-tags-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 8px;
}

.about-tags-checkboxes .about-checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  font-weight: 500;
  min-width: 0;
  text-align: center;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.about-tags-checkboxes .about-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.about-tags-checkboxes .about-checkbox .custom-box {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  background: #f5f5f5;
  border: 1px solid #66666633;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: calc(14px + 4 * (100vw - 300px) / 1620);
  letter-spacing: 0px;
  vertical-align: middle;
  color: #666;
  transition: border 0.2s, color 0.2s, background 0.2s;
  line-height: 1.2;
  min-width: 0;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.media-section-parent .about-tags-checkboxes .about-checkbox .custom-box {
  background: transparent;
}

.about-tags-checkboxes .about-checkbox input[type="checkbox"]:checked+.custom-box {
  border: 1px solid #6141d3;
  color: #fff;
  background: #6141d3;
}

.about-tags-checkboxes .about-checkbox input[type="checkbox"]:disabled+.custom-box {
  background: #f0f0f0;
  color: #bbb;
  border: 1px solid #e5e5e5;
  cursor: not-allowed;
}

.about-clinics {
  font-weight: 500;
  font-size: calc(18px + 6 * (100vw - 300px) / 1620);
  line-height: 1.3;
  color: #222;
  margin-bottom: 14px;
}

.clinic-horizontal-card {
  display: flex;
  align-items: start;
  background: rgb(245, 245, 245);
  border-radius: 16px;
  padding: 14px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 1px 4px rgba(60, 60, 60, 0.04);
  gap: 14px;
  max-width: 100%;
}

.clinic-horizontal-card {
  margin-bottom: 20px;
}

.clinic-horizontal-card .clinic-thumb {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
  background: #eaeaea;
}

.clinic-horizontal-card .clinic-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 5px;
}

.clinic-horizontal-card .clinic-name {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(18px + 2 * (100vw - 300px) / 1620);
  color: #222222;
  line-height: 1.3;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clinic-horizontal-card .clinic-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  line-height: 1;
  color: #666;
  letter-spacing: 0%;
}

.clinic-horizontal-card .clinic-rating .star {
  color: #ffcf26;
  font-size: 1.1em;
  margin-right: 1px;
}

.clinic-horizontal-card .clinic-rating .review-count {
  color: #666;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  margin-left: 2px;
}

.clinic-horizontal-card .clinic-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clinic-horizontal-card .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
}

.clinic-horizontal-card .meta-item .meta-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
}

.clinicselectpicker-main {
  display: flex;
  gap: 10px;
}

.tab-content .tab-content-wrap .loadmore {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.tab-content .tab-content-wrap .loadmore button {
  padding: 10px 14px;
}

.doctor-booking-main {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.doctor-booking-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.doctor-booking-wrapper:not(:last-child) {
  margin-bottom: 14px;
}

.doctor-booking-wrapper .profile-card-wrapper {
  width: calc(62.9% - 20px);
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card {
  background-color: #fff;
  height: 100%;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-details {
  flex-wrap: wrap;
  gap: 14px;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-details .profile-info .video-icon {
  background-color: #6141d3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  margin-top: 8px;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-details img {
  margin-right: 0;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list {
  display: flex;
  gap: 6px;
  align-items: start;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .label {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0px;
  color: #666666;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list a {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0px;
  color: #222;
  gap: 6px;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .label img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 18px;
}

.doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties li a {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0px;
}

.doctor-booking-wrapper .booking-info-card {
  width: calc(38.6% - 20px);
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.doctor-booking-wrapper .booking-info-card .booking-header {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  align-items: center;
  width: 100%;
}

.doctor-booking-wrapper .booking-info-card .booking-header h3.booking-date {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(18px + 6 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.doctor-booking-wrapper .booking-info-card .booking-header .next-prev-slot {
  display: flex;
  gap: 8px;
}

.doctor-booking-wrapper .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
  padding: 0;
}

.doctor-booking-wrapper .booking-info-card .booking-header .next-prev-slot .next-date-btn {
  padding: 0;
}

.doctor-booking-wrapper .booking-info-card .booking-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.doctor-booking-wrapper .booking-info-card .booking-date-row .date-label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.doctor-booking-wrapper .booking-info-card .booking-date-row .arrow-btn {
  background: none;
  border: none;
  color: #222;
  font-size: 1.5rem;
  padding: 0 8px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.doctor-booking-wrapper .booking-info-card .booking-date-row .arrow-btn:hover {
  background: #f7f7f7;
}

.doctor-booking-wrapper .booking-info-card .slotbooking-btn {
  display: flex;
  padding: 0 14px 14px;
  width: 100%;
}

.doctor-booking-wrapper .booking-info-card .slotbooking-btn button {
  padding: 14px 14px;
}

.doctor-booking-wrapper .booking-info-card .bokingslot-list {
  gap: 10px;
  padding: 14px;
  justify-content: center;
}

.doctor-booking-wrapper .booking-info-card .bokingslot-list p {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(14px + 3 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0px;
  text-align: center;
  color: #666666;
  padding: 20px 12px;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(102, 102, 102, 0.6);
  color: rgba(102, 102, 102, 0.6);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  width: 104px;
  transition: border 0.2s, background 0.2s, color 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.doctor-booking-wrapper .bokingslot-list.bokingslot-list-limited {
  padding: 25px 14px;
}

.doctor-booking-wrapper .bokingslot-list.bokingslot-list-limited .slot-checkbox {
  width: 152px;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 300px) / 1620);
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox input[type="checkbox"] {
  display: none;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox span {
  width: 100%;
  text-align: center;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox:has(input[type="checkbox"]:checked) {
  border-color: #6141d3;
  color: #6141d3;
  background: transparent;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox:has(input[type="checkbox"]:disabled) {
  background: #f5f5f5;
  color: #bbb;
  border: 1px solid rgba(102, 102, 102, 0.6);
  cursor: not-allowed;
}

.doctor-booking-wrapper .booking-info-card .book-btn {
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 0;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s;
}

.doctor-booking-wrapper .booking-info-card .book-btn:hover {
  background: #d32f2f;
}

.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.reviews-list-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-list-header .reviews-flex {
  display: flex;
  gap: 14px;
  width: calc(50% - 20px);
  margin-bottom: 20px;
}

.reviews-list-header .reviews-flex.reviews-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0%;
  color: #222222;
}

.reviews-list-header .reviews-flex .sorting-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 10px;
}

.reviews-list-header .reviews-flex .sorting-wrap p {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  color: #666666;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  width: calc(51% - 20px);
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 10px;
  flex-wrap: wrap;
}

.review-author {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(16px + 4 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  color: #222222;
}

.review-date {
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  color: #666666;
  margin-left: 2px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-rating .star {
  color: #ffcf26;
  font-size: 1.1em;
  margin-right: 2px;
}

.rating-value {
  color: #222;
  font-weight: 600;
  font-size: 1.08rem;
}

.review-body {
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  color: #666666;
}

.about-clinic-section {
  font-family: "Montserrat", sans-serif;
  background: transparent;
  color: #222;
  display: flex;
  gap: 14px;
  flex-direction: column;
}

.about-clinic-section .about-title {
  font-size: calc(18px + 6 * (100vw - 300px) / 1620);
  font-weight: 500;
  color: #222;
}

.about-clinic-section .about-description {
  font-size: calc(14px + 3 * (100vw - 300px) / 1620);
  color: #666;
  font-weight: 400;
  line-height: 1.3;
}

.about-clinic-section .about-location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.about-clinic-section .about-location span {
  font-size: calc(14px + 3 * (100vw - 300px) / 1620);
  color: #666;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.searchmain-wrapper {
  margin-bottom: 60px;
}

.search-wrapper {
  display: flex;
  align-items: start;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.filter-main-wrap {
  display: flex;
  width: calc(21.2% - 20px);
  gap: 10px;
  flex-direction: column;
}

.filter-offcanvas {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.search-data-wrap {
  display: flex;
  flex-direction: column;
  width: calc(80.3% - 20px);
  gap: 20px;
}

.search-data-wrap .doctor-booking-main {
  margin-top: 0;
}

.search-data-wrap .doctor-booking-wrapper .profile-card-wrapper .profile-card {
  background-color: #f5f5f5;
  height: 100%;
}

.search-data-wrap .doctor-booking-wrapper .booking-info-card {
  width: calc(43.6% - 20px);
  background: #f5f5f5;
}

.search-data-wrap .doctor-booking-wrapper .profile-card-wrapper {
  width: calc(58.3% - 20px);
}

.search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
  padding: 10px 6px;
  width: 93px;
}

.search-data-wrap .doctor-booking-wrapper .booking-info-card .bokingslot-list-limited .slot-checkbox {
  width: 147px;
}

.search-data-wrap .reviews-list-header {
  align-items: center;
}

.search-data-wrap .reviews-list-header .reviews-flex {
  margin-bottom: 0px;
  align-items: flex-end;
}

.search-data-wrap .title-with-link .link {
  font-size: calc(14px + 4 * (100vw - 300px) / 1620);
  line-height: 1.2;
  margin-top: -10px;
}

body .search-data-wrap .bootstrap-select .dropdown-toggle,
body .bootstrap-select .dropdown-toggle:focus {
  background: #fff !important;
  color: #222222;
}

.filter-static-box {
  width: 100%;
  max-width: 260px;
  background-color: #6141d3;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  padding: 14px;
}

.filter-static-box span {
  color: #fff;
  font-size: calc(16px + 4 * (100vw - 300px) / 1620);
}

.search-data-wrap .doctor-booking-main .loadmore {
  display: flex;
  justify-content: center;
}

.faq-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.mobile-filter-btn {
  display: none;
  background: #6141d3;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1050;
}

.close-filter-btn {
  background: none;
  border: none;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-filter-btn img {
  width: 20px;
}

.btn-secondary {
  margin-left: 0;
  padding: 10px 20px;
}

.doctor-detail-page-wrapper {
  margin-bottom: 60px;
}

.doctor-search-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.doctordetail-data-wrap {
  width: 100%;
}

.doctordetail-data-wrap .profile-card-wrapper {
  width: calc(70% - 20px);
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details {
  width: 100%;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info .clinic-meta,
.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info .profile-meta {
  margin-top: 14px;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info .subtitle {
  margin-bottom: 0;
  font-size: 14px;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info .clinic-meta .meta-item {
  margin-bottom: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-avatar {
  height: 126px;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info .subspecialty-list {
  display: flex;
  gap: 6px;
  font-size: 14px;
  flex-wrap: wrap;
}

.doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details .profile-info .subspecialty-list .subspecialties {
  display: flex;
  gap: 4px;
  font-size: 14px;
  flex-wrap: wrap;
}

/* .doctordetail-data-wrap .profile-card-wrapper .about-clinic-section {
  margin-top: 20px;
} */

.doctordetail-data-wrap .profile-card-wrapper .about-clinic-section .about-title {
  font-size: calc(16px + 4 * (100vw - 300px) / 1620);
  font-weight: 400;
}

.doctordetail-data-wrap .profile-card-wrapper .about-clinic-section .about-description {
  font-size: 14px;
}

.doctordetail-data-wrap .profile-card-wrapper .education-list .label {
  color: #222;
  font-size: 14px;
}

.doctordetail-data-wrap .profile-card-wrapper .education-list {
  color: #666;
  font-size: 14px;
  margin-top: 14px;
  width: 100%;
}

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

.doctordetail-data-wrap .offer-detail-section {
  padding: 0;
}

.doctordetail-data-wrap .patient-reviews {
  margin-top: 0;
}

.doctordetail-data-wrap .about-specialties .about-subtitle {
  font-size: calc(16px + 4 * (100vw - 300px) / 1620);
  font-weight: 500;
  color: #222;
}

.doctordetail-data-wrap .doctor-booking-wrapper {
  width: calc(36.9% - 20px);
}

.doctordetail-data-wrap .doctor-booking-wrapper .booking-info-card {
  width: 100%;
  background-color: #f5f5f5;
  height: fit-content;
}

.doctordetail-data-wrap .booking-info-card .slot-checkbox {
  width: 96px;
  padding: 10px 6px;
  display: flex;
  justify-content: center;
}

.doctor-clinic-images {
  background: #f5f5f5;
  padding: 14px;
  border-radius: 10px;
}

.doctor-clinic-images .about-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.gallery-wrapper {
  margin-bottom: 20px;
}

.gallery-wrapper .gallery-scroll {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-wrapper .gallery-scroll .gallery-image img {
  border-radius: 10px;
  width: 130px;
  height: 130px;
  min-width: 130px;
  max-width: 130px;
  object-fit: cover;
}

.gallery-wrapper .gallery-scroll a {
  width: 130px;
  height: 130px;
  min-width: 130px;
  max-width: 130px;
}

.lb-details {
  display: none !important;
}

.lb-close {
  top: 5px;
  position: absolute;
  right: 14%;
  background-image: url(../images/close-icon.svg) !important;
  z-index: 99;
}

.gallery-scroll .gallery-image {
  position: relative;
}

.gallery-scroll .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 78, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  border-radius: 10px;
}

.uploaded-wrapper {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.uploaded-wrapper .modal-btn {
  border: none;
  border-radius: 10px;
  width: 130px;
  height: 130px;
  min-width: 130px;
  max-width: 130px;
  position: relative;
  padding: 0;
}

.uploaded-wrapper .modal-btn:focus-visible {
  outline: none;
}

.uploaded-wrapper .modal-btn img {
  border-radius: 10px;
  width: 130px;
  height: 130px;
  min-width: 130px;
  max-width: 130px;
  object-fit: cover;
}

.uploaded-wrapper .play-icon {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.uploaded-wrapper .play-icon img {
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
}

.uploaded-wrapper .modal-btn:after {
  background: #22222233;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  border-radius: 10px;
}

.uploaded-wrapper .modal-btn .videoplay-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 24px;
  width: 24px;
}

.uploaded-wrapper .modal-btn .videoplay-icon img {
  width: auto;
  height: auto;
  min-width: unset;
  max-width: unset;
  border-radius: 0;
}

.doctor-booking-wrapper .booking-info {
  display: flex;
  background: #6141d3;
  height: fit-content;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
}

.promo-card {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.promo-card .promo-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 14px;
  width: calc(33.33% - 10px);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-card .promo-box picture {
  display: block;
  width: 100%;
}

.promo-card .promo-box img {
  width: 95px;
  min-width: 95px;
  height: 95px;
  margin: 0 auto;
  object-fit: cover;
}

.promo-card .promo-box span {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.doctor-detail-booking .doctor-detail-claim {
  background: url(../images/perks.svg),
    linear-gradient(180deg,
      rgba(248, 44, 81, 0.1) 0%,
      rgba(97, 65, 211, 0.1) 99.95%);
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  margin-bottom: 20px;
}

.doctor-detail-booking .flexible-heading {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
  color: #6141d3;
  line-height: 1.2;
}

.claim-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141d3;
  background-color: #6141d3;
  color: #ffffff;
}

.claim-btn:hover {
  border: 1px solid #6141d3;
  background-color: transparent;
  color: #6141d3;
}

.choose-examination .choose-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.choose-examination {
  background: #f5f5f5;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.choose-examination .about-tags-checkboxes {
  flex-wrap: nowrap;
}

.choose-examination .about-tags-checkboxes label.about-checkbox {
  width: calc(50% - 10px);
}

.choose-examination .about-tags-checkboxes .custom-box {
  width: 100%;
}

.clinic-branch .about-tags-checkboxes label.about-checkbox {
  width: auto;
}

.clinic-branch .about-tags-checkboxes .custom-box {
  width: auto;
}

.clinic-location span {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
}

.clinic-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.book-online {
  display: flex;
  background: #f5f5f5;
  margin-top: 20px;
  align-items: center;
  padding: 21px 14px;
  border-radius: 10px;
  gap: 20px;
}

.book-content h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.book-content {
  width: 100%;
  max-width: 223px;
}

.book-content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

.profile-card-wrapper .doctor-booking-wrapper {
  display: none;
}

.teleconsultation-docter .promo-card .promo-box {
  width: 100%;
}

.lb-data .lb-close {
  filter: brightness(0) invert(1);
  opacity: 1 !important;
}

.doctordetail-detail-page .mobile-flex-view {
  display: none;
}

.doctordetail-detail-page .desktop-flex-view {
  display: block;
}

.promo-card.mobile-view {
  display: none;
}

/* New: Doctor Detail */
/* .mobile-view.doctor-detail-claim {
  display: none;
} */

.video-modal .video-wrapper-modal {
  display: flex;
  flex-wrap: wrap;
}

.video-modal .modal-body {
  padding: 0;
}

.video-modal .modal-dialog.modal-xl {
  max-width: 1302px;
  padding: 12px;
}

.video-modal .video-wrapper-modal .main-video {
  max-width: 62.7%;
  width: 100%;
  position: relative;
}

.video-modal .video-wrapper-modal .main-video .video {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}

.video-modal .video-wrapper-modal .main-video .videoplay-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 24px;
  width: 24px;
}

.video-modal .video-wrapper-modal .video-content {
  max-width: 37.3%;
  padding: 20px;
  font-size: 20px;
  line-height: 120%;
  color: #666666;
  font-weight: 400;
  text-align: left;
}

.video-modal .video-wrapper-modal .video-content h2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-size: 24px;
  line-height: 110%;
  color: #222222;
  font-weight: 500;
  margin-bottom: 8px;
}

.video-modal .video-wrapper-modal .video-content .btn-close {
  display: block;
  height: 18px;
  width: 18px;
  font-size: 14px;
  padding: 0;
  color: #222;
  opacity: 1;
}

.video-modal .video-wrapper-modal .video-content .btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

.video-modal .video-wrapper-modal .video-content .video-specialty {
  font-size: 18px;
  margin-bottom: 20px;
}

.video-modal .video-wrapper-modal .video-content .video-specialty p {
  margin-bottom: 8px;
}

.video-modal .video-wrapper-modal .video-content .video-specialty p:last-child {
  margin-bottom: 0px;
}

.reviews-filter .clinic-details-filter {
  min-width: 232px;
}

.about-clinic-section .about-location .clinic-location {
  color: #222;
  font-weight: 500;
}

.review-footer {
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
  color: #222;
}

hr {
  border: 1px solid #66666633;
  margin: 20px 0;
}

/* ========================================================================= Clinic Detail Page related CSS over here ============================================== */

/* ===================================================================== Clinic Listing related code start here ====================================================== */
.clinics-listing-main .loadmore {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.clinics-listing-main .loadmore .border-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141d3;
  background-color: transparent;
  color: #6141d3;
  border-radius: 40px;
  flex: none;
  margin: 0 auto;
}

.clinics-listing-main .loadmore .border-btn:hover {
  border: 1px solid #6141d3;
  background-color: #6141d3;
  color: #ffffff;
}

.clinics-listing-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.clinics-listing-header h1 {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(24px + 8 * (100vw - 300px) / 1620);
  line-height: 1.3;
  color: rgb(34, 34, 34);
}

.clinics-listing-header .clinics-count {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  line-height: 1.3;
  letter-spacing: 0%;
}

.clinics-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 8px;
}

.clinic-card {
  background: rgb(245, 245, 245);
  border-radius: 19px;
  width: 203px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
  padding: 14px;
}

.clinic-card:hover {
  box-shadow: 0 4px 24px 0 rgba(60, 60, 60, 0.13);
}

.clinic-card a {
  text-decoration: none;
  color: inherit;
}

.clinic-card .clinic-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 140px;
  border-radius: 10px;
}

.clinic-card .clinic-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clinic-card .clinic-info .clinic-name {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: calc(16px + 4 * (100vw - 300px) / 1620);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
}

.clinic-card .clinic-info .clinic-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clinic-card .clinic-info .clinic-meta .meta-item {
  display: flex;
  align-items: center;
  font-size: calc(16px + 2 * (100vw - 300px) / 1620);
  color: rgb(102, 102, 102);
  gap: 7px;
}

.clinic-card .clinic-info .clinic-meta .meta-item .meta-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
}

/* ===================================================================== Clinic Listing related code over here ====================================================== */

/* ================================= Explore related CSS Start here =================================================================================================== */

.explore-now.order-medicines-section .listing-box .trending-now {
  margin-bottom: 20px;
}

.explore-now.order-medicines-section .listing-box {
  border-radius: 0 10px 10px 10px;
  padding: 20px;
}

.explore-now.order-medicines-section .listing-box .specialty-card {
  padding: 14px;
}

.explore-now.order-medicines-section .listing-box .specialty-card .map-icon {
  position: unset;
  width: auto;
  height: auto;
}

.explore-now.order-medicines-section .listing-box .specialty-card .label {
  color: #666666;
  line-height: 20px !important;
}

.explore-now.order-medicines-section .profile-card-wrapper {
  margin-bottom: 20px;
}

.explore-now.order-medicines-section .btn-group {
  margin-bottom: 20px;
  gap: 10px;
}

.explore-now.order-medicines-section .btn-group .common-select2 {
  width: 100%;
}

.explore-now.order-medicines-section .btn-group .common__select .select2-selection {
  box-shadow: none;
  background: #fff;
}

.explore-now.order-medicines-section .accordion {
  margin-bottom: 20px;
}

.explore-now.order-medicines-section .accordion .faq-item .accordion-button:not(.collapsed) {
  background-color: #fff;
}

.explore-now.order-medicines-section .accordion .faq-item .accordion-body {
  background-color: #ffffff99;
  border-top: 1px solid #66666633;
}

.explore-now.order-medicines-section .accordion .faq-item .accordion-button .hospital-info .t-lg {
  color: #666666;
}

.explore-now.order-medicines-section .accordion .faq-item .accordion-button .hospital-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 14px;
}

.explore-now.order-medicines-section .accordion .faq-item .accordion-body .h-xs {
  color: #222222;
}

.explore-now.order-medicines-section .accordion .faq-item .accordion-body ul li:not(:last-child) {
  margin-bottom: 8px;
}

.explore-now.order-medicines-section .listing-box .faq-item .accordion-button::after {
  display: none;
}

/* ================================= Explore related CSS Over here =================================================================================================== */

/* ============================================================== Order Your Medicines Online Start here ============================================================= */

.order-medicines-section {
  padding: 40px 0 60px;
}

.order-medicines-section .breadcrumb {
  margin-top: 0;
  margin-bottom: 40px;
}

.order-medicines-section .order-medicines-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.order-medicines-section .order-medicines-title span {
  font-size: 18px;
  line-height: 110%;
  color: #666;
  font-weight: 400;
}

.order-medicines-section .order-medicines-title .select-location-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  max-width: 432px;
  width: 100%;
}

.order-medicines-section .order-medicines-title .select-location-wrap span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 18px;
  color: #666666;
  font-weight: 400;
}

.order-medicines-section .order-medicines-title .select-location-wrap .common-select2 {
  max-width: 300px;
  width: 100%;
}

.order-medicines-section .order-medicines-title .select-location-wrap .common__select .select2-selection {
  min-width: 300px;
  width: 100%;
  background: #f5f5f5;
  box-shadow: none;
}

.order-medicines-section .order-medicines-title .select-location-wrap .select-location {
  border: none;
  outline: none;
  background-color: #F5F5F5;
  padding: 16px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 22px;
  color: #222222;
  font-weight: 500;
}

.order-medicines-section .order-medicines-title .select-location-wrap .select-location .arrow-location {
  margin-left: 20px;
}

.order-medicines-section .search-product-wrap {
  padding: 16px;
  background: #f5f5f5;
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
}

.order-medicines-section .search-product-wrap .search-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.order-medicines-section .search-product-wrap .search-product .search-btn {
  border: none;
  padding: 0;
  background-color: transparent;
}

.order-medicines-section .search-product-wrap .search-product .search-btn img {
  height: 20px;
  width: 20px;
}

.order-medicines-section .search-product-wrap .search-product .search-input {
  border: none;
  padding: 0;
  background-color: transparent;
  font-size: 16px;
  line-height: 18px;
  color: #222;
  font-weight: 400;
  width: 100%;
}

.order-medicines-section .search-product-wrap .search-product .search-input::placeholder {
  color: #666666;
}

.order-medicines-section .search-product-wrap .search-product .search-input:focus-visible {
  outline: none;
}

.order-medicines-section .search-product-wrap .search-product-img {
  padding-left: 14px;
  border-left: 1px solid rgba(102, 102, 102, 0.2);
}

.order-medicines-section .search-product-wrap .search-product-img .custom-file-uploader {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  color: #666666;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
}

.order-medicines-section .search-product-wrap .search-product-img .custom-file-uploader input[type="file"] {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -110px;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.order-medicines-section .search-product-wrap .custom-file-uploader span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.order-medicines-section .listing-box {
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
}

.order-medicines-section .listing-box-title {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  margin-bottom: 20px;
}

.order-medicines-section .listing-box .specialty-card {
  background: #fff;
  border-radius: 19px;
  padding: 8px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  min-width: 180px;
}

.order-medicines-section .listing-box .trending-now {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, calc(20% - 16px));
}

.order-medicines-section .listing-box .specialty-img {
  position: relative;
  padding-bottom: 70%;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  padding-bottom: 71%;
}

.order-medicines-section .listing-box .specialty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.order-medicines-section .listing-box .specialty-card .h-xs {
  line-height: 1.1;
  color: #222;
  padding-left: 6px;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.product-detail-section {
  padding: 40px 0 60px;
}

.product-detail-section .breadcrumb {
  margin-top: 0;
  margin-bottom: 40px;
}

.product-detail-section .product-card {
  display: flex;
  align-items: flex-start;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 14px;
  margin: 40px 0 20px;
  box-shadow: none;
  gap: 20px;
}

.product-detail-section .product-card .common-select2 {
  max-width: 232px;
  width: 100%;
}

.product-detail-section .product-card .common__select .select2-selection {
  min-width: 232px;
  width: 100%;
  box-shadow: none;
}

.product-detail-section .product-card .common__select .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 8px 16px;
}

.product-detail-section .product-card__img {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.product-detail-section .product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-section .product-card__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #666666;
}

.product-detail-section .product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.product-detail-section .product-card__header .h-sm {
  color: #222;
}

.product-detail-section .product-card__select-wrap {
  min-width: 120px;
}

.product-detail-section .product-card__select {
  width: 100%;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  background: #fff;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  appearance: none;
}

.product-detail-section .product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.product-detail-section .product-card__price {
  color: #f82c51;
  margin-left: 8px;
}

.product-card__qty-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.qty-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #6141D3;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn img {
  height: 20px;
  width: 20px;
}

.qty-btn:active,
.qty-btn:focus {
  background: #6141D3;
}

.product-card__qty {
  font-size: 20px;
  color: #222;
  min-width: 24px;
  max-width: 60px;
  font-weight: 500;
  background-color: transparent;
  text-align: center;
  border: none;
}

.product-card__qty::-webkit-outer-spin-button,
.product-card__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-card__qty[type="number"] {
  -moz-appearance: textfield;
}

.product-card__qty:focus-visible {
  outline: none;
}

.tabs .medical-description-content {
  font-size: 18px;
  line-height: 110%;
  font-weight: 400;
  color: #666666;
}

.tabs .medical-description-content .h-sm {
  margin-bottom: 14px;
  color: #222;
}

.tabs .medical-description-content p {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  margin-bottom: 20px;
}

.tabs .medical-description-content p:last-child {
  padding-bottom: 0px;
  border-bottom: 0;
  margin-bottom: 0px;
}

.medical-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.medical-tag li {
  font-size: 18px;
  line-height: 110%;
  font-weight: 400;
  color: #6141d3;
  padding: 10px 16px;
  background-color: rgba(97, 65, 211, 0.102);
  border-radius: 10px;
}

.tab-content-wrap .load-more-wrap {
  margin: 30px auto 0;
}

.product-list-section {
  padding: 40px 0 60px;
  overflow-x: hidden;
}

.product-list-section .breadcrumb {
  margin-top: 0;
  margin-bottom: 40px;
}

.product-list-section .offer-list-nav {
  margin-bottom: 40px;
  position: relative;
}

.product-list-section .offer-list-nav::before {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: -100%;
  right: -100%;
  border-bottom: 1px solid #2222221a;
}

.product-list-section .offer-list-nav .nav-item .nav-link {
  padding: 9px 26px;
  border-radius: 0;
  background-color: transparent !important;
  color: #666666 !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.product-list-section .offer-list-nav .nav-item .nav-link.active {
  color: #222222 !important;
  border-bottom: 2px solid #f82c51;
}

.product-list-section .listing-box {
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
}

.product-list-section .listing-box-title {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  margin-bottom: 20px;
}

.product-list-section .trending-box {
  margin-bottom: 0px;
}

.product-list-section .trending-now {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, calc(20% - 16px));
}

.product-list-section .offer-list-card,
.product-list-section .trending-now-card {
  background: #fff;
  border-radius: 19px;
  padding: 8px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: max-content auto;
}

.product-list-section .trending-now-card .discount {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ff2d55;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  padding: 6px 16px;
  border-radius: 8px;
  z-index: 2;
}

.product-list-section .listing-box .listing-img-wrapper {
  display: block;
  width: 100%;
  background: radial-gradient(87.55% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      rgba(104, 77, 133, 0.1) 100%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 71%;
}

.product-list-section .listing-box .listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.load-more-wrap {
  max-width: 126px;
  margin: 18px auto 0;
  min-width: 126px;
  width: 100%;
}

.load-more-wrap .load-more-btn {
  min-width: 126px;
  padding: 10px;
  width: 100%;
}

.listing-box-data {
  padding: 14px 6px 45px;
  width: 100%;
  text-align: left;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  position: relative;
}

.listing-box-data h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 8px;
  color: #222222;
}

.listing-box-data p {
  margin-bottom: 8px;
}

.listing-box-data .product-card__qty-wrap,
.listing-box-data .btn-primary {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.price-wrap {
  color: #222222;
  margin-bottom: 14px;
}

.price-wrap .product-card__price {
  color: #f82c51;
  margin-left: 8px;
}

.listing-box-data .price-offer-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.listing-box-data .price-offer-wrap .price {
  text-decoration: line-through;
}

.listing-box-data .price-offer-wrap .offer {
  color: #ff2d55;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.listing-box-data .product-card-btn .product-card__qty-wrap {
  display: none;
}

.listing-box-data .product-card-btn.product-card-btn .product-card__qty-wrap {
  display: flex;
  justify-content: space-between;
}

.listing-box-data .product-card-btn.product-card-btn .btn-primary {
  display: none;
}

.product-list-section .offer-list-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, calc(33.333% - 13px));
}

.product-list-section .listing-box .offer-list-card .listing-img-wrapper {
  padding-bottom: 39.85%;
}

.product-list-section .offer-list-card .offer-card-head {
  border-radius: 19px;
  position: relative;
  overflow: hidden;
}

.product-list-section .offer-list-card .offer-card-head::before {
  content: "";
  background: rgba(34, 34, 34, 0.4);
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.product-list-section .offer-list-card .doctor-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: -100%;
  left: 10px;
  transition: all 0.3s linear;
  z-index: 1;
}

.product-list-section .offer-list-card .doctor-details .doctor-profile-img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}

.product-list-section .offer-list-card .doctor-details .doctor-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-section .offer-list-card .doctor-details .doctor-data {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.product-list-section .offer-list-card .doctor-details .doctor-data span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.product-list-section .offer-list-card:hover .offer-card-head::before {
  opacity: 1;
}

.product-list-section .offer-list-card:hover .doctor-details {
  bottom: 10px;
}

.shopping-cart-section .shopping-cart-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.order-medicines-section .order-medicines-title .shopping-count,
.shopping-cart-section .shopping-cart-header .shopping-count {
  font-size: 18px;
  line-height: 110%;
  color: #666;
  font-weight: 400;
}

.shopping-cart-section .product-card {
  margin: 0px 0 20px;
}

.shopping-cart-section .product-card__header,
.shopping-cart-section .product-card__header .h-sm {
  margin-bottom: 0;
}

.shopping-cart-section .product-card__footer {
  margin-top: 8px;
}

.shopping-cart-section .select-pharmacy-btn {
  width: 100%;
}

.select-pharmacy-section .clinics-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 8px;
  margin-top: 30px;
}

.select-pharmacy-section .clinics-list-wrapper .clinic-card {
  background: rgb(245, 245, 245);
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
  padding: 14px;
  width: calc(20% - 16px);
}

.select-pharmacy-section .clinic-card picture {
  position: relative;
  padding-bottom: 63.7%;
}

.select-pharmacy-section .clinic-card picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.select-pharmacy-section .clinic-card .clinic-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.select-pharmacy-section .clinic-card .clinic-info .h-xs {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select-pharmacy-section .clinic-card .clinic-info .clinic-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clinic-card .clinic-info .clinic-meta .meta-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgb(102, 102, 102);
  gap: 7px;
}

/* ============================================================== Order Your Medicines Online Over here ============================================================= */

/* Home Page related CSS start here ================================================================================================================================ */

.featured-doctors .title-with-link,
.choose-from-offers .title-with-link,
.featured-doctors .specialty-filter {
  margin-bottom: 20px;
}

.featured-doctors {
  overflow: hidden;
}

.featured-doctors .featured-doctors-swiper {
  width: 100%;
  overflow: visible;
}

.featured-doctors .featured-doctors-swiper .specialty-card {
  background: #f5f5f5;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  min-width: 180px;
}

.featured-doctors .featured-doctors-swiper .specialty-img {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.featured-doctors .featured-doctors-swiper .specialty-img .rating-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #fff;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.featured-doctors .featured-doctors-swiper .specialty-img .rating-wrap .label {
  color: #666666;
}

.featured-doctors .featured-doctors-swiper .specialty-card .specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.featured-doctors .featured-doctors-swiper .specialty-card .h-xs {
  color: #222;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.featured-doctors .featured-doctors-swiper .specialty-card .label {
  color: #666666;
}

.featured-doctors .featured-doctors-swiper .specialty-card .link {
  background: transparent;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px 6px 6px;
  border-top: 1px solid rgba(102, 102, 102, 0.4);
  color: #6141D3;
}

.featured-doctors .featured-doctors-swiper .featured-info {
  padding: 0 6px;
  width: 100%;
}

.featured-doctors .featured-doctors-swiper .swiper-button-next,
.featured-doctors .featured-doctors-swiper .swiper-button-prev {
  color: #fff;
}

.featured-entities {
  background: linear-gradient(180deg, #6141d3 0%, #000000 100%);
  overflow: hidden;
}

.featured-entities .flexible-subscription {
  padding: 0;
}

.featured-entities .title-with-link {
  margin-bottom: 20px;
}

.featured-entities .title-with-link h2 {
  color: #fff;
}

.featured-entities .title-with-link .link {
  color: #fff;
}

.featured-entities .main-inner-flexible-subscription {
  background: url(../images/featured-entities.svg),
    linear-gradient(179deg, #feeaee 0%, #eee8ff 99.95%) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: right center !important;
}

.featured-entities .flexible-para {
  max-width: 760px !important;
  padding-bottom: 20px !important;
}

.featured-entities .featured-entities-swiper {
  width: 100%;
  overflow: visible;
  margin-bottom: 80px;
}

.featured-entities .featured-entities-swiper .specialty-card {
  background: #fff;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  min-width: 180px;
}

.featured-entities .featured-entities-swiper .specialty-img {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.featured-entities .featured-entities-swiper .specialty-card .specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-entities .featured-entities-swiper .specialty-card .h-sm {
  line-height: 1.1;
  color: #222;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.featured-entities .featured-entities-swiper .specialty-card .label {
  color: #666666;
}

.featured-entities .featured-entities-swiper .featured-info {
  padding: 0 6px 6px;
  width: 100%;
}

.featured-entities .featured-entities-swiper .swiper-button-next,
.featured-entities .featured-entities-swiper .swiper-button-prev {
  color: #fff;
}

.choose-from-offers {
  padding-top: 60px;
  overflow: hidden;
}

.choose-from-offers .choose-from-offers-swiper {
  width: 100%;
  overflow: visible;
}

.choose-from-offers .choose-from-offers-swiper .specialty-card {
  background: #f5f5f5;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  min-width: 180px;
}

.choose-from-offers .choose-from-offers-swiper .specialty-img {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.choose-from-offers .choose-from-offers-swiper .specialty-img .offer-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f82c51;
  border-radius: 6px;
  padding: 6px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}

.choose-from-offers .choose-from-offers-swiper .specialty-card .specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.choose-from-offers .choose-from-offers-swiper .specialty-card .h-sm {
  color: #222;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.choose-from-offers .choose-from-offers-swiper .specialty-card .label {
  color: #666666;
}

.choose-from-offers .choose-from-offers-swiper .specialty-card .original-price {
  color: #f82c51;
  font-weight: 400;
}

.choose-from-offers .choose-from-offers-swiper .specialty-card .link {
  background: transparent;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px 6px 6px;
  border-top: 1px solid rgba(102, 102, 102, 0.4);
  color: #6141D3;
}

.choose-from-offers .choose-from-offers-swiper .featured-info {
  padding: 0 6px;
  width: 100%;
}

.choose-from-offers .choose-from-offers-swiper .swiper-button-next,
.choose-from-offers .choose-from-offers-swiper .swiper-button-prev {
  color: #fff;
}

.book-specialties-section {
  background: linear-gradient(180deg, #6141d3 0%, #000000 100%);
  overflow: hidden;
}

.book-specialties-section .title-with-link {
  margin-bottom: 20px;
}

.book-specialties-section .title-with-link h2 {
  color: #fff;
}

.book-specialties-section .title-with-link .link {
  color: #fff;
}

.book-specialties-swiper {
  width: 100%;
  padding-bottom: 8px;
  overflow: visible;
  margin-bottom: 80px;
}

.book-specialties-swiper .specialty-card {
  background: #fff;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  min-width: 180px;
}

.book-specialties-swiper .specialty-img {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.book-specialties-swiper .specialty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-specialties-swiper .specialty-card .h-sm {
  line-height: 1.1;
  color: #222;
  padding-left: 6px;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.book-specialties-swiper .swiper-button-next,
.book-specialties-swiper .swiper-button-prev {
  color: #fff;
}

.specialties-bottom-section .specialties-bottom-bg {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: url(../images/doctors-team-image.webp) no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 450px;
}

.specialties-bottom-section .specialties-bottom-bg img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  height: 100%;
}

.specialties-bottom-section .specialties-bottom-cards {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
}

.specialties-bottom-section .specialty-bottom-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  flex: 1;
}

.specialties-bottom-section .card-icon {
  width: 52px;
  height: 44px;
  background: #6141d3;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.specialties-bottom-section .card-icon img {
  width: 24px;
  height: 24px;
}

.specialties-bottom-section .specialty-bottom-card .h-sm {
  font-weight: 500;
  font-size: 1.2;
  color: #222;
  margin-bottom: 12px;
}

.specialties-bottom-section .specialty-bottom-card .t-lg {
  color: #555;
  font-weight: 400;
  margin: 0;
}

.flexible-subscription .main-inner-flexible-subscription {
  background: url(../images/subscription-bg.svg),
    linear-gradient(180deg,
      rgba(248, 44, 81, 0.1) 0%,
      rgba(97, 65, 211, 0.1) 99.95%);

  width: 100%;
  padding: 40px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.flexible-subscription .flexible-heading {
  max-width: 744px;
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 20px;
  color: #6141d3;
  line-height: 46px;
}

.flexible-subscription .flexible-para {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  max-width: 626px;
  padding-bottom: 52px;
  margin-bottom: 0px;
  line-height: 20px;
}

.flexible-subscription .subscription-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
  flex: none;
}

.flexible-subscription .subscription-btn:hover {
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
}

.medical-question .medical-questions-start {
  background: linear-gradient(90deg, #fbe7ee 0%, #eeebfa 77.05%),
    linear-gradient(90deg,
      #fbe7ee 0%,
      #eeebfa 58.41%,
      rgba(238, 235, 250, 0) 66.88%);
  width: 100%;
  padding: 8px 8px 8px 40px;
  border-radius: 10px;
}

.medical-question .medical-heading {
  max-width: 551px;
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 8px;
  color: #6141d3;
  line-height: 46px;
}

.medical-question .medical-paragraph {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  max-width: 626px;
  padding-bottom: 52px;
  margin-bottom: 0px;
  line-height: 20px;
}

.medical-question .question-btn {
  border-radius: 44px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  min-height: 44px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #6141D3;
  background-color: #6141D3;
  color: #ffffff;
  flex: none;
}

.medical-question .question-btn:hover {
  border: 1px solid #6141D3;
  background-color: transparent;
  color: #6141D3;
}

.medical-question-image .medical-question-img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.doctor-doorstep .doctor-doorstep-common {
  background-size: cover !important;
  background-position: top center !important;
  min-height: 100%;
  border-radius: 10px;
  padding: 53px 50px 53px 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.doctor-doorstep .doctor-doorstep-left {
  background: url(../images/doctor-1.webp) no-repeat;
}

.doctor-doorstep .doctor-doorstep-right {
  background: url(../images/doctor-2.webp) no-repeat;
}

.doctor-doorstep .doctor-doorstep-inner {
  padding: 20px;
  background: #fff;
  width: fit-content;
  border-radius: 10px;
  height: fit-content;
}

.doctor-doorstep .doctor-doorstep-inner .paragraph-heading-sub {
  max-width: 190px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #666666;
  margin: 0 auto;
}

.doctor-doorstep .heading-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  max-width: 176px;
  color: #222;
  margin: 0 auto 20px auto;
  text-align: center;
}

.doctor-doorstep .anchor-tag {
  width: 100%;
}

.doctor-doorstep .book-now-btn {
  border: none;
  background: transparent;
  color: #6141D3;
  height: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  padding: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doctor-doorstep .spacing-top-bottom {
  margin: 30px 0px;
}

/* Home Page related CSS Over here ================================================================================================================================ */

/* After Development New CSS added Start here ==================================================================================================================== */
.header .header-nav .nav-menu .langugage-code-cls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .header-nav .nav-menu .langugage-code-cls .language-heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
}

.header .header-nav .nav-menu .country-dropdown {
  position: relative;
  display: inline-block;
}

.header .header-nav .nav-menu .country-dropdown__toggle {
  border: none;
  background: transparent;
  padding: 0px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}

.header .header-nav .nav-menu .country-dropdown .country-dropdown__toggle>img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.header .header-nav .nav-menu .country-dropdown__toggle svg {
  transition: transform 0.3s ease;
}

.country-dropdown.open .country-dropdown__toggle svg {
  transform: rotate(180deg);
}

.header .header-nav .nav-menu .country-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: 8px;
  display: none;
  min-width: 100px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 0px #00000026;
  z-index: 1;
}

.header .header-nav .nav-menu .country-dropdown__menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  background-color: transparent;
  border: 0;
  width: 100%;
}

.header .header-nav .nav-menu .country-dropdown__menu button:hover {
  background: #f5f5f5;
}

.header .header-nav .nav-menu .country-dropdown.open .country-dropdown__menu {
  display: block;
}

.header .header-nav .nav-menu .country-dropdown button:not(:last-child) {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

/* After Development New CSS added Over here ==================================================================================================================== */

/* =================================== Common Media Query code start here ========================================================================================= */
@media screen and (min-width: 1920.5px) {
  .bootstrap-select .dropdown-toggle {
    font-size: 18px;
  }

  .about-specialties .about-subtitle {
    font-size: 24px;
  }

  .about-tags-checkboxes .about-checkbox {
    font-size: 18px;
  }

  .about-tags-checkboxes .about-checkbox .custom-box {
    font-size: 18px;
  }

  .clinic-horizontal-card .clinic-name {
    font-size: 24px;
  }

  .clinic-horizontal-card .clinic-name {
    font-size: 18px;
  }

  .clinic-horizontal-card .clinic-rating {
    font-size: 18px;
  }

  .clinic-horizontal-card .clinic-rating .review-count {
    font-size: 18px;
  }

  .clinic-horizontal-card .meta-item {
    font-size: 18px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .label,
  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list a {
    font-size: 18px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties li a {
    font-size: 18px;
  }

  .doctor-booking-wrapper .booking-info-card .booking-header .booking-date {
    font-size: 24px;
  }

  .doctor-booking-wrapper .booking-info-card .bokingslot-list p {
    font-size: 16px;
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox span {
    font-size: 16px;
  }

  .reviews-list-header .reviews-flex .sorting-wrap p {
    font-size: 18px;
  }

  .review-author {
    font-size: 20px;
  }

  .review-date {
    font-size: 16px;
  }

  .review-body {
    font-size: 16px;
  }

  .review-footer {
    font-size: 16px;
  }

  .about-clinic-section .about-title {
    font-size: 24px;
  }

  .about-clinic-section .about-location {
    font-size: 16px;
  }

  .filter-static-box span {
    font-size: 20px;
  }

  .about-clinic-section .about-location span {
    font-size: 16px;
  }

  .search-data-wrap .title-with-link .link {
    font-size: 18px;
  }

  .clinic-card .clinic-info .clinic-meta .meta-item {
    font-size: 18px;
  }

  .clinic-card .clinic-info .clinic-name {
    font-size: 20px;
  }

  .clinics-listing-main .loadmore .border-btn {
    font-size: 18px;
  }

  .clinics-listing-header h1 {
    font-size: 32px;
  }

  .clinics-listing-header .clinics-count {
    font-size: 18px;
  }
}

@media (min-width: 1920px) {
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .booking-date {
    font-size: 24px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox span {
    font-size: 16px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .bokingslot-list p {
    font-size: 16px;
  }
}

@media (max-width: 1439px) {
  .offer-list-section .trending-now {
    gap: 14px;
    grid-template-columns: repeat(5, calc(20% - 11px));
  }

  .offer-list-section .offer-list-wrapper {
    gap: 14px;
    grid-template-columns: repeat(3, calc(33.333% - 9px));
  }

  .offer-detail-section .sessions-box {
    padding: 16px 18px;
  }

  .offer-detail-section .sessions-box strong {
    font-size: 38px;
    line-height: 52px;
  }

  .offer-detail-section .offer-detail-right .odl-box-data h3 {
    font-size: 22px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-title {
    font-size: 22px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-count {
    font-size: 16px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card-name {
    font-size: 18px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card-title {
    font-size: 16px;
  }

  .offer-detail-section .offer-detail-right .limited-offer {
    gap: 15px;
  }

  .offer-detail-section .offer-detail-right .limited-offer picture {
    width: 75px;
  }

  .offer-detail-section .offer-detail-right .limited-offer h3 {
    font-size: 30px;
  }

  .offer-detail-section .offer-detail-right .booking-view-wrap {
    gap: 14px;
    grid-template-columns: repeat(2, calc(50% - 7px));
  }

  .order-medicines-section .listing-box .trending-now {
    gap: 14px;
    grid-template-columns: repeat(5, calc(20% - 11px));
  }

  .order-medicines-section .order-medicines-title .select-location-wrap .common__select .select2-selection {
    min-width: 250px;
  }

  .order-medicines-section .order-medicines-title .select-location-wrap .common-select2 {
    max-width: 250px;
  }

  .product-list-section .trending-now {
    gap: 14px;
    grid-template-columns: repeat(5, calc(20% - 11px));
  }

  .product-list-section .offer-list-wrapper {
    gap: 14px;
    grid-template-columns: repeat(3, calc(33.333% - 9px));
  }
}

@media (max-width: 1400px) {
  .clinic-card {
    width: 248px;
  }
}

@media (max-width: 1366px) {
  .footer {
    padding: 50px 0 30px;
  }

  .doctor-cta .container {
    gap: 80px;
  }

  .custom-footer__container .container {
    display: flex;
    gap: 50px;
  }

  .custom-footer__links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
  }
}

@media (max-width: 1343px) {
  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    width: calc(25.5% - 10px);
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(25.5% - 10px);
  }

  .doctor-booking-wrapper .bokingslot-list.bokingslot-list-limited .slot-checkbox {
    width: auto;
  }

  .clinic-card {
    width: calc(20.3% - 20px);
  }
}

@media (max-width: 1334px) {
  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(25.6% - 10px);
  }
}

@media (max-width: 1280px) {
  .h-xl {
    font-size: 44px;
    line-height: 50px;
  }

  .h-lg {
    font-size: 34px;
    line-height: 40px;
  }

  .h-md {
    font-size: 30px;
    line-height: 34px;
  }

  .h-sm {
    font-size: 22px;
    line-height: 26px;
  }

  .h-xs {
    font-size: 18px;
    line-height: 22px;
  }

  .t-lg {
    font-size: 16px;
    line-height: 18px;
  }

  .t-md {
    font-size: 15px;
    line-height: 17px;
  }

  .footer {
    padding: 50px 0 30px;
  }

  .custom-footer__container .container,
  .doctor-cta {
    padding-bottom: 50px;
  }

  .doctor-cta .doctor-cta__card h3 {
    font-size: 22px;
  }

  .profile-card-wrapper .profile-card .link.h-sm {
    font-size: 22px !important;
    line-height: 26px !important;
  }

  .new-inner-common-hero .heading-top-bottom .hero__title {
    font-size: 30px;
    line-height: 34px;
  }

  .reset-password-wrapper {
    grid-template-columns: calc(53% - 10px) calc(47% - 10px);
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li {
    margin-bottom: 30px;
  }

  .video-modal .video-wrapper-modal .video-content h2 {
    font-size: 22px;
  }

  .video-modal .video-wrapper-modal .video-content {
    font-size: 18px;
  }
}

@media (max-width: 1279px) {
  .doctor-card-grid {
    gap: 30px;
  }

  .doctor-card-grid .doctor-card__specialty {
    font-size: 14px;
  }

  .doctor-card-grid .doctor-card__meta {
    font-size: 16px;
  }

  .modal .modal-body .modal-inner-title {
    font-size: 22px;
  }

  .offer-list-section .offer-list-nav .nav-item .nav-link {
    font-size: 18px;
    padding: 9px 18px;
  }

  .offer-list-section .trending-now {
    gap: 10px;
    grid-template-columns: repeat(5, calc(20% - 8px));
  }

  .offer-detail-section .odl-box-data {
    font-size: 16px;
  }

  .offer-detail-section .sessions-box {
    font-size: 16px;
  }

  .offer-detail-section .sessions-box strong {
    font-size: 32px;
    line-height: 42px;
  }

  .offer-detail-section .odl-box-data .card-review-wrap {
    font-size: 16px;
  }

  .offer-detail-section .odl-box-data .card-review-wrap .review-star {
    gap: 4px;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link {
    padding: 15px;
    font-size: 14px;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link span {
    font-size: 28px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .offer-detail-section .odl-box-data .price-offer-wrap .offer {
    font-size: 18px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .booking-header h3.booking-date {
    font-size: calc(16px + 6 * (100vw - 300px) / 1620);
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    padding: 8px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slotbooking-btn button {
    padding: 10px 14px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button,
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .next-date-btn,
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
    width: 34px;
    height: 34px;
  }

  .offer-detail-section .location-section .tab-btns .nav-link {
    font-size: 16px;
    padding: 8px 12px;
  }

  .offer-detail-section .sessions-box {
    padding: 10px;
  }

  .order-medicines-section .listing-box .trending-now {
    gap: 10px;
    grid-template-columns: repeat(5, calc(20% - 8px));
  }

  .product-list-section .offer-list-nav .nav-item .nav-link {
    font-size: 18px;
    padding: 9px 18px;
  }

  .product-list-section .trending-now {
    gap: 10px;
    grid-template-columns: repeat(5, calc(20% - 8px));
  }

  .doctor-card-grid {
    gap: 30px;
  }

  .doctor-card-grid .doctor-card__specialty {
    font-size: 14px;
  }

  .doctor-card-grid .doctor-card__meta {
    font-size: 16px;
  }

  .select-pharmacy-section .clinics-list-wrapper .clinic-card {
    width: calc(25% - 15px);
  }
}

@media only screen and (max-width: 1200px) {
  .py-60 {
    padding: 50px 0;
  }

  .hero {
    padding: 50px 0;
  }

  .visitor-login-wrap {
    padding-bottom: 50px;
  }

  .checkout-wrap {
    padding-bottom: 50px;
  }

  .featured-entities .featured-entities-swiper {
    margin-bottom: 60px;
  }

  .choose-from-offers {
    padding-top: 50px;
  }

  .book-specialties-swiper {
    margin-bottom: 60px;
  }

  .book-specialties-section .h-sm {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .book-specialties-section .t-lg {
    font-size: 16px;
  }

  .specialties-bottom-section .card-icon {
    margin-bottom: 16px;
  }

  .specialties-bottom-section .specialties-bottom-cards {
    gap: 10px;
  }
}

@media (max-width: 1199.98px) {
  .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(33.33% - 6.66px);
  }

  .search-data-wrap .filter-tag {
    padding: 10px !important;
  }

  .mobile-filter-btn {
    display: flex !important;
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: position 0.2s;
  }

  .mobile-filter-btn.fixed {
    position: fixed;
    width: max-content;
    top: 72px;
    left: 12px;
    border-radius: 0 0 16px 16px;
  }

  .filter-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 280px;
    padding: 10px;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
    padding-top: 48px;
  }

  .filter-offcanvas.open {
    transform: translateX(0);
  }

  .filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1099;
  }

  .filter-overlay.active {
    display: block;
  }

  .filter-main-wrap {
    position: relative;
    width: auto;
  }

  .search-wrapper {
    flex-direction: column;
    gap: 14px;
    position: relative;
  }

  .search-data-wrap {
    width: calc(100% - 0px);
    gap: 20px;
  }

  .search-data-wrap .doctor-booking-wrapper .profile-card-wrapper {
    width: calc(58.1% - 20px);
  }

  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(25.5% - 10px);
  }

  .tab-content-wrap {
    padding: 15px;
  }

  .about-tags-checkboxes .about-checkbox .custom-box {
    padding: 8px;
  }
}

@media screen and (max-width: 1199px) {
  .scroll-top-btn {
    width: 40px;
    height: 40px;
    bottom: 150px;
    right: 40px;
  }

  .scroll-top-btn img {
    max-width: 13px;
  }

  .whatsapp-btn {
    width: 40px;
    height: 40px;
    bottom: 90px;
    right: 40px;
  }

  .tab-button {
    font-size: 18px;
  }

  .doctor-cta .container {
    gap: 60px;
  }

  .doctor-cta .doctor-cta__left .doctor-cta__title {
    font-size: 30px;
  }

  .doctor-cta .doctor-cta__card h3 {
    font-size: 20px;
  }

  .doctor-cta .doctor-cta__left .doctor-cta__desc,
  .doctor-cta .doctor-cta__desc p.phone-email-wrap a {
    font-size: 16px;
  }

  .doctor-cta .doctor-cta__desc p:first-child {
    margin-bottom: 15px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .doctor-cta .doctor-cta__desc p.phone-email-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }

  .doctor-cta .doctor-cta__card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .doctor-cta .doctor-cta__card .doctor-cta__card-wrap {
    max-width: 100%;
  }

  .doctor-cta .doctor-cta__card .btn-primary {
    min-width: 130px;
  }

  .custom-footer__map {
    flex: 1;
    max-width: 100%;
  }

  .custom-footer__links {
    gap: 30px;
  }

  .footer-col ul li a {
    font-size: 16px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box {
    padding: 14px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box p {
    margin-bottom: 30px;
  }

  .offer-list-section .breadcrumb {
    margin-bottom: 30px;
  }

  .offer-list-section .trending-now {
    gap: 20px 12px;
    grid-template-columns: repeat(4, calc(25% - 9px));
  }

  .offer-detail-section .odl-data-wrap {
    gap: 12px;
    grid-template-columns: calc(79.7% - 6px) calc(20.3% - 6px);
  }

  .offer-detail-section .odl-data-wrap .listing-box .odl-box-img {
    width: auto;
    height: auto;
    min-width: auto;
  }

  .offer-detail-section .odl-data-wrap .listing-box {
    padding: 14px 8px;
    gap: 8px;
  }

  .offer-detail-section .offer-details-wrap .sub-box-title {
    font-size: 18px;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab {
    gap: 10px;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item:first-child {
    width: calc(28.75% - 6px);
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item {
    width: calc(23.75% - 8px);
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link {
    padding: 12px 10px;
    font-size: 12px;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item .nav-link span {
    font-size: 24px;
  }

  .offer-detail-section .patient-reviews .rating-tab .rating-head {
    margin-bottom: 12px;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab {
    margin-bottom: 15px;
  }

  .offer-detail-section .patient-reviews .rating-tab {
    margin-bottom: 15px;
  }

  .offer-detail-section .patient-reviews .view-more {
    margin-top: 25px;
  }

  .offer-detail-section .offer-detail-right .limited-offer picture {
    width: 65px;
  }

  .offer-detail-section .offer-detail-right .limited-offer h3 {
    font-size: 24px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header {
    margin-bottom: 15px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-title {
    font-size: 20px;
  }

  .offer-detail-section .patient-reviews,
  .offer-detail-section .description-box,
  .offer-detail-section .location-section {
    padding: 14px 10px;
  }

  .offer-detail-section .location-section .tab-pane {
    font-size: 16px;
  }

  .offer-detail-section .location-section .nav-pills {
    gap: 10px;
    margin-bottom: 10px;
  }

  .offer-detail-section .offer-detail-right .odl-box-data h3 {
    font-size: 20px;
  }

  .offer-detail-section .odl-box-data .card-review-wrap {
    margin-bottom: 10px;
  }

  .offer-detail-section :where(.odl-data-wrap,
    .description-box,
    .patient-reviews,
    .booking-info-card,
    .location-section,
    .offer-provider-wrap,
    .offer-detail-right .limited-offer,
    .offer-detail-right .booking-view-wrap) {
    margin-top: 15px !important;
  }

  .offer-detail-section .offer-details-wrap {
    gap: 12px;
  }

  .offer-detail-section .offer-detail-left {
    width: calc(56.85% - 6px);
  }

  .offer-detail-section .offer-detail-right {
    width: calc(43.15% - 6px);
  }

  .offer-detail-section .patient-reviews .rating-tab .rating-head .user-rating {
    font-size: 16px;
  }

  .offer-detail-section .location-section .address-text {
    align-items: flex-start;
  }

  .offer-detail-section .location-section .address-text::before {
    width: 27px;
    height: 22px;
    background-size: cover;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button,
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .next-date-btn,
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
    width: 27px;
    height: 27px;
  }

  .offer-detail-section .odl-data-wrap {
    gap: 6px;
    grid-template-columns: calc(79.7% - 3px) calc(20.3% - 3px);
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item:first-child {
    width: calc(28.75% - 6px);
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item {
    width: calc(23.75% - 8px);
  }

  .offer-detail-section .patient-reviews .sub-box-title {
    margin-bottom: 15px;
  }

  .offer-detail-section .patient-reviews .rating-tab {
    font-size: 14px;
  }

  .offer-detail-section .patient-reviews .rating-tab .rating-head {
    gap: 7px;
    margin-bottom: 10px;
    padding-right: 55px;
  }

  .offer-detail-section .patient-reviews .rating-tab .rating-head h4 {
    font-size: 16px;
  }

  .offer-detail-section .description-box .des-list li {
    padding-left: 18px;
  }

  .offer-detail-section .description-box .des-list li::before {
    left: 5px;
  }

  .video-modal .video-wrapper-modal .main-video .video {
    max-height: 500px;
  }

  .video-modal .video-wrapper-modal .video-content h2 {
    font-size: 20px;
  }

  .video-modal .video-wrapper-modal .video-content .video-specialty {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .order-medicines-section .breadcrumb {
    margin-bottom: 30px;
  }

  .order-medicines-section .listing-box .trending-now {
    gap: 20px 12px;
    grid-template-columns: repeat(4, calc(25% - 9px));
  }

  .order-medicines-section .order-medicines-title {
    flex-wrap: wrap;
    gap: 16px;
  }

  .order-medicines-section {
    padding: 40px 0 50px;
  }

  .order-medicines-section .order-medicines-title .select-location-wrap {
    justify-content: flex-start;
    gap: 15px;
  }

  .order-medicines-section .order-medicines-title .select-location-wrap .common__select .select2-selection {
    min-width: 200px;
  }

  .order-medicines-section .order-medicines-title .select-location-wrap .common-select2 {
    max-width: 200px;
  }

  .product-detail-section {
    padding: 40px 0 50px;
  }

  .product-list-section .breadcrumb {
    margin-bottom: 30px;
  }

  .product-list-section .trending-now {
    gap: 20px 12px;
    grid-template-columns: repeat(4, calc(25% - 9px));
  }

  .doctor-card__name.h-sm {
    font-size: 20px;
    line-height: 26px;
  }

  .product-detail-section .product-card__img {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
  }

  .product-detail-section .product-card {
    gap: 24px;
  }
}

@media (max-width: 1198px) {
  .clinic-card {
    width: calc(20.3% - 20px);
  }
}

@media only screen and (min-width: 1024px) {
  .header {
    min-height: 82px;
  }
}

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

  body,
  .page {
    padding-top: 72px;
  }

  main {
    min-height: unset;
  }

  .btn-secondary,
  .btn-primary {
    min-width: 100px;
  }

  .purple-filter__option span {
    font-size: 16px;
  }

  .header .logo picture img {
    max-width: 180px;
  }

  .header .header-nav {
    flex: none;
  }

  .header .header-nav .nav-menu {
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    padding-top: 100px;
    justify-content: flex-start;
  }

  .header .header-nav .nav-menu .lang-dropdown {
    margin-left: 16px !important;
  }

  .header .header-nav .nav-menu .nav-list {
    flex-direction: column;
    gap: 0;
    margin-right: 0;
    width: 100%;
  }

  .header .header-nav .nav-menu .nav-list li {
    width: 100%;
    z-index: 10;
    padding: 18px 0;
    top: 0;
    transition: all 0.3s ease;
  }

  .header .header-nav .nav-menu .nav-list li a {
    padding-left: 16px;
  }

  .header .header-nav .nav-menu .login-btn {
    min-width: 100px;
  }

  .header .header-nav .nav-menu .lang-dropdown {
    position: fixed;
    top: 26px;
    right: 55px;
  }

  .header .header-nav.has-login .nav-menu .lang-dropdown {
    right: 140px;
  }

  .header .header-nav.has-login .nav-menu .country-dropdown {
    right: 335px;
  }

  .header .header-nav .nav-menu .nav-list li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #434343;
  }

  .header .header-nav .nav-menu .login-btn {
    margin-left: 16px;
  }

  .header .header-nav .nav-menu .register-btn {
    min-width: 100px;
  }

  .header .header-nav .menu-toggle {
    display: block;
  }

  .header .header-nav .nav-menu .topbar-right {
    margin-left: 16px;
  }

  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle .user-name {
    display: none;
  }

  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle {
    max-width: max-content;
    min-width: inherit;
  }

  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu {
    left: inherit;
    right: -106px;
    min-width: 210px;
  }

  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper {
    position: fixed;
    top: 16px;
    right: 60px;
  }

  .hero .hero__field {
    flex: 1 1 400px;
  }

  .hero .heading-top-bottom .hero__title {
    font-size: 36px;
    line-height: 47px;
  }

  .reset-password-wrapper {
    grid-template-columns: calc(45% - 10px) calc(55% - 10px);
  }

  .myorder-account .search-product-wrap {
    min-width: 50%;
  }

  .order-information-cls .my-order-process-details .order-label-same .subtitle {
    justify-content: space-between;
  }

  .myorder-account .flex-order-part {
    justify-content: space-between;
  }

  .myorder-account .bolding-text {
    text-align: end;
  }

  .aboutus-team .common-sub-heading {
    font-size: 26px;
    line-height: 30px;
  }

  .aboutus-team .nav-link {
    font-size: 18px;
  }

  .our-accordion-process .apply-now-career-btn-cls {
    font-size: 16px;
    line-height: 20px;
  }

  .our-accordion-process .accordion-header .accordion-button {
    font-size: 18px;
    line-height: 22px;
  }

  .our-accordion-process .career-flex label {
    font-size: 16px;
    line-height: 20px;
  }

  .our-accordion-process .accordion-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .our-accordion-process .career-flex label {
    font-size: 12px;
    line-height: 16px;
  }

  .medical-library-inner .common-heading-topics-inner {
    font-size: 26px;
    line-height: 30px;
  }

  .medical-library-inner .medical-library-img {
    width: 100%;
  }

  .topic-inner-flex-left {
    width: 100%;
  }

  .medical-library-cls {
    width: 100%;
    max-height: 290px;
    object-fit: cover;
  }

  .medical-library-inner .topic-inner-flex-right {
    width: 100%;
  }

  .medical-library-inner .topic-inner-flex {
    flex-direction: column;
  }

  .main-chossing-plan .sub-heading-choose {
    font-size: 36px;
    line-height: 46px;
  }

  .main-chossing-plan .pricing-value {
    font-size: 22px;
    line-height: 32px;
  }

  .main-chossing-plan .line-cls-subscription {
    margin: 25px 0px;
  }

  .review-card {
    width: calc(51.3% - 20px);
  }

  .promo-card {
    gap: 14px;
  }

  .featured-entities .main-inner-flexible-subscription {
    background: linear-gradient(179deg, #feeaee 0%, #eee8ff 99.95%) !important;
  }

  .flexible-subscription .flexible-heading {
    font-size: 36px;
    line-height: 46px;
  }

  .flexible-subscription .flexible-para {
    padding-bottom: 20px;
  }

  .flexible-subscription .main-inner-flexible-subscription {
    background: linear-gradient(180deg,
        rgba(248, 44, 81, 0.1) 0%,
        rgba(97, 65, 211, 0.1) 99.95%);
    padding: 25px;
  }

  .hero .heading-top-bottom {
    padding-bottom: 50px;
  }

  .medical-question .medical-heading {
    font-size: 24px;
    line-height: 28px;
  }

  .medical-question .medical-paragraph {
    padding-bottom: 20px;
  }

  .medical-question .medical-questions-start {
    padding: 20px;
  }

  .doctor-doorstep .doctor-doorstep-common {
    padding: 53px 20px 53px 20px;
  }

  .doctor-doorstep .spacing-top-bottom {
    margin: 15px 0px;
  }

  .common-purple-box .form-row .social-btn .login-Gfa {
    gap: 5px;
    padding: 8px;
  }

  .pay-as-clinic-cls-adding .btn-secondary {
    width: 100%;
  }

  .pay-as-clinic-cls-adding .btn-primary {
    width: 100%;
  }

  .header .header-nav .nav-menu .country-dropdown {
    position: fixed;
    top: 26px;
    right: 245px;
  }
}

@media only screen and (max-width: 991px) {
  .pay-as-clinic-cls-adding {
    flex-direction: column;
    gap: 16px;
  }

  .py-60 {
    padding: 30px 0;
  }

  .h-xl {
    font-size: 38px;
    line-height: 44px;
  }

  .h-lg {
    font-size: 30px;
    line-height: 36px;
  }

  .h-md {
    font-size: 26px;
    line-height: 30px;
  }

  .h-sm {
    font-size: 20px;
    line-height: 24px;
  }

  .h-xs {
    font-size: 17px;
    line-height: 20px;
  }

  .t-lg {
    font-size: 15px;
    line-height: 17px;
  }

  .t-md {
    font-size: 14px;
    line-height: 16px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .doctor-cta .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .doctor-cta .doctor-cta__left {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .doctor-cta .doctor-cta__left .doctor-cta__title {
    font-size: 28px;
    max-width: 100%;
  }

  .doctor-cta .doctor-cta__desc p.phone-email-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }

  .doctor-cta .doctor-cta__right {
    max-width: 100%;
    min-width: 100%;
  }

  .doctor-cta .doctor-cta__card {
    flex-wrap: wrap;
    gap: 30px;
  }

  .custom-footer__container .container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .custom-footer__container .custom-footer__links {
    gap: 20px;
  }

  .custom-footer__container .container,
  .doctor-cta {
    padding-bottom: 40px;
  }

  .footer-col h4 {
    margin-bottom: 20px;
  }

  .hero {
    padding: 30px 0;
  }

  .hero .hero__field {
    flex: 1 1 200px;
  }

  .profile-card-wrapper .profile-card .link.h-sm {
    font-size: 20px !important;
    line-height: 24px !important;
  }

  .new-inner-common-hero .heading-top-bottom .hero__title {
    font-size: 26px;
    line-height: 30px;
  }

  .new-inner-common-hero .heading-top-bottom .hero__subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .doctor-card-grid {
    gap: 30px 20px;
  }

  .doctor-card-grid .doctor-card__meta {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
  }

  .doctor-card-grid .doctor-card__meta h5.h-xs {
    font-size: 16px;
  }

  .doctor-card-grid .doctor-card__img {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }

  .doctor-card-grid .doctor-card__specialty {
    margin-bottom: 10px;
  }

  .gradient-action-box {
    flex-wrap: wrap;
  }

  .reset-password-wrapper {
    grid-template-columns: calc(55% - 10px) calc(45% - 10px);
  }

  .visitor-login-wrap .visitor-login-inner .visitor-login-left,
  .visitor-login-wrap .visitor-login-inner .visitor-login-right,
  .visitor-login-wrap .subscription-payment-thankyou.visitor-login-inner .visitor-login-left,
  .visitor-login-wrap .subscription-payment-thankyou.visitor-login-inner .visitor-login-right {
    width: 100%;
  }

  .visitor-login-wrap {
    padding-bottom: 30px;
  }

  .visitor-login-wrap .visitor-login-inner {
    margin-top: 10px;
  }

  .myorder-account .search-product {
    width: 100%;
    gap: 10px;
  }

  .myorder-account .order-right-side {
    margin-left: inherit;
  }

  .myorder-account .order-summary-card {
    flex-direction: column;
  }

  .myorder-account .search-product-wrap {
    min-width: 60%;
  }

  .myorder-account .my-order-process {
    padding-bottom: 30px;
  }

  .order-information-cls .my-order-process-details {
    margin-top: 0px;
  }

  .order-information-cls .my-order-process-details {
    margin-bottom: 30px;
  }

  .order-information-cls .my-order-process-details {
    margin-top: 0px;
  }

  .myorder-account .order-place-details-cls {
    font-size: 26px;
  }

  .new-my-order-wrapped {
    margin: 10px 0px 0px 0px;
  }

  .checkout-wrap .checkout-inner .checkout-left,
  .checkout-wrap .checkout-inner .checkout-right,
  .checkbox-payment-wrap .checkout-inner .checkout-left,
  .checkbox-payment-wrap .checkout-inner .checkout-right {
    width: 100%;
  }

  .checkout-wrap {
    padding-bottom: 30px;
  }

  .checkout-wrap .checkout-inner {
    margin-top: 10px;
  }

  .login-register-section .login-register-form {
    flex-direction: column;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box,
  .login-register-section.contact-form-section .contact-form .common-purple-box,
  .login-register-section .login-register-form .common-purple-box {
    width: 100%;
  }

  .login-register-section .login-register-image {
    width: 100%;
  }

  .login-register-section {
    padding: 40px 0;
  }

  .login-register-section .login-register-form .common-purple-box .form-row .checkbox-item .link,
  .login-register-section .login-register-form .common-purple-box .form-row .checkbox-item {
    font-size: 14px;
  }

  .login-register-section .login-register-form .common-purple-box .btn-group {
    margin-top: 30px;
  }

  .alredy-link {
    font-size: 16px;
    line-height: 20px;
  }

  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-control-wrap {
    gap: 10px;
  }

  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-group {
    gap: 10px;
    margin-bottom: 10px;
  }

  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-control-wrap .form-control {
    height: 45px;
    width: 45px;
    padding: 10px;
  }

  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .resend-otp,
  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap p {
    font-size: 16px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li,
  .login-register-section.contact-form-section .contact-form .contact-info-box p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer {
    margin-top: 30px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer .contact-social a {
    height: 35px;
    width: 35px;
  }

  .lb-data .lb-close {
    right: 4%;
  }

  .main-chossing-plan .redeem-now-cls {
    margin-left: inherit;
  }

  .offer-list-section .offer-list-nav {
    margin-bottom: 30px;
  }

  .offer-list-section .offer-list-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 9px 11px;
  }

  .offer-list-section .trending-now {
    grid-template-columns: repeat(3, calc(33.33% - 8px));
  }

  .offer-list-section .offer-list-wrapper {
    grid-template-columns: repeat(2, calc(50% - 7px));
  }

  .offer-list-section .offer-list-card::before,
  .offer-list-section .trending-now-card::before {
    top: 16px;
    left: 16px;
    font-size: 14px;
    padding: 5px 10px 3px;
    border-radius: 5px;
  }

  .listing-box-data h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .listing-box-data .price-offer-wrap {
    margin-bottom: 15px;
  }

  .listing-box-data .price-offer-wrap .offer {
    font-size: 18px;
  }

  .common__select .select2-selection__rendered {
    padding: 8px 12px;
  }

  .offer-list-section .listing-box .listing-box-head .listing-select-wrap {
    gap: 10px;
  }

  .offer-list-section .listing-box .listing-box-head .listing-select-wrap .common-select2-special {
    width: 220px;
  }

  .offer-list-section .listing-box .listing-box-head .listing-select-wrap .clear-all-btn {
    font-size: 16px;
  }

  .offer-detail-section .breadcrumb {
    margin-bottom: 25px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .prev-date-btn img,
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .next-date-btn img {
    width: 25px;
  }

  .offer-detail-section .odl-box-data .card-review-wrap {
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
  }

  .offer-detail-section .offer-detail-right .odl-box-data {
    padding: 10px;
  }

  .offer-detail-section .offer-detail-right .booking-view-wrap {
    gap: 10px;
    grid-template-columns: repeat(2, calc(50% - 5px));
  }

  .offer-detail-section .sessions-box {
    font-size: 15px;
  }

  .offer-detail-section .sessions-box strong {
    font-size: 28px;
    line-height: 40px;
  }

  .offer-detail-section .offer-detail-right .odl-box-data h3 {
    font-size: 18px;
  }

  .offer-detail-section .odl-box-data .price-offer-wrap .offer {
    font-size: 16px;
  }

  .offer-detail-section .odl-box-data {
    font-size: 14px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .booking-header,
  .offer-detail-section .offer-detail-right .booking-info-card .bokingslot-list,
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header,
  .offer-detail-section .offer-provider-wrap,
  .offer-detail-section .offer-detail-right .limited-offer {
    padding: 10px 12px;
  }

  .offer-detail-section .offer-detail-right .limited-offer h3 {
    font-size: 20px;
  }

  .offer-detail-section .offer-detail-right .limited-offer picture {
    width: 60px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    width: calc(50% - 5px);
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slotbooking-btn {
    padding: 0 10px 12px;
  }

  .offer-detail-section .offer-main-slider .swiper-slide .slide-img-wrap {
    height: 280px;
  }

  .video-modal .video-wrapper-modal .video-content {
    font-size: 16px;
    max-width: 100%;
  }

  .video-modal .video-wrapper-modal .main-video {
    max-width: 100%;
  }

  .video-modal .video-wrapper-modal .video-content .btn-close {
    font-size: 12px;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
  }

  .video-modal .video-wrapper-modal .main-video .video {
    max-height: 100%;
  }

  .clinic-horizontal-card .clinic-thumb,
  .profile-card-wrapper .profile-avatar {
    width: 70px;
    height: 70px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties {
    padding-left: 0px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list {
    flex-wrap: wrap;
  }

  .doctor-booking-wrapper .booking-info-card .booking-header .next-prev-slot .prev-date-btn img,
  .doctor-booking-wrapper .booking-info-card .booking-header .next-prev-slot .next-date-btn img {
    width: 25px;
  }

  .promo-card .promo-box {
    width: calc(50% - 10px);
  }  

  .claim-btn {
    font-size: 16px;
  }

  .choose-examination .about-tags-checkboxes {
    flex-wrap: wrap;
  }

  .book-online {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(33.3% - 6.666px);
    padding: 4px 5px;
    border-radius: 6px;
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(50% - 5px);
  }

  .clinics-list-wrapper {
    gap: 12px;
  }

  .clinic-card {
    width: calc(25.3% - 12px);
  }

  .explore-now.order-medicines-section .listing-box {
    padding: 10px;
  }

  .order-medicines-section .listing-box .trending-now {
    grid-template-columns: repeat(3, calc(33.33% - 8px));
  }

  .order-medicines-section .search-product-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .order-medicines-section .search-product-wrap .search-product-img {
    padding-left: 0px;
    border-left: 0;
  }

  .order-medicines-section .search-product-wrap .search-product {
    width: 100%;
    gap: 10px;
  }

  .order-medicines-section .search-product-wrap .custom-file-uploader span {
    gap: 14px;
  }

  .order-medicines-section .breadcrumb {
    margin-bottom: 25px;
  }

  .product-list-section .offer-list-nav {
    margin-bottom: 30px;
  }

  .product-list-section .offer-list-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 9px 11px;
  }

  .product-list-section .trending-now {
    grid-template-columns: repeat(3, calc(33.33% - 8px));
  }

  .product-list-section .offer-list-wrapper {
    grid-template-columns: repeat(2, calc(50% - 7px));
  }

  .product-list-section .offer-list-card::before,
  .product-list-section .trending-now-card::before {
    top: 16px;
    left: 16px;
    font-size: 14px;
    padding: 5px 10px 3px;
    border-radius: 5px;
  }

  .listing-box-data h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .listing-box-data .price-offer-wrap {
    margin-bottom: 15px;
  }

  .listing-box-data .price-offer-wrap .offer {
    font-size: 18px;
  }

  .doctor-card__info .btn-primary {
    font-size: 16px;
    min-height: 38px;
  }

  .doctor-card {
    gap: 14px;
  }

  .doctor-card__img {
    margin: 0 auto;
  }

  .product-card__qty {
    max-width: 60px;
  }

  .qty-btn {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }

  .qty-btn img {
    height: 18px;
    width: 18px;
  }

  .product-card__qty-wrap {
    gap: 6px;
  }

  .product-detail-section .product-card__header {
    gap: 10px;
  }

  .product-detail-section .product-card__footer {
    gap: 18px;
    margin-top: 12px;
  }

  .product-detail-section .product-card .common__select .select2-selection {
    min-width: 180px;
  }

  .product-detail-section .product-card .common-select2 {
    max-width: 180px;
  }

  .medical-tag {
    gap: 8px;
  }

  .medical-tag li {
    font-size: 16px;
    padding: 8px 12px;
  }

  .medical-tag {
    gap: 5px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .doctor-card__name.h-sm {
    font-size: 18px;
    line-height: 22px;
  }

  .doctor-card-grid .doctor-card__meta {
    font-size: 14px;
  }

  .doctor-card-grid .doctor-card__meta h5.h-xs {
    font-size: 16px;
  }

  .shopping-cart-section .shopping-cart-header {
    gap: 10px;
    margin-bottom: 20px;
  }

  .order-medicines-section .order-medicines-title .shopping-count,
  .shopping-cart-section .shopping-cart-header .shopping-count {
    font-size: 16px;
  }

  .select-pharmacy-section .clinics-list-wrapper {
    gap: 16px;
  }

  .select-pharmacy-section .clinics-list-wrapper .clinic-card {
    width: calc(33.33% - 11px);
  }

  .featured-doctors .featured-doctors-swiper .specialty-card .link {
    margin-top: 14px;
    padding: 14px 6px 6px;
  }

  .featured-entities .featured-entities-swiper {
    margin-bottom: 50px;
  }

  .choose-from-offers .choose-from-offers-swiper .specialty-card .link {
    margin-top: 14px;
    padding: 14px 6px 6px;
  }

  .choose-from-offers {
    padding-top: 30px;
  }

  .specialties-bottom-section .specialties-bottom-bg {
    min-height: 520px;
  }

  .book-specialties-section .h-sm {
    font-size: 18px;
    line-height: 20px;
  }

  .specialties-bottom-section .specialties-bottom-cards {
    flex-wrap: wrap;
    gap: 10px;
  }

  .specialties-bottom-section .specialty-bottom-card {
    flex: auto;
    width: calc(50% - 5px);
  }

  .book-specialties-swiper {
    margin-bottom: 50px;
  }

  .specialties-bottom-section .card-icon {
    width: 45px;
    height: 35px;
    margin-bottom: 10px;
  }

  .offer-detail-section .odl-data-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header {
    flex-direction: column;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav {
    margin-left: auto;
  }

  .search-data-wrap .doctor-booking-wrapper .booking-info-card {
    justify-content: flex-start;
  }

  .doctor-booking-wrapper .booking-info-card .slotbooking-btn {
    margin-top: auto;
  }
}

@media (max-width: 900px) {
  .about-tags-checkboxes {
    gap: 8px 8px;
  }
}

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

  .btn-secondary,
  .btn-primary {
    font-size: 16px;
  }

  .link {
    font-size: 16px;
    line-height: 18px;
  }

  .header .logo picture img {
    max-width: 150px;
  }

  .header .logo picture img {
    max-width: 150px;
  }

  .header .header-nav .nav-menu .register-btn {
    font-size: 16px;
  }

  .reset-password-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reset-password-image {
    order: -1;
  }

  .reset-password-image img {
    width: 100%;
    height: auto;
  }

  .main-content {
    padding: 20px 0;
  }

  .terms-container {
    padding: 15px;
    gap: 15px;
  }

  .terms-section {
    gap: 12px;
  }

  .terms-heading {
    font-size: 20px;
  }

  .terms-text {
    font-size: 14px;
    line-height: 17px;
  }

  .clinic-card {
    width: calc(33.8% - 12px);
  }
}

@media screen and (max-width: 767px) {
  .flexible-subscription .flexible-para {
    font-size: 16px;
    line-height: 20px;
  }

  .medical-question .medical-heading {
    font-size: 18px;
    line-height: 22px;
  }

  .medical-question .medical-paragraph {
    font-size: 16px;
    line-height: 20px;
  }

  .scroll-top-btn {
    bottom: 110px;
    right: 20px;
  }

  .whatsapp-btn {
    bottom: 50px;
    right: 20px;
  }

  .breadcrumb {
    display: none;
  }

  .h-xl {
    font-size: 32px;
    line-height: 38px;
  }

  .h-lg {
    font-size: 26px;
    line-height: 30px;
  }

  .h-md {
    font-size: 24px;
    line-height: 28px;
  }

  .h-sm {
    font-size: 18px;
    line-height: 22px;
  }

  .h-xs {
    font-size: 16px;
    line-height: 20px;
  }

  .t-lg {
    font-size: 14px;
    line-height: 16px;
  }

  .t-md {
    font-size: 13px;
    line-height: 15px;
  }

  .t-sm {
    font-size: 12px;
    line-height: 14px;
  }

  .tab-buttons {
    gap: 6px;
  }

  .tab-button {
    font-size: 16px;
    padding: 8px;
  }

  .tab-content-wrap {
    padding: 15px;
  }

  .faq-wrapper {
    border-radius: 10px;
  }

  .faq-item .accordion-button {
    font-size: 15px;
    padding: 14px;
  }

  .faq-item .accordion-body {
    font-size: 14px;
    padding: 14px;
  }

  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper {
    top: 20px;
  }

  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu {
    top: 50px;
  }

  .header .header-nav.has-login .nav-menu .lang-dropdown {
    right: 130px;
  }

  .header .header-nav.has-login .nav-menu .country-dropdown {
    right: 185px;
  }

  .doctor-cta .footer-logo {
    width: 130px;
    height: 40px;
    margin-bottom: 15px;
  }

  .doctor-cta .doctor-cta__left .doctor-cta__title {
    font-size: 26px;
  }

  .doctor-cta .doctor-cta__card h3 {
    font-size: 18px;
  }

  .custom-footer__container .container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .custom-footer__map {
    flex: auto;
    max-width: 100%;
    min-width: 100%;
  }

  .custom-footer__container .custom-footer__links {
    width: 100%;
    gap: 30px;
  }

  .doctor-cta .doctor-cta__card {
    gap: 20px;
  }

  .custom-footer__container .container,
  .doctor-cta {
    padding-bottom: 30px;
  }

  .doctor-cta .doctor-cta__right .doctor-cta__img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero .heading-top-bottom .hero__title {
    font-size: 20px;
    line-height: 30px;
  }

  .hero .hero__field {
    flex: 1 1 100%;
  }

  .hero .heading-top-bottom {
    padding-bottom: 30px;
  }

  .hero .nav-pills .nav-link.active {
    font-size: 15px;
    line-height: 19px;
  }

  .hero .nav-pills .nav-link {
    font-size: 15px;
    line-height: 19px;
  }

  .hero .hero__search-card {
    border-radius: 0px 0px 10px 10px;
  }

  .hero .hero__search-btn {
    font-size: 16px;
    padding: 20px 23px 20px 23px;
    line-height: 20px;
  }

  .hero-flex .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
  }

  .profile-card-wrapper .profile-card .link.h-sm {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .new-inner-common-hero .heading-top-bottom .hero__title {
    font-size: 24px;
    line-height: 28px;
  }

  .doctor-card-grid {
    gap: 30px 20px;
  }

  .doctor-card-grid .doctor-card__meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
  }

  .doctor-card-grid .doctor-card {
    flex-direction: column;
  }

  .doctor-card-grid .doctor-card__img {
    margin-left: 0;
  }

  .common-purple-box .form-group {
    flex: none;
    width: 100%;
  }

  .gradient-action-box {
    gap: 10px;
  }

  .gradient-action-box img {
    max-width: 80px;
  }

  .modal .modal-body {
    font-size: 14px;
  }

  .modal .modal-body .modal-inner-title {
    font-size: 20px;
  }

  .cancelappointment .modal-inner-title {
    max-width: 299px;
  }

  .cancelappointment .booking-info-card .booking-header h3.booking-date {
    font-size: 21px;
    line-height: 25px;
  }

  .cancelappointment .booking-info-card .bokingslot-list {
    grid-template-columns: repeat(4, 4fr);
    gap: 8px;
  }

  .order-information-cls .my-order-process-details .bg-back-added-cls {
    justify-content: center;
  }

  .myorder-account .order-lefttoright-side-details {
    margin-left: inherit;
  }

  .my-order-process-details .my-order-details-heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .my-order-details-cls .download-invoice-btncls .download-invoice-cls {
    font-size: 16px;
  }

  .order-information-cls .my-order-process-details .order-label-same .subtitle {
    justify-content: space-between;
  }

  .myorder-account .order-left-side {
    flex-direction: column;
    width: 100%;
  }

  .myorder-account .profile-avatar {
    width: 100%;
    height: 100%;
  }

  .myorder-account .order-placed-here {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .myorder-account .search-product-wrap {
    min-width: 100%;
  }

  .appointement-all-type .booking-log-add {
    padding: 30px 0 10px 0;
  }

  .rateyourexperience-cls .inner-rate-exerience .heading-textarea-main {
    font-size: 16px;
    line-height: 20px;
  }

  .rateyourexperience-cls .modal-footer .footer-btn {
    width: 45%;
  }

  .checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper .profile-avatar {
    width: 100px;
    height: 70px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .h-md {
    margin-bottom: 5px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .contact-list li,
  .login-register-section.contact-form-section .contact-form .contact-info-box p {
    margin-bottom: 15px;
  }

  .login-register-section.contact-form-section .contact-form .contact-info-box .contact-footer {
    margin-top: 20px;
  }

  .about-flex {
    flex-direction: column;
  }

  .about-flex .about-flex-left {
    width: 100%;
  }

  .aboutus-team .nav-link {
    max-width: 100%;
  }

  .about-flex-right {
    width: 100%;
  }

  .aboutus-team .nav-link {
    font-size: 17px;
    line-height: 21px;
  }

  .aboutus-team .common-sub-heading {
    font-size: 26px;
    line-height: 30px;
  }

  .aboutus-team .sub-heading-child {
    font-size: 20px;
    line-height: 24px;
  }

  .our-team-card .card-title {
    font-size: 20px;
    line-height: 24px;
  }

  .our-team-card .card-title {
    font-size: 18px;
    line-height: 22px;
  }

  .aboutus-team .common-sub-heading {
    font-size: 22px;
    line-height: 26px;
  }

  .main-disease-condition .main-typedisease-condition {
    font-size: 16px;
    line-height: 20px;
  }

  .main-disease-condition .diseases-heading {
    font-size: 20px;
    line-height: 24px;
  }

  .psychiatry-topics-inner .diseases-heading {
    font-size: 16px;
    line-height: 20px;
  }

  .medical-library-inner .common-heading-topics-inner {
    font-size: 20px;
    line-height: 24px;
  }

  .psychiatry-topics-inner .showall-cls {
    font-size: 16px;
  }

  .psychiatry-topics-inner .recommended-heading-cls {
    font-size: 16px;
  }

  .main-chossing-plan .sub-heading-choose {
    font-size: 26px;
    line-height: 36px;
  }

  .main-chossing-plan .pricing-value {
    font-size: 20px;
    line-height: 30px;
  }

  .main-chossing-plan .line-cls-subscription {
    margin: 12px 0px;
  }

  .main-chossing-plan .redeem-now-cls {
    margin-left: inherit;
  }

  .offer-list-section {
    padding-bottom: 40px;
  }

  .offer-list-section .offer-list-card,
  .offer-list-section .trending-now-card {
    border-radius: 12px;
    padding: 6px;
  }

  .listing-img-wrapper {
    border-radius: 7px;
  }

  .offer-list-section .trending-now {
    grid-template-columns: repeat(2, calc(50% - 6px));
  }

  .listing-box-data {
    padding-left: 0;
    padding-right: 0;
  }

  .listing-box-data .btn-primary {
    min-height: 40px;
  }

  .offer-list-section .offer-list-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 -12px 30px;
  }

  .offer-list-section .offer-list-nav::-webkit-scrollbar {
    height: 4px;
    background: transparent;
  }

  .offer-list-section .offer-list-nav::-webkit-scrollbar-thumb {
    background: #afafaf;
    border-radius: 3px;
  }

  .offer-list-section .offer-list-nav::before {
    display: none;
  }

  .offer-list-section .offer-list-nav .nav-item {
    border-bottom: 1px solid #2222221a;
  }

  .offer-list-section .offer-list-nav .nav-item .nav-link {
    white-space: nowrap;
  }

  .listing-box-data .card-review-wrap {
    gap: 3px;
    font-size: 14px;
  }

  .listing-box-data .card-review-wrap .review-star {
    gap: 3px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card {
    width: 100%;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    width: calc(16.9% - 10px);
    white-space: nowrap;
    padding: 7px 12px;
    min-height: auto;
    border-radius: 7px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slotbooking-btn button {
    padding: 10px 14px;
    min-height: auto;
  }

  .offer-detail-section .offer-details-wrap {
    flex-wrap: wrap;
  }

  .offer-detail-section .offer-detail-right,
  .offer-detail-section .offer-detail-left {
    width: 100%;
  }

  .offer-detail-section .offer-detail-slider {
    padding: 14px 10px;
  }

  .booking-info-card.desktop-view {
    display: none;
  }

  .mobile-view.doctor-detail-claim {
    display: block;
    background: url(../images/perks.svg),
      linear-gradient(180deg,
        rgba(248, 44, 81, 0.1) 0%,
        rgba(97, 65, 211, 0.1) 99.95%);
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    margin-bottom: 20px;
  }

  .promo-card.mobile-view {
    display: flex;
  }

  .search-wrapper {
    margin-top: 25px;
  }

  hr {
    margin: 15px 0;
  }

  .clinic-horizontal-card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .clinic-horizontal-card .clinic-thumb,
  .profile-card-wrapper .profile-avatar {
    width: 80px !important;
    height: 80px !important;
  }

  body .bootstrap-select .dropdown-toggle,
  body .bootstrap-select .dropdown-toggle:focus {
    padding: 10px;
  }

  .doctor-booking-wrapper {
    gap: 0;
    margin-top: 0px;
    flex-direction: column;
  }

  .profile-card-wrapper .profile-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .doctor-booking-wrapper .profile-card-wrapper,
  .search-data-wrap .doctor-booking-wrapper .profile-card-wrapper {
    width: 100%;
  }

  .doctor-booking-wrapper .booking-info-card,
  .search-data-wrap .doctor-booking-wrapper .booking-info-card {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox,
  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(16.9% - 10px);
    white-space: nowrap;
    padding: 7px 12px;
    min-height: auto;
    border-radius: 7px;
  }

  .search-data-wrap .doctor-booking-wrapper .booking-info-card .bokingslot-list-limited .slot-checkbox {
    width: auto;
  }

  .doctor-booking-wrapper .booking-info-card .slotbooking-btn button {
    padding: 10px 14px;
    min-height: auto;
  }

  .reviews-list-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .reviews-list-header .reviews-flex {
    width: 100%;
    margin-bottom: 0px;
  }

  .review-card {
    width: 100%;
  }

  .doctordetail-detail-page .mobile-flex-view {
    display: block;
  }

  /* New: Doctor Detail */
  /* .doctordetail-detail-page .desktop-flex-view {
    display: none;
  } */

  .profile-card-wrapper .doctor-booking-wrapper {
    width: 100%;
    display: block;
  }

  .doctor-booking-wrapper.doctor-detail-booking {
    width: 100%;
    display: block;
  }

  .doctordetail-data-wrap .profile-card-wrapper {
    width: 100%;
  }

  .profile-card-wrapper .doctor-booking-wrapper.doctor-detail-booking {
    display: block;
  }

  .doctordetail-data-wrap .profile-card-wrapper .profile-card .profile-details {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .explore-now.order-medicines-section .btn-group {
    flex-direction: column;
  }

  .order-medicines-section {
    padding: 40px 0;
  }

  .order-medicines-section .order-medicines-title .select-location-wrap {
    gap: 10px;
  }

  .order-medicines-section .listing-box .trending-now {
    grid-template-columns: repeat(2, calc(50% - 6px));
  }

  .order-medicines-section .order-medicines-title .select-location-wrap span {
    font-size: 14px;
    line-height: 16px;
  }

  .order-medicines-section .order-medicines-title .select2-results__option {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 16px;
  }

  .product-detail-section {
    padding: 30px 0 40px;
  }

  .product-list-section {
    padding-bottom: 40px;
  }

  .product-list-section .offer-list-card,
  .product-list-section .trending-now-card {
    border-radius: 12px;
    padding: 6px;
  }

  .listing-img-wrapper {
    border-radius: 7px;
  }

  .product-list-section .trending-now {
    grid-template-columns: repeat(2, calc(50% - 6px));
  }

  .listing-box-data .btn-primary {
    min-height: 40px;
  }

  .doctor-card__name.h-sm {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }

  .product-detail-section .product-card {
    gap: 12px;
    padding: 18px 10px;
  }

  .product-card__img {
    margin: 0 auto;
  }

  .product-card__header {
    gap: 8px;
  }

  .product-card__select-wrap {
    width: 100%;
    min-width: 0;
  }

  .tab-content-wrap .load-more-wrap {
    margin: 20px auto 0;
  }

  .tabs .medical-description-content .h-sm {
    margin-bottom: 10px;
  }

  .product-detail-section .product-card .common-select2 {
    max-width: 160px;
  }

  .product-detail-section .product-card .common__select .select2-selection {
    min-width: 160px;
  }

  .product-card__qty {
    max-width: 40px;
  }

  .product-detail-section .product-card {
    margin: 10px 0 20px;
  }

  .product-detail-section .product-card__info {
    gap: 5px;
  }

  .select-pharmacy-section .clinics-list-wrapper .clinic-card {
    width: calc(50% - 8px);
  }

  .select-pharmacy-section .clinics-list-wrapper .clinic-card {
    padding: 10px;
    border-radius: 12px;
  }

  .select-pharmacy-section .clinic-card .clinic-info {
    margin-top: 10px;
    gap: 10px;
  }

  .featured-entities .featured-entities-swiper {
    margin-bottom: 40px;
  }

  .specialties-bottom-section .specialties-bottom-bg {
    min-height: 400px;
  }

  .book-specialties-swiper {
    margin-bottom: 40px;
  }

  .book-specialties-section .t-lg {
    font-size: 14px;
  }

  .specialties-bottom-section .specialties-bottom-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
  }

  .specialties-bottom-section .specialty-bottom-card {
    min-width: calc(45% - 10px);
  }

  .flexible-subscription .flexible-heading {
    font-size: 18px;
    line-height: 22px;
  }

  .flexible-subscription .main-inner-flexible-subscription {
    padding: 20px;
  }

  .flexible-subscription .subscription-btn {
    font-size: 18px;
    line-height: 22px;
  }

  .doctor-doorstep .heading-subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .doctor-doorstep .doctor-doorstep-common {
    padding: 33px 15px 33px 15px;
  }

  .doctor-doorstep .book-now-btn {
    font-size: 18px;
    line-height: 20px;
  }

  .doctor-doorstep .doctor-doorstep-inner {
    padding: 15px;
  }

  .lb-nav a.lb-prev {
    left: 0px;
    filter: initial;
  }

  .lb-nav a.lb-next {
    right: 0px;
    filter: initial;
  }

  .header .header-nav .nav-menu .langugage-code-cls .language-heading {
    display: none;
  }

  .header .header-nav .nav-menu .country-dropdown {
    right: 115px;
  }

  .header .header-nav .nav-menu .country-dropdown__toggle .listing-country-language,
  .header .header-nav .nav-menu .lang-dropdown .lang-dropdown__toggle .listing-country-language {
    display: none;
  }

  .header .header-nav .nav-menu .lang-dropdown .lang-dropdown__toggle {
    min-width: unset;
  }

  .header .header-nav .nav-menu .lang-dropdown {
    right: 60px;
  }
  .promo-card {
    flex-wrap: wrap;
  }
}

@media (max-width: 625px) {
  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    width: calc(20.3% - 10px);
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox,
  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(20.3% - 10px);
  }
}

@media only screen and (max-width: 580px) {
  .address-detail-form-main .form-group {
    flex-direction: column;
    gap: 15px;
  }

  .address-detail-form-main .address-form {
    gap: 15px 20px;
  }

  .address-header h2 {
    font-size: 18px;
  }

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

  .address-desc-text {
    padding: 14px 12px;
  }

  .address-desc {
    font-size: 14px;
  }

  .address-form label {
    font-size: 16px;
  }

  .form-note__text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .h-xl {
    font-size: 30px;
    line-height: 36px;
  }

  .h-lg {
    font-size: 24px;
    line-height: 28px;
  }

  .h-md {
    font-size: 22px;
    line-height: 26px;
  }

  .filter-box {
    max-width: 100%;
  }

  .filter-header {
    font-size: 17px;
  }

  .checkbox-item {
    font-size: 16px;
  }

  .filter-tag {
    font-size: 13px;
    padding: 6px 10px;
  }

  .filter-tag .close-btn {
    margin-left: 4px;
  }

  .filter-tag .close-btn img {
    max-width: 80%;
  }

  .doctor-cta .doctor-cta__left .doctor-cta__title {
    font-size: 24px;
  }

  .doctor-cta .container {
    justify-content: center;
    gap: 20px;
  }

  .custom-footer__container .custom-footer__links {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .footer-col h4 {
    margin-bottom: 15px;
  }

  .footer-col ul li {
    margin-bottom: 5px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-bottom .container {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .footer-bottom .footer-socials a {
    height: 35px;
    width: 35px;
    min-width: 35px;
  }

  .profile-card-wrapper .meta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .profile-card-wrapper .profile-card {
    padding: 15px;
  }

  .new-inner-common-hero .heading-top-bottom .hero__title {
    font-size: 22px;
    line-height: 26px;
  }

  .common-purple-box .form-row .social-btn {
    flex-wrap: wrap;
  }

  .common-purple-box .form-row .social-btn .login-Gfa {
    flex: none;
    width: 100%;
  }

  .visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right form .payment-card-item {
    flex-wrap: wrap;
  }

  .visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right form .payment-card-item .btn-secondary {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }

  .alredy-link {
    font-size: 14px;
    line-height: 18px;
  }

  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .form-control-wrap .form-control {
    height: 35px;
    width: 35px;
    padding: 5px;
  }

  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap .resend-otp,
  .login-register-section .login-register-form .common-purple-box .form-row.otp-wrap p {
    font-size: 14px;
  }

  .login-register-section .login-register-form .common-purple-box .btn-group {
    margin-top: 20px;
  }

  .custom-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .terms-container {
    padding: 10px;
    gap: 12px;
  }

  .terms-heading {
    font-size: 18px;
  }

  .terms-text {
    font-size: 13px;
    line-height: 16px;
  }

  .lb-data .lb-close {
    top: -30px;
  }

  .listing-box {
    padding: 14px 10px;
    border-radius: 8px;
  }

  .offer-list-section .listing-box-title {
    margin-bottom: 15px;
  }

  .offer-list-section .offer-list-wrapper {
    grid-template-columns: 100%;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .booking-header,
  .offer-detail-section .offer-detail-right .booking-info-card .bokingslot-list {
    padding: 10px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    width: calc(25.5% - 10px);
    padding: 7px 5px;
  }

  .clinic-horizontal-card {
    flex-direction: column;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card,
  .doctor-booking-wrapper .booking-info-card .booking-header,
  .doctor-booking-wrapper .booking-info-card .bokingslot-list {
    padding: 10px;
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox,
  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    width: calc(33.3% - 10px);
    padding: 7px 5px;
  }

  .clinicselectpicker-main {
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .bootstrap-select.selectservices {
    width: 100% !important;
  }

  .clinic-card {
    width: calc(51.1% - 12px);
  }

  .product-list-section .listing-box {
    padding: 14px 10px;
    border-radius: 8px;
  }

  .product-list-section .listing-box-title {
    margin-bottom: 15px;
  }

  .product-list-section .offer-list-wrapper {
    grid-template-columns: 100%;
  }

  .medical-tag li {
    font-size: 14px;
    padding: 8px 10px;
  }

  .product-detail-section .product-card__img {
    margin-left: 0;
  }

  .product-detail-section .product-card__header {
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .product-detail-section .product-card__info {
    width: 100%;
    flex: auto;
  }

  .product-detail-section .product-card__footer {
    margin-top: 0;
  }

  .product-card__header .h-sm {
    width: 100%;
  }

  .qty-btn {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .shopping-cart-section .shopping-cart-header .shopping-count {
    font-size: 14px;
  }

  .shopping-cart-section .product-card {
    margin: 10px 0px;
  }

  .specialties-bottom-section .specialties-bottom-bg {
    min-height: 300px;
  }

  .specialties-bottom-section .specialty-bottom-card {
    min-width: calc(90% - 10px);
  }
}

@media only screen and (max-width: 480px) {
  .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-toggle {
    padding: 3px 4px;
    gap: 2px;
  }

  .modal .modal-body .modal-inner-title {
    font-size: 18px;
  }

  .modal .modal-footer .footer-btn {
    width: 100%;
    padding: 12px;
  }

  .cancelappointment .booking-info-card .bokingslot-list {
    grid-template-columns: repeat(3, 4fr);
  }

  .common-price-cls,
  .common-price-cls .custom-dropdown,
  .common-price-cls .custom-dropdown .custom-dropdown-toggle,
  .common-price-cls .custom-dropdown .custom-dropdown-menu {
    width: 100%;
  }

  .offer-list-section .breadcrumb {
    margin-bottom: 20px;
  }

  .offer-list-section .trending-now {
    grid-template-columns: 100%;
  }

  .listing-box-data {
    font-size: 14px;
  }

  .listing-box-data .price-offer-wrap .offer {
    font-size: 16px;
  }

  .offer-list-section .offer-list-nav {
    margin-bottom: 25px;
  }

  .offer-list-section .listing-box-title {
    font-size: 22px;
  }

  .offer-list-section .listing-box .listing-box-head .listing-select-wrap .common-select2-special {
    width: 100%;
    min-width: 316px;
    max-width: 100%;
  }

  .offer-list-section .listing-box .listing-box-head .listing-select-wrap {
    flex-direction: column;
  }

  .offer-detail-section .offer-main-slider .swiper-slide .slide-img-wrap {
    height: 280px;
  }

  .offer-detail-section .odl-data-wrap .listing-box {
    flex-direction: column;
  }

  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item,
  .offer-detail-section .patient-reviews .reviews-nav-tab .nav-item:first-child {
    width: calc(50% - 5px);
    flex: none;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card {
    padding: 7px;
    border-radius: 8px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card img,
  .offer-detail-section .offer-provider-wrap,
  .offer-detail-section .booking-info-card,
  .offer-detail-section .location-section {
    border-radius: 8px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card-name {
    font-size: 16px;
  }

  .offer-detail-section .offer-provider-wrap .offer-provider-slider .provider-card-title {
    font-size: 14px;
  }

  .offer-detail-section .sessions-box strong {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 5px;
  }

  .offer-detail-section .sessions-box {
    font-size: 14px;
  }
}

@media only screen and (max-width: 425px) {
  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox {
    width: calc(33.3% - 10px);
    padding: 4px 5px;
    border-radius: 6px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .label.ms-2 {
    margin-left: 0rem !important;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties {
    padding-left: 20px;
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox,
  .search-data-wrap .doctor-booking-wrapper .booking-info-card .slot-checkbox {
    padding: 4px 5px;
    border-radius: 6px;
  }

  .book-online {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .gallery-wrapper .gallery-scroll a {
    width: 100px;
    height: 100px;
    min-width: 100px;
    max-width: 100px;
  }

  .gallery-wrapper .gallery-scroll .gallery-image img {
    border-radius: 10px;
    width: 100px;
    height: 100px;
    min-width: 100px;
    max-width: 100px;
    object-fit: cover;
  }

  .uploaded-wrapper .modal-btn {
    width: 100px;
    height: 100px;
    min-width: 100px;
    max-width: 100px;
  }

  .uploaded-wrapper .modal-btn img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    max-width: 100px;
  }

  .uploaded-wrapper .play-icon img {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
  }

  .clinic-card {
    width: calc(100% - 0px);
  }
}

@media (max-width: 479px) {
  .doctor-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .doctor-card-grid .doctor-card__info {
    width: 100%;
  }

  .order-medicines-section .breadcrumb {
    margin-bottom: 20px;
  }

  .order-medicines-section .listing-box .trending-now {
    grid-template-columns: 100%;
  }

  .order-medicines-section .order-medicines-title .select-location-wrap {
    flex-wrap: wrap;
  }

  .product-list-section .breadcrumb {
    margin-bottom: 20px;
  }

  .product-list-section .trending-now {
    grid-template-columns: 100%;
  }

  .listing-box-data {
    font-size: 14px;
  }

  .listing-box-data .price-offer-wrap .offer {
    font-size: 16px;
  }

  .product-list-section .offer-list-nav {
    margin-bottom: 25px;
  }

  .product-list-section .listing-box-title {
    font-size: 22px;
  }

  .doctor-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .doctor-card-grid .doctor-card__info {
    width: 100%;
  }

  .product-detail-section .product-card {
    flex-direction: column;
  }

  .select-pharmacy-section .clinics-list-wrapper .clinic-card {
    width: 100%;
  }
}

@media only screen and (max-width: 380px) {
  .address-header h2 {
    font-size: 16px;
  }

  .address-title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 360px) {
  .hero .nav-pills .nav-link.active {
    font-size: 12px;
    line-height: 16px;
  }

  .hero .nav-pills .nav-link {
    font-size: 12px;
    line-height: 16px;
  }

  .cancelappointment .booking-info-card .bokingslot-list {
    grid-template-columns: repeat(2, 4fr);
  }

  .cancelappointment .booking-info-card {
    display: block;
  }

  .cancelappointment .booking-info-card .slot-checkbox {
    width: 100%;
  }

  .offer-list-section .listing-box .listing-box-head .listing-select-wrap .common-select2-special {
    min-width: 276px;
  }
}

@media only screen and (max-width: 359px) {
  .listing-country-language {
    display: none;
  }

  .header .header-nav .nav-menu .lang-dropdown {
    right: 25px;
  }

  .header .header-nav .nav-menu .country-dropdown {
    right: 108px;
  }
}

@media (min-device-width: 300px) and (max-device-width: 1024px) and (orientation: landscape) {
  .offer-detail-section .offer-detail-right .booking-info-card .booking-header .booking-date {
    font-size: 18px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .slot-checkbox span {
    font-size: 14px;
  }

  .offer-detail-section .offer-detail-right .booking-info-card .bokingslot-list p {
    font-size: 14px;
  }

  .bootstrap-select .dropdown-toggle {
    font-size: 16px;
  }

  .about-specialties .about-subtitle {
    font-size: 18px;
  }

  .about-tags-checkboxes .about-checkbox {
    font-size: 16px;
  }

  .about-tags-checkboxes .about-checkbox .custom-box {
    font-size: 14px;
  }

  .clinic-horizontal-card .clinic-name {
    font-size: 18px;
  }

  .clinic-horizontal-card .clinic-name {
    font-size: 16px;
  }

  .clinic-horizontal-card .clinic-rating {
    font-size: 16px;
  }

  .clinic-horizontal-card .clinic-rating .review-count {
    font-size: 16px;
  }

  .clinic-horizontal-card .meta-item {
    font-size: 16px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .label,
  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list a {
    font-size: 16px;
  }

  .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties li a {
    font-size: 14px;
  }

  .doctor-booking-wrapper .booking-info-card .booking-header .booking-date {
    font-size: 18px;
  }

  .doctor-booking-wrapper .booking-info-card .bokingslot-list p {
    font-size: 14px;
  }

  .doctor-booking-wrapper .booking-info-card .slot-checkbox span {
    font-size: 14px;
  }

  .reviews-list-header .reviews-flex .sorting-wrap p {
    font-size: 16px;
  }

  .review-author {
    font-size: 16px;
  }

  .review-date {
    font-size: 14px;
  }

  .review-body {
    font-size: 14px;
  }

  .review-footer {
    font-size: 14px;
  }

  .about-clinic-section .about-title {
    font-size: 18px;
  }

  .about-clinic-section .about-location {
    font-size: 14px;
  }

  .about-clinic-section .about-location span {
    font-size: 14px;
  }

  .search-data-wrap .title-with-link .link {
    font-size: 16px;
  }

  .filter-static-box span {
    font-size: 16px;
  }

  .clinic-card .clinic-info .clinic-meta .meta-item {
    font-size: 16px;
  }

  .clinic-card .clinic-info .clinic-name {
    font-size: 16px;
  }

  .clinics-listing-main .loadmore .border-btn {
    font-size: 16px;
  }

  .clinics-listing-header h1 {
    font-size: 24px;
  }

  .clinics-listing-header .clinics-count {
    font-size: 16px;
  }
}

/* =================================== Common Media Query code over here ========================================================================================= */

/* RTL CSS */
html[dir="rtl"] .header .header-nav .nav-menu .nav-list {
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .header .header-nav .nav-menu .lang-dropdown .lang-dropdown__menu,
html[dir="rtl"] .header .header-nav .nav-menu .country-dropdown__menu {
  left: 0;
  right: auto;
}

html[dir="rtl"] .header .header-nav.menu-open .nav-menu {
  left: auto;
  right: 0;
}

html[dir="rtl"] .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link {
  text-align: right;
}

html[dir="rtl"] .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu .dropdown-item-link img {
  margin-left: 6px;
  margin-right: 0;
}

html[dir="rtl"] .header .header-nav .nav-menu .topbar-right .notification-icon .badge {
  right: auto;
  left: 0;
}

html[dir="rtl"] .scroll-top-btn {
  left: 60px;
  right: auto;
}

html[dir="rtl"] .whatsapp-btn {
  left: 60px;
  right: auto;
}

html[dir="rtl"] .hero {
  background: linear-gradient(80deg,
      rgba(83, 39, 169, 0) 31.11%,
      rgba(83, 39, 169, 0.1137) 41.3%,
      #5327a9 62.74%,
      #5327a9 100%),
    url(../images/hero-section-rtl.webp);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

html[dir="rtl"] .hero .heading-top-bottom .hero__title,
html[dir="rtl"] .hero .heading-top-bottom .hero__subtitle {
  text-align: right;
}

html[dir="rtl"] .hero .hero__search-card {
  border-radius: 10px 0px 10px 10px;
}

html[dir="rtl"] .select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
  text-align: right;
}

html[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: auto;
  left: 1px;
}

html[dir="rtl"] .select2-results__option {
  text-align: right;
}

html[dir="rtl"] .flexible-subscription .main-inner-flexible-subscription {
  background-position: left center !important;
}

html[dir="rtl"] .title-with-link .ms-auto {
  margin-left: 0 !important;
  margin-right: auto;
}

html[dir="rtl"] .medical-question .medical-questions-start {
  padding: 8px 40px 8px 8px;
}

html[dir="rtl"] .featured-doctors .featured-doctors-swiper .specialty-img .rating-wrap,
html[dir="rtl"] .choose-from-offers .choose-from-offers-swiper .specialty-img .offer-label {
  right: 10px;
  left: auto;
}

html[dir="rtl"] .featured-doctors .featured-doctors-swiper .specialty-card .link img,
html[dir="rtl"] .choose-from-offers .choose-from-offers-swiper .specialty-card .link img,
html[dir="rtl"] .doctor-doorstep .book-now-btn img {
  transform: rotate(180deg);
}

html[dir="rtl"] .breadcrumb-item+.breadcrumb-item {
  padding-right: .5rem;
  padding-left: 0;
}

html[dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
  float: right;
  padding-left: .5rem;
  padding-right: 0;
}

html[dir="rtl"] .our-accordion-process .accordion-header .accordion-button {
  text-align: right;
}

html[dir="rtl"] .common-purple-box .form-group .document-wrapper .btn-download.ms-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}

html[dir="rtl"] .common-purple-box .error-message .me-1 {
  margin-left: .25rem !important;
  margin-right: 0 !important;
}

html[dir="rtl"] .reset-password-form .toggle-password {
  left: 16px;
  right: auto;
}

html[dir="rtl"] .checkout-wrap .checkout-inner .checkout-left .profile-card-wrapper button {
  left: 14px;
  right: auto;
}

html[dir="rtl"] .common-purple-box .toggle-radio-box .form-check-label.ms-2 {
  margin-right: .5rem !important;
  margin-left: auto !important;
}

html[dir="rtl"] .tab-content-wrap,
html[dir="rtl"] .explore-now.order-medicines-section .listing-box {
  border-radius: 10px 0 10px 10px;
}

html[dir="rtl"] .bootstrap-select .dropdown-toggle .filter-option-inner-inner,
html[dir="rtl"] .bootstrap-select .dropdown-menu li a,
html[dir="rtl"] .rateyourexperience-cls .inner-rate-exerience .heading-textarea-main {
  text-align: right;
}

html[dir="rtl"] .doctor-booking-wrapper .profile-card-wrapper .profile-card .profile-meta .subspecialty-list .subspecialties {
  padding-right: 18px;
  padding-left: 0;
}

html[dir="rtl"] .cancelappointment .booking-info-card .booking-header .next-prev-slot .prev-date-btn,
html[dir="rtl"] .doctor-booking-wrapper .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
  transform: rotate(180deg);
}

html[dir="rtl"] .sort-by-arrow {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .common-sorting-cls .custom-dropdown-menu li .dropdown-item {
  padding: 10px 35px 10px 14px;
}

html[dir="rtl"] .form-check .form-check-input {
  margin-left: 0;
  margin-right: -1.5em;
}

html[dir="rtl"] .common-purple-box .form-check .form-check-input {
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .main-disease-condition .main-typedisease-condition span {
  transform: rotate(180deg);
}

html[dir="rtl"] .profile-card-wrapper .profile-avatar {
  margin-left: 15px;
  margin-right: 0;
}

html[dir="rtl"] .lb-data .lb-close {
  left: 14%;
  right: auto;
}

html[dir="rtl"] .video-modal .video-wrapper-modal .video-content {
  text-align: right;
}

html[dir="rtl"] .doctor-detail-booking .doctor-detail-claim {
  background-position: left center;
}

html[dir="rtl"] .accordion-button::after {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .faq-item .accordion-button {
  text-align: right;
}

html[dir="rtl"] ul.terms-text {
  padding-right: 25px;
  padding-left: 0;
}

html[dir="rtl"] ul.terms-text li:before {
  right: -15px;
  left: auto;
}

html[dir="rtl"] .explore-now.order-medicines-section .accordion .faq-item .accordion-button .hospital-img {
  margin-left: 14px;
  margin-right: 0;
}

html[dir="rtl"] .explore-now.order-medicines-section .accordion .faq-item .accordion-button>div.me-3 {
  margin-left: 1rem !important;
  margin-right: 0 !important;
}

html[dir="rtl"] .explore-now.order-medicines-section .accordion .faq-item .accordion-body li .me-2 {
  margin-left: .5rem !important;
  margin-right: 0 !important;
}

html[dir="rtl"] .common-purple-box .input-group button {
  left: 0;
  right: auto;
}

html[dir="rtl"] .medical-library-inner .inner-medical-listing-part ul {
  padding-right: 28px;
  padding-left: 0;
}

html[dir="rtl"] .myorder-account .profile-avatar {
  margin: 0;
}

html[dir="rtl"] .myorder-account .profile-info {
  padding-left: 20px;
  padding-right: 0;
}

html[dir="rtl"] .myorder-account .order-right-side {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .visitor-login-wrap .my-cards-page.visitor-login-inner .visitor-login-right form .payment-card-item .btn-secondary {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .myorder-account .order-lefttoright-side-details {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .address-form input {
  text-align: right;
}

html[dir="rtl"] .calendar-icon {
  left: 16px;
  right: auto;
}

html[dir="rtl"] .listing-box-data {
  text-align: right;
}

html[dir="rtl"] .offer-list-section .offer-list-card .discount-offer,
html[dir="rtl"] .offer-list-section .trending-now-card .discount-offer {
  right: 18px;
  left: auto;
}

html[dir="rtl"] .offer-list-section .offer-list-card .doctor-details {
  left: auto;
  right: 10px;
}

html[dir="rtl"] .form-check {
  padding-right: 1.5em;
  padding-left: 0;
}

html[dir="rtl"] .new-form-check-input-cls .form-check-label,
html[dir="rtl"] .offer-detail-section .odl-box-data {
  text-align: right;
}

html[dir="rtl"] .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button.offer-provider-prev {
  transform: none;
}

html[dir="rtl"] .offer-detail-section .offer-provider-wrap .offer-provider-header .offer-provider-nav button.offer-provider-next {
  transform: rotate(180deg);
}

html[dir="rtl"] .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .next-date-btn,
html[dir="rtl"] .offer-detail-section .offer-detail-right .booking-info-card .booking-header .next-prev-slot .prev-date-btn {
  transform: rotate(180deg);
}

html[dir="rtl"] .offer-detail-section .patient-reviews .rating-tab .rating-head {
  padding-left: 65px;
  padding-right: 0;
}

html[dir="rtl"] .offer-detail-section .patient-reviews .rating-tab .rating-head .user-rating {
  right: auto;
  left: 0;
}

html[dir="rtl"] .offer-detail-section .description-box .des-list li {
  padding-right: 25px;
  padding-left: 0;
}

html[dir="rtl"] .offer-detail-section .description-box .des-list li::before {
  right: 10px;
  left: auto;
}

html[dir="rtl"] .preview-item .close-btn {
  left: 4px;
  right: auto;
}

html[dir="rtl"] .order-medicines-section .search-product-wrap .search-product-img {
  padding-right: 14px;
  border-right: 1px solid rgba(102, 102, 102, 0.2);
  padding-left: 0;
  border-left: none;
}

html[dir="rtl"] .order-medicines-section .order-medicines-title .select-location-wrap span {
  justify-content: flex-end;
}

html[dir="rtl"] .common-purple-box .form-group .form-control.date-picker {
  text-align: right;
}

html[dir="rtl"] .filter-tag .close-btn {
  margin-right: 8px;
  margin-left: 0;
}

html[dir="rtl"] .product-card__qty-wrap {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .main-chossing-plan .gradient-action-box>.ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

@media only screen and (max-width: 1199.98px) {
  html[dir="rtl"] .mobile-filter-btn.fixed {
    right: 12px;
    left: auto;
  }
}

@media screen and (max-width: 1199px) {
  html[dir="rtl"] .scroll-top-btn {
    left: 40px;
  }

  html[dir="rtl"] .whatsapp-btn {
    left: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  html[dir="rtl"] .header .header-nav .nav-menu {
    left: auto;
    right: -100%;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .lang-dropdown {
    left: 55px;
    right: auto;
    margin-right: 16px !important;
    margin-left: 0 !important;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .country-dropdown {
    left: 265px;
    right: auto;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .nav-list li a {
    padding-left: 0;
    padding-right: 16px;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .login-btn {
    margin-right: 16px;
    margin-left: 0;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper {
    left: 60px;
    right: auto;
  }

  html[dir="rtl"] .header .header-nav.has-login .nav-menu .lang-dropdown {
    left: 135px;
  }

  html[dir="rtl"] .header .header-nav.has-login .nav-menu .country-dropdown {
    left: 335px;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .topbar-right .profile-dropdown-wrapper .dropdown-menu {
    right: -250px;
  }

  html[dir="rtl"] .header .header-nav .nav-menu .topbar-right {
    margin-right: 16px;
    margin-left: 0;
  }

  html[dir="rtl"] .medical-question .medical-questions-start {
    padding: 20px;
  }
}

@media only screen and (max-width: 991px) {
  html[dir="rtl"] .lb-data .lb-close {
    left: 3%;
  }

  html[dir="rtl"] .video-modal .video-wrapper-modal .video-content .btn-close {
    left: 15px;
    right: auto;
  }

  html[dir="rtl"] .myorder-account .order-right-side {
    margin-right: inherit;
  }
}

@media only screen and (max-width: 767px) {
  html[dir="rtl"] .header .header-nav .nav-menu .country-dropdown {
    left: 105px;
  }

  html[dir="rtl"] .header .header-nav.has-login .nav-menu .lang-dropdown {
    left: 130px;
  }

  html[dir="rtl"] .header .header-nav.has-login .nav-menu .country-dropdown {
    left: 180px;
  }

  html[dir="rtl"] .scroll-top-btn {
    left: 20px;
  }

  html[dir="rtl"] .whatsapp-btn {
    left: 20px;
  }

  html[dir="rtl"] .hero {
    background-position: center top;
  }

  html[dir="rtl"] .mobile-view.doctor-detail-claim {
    background-position: left center;
  }

  html[dir="rtl"] .doctor-card-grid .doctor-card__img {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (max-width: 575px) {
  html[dir="rtl"] .filter-tag .close-btn {
    margin-right: 4px;
  }
}

.doctor-booking-wrapper .booking-info-card .slot-available {
  border-color: #6141d3;
  color: #6141d3;
  background: transparent;
}

.doctor-booking-wrapper .booking-info-card .slot-checkbox.slot-booking {
  background: #6141D3 !important;
  color: #fff !important;
  border-color: #6141D3 !important;
}


.ntf-container *,
.ntf-container *::before,
.ntf-container *::after {
  box-sizing: border-box
}

.ntf-page {
  background: #F5F5F5;
  padding: 20px;
  border-radius: 10px;
}

.ntf-main-title {
  margin: 40px 0;
}

.notification-border-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 20px 0px;
}

.notification-border-heading:first-child {
  margin-top: 0;
}

.border-line-common {
  margin-bottom: 0px;
  border-color: rgba(34, 34, 34, 0.2);
  border-style: dashed;
}

.ntf-section-label {
  font-weight: 500;
  font-size: 16px;
  color: rgba(34, 34, 34, 0.4);
  line-height: 20px;
}

.ntf-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ntf-card {
  background: #ffffff;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  min-height: 64px;
  transition: box-shadow .18s ease, transform .12s ease, border-color .18s ease
}

.calendar-for-all-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(102, 102, 102, 1);
  opacity: 0.4;
}

.ntf-card--highlighted {
  border-color: #6141D3;
  background-image: linear-gradient(0deg, rgba(97, 65, 211, 0.03) 0%, rgba(97, 65, 211, 0.03) 100%) !important;
  background-origin: padding-box, border-box !important;
  background-clip: padding-box, border-box !important;
  background-repeat: no-repeat !important;
}

.ntf-content {
  flex: 1;
  padding-right: 12px
}

.ntf-title {
  font-size: 20px;
  font-weight: 500;
  color: rgba(34, 34, 34, 1);
  line-height: 24px;
}

.ntf-body {
  margin: 14px 0px 10px 0px;
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  line-height: 20px;
  font-weight: 400;
}

.ntf-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 120px
}

.ntf-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8d8d98;
  font-size: 13px
}

.ntf-time svg {
  width: 18px;
  height: 18px;
  opacity: 0.85
}

.ntf-viewmore-wrap {
  text-align: center;
  margin-top: 20px
}

.ntf-viewmore {
  display: inline-block;
  padding: 11px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: rgba(248, 44, 81, 1);
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid rgba(248, 44, 81, 1);
  font-weight: 500;
  line-height: 18px;
}

.ntf-datechip {
  display: block;
  color: #8d8d98;
  font-size: 14px;
  padding: 10px 6px
}

@media (max-width:900px) {
  .ntf-meta {
    min-width: 100px
  }

  .ntf-main-title {
    margin: 0 0 20px;
  }
}

@media (max-width:640px) {

  .ntf-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px
  }

  .ntf-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0
  }

  .ntf-title {
    font-size: 15px
  }

  .ntf-body,
  .calendar-for-all-txt {
    font-size: 13px
  }
}

/* 22 Aug related CSS start here */
.receipt-uploaded {
  margin-top: 24px;
}

.receipt-uploaded h6 {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 18px;
  color: #222222;
  line-height: 20px;
}

.receipt-uploaded-pdf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #666666;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.receipt-uploaded-pdf:hover {
  border-color: #6141d3;
}

.pdf-save {
  display: flex;
  align-items: center;
  gap: 21px;
}

.pdf-save img {
  width: 24px;
  height: 24px;
}

.pdf-save span {
  color: #222222;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.pdf-status {
  font-size: 13px;
  color: #666;
  margin-left: auto;
  margin-right: 12px;
}

.closing-action .close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #222;
  cursor: pointer;
}

.closing-action .close-btn:hover {
  color: #e63946;
}

.close-btn-pdf {
  filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(4863%) hue-rotate(343deg) brightness(85%) contrast(73%);
}

.subspecialties .extra {
  display: none;
}

.subspecialties .extra.show {
  display: inline-block;
}

.new-profile-meta-cls .profile-avatar {
  width: 140px;
  height: 180px !important;
}

.follow-btn-doctor .follow-btn {
  margin-top: 14px;
  border: 1px solid #6141D3;
  background: #6141D3;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 20px;
}

.follow-btn[disabled] {
  background: #6141D399;
  border: 1px solid #6141D3;
}


.dataTables_wrapper .dataTables_scrollBody .dataTable,
.dataTables_wrapper .dataTables_scrollHead .dataTables_scrollHeadInner,
.dataTables_wrapper .dataTables_scrollHead .dataTables_scrollHeadInner .dataTable {
  width: 100% !important;
}

.dataTables_wrapper table.dataTable>thead>tr>th {
  padding: 0 10px;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody,
.dataTables_wrapper table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td,
.dataTables_wrapper .dataTable tbody,
.dataTables_wrapper .dataTable thead {
  border-color: transparent;
}

.dataTables_wrapper .dataTables_paginate {
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  position: relative;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #ffffff !important;
  padding: 11px 14px;
  font-size: 16px;
  line-height: 110%;
  font-weight: 500;
  color: #f82c51 !important;
  border: 1.5px solid #f82c51;
  border-radius: 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #666 !important;
  border: 1.5px solid #fff;
}

.dataTables_wrapper .dataTables_info {
  font-size: 16px;
  line-height: 110%;
  font-weight: 500;
  color: #222 !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-container {
  max-width: 100%;
  background: #F5F5F5;
  padding: 20px;
  border-radius: 10px;
}

.table-container .title-row {
  margin-bottom: 20px;
}

.table-container .title-row a {
  color: #f82c51;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 110.00000000000001%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.table-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table-container table th {
  color: #222;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500 !important;
  line-height: 120%;
  vertical-align: middle;
  padding: 11px 14px;
  text-align: left;
  white-space: nowrap;
}

.table-container table tbody tr td {
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
  vertical-align: middle;
  background-color: #fff;
  padding: 10px 14px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.table-container table tbody tr td:first-child {
  border-radius: 20px 0px 0px 20px;
  border-left: 1px solid transparent;
}

.table-container table tbody tr td:last-child {
  border-radius: 0px 20px 20px 0px;
  border-right: 1px solid transparent;
}

.table-container table tbody tr:hover td {
  border-color: rgba(102, 102, 102, 0.2) !important;
}

.table-container table tbody tr td .status-btn {
  border: 1px solid #6141D399;
  outline: none;
  box-shadow: inherit;
  display: inline-block;
  min-width: 138px !important;
  font-size: 18px;
  border-radius: 10px !important;
  line-height: 18px;
  padding: 10px 16px;
  background: #6141D399 !important;
  font-weight: 500;
  min-width: 115px;
  color: #fff;
}

.table-container table tbody tr td .cancelled-btn {
  background-color: #fa834b;
}

.table-container .status-confirmed {
  background-color: #f6e655;
  border-radius: 50px;
  color: #222;
  padding: 9px 10px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.table-container .status-confirmed::before {
  content: "";
  position: absolute;
  background-image: url(../../images/down-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 5px;
  right: 6px;
}

.table-main-tabs {
  display: flex;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  margin-bottom: 15px;
  overflow: auto;
}

.table-main-tabs .table-tab {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 110%;
  color: #666666;
  font-weight: 500;
}

.table-main-tabs .table-tab.active {
  color: #222;
  border-bottom: 1px solid #f82c51;
}

.table-container table tbody tr td.edits-link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.table-container table tbody tr td.edits-link a {
  height: 20px;
  width: 20px;
  min-width: 20px;
}

.load-more-btn .load-more-btn-add {
  border: 1.5px solid #F82C51;
  border-radius: 50px;
  padding: 9px 16px 9px 16px;
  background: transparent;
  font-weight: 500;
  font-size: 17px;
  color: #F82C51;
}

.load-more-btn {
  text-align: center;
  margin-top: 20px;
}


@media only screen and (max-width: 767px) {
  .table-container table tbody tr td .status-btn {
    min-width: 120px !important;
    font-size: 16px;
  }
}

/* 22 Aug related CSS over here */

.save-card-cls {
  padding: 24px 0;
}

.add-credit-card-form .add-credit-card-title:not(:last-child) {
  margin-bottom: 20px;
}

.add-credit-card-form .add-credit-card-title {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.add-credit-card-form .add-credit-card-title label {
  cursor: pointer;
}

.add-credit-card-form .add-credit-card-title+button {
  margin-top: 20px;
}

.country-index {
  z-index: 1056;
}

.country-modal .select2-selection__rendered {
  text-align: left;
}

.country-modal .common__select .select2-selection {
  box-shadow: none;
}

.profile-progress {
  width: 100%;
}

.profile-progress__bar {
  background-color: #66666633;
  border-radius: 20px;
  overflow: hidden;
  height: 24px;
  position: relative;
}

.profile-progress__fill {
  background-color: #F82C51;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
  white-space: nowrap;
  transition: width 0.4s ease;
}

.profile-progress__text {
  color: #fff;
}

/* 1 Sep Related css start here */
.custom-profile-banner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  border-radius: 20px;
  background: url("../images/doctor-details.jpg") no-repeat center center/cover;
  min-height: 185px;
}

.custom-profile-banner .custom-follow-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #6c3ef8;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.custom-profile-banner .custom-follow-btn:hover {
  background: #5022c9;
}

.custom-profile-banner .custom-profile-box {
  position: absolute;
  bottom: -40px;
  left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.custom-profile-banner .custom-profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  border: 4px solid #46d362;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.new-follow-profile-cover-cls {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.custom-profile-banner .custom-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.follow-unfollow {
  margin-top: 6px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 18px;
}

.follow-unfollow strong {
  font-weight: 400;
  color: #6141D3;
}

.custom-profile-banner .custom-status-badge {
  position: absolute;
  top: -30px;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #6c3ef8;
  white-space: nowrap;
  line-height: 13px;
  margin-left: 45px;
}

.doctor-detail-left-side {
  padding-left: 30px;
  margin-top: 54px;
}

.custom-profile-banner .custom-status-badge {
  position: absolute;
  top: -30px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #6c3ef8;
  white-space: nowrap;
  line-height: 13px;
  margin-left: 29px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.custom-profile-banner .custom-status-badge::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.custom-profile-bg {
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background: #fff;
}

.bootstrap-nav-tab-cls .nav-pills {
  padding-top: 20px;
  padding-bottom: 0px;
  margin-bottom: 0px !important;
  gap: 20px;
  border-bottom: 1px solid #6666661A;
}

.bootstrap-nav-tab-cls {
  width: 100%;
}

.bootstrap-nav-tab-cls .nav-item .nav-link {
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  padding-bottom: 5px;
  padding-left: 0px;
  padding-right: 0px;
  color: #222222;
}

.bootstrap-nav-tab-cls .nav-item .nav-link.active {
  background: transparent;
  color: #6141D3;
  border-bottom: 1px solid #6141D3;
}

@media (max-width: 1024px) {
  .bootstrap-nav-tab-cls .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .bootstrap-nav-tab-cls > .nav .nav-item .nav-link {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .doctor-detail-left-side {
    padding-left: 0px;
  }

  .custom-profile-banner .custom-profile-box {
    left: 34px;
  }

}


@media (max-width: 600px) {
  .custom-profile-banner {
    min-height: 180px;
  }

  .custom-profile-banner .custom-profile-pic {
    width: 70px;
    height: 70px;
  }

  .custom-profile-banner .custom-follow-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .custom-profile-banner .custom-status-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/* 1 Sep related css over here */

/* card */
.media-section-parent {
  margin-top: 20px;
  padding: 14px !important;
  background-color: #fff !important;
}

.media-card {
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .12s ease;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #66666666;
}

.media-card__thumb {
  width: 110px;
  min-width: 110px;
  height: 100px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__play {
  position: absolute;
  left: 50%;
  bottom: 50%;
  border: none;
  background-color: transparent;
  transform: translate(-50%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.media-card__badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  background: rgba(255, 255, 255, 1);
  color: #666666;
  padding: 4px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 500;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.media-card__desc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.media-card__desc-wrap .t-md {
  color: #222222;
  line-height: 18px;
  max-width: 738px;
  max-height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-card__desc-wrap .meta-date {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: rgba(34, 34, 34, .7);
}

.media-card__meta {
  margin-top: auto;
}

.media-card__meta .meta-left {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
}

.media-card__meta button {
  border: none;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  color: #666666;
}

/* load btn */
.media-section__load {
  display: inline-block;
  background: transparent;
  color: #6141D3;
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  border: none;
  padding: 0;
  margin: 0 auto;
}

.reel-modal .modal-dialog {
  max-width: 930px;
}

.reel-modal .modal-header {
  background: #f5f5f5;
  justify-content: space-between;
}

.reel-modal .modal-body {
  padding: 14px;
}

/* inner container */
.media-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Left: media area */
.media-modal__media {
  width: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 430px;
  border-radius: 10px;
  overflow: hidden;
}

/* .media-modal__media .video-card-wrap::after,
.media-modal__media .swiper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000033;
  inset: 0;
  z-index: 2;
} */

.media-modal__media .left-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative;
}

/* Video player */
.media-modal__media .video-card-wrap,
.media-modal__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-modal__media .videoplay-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 24px;
  width: 24px;
}

/* Swiper container styles */
.media-modal .swiper {
  width: 100%;
  height: 100%;
}

.media-modal .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.media-modal .swiper .swiper-button-next,
.media-modal .swiper .swiper-button-prev {
  position: absolute;
  top: auto;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.6);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}

.media-modal .swiper .swiper-button-next:after,
.media-modal .swiper .swiper-button-prev:after {
  font-size: 10px;
}

.media-modal .swiper .swiper-button-next {
  right: 10px;
}

.media-modal .swiper .swiper-button-prev {
  left: 10px;
}

.media-modal__counter {
  display: inline-block;
  position: absolute;
  z-index: 1;
  bottom: 10px;
  font-size: 12px;
  line-height: 13px;
  font-weight: 500;
  color: #666;
  background: #fff;
  padding: 5px 7px;
  border-radius: 60px;
}

/* Right: details area */
.media-modal__details {
  width: calc(100% - 340px);
  position: relative;
  padding-bottom: 70px;
}

.media-modal__details .media-card__desc-wrap .t-md {
  text-align: left;
  max-width: 446px;
}

.media-modal__details .comments .total-comments {
  text-align: left;
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 14px;
  margin-top: 4px;
}

.media-modal__details .comments .total-comments span {
  color: #6141D3;
}

.media-modal__details .comments .comment-item-wrapper {
  max-height: 280px;
  overflow: auto;
  padding-right: 4px;
}

.media-modal__details .comments {
  margin-top: 4px;
}

.media-modal__details .comment-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.media-modal__details .comment-item.reply {
  padding-left: 36px;
}

.media-modal__details .comment-item:not(:last-child) {
  margin-bottom: 14px;
}

.media-modal__details .comment-item > img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.media-modal__details .comment-item .c-body {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #222222;
  text-align: left;
}

.media-modal__details .comment-item .c-meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.media-modal__details .comment-item .c-reply {
  color: #6141D3;
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
  margin-top: 10px;
}

.media-modal__close {
  position: absolute;
  right: 16px;
  top: 10px;
  z-index: 10;
  border: none;
  background: transparent;
  font-size: 20px;
  color: #666;
}

/* Container */
.comment-box {
  display: flex;
  align-items: center;
  background: #6141D333;
  border-radius: 999px;
  padding: 5px;
  gap: 8px;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 20px;
}

/* Input field */
.comment-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 999px;
  min-width: 0;
  color: #222222;
  /* prevents overflow on mobile */
}

/* Button */
.comment-btn {
  background: #6141D3;
  /* red-pink */
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.comment-btn:hover {
  background: #6141D3;
  /* darker red */
}

.parent-checkbox .inner-checkboxes {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  width: max-content;
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .media-modal {
    flex-direction: column;
  }

  .media-modal__media,
  .media-modal__details {
    width: 100%;
  }
}

@media (max-width: 767px) {

  .media-card,
  .media-card__desc-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .media-modal__media {
    aspect-ratio: 1;
    height: auto;
    min-height: unset;
  }

  .media-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .media-card__meta .meta-left {
    padding: 0;
  }

  .comment-input {
    font-size: 13px;
  }

  .media-modal__details .comment-item .c-meta{
    flex-wrap: wrap;
  }

  .media-modal__details .comment-item .c-meta .c-meta-text{
    width: 100%;
  }
}


.hero.bottom-search-section {
  background: transparent !important;
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-top: 0;
}

.hero.home-hero {
  padding-bottom: 278px;
}

.hero-section .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
}

.hero-section .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 12px;
  height: 12px;
}

.hero-section .swiper-pagination .swiper-pagination-bullet-active {
  background: #6141d3;
}

@media (max-width: 1024px) {
  .hero.home-hero {
    padding-bottom: 319px;
  }
}

@media (max-width: 767px) {
  .hero.home-hero {
    padding-bottom: 600px;
  }
}

.truncate-collapsed {
  overflow: hidden;
  transition: max-height 280ms ease;
  max-height: 36px;
}

.view-more-btn {
  display: inline-block;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: #6141D3;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
  text-align: left;
}

.view-more-btn[hidden="true"] {
  display: none !important;
}

.view-more-btn[hidden="false"] {
  display: inline-block !important;
}

@media (max-width: 480px) {
  .truncate-collapsed {
    max-height: 96px;
  }
}

.common-purple-box .input-group.promo-input button {
  left: 70px;
  text-align: left;
}

.common-purple-box .input-group.promo-input button.promo-submit {
  left: auto;
  right: 7px;
  background: #6141D31A !important;
  border-radius: 10px !important;
  min-height: 42px;
  font-size: 17px;
  font-weight: 500;
}

.reviews-list-header .reviews-flex .sorting-wrap .review-select .common__select .select2-selection {
  box-shadow: none;
}

.reviews-list-header .reviews-flex .sorting-wrap .review-select .common__select .select2-selection__rendered{
  padding-right: 40px;
}

.listing-select-wrap .common-sorting-cls .custom-dropdown-toggle,
.listing-select-wrap .common-price-cls .custom-dropdown-toggle {
  background-color: #ffffff !important;
}

.location-modal .separator {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.location-modal .separator::before,
.location-modal .separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000000;
  margin: 0 10px;
}

.location-modal .address-title {
  color: #222222;
}

.location-modal .custom-radio input:checked+.radio-mark {
  border-color: #6141D3;
  background: #6141D3;
}

.location-modal .custom-radio {
  display: flex;
  align-items: center;
  gap: 6px;
}

.add-address-modal .address-list {
  padding: 0;
}

.add-address-modal .address-detail-form-main .form-group {
  gap: 20px 10px;
}

.add-address-modal .address-form {
  text-align: left;
}

.add-address-modal .address-form input,
.add-address-modal .common__select .select2-selection  {
  background: rgba(97, 65, 211, .1);
}

.doctor-booking-wrapper.doctor-detail-booking{
  display: block;
}

@media screen and (max-width: 1279px) {
  .doctor-search-detail {
    flex-wrap: wrap;
  }

  .doctordetail-data-wrap .profile-card-wrapper,
  .doctordetail-data-wrap .doctor-booking-wrapper {
    width: 100%;
  }
  .doctor-booking-wrapper.doctor-detail-booking {
    gap: 0 20px;
  }  
}

.reel-modal .modal-header .total-comments {
  text-align: left;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #222222;
}

.reel-modal .modal-header .total-comments span {
  color: #6141D3;
}

/* New CSS After Design Updated start here */
.doctors-slider-section { padding-top: 60px; padding-bottom: 30px; }

.doctor-card {
  width: 120px; 
  text-align: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.doctor-img {
  width: 100px;
  height: 100px;
  border: 5px solid #63C00B;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}

.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doctor-card h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #222;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.Heading-follow-btn-cls {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1200px) {
  .doctor-card { width: 100px; }
  .doctor-img { width: 86px; height: 86px; border-width: 4px; }
}
@media (max-width: 768px) {
  .doctor-card { width: 90px; }
  .doctor-img { width: 72px; height: 72px; border-width: 3px; }
}
@media (max-width: 480px) {
  .doctor-card { width: 76px; }
  .doctor-img { width: 60px; height: 60px; border-width: 3px; }
}

.doctors-swiper .swiper-scrollbar { height: 6px; background: transparent; margin-top: 14px; }
.doctors-swiper .swiper-scrollbar .swiper-scrollbar-drag { background: rgba(0,0,0,0.2); border-radius: 4px; }

.Heading-follow-btn-cls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.Heading-follow-btn-cls h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #222;
}

.follow-unfollow .btn-follow-unfollow {
    border: 1px solid #6141D3;
    background: #6141D3;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 20px;
    margin-top: 0px;
}

.Heading-follow-btn-cls .btn-follow-unfollow {
    border: 1px solid #6141D3;
    background: #6141D3;
    border-radius: 10px;
    padding: 4px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 20px;
    margin-top: 0px;
}

.border-parent-clsused .profile-avatar {
    border: 5px solid #63C00B;
    width: 115px;
    height: 130px;
}
/* New CSS After Design Updated over here */