body.modal-open {
  overflow: hidden;
}

#loading {
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0;
  top: 0px;
  left: 0;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading-image {
  position: relative;
  left: 0;
  top: 0;
  height: auto;
  width: auto;
  margin-top: 0;
  margin-left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* width */

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */

.scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

.scroll::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */

.scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.text-capital {
  display: block;
}

.text-capital::first-letter {
  text-transform: uppercase;
}

.bg-none {
  background: none !important;
}

.b-t-1 {
  border-top: 1px solid #ccc;
}

/* Its commmented as per feedback on 18/06/24 */

.box-shadow-1 {
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

/* Custom Card design */

/* .card.custom-card {
  border-radius: 0.5rem;
  border: 0;
  background-color: var(--phoenix-white);
  box-shadow: 0 0.125rem 0 rgba(10, 10, 10, 0.04);
  position: relative;
  margin-block-end: 1.5rem;
  width: 100%;
}
.card.custom-card .card-header:first-child {
  border-radius: 0.625rem 0.625rem 0 0;
}
.card.custom-card .card-header {
  padding: 1rem 1.25rem;
  background-color: transparent !important;
  border-block-end: 1px solid #f3f3f3;
} */

/* Checkbox design */

.styled-checkbox {
  position: absolute;
  opacity: 0;
}

.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.styled-checkbox + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: var(--phoenix-white);
  border: 1px solid #0097eb;
}

.styled-checkbox:hover + label:before {
  background: var(--primary-color);
}

.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:checked + label:before {
  background: var(--primary-color);
}

.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.styled-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background: var(--phoenix-white);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

/* end Checkbox design */

.action-btn {
  border-radius: 5px;
  font-weight: 800;
  font-size: 12px;
  line-height: 18px;
  max-width: 28px;
  min-width: 28px;
  width: 100%;
  padding: 0;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--phoenix-white);
}

.action-btn:hover {
  color: var(--phoenix-white);
}

.btn-view {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-edit {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.btn-trash {
  color: #3d474f !important;
  background: #f6f8fa !important;
  border: 1px solid #bbc8d3;
}

.btn-proxy {
  background: #fd8787 !important;
  border-color: #fd8787 !important;
}

.products-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 7px 29px 0px #64646f33;
}

.products-card .card-body {
  border-radius: 10px;
}

.bg-gray-light {
  background: #e7e7e7;
}

.text-capital::first-letter {
  text-transform: uppercase;
}

.product-image-thumb {
  padding: 0.25rem !important;
  position: relative;
}

.product-image-thumb .store-type-icon {
  position: absolute;
  left: 4px;
  top: 10px;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  z-index: 2;
}

.product-image-thumb .store-type-icon img {
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.products-card .product-status {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 90px;
  z-index: 2;
}

.font-weight-600 {
  font-weight: 600;
}

.file-info h6 {
  font-size: 16px;
  word-break: break-all;
  text-transform: capitalize;
  min-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.file-image {
  max-height: 140px;
}

.file-image img {
  background: url(../img/checkers-bg.jpg);
  background-size: cover;
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding-block: 8px;
}

.dark .list .order img[alt='Robot Print Co'] {
  filter: brightness(0) invert(1);
}

.products span {
  color: var(--phoenix-link-color);
  opacity: 1 !important;
}

.product-image-thumb > a {
  background-color: #ffffff;
}

.product-image-thumb img {
  width: auto;
  height: 200px;
}

.set-default-height {
  width: auto;
  height: 205px;
}

.show-on-hover {
  display: none;
  padding: 5px 15px;
  background: rgba(var(--phoenix-black-rgb), 0.62);
  color: var(--phoenix-white);
  border-radius: 0;
  font-size: 13px;
  position: absolute;
  left: 0;
  bottom: 46px;
  width: 100%;
  text-align: center;
  line-height: normal;
  overflow: hidden;
}

.bottom-0 {
  bottom: 0;
}

.customart-card .action-block {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.customart-card:hover .show-on-hover {
  display: block;
}

.customart-card .product-image-thumb img {
  width: 100%;
  max-height: unset;
  height: 130px;
}

.mw-80px {
  max-width: 80px;
}

.icon-lg {
  width: 27px;
  height: 27px;
}

.bg-opacity {
  --phoenix-bg-opacity: 0.1;
}

.product-index {
  background: #6cabe7;
  color: var(--primary-color);
  border-radius: 4px;
  width: 30px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-size: 12px;
  line-height: 25px;
}

.bg-danger .product-index {
  background: #fbe4e0;
}

.bg-success .product-index {
  background: #e9efe8;
}

/* .custom-card-header {
  padding: 12px 16px;
  background-color: rgb( var(--phoenix-soft-rgb) ) !important;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  min-height: 64px;
}

.custom-card-header .btn-outline-default {
  background: #fff;
  display: flex;
  align-items: center;
}
.custom-card-header .btn-outline-default .badge {
  background: #103960;
  margin-left: 6px;
} */

.avatar img {
  object-fit: contain;
}

label span,
span.text-danger {
  color: #f00 !important;
  font-size: 0.9rem;
}

.info-tooltip {
  background: var(--secondary-color);
  display: inline-block;
  color: var(--phoenix-white);
  width: 23px;
  height: 23px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 0;
  line-height: 22px;
  margin-bottom: 2px;
}

.avatar.avatar-md {
  width: 5.5rem;
  height: 5.5rem;
  line-height: 3.5rem;
  font-size: 0.8rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

/* .dark .store-list-block .avatar img {
  filter: invert(0.5);
} */

.line-height-normal {
  line-height: normal;
}

a.store-link-generate {
  flex: 60%;
  position: relative;
}

a.store-link-generate::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 75%;
  background-color: var(--phoenix-card-border-color);
  top: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

.store-list-block a {
  text-decoration: none;
}

.title-without-link-hover a,
.title-without-link-hover span {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none !important;
}

a.store-nav {
  text-align: center;
  font-size: 0.9rem;
}

a.store-nav {
  text-decoration: none;
  color: var(--primary-color);
  position: relative;
}

.col:not(:last-child) a.store-nav:after {
  position: absolute;
  content: '';
  right: 0;
  top: 20%;
  width: 1px;
  background: #ede4e4;
  height: 31px;
}

a.store-nav i,
a.store-nav svg {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.store-nav-icon {
  padding: 0 10px;
}

.store-banner {
  background-size: cover;
  background-color: #f5f7fa;
}

.account-active-tag {
  position: absolute;
  left: 110px;
  bottom: -52px;
  width: auto;
}

.avatar-4xl {
  height: 5.5rem;
  width: 5.5rem;
}

.questions-tooltip {
  color: #000;
  text-align: center;
  line-height: 32px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.questions-tooltip svg {
  font-size: 16px;
}

.questions-tooltip:hover {
}

.store-logo-tooltip {
  position: absolute;
  bottom: 4px;
  right: 5px;
}

.bg-theme {
  background: var(--primary-color);
}

.dashboard-sidebar {
  border-radius: 20px;
}

.dashboard-sidebar a.btn-link {
  color: var(--phoenix-white) !important;
}

.box-shadow-none {
  box-shadow: none !important;
}

.side-tab-dashboard {
  border-bottom: 1px solid #ede9e9;
}

.side-tab-dashboard a.nav-link {
  color: var(--phoenix-black);
}

.mt--100 {
  margin-top: -100px;
}

.store-date {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 7px;
  background: #c9dcfc;
  color: #000;
  border-radius: 7px 0px 0 0;
}

.store-date h6 {
  color: #000;
}

.btn-status {
  border-radius: 4px;
  border: none;
  width: 100px;
  height: 28px;
  font-weight: 800;
  font-size: 12px !important;
  line-height: 18px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
}

a.btn-status {
  cursor: pointer;
}

.btn-status.active-status {
  background: #cfecdc;
  color: #1c9e4c;
  cursor: default;
}

.btn-status.disable-status {
  background: #ffedeb;
  color: #b81800;
  /* font-weight: normal; */
}

.btn-status.disable-status .disable-icon {
  color: #b81800;
}

.btn-status svg {
  width: 15px;
  height: 15px;
  color: initial;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-status svg.active-icon {
  color: #1c9e4c;
}

.others-info .tile {
  min-width: 145px;
  width: 100%;
  background: var(--phoenix-gray-100);
  border-radius: 5px;
  padding: 5px 9px;
  margin-bottom: 5px;
  font-size: 12px;
  gap: 10px;
}

.others-info .light-text {
  font-size: 10px;
  line-height: 15px;
  font-weight: 800;
  color: #778d9f;
  text-transform: uppercase;
  display: inherit;
}

.feed-avatar-profile {
  left: 10px;
  z-index: 2;
}

.badge-status {
  border-radius: 500px;
  border: none;
  min-width: 69px;
  height: 18px;
  font-weight: 800;
  font-size: 10px;
  line-height: 15px;
  position: relative;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
}

.badge-status.active-badge {
  background: #cfecdc;
  color: #1c9e4c;
}

.badge-status.disable-badge {
  background: rgba(255, 35, 35, 0.3);
  color: #f00;
}

.btn-status.disable-badge {
  background: rgba(255, 35, 35, 0.3);
  color: #f00;
}

.bg-gray {
  background: #f5f7fa !important;
}

@media (max-width: 1450px) {
  .btn-sm {
    --phoenix-btn-padding-y: 0.5rem;
    --phoenix-btn-padding-x: 0.5rem;
    --phoenix-btn-font-size: 0.8rem;
  }
}

@media (max-width: 1300px) {
  .btn-sm {
    --phoenix-btn-padding-y: 0.4rem;
    --phoenix-btn-padding-x: 0.3rem;
    --phoenix-btn-font-size: 0.7rem;
  }
}

/* Store Profile CSS */

.store-cover-tooltip {
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
  z-index: -1;
}

/*Store List CSS*/

.store-list-block {
  margin-bottom: 20px;
}

.store-list-block .others-info .light-text {
  font-size: 10px;
  line-height: 14px;
}

.store-list-block .others-info .tile {
  min-width: 170px;
  border-radius: 4px;
  padding: 5px 12px;
  margin-bottom: 0px;
}

.store-list-block .others-info .tile svg {
  margin-right: 4px;
  height: 12px;
  width: 12px;
  color: #778d9f !important;
}

.max-width-275 {
  max-width: 275px;
}

.no-results {
  text-align: center;
  padding: 20px 0;
  font-weight: bold;
  font-size: 22px;
}

.no-results p {
  opacity: 0.5;
  font-size: 0.9rem;
}

.no-results img {
  max-height: 50px;
  margin-bottom: 5px;
}

.dark .no-results img {
  filter: invert(1);
}

.theme-wizard
  .nav-item:not(.theme-wizard .nav-item:last-child)
  .nav-link:before {
  left: 50px;
}

.modal-header button svg {
  color: var(--phoenix-white) !important;
}

label.error,
span.error,
span.error_validate {
  color: #f00 !important;
  font-size: 0.9rem;
  width: 100%;
  font-weight: 400;
}

label.error {
  width: 100%;
}

/* Pagination Style */

.rp-pagination nav a {
  text-decoration: none;
  border: 0 !important;
  color: var(--phoenix-black-rgb);
  line-height: 40px;
}

.rp-pagination nav div:first-child {
  display: none;
}

.rp-pagination {
  font-size: 0.74rem;
  font-weight: bold;
}

.rp-pagination svg {
  width: 20px;
  font-size: 20px;
}

.rp-pagination [aria-current='page'] span {
  border-radius: 9px;
  background: var(--primary-color) !important;
  color: var(--phoenix-white);
  padding: 0.5rem 0.75rem !important;
  border: 0 !important;
}

.rp-pagination [aria-disabled='true'] span {
  border: 0 !important;
  opacity: 0.5;
}

.rp-pagination .shadow-sm {
  box-shadow: none !important;
}

.rp-pagination .px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

/* End Pagination Style */

a.badge {
  cursor: pointer;
  text-decoration: none;
}

a.badge:hover {
  color: initial;
}

.action-btn {
  cursor: pointer;
}

.product-image-upload .upload-image-pic {
  position: relative;
  display: inline-block;
  border: 1px solid var(--phoenix-gray-200);
  padding: 7px;
}

.product-image-upload .upload-image-pic .upload-image-before {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--phoenix-gray-200);
  padding: 3px 6px 0px 7px;
}

.customart-status {
  min-width: 60px !important;
}

.image-area-upload span.error {
  display: block;
}

.max-width-15 {
  max-width: 15rem;
}

@media (max-width: 1350px) {
  .avatar-4xl {
    height: 6.5rem;
    width: 6.5rem;
  }
}

@media (max-width: 1300px) {
  .others-info .tile {
    min-width: 130px;
    padding: 5px 5px;
  }

  .search-box {
    width: 18rem;
  }

  .search-box-product {
    width: 10rem;
  }
}

@media (max-width: 1200px) {
  .store-list-row .card-header {
    width: 100%;
    margin-bottom: 7px;
    display: flex;
    justify-content: center;
    padding: 24px 0 !important;
    text-align: center;
  }

  .customart-card .product-image-thumb img {
    width: auto;
    max-height: unset;
    height: 130px;
  }

  .theme-wizard
    .nav-item:not(.theme-wizard .nav-item:last-child)
    .nav-link:before {
    left: 50px;
  }
}

@media (max-width: 767px) {
  .avatar-4xl {
    height: 75px;
    width: 75px;
  }

  body.modal-open .tooltip {
    display: none;
  }

  body.modal-open .modal .tooltip {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999999999;
  }

  body.modal-open div[data-bs-toggle='tooltip'] {
    display: none;
  }

  body.modal-open .modal div[data-bs-toggle='tooltip'] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999999999;
  }

  .sm-text-left {
    text-align: left !important;
  }

  .modal-body p {
    width: 100%;
    text-wrap: balance !important;
    word-break: break-word;
  }

  .scrollbar .table tr th {
    min-width: 130px;
    text-wrap: nowrap;
  }

  .scrollbar .table tr th:nth-child(1) {
    min-width: auto;
  }

  .scrollbar .table tr td {
    text-wrap: balance;
  }

  .border-left-sm {
    border-left: var(--phoenix-border-width) var(--phoenix-border-style)
      var(--phoenix-border-color) !important;
  }

  .product-tabel thead tr th {
    min-width: 80px;
  }

  .search-form-m .search-box {
    width: 100%;
  }

  .search-form-m .btn {
    width: auto;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-form-m .me-2 {
    margin-right: 0 !important;
    min-width: 105px;
  }

  .sm-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .margin-price {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .search-form-m {
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .store-info.table thead tr th {
    min-width: 150px;
  }

  .questions-tooltip {
    width: 20px;
    height: 20px;
  }

  .theme-wizard
    .nav-item:not(.theme-wizard .nav-item:last-child)
    .nav-link:before {
    left: 0;
  }
}

@media (max-width: 576px) {
  .store-nav-icon {
    padding: 0 4px;
  }

  a.store-nav {
    font-size: 0.7rem;
  }
}

.search-datepicker {
  width: 13rem;
}

.panel-body input,
.panel-body button,
.panel-body a,
.panel-body select,
.panel-body .select2-container {
  margin-bottom: 3px;
  margin-top: 3px;
}

.tab-content .panel-body input {
  margin-top: 0;
  margin-bottom: 0;
}

.dropzone img {
  max-width: 100%;
  object-fit: contain;
  width: 100% !important;
}

.dropzone.dropzone-multiple {
  background: var(--phoenix-white) !important;
}

.dropzone.dropzone-multiple .dz-message {
  padding: 0 !important;
}

.font-900 {
  font-weight: 900;
}

.rp-product-filter a {
  text-decoration: none;
}

.rp-product-filter .form-check {
  font-weight: bolder;
  margin: 3px 0;
  padding-left: 0.5rem;
}

.rp-product-filter .form-check.active {
  padding-left: 10px;
  border-left: 4px solid var(--primary-color);
}

.rp-product-filter .form-check a {
  color: var(--phoenix-black);
}

.nav-parent-dd ul {
  list-style: none;
}

.nav-parent-dd {
  font-weight: bold;
}

.nav-parent-dd ul {
  padding-left: 0;
}

.nav-parent-dd ul li {
  margin: 4px 0;
}

.nav-parent-dd ul li a {
  color: var(--phoenix-black);
  font-weight: normal;
}

.nav-parent-dd a,
.rp-product-filter .form-check-label {
  border-left: 4px solid transparent;
  padding-left: 10px;
}

.rp-product-filter .form-check-label:hover,
.rp-product-filter .form-check-label.active,
.nav-parent-dd a:hover,
.nav-parent-dd a.active {
  border-left: 4px solid var(--primary-color);
}

.available-colors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0px 0;
}

.colors-with-scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow: auto;
  min-height: 35px;
  margin-bottom: 4px;
}

.sizes-with-scroll {
  flex-wrap: nowrap;
  overflow: auto;
  min-height: 27px;
  margin-bottom: 4px;
  display: flex;
}

.sizes-with-scroll span {
  margin-left: 7px;
}

.available-color {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 20px;
  margin: 2px 0;
}

.append-color-html,
.append-size-html {
  /* max-height: 170px;
  overflow: auto; */
  /* width: calc(100% + 25px);
  padding-right: 20px; */
}

/* ===== Scrollbar CSS ===== */

/* Firefox */

.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #969696 #f3f2f2;
}

/* Chrome, Edge, and Safari */

.custom-scroll::-webkit-scrollbar {
  width: 7px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f3f2f2;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #969696;
  border-radius: 10px;
  border: 0px solid var(--bs-white);
}

/*select 2 custom*/

.select2-container--default.select2-container--focus
  .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
  padding: 4px;
  border-radius: 0.375rem !important;
  font-size: 14px;
  background-color: transparent !important;
}

.select2-selection.select2-selection--multiple {
  background-image: var(--phoenix-form-select-indicator);
  color: var(--phoenix-900);
  background-color: var(--phoenix-input-bg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 9px 12px;
  border: 1px solid var(--phoenix-input-border-color);
  border-radius: 0.375rem;
}

.custom-selectbox .select2-container {
  min-width: 400px;
}

.select2-results__option {
  padding-right: 20px;
  vertical-align: middle;
}

.select2-results__option:before {
  content: '';
  display: inline-block;
  position: relative;
  height: 20px;
  width: 20px;
  border: 2px solid #e9e9e9;
  border-radius: 0.375rem !important;
  background-color: var(--bs-white);
  margin-right: 20px;
  vertical-align: middle;
}

.select2-results__option[aria-selected='true']:before {
  font-family: fontAwesome;
  content: '\f00c';
  color: var(--bs-white);
  background-color: #f77750;
  border: 0;
  display: inline-block;
  padding-left: 3px;
}

.select2-container .select2-selection--multiple {
  max-height: 70px;
  overflow: auto;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #eaeaeb;
  color: #272727;
}

.select2-results__option[aria-selected='true']:before {
  content: '\2713';
  color: var(--bs-white);
  background-color: var(--primary-color);
  border: 0;
  display: inline-block;
  padding-left: 3px;
}

.search-filter-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--phoenix-gray-900);
  font-size: 0.8rem;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 6px !important;
}

.status-dropdown button {
  padding: 7px 8px;
  font-size: 12px;
  border-radius: 5px !important;
  min-width: 110px;
}

.status-dropdown .dropdown-menu {
  cursor: pointer;
  min-width: 110px;
  margin-top: -2px !important;
  border-radius: 0 0 2px 2px;
}

.status-dropdown .dropdown-menu a {
  padding: 4px 8px;
}

.status-dropdown button.show {
  border-radius: 5px 5px 0 0;
}

.status-dropdown .btn-success {
  background-color: #bee8b4;
  color: #1c6c09;
}

.status-dropdown .btn-primary {
  background-color: #fabcb3;
  color: #b81800;
}

.store-icon-small img {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 7px;
  border: 1px solid #ccc;
}

.store-name-on-product {
  font-size: 0.8rem;
}

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

.dark .navbar-logo img {
  filter: brightness(0) invert(0.6);
}

.prod-quick-link {
  margin-left: 7px;
  text-decoration: none;
  color: var(--secondary-color);
}

.prod-quick-link:hover {
  text-decoration: none;
}

.theme-wizard .nav-item .nav-link {
  max-width: 150px;
}

.size-select-dd,
.color-select-dd,
.category-select-dd {
  position: relative;
}

.size-select-dd label.error,
.color-select-dd label.error,
.category-select-dd label.error {
  top: -17px !important;
  width: 100%;
  height: auto !important;
  z-index: 1 !important;
  text-wrap: nowrap !important;
  left: 0px !important;
  bottom: unset !important;
  font-size: 12px !important;
  line-height: unset !important;
  position: absolute;
}

.select2-dropdown {
  border: 1px solid var(--phoenix-input-border-color) !important;
}

.icon-eye-password {
  position: absolute;
  right: 11px;
  top: 12px !important;
  cursor: pointer;
  width: 25px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.icon-eye-password .fa-eye {
  display: none;
  font-size: 13px;
}

.icon-eye-password .fa-eye-slash {
  font-size: 13px;
}

.select2-dropdown {
  z-index: 1000 !important;
}

.text-not-available-color-size {
  line-height: 13px;
  font-size: 12px;
  margin-left: 0 !important;
}

.select2-container--default .select2-results .select2-results__options {
  max-height: unset !important;
}

.select2-container--default .select2-results {
  max-height: 200px;
  overflow: auto;
}

.product-img-thumb {
  height: 100px;
}

.toggle-inner-panel {
  display: none;
}

.inventory-table td input[type='text'] {
  max-width: 85px;
  border: 1px solid #ccc;
  padding: 0px 8px;
  font-size: 14px;
  border-left: 0;
  border-right: 0;
  text-align: center;
}

.inventory-table .input-group {
  justify-content: center;
  width: auto;
  flex-wrap: nowrap;
}

.inventory-table .input-group button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff2f6;
  padding: 0;
  border: 1px solid #ccc;
}

.product-view {
  text-align: center;
  font-weight: bold;
}

.product-view .product-image {
  height: 220px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}

.product-view .product-image img {
  height: 220px;
  width: auto;
}

.product-design-view {
  font-weight: bold;
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.product-design-view .custom-art-design-block {
  width: 180px;
  /* height: 180px; */
  /* background-size: contain; */
  /* background-image: url(../img/transparent-bg.png); */
  border: 1px solid #e3e6ed;
  border-radius: 5px;
  padding: 10px;
}

.product-design-view .custom-art-design-block > div {
  height: 100%;
  padding: 0;
}

.product-design-view .custom-art-design-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-dropdown .btn-grey {
  background-color: var(--phoenix-navbar-vertical-link-hover-bg);
}

.arrow-part {
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow-part span {
  width: 30px;
  height: 30px;
  background-color: var(--phoenix-navbar-vertical-link-hover-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.arrow-part span a {
  line-height: 0;
}

.border-left-shape {
  position: relative;
}

.border-left-shape:before {
  width: 1px;
  height: 100%;
  content: '';
  position: absolute;
  left: -20px;
  background: var(--phoenix-gray-200);
}

.custom-art-actions {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
}

.min-width-unset {
  min-width: unset;
}

.min-height-40 {
  min-height: 40px;
}

.min-height-39 {
  min-height: 39px;
}

.min-height-43 {
  min-height: 43px;
}

.view-order-detail,
.hide-order-detail {
  width: 25px;
  height: 25px;
  cursor: pointer;
  line-height: 25px;
  display: inline-block;
  font-size: 25px;
}

.product-expand-row,
.hide-order-detail {
  display: none;
}

.custom-art-design-block {
  position: relative;
}

.custom-art-design-block svg {
  position: absolute;
}

.custom-art-design-block span {
  position: absolute;
  display: inline-block;
}

#orderTable .select2-container .select2-selection--single {
  border-radius: 0.375rem;
  height: 37px;
  border: 1px solid var(--phoenix-input-border-color);
  background-color: var(--phoenix-input-bg) !important;
}

.select2-selection__rendered::first-letter {
  text-transform: uppercase;
}

#orderTable
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 36px;
  color: var(--phoenix-gray-900);
  font-size: 0.8rem;
}

/* .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--phoenix-gray-900) !important;
  font-size: 14px;
} */

#select2-store-select-results .select2-results__option:before {
  display: none;
}

.icon-eye input {
  padding-right: 35px;
}

.prod-quick-link {
  cursor: pointer;
}

/* Dimension plugin */

#drag {
  height: 150px;
  width: 30px;
  min-width: 30px;
  max-height: 452px;
  max-width: 30px;
  overflow: hidden;
  position: absolute;
  top: 20px;
  left: 20px;
  box-shadow: 1px 2px 3px 0px #000;
  box-sizing: border-box;
}

#drag::after {
  content: '';
  background-image: url('../img/expand-icon.png');
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: -1;
}

#drag-2 {
  height: 30px;
  width: 150px;
  min-height: 30px;
  max-height: 30px;
  max-width: 352px;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 20px;
  box-shadow: 1px 2px 3px 0px #000;
  box-sizing: border-box;
}

#measurement-container {
  display: inline-block;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  text-align: center;
  position: relative;
  margin: auto;
}

.ui-draggable {
  cursor: move;
}

.ui-draggable.ui-draggable-dragging {
  z-index: 6;
}

.ui-resizable.ui-draggable-resizing {
  z-index: 7;
}

.custom-tabs li {
  flex: unset !important;
  list-style: none;
}

/* End Dimension plugin CSS */

/* Start Shopify integrate CSS */

.integrate-tab-block {
  margin-top: 20px;
}

.integrate-tab-block li {
  display: inline-block;
}

.integrate-tab-block li .nav-link {
  font-size: 17px;
  padding: 10px 20px;
}

.integrate-tab-block .nav-item:first-child .nav-link {
  padding-left: 20px;
}

.integrate-tab-block .nav-item:last-child .nav-link {
  padding-right: 20px;
}

.integrate-process-block li {
  padding: 12px 0px;
  position: relative;
}

.integrate-process-block li::marker {
  font-weight: 900;
}

.integrate-process-block li img {
  max-width: 750px;
  margin: 12px auto;
  border: 5px solid #e5e5e5;
}

/* End Shopify integrate CSS */

.right-nav-block {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.right-nav-block li {
  display: inline-block;
  margin: 0px 8px;
}

.right-nav-block .commission-block a {
  cursor: default;
}

.right-nav-block .remaining-block a {
  cursor: default;
}

.right-nav-block .paid-block a {
  cursor: default;
}

.right-nav-block .paid-block-history a {
  background: #bc3803;
  border: 1px solid #bc3803;
  color: #fff;
  cursor: default;
}

.option-input-block .input-group {
  display: inline-block;
  width: auto;
  min-width: 60px;
}

.option-input-block .input-group .price-input {
  width: 100%;
}

.option-input-block .input-group .input-group-text {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  z-index: 99;
}

.select2-results__option::first-letter {
  text-transform: uppercase;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  padding: 0 19px 0 5px;
}

/* End Dimension plugin CSS */

.b-b-1 {
  border-bottom: 1px solid var(--phoenix-gray-200);
}

.search-filter-form .select2-container .select2-selection--single {
  border-radius: 0.375rem;
  height: 37px;
  border: 1px solid var(--phoenix-input-border-color);
}

.search-filter-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 36px;
}

#select2-select-search-single-results
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 36px;
}

#select2-select-search-single-results .select2-results__option:before {
  display: none;
}

.nav-link.label-1 {
  margin-bottom: 7px !important;
}

.nav-link.label-1.active {
  background-color: var(--phoenix-navbar-vertical-link-hover-bg);
}

.search-box
  .select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #a5a5a5;
  font-size: 13px;
}

.select2-container--default .select2-results__option {
  font-size: 13px;
}

.msg-error-show {
  position: static;
}

.msg-error-show label {
  position: absolute;
  left: 0;
  bottom: -5px;
  font-size: 11px;
  line-height: 11px;
  display: flex;
  align-items: center;
  height: 20px;
}

.order-product-name::first-letter {
  text-transform: uppercase;
}

.product-header-row {
  cursor: pointer;
  background: #f5f5f5;
}

@media (max-width: 1367px) {
  .product-header-row td img {
    width: 40px !important;
  }
}

@media (min-width: 576px) {
  .product-delete-action {
    margin-top: -60px;
  }
}

.updatewidth {
  overflow: auto;
}

.w-103 {
  width: 103%;
}

/* css for star rating testimonial strt */

.fa-star {
  color: rgba(112, 111, 111, 0.856);
}

.fa-star:hover {
  color: #ffd700;
}

.fa-star.selected {
  color: #ffd700;
}

/* css for star rating testimonial end */

.store-inactive-status {
  max-width: 240px;
  position: absolute;
  bottom: 80px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-top-1 {
  border-top: 1px solid #ccc;
}

.filter-block {
  margin-left: -1rem;
}

.contact_us_item {
  cursor: pointer;
}

.contact_us_item:hover {
  --phoenix-bg-opacity: 1;
  background-color: rgba(
    var(--phoenix-light-rgb),
    var(--phoenix-bg-opacity)
  ) !important;
}

.custom-upload-input {
  border-radius: 4px;
  border: 1px solid var(--phoenix-input-border-color);
}

.group-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.group-data {
  width: 100%;
  padding: 1rem;
}

.group-list .store-nav-icon {
  padding: 0;
}

.group-data .card-body {
  width: 100%;
}

@media screen and (min-width: 1600px) {
  .group-list {
    margin-top: 1rem;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}

@media screen and (min-device-width: 320px) and (max-device-width: 474px) {
  .group-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
  }

  .zoomContainer {
    display: none !important;
  }

  .zoomContainer {
    display: none !important;
  }

  .shop_single_navmenu_content .zoomimg_wrapper img {
    pointer-events: none;
  }
}

@media screen and (min-device-width: 475px) and (max-device-width: 768px) {
  .group-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
  }

  .zoomContainer {
    display: none !important;
  }

  .shop_single_navmenu_content .zoomimg_wrapper img {
    pointer-events: none;
  }
}

/* Store-css */

.shopify-box {
  width: 100%;
  height: auto;
  min-height: 200px;
  border: 1px solid #e3e6ed;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.shopify-box .content-box {
  width: 100%;
  min-height: 150px;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
}

.shopify-box .icon img,
.shopify-box .icon svg {
  width: 80px;
  height: 80px;
}

.shopify-box .icon {
  margin-top: 1rem;
}

.shopify-box a.btn {
  width: auto;
  background-color: #032447;
  color: #ffffff;
  margin: 1rem;
  min-width: 250px;
  display: block;
}

.shopify-integration-steps ol li {
  margin-bottom: 20px;
}

div.copied {
  /* background-color: #d4edda;
  border: 1px solid #28a745;  */
  color: #155724;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

div.copied::before {
  position: absolute;
  content: '✓';
  left: 0px;
  top: 4px;
  font-size: 12px;
}

.api-scopes {
  overflow: auto;
  max-height: 180px;
  display: inline-block;
}

.api-scopes svg {
  font-size: 12px;
}

.api-scopes > div {
  cursor: pointer;
  margin-bottom: 5px;
  padding-left: 12px;
}

.tooltip.show {
  z-index: 9999;
}

.phoenix-offcanvas.phoenix-offcanvas-fixed {
  z-index: 9;
}

.swal2-container {
  z-index: 9999;
}

.product-filter-offcanvas {
  top: 5rem !important;
}

.product-filter-offcanvas a.btn {
  text-align: left;
}

.notification-table .btn-trash {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--phoenix-white) !important;
}

.store-info-btn-block {
  display: flex;
  align-items: center;
}

.list .order img {
  width: 20px;
  margin-right: 6px;
}

#order-table-body td {
  text-wrap: nowrap;
}

.modal-body {
  padding: 1rem;
}

.modal-body span.contact_popup_msg {
  text-wrap: wrap;
  word-wrap: break-word;
}

hr.translate-y {
  transform: translateY(10px);
}

.integrate-tab-block .nav-item a.active,
.integrate-tab-block .nav-item a:hover {
  color: var(--phoenix-link-color);
  border-color: var(--phoenix-link-color);
}

.integrate-process-block li > h4 {
  font-size: 18px;
  line-height: 32px;
}

.dark .phoenix-offcanvas.phoenix-offcanvas-fixed {
  background-color: var(--phoenix-white) !important;
}

.dark .left-part img {
  filter: brightness(0) invert(1);
}

.dark .select2-container--default .select2-selection--multiple,
.dark .select2-results__options {
  background-color: var(--phoenix-input-bg) !important;
}

.dark .theme-wizard .nav-item .nav-link.active .nav-item-circle {
  color: var(--phoenix-navbar-vertical-link-color);
  border-color: #ffffff;
}

.dark .select2-selection.select2-selection--multiple {
  color: #000000;
}

.dark .shopify-box h4 {
  color: #000000;
}

.dark .left-part > h2 a {
  color: var(--phoenix-navbar-vertical-link-color);
}

.dark .form-control::placeholder {
  opacity: 0.3;
}

.dark .action-btn,
.dark .order-left-block a,
.dark .left-part a {
  color: var(--phoenix-navbar-vertical-link-color);
}

.dark .order-left-block img {
  filter: brightness(0) invert(1);
}

.left-part a {
  color: #000;
}

.dark .logo-text {
  color: var(--phoenix-navbar-vertical-link-color);
}

.dark :where(h1, h2, h3, h4, h5, p, span),
.dark .text-dark {
  color: var(--phoenix-navbar-vertical-link-color) !important;
}

.table > thead > tr > th {
  text-transform: uppercase;
}

.left-part a.download-print-label,
.dark .edit-btn a.action-btn {
  color: #fff;
}

.product-details .product-description {
  width: 100%;
  height: 100%;
  min-height: 80px;
}

.dark .modal-title,
.dark .modal-header button svg {
  color: #ffffff !important;
}

.custom-size-append .input-group,
.append-color-html .input-group {
  position: unset;
}

.custom-size-append .input-group label.error,
.append-size-html .msg-error-show label,
.append-size-html label.error,
.append-size-html span.error,
.append-size-html span.error_validate,
.append-color-html .input-group label.error,
.append-size-html span.error-message {
  position: absolute;
  top: -19px !important;
  width: 100%;
  height: auto !important;
  z-index: 1 !important;
  text-wrap: nowrap !important;
  left: 0px !important;
  bottom: unset !important;
  font-size: 12px !important;
  line-height: unset !important;
  background-color: #ffffff;
}

.dark .col-auto h2 > a {
  color: var(--phoenix-navbar-vertical-link-color) !important;
}

.print-area-tabs a#custom-art-area {
  opacity: 0.2;
  cursor: not-allowed;
}

.print-area-tabs a#custom-art-area.enable {
  opacity: 1;
  cursor: default;
}

.size-boxes svg path,
.colors-boxes svg path {
  fill: #cbd0dd;
}

.custom-size-append {
  width: 100%;
}

.size-boxes {
  position: relative;
}

.vertical-tab .nav-link {
  padding: 0.5rem 0.5rem !important;
}

/* Print-area-css */

.print-area-tabs ul.custom-tabs {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  margin: 0;
}

.col-auto h2 > a {
  color: #000;
  text-decoration: none;
}

.print-area-tabs li.nav-item a {
  width: 40px;
  height: 40px;
  border: 1px solid #d8dbe5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

form#distanceForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  background-color: #ffffff;
  width: 88%;
  margin: auto;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
}

form#distanceForm button.btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 12px;
}

.input-group-text {
  line-height: 1.19;
}

form#distanceForm button#modelBoxClose {
  display: none;
}

.measurment-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.featured-carousel {
  position: relative;
  width: 350px;
  height: 100%;
  margin-bottom: 1rem;
}

.featured-carousel .featured-image {
  border: 1px solid #d8dbe5;
  width: 352px;
  padding: 0;
  margin: 10px auto;
  position: relative;
  /* overflow: hidden; */
}

.featured-carousel button.rightArrow {
  right: -20px;
}

.featured-carousel button.leftArrow {
  left: -20px;
}

.thumbnail-carousel > div span.label {
  display: inline-block;
  line-height: 1.1;
  width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  transform: translate(5px, 3px);
}

.featured-carousel button {
  position: absolute;
  bottom: 60px;
  border: 0;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dbe5;
}

.right-content-print-section {
  display: flex;
  gap: 20px;
}

.print-area-tabs li.nav-item a.active {
  border: 1px solid #032447;
}

.thumbnail-carousel {
  display: flex;
  width: 100%;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 0rem;
}

.thumbnail-carousel::-webkit-scrollbar {
  height: 0;
}

.featured-carousel > div {
  width: 100%;
}

.featured-carousel div img {
  width: 100%;
}

.thumbnail-carousel > div {
  width: 80px;
  flex: 0 0 auto;
  text-align: center;
  padding: 2px;
  cursor: pointer;
  height: auto;
}

.thumbnail-carousel > div img {
  border: 1px solid #d8dbe5;
  border-radius: 6px;
  height: 90px;
}

.thumbnail-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnial-box.active img {
  border: 1px solid #032447 !important;
}

.thumbnail-carousel::-webkit-scrollbar {
  width: 0px !important;
}

.model-box {
  width: 100%;
  height: 100%;
  display: none;
  text-align: center;
  margin: auto;
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}

form.distance-measure {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.model-box.show {
  display: block;
}

.canvasDraw {
  position: absolute;
  top: 0;
  width: 350px;
  height: 450px;
}

form.measurment-form .field {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

form.measurment-form .field label {
  margin: 5px 0;
  flex: 100%;
}

form.measurment-form .field input {
  border-radius: 6px;
  border: 1px solid #cbd0dd;
  height: 35px;
  padding: 10px;
  width: 85px;
}

form.measurment-form .field select {
  position: absolute;
  right: 7px;
  bottom: 0;
  height: 35px;
  background-color: #eff2f6;
  border-radius: 6px;
  padding: 0 5px;
  border: 1px solid #cbd0dd;
  border-left: 0;
}

.measurment-form input:focus,
.measurment-form select:focus {
  outline: 0;
}

.featured-carousel .featured-image .jcrop-active {
  width: 100% !important;
  height: 100% !important;
}

.featured-carousel .featured-image canvas {
  width: 100% !important;
  height: 100% !important;
}

.featured-carousel button.jcrop-box.jcrop-drag {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: unset;
  background-color: transparent;
}

form.measurment-form .field .measurement-unit-select {
  position: relative;
  width: 100%;
}

.vertical-tab .nav-link.active + .nav-link {
  border-left: 0 !important;
}

.vertical-tab .nav-link:last-child.active {
  border-right: 0 !important;
}

.draggable {
  cursor: move;
}

.draggable svg {
  opacity: 0.5;
}

.table-responsive input:focus-visible {
  outline: unset;
}

.btn-info[title='Reset'],
.btn-info[data-bs-original-title='Reset'] {
  background-color: #e3e3e3 !important;
  color: #032447;
}

.border-radius {
  border-radius: 6px;
}

.border-top-radius {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.cke_bottom,
.cke_inner,
.cke_chrome {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* new-css-8/8/24 */

.category-table .subcategory {
  border-bottom: 1px solid rgba(var(--phoenix-200-rgb));
  display: none;
}

.category-table .dragging {
  opacity: 0.5;
  background-color: #f0f0f0;
}

.category-table .drag-icon {
  cursor: move;
  margin-right: 2px;
  opacity: 0.5;
}

.subcategory span.drag-icon {
  margin-inline-end: 10px;
}

.category-table .subcategory table {
  width: 75%;
  margin-inline-start: 10px;
}

.setting-page tbody td {
  padding: 10px 5px;
}

.category-table td a.delet-category {
  opacity: 0.5;
  color: #000000;
  cursor: pointer;
}

.category-table span svg {
  opacity: 0.5;
}

.category-table .subcategory table td.category-name {
  font-size: 16px;
  font-weight: bold;
}

table.category-table tr.category span.toggle {
  font-size: 16px;
  font-weight: bold;
}

.dark .cke_top,
.dark .cke_wysiwyg_frame,
.dark .cke_wysiwyg_div {
  background-color: var(--phoenix-input-bg);
  border-bottom: 1px solid var(--phoenix-input-border-color);
}

.dark .cke_bottom {
  background: var(--phoenix-input-bg);
  border-bottom: 1px solid var(--phoenix-input-border-color);
  border-top: 1px solid var(--phoenix-input-border-color);
}

.dark .cke_chrome {
  border: 1px solid var(--phoenix-input-border-color);
}

.dark .tab-pane .border-bottom-sm {
  border-bottom: 0;
}

.dark a.cke_button_off:hover,
.dark a.cke_button_off:focus,
.dark a.cke_button_off:active,
.dark a.cke_button_on {
  background: var(--phoenix-input-bg) !important;
  border: 1px solid var(--phoenix-input-border-color) !important;
}

.dark .cke_button_icon {
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.table > tbody > tr > td:last-child {
  padding: 0 !important;
}

.table > tbody > tr > td.pe-2 {
  padding-right: 0.5rem !important;
}

.categoryTable :where(thead, tbody, tfoot, tr, td, th) {
  line-height: 2.5;
}

.categoryTable td span,
.categoryTable a {
  cursor: pointer;
}

span.betaversion {
  width: auto;
  font-size: 11px;
  margin-inline-start: 20px;
  color: blue;
  background-color: #f1f1f1;
  padding: 1px 5px;
  border-radius: 0.3rem;
  border: 1px solid;
  line-height: 1.2;
}

/* Start Margin Page CSS */

.product-description-box textarea {
  width: 100%;
  height: 150px;
  overflow: auto;
  border-radius: 7px;
  border: 1px solid #ccc;
  padding: 7px 12px;
}

.product-description-box textarea:focus-visible {
  outline: none;
}

.margin-slider-box .featured-carousel {
  position: relative;
  max-width: 350px;
  width: 100%;
  margin-bottom: 1rem;
}

.margin-slider-box .featured-carousel .featured-image {
  border: 1px solid #d8dbe5;
  max-width: 352px;
  width: 100%;
  padding: 0;
  margin: 10px auto;
  position: relative;
  /* overflow: hidden; */
}

.margin-slider-box .featured-carousel button.rightArrow {
  right: -20px;
}

.margin-slider-box .featured-carousel button.leftArrow {
  left: -20px;
}

.margin-slider-box .thumbnail-carousel > div span.label {
  display: inline-block;
  line-height: 1.1;
  width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  transform: translate(5px, 3px);
}

.margin-slider-box .featured-carousel button {
  position: absolute;
  bottom: 60px;
  border: 0;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dbe5;
}

.margin-slider-box .thumbnail-carousel {
  display: flex;
  width: 100%;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 0rem;
}

.margin-slider-box .thumbnail-carousel::-webkit-scrollbar {
  height: 0;
}

.margin-slider-box .featured-carousel > div {
  width: 100%;
}

.margin-slider-box .featured-carousel div img {
  width: 100%;
}

.margin-slider-box .thumbnail-carousel > div {
  width: 80px;
  flex: 0 0 auto;
  text-align: center;
  padding: 2px;
  cursor: pointer;
  height: auto;
}

.margin-slider-box .thumbnail-carousel > div img {
  border: 1px solid #d8dbe5;
  border-radius: 6px;
  height: 90px;
}

.margin-slider-box .thumbnail-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.margin-slider-box .thumbnial-box.active img {
  border: 1px solid #032447 !important;
}

.margin-slider-box .thumbnail-carousel::-webkit-scrollbar {
  width: 0px !important;
}

.product-colors-images span {
  border: 1px solid #ccc !important;
}

/* End Margin Page CSS */

.store-owner-profile-info {
  margin-left: 120px;
  margin-top: -50px;
  margin-right: 15px;
}

.store-owner-profile-info .btn-status {
  margin-top: 7px;
}

/* 23/10/2024 */

.theme-control-toggle > label {
  cursor: pointer;
}

.icon-lg {
  width: 25px;
  height: 25px;
}

.badge-phoenix-warning.store-status svg path {
  fill: #bc3803;
  stroke: #bc3803;
}

.badge-phoenix-warning.store-status {
  color: #bc3803;
}

.store-product-thumbnial-box {
  width: calc(50% - 10px);
  float: left;
  margin: 0 5px 10px 5px;
  border: 1px solid #ccc;
  border-radius: 7px;
  padding: 7px;
}

.store-product-sizes {
  border-right: 1px solid #707070;
  display: flex;
  align-items: center;
  line-height: 14px;
  padding: 0 8px;
}

.store-product-sizes:last-child {
  border-right: 0;
}

/*----modal--------*/

/*------------------  */

.ci-user-picture {
  min-width: 150px;
  margin-right: 16px;
}

.ci-user-picture img {
  width: 150px;
  height: 150px;
}

.filepreviewprofile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dark .store-info-btn-block .badge-phoenix-warning {
  background: #595959;
}

.dark .store-info-btn-block .badge-phoenix-warning:hover {
  color: var(--bs-white) !important;
}

/*----modal--------*/

.modal-header-bg {
  width: 100%;
  height: 12px;
  background: linear-gradient(269.44deg, #006afa 2.3%, #00ae86 99.19%);
}

.cropImageModal .modal-dialog {
  max-width: 750px;
  width: 90%;
  margin: 0.5rem auto;
}

.up-photo-title {
  padding: 8px 15px;
  text-align: center;
}

#upload-demo {
  position: relative;
  width: 100%;
  height: 250px;
  padding-bottom: 0;
}

.croppie-container h5 {
  position: absolute;
  bottom: 4px;
  text-align: center;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 2;
  font-size: 15px;
}

figure figcaption {
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding-left: 9px;
  padding-bottom: 5px;
  text-shadow: 0 0 10px #000;
}

.croppie-container .cr-image {
  right: 0;
}

.croppie-container .cr-slider-wrap {
  width: 275px;
}

.cr-slider-wrap p {
  font-size: 13px;
  color: #8d8d94;
  text-align: left;
}

.cr-slider {
  width: 275px;
}

.upload-action-btn {
  margin-top: 60px;
  padding-top: 40px;
}

.cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #006afa;
  cursor: pointer;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.cr-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #006afa;
  cursor: pointer;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.cr-slider::-ms-thumb {
  width: 18px;
  height: 18px;
  background: #006afa;
  cursor: pointer;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.cr-slider::-webkit-slider-runnable-track {
  width: 275px;
  height: 2px;
  cursor: pointer;
  box-shadow: none;
  background: #e0e0e0;
  border-radius: 3px;
  border: none;
}

.cr-slider:focus::-webkit-slider-runnable-track {
  background: #e0e0e0;
}

.cr-slider::-moz-range-track {
  width: 275px;
  height: 2px;
  cursor: pointer;
  box-shadow: none;
  background: #e0e0e0;
  border-radius: 3px;
  border: none;
}

.cr-slider::-ms-track {
  width: 275px;
  height: 2px;
  cursor: pointer;
  box-shadow: none;
  background: #e0e0e0;
  border-radius: 3px;
  border: none;
  color: transparent;
}

.crop-image-preview {
  position: relative;
  max-width: 100%;
}

.cover-image-file-input {
  opacity: 1;
}

.cursor-default {
  cursor: default;
}

.toast-title {
  display: none !important;
}

.modal-footer {
  padding: 0.5rem 1rem;
}

.shopify-shipping-method label.form-label {
  display: block;
  flex: 100%;
}

.shopify-scope-permission {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.prmission-list div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.shopify-scope-permission .prmission-list {
  display: none;
}

.shopify-scope-permission .prmission-list:nth-child(-n + 3) {
  display: block;
}

/* Reposnive Css FOR Store list */

@media (max-width: 1300px) {
  a.store-link-generate {
    flex: 50%;
    position: relative;
  }
}

@media (max-width: 1200px) {
  a.store-link-generate::after {
    display: none;
  }
}

.credit-card {
  position: relative;
}

.card-option {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  max-width: calc(100% - 5px);
}

.card-option.selected {
  border-color: #007bff;
}

.card-option input[type='radio'] {
  display: none;
}

.card-error {
  color: #f00 !important;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 15px;
}

.custom-radio::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.card-option input[type='radio']:checked + .custom-radio::after {
  display: block;
}

.card-icon {
  width: 40px;
  height: auto;
}

.credit-card .credit-card-remove {
  color: var(--primary-color);
  position: absolute;
  cursor: pointer;
  right: 0;
  padding: 5px;
  background: #e7e4e4;
  border-radius: 0px 10px 10px 0px;
  width: 50px;
  text-align: center;
  height: 66px;
  line-height: 55px;
}

.card-option.pe-6 {
  padding-right: 4rem !important;
}

@media (max-width: 991px) {
  .store-content {
    min-height: 135px;
  }
}

@media (max-width: 767px) {
  .store-content {
    min-height: auto;
  }
}

.disable .card-body .btn-link {
  color: #525b75;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  top: 8px;
}

.line-height-20 {
  line-height: 20px;
}

.table > tbody .product-header-row td:last-child {
  padding-right: 8px !important;
}

.table > tbody .product-header-row td:first-child {
  padding-left: 8px !important;
}

.card-options .form-control {
  padding: 0.25rem 1rem;
}

.add-card .form-control {
  padding: 0.01rem 0.75rem;
}

.credit-card-items {
  max-height: 300px;
  overflow: auto;
  margin-bottom: 16px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 7px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: #ececec;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 4px;
}

/* New dashboard css */
.dashboard-items {
  border: 1px solid #e3e6ed;
}

.card-item {
  border: 1px solid #e3e6ed;
}

.bullet-item.bg-primary {
  background-color: #3874ff !important;
}

.font-size-sm {
  font-size: 14px;
}

.swal2-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

.swal2-content .subtitle {
  font-size: 18px;
  font-weight: 600;
}

.swal2-content ul li {
  font-size: 16px;
  margin-bottom: 6px;
}

.store-order-table {
  margin: 16px 0 0 16px;
  max-height: 60vh;
}

.custom-swal-icon {
  width: 60px;
  height: 60px;
  margin: 28px auto 0px;
}

.custom-swal-icon .swal2-icon-content {
  font-size: 2.8rem;
}

.mapping-instructions {
  border-radius: 10px;
  padding: 16px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
    rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.select2-container--default {
  max-width: 100%;
}

.db-section .badge-phoenix {
  max-width: 50px;
  min-width: 44px;
  text-align: center;
}
