body {
  font-family: "Poppins" !important;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  background-color: #f7f8f4;
}

/* Tabbing CSS */

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

.main-header {
  /* background-color: #222222; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-contact h6 {
  color: #fff;
  font-size: 12px;
}
.header-contact-btn {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  gap: 10px;
  border-radius: 5px;
  background-color: #000;
  padding: 5px 10px;
}

.navbar-nav-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.admin-navigation {
  flex-grow: 1;
  padding: 0 25px;
}
.admin-navigation a {
  color: #fff;
  font-size: 14px;
}
.navbar-nav-main > li {
  padding: 10px 15px;
  border-radius: 5px;
}

.navbar-nav-main > li.active {
  background-color: #212121;
}
.navbar-nav-main .btn {
  color: #fff;
  font-size: 14px;
  padding: 0;
}

.navbar-nav-main button {
  color: #fff;
  font-size: 14px;
}

.navbar-nav-main a {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.page-action-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 35px;
}
.action-bar-title {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.action-bar-title-btn {
  width: 48px;
  height: 48px;
  color: #fff;
  background-color: #212121;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-bar-title-main h1 {
  color: #333;
  font-size: 18px;
  padding-bottom: 5px;
}
.action-bar-title-main p {
  color: #333;
  font-size: 14px;
}
.action-bar-filters {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}
.action-bar-btn {
  border: 1px solid rgba(0, 0, 0, 0.52);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  height: 42px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 14px;
}
.action-bar-btn input {
  font-size: 14px;
  color: #333;
  background-color: transparent;
  border: none;
}

.cataloges-holder {
  font-size: 0;
}
.cataloges-holder > li {
  width: 25%;
  /* display: inline-block; */
  /* vertical-align: top; */
  padding: 15px 15px;
}
.catalogue-holder-box-img img {
  width: 100%;
  border-radius: 20px;
}
.catalogue-holder-box {
  position: relative;
}
.cat-holder-box-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  /* top: 0; */
  padding: 25px 25px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.catalogue-list-view-product-img {
  position: relative;
}
.catalogue-list-view-product-img-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.catalogue-list-view-product-img-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.catalogue-list-view-product-img-overlay p {
  font-size: 12px;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 15px;
}
.catalogue-list-view-product-img-overlay h6 {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}
.catalogue-list-view-product-img:hover
  .catalogue-list-view-product-img-overlay {
  opacity: 1;
  visibility: visible;
}

.cat-holder-box-body span {
  color: #fff;
  font-size: 12px;
  padding-bottom: 5px;
}
.cat-holder-box-body h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.cat-holder-box-actions {
  position: relative;
}
.cat-box-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background-color: #00000030;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.catalogue-holder-box:hover .cat-box-action-btn {
  opacity: 1;
  visibility: visible;
}
.cat-holder-box-actions-list {
  position: absolute;
  background-color: #262626;
  border-radius: 15px;
  top: 100%;
  right: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cat-holder-box-actions-list.active {
  opacity: 1;
  visibility: visible;
}
.cat-holder-box-actions-list a,
.cat-holder-box-actions-list button {
  font-size: 14px;
  color: #fff;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
}
.cat-holder-box-actions-list a:hover,
.cat-holder-box-actions-list button:hover {
  background-color: #212121;
}

.action-bar-title .cat-box-action-btn {
  opacity: 1;
  visibility: visible;
  background-color: #2f2f2f;
}

.collections-filter-holder h6 {
  color: #fff;
  opacity: 60%;
  font-size: 12px;
  padding-bottom: 15px;
}
.sidebar-filters li {
  margin-bottom: 10px;
  padding: 7px 10px;
  background-color: transparent;
  border-radius: 5px;
  position: relative;
}
.sidebar-filters button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.sidebar-filters > li:hover {
  background-color: #d2d2d2;
}

.sidebar-filters li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  color: #fff;
  font-size: 12px;
  opacity: 60%;
  position: absolute;
  left: 0;
  top: 12px;
}

.collection-product-box-img {
  height: 225px;
  border-radius: 15px;
  overflow: hidden;
}
.collection-product-box-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.collection-products-list {
  font-size: 0;
}
.collection-products-list > li {
  width: 25%;
  display: inline-block;
  vertical-align: top;
  padding: 10px 15px;
}
.collection-product-box-body {
  padding: 10px 10px 0;
}
.collection-product-box-body h6 {
  font-size: 12px;
  color: #333;
  opacity: 60%;
}
.collection-product-box-body h3 {
  font-size: 16px;
  color: #333;
  padding-top: 7px;
}
.collection-product-box-body p {
  color: #333;
  font-size: 12px;
  opacity: 60%;
  padding-top: 5px;
}
.collection-product-box-body h5 {
  font-size: 14px;
  color: #333;
  padding-top: 10px;
}

.page-action-button-add-fixed {
  background: linear-gradient(
    180deg,
    rgba(127, 0, 255, 1) 0%,
    rgba(225, 0, 255, 1) 100%
  );
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 3;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboarding-wizard-title {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 35px;
}

.onboarding-wizard-steps a {
  font-size: 14px;
  color: #333;
}
.onboarding-wizard-steps > li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 35px;
}
.onboarding-wizard-steps > li::before {
  content: "";
  height: 2px;
  width: 15px;
  background-color: #fff;
  opacity: 30%;
  position: absolute;
  left: 15px;
  top: 7px;
  transition: all 0.3s ease-in-out;
}

.onboarding-wizard-steps > li.active:before {
  background: linear-gradient(
    90deg,
    rgba(127, 0, 255, 1) 0%,
    rgba(225, 0, 255, 1) 100%
  );
  left: 0;
  width: 30px;
  opacity: 1;
}

.onboarding-wizard-subheading {
  font-size: 14px;
  color: #333;
  padding-bottom: 15px;
}

.onboarding-wizard-input {
  background-color: #2f2f2f17 !important;
  width: 100%;
  border-radius: 10px !important;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  border: 1px solid #565656 !important;
}
.onboarding-wizard-item {
  padding-bottom: 30px;
}
.onboarding-wizard-textarea {
  background-color: #2f2f2f17 !important;
  width: 100%;
  border-radius: 10px !important;
  padding: 10px 15px;
  color: #333;
  font-size: 14px;
  border: 1px solid #565656;
}
.onboarding-wizard-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.onboarding-action-btn-cancel {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}
.onboarding-wizard-buttons-multi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.onboarding-action-btn-continue {
  background: linear-gradient(
    90deg,
    rgba(127, 0, 255, 1) 0%,
    rgba(225, 0, 255, 1) 100%
  );
  padding: 15px 25px;
  border-radius: 15px;
  color: #fff;
  flex-shrink: 0;
  cursor: pointer;
}
.onboarding-action-btn-back {
  background-color: #2f2f2f !important;
  width: 100%;
  border-radius: 10px !important;
  padding: 15px 25px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #565656;
  cursor: pointer;
}

.stats-holder {
  padding-bottom: 50px;
}
.stats-box h6 {
  font-size: 14px;
  color: #333;
  opacity: 60%;
  padding-bottom: 10px;
}
.stats-box h3 {
  font-size: 30px;
  color: #333;
}
.border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-box {
  padding: 30px 25px;
}

#data-table {
  color: #333;
}
#data-table_wrapper {
  color: #333;
}
#data-table tr td {
  padding: 15px 15px;
  box-shadow: none !important;
  border-color: #d2d2d2;
}

.customer-single-info-box {
  background-color: #212121;
  border-radius: 15px;
  padding: 50px 40px;
}
.customer-single-info-box-element h6 {
  font-size: 14px;
  color: #ffffff60;
  padding-bottom: 7px;
}
.customer-single-info-box-element p {
  color: #fff;
  font-size: 16px;
  line-height: normal;
}
.customer-single-info-box-element {
  padding-bottom: 20px;
}

.grid-sizer {
  width: 25%;
  padding: 0 !important;
}

.navbar-nav-parent {
  position: relative;
}
.navbar-nav-subchild {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #212121;
  border-radius: 5px;
  box-shadow: 0px 5px 12px 0px rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 2;
}
.navbar-nav-parent:hover .navbar-nav-subchild {
  opacity: 1;
  visibility: visible;
  transition: 0s;
}

.navbar-nav-subchild > li > a {
  font-size: 12px;
  padding: 10px 15px;
  white-space: nowrap;
}

.navbar-nav-subchild > li > a:hover {
  background-color: #818181;
}

.onboarding-wizard-item .clear-button {
  color: #fff !important;
}
.custom-file-container .image-preview {
  height: 140px !important;
  /* background-image: none !important; */
  background-color: #2f2f2f !important;
}
.input-visible {
  background-color: #2f2f2f !important;
  color: #fff !important;
}
.onboarding-wizard-item label {
  color: #000;
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 500;
}

.select2.select2-container {
  /* background-color: #2f2f2f !important; */
  width: 100%;
  /* border-radius: 10px !important; */
  /* padding: 10px 15px; */
  font-size: 14px;
  /* color: #fff; */
  /* border: 1px solid #565656 !important; */
}
.select2-selection.select2-selection--multiple {
  background-color: #2f2f2f !important;
  width: 100%;
  color: #fff;
  border: none !important;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  font-size: 14px;
  color: #000;
}

.select2-selection__choice__remove {
  bottom: 0;
}

.product-details-list-onboarding {
  font-size: 0;
}
.product-details-list-onboarding > li:nth-child(odd) {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  padding-right: 15px;
}
.product-details-list-onboarding h6 {
  color: #ffffff90;
  font-size: 14px;
}
.product-details-list-onboarding p {
  color: #ffffff60;
  font-size: 14px;
  text-align: right;
}
.product-details-list-onboarding > li:nth-child(even) {
  width: 60%;
  display: inline-block;
  vertical-align: top;
  padding-left: 15px;
}

.product-details-list-onboarding > li {
  margin-bottom: 15px;
}

.custom-file-upload {
  margin-bottom: 20px;
}

.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.file-label:hover {
  background-color: #e0e0e0;
}

.selected-file {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

.image-preview {
  margin-top: 10px;
  max-width: 200px;
  height: auto;
}

.image-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.image-preview-container img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.image-thumbnail {
  position: relative;
  display: inline-block;
}

.remove-image {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background-color: #ff3860;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
  font-size: 12px;
}

.custom-file-upload .file-label {
  /* background-color: #333; */
}
.collection-products-list a {
  display: block;
}

.product-page-main {
  line-height: 1.5;
}

.chart-container {
  height: 400px;
  padding: 25px 0px;
}

.stats-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.stat-box {
  background-color: #212121;
  border-radius: 10px;
  padding: 30px;
  /* text-align: center; */
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.stat-box h2 {
  font-size: 44px;
  margin: 0;
  color: #fff;
}

.stat-box p {
  font-size: 12px;
  color: #ddd;
  margin-top: 10px;
}

.stat-box .stat-title {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}

.activity-list {
  width: 80%;
  max-width: 700px;
  /* background-color: #2e2e2e; */
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
  padding: 20px;
}

.activity-item {
  display: flex;
  align-items: center;
  /* background-color: #3a3a3a; */
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: #ddd;
}

.activity-item i {
  font-size: 16px;
  margin-right: 15px;
  color: #6c5ce7;
  width: 44px;
  height: 44px;
  background-color: #212121;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-item p {
  font-size: 10px;
  margin: 0;
  line-height: normal;
  color: #333;
}

.activity-item p span {
  font-weight: bold;
}

.activity-item:last-child {
  margin-bottom: 0;
}

.public-catalog-title {
  text-align: left;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  padding-bottom: 35px;
}
.grid-sizer-public {
  width: 20%;
}
.product-grid-public > li {
  width: 20%;
}
.product-grid-public img {
  padding: 10px 10px;
  margin: 10px 10px;
}
.product-grid-public > li:nth-child(even) {
  width: 40%;
}

#add-product-build-up {
  background-color: #fff;
  color: #111;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  margin-left: auto;
  display: block;
}
.remove-product-build-up {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.product-image {
  height: 200px;
}
.product-image img {
  height: 100%;
  object-fit: cover;
}
.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalogue-holder-box-img {
  height: 400px;
}
.catalogue-holder-box-img img {
  height: 100%;
  object-fit: cover;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-item {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-info {
  margin-top: 10px;
  text-align: center;
}

.product-info h5 {
  font-size: 14px;
  margin-bottom: 5px;
}

.product-info input[type="checkbox"] {
  /* margin-top: 10px; */
}
.box-add-catalogue-details {
  max-width: 760px;
}
.collection-filters {
  padding: 25px 0;
}
.collection-filters h5 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}

#collection-list li {
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  color: #000;
  font-size: 12px;
  position: relative;
  cursor: pointer;
}
#collection-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#collection-list li::before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(127, 0, 255, 1) 0%,
    rgba(225, 0, 255, 1) 100%
  );
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 2px;
  opacity: 0;
}
#collection-list li.active::before {
  opacity: 1;
}

#product-grid {
  overflow: auto;
  max-height: 100vh;
}

.view-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding-bottom: 15px;
}
.view-toggle h6 {
  color: #fff;
  font-size: 14px;
}
.view-toggle button {
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
}
.view-toggle button.active {
  color: rgba(225, 0, 255, 1);
}

.product-list-public {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 0;
}
.product-list-public > li {
  width: 19%;
}

.product-list-public img {
  border-radius: 5px;
}

.view-toggle h5 {
  color: #fff;
  font-weight: 500;
}
.product-info .btn {
  font-size: 11px;
}
#collection-list-dashboard a {
  font-size: 12px;
  color: #333;
  display: block;
  padding: 7px 5px;
  line-height: normal;
  border-radius: 5px;
  background-color: #e6e9dc99;
}
#collection-list-dashboard > li + li {
  padding-top: 2px;
}
#collection-list-dashboard a:hover {
  background-color: #6c5ce7;
  color: #fff;
}

#imageSelectionModal .modal-body {
  height: 75vh;
  overflow: auto;
}
