@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*  Basic Css  */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.no-scroll{
  overflow: hidden;
}
a, a:focus {
  text-decoration: none;
  -webkit-text-decoration: none;
  color: var(--black-color);
}
p, h1, h2, h3, h4, h5, h6, .p, .h1, .h2, .h3, .h4, .h5, .h6{
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body{
  background: #F6F8FD;
  font-family: "Nunito Sans", sans-serif;
}
::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

:root {
  --primary-color: #699c35;
  --primary-lightcolor: #699c3526;
  --secondary-color: #FF9B01;
  --title-color: #1E1E1E;
  --subtitle-color: #586169;
  --border-color: #DDE2E5;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --white-color-p70: #ffffffb3;
  --green-color-n: #00A569;
  --saleText-color: #DD4949;
  --error-color: #F03D3E;
  --payment-color: #50B748;
  --accept-bgcolor: #CDFDE6;
  --accept-textcolor: #18CB75;
}

/* scrollbar css settings*/
::-webkit-scrollbar {
  width: 6px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  border-radius: 8px;
}
::-moz-scrollbar {
  width: 6px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
::-moz-scrollbar-track {
  border-radius: 8px;
}
::-moz-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
::-moz-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* progress bar bottom to top  */
.progress-wrap {
  position: fixed;
  right: 20px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 10px;
  z-index: 999;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  bottom: 26px;
  background: var(--primary-color);
}
.progress-wrap:hover{
  background: var(--secondary-color);
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  content: "";
  position: absolute;
  -webkit-mask: url("https://api.iconify.design/fluent:arrow-up-16-filled.svg") no-repeat center;
  background-color: currentColor;
  text-align: center;
  color: var(--white-color);
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  animation: heartbeat 2s infinite;
  background-position: center;
  font-size: 28px;
}
.progress-wrap:hover::after {
  opacity: 1;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--var(--white-color));
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@keyframes heartbeat {
  0% {
    transform: scale(0.85);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1.1);
  }
}

/* font family use for html class  */
.fw-normal4 {
  font-family: "Unna", serif;
  font-weight: 400;
}
.fw-normal6 {
  font-family: "Unna", serif;
  font-weight: 600;
}
.fw-3 {
  font-weight: 300;
}
.fw-4 {
  font-weight: 400;
}
.fw-5 {
  font-weight: 500;
}
.fw-6 {
  font-weight: 600;
}
.fw-7 {
  font-weight: 700;
}
.fw-8 {
  font-weight: 800;
}

/* Color And Background-Color Use for Html  */
.primary-color-n {
  color: var(--primary-color);
}
.primary-bgcolor-n {
  background: var(--primary-color);
}
.primary-lightcolor-n {
  color: var(--primary-lightcolor);
}
.primary-bglightcolor-n {
  background: var(--primary-lightcolor);
}
.secondary-color-n {
  color: var(--secondary-color);
}
.secondary-bgcolor-n {
  background: var(--secondary-color);
}
.title-color-n {
  color: var(--title-color);
}
.title-bgcolor-n {
  background: var(--title-color);
}
.subtitle-color-n {
  color: var(--subtitle-color);
}
.subtitle-bgcolor-n {
  background: var(--subtitle-color);
}
.border-color-n {
  color: var(--border-color);
}
.white-color-n {
  color: var(--white-color);
}
.white-bgcolor-n {
  background: var(--white-color);
}
.white-color70-n{
  color: var(--white-color-p70);
}
.white-bgcolor70-n{
  background: var(--white-color-p70);
}
.black-color-n {
  color: var(--black-color);
}
.black-bgcolor-n {
  background: var(--black-color);
}
.green-color-n {
  color: var(--green-color-n);
}
.green-bgcolor-n {
  background: var(--green-color-n);
}
.saleText-color-n{
  color: var(--saleText-color);
}
.saleText-bgcolor-n{
  background: var(--saleText-color);
}
.error-color-n{
  color: var(--error-color);
}
.error-bgcolor-n{
  background: var(--error-color);
}
.payment-bgcolor {
  background: var(--payment-color);
}

/* font size use for html  */
.fts-68{
  font-size: 68px;
}
.fts-62{
  font-size: 62px;
}
.fts-58{
  font-size: 58px;
}
.fts-52{
  font-size: 52px;
}
.fts-50{
  font-size: 50px;
}
.fts-44{
  font-size: 44px;
}
.fts-38{
  font-size: 38px;
}
.fts-36{
  font-size: 36px;
}
.fts-32{
  font-size: 32px;
}
.fts-28{
  font-size: 28px;
}
.fts-24{
  font-size: 24px;
}
.fts-20{
  font-size: 20px;
}
.fts-18{
  font-size: 18px;
}
.fts-16{
  font-size: 16px;
}
.fts-15{
  font-size: 15px;
}
.fts-14{
  font-size: 14px;
}
.fts-13{
  font-size: 13px;
}
.fts-12{
  font-size: 12px;
}
.fts-10{
  font-size: 10px;
}

@media only screen and (max-device-width: 1400px){
  .fts-16 {
    font-size: 15px;
  }
  .fts-15 {
    font-size: 14px;
  }
  .fts-14{
    font-size: 13px;
  }
}

@media only screen and (max-device-width: 768px){
  .fts-68{
    font-size: 30px;
  }
  .fts-62{
    font-size: 29px;
  }
  .fts-58{
    font-size: 28px;
  }
  .fts-52{
    font-size: 28px;
  }
  .fts-50{
    font-size: 28px;
  }
  .fts-44{
    font-size: 28px;
  }
  .fts-38{
    font-size: 28px;
  }
  .fts-36{
    font-size: 26px;
  }
  .fts-32{
    font-size: 26px;
  }
  .fts-28{
    font-size: 20px;
  }
  .fts-24{
    font-size: 20px;
  }
  .fts-20{
    font-size: 18px;
  }
  .fts-18{
    font-size: 16px;
  }
  .fts-16{
    font-size: 15px;
  }
  .fts-15{
    font-size: 14px;
  }
  .fts-14{
    font-size: 13px;
  }
  .fts-13{
    font-size: 12px;
  }
  .fts-12{
    font-size: 11px;
  }
  .fts-10{
    font-size: 9px;
  }
}

.letter-spacing-1{
  letter-spacing: 1px;
}
.break-word{
  word-wrap: break-word;
}
.cursor-pointer{
  cursor: pointer;
}

/* alert message design */
.alert-message-components{
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(178deg, #da760c0d 0%, hsl(2.16deg 72.77% 37.45% / 5%) 100%);
  border: 1px solid #00000012;
  border-radius: 12px;
  padding: 12px 14px;
  position: relative;
}
.alert-message-components.error{
  background: #ffedef;
  border-color: #fdd9dc;
}
.alert-message-components.success{
  background: #e7f8ea;
  border-color: #d0e4d5;
}
.alert-message-components.warning{
  background: #fff9ec;
  border-color: #f2e3cc;
}
.alert-icon{
  background: linear-gradient(178deg, #da760c0d 0%, hsl(2.16deg 72.77% 37.45% / 5%) 100%);
  border: 1px solid #00000012;
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 28px;
}
.error .alert-icon{
  background: #ff4b58;
  color: var(--white-color);
  box-shadow: 3px 8px 5px 1px #ff3a5a2b;
}
.success .alert-icon{
  background: #00c96c;
  color: var(--white-color);
  box-shadow: 3px 8px 5px 1px #00c96c36;
}
.warning .alert-icon{
  background: #febc4a;
  color: var(--white-color);
  box-shadow: 3px 8px 5px 1px #febc4a30;
}
.alert-contents h4{
  color: var(--title-color);
}
.alert-contents p{
  color: var(--subtitle-color);
}
.alert-message-components .btn-close{
  padding: 0;
  height: 28px;
  width: 28px;
  border-radius: 100%;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--gray3-color);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background: transparent;
  box-shadow: none;
}
.alert-message-components.error .btn-close{
  color: #ff7087;
}
.alert-message-components.success .btn-close{
  color: #15bf78;
}
.alert-message-components.warning .btn-close{
  color: #fec77e;
}
.alert-message-components.default{
  background: linear-gradient(178deg, #da760c0d 0%, hsl(2.16deg 72.77% 37.45% / 5%) 100%);
  border-color: 1px solid #00000012;
}
.alert-icon.default i{
  background: linear-gradient(178deg, #da760c0d 0%, hsl(2.16deg 72.77% 37.45% / 5%) 100%);
  border: 1px solid #00000012;
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary-color);
}

#toast-container {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}

/* Position flags */
.toast-top-right    { top: 20px; right: 20px; }
.toast-top-left     { top: 20px; left: 20px; }
.toast-bottom-right { bottom: 20px; right: 20px; }
.toast-bottom-left  { bottom: 20px; left: 20px; }
.toast-top-center   { top: 20px; left: 50%; transform: translateX(-50%); }
.toast-bottom-center{ bottom: 20px; left: 50%; transform: translateX(-50%); }
.toast-center       { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Toast */
.toast-item {
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  pointer-events: auto;
  animation: fadeSlide .3s ease;
}

.toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.toast-close {
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
}

.toast-close:hover {
  opacity: 1;
}

.toast-success .toast-icon { background: #16a34a; }
.toast-error .toast-icon   { background: #dc2626; }
.toast-info .toast-icon    { background: #2563eb; }
.toast-warning .toast-icon { background: #f59e0b; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.photo-Mouisd {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: auto;
}

/* loader */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.361);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader {
  width: 72px;
  height: 72px;
  position: relative;
  border-radius: 50%;
  box-sizing: border-box;
  border-top: 5px solid #E91D62;
  border-right: 5px solid transparent;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-sizing: border-box;
  border-bottom: 5px solid var(--secondary-color);
  border-left: 5px solid transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* no data placeholder */
.no-data-container {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.no-data-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: all 0.5s ease;
  animation: floatingNoData 3s ease-in-out infinite;
}
.no-data-img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
@keyframes floatingNoData {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* navbar start  */
.mobile-logo-category .brand-logo {
  width: 180px;
  transition: all 0.4s;
}
.mobile-logo-category .brand-logo:hover {
  transform: scale(0.9);
}
.navbar-ui .nav-item{
  font-size: 14px;
  font-weight: 500;
  color: var(--label-color);
  padding: 2px 4px;
  margin: 0px 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-ui .nav-item i{
  font-size: 24px;
  line-height: 0;
}
.navbar-ui .nav-item.active,
.navbar-ui .nav-item:hover{
  color: var(--secondary-color);
}
.navbar-ui .nav-item-a{
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  padding: 2px 4px;
  margin: 0px 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-ui .nav-item-a i{
  font-size: 24px;
  line-height: 0;
}
.navbar-ui .nav-item-a.active,
.navbar-ui .nav-item-a:hover{
  color: var(--white-color);
}
.main-navheader-gradientbg{
  background: url(../images/common-rectangle-bg1.webp) no-repeat 0% 0%, url(../images/common-rectangle-bg2.webp) no-repeat 100% 100%, #0D172C;
}
.comman-bg-btn {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 11px 36px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  font-weight: 400;
  position: relative;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}
.comman-bg-btn:hover{
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.comman-bg-btn:focus-visible{
  outline: none;
}
.comman-border-btn{
  background: transparent;
  color: var(--white-color);
  padding: 11px 36px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  font-weight: 400;
  transition: all 0.3s;
  border: 1px solid var(--white-color);
}
.comman-border-btn:hover{
  background: var(--white-color);
  color: var(--black-color);
}
.afterlogin-sidelog .user-img{
  height: 38px;
  width: 38px;
  border-radius: 100%;
  min-width: 38px;
  object-fit: cover;
}
.afterlogin-sidelog{
  border: 1px solid #ffffff42;
  padding: 4px 10px 4px 4px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  color: var(--title-color);
  font-weight: 500;
  background: #ffffffe6;
}
.common-dropdown-menu{
  position: absolute;
  border-radius: 12px;
  left: -38px !important;
  top: 34px !important;
  z-index: 991;
  transition: all 0.4s;
  background: var(--white-color);
  border: 1px solid #00000012;
  min-width: 190px;
  transform: unset !important;
}
.afterlogin-sidelog ~ .common-dropdown-menu{
  top: 52px !important;
  right: 0 !important;
  left: unset !important;
}
.common-dropdown-menu li .dropdown-item{
  font-size: 14px;
  font-weight: 400;
  color: var(--subtitle-color);
  background: var(--white-color);
  margin-bottom: 3px;
  padding: 7px 12px;
  transition: all 0.3s;
}
.common-dropdown-menu li .dropdown-item.active,
.common-dropdown-menu li .dropdown-item:hover{
  color: var(--primary-color);
}
.notification-nav{
  background: linear-gradient(84.34deg, #1ba3481c 4.51%, #0b60df1a 101.6%);
  border: 1px solid #00000012;
  padding: 4px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 500;
  height: 44px;
  width: 44px;
  min-width: 44px;
  justify-content: center;
  position: relative;
}
.notification-nav .count-notification{
  position: absolute;
  font-size: 10px;
  top: -8px;
  right: -2px;
  background: var(--black-color);
  color: var(--white-color);
  padding: 2px 6px;
  border-radius: 40px;
  font-weight: 400;
}
.notification-design .notification-menu-dropdown {
  position: absolute;
  border-radius: 12px;
  top: 52px;
  right: -54px;
  z-index: 991;
  transition: all 0.4s;
  background: var(--white-color);
  border: 1px solid #00000012;
  min-width: 420px;
  max-height: 480px;
  overflow: auto;
}
.notification-time::before {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background: var(--white-color);
  border: 3px solid var(--primary-color);
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.notification-listing li {
  border: 1px solid transparent;
  border-bottom: 1px solid #dddfe5;
  cursor: pointer;
}
.notification-listing li.unread,
.notification-listing li:hover {
  background: #0063d80d;
  border-bottom: 1px solid #0063d85c;
}
.notification-listing li:last-child {
  border: none;
}
.title-notification-dvs {
  position: sticky;
  top: -8px;
  background: var(--white-color);
  z-index: 1;
}
.nav-mobile-profile{
  width: 218px;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}
.navbar-ui .nav-items {
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
  padding: 3px 6px;
}
.navbar-mainSide-profile-box {
  background: var(--primary-lightcolor);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid var(--primary-lightcolor);
}
.navSide-profile-img {
  width: 100%;
  height: 268px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.navSide-profile-img .img-profile-nav {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common-dropdown-menu li .dropdown-item.logout {
  color: var(--error-color);
}

/* footer section start  */
.matrimony-footer-main{
  background: url(../images/footer-bg-01.webp) no-repeat;
  background-size: cover;
}
.footer_linking-mng .footer-logo{
  width: 150px;
}
.footerlist li{
  line-height: 20px;
}
.footer-contact-suport a,
.footerlist li a{
  opacity: 0.80;
  transition: all 0.3s;
  color: var(--white-color);
}
.footerlist li a:hover{
  color: var(--white-color);
  margin-left: 3px;
}
.custom-tooltip {
  --bs-tooltip-bg: var(--primary-color);
  --bs-tooltip-color: var(--white-color);
}
.social-footers-home a{
  height: 36px;
  width: 36px;
  background: #FFFFFF1F;
  border: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: all 0.3s;
  box-shadow: 0px 4px 4px 0px #AD844A17;
  font-size: 20px;
}
.social-footers-home a:hover{
  background: #ffffff33;
  color: var(--white-color);
}
.footer-email input{
  width: 100%;
  height: 42px;
  border-radius: 40px;
  outline: none;
  border: 1px solid #ffffff47;
  padding: 9px 30px 7px 15px;
  font-size: 13px;
  background: transparent;
  color: var(--white-color);
  font-weight: 500;
}
.footer-email input::placeholder{
  color: var(--white-color-p70);
}
.footer-email button{
  position: absolute;
  right: 3px;
  top: 3px;
  border-radius: 100%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #ffffff26;
  color: var(--white-color);
  font-size: 24px;
}
.footer-email input.error{
  background-origin: content-box;
  border: 1px solid var(--error-color) !important;
}
.footer-email label.error,
.razorpay-payment-button{
  display: none !important;
}
.copyright-footer-bg{
  backdrop-filter: blur(4px);
  align-items: center;
  text-align: center;
  justify-content: space-between;
  background: #FFFFFF1F;
  border-radius: 10px;
  padding: 9px 18px;
}

/* form settings  */
.comman_inputfield_main .input_comman_field{
  width: 100%;
  background: var(--white-color);
  border: 1px solid #dddfe5;
  height: 48px;
  border-radius: 8px;
  padding: 12px 20px;
  outline: none;
  color: var(--title-color);
  font-size: 14px;
  font-weight: 400;
}
.comman_inputfield_main .input_comman_field:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset;
}
.edit_inputMain-sltr label,
.comman_inputfield_main label{
  margin-bottom: 4px;
  color: var(--label-color);
  font-size: 14px;
  font-weight: 500;
}
.comman_inputfield_main .icon-input .input_comman_field{
  padding: 12px 20px 12px 39px;
}
.icon-input iconify-icon{
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  align-content: center;
  font-size: 18px;
  color: var(--placeholder-color);
}
.comman_inputfield_main .input_comman_field::placeholder{
  color: var(--placeholder-color);
}
.comman_inputfield_main .input_comman_field:focus{
  border: 1px solid var(--primary-color);
}
.comman_inputfield_main .input_comman_field:focus::placeholder{
  color: var(--placeholder-color);
}
.comman_inputfield_main .input_comman_field:focus::-ms-input-placeholder{
  color: var(--placeholder-color);
}
.comman_inputfield_main .input_comman_field:focus::-webkit-input-placeholder{
  color: var(--placeholder-color);
}
.comman_inputfield_main .input_comman_field:focus::-moz-placeholder{
  color: var(--placeholder-color);
}
.comman_inputfield_main .input_comman_field.error {
  background: url(../images/error-icon.svg) no-repeat 100% center;
  background-origin: content-box;
  border: 1px solid var(--error-color) !important;
  background-size: 20px;
}
.comman_inputfield_main .input_comman_field.error::placeholder{
  color: var(--title-color) !important;
}
.comman_inputfield_main .input_comman_field.success {
  content: "";
  background: url(../img/icons/input-success-icon.svg) no-repeat 100% center;
  background-origin: content-box;
  border: 1px solid var(--primary-color) !important;
}
.comman_inputfield_main .input_comman_field.success::placeholder{
  color: var(--title-color) !important;
}
.comman_inputfield_main .input_comman_field.textareasize{
  height: 108px;
  resize: none;
}
.comman_inputfield_main label.error{
  display: none !important;
}
.edit_inputMain-sltr > .Single_searchDv.error ~ label.error{
  display: none !important;
}

/* select option in error show & suceess css  */
.edit_inputMain-sltr .Single_searchDv.error {
  content: "";
  background: url(../img/icons/error-input-icon.svg) no-repeat center, var(--white-color) !important;
  position: absolute !important;
  z-index: 99;
  height: 32px !important;
  width: 32px !important;
  display: block;
  clip: unset !important;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: transparent;
  background-repeat: no-repeat;
  border-radius: 6px;
  clip-path: unset !important;
  pointer-events: none;
}
.edit_inputMain-sltr > .Single_searchDv.error ~ label{
  color: var(--gray4-color);
  transform: scale(0.9) translateY(-28px) translateX(-11px);
}
.edit_inputMain-sltr .Single_searchDv.success {
  content: "";
  background: url(../img/icons/input-success-icon.svg) no-repeat center, var(--white-color) !important;
  position: absolute !important;
  z-index: 99;
  height: 32px !important;
  width: 32px !important;
  display: block;
  clip: unset !important;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: transparent;
  background-repeat: no-repeat;
  border-radius: 6px;
  clip-path: unset !important;
  pointer-events: none;
}
.edit_inputMain-sltr .Single_searchDv.js-example-basic-multiple.success {
  height: 52px !important;
  width: 32px !important;
  border-radius: 0px 6px 6px 0px;
  border: 1px solid var(--secondary-color) !important;
  border-left: unset !important;
  right: 0px;
  padding-right: 50px !important;
}

/* checkbox custom */
.commom-checkboxdiv-l .comman_chack {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  width: fit-content;
}
.commom-checkboxdiv-l .comman_chack::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #dddfe5;
  background-color: transparent;
  transition: all 0.2s ease;
}
.commom-checkboxdiv-l .comman_chack::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: transparent;
  -webkit-mask: url("https://api.iconify.design/iconamoon:check.svg") no-repeat center / 70%;
  mask: url("https://api.iconify.design/iconamoon:check.svg") no-repeat center / 70%;
  transition: all 0.2s ease;
}
.commom-checkboxdiv-l input:checked + .comman_chack::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.commom-checkboxdiv-l input:checked + .comman_chack::after {
  background-color: var(--white-color);
}

/* radio button custom  */
.single_input_radio-L .radio_filterinp::before {
  content: "";
  height: 21px;
  width: 21px;
  min-width: 21px;
  display: block;
  border-radius: 100%;
  border: 3px solid var(--white-color);
  outline: 1px solid #DDDFE5;
}
.single_input_radio-L input:checked + .radio_filterinp::before {
  background: var(--secondary-color);
  outline: 3px solid var(--secondary-color);
  height: 21px;
  width: 21px;
}
.single_input_radio-L .disabled::before{
  background: var(--placeholder-color) !important;
  border: var(--placeholder-color) !important;
  outline: var(--placeholder-color) !important;
}
.comman_inputfield_main .input_comman_field[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  background-origin: content-box;
  color: transparent;
  cursor: pointer;
  height: auto;
  position: absolute;
  right: 24px;
  bottom: 0;
  top: 0;
  left: 0;
  width: auto;
}
.comman_inputfield_main .input_comman_field[type="time"]::-webkit-calendar-picker-indicator {
  background: transparent;
  background-origin: content-box;
  color: transparent;
  cursor: pointer;
  height: auto;
  position: absolute;
  right: 24px;
  bottom: 0;
  top: 0;
  left: 0;
  width: auto;
}

/* affiliate dashboard start  */
.common-bgwhite-main {
  background: var(--white-color);
  border-radius: 16px;
  border: 1px solid #00000012;
  position: relative;
}
.common-left-profilebox {
  width: 20%;
}
.common-center-profilebox {
  width: 80%;
}
.profile-placeholder-user {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.profile-rb-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  object-position: top;
  cursor: pointer;
}
.lockprofiles-3::before {
  content: "\eb49";
  font-family: 'boxicons', sans-serif;
  font-size: 46px;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: linear-gradient(178deg, #da760c0d 0%, hsl(2.16deg 72.77% 37.45% / 5%) 100%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
.profile-topbar-boxlist li {
  width: 25%;
}
.affilate-user-linkbox{
  width: 100%;
  background: #0CDEAD0D;
  border: 1px solid #00000012;
  border-radius: 10px;
  padding: 13px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.affilate-user-linkbox p{
  font-weight: 400;
  color: var(--gray4-color);
  line-break: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.affilate-user-linkbox .copy-user-link{
  color: var(--black-color);
  line-height: 0;
  cursor: pointer;
}
.affilate-user-linkbox .copy-user-link:hover{
  color: var(--primary-color);
}
.edit-btn-affiliate{
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 40px;
  padding: 12px 21px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-wrap-mode: nowrap;
  font-weight: 400;
  color: var(--white-color);
}
.ui-menulist-design {
  background: #0CDEAD0D;
  border: 1px solid #00000012;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 3px;
  overflow: auto;
}
.ui-menulist-design li a {
  color: var(--subtitle-color);
  font-weight: 600;
  padding: 10px 36px;
  text-wrap-mode: nowrap;
  margin: 0px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  opacity: 0.7;
  transition: all 0.3s;
}
.ui-menulist-design li a:hover, .ui-menulist-design li a.active {
  background: var(--white-color);
  color: var(--title-color);
  opacity: 1;
  box-shadow: 0px 4px 4px 0px #0000000d;
}
.ui-menulist-design::-webkit-scrollbar{
  height: 5px;
}
.single-table-main{
  box-shadow: 0px 4px 18px 0px #2A756C12;
  background: var(--white-color);
  border-radius: 16px;
}
.top-heading-tables{
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 22px;
  border-radius: 12px;
}
.top-heading-tables .btn-view-list{
  padding: 10px 20px;
  font-weight: 400;
  background: #ffffff21;
  color: var(--white-color);
  border-radius: 6px;
  transition: all 0.3s;
}
.top-heading-tables .btn-view-list:hover{
  background: #ffffff2e;
}
.payment-table thead tr th,
.payment-table tbody tr td{
  width: 25%;
  padding-right: 12px !important;
}
.payment-table thead tr th:first-child,
.payment-table tbody tr td:first-child{
  width: 40%;
}
.payment-table thead tr th:last-child,
.payment-table tbody tr td:last-child{
  width: 10%;
}
.or-withline-center::before, .or-withline-center::after {
  display: block;
  content: '';
  z-index: 1;
  background: #00000012;
  position: absolute;
  width: 100%;
  height: 1px;
}
.or-withline-center span{
  background: var(--white-color);
  z-index: 2;
  color: var(--subtitle-color);
  opacity: 0.8;
  padding: 2px 12px 4px;
  font-size: 14px;
}
.comman_inputfield_main .toggle-password::after{
  content: "";
  background-color: currentColor;
  -webkit-mask: url("https://api.iconify.design/weui:eyes-off-outlined.svg") no-repeat center;
  -webkit-mask-size: contain;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-origin: content-box;
  cursor: pointer;
  align-content: center;
  height: 20px;
  width: 20px;
}
.comman_inputfield_main .toggle-password.eye-open::after{
  content: "";
  background-color: currentColor;
  -webkit-mask: url("https://api.iconify.design/weui:eyes-on-outlined.svg") no-repeat center;
  -webkit-mask-size: contain;
}
.btn-login-aflt{
  background: var(--primary-color);
  color: var(--white-color);
  padding: 13px 36px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.register-check-aflt .check-label-aflt{
  font-weight: 500;
  color: var(--black-color);
  border: 1px solid var(--primary-lightcolor);
  border-radius: 40px;
  padding: 13px 28px 12px 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  background: var(--primary-lightcolor);
  position: relative;
  transition: all 0.3s;
}
.register-check-aflt .check-label-aflt::before {
  content: "";
  height: 18px;
  width: 18px;
  min-width: 18px;
  border-radius: 4px;
  border: 1px solid #a3a4a5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: scale(0.9);
  background: transparent;
}
.register-check-aflt .check-aflt-register:checked + .check-label-aflt::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1);
  position: relative;
}
.register-check-aflt .check-aflt-register:checked + .check-label-aflt::after {
  content: "";
  position: absolute;
  left: 22px;
  height: 14px;
  width: 14px;
  -webkit-mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center;
  mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.affiliate-file-upload .btn-upload-aft{
  background: var(--black-color);
  color: var(--white-color);
  padding: 13px 36px;
  display: flex;
  text-align: center;
  border-radius: 40px;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  width: max-content;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-bg-header {
  background: var(--white-color);
  color: var(--title-color) !important;
  border: 1px solid var(--white-color);
  padding: 12px 36px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.4s ease;
}
.btn-border-header {
  background: transparent;
  color: var(--white-color) !important;
  padding: 12px 36px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  border: 1px solid var(--white-color);
  font-weight: 500;
  transition: all 0.4s ease;
}
.work-affiliat-single .affiliat-works {
  height: 60px;
}
.btn-affiliate-common{
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  padding: 12px 33px;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}
.btn-affiliate-common:hover{
  color: var(--primary-color);
  background: transparent;
}
.benifit-img-sm{
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
}
.work-steps-number{
  height: 54px;
  width: 54px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: 600;
  font-size: 24px;
  box-shadow: 0px 10px 15px -3px #0000001A;
}
.work-steps-number.nm2{
  background: #3B82F6;
}
.work-steps-number.nm3{
  background: #22C55E;
}
.number-box-line{
  width: 100%;
  height: 1px;
  background: #dddfe5;
  position: absolute;
  top: 72px;
}
.single-review-box{
  background: var(--white-color);
  border: 1px solid #E5E7EB;
  box-shadow: 0px 6px 15px -3px #00000014;
  border-radius: 16px;
}
.review-user .review-user-img{
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  object-fit: cover;
}

/* pagination code  */
.pagination_nav{
  background: #fff;
  border-radius: 60px;
  padding: 7px;
  width: max-content;
  margin: auto;
  border: 1px solid #00000012;
}
.pagination_nav ul .page_items a.active, .pagination_nav ul .page_items a:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
}
.pagination_nav ul .page_items a {
  height: 43px;
  min-width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--placeholder-color);
  font-size: 16px;
  font-weight: 400;
  border-radius: 100%;
  transition: all 0.3s;
  padding-top: 1px;
}
.pagination_nav ul .prev-next a{
  height: 43px;
  min-width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--title-color);
  border-radius: 100%;
  transition: all 0.3s;
  padding-top: 1px;
  border: 1px solid #0000000f;
  font-size: 24px;
}
.pagination_nav ul .prev-next a:hover{
  background: #e9e9e9;
}
.right-trusted-boxed{
  background: var(--lightprimary-color);
  border-radius: 24px;
  padding: 50px 40px 50px 180px;
}
.btn-trust-join{
  background: var(--primary-color);
  color: var(--white-color);
  padding: 11px 52px;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.single-trusted-flt .sm-trusted-bx{
  height: 48px;
  width: 48px;
  background: var(--white-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  box-shadow: 0px 4px 31px 0px #add7ce40;
}
.trusted-graps-design{
  position: absolute;
  left: -16%;
  top: 0;
  bottom: 0;
  margin: auto;
  align-content: center;
}
.inner-trust-affiliate{
  background: var(--primary-color);
  border-radius: 16px;
}
.s-color-1{
  color: var(--primary-color);
}
.s-color-2{
  color: #3B82F6;
}
.s-color-3{
  color: #22C55E;
}
.s-color-4{
  color: #A855F7;
}
.common-feature-box{
  background: transparent;
  border-radius: 12px;
}
.common-feature-box .feature-icon{
  height: 48px;
  width: 48px;
  min-width: 48px;
  background: var(--black-color);
  color: var(--white-color);
  font-size: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* my profile section start  */
.topcolleps-edtbar .btn-editfields {
  height: 34px;
  width: 34px;
  min-width: 34px;
  background: var(--primary-color);
  outline: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
}
.profile-arrow-collapse{
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color) !important;
  transform: rotate(180deg);
}
.profile-arrow-collapse.collapsed{
  transform: rotate(0deg);
}
.form-border-btn {
  padding: 11px 52px;
  font-weight: 500;
  border-radius: 40px;
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}
.form-border-btn:hover{
  color: var(--white-color);
  background: var(--primary-color);
}
.form-bg-btn {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 11px 52px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.form-bg-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #ffffff14;
  transition: width 0.4s ease;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}
.form-bg-btn:hover::before {
  width: 100%;
}

/* photo upload section */
.photo-upload-big-pro .preview img,
.photo-upload-big-pro {
  grid-row: span 2;
  width: 240px;
  height: 270px;
}
.photo-upload-big-pro iconify-icon{
  font-size: 44px;
  color: #DDE2E5;
}
.photo-upload-small-pro .preview img,
.photo-upload-small-pro {
  width: 118px;
  height: 128px;
}
.photo-upload-small-pro iconify-icon{
  font-size: 30px;
  color: #DDE2E5;
}
.photo-upload-profile-pro .preview img,
.photo-upload-profile-pro {
  width: 100%;
  height: 120px;
}
.photo-upload-profile-pro iconify-icon{
  font-size: 40px;
  color: #DDE2E5;
}
.photo-upload-pro-matri .upload-box {
  border: 1px dashed #828282;
  border-radius: 10px;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease;
  text-align: center;
  overflow: hidden;
}
.photo-upload-pro-matri .upload-box.dragover {
  border-color: var(--primary-color);
  background: var(--black-color-4);
}
.photo-upload-pro-matri .upload-box input {
  display: none;
}
.photo-upload-pro-matri .upload-box svg {
  width: 40px;
  height: 40px;
  stroke: #00aaff;
  margin-bottom: 10px;
}
.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-box .remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  border: 1px solid var(--black-color);
}
.upload-box .preview.has-image + .remove-btn {
  display: flex;
}

/* photo cropping design */
.croper-model-imgOuter {
  height: 350px;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  overflow: hidden;
}
.croper-moder-range-input{
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--primary-color) var(--val, 0%), #ddd var(--val, 0%));
  outline: none;
  cursor: pointer;
}
.croper-moder-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black-color);
  cursor: pointer;
  border: 2px solid var(--white-color);
  outline: 4px solid #2280EF33;
  margin-top: -6px;
}
.croper-moder-range-input[type="range"]::-webkit-range-thumb,
.croper-moder-range-input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: var(--black-color);
  border: 2px solid var(--white-color);
  outline: 4px solid #2280EF33;
  border-radius: 50%;
  cursor: pointer;
}
.croper-moder-range-input::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: var(--black-color);
  border: 2px solid var(--white-color);
  outline: 4px solid #2280EF33;
  border-radius: 50%;
  cursor: pointer;
}
.croper-moder-range-input::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--primary-color) var(--val), var(--black-color-4) var(--val));
}
.croper-moder-range-input::-moz-range-track {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--primary-color) var(--val), var(--black-color-4) var(--val));
}

@media only screen and (max-device-width: 1200px){
  .common-left-profilebox{
    width: 26%;
  }
  .common-center-profilebox{
    width: 74%;
  }
  .profile-topbar-boxlist li{
    width: 33.33%;
  }
  .trusted-graps-design{
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .right-trusted-boxed {
    padding: 50px 40px 20px 56px;
  }
}
@media only screen and (max-device-width: 991px){
  /* navbar css  */
  .navbar-ui .nav-item-a {
    color: var(--title-color);
  }
  .navbar-ui .nav-item-a.active, .navbar-ui .nav-item-a:hover{
    color: var(--secondary-color);
  }
  .mobile-logo-category .brand-logo{
    width: 120px;
  }
  .comman-border-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  .navbar-ui .nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 8px;
    padding: 10px 17px;
    font-size: 14px;
    margin: 2px 0px;
  }
  .navbar-ui .nav-item.active,
  .navbar-ui .nav-item:hover{
    background: linear-gradient(90deg, #0b60df17 0%, #1ba34817 100%);
    border: 1px solid #00000012;
  }
  .position-sticky-mobile{
    position: sticky;
    top: 0px;
    background: var(--white-color);
    border-bottom: 1px solid #00000012;
    z-index: 9;
  }
  .common-left-profilebox{
    width: 40%;
  }
  .common-center-profilebox{
    width: 100%;
  }
  .right-trusted-boxed {
    padding: 41px 20px 20px 36px;
  }
  .edit-btn-affiliate{
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  .navbar-motersDesign .navbar-toggler {
    background: var(--black-color);
    height: 42px;
    width: 42px;
    border-radius: 100%;
    min-width: 42px;
    color: var(--white-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-motersDesign .mobile-navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background-color: var(--white-color);
    box-shadow: 2px 0 10px rgb(0 0 0 / 6%);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding-bottom: 40px;
    border-radius: 0px 15px 12px 0px;
    overflow: auto;
  }
  .navbar-motersDesign .mobile-navbar.active {
    left: 0;
  }
  .mobile-navbar .close-nav {
    background: transparent;
    border: 1px solid var(--black-color);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    color: var(--black-color);
  }
  .navbar-ui .nav-items{
    color: var(--black-color);
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    align-items: center;
  }
  .navbar-ui .nav-items:hover,
  .navbar-ui .nav-items.active{
    background: var(--primary-lightcolor);
    color: var(--primary-color);
  }
  .common-dropdown-menu {
    position: relative !important;
    left: 0px !important;
    top: 0px !important;
    min-width: 190px;
    transform: unset !important;
  }
  .navbar-ui>li{
    margin-bottom: 6px;
  }
}
@media only screen and (max-device-width: 768px){
  .profile-topbar-boxlist li{
    width: 50%;
  }
  .common-left-profilebox{
    width: 100%;
  }
  .profile-placeholder-user,
  .profile-rb-image{
    height: 320px;
  }
  .table-maxlist-body{
    width: 740px;
  }
  .table-overflow::-webkit-scrollbar{
    height: 5px;
  }
}
@media only screen and (max-device-width: 568px){
  .ui-menulist-design li a {
    font-size: 13px;
    padding: 9px 26px;
    border-radius: 8px;
  }
  .notification-design .notification-menu-dropdown {
    min-width: 94vw;
  }
  .register-check-aflt .check-label-aflt::before {
    height: 18px;
    min-width: 18px;
    width: 18px;
    border-radius: 5px;
    font-size: 16px;
  }
  .register-check-aflt .check-label-aflt {
    padding: 10px 22px 9px 12px;
    gap: 5px;
  }
  .why-choose-inner-affiliate .accordion-item .accordion-button::before {
    font-size: 26px;
    margin-right: 7px;
  }
  .register-check-aflt .check-aflt-register:checked+.check-label-aflt::after{
    left: 14px;
  }
}