.shop_table .m3dreader-model__item--variation {
  border: 0 !important;
  min-width: 250px;
}
.shop_table .m3dreader-model__item .m3dreader-model__item--title {
  padding: 0 !important;
  text-align: left !important;
  font-size: 16px;
  color: #333;
}
.shop_table .m3dreader-model__item .m3dreader-model__variation--value {
  margin: 0 0 0 10px;
}
.shop_table .m3dreader-model__item .m3dreader-model__variation--key {
  clear: both;
}
.shop_table .m3dreader-model__item .m3dreader-model__variation--key, .shop_table .m3dreader-model__item .m3dreader-model__variation--value {
  float: left;
  font-size: 12px;
  padding: 0 !important;
}

.blockUI.blockOverlay:after {
  content: "";
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent 10%, #fff 30%, transparent);
  z-index: 2;
  position: absolute;
  opacity: 0.2;
  animation: wave 1s infinite linear;
}

.blockUI.blockOverlay:before {
  content: unset !important;
}

.blockUI.blockOverlay {
  min-height: 400px;
  overflow: hidden;
}

@keyframes wave {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
.m3dreader {
  /* ======================================================
        OPTIONS
     ====================================================== */
  /* =========================
        Dimension Component
        ========================= */
  /* Input Group */
  /* =========================
        Scale
        ========================= */
  /* =========================
        Responsive
        ========================= */
}
.m3dreader .woocommerce-notices-wrapper {
  margin-top: 50px;
}
.m3dreader .woocommerce-notices-wrapper .woocommerce-message a {
  float: right;
}
.m3dreader-canvas {
  max-height: min(600px, 90vh);
}
.m3dreader__sidebar-step {
  position: relative;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.m3dreader__sidebar-step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 11px;
  width: 1px;
  height: 100%;
  background: #e7e8ec;
}
.m3dreader__sidebar-step:last-child::after {
  display: none;
}
.m3dreader__sidebar-step-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe1e5;
  border-radius: 50%;
  color: transparent;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
}
.m3dreader__sidebar-step.is-complete .m3dreader__sidebar-step-icon {
  border-color: #e40c44;
  background: #e40c44;
  color: #fff;
}
.m3dreader__sidebar-step.is-complete strong {
  color: #17191f;
}
.m3dreader__sidebar-step.is-complete > div > span {
  color: #e40c44;
}
.m3dreader__sidebar-step.is-current .m3dreader__sidebar-step-icon {
  border-color: #e40c44;
  box-shadow: 0 0 0 3px rgba(228, 12, 68, 0.1);
}
.m3dreader__sidebar-step > div {
  min-width: 0;
}
.m3dreader__sidebar-step strong {
  display: block;
  color: #737985;
  font-size: 11px;
  font-weight: 750;
}
.m3dreader__sidebar-step > div > span {
  display: block;
  margin-top: 3px;
  color: #9ca1ab;
  font-size: 9px;
}
.m3dreader__option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.m3dreader__option {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid #e7e8ec;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  transition: 0.2s ease;
  cursor: pointer;
}
.m3dreader__option * {
  pointer-events: none;
}
.m3dreader__option:hover {
  border-color: rgba(228, 12, 68, 0.45);
  transform: translateY(-1px);
}
.m3dreader__option.is-selected {
  border-color: #e40c44;
  box-shadow: 0 0 0 1px #e40c44, 0 7px 20px rgba(228, 12, 68, 0.08);
}
.m3dreader__option-icon {
  width: 52px;
  height: 52px;
  margin-right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff0f3;
  overflow: hidden;
  border: 1px solid #e7e8ec;
  font-weight: 800;
}
.m3dreader__option-content {
  line-height: 1.5;
}
.m3dreader__option-content strong {
  display: block;
  color: #17191f;
  font-size: 13px;
}
.m3dreader__option-content small {
  display: block;
  color: #9ca1ab;
  font-size: 10px;
}
.m3dreader__check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddfe3;
  border-radius: 50%;
  color: transparent;
  font-size: 9px;
}
.m3dreader__option.is-selected .m3dreader__check {
  border-color: #e40c44;
  background: #e40c44;
  color: #fff;
}
.m3dreader .m3dreader__model-status {
  margin: 0;
}
.m3dreader .m3dreader__model-item--wrap {
  justify-content: center;
  gap: 10px;
}
.m3dreader .m3dreader__model-progress .sep {
  flex: 1;
  height: 1px;
  background: #ddd;
}
.m3dreader .m3dreader__model-progress .dot {
  margin-right: 4px;
}
.m3dreader .m3dreader__model-progress .active .dot {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.5);
    opacity: 0.55;
  }
}
.m3dreader .m3dreader__model-progress--step {
  white-space: nowrap;
}
.m3dreader .m3dreader__model-progress--step.active {
  color: var(--e-global-color-accent);
  font-weight: 600;
}
.m3dreader .m3dreader__model-progress--step.complete {
  color: #07a007;
}
.m3dreader .m3dreader__model-progress--steps {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #999;
}
.m3dreader .m3dreader__model-progress--bar {
  height: 10px;
  background: #eceef1;
  border-radius: 5px;
  overflow: hidden;
  margin: 5px 0;
}
.m3dreader .m3dreader__model-progress--bar-fill {
  height: 100%;
  width: 0;
  background: var(--e-global-color-accent);
  transition: width 0.3s ease-in-out;
  border-radius: 5px;
}
.m3dreader .m3dreader__model-prop-edit {
  margin-top: auto;
}
.m3dreader .m3dreader__preview-cart {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.m3dreader .m3dreader__preview-cart--item {
  background: #fff;
  display: flex;
  padding: 17px;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px 1px rgba(16, 24, 40, 0.04);
  border: 1px solid #eee;
}
.m3dreader .m3dreader__preview-cart--thumb {
  width: 155px;
  flex: 0 0 155px;
}
.m3dreader .m3dreader__preview-cart--thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
.m3dreader .m3dreader__preview-cart--action {
  width: 210px;
  flex: 0 0 210px;
  border-left: 1px solid #eee;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.m3dreader .m3dreader__preview-cart--content {
  width: auto;
  overflow: hidden;
}
.m3dreader .m3dreader__preview-cart--title {
  font-size: 16px;
  margin-bottom: 2px;
  display: flex;
  gap: 8px;
  word-wrap: anywhere;
}
.m3dreader .m3dreader__preview-cart--title span {
  color: #e40c44;
}
.m3dreader .m3dreader__preview-cart--heading {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.5411764706);
}
.m3dreader .m3dreader__preview-cart--sub-total {
  font-weight: 700;
  font-size: 24px;
}
.m3dreader .m3dreader__preview-cart--props {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.m3dreader .m3dreader__preview-cart--prop {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
}
.m3dreader .m3dreader__preview-cart--prop-icon {
  width: 32px;
  height: 32px;
  background: #fff7f9;
  float: left;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  color: #e40c44;
}
.m3dreader .m3dreader__preview-cart--prop-label {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  /* line-height: 1.2; */
}
.m3dreader .m3dreader__preview-cart--prop-value {
  font-weight: 500;
  color: var(--e-global-color-primary);
}
.m3dreader .m3dreader__preview-cart--qty {
  font-size: 14px;
  line-height: 1.4;
}
.m3dreader .m3dreader__preview-cart--qty span {
  background: #d8d8d8;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
}
.m3dreader .m3dreader__preview-cart--price {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}
.m3dreader .m3dreader__preview-cart--divider {
  height: 1px;
  background: #eee;
  margin: 8px 0;
}
.m3dreader .m3dreader__model-side-prop {
  display: none;
  position: fixed;
  width: 400px;
  right: -400px;
  background: #fff;
  height: 100%;
  z-index: 9999999;
  top: 0;
  padding: 30px;
  box-shadow: 0 0 5px 5px rgba(204, 204, 204, 0.3294117647);
  transition: all 0.3s ease-in-out;
}
.m3dreader .m3dreader__model-side-prop--actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}
.m3dreader .m3dreader__model-side-prop--title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  word-wrap: anywhere;
}
.toggle-side-prop .m3dreader .m3dreader__model-side-prop {
  right: 0;
  display: block;
}
.m3dreader .m3dreader__model-side-prop .form-group {
  margin-bottom: 20px;
}
.m3dreader .m3dreader__model-side-prop .form-group input {
  width: 100%;
  border-radius: 3px !important;
}
.m3dreader .m3dreader__additional-files--file-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.m3dreader .m3dreader__additional-files--file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.m3dreader .m3dreader__additional-files--file-item:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}
.m3dreader .m3dreader__additional-files--file-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f3f4f6;
  color: #4b5563;
}
.m3dreader .m3dreader__additional-files--file-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.m3dreader .m3dreader__additional-files--file-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.m3dreader .m3dreader__additional-files--file-name {
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m3dreader .m3dreader__additional-files--file-size {
  color: #9ca3af;
  font-size: 12px;
}
.m3dreader .m3dreader__additional-files--file-remove {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.m3dreader .m3dreader__additional-files--file-remove:hover {
  background: #fee2e2;
  color: #dc2626;
}
.m3dreader .m3dreader__additional-files--file-remove:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.m3dreader .m3dreader__additional-files--counter {
  font-size: 12px;
  float: right;
}
.m3dreader .m3dreader__additional-files--section:not(:last-child) {
  margin-bottom: 27px;
}
.m3dreader .m3dreader__additional-files--section-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}
.m3dreader .m3dreader__additional-files--section-icon {
  width: 18px;
  color: var(--e-global-color-primary);
  line-height: 1;
}
.m3dreader .m3dreader__additional-files--section-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.m3dreader .m3dreader__additional-files--section-title {
  margin: 0;
  color: var(--e-global-color-primary);
  gap: 4px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.m3dreader .m3dreader__additional-files--section--filename {
  color: var(--e-global-color-primary);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
  overflow-wrap: anywhere;
  color: var(--e-global-color-primary);
}
.m3dreader .m3dreader__additional-files--section--description {
  margin: 10px 0 17px;
  color: var(--m3dreader-text);
  font-size: 14px;
  line-height: 1.5;
}
.m3dreader .m3dreader__additional-files--upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 111px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.m3dreader .m3dreader__additional-files--upload.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.m3dreader .m3dreader__additional-files--upload:hover {
  background: #f7f7f9;
}
.m3dreader .m3dreader__additional-files--upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m3dreader .m3dreader__additional-files--upload-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.m3dreader .m3dreader__additional-files--private {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  color: var(--m3dreader-text);
  font-size: 14px;
  line-height: 1.4;
}
.m3dreader .m3dreader__additional-files--private-icon {
  display: flex;
  flex: 0 0 auto;
  color: #ff8a00;
}
.m3dreader .m3dreader__additional-files--private-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.m3dreader .m3dreader__additional-files--textarea {
  display: block;
  width: 100%;
  height: 136px;
  padding: 12px 12px 28px;
  resize: vertical;
  border: 1px solid #cbd4df;
  border-radius: 7px;
  outline: none;
  background: #fff;
  color: var(--m3dreader-text);
  font-size: 16px;
  line-height: 1.5;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(20, 30, 45, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.m3dreader .m3dreader__additional-files--textarea::-moz-placeholder {
  color: var(--m3dreader-placeholder);
  opacity: 1;
}
.m3dreader .m3dreader__additional-files--textarea::placeholder {
  color: var(--m3dreader-placeholder);
  opacity: 1;
}
.m3dreader .m3dreader__additional-files--textarea:focus {
  border-color: #7ea8d0;
  box-shadow: 0 0 0 2px rgba(0, 91, 169, 0.08);
}
.m3dreader .m3dreader__additional-files--textarea--counter {
  position: absolute;
  right: 1px;
  bottom: 1px;
  padding: 4px 8px 5px;
  background: #fff;
  border-radius: 0 0 6px 0;
  color: #69778c;
  font-size: 12px;
  line-height: 1;
}
.m3dreader .m3dreader__additional-files--textarea-wrap {
  position: relative;
  margin-top: 17px;
}
.m3dreader .m3dreader__action-menu {
  position: relative;
  display: inline-block;
  top: -4px;
  right: -8px;
}
.m3dreader .m3dreader__action-menu--trigger {
  border-radius: 3px;
  font-size: 16px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.m3dreader .m3dreader__action-menu--trigger:hover {
  background: #f1f3f5;
}
.m3dreader .m3dreader__action-menu--dropdown {
  position: absolute;
  top: 100%;
  right: 8px;
  min-width: 170px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin: 0;
  list-style: none;
  display: none;
  z-index: 1000;
}
.m3dreader .m3dreader__action-menu--dropdown a {
  width: 100%;
  font-weight: 500;
  padding: 2px 12px;
  border: 0;
  font-size: 12px;
  background: transparent;
  border-radius: 6px;
  text-align: left;
  display: block;
  text-decoration: none;
  color: var(--e-global-color-primary);
  line-height: 24px;
}
.m3dreader .m3dreader__action-menu--dropdown a:hover {
  background: #f5f5f5;
}
.m3dreader .m3dreader__action-menu.open .m3dreader__action-menu--dropdown {
  display: block;
}
.m3dreader-dimension__group {
  width: 100%;
}
.m3dreader-dimension__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.m3dreader-dimension__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.m3dreader-dimension__input-group {
  display: flex;
  width: 100%;
  height: 40px;
}
.m3dreader-dimension__input-group.scale-field {
  position: relative;
  padding-left: 20px;
}
.m3dreader-dimension__input-group.scale-field:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #e40c44;
}
.m3dreader-dimension__addon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0 8px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
.m3dreader-dimension__input {
  min-width: 0;
  flex: 1;
  width: 100% !important;
  padding: 0 10px !important;
  border: 1px solid #ccc !important;
  border-radius: 0 6px 6px 0 !important;
  font-size: 14px !important;
  outline: none;
}
.m3dreader-dimension__input:focus {
  border-color: #555;
}
.m3dreader-dimension__scale {
  margin-top: 24px;
}
.m3dreader-dimension__scale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.m3dreader-dimension__scale-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.m3dreader-dimension__scale-value {
  font-size: 13px;
  color: #666;
}
.m3dreader-dimension__range {
  width: 100%;
  cursor: pointer;
}
.m3dreader-dimension__range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 12px;
  color: #777;
}
@media (max-width: 600px) {
  .m3dreader-dimension__row {
    grid-template-columns: repeat(2, 1fr);
  }
}