* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f4f4;
}

button {
  cursor: pointer;
}

body,
button,
input,
textarea,
option,
select {
  font-family: "Roboto", sans-serif;
}

/* UTILITIES */

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.p-1 {
  padding: 10px;
}

.p-2 {
  padding: 20px;
}

.p-3 {
  padding: 30px;
}

.p-4 {
  padding: 40px;
}

.p-5 {
  padding: 50px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mx-auto {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.w-1 {
  width: 10%;
}

.w-2 {
  width: 20%;
}

.w-3 {
  width: 30%;
}

.w-4 {
  width: 40%;
}

.w-5 {
  width: 50%;
}

.w-6 {
  width: 60%;
}

.w-7 {
  width: 70%;
}

.w-8 {
  width: 80%;
}

.w-9 {
  width: 90%;
}

.w-10 {
  width: 100%;
}

.rounded-full {
  border-radius: 50%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.primary-text-color {
  color: #107897;
}

/* INDEX */

.left-sidebar-col {
  min-height: 100%;
  width: 100%;
  max-width: 230px;
  padding: 0;
  top: 0;
  position: fixed;
  background: #0f7896;
  z-index: 1;
}

.site_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid white;
}

.site_title>span {
  font-weight: 400;
  font-size: 22px;
  margin-left: 12px;
  color: #ecf0f1;
  line-height: 59px;
}

.side-menu>li {
  position: relative;
  padding: 13px 15px 12px;
  color: #ecf0f1;
}

.active-navbar-text {
  color: #107897;
}

.active-navbar-link {
  position: relative;
  z-index: 44;
  background: #fff;
}

.side-menu>li>a {
  gap: 15px;
}

.navbar-text {
  font-size: 16px;
  display: block;
}

.nav-current {
  border-bottom: 0.5px solid #dddddd;
  height: 50px;
}

.power-off-wrapper {
  position: absolute;
  z-index: 44;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.power-off-wrapper>a {
  width: 50px;
  height: 50px;
}

/* CSS for login.html */

.login-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/Main-bg.png);
  width: 100vw;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 22;
  position: relative;
}

.login-bg::after {
  position: absolute;
  content: "";
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background: #000000;
}

.login-logo {
  width: 116.2px;
  height: 115px;
  object-fit: cover;
}

.login-h1 {
  font-family: "Arial-BoldMT";
  text-transform: uppercase;
  font-size: 25.812950134277344px;
  font-weight: normal;
  line-height: 26.760299682617188px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  padding-top: 24px;
}

.login-p {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-weight: normal;
  line-height: 19px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  padding-top: 19px;
}

.login-field,
.login-psw {
  position: relative;
}

.login-field img,
.login-psw img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.login-input {
  padding: 15px 3.125rem;
  border: none;
  width: 367px;
  height: 42.9px;
  background: rgb(242, 242, 242, 0.3);
  border-radius: 20px;
  color: #fff;
  outline: none;
}

.login-input::placeholder {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: bold;
  text-align: left;
  color: #bababa;
}

.login-acc::placeholder {
  background-image: url(../img/Lock.png);
  width: auto;
  height: auto;
  position: absolute;
}

.login-a {
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 367px;
  height: 42.9px;
  border-radius: 21.44575309753418px;
  filter: drop-shadow(0px 0px 2.5px rgba(255, 255, 255, 0.35));
  background: #02a0c4;
  background: linear-gradient(90deg, #02a0c4 0.04%, #088eb0 31.92%, #0d7d9f 71.19%, #107899 100%);
}

.login-button-a {
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 367px;
  height: 42.9px;
  border-radius: 21.44575309753418px;
  filter: drop-shadow(0px 0px 2.5px rgba(255, 255, 255, 0.35));
  background: #02a0c4;
  background: linear-gradient(90deg, #02a0c4 0.04%, #088eb0 31.92%, #0d7d9f 71.19%, #107899 100%);
}

.login-acc {
  padding-top: 80px;
}

.login-psw-padding {
  padding: 32px 0px;
}

/* CSS for nexus 2  */

.today-sale>span {
  font-size: 28px;
  font-weight: normal;
  line-height: 45.68857955932617px;
  font-style: normal;
  text-align: left;
  color: #107897;
}

.customer-nav {
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 12px;
  max-width: calc(100% - 244px);
  margin-left: auto;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 45.68857955932617px;
  font-style: normal;
  text-align: left;
  color: #606060;
}

.dates-buttons {
  padding: 15px 35px;
  border-color: #ededed;
  border-width: 1px;
  border-style: solid;
  border-radius: 4.381856441497803px;
  color: black;
  background: #ffffff;

  /* Font  */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: center;
  color: #606060;
}

.dates-buttons-b {
  padding: 15px 35px;
  border-color: #107897;
  border-width: 1px;
  border-style: solid;
  border-radius: 4.381856441497803px;
  color: white;
  background: #107897;

  /* Font  */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: center;
  /* color: #606060; */
}

.customer-dates {
  /* margin-left: 242px; */
  display: flex;
  flex-direction: row;
}

.customer-calender {
  gap: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: #ededed;
  border-width: 1px;
  border-style: solid;
  border-radius: 4.5px;
  background: #ffffff;
}

.c-d-flex {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.calender-flex-a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 11px;
}

.calender-flex-date {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: center;
  color: #606060;
  margin: 0px 11px 0px 0px;
  border: none;
}

.customer-container {
  max-width: calc(100% - 244px);
  margin-left: auto;
  padding-right: 12px;
  padding-top: 12px;
  background: #f4f4f4;
}

.ov-chart-1 {
  padding: 20px;
  border-color: #ededed;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  background: #ffffff;
  width: 33% !important;
  min-height: 250px !important;
}

.customer-chart-wrap {
  gap: 2%;
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

.chart-income {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.chart-g-p {
  font-size: 14px;
  font-weight: normal;
  line-height: 17.523090362548828px;
  font-style: normal;
  text-align: left;
  color: #a5a5a5;
  width: 100%;
}

.chart-flex-s {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-direction: row;
  font-size: 14px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: left;
  color: #606060;
}

.chart-pink-e {
  font-size: 14px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: left;
  color: #ff2ba8;
}

.chart-active-e {
  font-size: 14px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: left;
  color: #107897;
}

.customer-top-pr {
  width: 66%;
  border-radius: 5px;
}

.customer-top-pr-wrapper {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #ededed;
}

.customer-top-pr-wrapper:not(:first-child) {
  margin-top: 30px;
}

.top-pr-st {
  font-size: 14px;
  font-weight: normal;
  line-height: 17.523090362548828px;
  font-style: normal;
  text-align: left;
  color: #a5a5a5;
  margin-bottom: 14px;
  display: block;
}

.card-img {
  width: 128px;
  height: 128px;
  object-fit: cover;
}

.business-customer-card,
.customer-card {
  width: 137px;
  min-height: 200px;
}

.business-customer-card {
  padding: 13px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
}

.business-customer-card>img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 10px;
}

.business-card-name {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}

.business-card-date {
  font-size: 10px;
  line-height: 17px;
  color: #a5a5a5;
  margin-bottom: 10px;
}

.business-card-product-count {
  font-size: 12px;
  color: #606060;
  font-weight: 500;
  line-height: 20px;
}

.business-card-sold-count {
  font-size: 14px;
  color: #107897;
  font-weight: 500;
}

.p-blue {
  font-size: 14px;
  font-weight: normal;
  line-height: 20.15152931213379px;
  font-style: normal;
  text-align: left;
  color: #107897;
}

.p-g {
  font-size: 12px;
  font-weight: normal;
  line-height: 16px;
  font-style: normal;
  text-align: left;
  color: #606060;
  margin-bottom: 5px;
}

.customer-card {
  padding: 2px;
  border-color: #e6e6e6;
  border-width: 1px;
  border-style: solid;
  border-radius: 6px;
  background: #ffffff;
}

.customer-cards-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 13px;
}

.ov-chart-1>canvas {
  height: 100%;
  width: 100%;
}

.product-card-content {
  padding: 10px;
}

.product-card-wrapper {
  gap: 2%;
}

.withdrawal-wrapper {
  width: 31.9%;
  padding: 15px;
  height: 100%;
  background: #fff;
  min-height: 622.5px;
}

.withdrawal-title {
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.withdrawal-details>p {
  font-size: 14px;
  margin-bottom: 3px;
  color: #606060;
  line-height: 1;
}

.withdrawal-details>span {
  font-size: 11px;
  margin-bottom: 3px;
  color: #606060;
}

.withdrawal-detail-wrapper {
  /* background: #f4f4f4; */
  padding: 10px;
  border-radius: 8px;
}

.withdraw-price {
  font-weight: 500;
}

.withdrawal-detail-wrapper:not(:last-child) {
  margin-bottom: 10px;
}

.canvas-wrapper>canvas {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
}

/* NEXUS 3 */

.customer-top-nav {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 25px;
}

.customer-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
}

.customer-nav-wrapper>span {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 8px;
  min-width: 12px;
  min-height: 12px;
  background: #b70f0f;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-nav-select-wrapper>select {
  padding: 10px 12px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 17.5px;
  background: #fff;
  color: #606060;
  min-width: 130px;
  cursor: pointer;
  appearance: none;
  background-image: url(../Icon/select-bg.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 12px)
}

/* Customer Content */

.customer-alert-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.customer-order-details-wrapper {
  font-size: 14px;
  color: #606060;
}

.customer-header-wrapper {
  padding: 10px 15px;
  margin-bottom: 10px;
}

.customer-header-wrapper>div:nth-child(1) {
  width: 25%;
  text-align: center;
}

.customer-header-wrapper>div:not(:first-child) {
  width: 15%;
  text-align: center;
}

.customer-body-wrapper>div {
  padding: 10px 15px;
  background: #fff;
  justify-content: space-between;
}

.customer-body-wrapper>div:first-child {
  border-radius: 8px;
}

.customer-body-wrapper:not(:last-child) {
  margin-bottom: 15px;
}

.customer-body-wrapper>div>div:nth-child(1) {
  width: 25%;
}

.customer-body-wrapper>div>div:not(:first-child) {
  width: 15%;
  justify-content: center;
}

.active-color {
  color: #107897;
  font-weight: 700;
}

.active-status {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.banned-color {
  font-weight: 700;
  color: #ff2ba8;
}

.total-customer-title {
  font-size: 14px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customer-color-picker {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 3px;
  background: #107897;
  margin-right: 8px;
}

.active-customer {
  font-size: 14px;
  color: #606060;
  display: block;
}

.customer-count-wrapper>div:not(:last-child) {
  margin-bottom: 20px;
}

.customer-chart-container {
  gap: 50px;
}

.customer-chart-container>div {
  width: 50%;
}

.customer-chart-wapper>canvas {
  width: 131px;
  height: 131px;
}

.customer-chart-wapper-new>canvas {
  width: 200px;
  height: 200px;
}

.customer-inactive-picker {
  background: #86b1b7;
}

.customer-banned-picker {
  background: #ff2ba8;
}

.performance-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #a5a5a5;
  display: block;
}

.performance-select {
  border: 1px solid #ededed !important;
  border-radius: 18px;
}

.performance-select>select {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}

.performance-flex-s {
  min-width: fit-content;
}

.bar-chart-wrapper>canvas {
  width: 100%;
  height: 100%;
}

.business-order-details-wrapper>div:first-child {
  width: 55% !important;
  text-align: left !important;
  justify-content: flex-start !important;
}

.business-order-details-wrapper>div:not(:first-child) {
  width: 15% !important;
}

/* ORDER LIST */

.order-list-main-wrapper {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #eeeeee;
}

.order-list-navmenu-wrapper {
  margin-bottom: 10px;
  font-size: 12px;
  color: #a5a5a5;
  font-weight: 500;
}

.order-list-customer-wrapper {
  font-size: 14px;
}

.order-list-navmenu-wrapper>div:not(:first-child),
.order-list-navmenu-wrapper>div:not(:nth-child(2)),
.order-list-navmenu-wrapper>div:not(:nth-child(3)) {
  width: calc(50% / 5);
}

.order-list-navmenu-wrapper>div:nth-child(1),
.order-list-navmenu-wrapper>div:nth-child(2),
.order-list-navmenu-wrapper>div:nth-child(3) {
  width: calc(50% / 3);
}

.order-list-customer-wrapper>div:not(:first-child),
.order-list-customer-wrapper>div:not(:nth-child(2)),
.order-list-customer-wrapper>div:not(:nth-child(3)) {
  width: calc(50% / 5);
}

.order-list-customer-wrapper>div:nth-child(1),
.order-list-customer-wrapper>div:nth-child(2),
.order-list-customer-wrapper>div:nth-child(3) {
  width: calc(50% / 3);
}

.order-list-navmenu-wrapper>div:last-child {
  text-align: center;
}

.toggle-input {
  height: 0;
  width: 0;
  visibility: hidden;
}

.toggle-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 65px;
  height: 15px;
  color: #107897;
  padding-left: 9px;
  font-weight: 500;
  line-height: 14px;
  font-size: 10px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.toggle-label:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0px;
  width: 25px;
  height: 25px;
  background: #107897;
  border-radius: 90px;
  transition: 0.3s;
}

.toggle-input:checked+.toggle-label {
  background: #f4f4f4;
  text-indent: 0px;
}

.toggle-input:checked+.toggle-label:after {
  left: 100%;
  transform: translateX(-100%);
}

.toggle-label:active:after {
  width: 50px;
}

.order-list-customer-wrapper>div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ban-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #107897;
  padding: 10px;
  border-radius: 5px;
  line-height: 17px;
  outline: none;
  border: none;
  background-color: #fff;
}

.orderlist-button-wrapper {
  border-bottom: 2.7px solid #fff;
  width: 100%;
  max-width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}

.orderlist-button {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  border: none;
  outline: none;
  color: #606060;
  background: inherit;
  position: relative;
  padding-bottom: 10px;
}

.orderlist-active-button {
  color: #107897;
}

.orderlist-active-button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2.7px;
  z-index: 22;
  background: #107897;
  left: 0;
  bottom: -2.6px;
}

.active-orders-detail {
  margin-left: 10px;
  font-size: 14px;
  line-height: 18px;
  color: inherit;
}

.person-order-details {
  border-radius: 10px;
  margin-top: 20px;
  background: #fff;
  overflow: hidden;
}

.name-date-order-details {
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #606060;
  box-shadow: inset 0px 10px 25px -10px #cdcdcd;
  overflow: hidden;
  border-bottom: 2px solid #eeeeee;
}

.order-number {
  color: #606060;
}

.order-date {
  color: #a5a5a5;
}

.order-item-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  overflow: hidden;
}

.order-item-img>img {
  border-radius: 4px;
  object-fit: contain;
  border: 1px solid #e6e6e6;
  height: 100%;
  width: 100%;
}

.order-items-wrapper {
  padding: 20px 10px;
}

.per-order-details {
  font-size: 14px;
  color: #606060;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.per-order-details:not(:last-child) {
  margin-bottom: 20px;
}

.per-order-payment-details-wrapper>div {
  font-size: 15px;
  line-height: 18px;
}

.per-order-payment-details>span:last-child {
  display: block;
  margin-top: 5px;
  font-weight: 500;
}

/* PRODUCT REVIEW */

.stars-wrapper {
  gap: 3px;
}

.preview-product-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.preview-product-wrapper>div {
  position: relative;
  cursor: pointer;
}

.preview-product-wrapper>img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
  position: relative;
}

.preview-product-wrapper-new {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.preview-product-wrapper-new>div {
  position: relative;
  cursor: pointer;
}

.preview-product-wrapper-new>img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
  position: relative;
}

.preview-product-wrapper>div:last-child::after {
  position: absolute;
  content: "";
  color: #107897;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #eaeaea;
  opacity: 0.8;
}

.preview-product-wrapper>div:last-child::before {
  position: absolute;
  content: "";
  color: #107897;
  left: 0;
  top: 0;
  content: "+3";
  z-index: 555;
  opacity: 1;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.product-preview-main-wrapper>span {
  display: block;
  font-weight: 500;
  line-height: 20px;
}

.large-product-wrapper {
  width: 125px;
}

.large-product-wrapper>img {
  /* width: 100%; */
  /* max-width: 100%; */
  display: block;
  height: 125px;
  width: 125px;
  object-fit: cover;
}

.large-product-wrapper-new {
  width: 125px;
}

.large-product-wrapper-new>img {
  /* width: 100%; */
  /* max-width: 100%; */
  display: block;
  height: 125px;
  width: 125px;
  object-fit: cover;
}

.preview-product-details {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

/* Shipping Address */

.shipping-details-wrapper {
  margin-top: 30px;
}

.shipping-details {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.shipping-details>div:nth-child(1) {
  width: 5%;
}

.shipping-details>div:nth-child(2) {
  width: 20%;
}

.shipping-details>div:nth-child(3) {
  width: 70%;
}

.shipping-details>div:nth-child(4) {
  width: 5%;
}

.reciever-details>p {
  font-size: 12px;
  line-height: 18px;
  color: #a5a5a5;
  margin-bottom: 5px;
}

.reciever-details>span {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}

.urgent-details {
  color: #00abea !important;
}

.person-shipping-details {
  border-radius: 5px;
  margin-top: 20px;
}

.shipping-details:not(:last-child) {
  margin-bottom: 10px;
}

/* BUSINESS  */

.person-business-details {
  margin-top: 20px;
  flex-wrap: wrap;
}

.person-business-container {
  background: #fff;
  max-width: 33%;
  border-radius: 10px;
  overflow: hidden;
}

.follower-counter {
  font-size: 14px;
  line-height: 18px;
  color: #a5a5a5;
  font-weight: 400;
}

.business-product-wrapper {
  padding: 10px;
  margin-top: 10px;
}

.business-product-wrapper>div {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
}

.business-product-wrapper>div>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
}

.liked-preview-img-detail {
  width: 100% !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
}

.person-liked-container {
  background: #fff;
  max-width: 32%;
  min-width: 32%;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}

.liked-preview-img-detail>.liked-product-title {
  font-size: 14px;
  color: #606060;
  margin-bottom: 10px;
  line-height: 18px;
}

.liked-preview-img-detail>.liked-product-price {
  font-size: 18px;
  color: #00abea;
  font-weight: 500;
}

/* BAN */

.ban-main-container {
  position: relative;
  max-width: calc(100% - 230px);
  padding-left: 14px;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  background: #282828;
  z-index: 222;
  opacity: 70%;
  height: 100vh;
  width: 100%;
}

.modal-container {
  z-index: 44444;
  width: 70%;
}

.modal-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  background: #24a9e0;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.modal-body {
  background: #fff;
  padding: 20px;
}

.modal-reason-title {
  display: block;
  font-weight: 500;
  color: #606060;
  margin-bottom: 15px;
  line-height: 20px;
}

.modal-reason-select,
.modal-reason-details {
  width: 100%;
  padding: 10px 15px;
  border-radius: 100px;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid #ededed;
  appearance: none;
}

.modal-reason-select {
  background-image: url(../Icon/select-bg.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px);
}

.modal-reason-details {
  border-radius: 7px;
  font-size: 16px;
}

.modal-reason-details::placeholder {
  opacity: 0.5;
}

.modal-buttons-wrapper>button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  outline: none;
  border: none;
  border-radius: 17.5px;
  color: #fff;
  background: #24a9e0;
  min-width: 110px;
}

.cancel-btn {
  background: #ff2ba8 !important;
}

/* Banned */

.banned-reason-wrapper {
  position: relative;
}

.banned-btn {
  font-size: 10px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 17px;
  background: #ff2ba8;
  color: #fff;
  min-width: 60px;
  text-align: center;
  cursor: pointer;
}

.banned-message {
  position: absolute;
  background: #fff;
  padding: 15px;
  width: 340px;
  top: 75px;
  left: -285px;
  z-index: 2222;
  border-radius: 15px;
  box-shadow: 2px 1px 13px 1px rgba(0, 0, 0, 0.1);
}

.banned-message-top-right {
  display: block;
  width: 40px;
  height: 80px;
  background: white;
  rotate: 180deg;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 10%, 0% 100%);
}

.banned-reason-title {
  font-size: 16px;
  color: #606060;
  font-weight: 500;
  margin-bottom: 10px;
}

.banned-reason-desc {
  font-size: 12px;
  line-height: 18px;
  color: #606060;
}

/* PRODUCT LISTING */

.product-list-wrapper {
  max-width: 85%;
}

/* SLIDER */

.product-slider-title {
  font-size: 15px;
  line-height: 18px;
  color: #606060;
}

.product-list-col-container {
  margin-bottom: 15px;
}

.product-list-col {
  padding: 20px;
  width: 100%;
  background: #fff;
  height: 100%;
  margin: 20px 0 0;
}

.product-list-col:not(:last-child) {
  margin-bottom: 20px;
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-swiper {
  gap: 0 !important;
}

.product-list-swiper>.swiper-slide {
  border: none !important;
}

.swiper-pagination {
  bottom: 0px !important;
}

.swiper-pagination-bullet {
  height: 8px;
  border-radius: 20px;
  margin: 0 7.5px !important;
}

.swiper-pagination-bullet-active {
  width: 20px;
  background-color: #107897;
}

.main-product-wrapper {
  position: relative;
  min-width: 175px;
  max-width: 175px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}

.product-image-wrapper>img {
  width: 175px;
  height: 175px;
  object-fit: contain;
}

.trending-product-icon {
  position: absolute;
  top: 10px;
  left: 10px;
}

.main-product-name {
  padding: 8px;
  text-align: left;
}

.main-product-price {
  color: #107897;
  font-weight: 500;
  font-size: 12px;
}

.main-product-name>h3 {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 29px;
}

.swiper-slider-main-wrapper {
  max-width: calc(100% - 200px);
  margin: 0 !important;
}

.treding-details {
  min-width: 150px;
  min-height: 219px;
}

.trending-result {
  background: #e6e6e6;
  border-radius: 5px;
  padding-bottom: 10px;
}

.trending-product-wrapper {
  padding: 10px;
  background: #107897;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trending-product-wrapper>span {
  font-size: 12px;
  display: block;
}

.trending-sku {
  padding: 10px;
  font-size: 10px;
  color: #606060;
}

.treding-stock-details {
  padding: 10px;
}

.treding-stock-details>p {
  font-size: 12px;
  color: #606060;
}

.trending-income-color {
  color: #107897;
}

.number-of-products {
  font-size: 18px;
  color: #606060;
}

.followers-details {
  padding: 10px;
  background: #fff;
  border-radius: 5px;
}

.follower-title {
  font-size: 14px;
  color: #606060;
}

.zelle-info-wrapper {
  margin-top: 25px;
}

.top-balance-title {
  font-weight: 500;
  color: #606060;
  display: block;
}

.balance-show {
  font-size: 28px;
  line-height: 45px;
  font-weight: 500;
  color: #107897;
}

.zelle-account-title {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.zelle-details-wrapper>* {
  display: block;
  font-size: 14px;
  line-height: 17px;
  color: #606060;
}

.zelle-wrapper {
  width: 31.9%;
  padding: 15px;
  height: 100%;
  background: #fff;
  min-height: 486px;
}

.top-history-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  display: block;
  color: #606060;
}

.history-details-wrapper {
  font-size: 14px;
  line-height: 17px;
  color: #606060;
}

.history-details-wrapper>div:nth-child(1) {
  width: 25%;
}

.history-details-wrapper>div:nth-child(2) {
  width: 25%;
}

.history-details-wrapper>div:nth-child(3) {
  width: 40%;
}

.history-details-wrapper>div:nth-child(4) {
  width: 10%;
}

.history-details-wrapper:not(:last-child) {
  margin-bottom: 20px;
}

.history-details-wrapper>div:last-child {
  font-weight: 700;
}

.pending-color {
  color: #ff2ba8;
}

.complete-color {
  color: #107897;
}

/* SELLING SETTINGS */

.shipping-setting-main-container {
  margin-top: 20px;
  margin-bottom: 15px;
}

.selling-location {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #ededed;
  color: #606060;
}

.selling-location-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
}

.shipping-tags-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.shipping-tags-wrapper>span {
  display: block;
  background: #f4f4f4;
  border-radius: 4px;
  font-size: 14px;
  padding: 8px 15px;
}

.zone-wrapper>div {
  width: 30%;
  font-size: 14px;
  line-height: 1;
  color: #606060;
}

.zone-wrapper>div:first-child {
  width: 10%;
  font-size: 16px;
}

.stats-wrapper {
  padding: 10px 20px;
  background: #f4f4f4;
  border-radius: 4px;
}

.first-condition-wrapper {
  font-size: 16;
  font-weight: 500;
  color: #606060;
}

.wave-tile {
  font-weight: 400;
  font-size: 14px;
  color: #a5a5a5;
}

.order-price {
  font-size: 14px;
  padding: 10px 60px;
  background: #f4f4f4;
  border-radius: 17px;
}

.order-from {
  color: #107899;
  font-size: 14px;
  padding: 8px 30px;
  background: #f4f4f4;
  border-radius: 3px;
}

.order-amount {
  font-size: 14px;
  padding: 10px 60px;
  background: #f4f4f4;
  border-radius: 17px;
  position: relative;
}

.order-amount>span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.visibility-hidden {
  visibility: hidden;
  width: 160px;
}

/* Zelle Image */

.zelle-img-nav-wrapper-text {
  font-size: 12px;
  color: #a5a5a5;
}

.zelle-img-nav-wrapper>div:nth-child(1) {
  width: 25%;
}

.zelle-img-nav-wrapper>div:nth-child(2) {
  width: 25%;
}

.zelle-img-nav-wrapper>div:nth-child(3) {
  width: 30%;
}

.zelle-img-nav-wrapper>div:nth-child(4) {
  width: 10%;
}

.zelle-img-nav-wrapper>div:nth-child(5) {
  width: 10%;
}

.zelle-img-body-text {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}

.withdrawal-img-main-container {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}

.withdrawal-img-title {
  display: block;
  font-weight: 500;
  color: #606060;
}

.withdrawal-price-title {
  font-size: 28px;
  line-height: 45px;
  color: #107897;
  font-weight: 500;
}

.zelle-img-details {
  font-size: 14px;
  line-height: 17px;
  color: #606060;
  font-weight: 500;
}

.zelle-img-upload {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.upload-img {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.withdraw-upload-main-wrapper {
  padding: 20px;
  border-radius: 5px;
}

.withdraw-upload-main-row {
  background: #fff;
  min-height: 600px;
  position: relative;
}

.complete-btn-wrapper {
  border-top: 1px solid #cecece;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.complete-btn {
  padding: 10px 35px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #107897;
  outline: none;
  border: none;
  border-radius: 5px;
}

.zelle-img-uploaded {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  border: 1px solid #ededed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.zelle-img-uploaded>img {
  width: 100%;
  height: 100%;
}

.total-category {
  font-size: 22px;
  font-weight: 500;

  color: #606060;
}

.category-nav-wrapper {
  padding: 10px 20px 10px 50px;
  border-radius: 18px;
  height: 35px;
  font-size: 14px;
  color: #606060;
  line-height: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #107897;
  position: relative;
}

.category-nav-wrapper>span {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #fff;
  background: #107897;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

.enhancement-title-wrapper {
  font-size: 12px;
  font-weight: 500;
  color: #a5a5a5;
  padding: 10px 20px;
}

.enhancement-wrapper {
  padding: 10px 20px;
  border-radius: 4px;
  background: #fff;
  min-height: 57px;
}

.enhancement-main-wrapper>div:not(:last-child) {
  margin-bottom: 15px;
}

.enhancement {
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  color: #606060;
}

.enhancement-tags>span {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
  background: #f4f4f4;
  border-radius: 4px;
  padding: 10px;
}

.enhancement-tags>.last-enhance-item {
  color: #fff;
  background: #107899;
}

.new-category-main-wrapper {
  border-radius: 10px;
  background: #fff;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.new-category-title {
  font-size: 18px;
  color: #107899;
  font-weight: 500;
  line-height: 20px;
  display: block;
  padding: 15px 20px;
  box-shadow: inset 0px 5px 30px -5px #cdcdcd;
  background: #fff;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

.category-adding>span {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
  color: #606060;
  width: 100%;
}

.category-adding>input {
  padding: 8px 10px;
  width: 100%;
  border: 1px solid #c1c1c1;
  font-size: 14px;
  color: #606060;
  outline: none;
  border-radius: 17px;
  max-width: 500px;
}

.category-adding>input::placeholder {
  color: #cccccc;
}

.category-adding-wrapper {
  background: #fff;
}

.add-new-category-button-wrapper>* {
  display: block;
}

.add-new-category-button-wrapper>button {
  padding: 10px 30px;
  color: #107897;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  outline: none;
  border: 1px solid #107897;
  border-radius: 3px;
}

.add-new-category-button-wrapper>span {
  font-size: 20px;
  color: #107897;
  cursor: pointer;
}

.second-category-input-wrapper {
  position: relative;
}

.second-category-input {
  padding: 10px;
  width: 100%;
  border: 1px solid #c1c1c1;
  font-size: 16px;
  line-height: 18px;
  color: #606060;
  outline: none;
  border-radius: 3px;
  min-width: 300px;
  max-width: 300px;
  display: inline-block;
}

.second-category-input::placeholder {
  color: #cccccc;
}

.second-category-input-button-wrapper {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.second-category-input-button-wrapper>button {
  background: none;
  outline: none;
  border: none;
  width: 15px;
}

.product_listing-wrapper {
  border-bottom: 2.7px solid #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.request-nav-wrapper-title {
  font-size: 12px;
  color: #a5a5a5;
  line-height: 17px;
}

.request-nav-wrapper>div:nth-child(1) {
  width: 35%;
}

.request-nav-wrapper>div:nth-child(2) {
  width: 25%;
}

.request-nav-wrapper>div:nth-child(3) {
  width: 10%;
}

.request-nav-wrapper>div:nth-child(4) {
  width: 10%;
}

.request-nav-wrapper>div:nth-child(5) {
  width: 10%;
}

.request-nav-wrapper>div:nth-child(6) {
  width: 10%;
}

.request-body-wrapper-title {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.request-product-image {
  max-width: 55px;
  border: 1px solid #ededed;
  border-radius: 5px;
  padding: 3px;
}

.chat-sidebar {
  position: fixed;
  right: 0;
  width: 400px;
  height: 100%;
  top: 0;
  background: #fff;
  box-shadow: -2px 0px 5px rgba(112, 112, 112, 0.15);
  cursor: pointer;
  overflow-y: auto;
}


.chat-sidebar-::-webkit-scrollbar {
  display: none;
}

.chat-sidebar-title {
  font-size: 18px;
  color: #107897;
  font-weight: 500;
}

.chat-sidebar-img {
  display: flex;
  width: 35px;
  height: 35px;
  padding: 10px;
  background: #107897;
  border-radius: 50%;
}

.chat-person-img-wrapper {
  width: 35px;
  height: 35px;
}

.chat-person-img-wrapper>img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  border-radius: 50%;
}

.chat-person-name {
  font-size: 14px;
  font-weight: 700;
  color: #606060;
  line-height: 1;
  margin-bottom: 5px;
}

.chat-person-message {
  font-size: 12px;
  color: #606060;
  max-width: 230px;
  max-height: 19px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chat-person-counter-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.chat-person-counter-wrapper>* {
  display: block;
}

.chat-counter {
  width: 15px;
  height: 15px;
  background: #107897;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #fff;
  margin-bottom: 5px;
  border-radius: 50%;
}

.chat-time {
  font-size: 12px;
  color: #a5a5a5;
  line-height: 20px;
}

.chat-business-wrapper>div {
  border-bottom: 10px solid #f4f4f4;
}

.merchant-message {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-flow: column;
  margin-bottom: 20px;
}

.chat-message-main-wrapper {
  gap: 5px;
}

.chat-message-details-wrapper {
  padding: 5px;
  background: #f4f4f4;
  border-radius: 5px 0 5px 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.chat-message-product-img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  object-fit: cover;
}

.chat-message-title {
  font-size: 10px;
  color: #606060;
  line-height: 12px;
  margin-bottom: 5px;
}

.chat-message {
  font-size: 10px;
  line-height: 12px;
  color: #606060;
  display: block;
}

.chat-message-time {
  font-size: 12px;
  color: #a5a5a5;
  line-height: 20px;
  display: block;
  margin-right: 30px;
}

.chat-message-client {
  align-items: flex-start !important;
}

.chat-message-client>span {
  margin-right: 0 !important;
  margin-left: 40px;
  text-align: left !important;
}

.chat-message-client>.chat-message-main-wrapper {
  flex-flow: row-reverse !important;
}

.chat-message-client>.chat-message-main-wrapper>.chat-message-details-wrapper {
  padding: 10px !important;
}

.chat-sidebar-container {
  min-height: 100%;
  position: relative;
}

.message-type-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  position: fixed;
  width: 360px;
  bottom: 20px;
  z-index: 444;
}

.message-image-attach-wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  background: none;
  outline: none;
  border: none;
}

.message-type-container {
  position: relative;
  width: 100%;
}

.message-type {
  padding: 10px;
  width: 100%;
  border: 1px solid #d8d8d8;
  font-size: 12px;
  color: #606060;
  outline: none;
  border-radius: 3px;
  min-width: 100%;
  display: inline-block;
}

.message-type::placeholder {
  color: #bfbfbf;
}

.message-send-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  outline: none;
  background: none;
}

.buyer-details-wrapper {
  padding: 10px 15px;
}

.buyer-details-wrapper>div:nth-child(1) {
  width: 15%;
}

.buyer-details-wrapper>div:nth-child(2) {
  width: 15%;
}

.buyer-details-wrapper>div:nth-child(3) {
  width: 20%;
}

.buyer-details-wrapper>div:nth-child(4) {
  width: 20%;
}

.buyer-details-wrapper>div:nth-child(5) {
  width: 10%;
}

.buyer-details-wrapper>div:nth-child(6) {
  width: 10%;
}

.buyer-details-wrapper>div:nth-child(7) {
  width: 10%;
}

.buyer-details-title {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-details-page {
  background: #fff;
  border-radius: 8px;
}

.pdp-container {
  margin-top: 10px;
}

.product-title-wrapper {
  font-size: 22px;
  color: #606060;
  font-weight: 500;
}

.product-acception-wrapper>button {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  background: #107897;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  min-width: 110px;
}

.product-acception-wrapper>a {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  background: #107897;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  min-width: 110px;
}

.pdp-product-images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pdp-product-images {
  padding: 3px;
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  min-width: 90px;
  min-height: 90px;
  max-width: 90px;
  max-height: 90px;
}

.pdp-product-images>img {
  width: 100%;
  width: 85px;
  height: 85px;
  object-fit: cover;
}

.pdp-product-large-image-wrapper {
  padding: 10px;
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  min-width: 300px;
  min-height: 300px;
  max-width: 300px;
  max-height: 300px;
}

.pdp-product-large-image-wrapper>img {
  object-fit: cover;
  width: 275px;
  height: 275px;
}

.pdp-tags-wrapper {
  margin-bottom: 10px;
}

.pdp-tag {
  font-size: 14px;
  font-weight: 500;
  color: #a4a4a4;
  margin-right: 10px;
}

.pdp-tag-details {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}

.variation-title {
  font-size: 14px;
  font-weight: 500;
  color: #a4a4a4;
  margin-right: 10px;
}

.variation-none {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}

.variation-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.variation-row>div {
  width: calc(100% / 8);
}

.varient-product-images>img {
  object-fit: cover;
  padding: 3px;
  border: 1px solid #c6c6c6;
  border-radius: 5px;
}

.varient-product-details>.vairent-product-topbar {
  font-size: 12px;
  font-weight: 500;
  color: #a4a4a4;
  margin-bottom: 10px;
}

.varient-product-details>.vairent-product-detail {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}

.order-shipping-navbar {
  border: 1px solid #ededed;
  border-radius: 5px;
}

.order-shipping-white-bg {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}

.order-shipping-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.order-shipping-title {
  color: #a5a5a5;
  font-size: 12px;
  font-weight: 500;
}

.order-shipping-body-text {
  color: #606060;
  font-size: 14px;
  font-weight: 500;
}

.order-shipping-nav-wrapper>div:nth-child(1),
.order-shipping-nav-wrapper>div:nth-child(2),
.order-shipping-nav-wrapper>div:nth-child(5),
.order-shipping-nav-wrapper>div:nth-child(6),
.order-shipping-nav-wrapper>div:nth-child(7),
.order-shipping-nav-wrapper>div:nth-child(8) {
  width: calc(60% / 6);
}

.order-shipping-nav-wrapper>div:nth-child(3),
.order-shipping-nav-wrapper>div:nth-child(4) {
  width: 20%;
}

.pending-color {
  color: #ff2ba6;
}

.order-shipping-dropdown-wrapper {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  background: #f4f4f4;
  border-radius: 50%;
  cursor: pointer;
}

.order-shipping-dropdown-wrapper>span {
  background: #107897;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  justify-content: center;
}

.shipping-order-items-title {
  font-size: 16px;
  font-weight: 500;
  color: #606060;
  margin-bottom: 20px;
}

.price-count {
  font-weight: 700;
}

.shipping-order-items {
  margin-bottom: 200px;
}

.payment-details-wrapper {
  padding: 10px;
}

.payment-details-wrapper {
  border-top: 1px solid #e6e6e6;
}

.payment-calc-wrapper {
  max-width: 50%;
  margin-left: auto;
}

.payment-calc {
  color: #606060;
  font-weight: 400;
  line-height: 17px;
  margin-bottom: 20px;
}

.payment-calc>*:last-child {
  font-weight: 700;
}

.payment-total-wrapper {
  padding-top: 15px;
  border-top: 1px solid #e6e6e6;
}

.payment-total-wrapper>.total-payment {
  width: 50%;
  margin-left: auto;
}

.total-payment-title {
  color: #606060;
  font-weight: 500;
}

.total-payment-price {
  font-size: 21px;
  color: #107897;
  line-height: 17px;
  font-weight: 500;
}

.shipping-order-customer-details {
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 2%;
  margin-bottom: 20px;
}

.shipping-order-customer-details>div {
  width: 30%;
  min-width: fit-content;
}

.shipping-order-customer-details>.shipping-order-customer-detail>p {
  font-size: 12px;
  color: #a5a5a5;
  margin-bottom: 10px;
}

.shipping-order-customer-details>.shipping-order-customer-detail>span {
  font-size: 14px;
  font-weight: 700;
  color: #606060;
  display: block;
}

.tracking-date {
  max-width: 100px;
  font-size: 13px;
  color: #606060;
  line-height: 14px;
  text-align: right;
}

.tracking-date>span {
  color: #a5a5a5;
  font-size: 11px;
  display: block;
}

.tracking-location {
  font-size: 14px;
  font-weight: 700;
  color: #606060;
}

.tracking-divider {
  margin: 0 10px;
  width: 20px;
  height: 20px;
  z-index: 22;
  position: relative;
}

.tracking-divider>input {
  width: 100%;
  height: 100%;
}

.tracking-divider>input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e6e6e6;
  border-radius: 50%;
  background-clip: content-box;
  padding: 3px;
}

.tracking-divider>input[type="radio"]:checked {
  background-color: #e6e6e6;
}

.tracking-divider::before,
.tracking-divider::after {
  position: absolute;
  content: "";
  background: #e6e6e6;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.tracking-divider::before {
  height: 15px;
  top: -15px;
}

.tracking-divider::after {
  height: 15px;
  bottom: -15px;
}

.shipping-info-title {
  margin-bottom: 30px;
}

.tracking-location>span {
  font-size: 13px;
  display: block;
  color: #a5a5a5;
  font-weight: 400;
}

.active_new_icon {
  height: 16px;
  width: 16px;
  object-fit: contain;
}



/* Chat modal css  */
.modalChat {
  display: none;
  /* Hide the modal by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  /* Overlay background */
}

.modal-content-chat {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close-chat {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-chat:hover,
.close-chat:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* second modal */
.modalChatData {
  display: none;
  /* Hide the modal by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  /* Overlay background */
}

.close-chat-data:hover,
.close-chat-data:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#user_message_list {
  overflow: auto;
  height: 600px;
}

.withdrawal-detail-wrapper .mini-image-box {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  overflow: hidden;
}

.withdrawal-detail-wrapper .mini-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-search-bar {
  display: flex;
  align-items: center;
  background: #ededed;
  border-radius: 100px;
  padding: 3px 3px 3px 20px;
}

.top-search-bar input.form-control {
  border: none;
  outline: none;
  background: none;
}


.swiper-wrapper {
  column-gap: 15px;
}

.customer-body-wrapper img {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  object-fit: cover;
}

.pending-order-color {
  font-weight: bold;
  color: #ff2ba8;
}

.sucess-order-color {
  font-weight: bold;
  color: #088eb0;
}

.shipping-order-color {
  font-weight: bold;
  color: #CDCDF8;
}

.cancel-order-color {
  font-weight: bold;
  color: #CDCDF8;
}

.name-date-order-details img,
.user-image-size-icon {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  object-fit: cover;
}

.second-category-input-wrapper .plus-icon {
  font-size: 15px;
  color: #0d7d9f;
  margin-left: 10px;
}

.add-new-category-button-wrapper {
  justify-content: left;
  flex-direction: row-reverse;
}

.add-new-category-button-wrapper button {
  margin-right: 20px;
}

.gap-0 {
  gap: 0px !important;
  column-gap: 0px !important;
}

img.category-pro-img {
  width: 100%;
  height: 100%;
}

.category-upload-btn {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  object-fit: contain;
  border-radius: 100%;
  background: #eeeeee;
  position: relative;
  overflow: hidden;
}

.category-upload-btn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

img.category-pro-img-index {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  object-fit: contain;
  border-radius: 100%;
  background: #eeeeee;
}

.overlay-div {
  position: absolute;
  /* Position the overlay absolutely within the relative container */
  top: 0;
  /* Position it at the top of the relative container */
  left: 0;
  /* Position it at the left of the relative container */
  width: 100%;
  /* Make it span the full width of the relative container */
  height: 100%;
  /* Make it span the full height of the relative container */
  background-color: rgba(0, 0, 0, 0.8);
  /* Add a semi-transparent background */
  color: #fff;
  /* Set text color to white or appropriate color */
  z-index: 2;
  /* Ensure the overlay appears above other content */
  /* Add any additional styles you want for the overlay */
  transition: 0.3s;
  opacity: 0;
  background: linear-gradient(0deg, rgba(225, 225, 225, .9) 0%, rgba(255, 255, 255, 0.9) 95%);
  cursor: pointer;
}

.overlay-div * {
  color: #000;
}

.overlay-div .product-name {
  color: #fff;
}

.main-product-div {
  position: relative;
}

.main-product-div:hover .trending-result.overlay-div {
  transition: 0.3s;
  opacity: 1;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between;
}

.side-chat-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
}

.custom-slider {
  overflow-x: auto;
  display: flex;
  column-gap: 15px;
}

.custom-slider::-webkit-scrollbar {
  display: none;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.gap-0 {
  gap: 0 !important;
}

.category-nav-wrapper.theme-bg {
  background: #107897 !important;
  color: #fff !important;
}

.category-nav-wrapper.theme-bg>span {
  background: #fff !important;
  color: #107897 !important;
}

canvas#chart3,
#chart4 {
  position: relative;
  top: -35px;
}


@media (max-width: 1199px) {
  .pdp-product-large-image-wrapper {
    min-width: initial;
    min-height: initial;
    max-width: initial;
    max-height: initial;
    height: 173px;
    width: 173px;
    order: 1;
  }

  .pdp-product-images-wrapper {
    order: 2;
  }

  .pdp-product-large-image-wrapper>img,
  .pdp-product-images>img {
    width: 100%;
    height: 100%;
  }

  .pdp-product-images {
    min-width: initial;
    min-height: initial;
    max-width: initial;
    max-height: initial;
    width: 75px;
    height: 75px;
  }

  .product-image-group {
    flex-direction: column;
    gap: 10px;
  }

  .wrap-detail .w-4 {
    width: 190px;
  }

  .wrap-detail .w-8 {
    width: calc(100% - 190px);
    margin-left: 0;
  }

  .pdp-tag {
    font-size: 14px;
    font-weight: 400;
  }

  .pdp-tag-details {
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
  }

  .variation-title {
    font-weight: 400;
    font-size: 22px;
  }

  .varient-product-images {
    width: 75px !important;
    height: 75px;
    margin-right: 10px;
  }

  .varient-product-images>img {
    height: 100% !important;
    width: 100% !important;
  }

  .varient-product-details>.vairent-product-topbar {
    font-weight: 400;
    font-size: 14px;
  }

  .vairent-product-detail {
    font-size: 17px !important;
    font-weight: 400 !important;
  }

  .w-100-1024 {
    width: 100%;
    margin: 10px 0 !important;
  }

  .flex-wrap-1024 {
    flex-wrap: wrap;
  }

  .bottom-sec .inner-sec {
    flex-wrap: wrap;
  }

  .bottom-sec .inner-sec .w-6,
  .bottom-sec .inner-sec .w-4 {
    width: 100%;
  }

  .inner-sec .graph-title,
  .review-full .review-header .title {
    font-size: 17px;
    font-weight: 400;
  }

  .review-full .review-header .view-btn {
    font-size: 14px;
  }

  .bottom-sec .inner-sec .graph-view {
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .bottom-sec .inner-sec .graph-view .graph-div {
    width: 100%;
    margin-top: 20px;
  }

  .bottom-sec .inner-sec .filter-btn {
    margin-top: 0;
  }

  .bottom-sec .inner-sec .graph-view .graph-div #myChartBar {
    max-width: 100% !important;
  }

  .bottom-sec .inner-sec .graph-info .info-box .title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .bottom-sec .inner-sec .filter-btn select {
    font-size: 14px;
  }

  .bottom-sec .inner-sec .info-listing .graph-info {
    width: calc(100% / 4);
  }

  .bottom-sec .inner-sec .graph-info .info-box .info .mins {
    margin-bottom: 10px;
  }

  .bottom-sec .inner-sec .graph-info .info-box .info .mins span {
    font-size: 20px;
    font-weight: 400;
  }

  .bottom-sec .inner-sec .graph-info .info-box .info .b-text {
    font-size: 14px;
  }

  .bottom-sec .inner-sec .info-listing {
    margin-top: 20px;
    padding: 0 40px;
  }

  .review-middle-sec .short-by-sec .filter-outer .total-number,
  .review-middle-sec .short-by-sec .filter-outer .number {
    font-size: 14px;
  }

  .review-middle-sec .avg-rating .avg-number {
    font-size: 30px;
  }

  .review-middle-sec .avg-rating .review-numbers {
    font-size: 14px;
  }

  .review-liisting {
    font-size: 15px;
  }

}

.customer-top-nav.full-width {
  width: 100%;
  justify-content: start;
  flex-wrap: nowrap;
  background: #aaaaaa;
  padding: 15px 20px;
  margin: -15px;
  margin-bottom: 15px;
}

.customer-top-nav.full-width input {
  padding: 10px 12px;
  width: 100%;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 17.5px;
  background: #fff;
  color: #606060;
}

.create_blog .card {
  background: #fff;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 15px;
  margin-bottom: 0px;
  border: 1px solid #ededed;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.create_blog .card h4 {
  font-size: 18px;
  padding-bottom: 25px;
  font-weight: bold;
  display: block;
}


.create_blog .complete-btn-wrap .btn {
  padding: 10px 30px;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid #0f7896;
  background-color: #0f7896;
  border-radius: 5px;
}


.create_blog .complete-btn-wrap .btn-cancel {
  padding: 10px 30px;
  box-sizing: border-box;
  color: #0f7896;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid #0f7896;
  background-color: white;
  border-radius: 5px;
}

.create_blog .complete-btn-wrap {
  margin-top: 25px;
  text-align: center;
}

.create_blog .row {
  display: flex;
  flex-wrap: wrap;
  --bs-gutter-x: 1.5rem;
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.create_blog .row>* {
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);

}

.customer-container form {
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
}

.thumb-img {
  max-width: 40px;
}

.mb-3 {
  margin-bottom: 20px;
}

.create_blog .col-md-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.create_blog .col-md-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.create_blog .col-md-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.create_blog .form-control {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
}

.create_blog .card figure {
  width: 100%;
  min-height: 150px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}



.create_blog .checkbox_showon {
  margin-top: 20px;
}

.create_blog .checkbox_showon p {
  margin-bottom: 15px;
  font-size: 20px;
  width: 100%;
}

.create_blog .checkbox_50 {
  width: 50%;
}

.create_blog .checkbox_flex {
  display: flex;
}

.create_blog .card figure input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}


.blog_listing_box {
  margin-top: 20px;
  position: relative;
}

.blog_listing_box .fa-plus {
  background: #0f7896;
  height: 25px;
  color: #fff;
  position: absolute;
  right: 2%;
  top: 20px;
  border-radius: 50px;
  width: 25px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.blog_listing_box .table {
  width: 100%;
  /* border-collapse: collapse; */
  border-spacing: 0 15px;
}

.blog_listing_box .table tr {
  margin-bottom: 15px;
}

.blog_listing_box .table td {
  background: #f2f2f2;
  padding: 12px 10px;
  font-size: 16px;
  text-transform: capitalize;
}

.blog_listing_box .table .left_align {
  text-align: left;
  border-radius: 5px 0px 0px 5px;
  width: 80%;
}


.blog_listing_box .table .right_align {
  text-align: right;
  border-radius: 0px 5px 5px 0px;
  width: 20%;
}

.blog_listing_box .table .right_align i {
  color: #0f7896;
  margin-left: 15px;
}

/* .create_blog .card figure{
  height:150px;
  object-fit:cover;
} */

.flex_color {
  display: flex;
}

.color-setting .form-group {
  width: 33.33% !important;
  justify-content: left !important;
}

.color-setting .form-group .label {
  margin-right: 10px !important;
}

.color-setting .form-group:nth-child(3) {
  justify-content: right !important;
}


.color-setting .form-group:nth-child(2) {
  justify-content: center !important;
}

.blog_listing_box .form-group {
  width: 100% !important;
}


.customer-new-pagination .text-muted {
  float: right;
}

.customer-new-pagination .justify-content-between {
  width: 100% !important;
}

.customer-new-pagination .pagination {
  width: 45% !important;
  display: flex;
  justify-content: space-between;
}

.customer-new-pagination .justify-content-sm-between {
  width: 50% !important;
}

.customer-new-pagination .justify-content-sm-between .pagination {
  position: absolute;
  left: 10%;
  width: 7% !important;
}

.customer-new-pagination {
  position: relative;
}

.customer-new-pagination .justify-content-sm-between .pagination li a {
  color: #000 !important;
}