@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "Poppins", sans-serif;
  background: #122119;
  line-height: 1.5;
  color: #FFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

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

/* ================= OVERLAY ================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* -------------- dashboard ------------- */
.admin-wrapper {
  display: flex;
}

aside {
  width: 300px;
  height: 100vh;
  background: #0C1712;
  box-shadow: 10px 0px 34px 0px #00000026;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  transition: transform 0.3s ease;
  z-index: 1050;
}

body.sidebar-open {
  overflow: hidden;
}

.admin-brand {
  padding: 16px 0;
  border-bottom: 1px solid #FFFFFF33;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.admin-menu {
  padding: 24px 20px 0;
}

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

.admin-menu ul li {
  display: block;
  margin-bottom: 10px;
}

.admin-menu ul li a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #BEBEBE;
}

.admin-menu ul li a.active,
.admin-menu ul li a:hover {
  color: #FFFFFF;
  background: #EBD39B1A;
}

.admin-menu ul li a.active svg path,
.admin-menu ul li a:hover svg path {
  stroke: #EBD39B;
}

.mob-menu-item {
  display: none !important;
}

/* -------------- main area right side --------------- */
.main-area {
  margin-left: 300px;
  width: 100%;
}

/* -------------- header ----------------- */
.admin-header {
  position: fixed;
  top: 0;
  left: 300px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1040;
  background: #FFFFFF1A;
  border-bottom: 1px solid #FFFFFF33;
  backdrop-filter: blur(84px);
  padding: 13px 40px;
  height: 80px;
}

.header-lft {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidemenu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  padding: 0;
}

.main-title {
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Notification */
.notification {
  position: relative;
  cursor: pointer;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #F93C65;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F93C659C;
  width: 18px;
  height: 18px;
  min-width: 18px;
}

/* create button */
.create-btn {
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  padding: 14px 18px;
  display: flex;
  gap: 5px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-btn:hover {
  background: linear-gradient(206.1deg, #8B6F3D 15.25%, #EBD39B 79.27%);
  color: #fff;
}

/* Profile */
.profile-menu {
  display: flex;
  align-items: center;
  gap: 7px;
}

.profile-menu img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
}

.profile-menu h4 {
  font-weight: 600;
  font-size: 15px;
  color: #FFF;
  margin-bottom: 2px;
}

.logout-btn {
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  display: block;
  margin: 0;
  background: transparent;
}

.logout-btn:hover {
  color: #F93C65;
}

/*-------------  page content body ------------ */
.page-content-area {
  padding: 120px 40px 40px;
  min-height: 100vh;
  position: relative;
}

/* ----------------- Notification --------------- */
.sec-title-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sec-title {
  font-weight: 600;
  font-size: 22px;
  color: #FFF;
  margin: 0;
}

.mark-read-btn {
  font-weight: 500;
  font-size: 15px;
  color: #EBD39B;
  background: transparent;
  border: none;
  transition: all .3s ease;
  padding: 0;
}

.mark-read-btn:hover {
  opacity: .7;
}

.notification-card {
  background: #FFFFFF1A;
  border: 1px solid #DDDDDD1F;
  backdrop-filter: blur(84px);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  position: relative;
}

.notification-card:hover {
  border: 1px solid #dddddd4a;
}

.unread {
  opacity: 0.5;
}

.notification-card:last-child {
  margin-bottom: 0;
}

.notify-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBD39B14;
}

.notify-icon svg {
  width: 30px;
  height: 30px;
}

.notify-txt p {
  font-weight: 400;
  font-size: 16px;
  color: #FFF;
  margin-bottom: 3px;
}

.notify-txt span {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

/* -------------------- dashboard ----------------- */
.col-grid-three {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.deal-update-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #FFFFFF1A;
  backdrop-filter: blur(54px);
  box-shadow: 0px 8px 14px 0px #00000040;
  padding: 20px 15px;
  border-radius: 12px;
  margin-bottom: 0px;
}

.deal-update-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBD39B33;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 7px;
}

.deal-update-txt strong {
  font-weight: 700;
  font-size: 24px;
  color: #EBD39B;
}

.deal-update-txt p {
  font-weight: 400;
  font-size: 14px;
  color: #FFF;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-update-txt {
  width: 100%;
}

.deal-update-txt span {
  font-weight: 500;
  font-size: 14px;
  color: #10CF10;
  display: block;
}

/* wrapper controls chart height */
.chart-wrapper {
  position: relative;
  background: #00000070;
  border: 1px solid #E8ECEF0F;
  backdrop-filter: blur(104px);
  border-radius: 12px;
  margin-bottom: 30px;
  width: 100%;
}

.chart-card {
  height: 100%;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.chart-card canvas {
  width: 100% !important;
  height: 300px !important;
}

.chart-wrapper h2 {
  font-weight: 600;
  font-size: 24px;
  color: #FFF;
  margin-bottom: 1px;
}

.chart-wrapper p {
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  margin-bottom: 12px;
}

.chart-wrapper p strong {
  font-weight: 600;
  color: #EBD39B;
}

.deal-grid-three {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.deal-box {
  background: #FFFFFF1A;
  backdrop-filter: blur(54px);
  box-shadow: 0px 9px 24px 0px #00000040;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.deal-grid-three .deal-box {
  margin-bottom: 0;
}

.deal-img-area {
  margin-bottom: 18px;
}

.deal-img-area img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
}

.deal-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  flex-wrap: wrap;
}

.deal-dscnt {
  font-weight: 400;
  font-size: 13px;
  background: #EBD39B33;
  color: #EBD39B;
  padding: 2px 10px;
  border-radius: 90px;
  text-align: center;
  display: block;
}

.deal-dscnt b {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.deal-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 13px;
  color: #FFF;
}

.deal-txt {
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 7px;
}

.deal-user {
  display: flex;
  align-items: center;
  gap: 5px;
}

.deal-user svg {
  width: 16px;
  height: 16px;
}

.deal-user p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 13px;
  color: #FFF;
}

.deal-user p b {
  font-weight: 700;
}

.deal-prize {
  display: flex;
  align-items: center;
  gap: 5px;
}

.deal-prize span {
  font-weight: 600;
  font-size: 19px;
  color: #EBD39B;
  display: inline-block;
}

.deal-prize strike {
  font-weight: 400;
  font-size: 13px;
  color: #BEBEBE;
}

.create-deal-card {
  background: linear-gradient(206.1deg, #677E6E 15.25%, #2B4037 79.27%);
  padding: 25px 40px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  flex-flow: column;
  text-align: center;
}

.create-deal-card img {
  margin-bottom: 13px;
}

.create-deal-card h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
  color: #FFF;
}

.create-deal-card p {
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 13px;
  color: #BEBEBE;
}

.create-deal-btn {
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  padding: 10px 20px;
  display: flex;
  gap: 5px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-deal-btn:hover {
  background: linear-gradient(206.1deg, #8B6F3D 15.25%, #EBD39B 79.27%);
  color: #fff;
}

.view-all-btn {
  font-weight: 500;
  font-size: 15px;
  color: #EBD39B;
  background: transparent;
  border: none;
  transition: all .3s ease;
  padding: 0;
}

.view-all-btn:hover {
  color: #fff;
}

.update-list-card {
  background: #00000033;
  border: 1px solid #FFFFFF1A;
  border-radius: 18px;
  padding: 20px;
  margin-top: 20px;
}

.update-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.update-title h3 {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 0;
}

.update-card {
  background: #FFFFFF0D;
  backdrop-filter: blur(54px);
  box-shadow: 0px 9px 24px 0px #00000040;
  border-radius: 17px;
  padding: 15px;
  display: flex;
  gap: 11px;
  margin-bottom: 10px;
}

.update-card:last-child {
  margin-bottom: 0;
}

.update-icon {
  background: #EBD39B33;
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.update-txt p {
  font-weight: 500;
  font-size: 15px;
  color: #FFF;
  margin-bottom: 3px;
}

.update-txt span {
  font-weight: 400;
  font-size: 13px;
  color: #BEBEBE;
  display: block;
}

/* -------------- my deals ------------------- */
.deals-tabs-wrapper {
  border: 1px solid #FFFFFF4D;
  border-radius: 900px;
  padding: 8px;
  width: fit-content;
  background: transparent;
}

.deals-tabs .nav-link {
  border-radius: 900px;
  padding: 11px 28px;
  background: transparent;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.deals-tabs .nav-link.active {
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  color: #fff;
}

.deals-tabs .nav-link:focus {
  box-shadow: none;
}

.deals-tabs .count {
  margin-left: 6px;
}

/* ----------------- view lay out ------------------- */
.sec-right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

.view-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.view-btn {
  background: transparent;
  border: none;
  padding: 0;
}

.view-btn svg {
  width: 32px;
  height: 32px;
}

.view-btn.active svg path {
  stroke: #EBD39B;
}

/* -------------------- List view --------------------- */
.grid-layout .deal-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.list-layout .deal-box {
  display: flex;
  flex-flow: row;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
}

.deal-dtls-body {
  width: 100%;
}

.list-layout .row .col-xxl-3,
.list-layout .row .col-xl-4,
.list-layout .row .col-lg-4,
.list-layout .row .col-md-6,
.list-layout .row .col-sm-6 {
  flex: 0 0 auto;
  width: 50% !important;
}

.deal-img-area img {
  width: 115px;
  min-width: 115px;
  height: 115px;
  border-radius: 8px;
}

.list-layout .deal-img-area {
  margin-bottom: 0;
}

.deals-container .deal-img-area {
  margin-bottom: 0;
}

/* ---------------- profile ------------------ */
.profile-info-bx {
  background: #00000078;
  border: 1px solid #FFFFFF4D;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  /* important */
  gap: 20px;
}

.usr-info-lft {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-info-bx img {
  width: 90px;
  min-width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.usr-info-lft h4 {
  font-weight: 600;
  font-size: 22px;
  color: #EBD39B;
  margin-bottom: 1px;
}

.usr-info-lft p {
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.user-stats-box {
  background: #FFFFFF0D;
  border: 1px solid #E8ECEF0F;
  backdrop-filter: blur(104px);
  box-shadow: 0px 8px 14px 0px #00000040;
  border-radius: 12px;
  padding: 6px 12px;
}

.user-stats-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-stats-box ul li {
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #F7F8FC;
  padding-right: 25px;
  border-right: 1px solid #E8ECEF4D;
  min-width: 207px;
}

.user-stats-box ul li:last-child {
  border-right: 0;
  padding-right: 0;
}

.user-stats-box ul li span {
  color: #EBD39B;
  font-weight: 700;
  font-size: 18px;
  display: block;
}

.profile-menu-bx {
  background: #00000078;
  padding: 20px;
  border: 1px solid #FFFFFF4D;
  border-radius: 25px;
  position: relative;
}

.profile-plan-bx {
  background: linear-gradient(206.1deg, #677E6E 15.25%, #2B4037 79.27%);
  padding: 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.profile-plan-dtls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  background: linear-gradient(206.1deg, #677E6E 15.25%, #2B4037 79.27%);
}

.plan-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 50%;
}

.profile-plan-dtls h4 {
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.profile-plan-dtls p {
  font-weight: 400;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}

.notify-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.notify-alert span {
  background: #FFFFFF1C;
  backdrop-filter: blur(7.4666666984558105px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
}

.notify-item-lft {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notify-item-lft h6 {
  font-weight: 400;
  font-size: 16px;
  color: #FFF;
  margin-bottom: 0;
}

/* toggle switch button */
.switch-btn {
  margin: 0 0;
  padding: 0;
  position: relative;
  border: none;
  height: 12px;
  width: 31px;
  border-radius: 90px;
  background: rgba(235, 211, 155, 0.20);
}

.switch-btn.active {
  background: rgba(235, 211, 155, 0.20);
}

.switch-btn>.handle {
  position: absolute;
  top: -3px;
  left: 0px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #FFF;
  transition: left 0.25s;
  box-shadow: 0px 2px 4px 0px #00000040;
}

.switch-btn.active>.handle {
  left: 16px;
  transition: left 0.25s;
  background: #EBD39B;
}

.profile-menu-list {
  background: #FFFFFF10;
  border: 1px solid #FFFFFF21;
  backdrop-filter: blur(96.95466613769531px);
  padding: 10px 14px;
  border-radius: 15px;
}

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

.profile-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
}

.profile-menu-list ul li:last-child .profile-item {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.profile-menu-list ul li:last-child .profile-item::after {
  display: none;
}

.profile-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.profl-item-lft {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profl-item-lft h6 {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.profile-item.active h6 {
  color: #EBD39B;
}

.delete-acnt-btn {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  display: block;
  color: #FF6565;
  margin: 24px auto 0;
  background: transparent;
  border: none;
}

/* ------------------ Edit Profile ----------------- */
.profile-dtls-bx {
  background: #FFFFFF1A;
  box-shadow: 0px 9px 24px 0px #00000040;
  backdrop-filter: blur(54px);
  border-radius: 13px;
  padding: 20px 30px;
  position: relative;
}

.profile-header {
  margin-bottom: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EBD39B;
  padding-bottom: 10px;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-header h2 {
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 0;
  white-space: nowrap;
}

/* outer ring */
.profile-photo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 5px;
  margin: auto;
  border: 1px solid #0303011A
}

/* image */
.profile-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* upload button */
.upload-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(206.1deg, #677E6E 15.25%, #2B4037 79.27%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 7;
  border: 7px solid #1E2B25;
  margin: 0;
}

.upload-btn svg {
  display: block;
}

.profile-wrapper span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  display: block;
  margin: 15px auto 20px;
  text-align: center;
}

/* --------------- Profile form ---------------- */
.profile-form {
  width: 100%;
}

.main-profile-edit {
  max-width: 482px;
  margin: auto;
}

.profile-form .form-group {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.profile-form .input_group_include {
  width: 100%;
  position: relative;
}

.profile-form .form-control {
  background: #FFFFFF21;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  border-radius: 16px;
  padding: 13px 16px;
  position: relative;
  color: #FFF;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02rem;
}

/* Placeholder */
.profile-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  /* Important for Firefox */
}

.profile-form input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.profile-form .field_filled .form-control {
  border-color: #EBD39B;
}

.profile-form .field_filled .form-icon svg g {
  opacity: 1;
}

.form-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 13px 15px;
}

.error {
  font-weight: 400;
  font-size: 14px;
  color: #F93C65;
  display: none;
}

.profile-form .form-control:focus {
  box-shadow: none;
  border-color: #EBD39B;
}

.profile-form h3 {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin: 10px 0 8px;
}

.field-grp {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ------ intel --------- */
.iti {
  display: block;
}
/* 
.iti__flag {
  display: none;
} */

.iti__selected-country {
  flex-flow: row-reverse;
  padding: 0 0 0 15px;
  border-right: 1px solid #FFFFFF1A;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  color: rgba(0, 0, 0, 0.40);
}

.iti__arrow {
  border: none !important;
  background: url(../images/admin/intel-arrow.svg) no-repeat;
  width: 16px !important;
  height: 8px !important;
}

.iti__flag-box,
.iti__country-name {
  color: #121212;
}

.form-group-field {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iti .iti__selected-dial-code {
  margin-left: 0;
}

/* ------------------- privacy policy  & terms condition  -----------------*/
.policy-blog {
  position: relative;
}

.policy-blog p {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.policy-blog p:last-child {
  margin-bottom: 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 25px;
  align-items: start;
}

/* ----------------- modal --------------- */
.profile-modal .modal-content {
  background: #2B4037;
  border-radius: 21px;

}

@media (min-width: 576px) {
  .profile-modal .modal-dialog {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
  }
}

.profile-modal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px 25px 0 0;
  background: transparent;
  z-index: 1;
}

.profile-modal .btn-close:hover svg path {
  stroke: #FFF;
}

.profile-modal .modal-body {
  padding: 45px 25px 25px;
}

.profile-modal h4 {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.modal-btn-grp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.no-btn {
  border: 1px solid #EBD39B;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  color: #EBD39B;
  padding: 14px 46px;
  display: block;
  text-align: center;
  width: fit-content;
  border-radius: 16px;
}

.no-btn:hover {
  color: #FFF;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
}

.yes-btn {
  border: 1px solid #EBD39B;
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  padding: 14px 46px;
  display: block;
  text-align: center;
  width: fit-content;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  border-radius: 16px;
}

.yes-btn:hover {
  background: linear-gradient(206.1deg, #8B6F3D 15.25%, #EBD39B 79.27%);
}

/* ---------------- Help support --------------- */
.help-support-blog {
  width: 80%;
  margin: 0 auto;
}

.support-txt-area h3 {
  font-weight: 600;
  font-size: 24px;
  color: #FFF;
  margin-bottom: 1px;
}

.support-txt-area p {
  font-weight: 400;
  font-size: 16px;
  color: #BEBEBE;
  margin-bottom: 14px;
}

.contact-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(206.1deg, #677E6E 15.25%, #2B4037 79.27%);
  border-radius: 15px;
  padding: 13px 15px 10px;
  margin-bottom: 12px;
}

.contact-bx h4 {
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 1px;
}

.contact-bx span {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.60);
  display: block;
  margin: 0;
  padding: 0;
}

.contct-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.support-img {
  text-align: center;
}

/* ----------- change Password ------------ */
.toggle-hide-show {
  position: absolute;
  top: 0;
  right: 0;
  margin: 13px 15px;
}

.form-btn {
  padding: 14px 45px;
  text-align: center;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin: 40px auto 0;
  display: block;
  width: fit-content;
  border: none;
}

.profile-form .field_active .toggle-hide-show svg g {
  opacity: 1;
}

.form-btn:hover {
  background: linear-gradient(206.1deg, #8B6F3D 15.25%, #EBD39B 79.27%);
  color: #fff;
}

.profile-form textarea {
  height: 220px;
}

.word-count {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: right;
  display: block;
  margin: 12px 0 0;
}

/* Auto fill color */
/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: #EBD39B33 !important;
  -webkit-box-shadow: 0 0 0px 1000px #EBD39B inset !important;
  -webkit-text-fill-color: #000 !important; 
  transition: background-color 5000s ease-in-out 0s;
} */
select {
  appearance: none;
  background: #FFFFFF21 url(../images/admin/form-arrow.png) no-repeat !important;
}

select.form-control {
  background-position: 95% !important;
  background-size: 15px !important;
}

select option {
  background-color: #2B4037;
  color: #fff;
}

select option:checked,
select option:hover {
  background-color: #2B4037;
  color: #EBD39B;
}

.drop-pin .form-control {
  border: 1px dashed #EBD39B;
  background: #EBD39B33;
  color: #EBD39B;
}

.form-option {
  position: relative;
}

.form-option {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.form-option::before {
  content: '';
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.20);
  width: 100%;
  left: 0;
  top: 0;
  margin: 19px 0;
  z-index: -1;
}

.form-option span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 12px;
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  color: #EBD39B;
  background: #2a3830;
}

/* ---------------- search order --------------- */
.search-order .form-group {
  position: relative;
  margin: 0;
  min-width: 215px;
}

.search-order .form-control {
  background: #FFFFFF21;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  padding: 12px 35px 12px 15px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02rem;
  color: #FFF;
  border-radius: 16px;
}

.search-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 11px 12px;
}

/* ---------------- order deal ----------------- */
.order-deal-bx {
  background: #FFFFFF1A;
  backdrop-filter: blur(54px);
  box-shadow: 0px 9px 24px 0px #00000040;
  border-radius: 13px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ordr-deal-img img {
  object-fit: contain;
  width: 92px;
  height: 92px;
  min-width: 92px;
  border-radius: 7px;
}

.order-deal-bx .deal-txt {
  font-size: 16px;
}

/* ------------ order details ---------------- */
.back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
  color: #FFF;
  transition: color .3s ease;
}

.back-btn:hover {
  color: #EBD39B;
}

.order-details-blog .order-deal-bx {
  margin-bottom: 30px;
}

.order-details-blog .ordr-deal-img img {
  height: 115px;
  width: 173px;
  min-width: 173px;
  border-radius: 8px;
  object-fit: cover;
}

.order-details-blog h3 {
  font-weight: 600;
  font-size: 16px;
  color: #FFF;
  margin-bottom: 16px;
}

.apply-usr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-column-gap: 12px;
  justify-content: start;
}

.apply-usr-bx {
  background: #FFFFFF0D;
  backdrop-filter: blur(54px);
  box-shadow: 0px 9px 24px 0px #00000040;
  padding: 15px;
  border-radius: 13px;
  margin-bottom: 12px;
}

.apply-usr-bx h4 {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.aply-user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aply-user-info p {
  font-weight: 400;
  font-size: 14px;
  color: #BEBEBE;
  margin-bottom: 0;
}

.aply-user-info span {
  font-weight: 600;
  font-size: 14px;
  color: #EBD39B;
  display: block;
}

/* ----------------------- Create Deal using Wizard --------------------- */
/* Layout */
.wizard-wrapper {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard {
  width: 100%;
  /* max-width: 600px; */
}

/* Steps */
.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 600px;
}

/* Step Circle */
.wizard-steps .step {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-steps .circle {
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #FFFFFF1F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  font-family: Poppins;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #A6A6A6;
}

/* Active Step */
.wizard-steps .step.active .circle {
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  color: #fff;
}

/* Connecting Line */
.wizard-steps .line {
  flex: 1;
  height: 2px;
  background: #484848;
  margin: 0 5px;
}

.wizard-steps .step.active .circle {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #fff;
}

/* Content */
.wizard-content {
  min-height: 150px;
  position: relative;
}

.wizard-panel {
  display: none;
  animation: fadeIn 0.4s ease;
  color: #fff;
}

.wizard-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-next,
.add-prodct-btn,
.main-btn {
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  box-shadow: 0px 7px 18px 0px #EBD39B33;
  padding: 15px 40px;
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  border-radius: 16px;
  border: none;
}

.btn-next:hover,
.add-prodct-btn:hover,
.main-btn:hover {
  color: #FFF;
  background: linear-gradient(206.1deg, #8B6F3D 15.25%, #EBD39B 79.27%);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.skp-btn {
  margin-top: 20px;
}

.skp-btn .skip-btn {
  font-size: 16px;
  font-weight: 700;
  color: #EBD39B;
}

/* Responsive */
@media (max-width: 768px) {
  .step-label {
    font-size: 12px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.wizard-panel {
  text-align: center;
}

.wizard-panel h3 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 2px;
  color: #FFFFFF;
}

.wizard-panel p {
  font-weight: 400;
  font-size: 15px;
  color: #757575;
  margin-bottom: 30px;
}

.char-count {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 12px;
  color: #aaa;
}

.profile-form .deal-title textarea {
  height: 82px;
}

.profile-form .deal-descrpt textarea {
  height: 360px;
}

/* ----------- step 3 ------------ */
.no-prodct-data {
  text-align: center;
}

.no-prodct-data img {
  text-align: center;
  margin-bottom: 20px;
}

/* deal type */
.deal-type-areas {
  position: relative;
}

.deal-type-areas h5 {
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: left;
}

.deal-type-card {
  position: relative;
  margin-bottom: 10px;
}

.deal-type-card input {
  display: none;
}

.deal-type-card label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border-radius: 13px;
  cursor: pointer;
  background: #ffffff0d;
  backdrop-filter: blur(54px);
  box-shadow: 0px 9px 24px 0px #00000040;
  transition: 0.3s ease;
}

.radio-icon {
  background: #677E6E;
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.radio-icon svg {
  width: 10px;
  height: 8px;
  transition: 0.3s ease;
}

.deal-type-nm {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #FFFFFF;
  display: block;
  margin: 0;
  padding: 0;
}

/* checked */
/* Checked State */
.deal-type-card input:checked+.radio-icon {
  background: rgba(235, 211, 155, 0.40);
}

.deal-type-card input:checked+.radio-icon svg path {
  fill: #EBD39B;
}

.deal-type-card input:checked~.deal-type-nm {
  color: #fff;
}

/* ------------------- deal review ------------------ */
.success-blog {
  text-align: center;
  /* min-height: 78dvh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.deal-rvw-icon {
  background: linear-gradient(206.1deg, #677E6E 15.25%, #2B4037 79.27%);
  position: relative;
  width: 155px;
  min-width: 155px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  z-index: 1;
}

.deal-rvw-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 50%;
}

.success-blog h3 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.success-blog p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02rem;
  text-align: center;
  color: #BEBEBE;
}

.review-progress {
  width: 100%;
  max-width: 100%;
  margin: 25px auto 35px;
}

.progress-line {
  width: 100%;
  height: 9px;
  background: #EBD39B33;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
  border-radius: 50px;
  transition: width 0.4s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.progress-labels span {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02rem;
  color: rgba(255, 255, 255, 0.3);
}

.progress-labels span.active {
  color: #FFF;
}

/* --------------- add Product modal -------------- */
.deal-modal .modal-content {
  background: #2B4037;
  border-radius: 20px;
}

@media (min-width: 576px) {
  .deal-modal .modal-dialog {
    max-width: 453px;
  }
}

.deal-modal .modal-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.deal-modal .btn-close {
  background: none;
  width: 24px;
  height: 24px;
}

.deal-modal .modal-header h4 {
  font-weight: 600;
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.deal-modal .modal-body {
  padding: 0 20px 20px;
}

/* Upload Card */
.upload-card {
  width: 100%;
  height: 150px;
  border: 1px dashed #EBD39B;
  border-radius: 20px;
  background: #FFFFFF0D;
  backdrop-filter: blur(104px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  overflow: hidden;
}

.upload-content {
  text-align: center;
  color: #e8e8e8;
}

/* Icon Circle */
.upload-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBD39B33;
  border-radius: 50%;
  margin: 0 auto 4px;
}

.upload-content h5 {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  margin-bottom: 4px;
}

.upload-content p {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin: 0;
  color: #BEBEBE;
}

/* Preview Image */
#preview {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 12px;
  display: none;
}

.upload-photo-area {
  margin-bottom: 30px;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: none;
}

.upload-card.has-image .upload-content {
  display: none;
}

.upload-card.has-image .preview-image {
  display: block;
}

/* ---------------------- Step 3: Product Detail ------------------ */
.prodct-deal-bx {
  background: #FFFFFF1A;
  backdrop-filter: blur(54px);
  box-shadow: 0px 9px 24px 0px #00000040;
  padding: 10px;
  display: flex;
  gap: 10px;
  border-radius: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.prodct-deal-lft {
  display: flex;
  gap: 10px;
}

.prodct-deal-img img {
  border-radius: 7px;
  width: 92px;
  min-width: 92px;
  height: 92px;
  object-fit: contain;
}

.prodct-deal-txt {
  text-align: left;
}

.prodct-type {
  background: #EBD39B1A;
  padding: 3px 8px;
  font-weight: 500;
  font-size: 10px;
  color: #EBD39B;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  width: fit-content;
  border-radius: 90px;
}

.prodct-deal-txt h4 {
  font-weight: 600;
  font-size: 13px;
  color: #FFF;
  margin-bottom: 5px;
}

.prodct-deal-txt p {
  font-weight: 400;
  font-size: 12px;
  color: #BEBEBE;
  margin-bottom: 0;
}

.prodct-check {
  background: rgba(103, 126, 110, 0.4);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide check icon by default */
.prodct-check svg path {
  fill: #677E6E;
}

/* When selected */
.deal-checkbox:checked+.prodct-deal-lft+.prodct-check {
  background: rgba(235, 211, 155, 0.40);
}

.deal-checkbox:checked+.prodct-deal-lft+.prodct-check svg path {
  fill: #EBD39B;
}

/* Optional: Active card highlight */
/* .prodct-deal-bx:has(.deal-checkbox:checked) {
  border: 1px solid #EBD39B;
} */

.feature-deals-bx .grid-layout .deal-img-area img {
  width: 100%;
  min-width: unset;
  border-radius: 14px;
  object-fit: cover;
  height: auto;
}

.feature-deals-bx .grid-layout .deal-img-area {
  width: 100%;
}

.feature-deals-bx .grid-layout .deal-box {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
}

.similar-deals-slider-row .deal-img-area img {
  width: 100%;
  height: auto;
}

.similar-deals-slider-row .feature_txt p {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.profile-form-two .deal-img-area img {
  width: 100%;
  height: auto;
}

.qx-tab-wrapper .nav-tabs {
  border-bottom: unset;
}

/************* vipul 08/04/26 css start **************************/


.page-content-area-new {
  height: calc(100% - 80px);
  padding: 130px 25px 25px;
}


.page-content-area-new .wizard-steps .step.active .circle {
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);

}

.page-content-area-new .wizard-steps .line {
  opacity: 30%;
}

.page-content-area-new .wizard-steps {
  margin: 0 auto 60px;
}

.page-content-area-new .wizard-panel h3 {
  margin-bottom: 30px;
}

.page-content-area-new .wizard-actions {
  display: flex;
  max-width: 284px;
  margin: 60px auto auto;
  gap: 30px;
}

.page-content-area-new .wizard-actions .btn-next {
  margin-top: 0;
}


.page-content-area-new .wizard-actions .btn-prev {
  padding: 14px 29px;
  border: 1px solid #EBD39B;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  color: #EBD39B;
  display: block;
  text-align: center;
  width: fit-content;
  border-radius: 16px;
}

.page-content-area-new .wizard-actions .btn-prev:hover {
  color: #FFF;
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
}


.card-radio input:checked~.radio {
  border-color: #ebd39b;
}

.card-radio input:checked~.radio::after {
  opacity: 1;
}

.card-radio input {
  display: none;
}

.card-radio:has(input:checked) {
  border-color: #ebd39b;
}

.card-radio input:checked~.radio {
  border-color: #ebd39b;
}

.radio-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 15px;
}

.card-radio input[type="radio"]:checked+.content .radio {
  border-color: #ebd39b;

}

.card-radio input[type="radio"]:checked+.content .radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ebd39b;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.field-grp-radio .form-group-radio {
  width: 100px;
}

.card-radio .text p {
  color: #fff;
}

.form-group-nmbr {
  width: 160px !important;
}

.profile-form .form-control .custom-select {
  color: rgba(255, 255, 255, 0.5);
}

.nmbr-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 1;
}

.field-grp-nm-tx .form-group-nm-tx {
  width: 116px;
}

.form-group-tx {
  max-width: 180px;
}

.form-group-tx p {
  margin: 0;
  color: #FFFFFF;
}

.form-group-nm-tl {
  max-width: 116px;
}

.field-grp-ngp {
  justify-content: space-between;
}

.grp-ngp-in {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-group.form-group-dlt {
  width: 56px;
}

.form-group-dlt .dlt-field,
.add-field {
  display: block;
}



/* ----------------NEW ----------------- */
/* ============================================================
   STEP 6 — REVIEW DEAL  (two-column grid layout)
   ============================================================ */

/* Page title */
.rvw-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 28px;
}

/* Two-column grid */
.rvw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
  text-align: left;
}

/* Each card panel */
.rvw-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.rvw-card:last-child {
  margin-bottom: 0;
}

.rvw-card-title {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

/* Remove bottom margin on last form-group inside a review card */
.rvw-card .profile-form .form-group.mb-0 {
  margin-bottom: 0;
}

/* Input with trailing button (delete / add) */
.rvw-input-with-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rvw-input-with-btn .form-control {
  flex: 1;
}

/* Input with trailing icon (calendar) */
.rvw-input-with-icon {
  position: relative;
}

.rvw-input-with-icon .form-control {
  padding-right: 40px;
  font-size: 14px;
  border-radius: 16px;
}

.input_group_include.rvw-input-with-icon .form-control {
  border-radius: 16px;
}

.rvw-field-icon {
  position: absolute;
  right: 12px;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* Icon buttons — delete (red) and add (gold) */
.rvw-icon-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.rvw-icon-btn:hover {
  opacity: 0.85;
}

.rvw-icon-btn--danger {
  background: radial-gradient(100% 100% at 50% 0%, #FF7777 0%, #FF3F3F 100%);

}

.rvw-icon-btn--danger svg {
  width: 25px;
  height: 25px;
}

.rvw-icon-btn--add {
  background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
}

.rvw-icon-btn--add svg {
  width: 21px;
  height: 21px;
}

/* Deal type info row (description + dollar badge) */
.rvw-deal-type-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.rvw-deal-type-info p {
  font-size: 13px;
  color: #BEBEBE;
  margin: 0;
  line-height: 1.5;
}

.rvw-deal-type-num {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 9px 20px;
  flex-shrink: 0;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2px;
  text-align: center;

}

/* Date inputs side by side */
.rvw-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rvw-date-row .input_group_include {
  width: 100%;
}

/* Deal image thumbnail with delete button */
.rvw-img-upload {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvw-img-upload::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #0000004D; */

}

.rvw-deal-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.rvw-img-del-btn {
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  background: #0000004D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid #FFFFFF1A;
}

.rvw-img-del-btn:hover {
  background: rgba(200, 50, 50, 0.8);
}

/* Locations label */
.rvw-loc-label {
  font-size: 13px !important;
  color: #EBD39B !important;

  margin-bottom: 12px !important;
  text-align: center;
}

/* Actions row */
.rvw-actions {
  max-width: 284px !important;
  margin: 30px auto 0 !important;
}

.rvw-card input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.profile-form select.form-control {
  background-position: 96% !important;
}

/* Responsive */
@media (max-width: 991px) {
  .rvw-grid {
    grid-template-columns: 1fr;
  }

  .rvw-date-row {
    grid-template-columns: 1fr;
  }
}







.discount-text {
  color: #fff !important;
}

.percentage-discount .input_group_include {
  width: 145px;
}

.percentage-discount .form-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.percentage-discount .input_group_include {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.percentage-discount-dollar .input_group_include {
  width: 116px;
  margin: 0 auto;
}

.discount-text-yel {
  color: #EBD39B;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

.percentage-discount-items .input_group_include {
  width: 177px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.percentage-discount-items .input_group_include {
  width: 177px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}






/*****************************   15-04-2026   **************************/


.percentage-receive-discount .input_group_include {
  width: 145px;
}

.rvw-img-upload {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF21;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
}

.upload-placeholder {
  text-align: center;

}

.upload-placeholder p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #fff;
}


/* Image */
.rvw-deal-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Delete Button */
.rvw-img-del-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}


.wizard-step-five .rvw-card {
  background: unset;
}


/* distrubute dashboard css */

.zb_modal_wrapper {
  background: #2f4a3f;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  border: none;
}

.zb_modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.zb_close_btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
}

/* map */

.zb_map_box {
  position: relative;
}

.zb_map_area {
  width: 100%;
  border-radius: 22px;
  border: 10px solid #FFF3;
  max-width: 512px;
  box-shadow: 0px 4px 15px 0px #00000040;

}

.zb_map_area iframe {
  border-radius: 12px;
}

.zb_location_btn {
  position: absolute;
  top: 25px;
  right: 36px;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* upload button */

.zb_upload_wrap {
  text-align: center;
  margin-top: 25px;
}

.zb_upload_btn {
  background: linear-gradient(180deg, #d7b276, #b99052);
  border: none;
  padding: 12px 40px;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
}

.zb_modal_body .col-lg-1 {
  display: grid;
  place-items: center;
}

.book-location-modal {
  display: flex;
  gap: 8px;
  padding: 15px;
  background: #00000033;
  border: 1px solid #FFFFFF1F;
  backdrop-filter: blur(120px);
  border-radius: 13px;
  margin-top: 30px;
}

.book-location-modal h3 {
  font-size: 16px;
  font-weight: 600;
}

.book-location-modal p {
  margin: 0;
  font-size: 14px;
}

.setup-flow-section .profile-form .gp-add-address {
  display: flex;
  justify-content: space-between;
  background: #EBD39B33;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  color: #EBD39B;
  margin-bottom: 18px;
  border-radius: 16px;
  padding: 11px 16px;
}

.setup-flow-section .success-blog {
  min-height: unset;
}

/* add address modal in distributor profile end */

.deal-flx_end{
  display: flex;
  align-items: center;
  gap: 20px;
}
.deal_pts {
    display: flex;
    align-items: center;
    grid-gap: 6px;
    font-weight: 500;
    font-size: 13.64px;
       color: #ACC7B4;
    position: relative;
}
.deal_pts::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -12px;
    background: #EBD39B;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.deal-txt-sm {
    font-weight: 400;
    font-size: 14px;
    color: #BEBEBE;
    margin-bottom: 3px;
}
.deal-box1 .deal-txt {
    margin-bottom: 0px;
}
.contact-section {
  padding: 80px 0 120px;

}
/* .contact-wrap {
  gap: 30px;
} */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #FFFFFF0A;
  border: 1px solid #FFFFFF33;
  border-radius: 21px;
  box-shadow: 0px 10px 24px 0px #0000004D;
  backdrop-filter: blur(54px);

}

.contact-card .card-body h6{
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 5px;

}
.contact-card .card-body a{
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  margin-bottom: 0;
  vertical-align: middle;

}
.contact-form-card{
  background: #FFFFFF0D;
  backdrop-filter: blur(44px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.contact-form-card .form-head h3{

  font-weight: 600;
  font-size: 30px;
  color: #fff;
  margin: 0 0 5px 0;

}
.contact-form-card .form-head p{

  font-weight: 400;
  font-size: 18px;
  color: #BEBEBE;
  margin-bottom: 18px;
}
.contact-form .form-group{
  position: relative;
  margin-bottom: 15px;
}
.contact-icon{
  position: absolute;
  top: 0;
  right: 0;
  margin: 12px 16px 0 0;

}
.contact-form .form-input{
  width:100%;
  padding:14px 16px;
  background: #FFFFFF21;
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  color:#e6efe6;
  border-radius:16px;
  outline:none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.8px;

}
.contact-form .form-input::placeholder{color:#9aa89a}
.contact-form .textarea{resize:vertical}
.phone-row{display:flex;gap:10px}
.cmn_btn {
    background: linear-gradient(206.1deg, #EBD39B 15.25%, #8B6F3D 79.27%);
    padding: 14px 30px;
    display: block;
    width: fit-content;
    border-radius: 15px;
    font-weight: 700;
    color: #fff;
    border: none;
}
.cmn_btn:hover {
    background: linear-gradient(206.1deg, #8B6F3D 15.25%, #EBD39B 79.27%);
    color: #fff;
}