@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter Tight", sans-serif;
  background: url("../img/biosite-bg.png") no-repeat center center/cover var(--bs-d914);
  height: 100vh;
  overflow-y: hidden;

}

:root {
  --bs-primary-gradient: linear-gradient(90deg, #ff6201 0%, #3a71de 100%);
  --bs-primary-gradient-135: linear-gradient(135deg, #ff6302 0%, #3a71de 100%);
  --bs-dark-gradient: linear-gradient(135deg, #000000 0%, #585858 100%);
  --bs-black: #000000;
  --bs-black-01: rgb(0, 0, 0, 0.1);
  --bs-black-02: rgb(0, 0, 0, 0.2);
  --bs-black-03: rgb(0, 0, 0, 0.3);
  --bs-black-05: rgb(0, 0, 0, 0.5);
  --bs-black-06: rgb(0, 0, 0, 0.6);
  --bs-black-07: rgb(0, 0, 0, 0.7);
  --bs-dark: #171717;
  --bs-dark-03: rgb(23, 23, 23, 0.3);
  --bs-white: #ffffff;
  --bs-d914: rgb(217, 217, 217, 0.14);
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

a {
  color: var(--bs-black);
  text-decoration: none;
}

.text-xs {
  font-size: var(--fs-12) !important;
}

.text-sm {
  font-size: var(--fs-13) !important;
}

.text-md {
  font-size: var(--fs-14) !important;
}

.text-lg {
  font-size: var(--fs-15) !important;
}

.text-xl {
  font-size: var(--fs-16) !important;
}

.message-content-section,
#message-content-section {
  margin-top: 5px;
  display: table;
}

.bs-success-text {
  background: var(--bs-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 18px;
}

.bs-warning-text {
  color: #FAC600;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 18px;
}

.bs-danger-text {
  color: #e30000;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 18px;
}

/* Biosite Navigate */
.bio-navigate {
  position: fixed;
  bottom: 25px;
  background: var(--bs-white);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
  box-shadow: rgba(255, 98, 1, 0.1) 0px 25px 20px -20px;
}

.bio-navigate-container .bio-navigate-btn {
  text-decoration: none;
  all: unset;
  background-color: rgb(217, 217, 217, 0.16);
  padding: 12px;
  border-radius: 136px;
  display: flex;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio-navigate-container.active {
  display: flex;
  /* padding: 4px 20px 4px 4px; */
  padding: 4px;
  background: var(--bs-black);
  align-items: center;
  gap: 20px;
  border-radius: 136px;
  transition: all 0.3s ease;
}

.bio-navigate-container.active .bio-navigate-btn {
  text-decoration: none;
  all: unset;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 136px;
  text-transform: capitalize;
}

.bio-navigate-container:hover .bio-navigate-btn {
  background: var(--bs-black);
  color: var(--bs-white);
}

.bio-navigate-container:hover .bio-navigate-btn svg {
  fill: var(--bs-white);
}

.bio-navigate-container .bio-navigate-btn svg {
  width: 24px;
  height: 24px;
  fill: rgb(0, 0, 0, 0.2);
}

.bio-navigate-container.active .bio-navigate-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--bs-white);
}

.bio-navigate-container .bio-navigate-btn span {
  display: none;
}

.bio-navigate-container.active .bio-navigate-btn span {
  display: initial;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
}

.bio-navigate-list {
  display: none;
  padding: 0;
  margin: 0;
}

.bio-navigate-container.active .bio-navigate-list {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-bottom: 3px;
  margin-right: 6px;
}

/* Biosite Navigate */
button span {
  text-wrap-mode: nowrap;
}

.biosite-share-btn {
  all: unset;
  background: var(--bs-black);
  padding: 6px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biosite-share-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--bs-white);
}

.bs-primary-gradient-btn-sm {
  all: unset;
  padding: 5px 15px !important;
  background: var(--bs-primary-gradient);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-12);
  color: var(--bs-white);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 7px;
  text-transform: capitalize;
}

.bs-primary-gradient-btn,
.buttons-csv {
  all: unset;
  padding: 8px 24px !important;
  background: var(--bs-primary-gradient);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-14);
  color: var(--bs-white);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-transform: capitalize;
}

.store-product-btn {
  border: none;
}

.store-product-btn:active {
  border: none;
}

/* Loaders */

.bs-loader {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  padding: 0.01rem;
  background: conic-gradient(#fff 10%, #FF6201) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - 4.5px), #000 calc(100% - 4px));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: s4 1.25s infinite steps(10);
  text-align: center;
}

.bs-overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.bs-overlay::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0px;
  background: conic-gradient(#fff 10%, #FF6201) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - 4.5px), #000 calc(100% - 4px));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: s4 1.25s infinite steps(10);
  z-index: 10000;
}

@keyframes s4 {
  to {
    transform: rotate(1turn)
  }
}

/* Loaders */

.bs-dark-gradient-btn {
  all: unset;
  padding: 8px 24px !important;
  background: linear-gradient(145deg, #585858, #000000);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-14);
  color: var(--bs-white);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-transform: capitalize;
}

.bs-light-md-btn {
  all: unset;
  padding: 8px 24px;
  font-size: var(--fs-14);
  background: rgb(0, 0, 0, 0.02);
  color: var(--bs-black);
  border-radius: 10px;
  font-weight: var(--fw-medium);
  text-transform: capitalize;
}

.bs-light-btn {
  width: 60px;
  height: 32px;
  padding: auto 14px;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  background-color: rgb(0, 0, 0, 0.02);
  border-radius: 10px;
  border: none;
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  align-content: center;
}

.bs-light-btn:hover {
  background: var(--bs-black);
  color: var(--bs-white);
}

.bs-light-btn:hover svg {
  stroke: var(--bs-white);
}

.bs-white-btn {
  all: unset;
  color: var(--bs-black);
  padding: 8px 16px;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  line-height: 18px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 10px;
}

.preview-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--bs-black);
}

.preview-btn {
  display: none !important;
}

.bs-dark-btn {
  all: unset;
  color: var(--bs-white);
  font-size: var(--fs-14);
  padding: 6px 18px;
  border: 2px solid var(--bs-dark);
  border-radius: 10px;
  font-weight: var(--fw-medium);
  background: var(--bs-black);
  text-wrap-mode: nowrap;
}

.bs-white-btn-xs {
  all: unset;
  font-size: 10px;
  padding: 2px 5px;
  background: linear-gradient(90deg, #ff6201, #3a71de);
  border-radius: 6px;
  color: var(--bs-white);
}

.bs-white-btn-sm {
  all: unset;
  font-size: 12px;
  padding: 3px 9px;
  background: linear-gradient(90deg, #ff6201, #3a71de);
  border-radius: 4px;
  color: var(--bs-white);
}

.bs-primary-normal-outline-btn {
  all: unset;
  color: var(--bs-dark);
  font-size: var(--fs-14);
  padding: 6px 18px;
  border: 2px solid var(--bs-dark);
  border-radius: 10px;
  font-weight: var(--fw-medium);
  background: var(--bs-white);
  text-wrap-mode: nowrap;
}

.bs-primary-outline-btn {
  all: unset;
  position: relative;
  border-radius: 13px;
  /* border removed to fix gap issue */
  padding: 12px;
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: var(--bs-black);
  background: transparent;
  line-height: 14px;
  text-wrap-style: nowrap;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease;
}

.bs-primary-outline-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bs-white);
  border: 2px solid var(--bs-dark);
  /* Border moved here */
  border-radius: inherit;
  z-index: -1;
  box-sizing: content-box;
  /* Ensure border is outside the width/height */
}

.bs-primary-outline-btn::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: var(--bs-primary-gradient);
  border-radius: 13px;
  z-index: -2;
  transition: all 0.3s ease;
}

.bs-primary-outline-btn:active {
  transform: translate(3px, 3px);
}

.bs-primary-outline-btn:active::after {
  top: 4px;
  left: 4px;
}

.wide-container {
  padding: 0 13.50%;
}

.biosite-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 9;
}

.brand-logo {
  text-decoration: none;
}

.brand-logo img {
  width: 100px ;
  height: auto;
  object-fit: cover;
}

.biosite-navbar-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.biosite-navbar-items li button,
.biosite-navbar-items li a {
  position: relative !important;
  all: unset;
  cursor: pointer;
  color: var(--bs-black);
}

.biosite-navbar-items .bs-dropdown-menu li a,
.biosite-navbar-items .bs-dropdown-menu li button {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  text-wrap-mode: nowrap;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}

.shop-cart-count {
  position: absolute;
  top: -4px;
  right: -7px;
  background: #ff6201 0%;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px !important;
  font-weight: var(--fw-medium);
  line-height: normal;
}

.notification-btn svg {
  width: 24px;
  height: 24px;
}

.user-profile {
  position: relative;
}

.user-dp {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.user-dp img {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.bs-dropdown {
  position: relative;
}

.profile-menu,
.bs-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  list-style: none;
  right: 0;
  padding: 6px;
  margin: 0;
  margin-top: 6px;
  background-color: var(--bs-white);
  border-radius: 6px;
  z-index: 99;
}

.bs-dropdown-menu {
  top: 25px;
}

.profile-menu.show,
.bs-dropdown-menu.show {
  display: initial;
  border-radius: 15px;
  padding: 8px;
  border: 0.025rem solid var(--bs-black-01);
  background: var(--bs-white);
  z-index: 99;
}

.dropdown-item a,
.dropdown-item button {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  text-wrap-mode: nowrap;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}

.dropdown-item a:hover,
.dropdown-item button:hover {
  background: rgb(0, 0, 0, 0.025);
}

.dropdown-item a svg,
.dropdown-item button svg {
  width: 16px;
  height: 16px;
}

.dropdown-item a span,
.dropdown-item button span {
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--bs-dark);
  text-wrap-mode: nowrap;
}

.main-content {
  background-color: var(--bs-white);
  height: calc(100vh - 76px) !important;
  /* padding: 20px; */
  border-radius: 24px 24px 0 0;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 25px; */
  padding: 20px;
  padding-bottom: 0;
  flex-wrap: wrap;
}

.page-title-container {
  display: flex;
}

.page-title {
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  text-transform: capitalize;
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-title a {
  text-decoration: none;
  color: var(--bs-black);
  margin-bottom: 4px;
}

.page-title a svg {
  width: 24px;
  height: 24px;
}

.page-sub-title {
  font-size: var(--fs-14);
  color: var(--bs-black-06);
  font-weight: var(--fw-regular);
}

.biosite-content,
.product-content {
  padding-top: 25px;
  height: 72.5vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 15px;
  padding-right: 28px;
  padding-left: 20px;
}

/* 
.product-content {
  margin: 25px 0;
} */

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

*::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: rgb(217, 217, 217, 0.15);
}

*::-webkit-scrollbar-track:hover {
  background-color: rgb(217, 217, 217, 0.2);
}

*::-webkit-scrollbar-track:active {
  background-color: rgb(217, 217, 217, 0.2);
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgb(217, 217, 217, 0.35);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgb(217, 217, 217, 0.45);
}

*::-webkit-scrollbar-thumb:active {
  background-color: rgb(217, 217, 217, 0.45);
}

/* Chrome, Edge and Safari */

.biosite-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: normal;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.biosite-profile {
  border-radius: 10px;
  border: 0.025rem solid var(--bs-black-01);
  width: 230px;
  height: 313px;
  z-index: 2;
}

.biosite-profile button {
  z-index: 3;
}

.biosite-theme {
  position: relative;
  width: 100%;
  height: 80px;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  justify-content: end;
}

.bs-dropdown-toggle {
  all: unset;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  /* Glass effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(3px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bs-dropdown-toggle svg {
  width: 24px;
  height: 24px;
}

.biosite-theme.portfolio {
  background-image: url("../img/biosite-background-themes/portfolio-theme.png");
  background-color: rgb(0, 0, 0, 0.035);
}

.biosite-theme.freelance {
  background-image: url("../img/biosite-background-themes/freelance-theme.png");
  background-color: rgb(0, 0, 0, 0.035);
}

.biosite-theme.shopping {
  background-image: url("../img/biosite-background-themes/shopping-theme.png");
  background-color: rgb(0, 0, 0, 0.035);
}

.biosite-theme.corporate {
  background-image: url("../img/biosite-background-themes/corporate-theme.png");
  background-color: rgb(0, 0, 0, 0.035);
}

.biosite-profile.hidden-biosite {
  background: rgba(0, 0, 0, 0.035);
}

.profile-picture {
  position: absolute;
  bottom: -30px;
  left: 15px;
  border: 5px solid #ffffff;
  border-radius: 50px;
}

.profile-picture img {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  object-fit: cover;
  border-radius: 50px;
}

.biosite-profile-content {
  margin-top: 25px;
  padding: 15px;
}

.biosite-profile-title {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
}

.biosite-link {
  margin: 8px 0;
  display: flex;
  align-items: center;
  background-color: var(--bs-d914);
  border-radius: 136px;
}

.biosite-link-icon {
  padding: 6px 10px;
  border-right: 0.025rem solid var(--bs-black-01);
}

.biosite-link-icon svg {
  width: 16px;
  height: 16px;
  margin-bottom: 2px;
}

.biosite-link-url {
  text-wrap-mode: nowrap;
  padding: 10px;
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  color: var(--bs-black-06);
  width: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biosite-link-url a {
  text-decoration: none;
  color: var(--bs-black-06);
}

.biosite-link-main .biosite-link-icon svg {
  fill: var(--bs-black);
}

.biosite-link-main .biosite-link-url {
  color: var(--bs-black);
}

.biosite-link-copy {
  margin: 4px;
  padding: 4px 8px;
  color: var(--bs-white);
  font-size: 10px;
  border-radius: 136px;
  font-weight: var(--fw-medium);
  cursor: pointer;
  background: var(--bs-black);
  text-decoration: none;
  min-width: 48px;
  text-align: center;
}

.biosite-link-divider {
  height: 0.025rem;
  background-color: var(--bs-black-01);
  margin: 12px 0;
}

.biosite-analys {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
}

.analys-detail-count {
  font-size: var(--fs-14);
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
  text-align: center;
}

.analys-detail-title {
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: var(--bs-black-03);
  text-transform: capitalize;
}

.biosite-main {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

/* biosite-app */
.biosite-app {
  width: 100%;
  /* max-width: 485px; */
}

.biosite-app-listing,
.social-medias-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  /* margin: 0; */
}

.header-app,
.social-media-app {
  height: 60px;
  border-radius: 15px;
  width: 100%;
  background: var(--bs-white);
  border: 0.025rem solid var(--bs-black-01);
  display: flex;
  align-items: center;
}

.header-symbbol {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 0, 0, 0.04);
  border-radius: 15px 0 0 15px;
}

.social-media-app .header-symbbol {
  width: 43px;
}

.social-media-app .header-symbbol svg {
  width: 18px;
  height: 16px;
}

.header-symbbol.dis svg {
  width: 20px;
  height: 20px;
  fill: rgb(0, 0, 0, 0.06);
}

.header-symbbol svg {
  width: 20px;
  height: 20px;
  fill: rgb(0, 0, 0, 0.6);
}

.header-app-content,
.social-media-app-content {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  width: 100%;
}

/* .social-media-app-content input {
  padding: 9px 14px;
} */

.social-media-app-content {
  padding: 9px 14px;
}

.social-media-app-name {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.social-app-logo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.header-app-name {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  text-transform: capitalize;
}

.header-app-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-app-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-app-actions button,
.social-app-actions button {
  all: unset;
  cursor: pointer;
}

.header-app-actions .bs-dropdown-toggle {
  padding: 0 !important;
}

.header-app-actions .bs-dropdown-toggle svg {
  margin-bottom: 1px;
}

.social-app-actions button svg {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

.header-app-hideShow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerappswitch[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.headerapplabel {
  cursor: pointer;
  text-indent: -9999px;
  width: 40px;
  height: 24px;
  background: rgb(217, 217, 217, 0.2);
  display: block;
  border-radius: 100px;
  position: relative;
}

.headerapplabel:after {
  content: "";
  position: absolute;
  top: 1.6px;
  left: 1.6px;
  width: 20.8px;
  height: 20.8px;
  background: #ececec;
  border: 0.05rem solid #ffffff;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 14px 3px rgb(0, 0, 0, 0.15);
}

.headerappswitch:checked+label {
  background: var(--bs-primary-gradient);
}

.headerappswitch:checked+label:after {
  left: calc(100% - 1.6px);
  transform: translateX(-100%);
}

.biosite-preview {
  width: 100%;
  max-width: 490px;
  background: rgb(0, 0, 0, 0.02);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0;
  overflow: hidden;
  gap: 1rem;
}

.mobile-frame {
  position: relative;
  width: 100%;
  max-width: 268px;
  height: 100%;
  max-height: 520px;
  overflow-y: auto;
  border-radius: 16px;
}

.mobile-frame::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  background: url("../img/mobile-frame.png") no-repeat center center;
  background-size: contain;
}

.mobile-box {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 258px;
  height: 100%;
  max-height: 510px;
}

.modal-body-content {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

.modal-body-content .mobile-box {
  max-height: 512px;
}

.mobile-frame::-webkit-scrollbar {
  display: none;
}

/* biosite-app */

/* biosite-header-app  */

.app-style-listing {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.header-app-style-frame {
  width: 150px;
  height: 200px;
  border: 3px solid rgb(217, 217, 217, 0.1);
  border-radius: 10px;
}

.header-app-style-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.style-theme-gradient {
  border: 3px solid transparent;
  background-image: linear-gradient(transparent, transparent),
    linear-gradient(90deg, #ff6302 0%, #3b72de 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.header-app-style .style {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.header-app-style .style label {
  color: var(--bs-black-03);
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  text-transform: capitalize;
}

.header-app-section {
  margin: 30px 0;
  margin-bottom: 10px;
}

.header-app-title {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(102, 102, 102, 0) 100%);
  padding: 12px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: rgb(0, 0, 0, 0.7);
  margin-bottom: 0;
}

.header-basic-info {
  margin-top: 20px;
}

.social-media-links-container {
  margin-top: 20px;
}

.object-divider {
  margin: 20px 0;
  height: 0.025rem;
  background-color: var(--bs-black-01);
}

.divider-social-media {
  margin: 20px 0;
  height: 0.025rem;
  background-color: var(--bs-black-01);
}

/* profile-picture-upload */

.profile-upload-container {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.profile-image-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #e9ecef;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-wrapper:hover::after {
  content: "Change";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.help-text {
  color: var(--bs-black-06);
  font-size: var(--fs-13);
  line-height: 1.5;
  font-weight: var(--fw-regular);
  margin: 0;
}

/* Modal Customization */
.modal-body {
  padding: 0;
  /* max-height: 70vh; */
}

.img-container {
  max-height: 60vh;
  width: 100%;
  background-color: #f7f7f7;
  text-align: center;
}

.img-container img {
  max-width: 100%;
}

.modal-header button {
  all: unset;
  margin-left: auto;
}

.modal-content {
  padding: 24px;
  border-radius: 18px;
  border: none;
}

.modal-header {
  padding: 0;
  margin: 0;
  border: none;
  padding-bottom: 24px;
  border-bottom: 0.025rem solid var(--bs-black-02);
}

.modal-title {
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  margin: 0;
  padding: 0;
  line-height: 1;
}

.modal-body-content {
  padding-top: 24px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.modal-actions button,
.modal-actions a {
  text-align: center;
  padding: 12px 36px !important;
}

.add-apps-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.add-app-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-app-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.add-app-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgb(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-app-img img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.add-app-text-info h1 {
  margin: 0;
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  line-height: 1.5;
}

.add-app-text-info p {
  margin: 0;
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: var(--bs-black-03);
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* profile-picture-upload */

/* form-elements */

.form-label {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  color: var(--bs-black-03);
  /* text-transform: capitalize; */
  margin-bottom: 8px;
}

.form-control {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  color: var(--bs-black);
  background-color: var(--bs-white);
  border: 0.03rem solid var(--bs-black-01);
  border-radius: 10px;
  padding: 12px;
}

.input-group-text {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
  padding: 0 14px;
  background-color: transparent;
  border-radius: 12px 0 0 12px;
}

.form-group img {
  width: 100px;
  height: auto;
  object-fit: cover;
}

table img {
  width: 45px;
  height: auto;
  object-fit: cover;
}

td {
  vertical-align: middle;
}

.form-control:disabled,
.form-select:disabled,
.form-check-input:disabled {
  background-color: rgb(0, 0, 0, 0.035);
}

.form-check-input[type=checkbox] {
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 4px;
  margin: 0;
}

.form-check-input[type=checkbox]:checked {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"), linear-gradient(90deg, #FF6201 0%, #3A71DE 100%);
  background-color: transparent;
  background-size: contain;
  background-position: center;
}

.address-custom {
  margin-top: 12px !important;
}

.inner-label {
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
  color: var(--bs-black-07);
  text-transform: none;
}

.form-check-input:focus {
  box-shadow: 0 0 0 9px .085rem var(--bs-black-01);
}

.form-control::placeholder {
  color: var(--bs-black-03);
}

.form-control:focus,
.form-select:focus {
  border: 0.03rem solid var(--bs-black-01);
  box-shadow: 0 0 6px 0.15rem rgba(255, 99, 2, 0.1);
  border-color: rgb(255, 99, 2, 0.2);
} 

.form-select {
  padding: 12px;
  font-size: var(--fs-14);
  color: var(--bs-black);
  font-weight: var(--fw-medium);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.03) 0px -50px 36px -28px inset;
}

.input-group .form-select {
  max-width: 110px !important;
  width: 110px;
}

.error {
  display: block;
  color: #e30000;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
}

.input-group .error {
  display: block !important;
  width: fit-content;
  color: #e30000;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
}

#countryCode-error {
  display: none !important;
}

.input-group small.character-count {
  display: block;
  width: 100%;
  text-align: end;
}

.form-sub-title {
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
  color: var(--bs-black-07);
  margin: 0;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: capitalize;
}

/* form-elements */

/* bs-nav-pills */

.nav-pills.bs-nav-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-pills.bs-nav-pills:nth-child(1) .nav-link {
  all: unset;
  min-width: 180px;
  text-align: center;
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: var(--bs-black);
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 10px;
  padding: 12px;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

.nav-pills.bs-nav-pills:nth-child(2) .nav-link {
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.nav-pills.bs-nav-pills .nav-link.active {
  all: unset;
  min-width: 180px;
  font-size: var(--fs-13);
  text-align: center;
  font-weight: var(--fw-regular);
  color: var(--bs-white);
  border: 0.025rem solid var(--bs-black-01);
  padding: 12px;
  background: var(--bs-dark-gradient);
}

/* bs-nav-pills */

/* table */

table,
.table {
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 12px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
}

.table-responsive {
  border-radius: 12px;
  /* overflow: hidden; */
}

table tr:last-child td {
  border-bottom: none;
}

table tr td:last-child,
table tr th:last-child {
  border-right: none;
}


table thead {
  color: var(--bs-black-03) !important;
  font-weight: var(--fw-semibold) !important;
}

th {
  font-size: var(--fs-14) !important;
  color: var(--bs-black-03) !important;
  line-height: 2 !important;
  border-right: 0.025rem solid var(--bs-black-01);
}

td {
  font-size: var(--fs-14) !important;
  font-weight: var(--fw-semibold) !important;
  color: var(--bs-black) !important;
  line-height: 2 !important;
  border-right: 0.025rem solid var(--bs-black-01);
}

.table>:not(caption)>*>* {
  padding: 0.6rem;
}

th {
  background: rgb(0, 0, 0, 0.015) !important;
}

.dt-paging.paging_full_numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.dt-paging.paging_full_numbers .dt-paging-button {
  all: unset;
  padding: 6px 12px;
  border-radius: 7px;
  border: 0.1rem solid var(--bs-black-01);
  background: transparent;
  color: var(--bs-black-05);
}

.dt-paging.paging_full_numbers .dt-paging-button:hover {
  background: var(--bs-black);
  color: var(--bs-white);
}

.dt-paging.paging_full_numbers .dt-paging-button.current {
  border: 0.1rem solid var(--bs-black);
  background: var(--bs-black);
  color: var(--bs-white);
}


.dt-empty {
  text-align: center;
}

.dt-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 12px;
}

/* table */


/* theme Radio button */

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
  color: #495057;
  font-weight: 500;
  transition: color 0.2s;
}

.radio-label:hover {
  color: #000;
}

.radio-input {
  display: none;
}

.radio-custom {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 1) 25%,
      rgba(217, 217, 217, 1) 100%);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.radio-input:checked+.radio-custom {
  background: linear-gradient(135deg, #ff6302 0%, #556270 100%);
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #e0e0e0, 0 2px 8px rgba(0, 0, 0, 0.2);
}

.radio-input:checked+.radio-custom {
  background: var(--bs-primary-gradient-135);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.radio-input:checked+.radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

.radio-input:focus+.radio-custom {
  box-shadow: 0 0 0 1px #e0e0e0, 0 0 0 4px rgba(224, 94, 94, 0.2);
}

/* theme Radio button */

/* Analytics */

.analytics-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.analytics-widget {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  border: 0.025rem solid var(--bs-black-01);
  padding: 10px 10px 10px 20px;
  max-width: 230px;
  width: 100%;
}

.widget-title {
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--bs-black-03);
  text-transform: capitalize;
  margin-bottom: 3px;
}

.widget-value {
  font-size: 22px;
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  line-height: 1;
}

.widget-img-container {
  width: 68px;
  height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff6201 0%, #3a71de 100%);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.widget-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.25);
}

.widget-img svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.analytics-reports {
  margin: 40px 0;
}

.anaytics-reprt-type {
  margin: 20px 0;
}

.analytics-items-listing {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
}

.analytics-item {
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 15px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  box-shadow: 0 2px 12px 3px rgba(0, 0, 0, 0.03);
}

.analytics-social-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.analytics-social-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.analytic-social-img img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
}

.analytic-social-name {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--bs-black);
}

.analytic-social-clicks {
  font-size: var(--fs-12);
  font-weight: var(--fw-semibold);
  color: var(--bs-black-03);
  background: rgb(217, 217, 217, 0.2);
  padding: 8px;
  border-radius: 9px;
}

.analytics-item-delete {
  all: unset;
  cursor: pointer;
  margin-bottom: 2px;
}

.enable-contact-txt {
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  color: var(--bs-black-03);
}

/* Analytics */

/* biosite-header-app  */


/* other-designs */

.select2-img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 16;
}

.apps-img {
  width: 45px;
  height: 45px;
}

.preview-header-social-media img {
  width: 25px !important;
  height: 25px !important;
  object-fit: cover !important;
}

form small {
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
  float: right;
}

.form-group small {
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
  display: flex;
  justify-content: end !important;
}

.select2-container .select2-selection--single {
  height: 43px !important;
}

.select2-container--default .select2-selection--single {
  padding: 9px !important;
  border: 0.03rem solid var(--bs-black-01) !important;
  border-radius: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: var(--fs-14) !important;
  font-weight: var(--fw-medium) !important;
  color: var(--bs-black) !important;
  line-height: 20px !important;
  margin-top: -1px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px !important;
  right: 9px !important;
}

.empty-list {
  font-size: 16px;
  color: var(--bs-black-05);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
  width: 100%;
  margin: 75px 0;
}

.dt-empty {
  color: var(--bs-black-05) !important;
}

/* other-designs */


/***** Products-pages *****/

.product-listing {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 10px;
}

.product-listing .product-item {
  width: 315px;
  height: auto;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 15px;
  cursor: pointer;
  padding: 10px;
}

.product-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding-top: 63%;
  max-height: 184px;
}

.product-detail-layout {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.static-primary-address {
  padding: 12px;
  color: var(--bs-black-07);
  background: rgb(0, 0, 0, 0.035);
  border-radius: 6px;
}

.static-primary-address span {
  font-size: 15px;
  font-weight: var(--fw-medium);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prd-detail-pico {
  width: 100%;
  max-width: 550px;
}

.prd-detail-pico-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 550px;
  padding-top: 58.2%;
  max-height: 320px !important;
  box-shadow: rgba(23, 23, 23, 0.05) 1px 2px 8px 2px;
  margin-bottom: 20px;
}

.product-detail-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 8px;
  width: 100%;
}

.product-detail-actions button,
.product-detail-actions a {
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  height: 100%;
}

.product-detail-actions button svg,
.product-detail-actions a svg {
  width: 18px;
  height: 18px;
}

.product-detail-actions a:hover svg path {
  fill: var(--bs-white);
}

.product-detail-actions button span,
.product-detail-actions a span {
  font-size: var(--fs-14);
  font-weight: var(--fw-semibold);
}

.product-slider-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}

.product-slider-image.active {
  opacity: 1;
  z-index: 2;
}

.open-product-card {
  position: relative;
  padding: 24px;
  background: var(--bs-white);
  margin-top: 20px;
  border-radius: 15px;
  border: 0.025rem solid rgb(0, 0, 0, 0.02);
  box-shadow: 1px 1px 6px 1px rgb(0, 0, 0, 0.04);
}

.open-product-summary-detail {
  display: flex;
  gap: 20px;
  align-items: center;
}

.open-product-card .bs_share_btn {
  position: absolute;
  right: 16px;
  top:  16px;
}

.open-product-image img {
  width: 78px;
  height: 123px;
  object-fit: contain;
}

.object-divider {
  margin: 20px 0;
  height: 0.025rem;
  background-color: var(--bs-black-01);
}

.tax-visible {
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: rgba(0, 0, 0, 0.2);
}

.exp-del-date,
.exp-del-amt {
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--bs-black-07);
}

.open-product-sub-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.open-product-sub-total .sub-total-text {
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
  color: rgb(0, 0, 0, 0.7);
}

.open-product-sub-total .sub-total-amt i {
  font-size: 13px;
}

.open-product-sub-total .sub-total-amt span {
  font-size: var(--fs-15);
  font-weight: var(--fw-bold);
  color: rgb(0, 0, 0, 0.7);
}

.open-shopping-secure-feature {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px 0;
  margin-bottom: 10px;
  list-style: none;
  justify-content: center;
  row-gap: 0.5rem;
}

.open-shopping-secure-feature li svg {
  width: 16px;
  height: 16px;
}

.open-shopping-secure-feature li svg path {
  stroke: rgb(0, 0, 0, 0.5);
}

.open-shopping-secure-feature li {
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: rgb(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 1px;
}

.open-shopping-secure-feature li.eff-border {
  padding: 0 12px;
}

/* Gradient border card */
.user-info-card {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 15px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #FF6201, #3A71DE) border-box;
  border: 2px solid transparent;
  padding: 24px;
  margin-top: 30px;
}

.user-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Icon */
.user-info-icon svg {
  width: 34px;
  height: 34px;
}

/* Content */
.user-info-content h1 {
  margin: 0;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--bs-black-06);

}

.user-info-content p {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-regular);
  list-style: 1.6;
  color: var(--bs-black-06);
}

/* Badges */
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.product-badge-text {
  all: unset;
  background: var(--bs-primary-gradient);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  border: none;
}

.product-img-btns {
  display: flex;
  gap: 8px;
}

.product-image-btn {
  background: var(--bs-white);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--bs-black);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s;
}

.product-image-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--bs-black);
}

.product-image-btn .wishlist-icon.active {
  stroke: var(--bs-white);
  fill: #e30000;
}

.product-image-btn:hover {
  background: var(--bs-white);
}

.product-image-btn:hover svg {
  stroke: var(--bs-dark);
}

.order-history-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-order-history-card {
  display: flex;
  padding: 14px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.order-history-product-info {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 50%;
}

.order-history-product-image img {
  width: 160px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.order-history-product-name {
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--bs-black);
  margin: 0;
}

.order-history-product-price {
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--bs-black-05);
}

.ordered-product-price {
  min-width: 90px;
  font-size: var(--fs-16);
  font-weight: var(--fw-bold);
  color: var(--bs-black);
}

.ordered-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  line-height: 2;
}

.ordered-date-stat {
  width: calc(100% - 13px) !important;
  font-size: var(--fs-14);
  line-height: 1.2;
}

.status-revel {
  background: #00A34B;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.order-status {
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  color: var(--bs-black-05);
  line-height: 2;
}

.order-devivery-details {
  width: 250px;
}

.order-devivery-details a {
  all: unset;
  display: flex;
  align-items: center;
  background: var(--bs-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 14px;
}

/* Navigation Dots */
.product-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  padding: 5px 8px;
  border-radius: 12px;
  /* backdrop-filter: blur(2px); */
}

.product-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(217, 217, 217, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active {
  background: #d9d9d9;
  transform: scale(1.1);
}

.product-detials {
  padding: 16px;
}

.product-title {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.product-name {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  line-height: 20px;
  text-wrap-mode: wrap;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
  margin-bottom: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 40px;
}

.product-detail-name {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  line-height: 20px;
  text-wrap-mode: wrap;
}

.product-detail-title {
  font-size: 22px;
  font-weight: var(--fw-medium);
  line-height: 20px;
  text-wrap-mode: wrap;
  margin-top: 16px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-detail-review {
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-rating {
  all: unset;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-detail-review .product-rating {
  background: rgb(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 4px 8px;
}

.product-detail-review span {
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: var(--bs-black-02);
}

.product-rating span {
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
}

.product-details-divider {
  margin: 20px 0;
  border: 0.025rem solid var(--bs-black-01);
}

.product-priceing {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.all-price {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
}

.product-detail-all-pricing {
  display: flex;
  gap: 6px;
  align-items: baseline;
  flex-wrap: nowrap;
  margin: 20px 0;
}

.product-detail-all-pricing .actual-price i {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
  line-height: 18px;
}

.product-detail-all-pricing .actual-price span {
  font-size: var(--fs-22);
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
  line-height: 19px;
}


.product-detail-all-pricing .mrp-price i {
  font-size: 11px;
  font-weight: var(--fw-regular);
  text-decoration: line-through;
  color: var(--bs-black-02);
}

.product-detail-all-pricing .mrp-price span {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  text-decoration: line-through;
  color: var(--bs-black-02);
}

.product-detail-all-pricing .offers {
  font-size: var(--fs-14);
  font-weight: var(--fw-semibold);
  background: var(--bs-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.all-price .actual-price i {
  font-size: var(--fs-16);
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
}

.all-price .actual-price {
  font-size: var(--fs-15);
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
}

.all-price .mrp-price {
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  text-decoration: line-through;
  color: var(--bs-black-02);
}

.all-price .offers {
  font-size: var(--fs-12);
  font-weight: var(--fw-semibold);
  background: var(--bs-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-details-count label {
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--bs-black-06);
}

.counting-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.counting-container button {
  all: unset;
  border: 0.1rem solid #000000;
  padding: 9px;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.counting-container button.disable {
  border-color: var(--bs-black-03);
}

.counting-container button.disable svg path {
  fill: var(--bs-black-03);
}

.counting-container button svg {
  width: 24px;
  height: 24px;
}

.product-quantity {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  border: none;
  padding: 0;
  width: 24px;
  text-align: center;
}

.product-details-avai {
  margin: 30px 0;
}

.product-details-avai label {
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--bs-black-06);
  margin-bottom: 12px;
}

.location-availability {
  display: flex;
  gap: 8px;
}

.location-availability input {
  width: 100%;
  min-width: 160px;
}

.product-exact-details {
  max-width: 450px;
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 0px;
  padding-right: 8px;
}

.checkout-product-container {
  display: grid;
  grid-template-columns: 1fr;
  height: 72.5vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 60px;
  padding-right: 8px;
  width: 100%;
  /* max-width: 600px; */
}

.checkout-product-container::-webkit-scrollbar {
  width: 0px;
}


#store-kyc img {
  width: 125px;
  height: auto;
  object-fit: cover;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 8px;
  padding: 12px;
}

.checkout-product-details {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  height: fit-content;
  border-bottom: 0.025rem solid var(--bs-black-01);
}

.product-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  height: fit-content;
}

.checkout-product-img {
  width: 100%;
  max-width: 313px;
  height: auto;
  max-height: 234px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 15px;
  padding: 10px;
}

.checkout-product-img img {
  width: 100%;
  min-width: 291px;
  height: auto;
  min-height: 214px;
  max-height: 214px;
  object-fit: contain;
  border-radius: 10px;
}

.checkout-product-pricing {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: fit-content;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}

.gst-explain {
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  color: var(--bs-black-02);
  display: block;
}

.exp-del-date,
.exp-del-amt {
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--bs-black-07);
}

.remove-btn {
  all: unset;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  width: fit-content;
}

.checkout-delivery-details {
  padding: 0 0 0 30px;
  width: 100%;
  max-width: 376px;
  /* height: 72.5vh;
  overflow-y: scroll; */
  padding-right: 8px;
}

.ordered-person-name {
  text-transform: capitalize;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  line-height: 1;
}

.checkout-delivery-address {
  border: 0.025rem solid var(--bs-black-01);
  padding: 24px;
  border-radius: 15px;
}

.modal-body-content .indual-purpose {
  border: 0.025rem solid var(--bs-black-01);
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.checkout-delivery-address-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.checkout-delivery-address-actions button,
.checkout-delivery-address-actions a {
  all: unset;
}

.checkout-delivery-address-actions button svg,
.checkout-delivery-address-actions a svg {
  width: 18px;
  height: 18px;
}

.delivery-summary-title {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--bs-black-07);
}

.delivery-details {
  padding: 0;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--bs-black-03);
  line-height: 21px;
  margin-top: 0px;
}

.delivery-details span {
  display: block;
}

.checkout-order-summary {
  border: 0.025rem solid var(--bs-black-01);
  padding: 24px;
  border-radius: 15px;
  margin-top: 10px;
  min-width: 310px;
}

.grand-total-container {
  padding: 18px;
  margin: 24px 0;
  background-color: rgb(0, 0, 0, 0.02);
  border-radius: 15px;
}

.gt-type {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* .gt-price i {
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: var(--bs-black-07);
} */

.gt-name,
.gt-price {
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--bs-black-07);
}

.gt-price {
  font-weight: var(--fw-medium);
}

/***** Products-pages *****/

/* Accordion container */

.accordion-button:not(.collapsed) {
  box-shadow: none;
  background: none;
}

.accordion-item {
  background: transparent;
  padding: 16px 0;
}

.accordion-container .accordion-button {
  background: transparent;
  font-size: 14px;
  font-weight: var(--fw-medium);
  padding: 0;
}

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

.accordion-button:not(.collapsed) {
  color: var(--black);
}

.accordion-header {
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 24px;
  color: var(--bs-black-07);
}

.accordion-body {
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: #000000;
  padding: 0;
  color: var(--bs-black-03);
  margin-top: 10px;
}

/* Accordion container */

/*** Authentication pages  ***/

.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-container {
  text-align: center;
}

.auth-brand-logo {
  margin-bottom: 25px;
}

.auth-brand-logo img {
  width: 180px;
  height: auto;
  object-fit: cover;
}

.auth-form-title {
  font-size: var(--fs-24);
  font-weight: var(--fw-medium);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.auth-form-des {
  margin-bottom: 25px;
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  color: rgb(0, 0, 0, 0.5);
}

.sent-mail {
  color: var(--bs-black);
  font-weight: var(--fw-medium);
}

.auth-form {
  padding: 50px 35px;
  background: var(--bs-white);
  border-radius: 20px;
  box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.025);
  width: 460px;
}

.auth-form .input-group .form-control {
  border-radius: 0 10px 10px 0 !important;
}

.auth-form label {
  display: block;
  text-align: left;
}

.auth-submit-btn {
  all: unset;
  margin-top: 25px;
  width: -moz-available;
  width: -webkit-fill-available;
  width: -o-fill-available;
  width: fill-available;
  background: linear-gradient(90deg, #585858 0%, #000000 100%);
  color: var(--bs-white);
  padding: 12px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-nav-attention {
  color: var(--bs-black-03);
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  margin-top: 15px;
  margin-bottom: 0;
}

.auth-nav-attention .auth-nav-btn {
  color: var(--bs-black);
  text-decoration: none;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.otp-inputs .form-control {
  width: 45px;
  height: 45px;
  text-align: center;
}

.otp-resend {
  padding: 12px;
  font-size: 14px;
  font-weight: var(--fw-medium);
}

.otp-resend span {
  text-decoration: underline;
}

.otp-resend .otp-timer {
  text-decoration: none !important;
}

/*** Authentication pages  ***/

.share-listing {
  height: 79vh;
  overflow-y: scroll;
}

.y-icon img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}

.sharable-social-media-name {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black-07);
  text-transform: capitalize;
}


/* address-section */

.checkout-address-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.address-card {
  padding: 24px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 15px;
}

.address-card .delivery-details span {
  font-size: var(--fs-13);
  display: inline;
}

/* address-section */

/* tracking-details */
.track-details {
  width: calc(100% - 340px);
  /* height: 72.5vh;
  overflow-y: scroll; */
  padding-right: 25px;
  border-right: 0.025rem solid var(--bs-black-01);
  scrollbar-width: none;
}

.track-details-2 {
  width: calc(100% - 370px);
}

.order-summary-2 {
  min-width: 370px;
}

.track-product-details {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.track-product-img img {
  width: 120px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.track-detail-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.track-detail-accordion .accordion-item {
  all: unset;
}

.track-detail-accordion .accordion-header {
  all: unset;
  color: var(--bs-black-07);
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
}

.track-detail-accordion .accordion-header button {
  padding: 24px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 10px !important;
  background: linear-gradient(180deg, rgb(0, 0, 0, 0) 0%, rgb(0, 0, 0, 0.035) 100%);
}

.track-detail-accordion .accordion-body {
  padding: 18px;
  margin-top: 6px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 10px;
  box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.025);
}

.order-summary {
  width: 340px;
  padding-left: 30px;
}

.order-summary-rup-high {
  font-size: 0.84rem;
}

.order-summary-rup {
  font-size: 0.82rem;
}

.order-summary-rup-2 {
  font-size: 0.79rem;
}

.order-summary-rup-3 {
  font-size: 0.75rem;
}

.shipping-rup {
  font-size: 0.73rem!important;
}

.track-order-item {
  width: 33.33%;
}

.track-order-item span {
  display: block;
  line-height: 2;
}

.track-order-item .detail-head {
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--bs-black-07);
}

.track-order-item .detail-value {
  font-size: var(--fs-13);
  font-weight: var(--fw-regular);
  color: var(--bs-black-03);
}

/* tracking-details */

.track-container {
  width: 100%;
  max-width: 650px;
  padding: 25px 0;
}

.track-step {
  display: flex;
  gap: 10px;
  position: relative;
  padding-bottom: 32px;
}

.track-step:last-child {
  padding-bottom: 0;
}

.track-step::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 0;
  width: 2px;
  background-color: var(--bs-d914);
  transform: translateX(-50%);
  z-index: 0;
}

.track-step:last-child::before {
  display: none;
}

.track-step.completed::before {
  background-color: var(--bs-black);
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bs-d914);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.track-step.completed .step-icon {
  background-color: var(--bs-black);
}

/* Checkmark SVG */
.check-svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Text Content */
.step-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0;
  line-height: 1.25;
  margin-top: -1px;
}

.step-title {
  font-weight: var(--fw-medium);
  font-size: var(--fs-15);
  color: var(--bs-black);
  margin-right: 4px;
}

.step-date {
  font-weight: var(--fw-medium);
  font-size: var(--fs-15);
  color: var(--bs-black);
}

/* alerts */

.alert-delete-outer {
  padding: 12px;
  background-color: rgb(227, 0, 0, 0.05);
  border-radius: 50%;
}

.alert-delete-inner {
  padding: 12px;
  background-color: rgb(227, 0, 0, 0.08);
  border-radius: 50%;
}

.alert-actions .danger-action {
  color: var(--bs-white);
  background-color: #e30000;
  border-color: #e30000;
}

.alert-success-outer {
  padding: 12px;
  background-color: rgb(0, 200, 81, 0.05);
  border-radius: 50%;
}

.alert-success-inner {
  padding: 12px;
  background-color: rgb(0, 200, 81, 0.08);
  border-radius: 50%;
}

.alert-actions .success-action {
  color: var(--bs-white);
  background-color: #00A34B;
  border-color: #00A34B;
}

.alert-warning-outer {
  padding: 12px;
  background-color: rgb(255, 187, 51, 0.05);
  border-radius: 50%;
}

.alert-warning-inner {
  padding: 12px;
  background-color: rgb(255, 187, 51, 0.08);
  border-radius: 50%;
}

.alert-actions .warning-action {
  color: var(--bs-white);
  background-color: #FAC600;
  border-color: #FAC600;
}

.alert-priamry-outer {
  padding: 12px;
  background-color: rgb(58, 113, 222, 0.05);
  border-radius: 50%;
}

.alert-priamry-inner {
  padding: 12px;
  background-color: rgb(58, 113, 222, 0.08);
  border-radius: 50%;
}

.alert-actions .priamry-action {
  color: var(--bs-white);
  background-color: #3a71de;
  border-color: #3a71de;
}

.alert-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-top: 24px;
  width: 100%;
}

.alert-actions button {
  all: unset;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  border: 0.1rem solid;
  width: 50%;
  text-align: center;
}

.alert-details {
  padding-top: 12px;
}

.alert-title {
  font-size: var(--fs-16);
  font-weight: var(--fw-semibold);
  line-height: 2;
}

.alert-descrition {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.alert-actions .cancel-action {
  color: rgb(128, 128, 128);
  border-color: rgb(128, 128, 128, 0.35);
}

.text-success {
  color: #00A34B;
  font-size: var(--fs-13);
  font-weight: var(--fw-semibold);
}

.text-danger {
  color: #e30000;
  font-size: var(--fs-13);
  font-weight: var(--fw-semibold);
}

.text-primary {
  color: #3A71DE;
  font-size: var(--fs-13);
  font-weight: var(--fw-semibold);
}

.text-warning {
  color: #FAC600;
  font-size: var(--fs-13);
  font-weight: var(--fw-semibold);
}

.message-content-section {
  font-size: var(--fs-13);
  margin-bottom: 12px;
  font-weight: var(--fw-semibold);
}

.primary-status-label {
  color: #3A71DE;
  background-color: rgb(58, 113, 222, 0.08);
  border-radius: 36px;
  line-height: normal;
  line-height: 1.5;
  padding: 4px 12px;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
}

.success-status-label {
  border-radius: 8px;
  line-height: normal;
  line-height: 1.5;
  padding: 4px 12px;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: #00A34B;
  background-color: rgb(0, 163, 75, 0.09);
}

.swal2-confirm.btn-success {
  background: #171717;
  color: var(--bs-white);
}

.swal2-confirm,
.swal2-confirm:hover {
  background: #171717;
  color: var(--bs-white);
}

.swal2-deny {
  background: #e30000;
  color: var(--bs-white);
}

.swal2-cancel,
.swal2-cancel:hover {
  background: var(--bs-black-01) !important;
  color: var(--bs-black) !important;
  border: 0 !important;
}

.swal2-styled {
  padding: 8px 24px !important;
  font-size: var(--fs-14) !important;
  font-weight: var(--fw-semibold) !important;
  border-radius: 10px !important;
}

.warning-status-label {
  border-radius: 8px;
  line-height: normal;
  line-height: 1.5;
  padding: 4px 12px;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: #FAC600;
  background-color: rgba(250, 198, 0, 0.09);
}

.danger-status-label {
  border-radius: 8px;
  line-height: normal;
  line-height: 1.5;
  padding: 4px 12px;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: #e30000;
  background-color: rgb(227, 0, 0, 0.09);
}

.error {
  color: #e30000;
}

.pincode-status span {
  font-size: 12px !important;
  font-weight: var(--fw-medium) !important;
}

/* alerts */

.step-form-container {
  padding: 0 8px;
}

.step-form-container .progress {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.step-form-container .progress-bar {
  background: var(--bs-primary-gradient);
  border-radius: 999px;
  transition: width 250ms ease;
}

.step-container {
  position: relative;
  margin-top: -20px;
  padding: 0 2px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
  background: var(--bs-white);
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  user-select: none;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.step-circle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.step-circle:active {
  transform: translateY(0);
}

.step-circle.active {
  border-color: transparent;
  background: var(--bs-primary-gradient);
  color: var(--bs-white);
}

.step-circle.completed {
  border-color: rgba(58, 113, 222, 0.30);
  background: rgba(58, 113, 222, 0.10);
  color: var(--bs-dark);
}

@media (max-width: 576px) {
  .step-form-container {
    padding: 0 4px;
  }

  .step-container {
    margin-top: -18px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

#store_contact_number-error {
  display: block;
  width: 100%;
}

/* rating and review */

.rating-container {
  width: 100%;
  padding: 20px;
  background: var(--bs-d914);
}

.rating-container .page-title {
  margin-bottom: 12px;
}

.rating-card {
  background-color: var(--bs-white);
  border-radius: 12px;
  padding: 20px;
}

.product-rating-box {
  background-color: var(--bs-white);
  border-radius: 8px;
}

.product-label {
  font-weight: var(--fw-semibold);
  color: var(--bs-black);
  font-size: var(--fs-14);
  margin-bottom: 12px;
  text-align: center;
}

.stars-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 10px 0;
}

.star-icon {
  font-size: 24px;
  color: var(--bs-black-01);
  cursor: pointer;
  transition: color 0.2s;
}

.star-icon.hovered,
.star-icon.active {
  color: #EFBF04;
}

.review-box {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
}

.review-box.visible {
  max-height: 300px;
  opacity: 1;
  margin-top: 20px;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.star-icon.navigate-active {
  animation: pop 0.2s ease;
}

/* rating and review */

/****** Responsive ******/

@media (max-width: 1200px) {
  .wide-container {
    padding: 0 9%;
  }

  .accordion-container .accordion-button {
    padding: 0 !important;
  }

  .track-detail-accordion .accordion-item {
    padding: 0 !important;
  }

  .track-detail-accordion .accordion-header button {
    padding: 12px 18px !important;
  }

  .checkout-product-details {
    flex-direction: column;
  }

}

@media (max-width: 992px) {

  body {
    height: 100%;
    /* overflow-y: auto; */
  }

  .object-divider,
  .divider-social-media,
  .product-details-divider {
    margin: 16px 0;
  }

  .checkout-delivery-details {
    padding-left: 15px;
  }

  .wide-container {
    padding: 0 5%;
  }

  .main-content {
    /* padding: 18px; */
    height: 100%;
  }

  .accordion-container .accordion-item {
    padding: 12px 0;
  }

  .accordion-container .accordion-button {
    font-size: var(--fs-13) !important;
    font-weight: var(--fw-medium) !important;
  }

  .biosite-main {
    justify-content: center;
  }

  .biosite-content,
  .product-content {
    padding-top: 15px;
    padding-bottom: 40px;
    padding-right: 26px;
    padding-left: 18px;
  }

  .track-details {
    padding-right: 0;
    border-right: none;
    scrollbar-width: none;
    width: auto;
  }

  .track-details-2 {
    width: 100%;
  }

  .order-summary-2 {
    min-width: 100%;
  }

  .page-header {
    /* margin-bottom: 15px; */
    padding: 18px;
    padding-bottom: 0;
  }

  .biosite-listing,
  .product-listing {
    justify-content: space-evenly;
    gap: 12px;
    margin-bottom: 50px;
  }

  .biosite-preview {
    display: none;
  }

  .preview-btn {
    display: block !important;
  }

  .product-detail-title {
    font-size: var(--fs-18);
  }

  .product-detail-all-pricing,
  .product-details-avai {
    margin: 20px 0;
  }

  .product-detail-all-pricing .actual-price {
    font-size: var(--fs-20);
  }

  .product-detail-all-pricing .mrp-price,
  .product-detail-all-pricing .offers {
    font-size: var(--fs-12);
  }

  .product-details-count label,
  .product-details-avai label {
    font-size: var(--fs-13);
  }

  .checkout-product-details {
    flex-direction: column;
  }

  .checkout-product-pricing {
    margin-top: 0;
  }

  .product-img-container {
    gap: 12px;
  }

  .counting-container {
    margin: 0;
  }

  .counting-container button {
    width: 20px;
    height: 20px;
  }

  .analytics-widgets {
    gap: 15px;
  }

  .analytics-widget {
    padding: 10px;
  }

  .widget-value {
    font-size: var(--fs-18);
  }

  .widget-img-container {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
  }

  .widget-img {
    width: 45px;
    height: 45px;
    max-width: 45px;
    max-height: 45px;
  }

  .analytic-social-name {
    font-size: var(--fs-14);
  }

  .analytic-social-clicks {
    padding: 4px 8px;
  }

  .auth-brand-logo {
    margin-bottom: 20px;
  }

  .auth-brand-logo img {
    width: 150px;
  }

  .auth-form {
    padding: 40px 25px;
    margin: 0 auto;
  }

  .auth-form-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .auth-form-des {
    font-size: var(--fs-13);
    margin-bottom: 20px;
  }

  .auth-nav-attention {
    font-size: var(--fs-13);
  }

  .modal-title {
    font-size: var(--fs-16);
  }

  .checkout-product-container,
  .checkout-delivery-details {
    height: 100%;
    max-height: 100%;
  }

  .checkout-product-container,
  .checkout-delivery-details {
    scrollbar-width: none;
  }

  .order-history-product-image img {
    width: 120px;
  }

  .order-history-product-info {
    width: 100%;
    min-width: 335px;
    -webkit-line-clamp: 2;
    gap: 15px;
  }

  .order-history-product-name {
    font-size: var(--fs-14);
  }

  .order-history-product-price {
    font-size: var(--fs-12);
  }

  .ordered-product-price {
    font-size: var(--fs-14);
  }

  .ordered-date {
    font-size: var(--fs-14);
  }

  .track-details,
  .order-summary {
    width: 100%;
    height: auto;
  }

  .order-summary {
    padding: 0;
  }

  .order-summary {
    width: 100%;
  }

  .order-summary-rup-high {
    font-size: 0.75rem;
  }

}

@media (max-width: 768px) {
  .wide-container {
    padding: 0 4%;
  }

  .biosite-content, .product-content {
    padding-bottom: 20px;
  }

  .order-summary-rup {
    font-size: 0.69rem;
    margin-top: 0.172rem;
  }

  .modal-content {
    padding: 12px;
  }

  .main-content {
    /* padding: 12px; */
  }

  .modal-header {
    padding-bottom: 6px;
  }

  .modal-body-content,
  .modal-actions {
    padding-top: 12px;
  }

  .static-primary-address {
    font-size: var(--fs-13);
  }

  .accordion-container .accordion-button {
    font-size: var(--fs-13) !important;
    font-weight: var(--fw-medium) !important;
  }

  .biosite-listing,
  .product-listing {
    justify-content: space-evenly;
    gap: 15px;
  }

  .biosite-navbar {
    padding: 12px 0;
  }

  .biosite-app {
    max-width: 100%;
  }

  .biosite-navbar-items {
    gap: 6px;
  }

  .address-custom {
    margin-top: 12px !important;
  }

  .user-dp img {
    width: 30px;
    height: 30px;
  }

  .bio-navigate {
    bottom: 20px;
  }

  .bio-navigate-container .bio-navigate-btn {
    width: 18px;
    height: 18px;
  }

  .bio-navigate-container.active {
    position: relative;
    padding: 4px;
  }

  .bio-navigate-container.active .bio-navigate-list {
    position: absolute;
    top: -75%;
    background: var(--bs-dark);
    padding: 3px 6px;
    border-radius: 136px;
    left: 50%;
    transform: translateX(-50%);
  }

  .bio-navigate-list-item a svg {
    width: 16px;
    height: 16px;
    margin-bottom: 3px;
  }

  .brand-logo img {
    width: 75px;
  }

  svg {
    max-width: 18px;
    max-height: 18px;
  }

  button {
    padding: 9px !important;
    font-size: var(--fs-12) !important;
  }

  .bs-dropdown-toggle svg {
    width: 16px;
    height: 16px;
  }

  .bs-dropdown-toggle {
    padding: 4px 6px !important;
  }

  .header-app-actions .bs-dropdown-toggle svg {
    margin-bottom: 4px;
  }

  .header-app,
  .social-media-app {
    height: 50px;
  }

  .header-app-content,
  .social-media-app-content {
    padding: 12px;
  }

  .header-app-actions,
  .social-app-actions {
    gap: 4px;
  }

  .social-app-actions button {
    padding: 4px !important;
  }

  .header-app-actions button {
    padding: 4px !important;
  }

  .header-symbbol {
    width: 50px;
    height: 50px;
  }

  .header-basic-info {
    margin-top: 15px;
  }

  .profile-image-wrapper {
    width: 90px;
    height: 90px;
  }

  .profile-upload-container {
    gap: 12px;
  }

  button.btn-change-image,
  button.btn-remove-image {
    padding: 9px 12px !important;
    line-height: 14px;
  }

  .counting-container button {
    width: 16px;
    height: 16px;
  }

  /*** font-size ***/

  .header-app-title {
    font-size: var(--fs-14);
  }

  .dropdown-item a span,
  .dropdown-item button span {
    font-size: var(--fs-12) !important;
  }

  button span,
  a span {
    font-size: var(--fs-12) !important;
  }

  .shop-cart-count {
    top: 2px;
    right: -1px;
    width: 16px;
    height: 16px;
    font-size: 10px !important;
  }

  .page-title {
    font-size: var(--fs-16);
  }

  .page-sub-title {
    font-size: var(--fs-12);
  }

  .header-app-name {
    font-size: var(--fs-14);
  }

  .help-text {
    font-size: var(--fs-12);
  }

  .form-label {
    font-size: var(--fs-13);
    margin-bottom: 7px;
  }

  .form-sub-title { 
    font-size: var(--fs-14);
  }

  .form-control,
  .form-select {
    font-size: var(--fs-13);
    border-radius: 8px;
    padding: 10px !important;
  }

  .gt-type {
    margin-bottom: 15px;
  }

  .gt-name,
  .gt-price {
    font-size: 13px;
  }

  /*** font-size ***/

  /* radio-button */

  .headerappswitch:checked+label:after {
    left: calc(100% - 0.055rem);
  }

  .headerapplabel:after {
    top: 1px;
    width: 15px;
    height: 16px;
  }

  .headerapplabel {
    width: 30px;
    height: 18px;
  }

  /* radio-button */

  .preview-btn svg {
    width: 18px;
    height: 18px;
  }

  .header-app-style .style label {
    font-size: var(--fs-12);
  }

  .product-detail-layout {
    flex-direction: column;
  }

  .prd-detail-pico {
    max-width: 100%;
  }

  .prd-detail-pico-wrapper {
    max-width: 100%;
  }

  .product-exact-details {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    scrollbar-width: none;
    padding-bottom: 20px;
  }

  .product-content {
    flex-direction: column;
  }

  .checkout-product-container {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    padding-bottom: 0;
  }

  .checkout-product-details {
    margin-bottom: 0;
  }

  .checkout-delivery-details {
    max-width: 100%;
    padding-left: 0;
  }

  .analytics-reports {
    margin: 25px 0;
  }

  .analytics-item {
    padding: 10px;
  }

  .analytics-social-details,
  .analytics-social-actions {
    gap: 8px;
  }

  .otp-inputs .form-control {
    width: 40px;
    height: 40px;
  }

  .bs-primary-outline-btn {
    border-radius: 8px;
  }

  .bs-primary-outline-btn::after {
    border-radius: 8px;
  }

  .product-order-history-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-history-product-info {
    width: 100%;
  }

  .star-icon {
    font-size: 18px;
  }

  .bs-light-md-btn {
    padding: 8px 12px;
    font-size: var(--fs-13);
  }

  .rating-container,
  .rating-card {
    padding: 12px;
  }

  .ordered-date-stat {
    font-size: var(--fs-13);
  }

.primary-status-label,
.success-status-label,
.warning-status-label,
.danger-status-label {
  line-height: 1;
  padding: 3px 8px;
  font-size: 11px;
}

}

@media (max-width: 575px) {
  .wide-container {
    padding: 0 2%;
  }

  .auth-form {
    padding: 30px 25px;
    margin: 0 auto;
    width: 95%;
  }

  .biosite-content, .product-content {
    padding-bottom: 15px;
    padding-right: 20px;
    padding-left: 12px;
  }

  .empty-list {
    font-size: 14px;
  }

  .page-title {
    font-size: var(--fs-14);
  }

  .biosite-navbar-items li button,
  .biosite-navbar-items li a {
    padding: 0 5px !important;
  }

  .accordion-container .accordion-button {
    font-size: var(--fs-13) !important;
    font-weight: var(--fw-medium) !important;
  }

  .accordion-body {
    font-size: var(--fs-12) !important;
  }

  .header-app-name {
    font-size: var(--fs-13);
  }

  svg {
    max-width: 16px;
    max-height: 16px;
  }

  .app-style-listing {
    overflow-x: scroll;
    padding-bottom: 8px;
  }

  .app-style-listing::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }

  .product-detail-title {
    font-size: var(--fs-16);
    margin: 12px 0;
  }

  .product-detail-all-pricing,
  .product-details-avai {
    margin: 12px 0;
  }

  .product-detail-all-pricing .actual-price {
    font-size: var(--fs-18);
  }

  .counting-container {
    margin: 8px 0;
  }

  .checkout-delivery-address,
  .checkout-order-summary {
    padding: 20px;
  }

  .grand-total-container {
    margin: 16px 0;
  }

  .analytics-widgets {
    gap: 10px;
  }

  .analytics-reports {
    margin: 15px 0;
  }

  .anaytics-reprt-type {
    margin: 15px 0;
  }

  .analytics-widgets {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .widget-title {
    font-size: var(--fs-12);
  }

  .widget-value {
    font-size: var(--fs-16);
  }

  .widget-img-container {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .widget-img {
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
  }

  .widget-img svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
  }

  .analytic-social-name {
    font-size: var(--fs-13);
  }

  .auth-brand-logo img {
    width: 125px;
  }

  .auth-form-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .otp-inputs {
    margin-bottom: 25px;
  }

  .otp-inputs .form-control {
    width: 35px;
    height: 35px;
  }

  .modal-title {
    font-size: var(--fs-14);
  }

  .product-order-history-card {
    padding: 10px;
  }

  .order-history-product-image img {
    width: 90px;
  }

  .order-history-product-info {
    max-width: 100%;
    min-width: 260px;
  }

  .shop-cart-count {
    top: -5px;
    right: -3px;
    width: 14px;
    height: 14px;
    font-size: 10px !important;
  }
  
  .page-header {
    padding: 12px;
    padding-bottom: 0;
  }

  .page-header .biosite-link-main {
    width: 254px;
    display: flex;
    justify-content: center;
    margin: 18px auto 12px auto;
  }

  .nav-pills.bs-nav-pills:nth-child(1) .nav-link {
    min-width: 120px;
    text-align: center;
  }

  .nav-pills.bs-nav-pills .nav-link.active {
    min-width: 120px;
    text-align: center;
  }

  .order-history-product-name {
    font-size: var(--fs-12);
  }

}

@media (max-width: 480px) {
  .wide-container {
    padding: 0 3%;
  }
}

/****** Responsive ******/

.modal-backdrop {
  background-color: #000 !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.modal-backdrop.show {
  opacity: 0.35 !important;
}

.modal {
  z-index: 1055 !important;
}

.modal-backdrop {
  z-index: 1050 !important;
}


/* form-image-input-custom */

.custom-file-upload {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.choose-file-btn {
  background-color: black;
  color: white;
  padding: 12px 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.file-name {
  padding: 12px;
  color: var(--bs-black-03);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

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

/* form-image-input-custom */
.share-block {
  border-radius: 24px;
  background: rgb(0, 0, 0, 0.025);
  padding: 16px 12px;
}

/* terms-condition */

.policy-condition {
  padding: 30px 2px 80px 20px;
}

.policy-condition-list {
  margin: 20px 0;
}

.policy-condition ul {
  margin: 6px 15px 0 0;
}

.policy-condition-heading {
  font-size: 30px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: var(--fw-medium);
  color: var(--black);
  /* text-transform: capitalize; */
}

.policy-condition-title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: var(--fw-medium);
  color: var(--black);
  text-transform: capitalize;
}

.policy-condition-sub-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: var(--fw-medium);
  color: var(--black);
}

.policy-condition-text,
.policy-condition-list ul li,
.policy-condition-list ul p,
.policy-condition-list span {
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: var(--fw-regular);
  color: var(--bs-black-05);
  line-height: 1.75;
}

.policy-condition-list span,
.policy-condition-text p {
  font-size: 14px;
  font-weight: var(--fw-medium);
}

/* username checker loader */
.loader-username-checker {
  position: absolute;
  right: 12px;
  top: 41px;
  width: 24px;
  height: 24px;
  z-index: 5;
}

/* username checker icon */
#username_checker_icon.right-icon {
  position: absolute;
  right: 10px;
  top: 41px;
  font-size: 14px;
  font-style: normal;
  color: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

#username_checker_icon.fa-check.right-icon {
  background: #00A34B;
}

.fa-check:before {
  margin-top: 1px !important;
}

#username_checker_icon.fa-xmark.right-icon {
  background: #e30000;
}

.fa-xmark:before {
  margin-top: 1px !important;
}

/* terms-condition */


.referral-container {
  background: var(--bs-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.025);
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  width: 500px;
}

.referral-card {
  background: rgb(217, 217, 217, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.referral-card h1 {
  font-size: 28px;
  font-weight: var(--fw-semibold);
  background: var(--bs-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.referral-card p {
  margin: 0;
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  line-height: 1;
  color: var(--bs-black-06);
}

.referral-count {
  background: var(--bs-white);
  font-size: var(--fs-13);
  color: var(--bs-black-06);
  font-weight: var(--fw-medium);
  padding: 8px 12px;
  border-radius: 24px;
}

.referral-features {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.refer-heading {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--bs-black-03);
  margin-bottom: 25px;
  line-height: normal;
}

.referral-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  margin-bottom: 15px;
}

.referral-features li svg {
  width: 24px;
  height: 24px;
}


.available-username-container {
  display: block !important;
  width: 100% !important;
  font-size: 11px;
  color: var(--bs-black-03);
  font-weight: var(--fw-regular);
  margin: 6px 0;
  text-align: left;
}

.username-availability {
  color: var(--bs-black);
  font-weight: var(--fw-medium);
}

/* Address Grid Container */
.address-grid-container {
  border: 0.03rem solid var(--bs-black-01);
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
  margin-bottom: 24px;
}

.address-grid-container .form-control,
.address-grid-container .form-select {
  border: none !important;
}

.address-grid-container .form-control:focus,
.address-grid-container .form-select:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Shared Clean Input Style */
.clean-input {
  border: none;
  width: 100%;
  background: transparent;
}

.clean-input:focus {
  outline: none !important;
}

.pincode-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.03rem solid var(--bs-black-01);
  position: relative;
}

.pincode-row .input-wrapper {
  flex-grow: 1;
}

.pincode-status {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #e30000;
  font-size: 12px;
  padding-right: 12px;
  white-space: nowrap;
  font-weight: 400;
}

.pincode-status svg {
  font-size: 0.8rem;
}

/* Row 2: City & State Specifics */
.city-state-row-inner {
  display: flex;
}

.city-col {
  flex: 1;
  border-right: 0.03rem solid var(--bs-black-01);
}

.state-col {
  flex: 1;
  position: relative;
}

.state-col .form-select {
  border-radius: 0;
}

.address-stack {
  border: 0.03rem solid var(--bs-black-01);
  overflow: hidden;
  border-radius: 12px;
}

.address-stack .form-control {
  border: none;
  border-radius: 0 !important;
  border-bottom: 0.03rem solid var(--bs-black-01);
}

.address-stack .form-control:last-child {
  border-bottom: none;
}

.address-stack .form-control:focus {
  position: relative;
  z-index: 2;
}


.form-title-container {
  margin-bottom: 40px;
}

.form-title-container h1 {
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  color: var(--bs-black);
  margin-bottom: 20px;
  line-height: 1;
}

.form-title-container p {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  color: var(--bs-black-06);
  line-height: 1;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .open-product-card {
    padding: 18px;
  }

  .open-product-summary-detail {
    gap: 10px;
  }

  .open-product-sub-total {
    margin-bottom: 5px;
  }

  .form-title-container {
    margin: 25px 0;
  }

  .form-title-container h1 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {

  .referral-container {
    padding: 15px;
    width: 100%;
  }

  .referral-card {
    padding: 15px;
  }

  .referral-card h1 {
    font-size: 24px;
  }

  .referral-card p {
    font-size: var(--fs-13);
  }

  .referral-features {
    margin: 20px 0;
  }

  .refer-heading {
    margin-bottom: 15px;
  }

  .refer-heading {
    font-size: var(--fs-14);
  }

  .referral-features li {
    margin-bottom: 10px;
    font-size: var(--fs-13);
  }

  .referral-card {
    flex-wrap: wrap;
  }

  #username_checker_icon.right-icon {
    top: 35px;
  }

  .fa-xmark:before {
    margin-top: 1px !important;
    margin-right: 1px;
  }

  .loader-username-checker {
    top: 35px;
  }

  .user-info-card {
    padding: 18px;
  }

  .user-info-content p {
    font-size: var(--fs-13);
  }

  .form-title-container h1 {
    font-size: var(--fs-16);
  }

  .form-title-container p {
    font-size: var(--fs-13);
    line-height: 1.5;
  }

}

@media (max-width: 575px) {
  .open-product-card {
    padding: 14px;
  }

  .open-product-summary-detail {
    flex-direction: column;
  }

  .form-title-container {
    margin: 18px 0;
  }
}