@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --theme-color: #f13f3e;
  --theme-light-color: #ffe2e2;
  --theme-hover-color: #d12d2c;
}

body {
  font-family: "Rubik", sans-serif !important;
  background-color: #f1f2f7 !important;
  overflow-x: hidden;
}

.page-wrapper {
  padding: 1rem 1.5rem;
}

.modal-dialog {
  max-width: 90% !important;
}

.modal-header > button {
  outline: 0 !important;
  box-shadow: none !important;
}

/* HEADER CSS START */

.header-wrapper {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme-color);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.header-top > div > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-top > div > ul > li {
  padding: 0 0.6rem;
  position: relative;
}

.header-top > div > ul > li > a,
.header-top > div > ul > li > span {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/* .header-top  >  div  >  ul  >  li  >  a:hover,
.header-top  >  div  >  ul  >  li  >  span:hover {
  color: var(--theme-color);
} */

.header-top > div > ul > li > a > i,
.header-top > div > ul > li > span > i {
  font-size: 16px;
  margin: 0 0.3rem;
}

.header-bottom {
  background-color: #fff;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom-left {
  display: flex;
  width: 248px;
}

.header-bottom-left > a {
  display: flex;
  width: 100%;
}

.header-bottom-left > a > img {
  width: 100%;
}

.accout-sub {
  position: absolute;
  right: 0;
  width: 260px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 32px 0 rgba(39, 49, 66, 0.2);
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  z-index: 9;
}

.accout-sub.active {
  opacity: 1;
  visibility: visible;
}

.accout-sub-wrapper {
  position: relative;
  padding: 1rem;
}

.accout-sub-wrapper::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 15%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.accout-sub-wrapper-top {
  display: flex;
  align-items: center;
}

.accout-sub-image {
  max-width: 65px;
  height: 65px;
}

.accout-sub-image > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accout-sub-image > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.accout-sub-detail {
  display: flex;
  flex-direction: column;
  width: calc(100% - 65px);
  margin-left: 1rem;
}

.accout-sub-detail-top > span {
  font-weight: 500;
  color: #222;
  font-size: 16px;
}

.accout-sub-detail-top > p {
  font-weight: 500;
  color: #666;
  margin: 0;
}

.account-point {
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background-color: var(--theme-color);
  font-size: 16px;
}

.accout-sub-detail-bottom {
  margin-top: 0.5rem;
}

.accout-sub-wrapper-bottom {
  margin-top: 1rem;
}

.accout-sub-wrapper-bottom > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accout-sub-wrapper-bottom > ul > li {
  padding: 0.3rem 0;
}

.accout-sub-wrapper-bottom > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accout-sub-wrapper-bottom > ul > li > a {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  display: flex;
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
}

.accout-sub-wrapper-bottom > ul > li > a:hover {
  background-color: #f5f5f5;
}

.notification-sub {
  position: absolute;
  right: 0;
  background-color: #fff;
  width: 450px;
  border-radius: 8px;
  box-shadow: 0 7px 32px 0 rgba(39, 49, 66, 0.2);
  margin-top: 0.3rem;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: 0.2s ease-in-out;
}

.notification-sub.active {
  opacity: 1;
  visibility: visible;
}

.notification-sub-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-sub-title > span {
  font-size: 15px;
  font-weight: 500;
}

.notification-sub-title > span.notification-count {
  color: var(--theme-color);
}

.notification-sub-read-mark {
  font-size: 14px;
  font-weight: 500;
}

.notification-sub-read-mark span > i {
  margin-right: 0.5rem;
}

.notification-sub-read-mark > span {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.notification-sub-read-mark > span:hover {
  background-color: #f5f5f5;
}

.notification-sub-center {
  display: flex;
  flex-direction: column;
  height: 475px;
  overflow: auto;
}

.notification-sub-content {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--theme-light-color);
  height: 95px;
}

.notification-sub-content:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-content-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 1rem;
}

.notification-sub-bottom {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-sub-bottom > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color) !important;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.notification-sub-bottom > a:hover {
  background-color: #f5f5f5;
  border-radius: 8px;
}

.notification-details-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-content-details {
  width: calc(100% - 40px);
}

.notification-details-category,
.notification-details-date {
  font-size: 12px;
  font-weight: 400;
  color: #777;
}

.notification-details-center > span {
  font-size: 15px;
  font-weight: 400;
}

.notification-details-center {
  margin: 0.3rem 0;
}

.notification-details-bottom > a {
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 500;
}

.header-bottom-right {
  display: flex;
  width: 318px;
  align-items: center;
  justify-content: flex-end;
}

.header-bottom-center {
  display: flex;
  width: calc(100%);
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

.header-bottom-right > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-bottom-right > ul > li > a {
  color: #95a1b5;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-bottom-right > ul > li:not(:last-child) {
  margin-right: 1rem;
}

.header-bottom-right > ul > li > a > i {
  margin-right: 0.5rem;
  font-size: 20px;
  display: flex;
}

.header-bottom-right > ul > li:last-child {
  padding: 0.5rem 1rem;
  background-color: var(--theme-color);
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.header-bottom-right > ul > li:last-child:hover {
  background-color: var(--theme-hover-color);
}

.header-bottom-right > ul > li:last-child > a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.header-bottom-center > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  /* align-items: center; */
  /* justify-content: center; */
}

.header-bottom-center > ul > li {
  margin: 0 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
  cursor: pointer;
}

.header-bottom-center > ul > li:hover,
.header-bottom-center > ul > li.active {
  background-color: var(--theme-color);
}

.header-bottom-center > ul > li:hover > a,
.header-bottom-center > ul > li.active > a,
.header-bottom-center > ul > li:hover > span,
.header-bottom-center > ul > li.active > span,
.header-bottom-center > ul > li:hover > button > i,
.header-bottom-center > ul > li.active > button > i {
  color: #fff;
}

.header-bottom-center > ul > li > span,
.header-bottom-center > ul > li > a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  margin-right: 0.5rem;
}

.header-bottom-center > ul > li > .category-sub {
  position: absolute;
  left: 0;
  width: 260px;
  box-shadow: 0 7px 32px 0 rgba(39, 49, 66, 0.2);
  margin-top: 0.5rem;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  top: 100%;
  z-index: 99;
}

.header-bottom-center > ul > li > .category-sub.active {
  opacity: 1;
  visibility: visible;
}

.header-bottom-center > ul > li > .category-sub > ul {
  list-style: none;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
}

.header-bottom-center > ul > li .category-sub > ul > li > a {
  display: flex;
  padding: 1rem;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.header-bottom-center > ul > li .category-sub > ul > li > a:hover {
  background-color: var(--theme-light-color);
  color: var(--theme-color);
}

.header-bottom-center > ul > li .category-sub::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.header-bottom-center > ul > li > button {
  border: none;
  background-color: transparent;
  padding: 0;
}

.header-bottom-center > ul > li > button > i {
  color: #95a1b5;
}

.breadcrump-wrapper {
  background-color: transparent;
  display: flex;
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 0;
}

.breadcrump-title > span {
  font-size: 18px;
}

.mobile-header-wrapper {
  display: none;
}

/* HEADER CSS FINISH */

/* LOGIN CSS START */

.login-container {
  display: flex;
}

.login-container-left {
  width: 50%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.login-container-right {
  width: 50%;
  background-color: #fff;
  margin-left: 1.5rem;
  border-radius: 8px;
}

.login-wrapper {
  margin-top: 2rem;
}

.login-swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.login-container-left-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.login-container-left-title > span {
  font-size: 30px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.login-container-left-title > p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.login-container-left-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.login-container-left-form .form-group > label {
  color: #6e7787;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.login-container-left-form .form-group .form-group-input {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
}

.login-container-left-form .form-group .form-group-input > input {
  height: 100%;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 13px;
  padding: 0.5rem;
  box-shadow: none;
  outline: 0;
  width: 100%;
  padding-right: 40px;
}

.login-container-left-form .form-group .form-group-input > input:focus {
  border-color: var(--theme-color);
}

.login-container-left-form .form-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.login-container-left-form .form-btn > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  outline: 0;
  background-color: var(--theme-color);
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 0.5rem;
}

.swiper-slide-content {
  display: flex;
  align-items: center;
  padding: 3rem;
}

.swiper-slide-content-text {
  display: flex;
  flex-direction: column;
  width: 55%;
}

.swiper-slide-content-image {
  display: flex;
  width: 45%;
}

.swiper-slide-content-image > img {
  width: 100%;
}

.swiper-slide-content-text-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

.swiper-slide-content-text-desc {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.swiper-slide-content-text-desc > span {
  margin-bottom: 1rem;
}

.swiper-slide-content-text-desc > span > b {
  padding: 0.3rem;
}

.login-swiper .swiper-pagination > span.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.login-swiper .swiper-button-next,
.login-swiper .swiper-button-prev {
  width: 32px;
  height: 32px;
  background-color: #f5f5f5;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.login-swiper .swiper-button-next::after,
.login-swiper .swiper-button-prev::after {
  font-size: 15px;
  color: #000;
}

.login-swiper .swiper-button-next:hover,
.login-swiper .swiper-button-prev:hover {
  background-color: #eee;
}

.login-swiper .swiper-button-next {
  right: 5px;
}

.login-swiper .swiper-button-prev {
  left: 5px;
}

.password-mask-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  cursor: pointer;
  z-index: 9;
}

/* LOGIN CSS FINISH */

/* DASHBOARD CSS START */

.dashboard-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.dashboard-user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
}

.dashboard-user-avatar {
  max-width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.dashboard-user-avatar > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dashboard-user-details {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
}

.dashboard-user-details-top {
  display: flex;
  align-items: center;
}

.dashboard-user-details-top > span {
  font-weight: 500;
  color: #222;
  font-size: 16px;
  margin-right: 0.5rem;
}

.dashboard-user-details-top > p {
  font-weight: 500;
  color: #999;
  margin: 0;
}

.dashboard-user-details-bottom {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.dashboard-user-points > a,
.dashboard-user-follow > a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.dashboard-user-points > a > span,
.dashboard-user-follow > a > span {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-user-points > a > p,
.dashboard-user-follow > a > p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-right: 0.6rem;
  display: flex;
}

.dashboard-user-points,
.dashboard-user-follow {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
}

.dashboard-user-points {
  background-color: var(--theme-color);
  margin-right: 1rem;
}

.dashboard-user-follow {
  background-color: #1f2124;
}

.dashboard-user-points > a > span > i,
.dashboard-user-follow > a > span > i {
  margin-left: 0.5rem;
  font-size: 16px;
}

.tooltip-wrapper {
  position: relative;
  display: flex;
}

.tooltip-wrapper > i {
  color: #000;
}

.tooltip-wrapper .tooltiptext {
  display: flex;
  visibility: hidden;
  width: 160px;
  background-color: #1f2124;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0.3rem;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.tooltip-wrapper .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip-wrapper:hover .tooltiptext {
  visibility: visible;
}

.dashboard-page-top > div,
.dashboard-page-bottom > div {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
}

.dashboard-page-top,
.dashboard-page-bottom {
  display: flex;
}

.dashboard-page-bottom {
  margin-top: 1.5rem;
}

.dashboard-sale-performance,
.dashboard-action {
  width: 65%;
  margin-right: 1.5rem;
}

.dashboard-notification {
  width: 35%;
}

.dashboard-page-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.dashboard-page-title > p {
  color: var(--theme-color);
  margin: 0;
  padding: 0 0.3rem;
}

.sale-performance-contain {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.sale-performance-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(50% - (2rem) / 2);
  background-color: var(--theme-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: #fff;
}

.sale-performance-name {
  font-size: 12px;
  font-weight: 400;
}

.sale-performance-price {
  font-size: 20px;
  font-weight: 500;
}

.sale-performance-percent {
  font-size: 12px;
  font-weight: 700;
  color: #afbbca;
  margin-right: 0.5rem;
}

.sale-performance-content-right {
  display: flex;
  align-items: center;
}

.notification-content {
  display: flex;
  align-items: center;
}

.notification-content:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.dashboard-notification-contain {
  overflow: auto;
  height: calc(190px + 1rem);
  padding-right: 0.5rem;
}

.dashboard-action-contain {
  display: flex;
  gap: 1.5rem;
}

.dashboard-action-content {
  padding: 1rem;
  background-color: #f7f7fa;
  border-radius: 8px;
  width: calc(33.33% - (1.5rem * 2) / 3);
}

.dashboard-action-content-title {
  font-size: 15px;
  font-weight: 500;
}

.dashboard-action-content > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.dashboard-action-content > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.dashboard-action-content > ul > li > span {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  color: #6e7787;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.dashboard-action-content > ul > li > span > .tooltip-wrapper {
  margin-left: 0.5rem;
}

.dashboard-action-content > ul > li > span > .tooltip-wrapper > i {
  font-size: 16px;
}

.dashboard-action-content > ul > li > p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.dashboard-action-content > ul > li > p > b {
  font-weight: 500;
  color: #95a1b5;
}

.dashboard-action-content > ul > li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.dashboard-action-content > ul > li:hover {
  background-color: var(--theme-light-color);
  border-color: var(--theme-color);
}

.dashboard-action-content > ul > li:hover > span {
  color: #000;
}

.dashboard-action-content:last-child {
  width: calc(66.66% - (1.5rem * 2) / 3);
}

.dashboard-action-content:last-child > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-action-content:last-child > ul > li {
  width: calc(50% - (1rem) / 2);
}

.dashboard-action-content:last-child > ul > li:last-child {
  width: 100%;
}

/* DASHBOARD CSS FINISH */

/* FOOTER CSS START */

.footer-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: #fff;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-text-wrapper > span {
  font-size: 16px;
  font-weight: 400;
  color: #6c757d;
  text-align: center;
}

/* FOOTER CSS FINISH */

/* PRODUCT CSS START */

.product-add > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--theme-color);
  padding: 0.3rem 1rem;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.product-add > a > i {
  width: 14px;
  height: 14px;
  background-color: var(--theme-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.product-add > a:hover {
  background-color: #f5f5f5;
}

.product-wrapper-top {
  background-color: #fff;
  border-radius: 8px;
}

.product-filter-title {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 1.5rem;
}

.product-filter-title > a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease-in-out;
}

.product-filter-title > a.active,
.product-filter-title > a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.product-filter-form {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
}

.product-form-group > input,
.product-form-group .select2-selection {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.product-form-group > input:focus,
.select2-container--bootstrap4.select2-container--focus .select2-selection {
  border-color: var(--theme-color) !important;
  box-shadow: none !important;
}

.product-form-group-top {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.product-form-group-top .product-form-group {
  display: flex;
  width: calc(25% - (1rem * 3) / 4);
}

.product-form-group-bottom {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.product-form-group-bottom .product-form-group {
  width: calc(33.33% - (1rem * 2) / 3);
}

.product-form-group-bottom .product-form-group > button {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  transition: 0.2s ease-in-out;
}

.product-form-group-bottom .product-form-group > button:hover {
  background-color: var(--theme-hover-color);
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-search__field {
  margin: 0 !important;
  height: 35px !important;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-search__field,
.product-form-group > input {
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.select2-container--bootstrap4 .select2-selection--multiple > ul {
  padding: 0 !important;
}

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] {
  background-color: var(--theme-color) !important;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
  background-color: var(--theme-light-color) !important;
  border: none !important;
  margin: 0.5rem 0.3rem !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #444 !important;
}

.select2-container--bootstrap4 .select2-selection--multiple {
  min-height: 35px !important;
}

.product-page-info {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: var(--theme-light-color);
  border: 1px solid var(--theme-color);
  border-radius: 8px;
  margin: 1.5rem 0;
}

.product-page-info-text {
  display: flex;
  align-items: center;
  width: 80%;
}

.product-page-info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-color);
  text-decoration: underline;
}

.product-page-info-text > i {
  color: var(--theme-color);
  margin-right: 1rem;
  font-size: 20px;
}

.product-page-info-desc {
  font-size: 14px;
  font-weight: 400;
}

.product-table-wrapper {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  padding-top: 0;
}

.product-table-btn button {
  background-color: var(--theme-color) !important;
  border: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  display: flex;
  align-items: center;
}

.product-table-wrapper-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination-wrapper ul {
  margin: 0;
}

.pagination-wrapper ul > li {
  margin: 0 0.3rem;
}

.pagination-wrapper ul > li > a,
.pagination-wrapper ul > a {
  border-radius: 5px;
  display: flex;
  color: var(--theme-color) !important;
  box-shadow: none !important;
}

.pagination-wrapper ul > a {
  margin: 0 .3rem;
}

.pagination-wrapper ul > li > a.page-active-link {
  background-color: var(--theme-color);
  color: #fff !important;
  border-color: var(--theme-color);
}

input[type="checkbox"] {
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
  opacity: 0.5;
  color: transparent;
}

input[type="checkbox"]:hover {
  opacity: 1;
}

input[type="checkbox"]:checked {
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  opacity: 1;
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

.product-table-wrapper-center {
  /* margin-top: 1.5rem; */
  margin-bottom: 1.5rem;
}

.product-table-title,
.product-table-content {
  display: flex;
  width: 100%;
}

.product-table-title .product-table-tr {
  width: 9%;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.product-table-content .product-table-td {
  width: 9%;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  padding: 0 0.5rem;
  position: relative;
  background-color: transparent;
  transition: 0.2s ease-in-out;
  /* overflow: hidden; */
  /* overflow-x: auto; */
  overflow-wrap: anywhere;
}

.product-table-content .product-table-td.checked {
  background-color: var(--theme-light-color);
}

.product-table-title .product-table-tr:nth-child(2),
.product-table-content .product-table-td:nth-child(2) {
  width: 19%;
}

.product-table-title .product-table-tr:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid #dee2e6;
  border-radius: 8px 0 0 0;
}

.product-table-content .product-table-td:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid #dee2e6;
}

.product-table-title .product-table-tr:last-child {
  border-radius: 0 8px 0 0;
}

.product-table-content:last-child .product-table-td:first-child {
  border-radius: 0 0 0 8px;
}

.product-table-content:last-child .product-table-td:last-child {
  border-radius: 0 0 8px 0;
}

.product-table-content .product-table-td > span {
  font-size: 12px;
  font-weight: 400;
}

.product-table-content .product-table-td > input[type="text"] {
  width: 80%;
  height: 25px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 400;
  padding: 0.5rem;
}

.product-table-content .product-table-td > button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.product-table-content .product-table-td > button > i {
  font-size: 12px;
  margin-left: 0.3rem;
}

.product-table-content .product-table-td .product-info {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}

.product-table-content .product-table-td .product-info .product-table-image {
  display: flex;
  min-width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
}

.product-table-content .product-table-td .product-info .product-table-image > img {
  /* width: 100%; */
  height: 50px;
  /* object-fit: cover; */
  object-position: top;
}

.product-table-content .product-table-td .product-info .product-table-name {
  width: calc(100% - 50px);
  margin-left: 1rem;
}

.product-table-content .product-table-td .product-info .product-table-name > a {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  color: #000;
}

.product-table-content .product-table-td > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.product-table-content .product-table-td > a:hover {
  background-color: var(--theme-hover-color);
}

.product-table-wrapper-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-table-btn ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.product-table-btn ul > li {
  background-color: var(--theme-light-color) !important;
}

.product-table-btn ul > li > a {
  color: #444 !important;
  font-size: 15px;
  font-weight: 400;
  background-color: transparent !important;
}

.update-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  background-color: #fff;
  z-index: 999;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 7px 32px 0 rgba(39, 49, 66, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}

.update-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.update-wrapper-btn > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none !important;
  outline: 0 !important;
  border-radius: 8px;
  color: #fff;
}

.update-wrapper-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.update-wrapper-input {
  display: flex;
  width: 100%;
}

.update-wrapper-input > input {
  width: 100%;
  height: 25px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 400;
  padding: 0.5rem;
}

.product-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  inset: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}

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

span.product-count {
  display: flex;
  margin: 0;
  width: 40px;
  align-items: center;
  justify-content: center;
}

.product-details-save {
  display: flex;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.product-details-save > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none;
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.product-details-save > button > i {
  display: flex;
  margin-right: 0.5rem;
}

.product-details-save > button:hover {
  background-color: var(--theme-hover-color);
}

.overflow-x {
  overflow: hidden;
  overflow-x: auto;
}

.attribute-rows {
  display: flex;
  width: 100%;
  gap: 1rem;
}

/* PRODUCT CSS FINISH */

/* PRODUCT DOWNLOAD CSS START */

.product-download-wrapper {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
}

.product-wrapper-top-text > span {
  /* display: flex; */
  width: 55%;
  font-size: 14px;
  font-weight: 400;
  color: #434343;
}

.product-download-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.product-download-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(33.33% - (1rem * 2) / 3);
}

.product-download-item > button {
  width: 100%;
  padding: 0.3rem;
  background-color: var(--theme-color);
  border: none;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-download-item > button:hover {
  background-color: var(--theme-hover-color);
}

.product-download-item > button > i {
  display: flex;
  margin-right: 0.5rem;
}

.product-download-table-title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.product-download-table-tr:first-child {
  width: 10%;
}

.product-download-table-tr:last-child {
  width: 90%;
}

.product-download-table-tr {
  background-color: transparent;
  padding: 0.5rem 1rem;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.product-download-content {
  display: flex;
  align-items: center;
}

.product-download-table-td:first-child {
  width: 10%;
}

.product-download-table-td:last-child {
  width: 90%;
}

.product-download-table-td {
  padding: 0.5rem 1rem;
}

.product-download-table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.product-download-content:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* PRODUCT DOWNLOAD CSS FINISH */

/* PRODUCT DETAILS CSS START */

.product-detail-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.product-details-left {
  width: 100%;
}

.product-details-left > ul {
  list-style: none;
  margin: 0;
  display: flex;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  gap: 1rem;
}

.product-details-left > ul > li {
  width: 100%;
}

.product-details-left > ul > li > button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  width: 100%;
  background-color: transparent;
  border: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.product-details-left > ul > li > button:hover,
.product-details-left > ul > li.active > button {
  color: var(--theme-color);
}

.product-details-right {
  width: 100%;
  margin-top: 1.5rem;
}

.form-group-wrapper {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-group-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group-wrapper .form-group-content .form-group {
  display: flex;
  flex-direction: column;
  width: calc(50% - (1rem) / 2);
}

.form-group-wrapper .form-group-content .form-group.frm-grp-full {
  width: 100%;
}

.form-group-title > span {
  font-size: 20px;
  font-weight: 500;
}

.form-group-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.form-group-wrapper .form-group-content .form-group > label {
  font-size: 12px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.form-group-wrapper .form-group-content .form-group > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.form-group-wrapper .form-group-content .form-group > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.form-group-wrapper .form-group-content .form-group > input:focus {
  border-color: var(--theme-color);
}

.form-group-image {
  display: flex;
  width: 100%;
  gap: 1rem;
  height: 160px;
  max-height: 160px;
}

.image-upload-btn {
  width: 15%;
  display: flex;
  height: 100%;
}

.product-image-wrapper {
  width: 85%;
  display: flex;
  gap: 0.5rem;
  overflow: auto;
}

.product-image-wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: #e6e6e6;
  border-radius: 5px;
}

.product-image-wrapper::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 5px;
}

.image-upload-btn > button {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: transparent !important;
  border: 1px dashed var(--theme-color) !important;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
  box-shadow: none !important;
}

.image-upload-btn > button > i {
  width: 35px;
  height: 35px;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 50%;
  border: 1px dashed transparent;
  transition: 0.2s ease-in-out;
}

.image-upload-btn > button > span {
  color: var(--theme-color);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  line-height: 20px;
  margin-top: 0.5rem;
  transition: 0.2s ease-in-out;
}

.image-upload-btn > button:hover {
  background-color: var(--theme-color) !important;
}

.image-upload-btn > button:hover > span {
  color: #fff;
}

.image-upload-btn > button:hover > i {
  border: 1px dashed #fff;
}

#product-image-modal .modal-dialog {
  max-width: 650px !important;
}

#product-image-modal .modal-dialog .modal-content {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  border: none;
}

#product-image-modal .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: none;
  margin-bottom: 1.5rem;
}

#product-image-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

#product-image-modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.image-tab-title > span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.image-tab-title {
  margin-bottom: 0.5rem;
}

.image-tab-nav > ul {
  border: none;
}

.image-tab-nav > ul > li {
  border: none !important;
}

.image-tab-nav > ul > li:first-child {
  margin-right: 1rem;
}

.image-tab-nav > ul > li > button {
  border: none !important;
  outline: 0;
  box-shadow: none;
  padding: 0;
}

.image-tab-nav > ul > li > button > span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  position: relative;
  padding-left: 20px;
}

.image-tab-nav > ul > li > button > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.image-tab-nav > ul > li > button > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 4px solid var(--theme-color);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.image-tab-nav > ul > li > button:hover > span::before {
  border: 1px solid var(--theme-color);
}

.image-tab-nav > ul > li > button.active > span::after {
  opacity: 1;
  visibility: visible;
}

.image-tab-content {
  margin-top: 1.5rem;
}

#product-image-dropzone {
  border: 1px dashed #d5d9e1 !important;
  background-color: #f1f2f7 !important;
}

#product-image-dropzone .dz-button span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.3rem;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#product-image-dropzone .dz-button p {
  font-size: 12px;
  font-weight: 400;
  color: #95a1b5;
}

#product-image-dropzone .dz-image-preview {
  background-color: transparent !important;
  position: relative;
  margin: 10px;
  width: calc(25% - 20px);
}

#product-image-dropzone .dz-image-preview .remove-button {
  position: absolute;
  top: 5px;
  right: 5px !important;
  background-color: var(--theme-color);
  border: none;
  z-index: 99999;
  border-radius: 50%;
  color: #fff;
  cursor: pointer !important;
}

#product-image-dropzone .dz-image-preview .remove-button > i {
  cursor: pointer;
}

#product-image-modal .modal-dialog .modal-content .modal-header > button {
  box-shadow: none;
  outline: 0;
  background-color: #f0f0f0;
  color: #000;
  opacity: 1;
  font-size: 12px;
}

.image-gallery-search > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: calc(100% - 50px);
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.image-gallery-search {
  display: flex;
  align-items: center;
}

.image-gallery-search > button {
  display: flex;
  width: 50px;
  height: 35px;
  border-radius: 0 5px 5px 0;
  background-color: #1f2124;
  border: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}

.image-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.image-not-found > span {
  font-size: 17px;
  font-weight: 400;
}

.image-not-found > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  background-color: #1f2124;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0.5rem;
}

.image-list-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  height: 350px;
}

.image-list-content {
  display: flex;
  position: relative;
  width: calc(25% - (1rem * 3) / 4);
  height: 150px;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.image-list-content > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.image-list-content > input {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 2px solid var(--theme-color);
}

.image-list-content > input::before {
  border-color: transparent;
}

.image-list-content > input:checked::before {
  border-color: #fff;
}

.dropzone-image-btn,
.gallery-image-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.dropzone-image-btn > button,
.gallery-image-btn > button {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.dropzone-image-btn > button:first-child,
.gallery-image-btn > button:first-child {
  margin-right: 1rem;
  background-color: #383a3f;
}

.dropzone-image-btn > button:last-child,
.gallery-image-btn > button:last-child {
  background-color: var(--theme-color);
}

.gallery-image-btn > button[disabled] {
  opacity: 0.5;
}

.product-image-content {
  position: relative;
  display: flex;
  height: 100%;
  width: calc(20% - (0.5rem * 3) / 4);
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: 0.2s ease-in-out;
}

.featured-text {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  background-color: var(--theme-color);
  padding: 0 0.3rem;
  border-radius: 5px;
}

.product-image-content > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.product-image-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9;
  opacity: 0;
  visibility: visible;
  transition: 0.2s ease-in-out;
}

.image-cancel-btn {
  position: absolute;
  top: 5px;
  right: 5px !important;
  background-color: var(--theme-color);
  border: none;
  z-index: 99;
  border-radius: 50%;
  color: #fff;
  cursor: pointer !important;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}

.product-image-content:hover .image-cancel-btn,
.product-image-content:hover::before {
  opacity: 1;
  visibility: visible;
}

.image-cancel-btn > i {
  cursor: pointer;
}

.option-btn-title > span {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.option-btn-contain {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.option-btn {
  display: flex;
  width: 130px;
  align-items: center;
  justify-content: center;
}

.option-btn > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  gap: 0.5rem;
}

.option-btn > button:hover {
  background-color: var(--theme-hover-color);
}

.option-btn > button > i {
  display: flex;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.option-btn:not(:last-child) {
  margin-right: 1rem;
}

.variant-contain {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.variant-contain .form-group-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
}

.variant-contain .form-group-content .form-group {
  width: 100%;
}

.variant-content {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - (1rem * 2) / 3);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  flex-shrink: 0;
}

.variant-title {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
}

.variant-contain .form-group-content .form-group:last-child > input {
  margin-top: 0.5rem;
}

.remove-variant {
  background-color: var(--theme-color);
  border: none;
  z-index: 99;
  border-radius: 50%;
  color: #fff;
  cursor: pointer !important;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.remove-variant > i {
  display: flex;
  font-size: 13px;
}

.product-details-save-mobil {
  display: none;
}

/* PRODUCT DETAILS CSS FINISH */

/* ACCOUNT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°NFORMATÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ON CSS START */

.account-information-wrapper {
  margin-bottom: 2.6rem;
  margin-top: 2rem;
}

.account-information-content {
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
  padding: 0 !important;
}

.account-information-nav {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account-information-tab {
  padding: 1rem 1.5rem;
}

.account-information-nav > ul {
  border: none;
  gap: 1rem;
}

.account-information-nav > ul > li {
  position: relative;
}

.account-information-nav > ul > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
}

.account-information-nav > ul > li:not(:last-child) {
  padding-right: 1rem;
  padding-left: 1rem;
}

.account-information-nav > ul > li:first-child {
  padding-left: 0;
}

.account-information-nav > ul > li:last-child {
  padding-left: 1rem;
}

.account-information-nav > ul > li > button {
  display: flex;
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: 0.2s ease-in-out;
}

.account-information-nav > ul > li > button:hover,
.account-information-nav > ul > li > button.active {
  color: var(--theme-color);
}

.approval-btn {
  display: flex;
  align-items: center;
  width: 150px;
  position: absolute;
  bottom: 6px;
  right: 10px;
  justify-content: flex-end;
}

.approval-btn > button {
  font-size: 13px;
  font-weight: 400;
  color: var(--theme-color);
  display: flex;
  width: 100%;
  justify-content: flex-end;
  background-color: transparent;
  border: none !important;
  padding: 0;
  outline: 0 !important;
  box-shadow: none !important;
}

.approval-btn > button > i {
  font-size: 20px;
  display: flex;
}

.approval-btn.approved > button {
  color: green;
}

.account-information-tab .form-group {
  position: relative;
}

.account-information-tab .form-group > input {
  padding-right: 100px;
}

.account-modal .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.account-modal .form-group > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.account-modal .form-group > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  padding-right: 20%;
}

.account-modal .modal-body {
  display: flex;
  flex-direction: column;
}

.modal-body-title {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin-bottom: 1rem;
}

.account-modal .modal-header > button {
  outline: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.account-information-tab .form-group-wrapper {
  padding: 0;
}

.address-information-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.address-information-wrapper .address-content {
  width: 50%;
  border: 2px dashed var(--theme-color);
  border-radius: 8px;
  overflow: hidden;
  height: 215px;
}

.address-information-wrapper .address-content > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin: 0;
}

.address-content-title {
  background-color: var(--theme-light-color);
  display: flex;
  padding: 1rem;
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px dashed var(--theme-color);
  position: relative;
}

.address-information-wrapper .address-content > ul > li {
  display: flex;
  align-items: center;
}

.address-information-wrapper .address-content > ul > li > span {
  display: flex;
  font-size: 13px;
  font-weight: 600;
  width: 25%;
  position: relative;
}

.address-information-wrapper .address-content > ul > li > p {
  margin: 0;
  width: calc(100% - 20%);
  font-size: 13px;
  font-weight: 400;
  color: #6e7787;
  margin-left: 1.5rem;
}

.address-information-wrapper .address-content > ul > li:not(:last-child) {
  margin-bottom: 1rem;
}

.address-information-wrapper .address-content > ul > li > span::after {
  content: ":";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.tab-info {
  display: flex;
  align-items: stretch;
  background-color: var(--theme-light-color);
  border-radius: 3px;
  margin-bottom: 1rem;
  border: 2px dashed var(--theme-color);
}

.tab-info-icon {
  display: flex;
  width: 100px;
  min-width: 100px;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed var(--theme-color);
  margin-right: 1rem;
}

.tab-info-text {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 26px;
  padding: 0.5rem;
}

.tab-info-icon > i {
  font-size: 25px;
  color: var(--theme-color);
}

.address-edit {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.address-edit > button {
  display: flex;
  width: 100%;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.address-edit > button > i {
  font-size: 14px;
  color: var(--theme-color);
}

.account-modal .form-group textarea {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  padding: 0.5rem 1rem;
}

.account-modal .form-group textarea:focus {
  border-color: var(--theme-color) !important;
}

.account-information-table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.account-information-tr {
  width: 21.66%;
  padding: 0.5rem;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.account-information-tr:first-child {
  width: 35%;
}

.account-information-table-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.account-information-td {
  width: 21.66%;
  padding: 0.5rem;
}

.account-information-td:first-child {
  width: 35%;
}

.account-information-td > span {
  font-size: 14px;
  font-weight: 400;
}

.account-information-table-content:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.account-information-td > span.approved {
  color: green;
}

.account-information-td > span.not-approved {
  color: var(--theme-color);
}

.account-information-td > button {
  padding: 0;
  background-color: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.account-information-td > button > i {
  margin-right: 0.5rem;
}

.address-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
}

.address-btn > button {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color) !important;
  color: #fff !important;
  border: none;
  transition: 0.2s ease-in-out;
}

.address-btn > button:hover {
  background-color: var(--theme-hover-color) !important;
}

.address-details-save {
  display: flex;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  top: -60px;
  width: 160px;
  right: 0;
}

.address-details-save > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none;
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.address-details-save > button > i {
  display: flex;
  margin-right: 0.5rem;
}

.address-details-save > button:hover {
  background-color: var(--theme-hover-color);
}

.account-information-content {
  position: relative;
  margin-top: 2rem;
}

/* ACCOUNT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°NFORMATÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ON CSS FINISH */

/* CATALOG PRODUCT CSS START */

.catalog-product-search {
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.catalog-product-search-btn {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.catalog-product-search-input {
  display: flex;
  width: 35%;
}

.catalog-product-search-btn > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none;
  padding: 0.5rem;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  height: 100%;
  transition: 0.2s ease-in-out;
}

.catalog-product-search-btn > button:hover {
  background-color: var(--theme-hover-color);
}

.catalog-product-search-input > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.catalog-product-search-input > input:focus {
  border-color: var(--theme-color);
}

.catalog-product-contain {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1rem;
}

.catalog-paroduct-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
}

.catalog-product-item {
  display: flex;
  width: calc(25% - (1.5rem * 3) / 4);
  padding: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  flex-direction: column;
}

.catalog-product-image {
  display: flex;
  width: 25%;
  align-items: center;
  justify-content: center;
}

.catalog-product-image > img {
  width: 100%;
}

.catalog-product-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 25%);
  margin-left: 1rem;
}

.catalog-product-name {
  margin-bottom: 0.5rem;
}

.catalog-product-name > a {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  line-height: 16px;
  text-decoration: underline;
  color: #000;
}

.catalog-product-info > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catalog-product-info > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-product-info > ul > li > span {
  font-size: 12px;
  font-weight: 400;
  color: #6e7787;
}

.catalog-product-info > ul > li > p {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.catalog-product-info > ul > li:not(:last-child) {
  margin-bottom: 0.7rem;
}

.catalog-product-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.catalog-product-item-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.catalog-product-item-bottom > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.catalog-product-item-bottom > button:hover {
  background-color: var(--theme-hover-color);
}

.catalog-paginations {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* CATALOG PRODUCT CSS FINISH */

/* PRODUCT REVÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°EW CSS START */

.product-review-filter {
  background-color: #fff;
  border-radius: 8px;
}

.select2-container {
  width: 100%;
}

.product-review-filter .product-form-group-top .product-form-group {
  width: calc(33.33% - (1rem * 2) / 3);
}

.product-review-contain {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.product-review-title > span {
  font-size: 20px;
  font-weight: 500;
}

.product-review-paginations {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.product-review-table-title {
  display: grid;
  grid-template-columns: 1.3fr 2fr 3.5fr 1fr 1fr;
}

.product-review-table-title .product-review-tr {
  background-color: transparent;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.product-review-table-title .product-review-tr:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 0;
}

.product-review-table-title .product-review-tr:last-child {
  border-radius: 0 5px 0 0;
}

.product-review-table-content {
  display: grid;
  grid-template-columns: 1.3fr 2fr 3.5fr 1fr 1fr;
}

.product-review-info {
  display: flex;
}

.product-review-image {
  display: flex;
  width: 65px;
  height: 65px;
  overflow: hidden;
}

.product-review-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-review-td {
  padding: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.product-review-td span,
.product-review-td a {
  color: #6e7787;
  font-weight: 400;
  font-size: 12px;
}

.product-review-text {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.product-review-td p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.product-review-td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.product-review-table-content:last-child .product-review-td:first-child {
  border-radius: 0 0 0 5px;
}

.product-review-table-content:last-child .product-review-td:last-child {
  border-radius: 0 0 5px 0;
}

.product-review-details {
  display: flex;
  width: 100%;
}

.product-review-details > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  padding: 0.3rem;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.product-review-details > button:hover {
  background-color: var(--theme-hover-color);
}

.modal-review-content-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.modal-review-content-top-image {
  display: flex;
  width: 100px;
  height: 100px;
  border-radius: 3px;
  overflow: hidden;
}

.modal-review-content-top-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.modal-review-content-top-text {
  /* margin-left: 1rem; */
}

.modal-review-content-top-text > a {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  line-height: 16px;
  text-decoration: underline;
  color: #000;
}

.modal-review-content-top-text > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.6rem;
}

.modal-review-content-top-text > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-review-content-top-text > ul > li > span {
  font-size: 12px;
  font-weight: 400;
  color: #6e7787;
}

.modal-review-content-top-text > ul > li > p {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.review-modal .modal-dialog {
  max-width: 50%;
}

.modal-posted-review > p,
.modal-posted-answer > p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.modal-posted-review > span,
.modal-posted-answer > span {
  color: #6e7787;
  font-weight: 400;
  font-size: 14px;
}

.modal-posted-answer {
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.modal-review-content-center {
  margin-top: 2.5rem;
}

.modal-posted-answer > strong {
  margin-bottom: 1rem;
  display: flex;
  color: green;
}

.modal-review-message {
  display: flex;
  width: 100%;
  align-items: flex-start;
}

.modal-review-message > button {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-left: 1rem;
  transition: 0.2s ease-in-out;
}

.modal-review-message > button:hover {
  background-color: var(--theme-hover-color);
}

.modal-review-message > textarea {
  width: calc(100% - 45px);
  outline: 0 !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  padding: 0.5rem 1rem;
}

.modal-review-message > textarea:focus {
  border-color: var(--theme-color);
}

.modal-review-content-bottom {
  margin-top: 1.5rem;
}

/* PRODUCT REVÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°EW CSS FINISH */

/* CUSTOMER QUESTÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ONS CSS START */
.modal-review-content-center {
  margin-top: 2.5rem;
  overflow-y: scroll;
  height: 500px;
}

.modal-posted-answer.seller span {
  color: #ffffff;
}

.modal-posted-answer.seller {
  background: #f13f3e;
  color: #ffffff;
}

;

.customer-questions-filter {
  background-color: #fff;
  border-radius: 8px;
}

.customer-questions-filter .product-form-group > button {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  transition: 0.2s ease-in-out;
}

.customer-questions-contain {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.customer-questions-title > span {
  font-size: 20px;
  font-weight: 500;
}

.customer-questions-paginations {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.customer-questions-table-title {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
}

.customer-questions-tr {
  background-color: transparent;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.customer-questions-tr:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 0;
}

.customer-questions-image {
  display: flex;
  width: 65px;
  height: 65px;
  overflow: hidden;
}

.customer-questions-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.customer-questions-text > a,
.customer-questions-text > span {
  color: #6e7787;
  font-weight: 400;
  font-size: 12px;
}

.customer-questions-info {
  display: flex;
}

.customer-questions-text {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.customer-questions-td {
  padding: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.customer-questions-td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.customer-questions-table-content:last-child .customer-questions-td:first-child {
  border-radius: 0 0 0 5px;
}

.customer-questions-table-content:last-child .customer-questions-td:last-child {
  border-radius: 0 0 5px 0;
}

.customer-questions-table-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
}

.customer-questions-td > span {
  font-size: 14px;
  font-weight: 400;
}

.customer-questions-rating {
  display: flex;
  align-items: center;
}

.customer-questions-rating-number {
  margin-left: 1rem;
}

.customer-questions-rating-icon {
  display: flex;
  align-items: center;
}

.customer-questions-rating-icon > span {
  color: var(--theme-color);
}

.customer-questions-rating-icon > span:not(:last-child) {
  margin-right: 0.3rem;
}

.customer-questions-tr:last-child {
  border-radius: 0 5px 0 0;
}

/* CUSTOMER QUESTÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ONS CSS FINISH */

/* ORDER AND SHÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°PPÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°NG CSS START */
.order-pack-content {
  display: flex;
  margin-bottom: 10px;
  gap: 0.1rem;
}

.order-pack-td.checked {
  background-color: var(--theme-light-color);
}

.order-pack-td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  width: 95%;
}

.order-pack-td:first-child {
  width: 6%;
}

.order-cargo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.order-info-content .model-code {
  overflow: hidden;
  overflow-x: auto !important;
}

.dropdown.order-packed-col button {
  background-color: var(--theme-color) !important;
  border: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: inherit;
  margin-bottom: 5px;
  font-size: 12px;
  justify-content: center;
}

.dropdown.order-packed-col ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.dropdown.order-packed-col ul > li {
  background-color: var(--theme-light-color) !important;
}

.dropdown.order-packed-col {
  width: 100%;
  border-radius: 5px;
}

.order-shipping-table-wrapper {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.order-shipping-table-top,
.order-shipping-table-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.order-shipping-table-center {
  margin: 1.5rem 0;
}

.order-shipping-table-title {
  display: flex;
  width: 100%;
}

.order-shipping-table-tr {
  background-color: transparent;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  font-size: 14px;
  font-weight: 500;
  width: 9%;
}

.order-shipping-table-tr:first-child {
  border-left: 1px solid #dee2e6;
  border-radius: 8px 0 0 0;
  width: 4%;
}

.order-shipping-table-tr:last-child {
  border-radius: 0 8px 0 0;
}

.order-shipping-table-tr.info {
  width: 18%;
}

.order-shipping-table-tr.order-info {
  width: 15%;
}

.order-shipping-table-td span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.order-shipping-table-td p,
.order-shipping-table-td a {
  font-size: 12px;
  font-weight: 400;
  color: #222;
  margin: 0;
}

.order-shipping-table-content {
  display: flex;
  width: 100%;
}

.order-shipping-table-td {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  font-size: 14px;
  font-weight: 500;
  width: 9%;
  flex-direction: column;
  justify-content: center;
}

.order-shipping-table-td.order-info {
  width: 15%;
  align-items: flex-start;
}

.order-shipping-table-td.info {
  width: 18%;
}

.order-shipping-table-td:first-child {
  border-left: 1px solid #dee2e6;
  width: 4%;
}

.order-cargo-wrapper > img {
  width: 100px;
}

.order-cargo-wrapper > span {
  font-size: 10px;
}

.order-cargo-wrapper > b {
  font-size: 12px;
  font-weight: 400;
  color: #6e7787;
  display: flex;
  text-align: center;
}

.order-info-image {
  display: flex;
  min-width: 65px;
  height: 65px;
  border-radius: 5px;
  overflow: hidden;
}

.order-info-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.order-info-wrapper {
  display: flex;
}

.order-info-content {
  width: calc(100% - 65px);
  margin-left: 0.5rem;
}

.order-info-content > ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
}

.order-info-content > ul > li {
  display: flex;
  align-items: center;
}

.order-info-content > ul > li > p {
  color: #95a1b5;
  font-weight: 500;
  margin-right: 0.5rem;
}

.order-info-content > ul > li > span {
  font-size: 12px;
}

.order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.order-btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  background-color: var(--theme-color);
  transition: 0.2s ease-in-out;
}

.order-btn > a:hover {
  background-color: var(--theme-hover-color);
}

.order-invoice-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  text-align: center;
}

.invoice-col {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

form.invoice-form-seralize button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  background-color: var(--theme-color);
  transition: 0.2s ease-in-out;
  margin-top: 8px;
  border: 1px solid var(--theme-color);
}

/* ORDER AND SHÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°PPÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°NG CSS FINISH */

/* FINANCE CSS START */

.finance-filter .product-form-group > button {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  transition: 0.2s ease-in-out;
}

.finance-filter .product-form-group > button:hover {
  background-color: var(--theme-hover-color);
}

.finance-filter .product-form-group {
  width: calc(33.33% - (1rem * 2) / 3);
}

.finance-wrapper-content {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.finance-wrapper-content .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-top: none !important;
}

.finance-wrapper-content .accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 5px 5px 0 0;
}

.finance-wrapper-content .accordion-item:last-child {
  border-radius: 0 0 5px 5px;
}

.finance-wrapper-content .accordion-header > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: none !important;
  outline: 0 !important;
  background-color: transparent !important;
  border: none !important;
  padding: 1.5rem !important;
  color: #000 !important;
}

.finance-date {
  display: flex;
  align-items: center;
  width: 50%;
}

.finance-price {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: flex-end;
  margin-right: 1.5rem;
}

.finance-date > span {
  font-size: 20px;
  font-weight: 500;
  color: #222;
}

.finance-date > p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  margin-left: 1rem;
}

.finance-price > p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 0.5rem;
}

.finance-price > span {
  font-size: 14px;
  font-weight: 400;
}

.vendor-progress-table-title,
.vendor-progress-table-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}

.vendor-progress-table-tr,
.cargo-payment-table-tr,
.order-progress-table-tr {
  background-color: transparent;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.vendor-progress-table-tr:first-child,
.cargo-payment-table-tr:first-child,
.order-progress-table-tr:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.vendor-progress-table-td,
.cargo-payment-table-td,
.order-progress-table-td {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  border-top: none;
}

.vendor-progress-table-td:first-child,
.cargo-payment-table-td:first-child,
.order-progress-table-td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.cargo-payment-table-title {
  display: flex;
}

.cargo-payment-table-tr {
  width: 16%;
}

.cargo-payment-table-tr:nth-child(4) {
  width: 36%;
}

.cargo-payment-table-content {
  display: flex;
}

.cargo-payment-table-td {
  width: 16%;
  display: flex;
  align-items: center;
}

.cargo-payment-table-td:nth-child(4) {
  width: 36%;
}

.order-progress-table-title {
  display: flex;
}

.order-progress-table-tr {
  width: 100%;
}

.order-progress-table-content {
  display: flex;
}

.order-progress-table-td {
  width: 100%;
}

/* FINANCE CSS FINISH */

/* CARGO DESÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° CSS START */

.cargo-desi-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.cargo-desi-wrapper-left,
.cargo-desi-wrapper-right {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  width: calc(50% - (1rem) / 2);
}

.cargo-contain-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.cargo-contain-title > span {
  font-size: 20px;
  font-weight: 500;
}

.desi-calc-input > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.desi-calc-input > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.desi-calc-top {
  display: flex;
  gap: 1rem;
}

.desi-calc-input {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - (1rem * 2) / 3);
}

.desi-calc-bottom {
  display: flex;
  width: 100%;
  margin-top: 1.5rem;
}

.desi-calc-bottom > button {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  transition: 0.2s ease-in-out;
}

.desi-calc-bottom > button:hover {
  background-color: var(--theme-hover-color);
}

.desi-calc-result {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: transparent;
  margin-top: 1rem;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}

.desi-calc-result.active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.desi-calc-result > span,
.desi-calc-result > p {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.cargo-calc-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cargo-calc-input {
  width: calc(50% - (1rem) / 2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cargo-calc-input > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.cargo-calc-input > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.cargo-calc-input > button {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  transition: 0.2s ease-in-out;
}

.cargo-calc-input > button:hover {
  background-color: var(--theme-hover-color);
}

.cargo-calc-bottom > ul > li {
  font-size: 14px;
  font-weight: 400;
  color: #434343;
}

.cargo-calc-bottom > ul > li:not(:last-child) {
  margin-bottom: 0.3rem;
}

.cargo-calc-bottom {
  margin-top: 2rem;
}

.cargo-calc-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cargo-price {
  display: flex;
  align-items: center;
  width: calc(50% - (1rem) / 2);
  background-color: var(--theme-light-color);
  padding: 0.5rem;
  font-size: 15px;
  font-weight: 400;
  justify-content: center;
  border-radius: 5px;
}

.cargo-price > span:first-child {
  margin-right: 0.3rem;
}

p.wait-approved {
  font-size: 12px;
  color: red;
}

.quantity-col {
  padding: 0 !important;
}

.quantity-col > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.quantity-col > span:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-col {
  padding: 0 !important;
}

.product-col > div {
  display: flex;
  align-items: center;
  width: 100%;
  padding: .5rem;
}


.product-col > div:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.price-col {
  padding: 0 !important;
}

.price-col > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.price-col > span:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* CARGO DESÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° CSS FINISH */
/* loader */
/* Absolute Center Spinner */
.loading {
  display: none;
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loading.active {
  display: block;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* loader finish */

/* DISCOUNT CSS START */

.discount-page-contain {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.discount-contain-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discount-contain-title > span {
  font-size: 20px;
  font-weight: 500;
}

.discount-table-title {
  display: flex;
}

.discount-table {
  margin: 2rem 0;
}

.discount-tr {
  background-color: transparent;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  width: 100%;
}

.discount-tr:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 0;
}

.discount-tr:last-child {
  border-radius: 0 5px 0 0;
}

.discount-td {
  padding: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.discount-table-content {
  display: flex;
}

.discount-td span {
  font-size: 12px;
  font-weight: 400;
}

.discount-table-content:last-child .discount-td:first-child {
  border-radius: 0 0 0 8px;
}

.discount-table-content:last-child .discount-td:last-child {
  border-radius: 0 0 8px 0;
}

.discount-td:first-child {
  border-left: 1px solid #dee2e6;
}

.discount-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.discount-details > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  background-color: transparent;
  transition: 0.2s ease-in-out;
}

.discount-details > a.discount-cancel {
  margin-bottom: 0.5rem;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  margin-top: .5rem;
}

.discount-details > a.discount-edit {
  color: #002255;
  border: 2px solid #002255;
}

.discount-details > a.discount-edit:hover {
  color: #fff;
  background-color: #002255;
}

.discount-details > a.discount-cancel:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.discount-status {
  width: 100%;
  padding: .5rem 0;
}

.discount-contain-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discount-contain-title > a {
  padding: 0.5rem 2.5rem;
  background-color: var(--theme-color);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  text-decoration: unset;
  transition: 0.2s ease-in-out;
}

.discount-contain-title > a:hover {
  background-color: var(--theme-hover-color);
}

/* DISCOUNT CSS FINISH */


/* CREATE DISCOUNT CSS START */

.create-discount-title {
  font-size: 20px;
  font-weight: 500;
}

.create-discount-content {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.discount-type-title > span {
  color: #6e7787;
  font-size: 14px;
  font-weight: 400;
}

.discount-type-contain {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.discount-type-content {
  width: calc(33.33% - (1rem * 2) / 3);
  border-radius: 8px;
  border: 1px solid #d5d9e1;
  background-color: #f7f7fa;
  padding: 1rem;
  cursor: pointer;
  transition: .2s ease-in-out;
}

.discount-type-content:hover,
.discount-type-content.active {
  background-color: var(--theme-light-color);
  border-color: var(--theme-color);
}

.discount-type-content-name {
  font-size: 16px;
  font-weight: 500;
}

.discount-type-content-radio {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d5d9e1;
  transition: .2s ease-in-out;
}

.discount-type-content-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.discount-type-content:hover .discount-type-content-radio,
.discount-type-content.active .discount-type-content-radio.active {
  border-color: var(--theme-color);
  border: 4px solid var(--theme-color);
}

.discount-type-content-desc {
  color: #6e7787;
  font-size: 14px;
  font-weight: 400;
  margin: 0.5rem 0;
}

.discount-type-content-bottom > span {
  color: #6e7787;
  font-size: 15px;
  font-weight: 500;
}

.discount-type-content-image {
  display: flex;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin: .5rem 0;
}

.discount-type-content-image > img {
  width: 100%;
}

.discount-product {
  width: 100%;
  height: 250px;
  overflow: hidden;
  overflow-y: auto;
}

.discount-product::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: #e6e6e6;
  border-radius: 5px;
}

.discount-product::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}

.discount-terms-content > label,
.discount-name-contain label,
.discount-product > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.discount-terms-content > input,
.discount-name-contain input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.discount-terms-content > input:focus,
.discount-name-contain input:focus {
  border-color: var(--theme-color);
}

.discount-terms-contain {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.discount-name-content {
  width: 50%;
}

.discount-name-contain-bottom {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

.discount-date-content {
  width: calc(25% - (1rem * 3) / 4);
}

.discount-name-contain {
  margin-top: 1rem;
}

.create-discount-btn > button {
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none;
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.create-discount-btn {
  background-color: #fff;
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 8px;
}

.create-discount-wrapper {
  padding-bottom: 1rem;
}

.discount-type-content > input {
  display: none;
}

.select-product-container > button {
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  border: none;
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #fff !important;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.select-product-container > button:hover {
  background-color: var(--theme-hover-color);
}

.set-discount-product .product-table-content .product-table-td {
  width: 17%;
}

.set-discount-product .product-table-title .product-table-tr {
  width: 17%;
}

.discount-product > p > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: .5rem;
}

.discount-product > p > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  padding: 0.3rem 0;
  color: #fff;
  text-decoration: none;
  width: 80px;
  border-radius: 5px;
  margin-left: 1rem;
}

.discount-product > p {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  color: #000;
  align-items: center;
  justify-content: flex-start;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: max-content;
  padding: 0.3rem 1rem;
  border-radius: 5px;
}

/* CREATE DISCOUNT CSS FINISH */

/* SELLER ADS CSS STAR */

.seller-ads-page-contain {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.seller-ads-contain-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seller-ads-contain-title > span {
  font-size: 20px;
  font-weight: 500;
}

.seller-ads-table-title {
  display: flex;
}

.seller-ads-table {
  margin: 2rem 0;
}

.seller-ads-tr {
  background-color: transparent;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  width: 100%;
}

.seller-ads-tr:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 0;
}

.seller-ads-tr:last-child {
  border-radius: 0 5px 0 0;
}

.seller-ads-td {
  padding: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.seller-ads-table-content {
  display: flex;
}

.seller-ads-td span {
  font-size: 12px;
  font-weight: 400;
}

.seller-ads-table-content:last-child .seller-ads-td:first-child {
  border-radius: 0 0 0 8px;
}

.seller-ads-table-content:last-child .seller-ads-td:last-child {
  border-radius: 0 0 8px 0;
}

.seller-ads-td:first-child {
  border-left: 1px solid #dee2e6;
}

.seller-ads-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.seller-ads-details > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  background-color: transparent;
  transition: 0.2s ease-in-out;
}

.seller-ads-details > a.seller-ads-btn {
  margin-bottom: 0.5rem;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  margin-top: .5rem;
}

.seller-ads-details > a.seller-ads-edit {
  color: #002255;
  border: 2px solid #002255;
}

.seller-ads-details > a.seller-ads-edit:hover {
  color: #fff;
  background-color: #002255;
}

.seller-ads-details > a.seller-ads-btn:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.seller-ads-status {
  width: 100%;
  padding: .5rem 0;
}

.seller-ads-contain-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seller-ads-contain-title > a {
  padding: 0.5rem 2.5rem;
  background-color: var(--theme-color);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  text-decoration: unset;
  transition: 0.2s ease-in-out;
}

.seller-ads-contain-title > a:hover {
  background-color: var(--theme-hover-color);
}

.seller-ads-page-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.seller-ads-page-tab > a {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease-in-out;
}

.seller-ads-page-tab > a.active,
.seller-ads-page-tab > a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.seller-ads-page-top {
  background-color: #fff;
  border-radius: 8px;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
}

.seller-ads-page-filter {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.seller-ads-filter-content {
  width: 25%;
}

.seller-ads-filter-content > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.seller-ads-filter-content > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.seller-ads-filter-content > input:focus {
  border-color: var(--theme-color);
}

.seller-ads-td span {
  color: #6e7787;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  width: 100%;
}

.seller-ads-td p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  color: #000;
}

/* SELLER ADS CSS FINISH */

/* SELLER CREATE ADS CSS START */

.create-ads-contain {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.create-ads-steps > ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
}

.create-ads-steps > ul > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 9;
  background-color: #fff;
}

.create-ads-steps > ul > li:not(:last-child)::before {
  position: absolute;
  content: "";
  border-left: 2px solid;
  left: 15px;
  top: 42px;
  z-index: -1;
  height: 39px;
  color: #f1f2f7;
}

.create-ads-steps > ul > li > p {
  margin: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.create-ads-steps {
  width: 100%;
  padding: 0.5rem 1.5rem;
}

.create-ads-right {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 1.5rem;
}

.create-ads-filter-content > label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7787;
  margin-bottom: 0.3rem;
}

.create-ads-filter-content > input {
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  padding-left: 0.5rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.create-ads-filter-content > input:focus {
  border-color: var(--theme-color);
}

.create-ads-filter-content {
  width: calc(50% - (1rem) / 2);
}

.create-ads-btn {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  padding: 1rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.create-ads-btn > button {
  display: flex;
  align-items: center;
  justify-content: center;
  border:none;
  width: 180px;
  background-color: var(--theme-color);
  padding: .5rem 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: .2s ease-in-out;
}

.create-ads-btn > a:hover {
  background-color: var(--theme-hover-color);
}

.create-ads-table {
  width: 100%;
}

.create-ads-right .seller-ads-page-top {
  padding: 0;
  border-radius: 0;
  width: 100%;
}

.create-ads-right .seller-ads-page-tab > a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.create-ads-right .seller-ads-page-tab > a > span {
  font-size: 11px;
  color: #434343;
}

.create-ads-btn > a.create-ads-btn-back {
  background-color: #aaa;
  margin-right: .5rem;
}

.create-ads-btn > a.create-ads-btn-back:hover {
  background-color: #888;
}

.create-ads-right-top span {
  font-size: 14px;
  font-weight: 400;
  color: #6e7787;
}

.create-ads-right-top p {
  font-size: 18px;
  font-weight: 500;
  overflow-wrap: anywhere;
  margin: 0;
}

.create-ads-right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.create-ads-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 67%;
}

.create-ads-name {
  display: flex;
  flex-direction: column;
  width: 33%;
}

.create-ads-info-content {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  border-left: 1px solid #afbbca;
}

.create-ads-right-center-text span {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.create-ads-right-center-text p {
  font-size: 18px;
  font-weight: 500;
  overflow-wrap: anywhere;
  margin: 0;
  color: #fff;
}

.create-ads-right-center > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.create-ads-right-center {
  width: 100%;
  padding: 2rem 1rem;
  border-radius: 8px;
  background-color: var(--theme-color);
  margin: 1rem 0;
}

.create-ads-right-center > ul > li {
  display: flex;
  align-items: center;
}

.create-ads-right-center-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--theme-light-color);
  margin-right: 1rem;
}

/* SELLER CREATE ADS CSS FINISH */

.set-coupon-product .product-table-content .product-table-td {
  width: 17%;
}

.set-coupon-product .product-table-title .product-table-tr {
  width: 17%;
}
button#product-delete-btn {
  margin-bottom: 10px;
}

.form-excel button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border-color: var(--theme-color);
}

.form-excel button:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ba1514;
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 0.3rem;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border-color: var(--theme-color);
}

.set-ads-product .product-table-tr {
  width: 17%;
}

.set-ads-product .product-table-td {
  width: 17%;
}
.create-ads-filter-content.full {
  width: 100%;
}
.create-ads-filter-content.full .discount-product p > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  padding: 0.3rem 0;
  color: #fff;
  text-decoration: none;
  width: 250px;
  border-radius: 5px;
  margin-left: 1rem;
}