@charset "UTF-8";
:root {
  --wpcpo-error: #e2401c;
}

.wpcpo-wrapper {
  display: block;
  width: 100%;
  clear: both;
}

.wpcpo-total {
  margin: 20px 0 40px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.wpcpo-total ul {
  list-style: none;
  margin: 0;
}
.wpcpo-total ul li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.wpcpo-total ul li.wpcpo-subtotal {
  border-top: 1px solid #eee;
  padding: 10px 0;
  margin-top: 20px;
  justify-content: space-between;
}
.wpcpo-total ul li.wpcpo-subtotal.wpcpo-subtotal-0 .wpcpo-clear {
  opacity: 0;
  appearance: none;
}
.wpcpo-total ul li.wpcpo-subtotal .amount {
  margin-left: 10px;
  font-weight: 700;
}

.wpcpo-disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

.wpcpo-option.wpcpo-has-error label {
  color: var(--wpcpo-error);
}
.wpcpo-option.wpcpo-has-error .wpcpo-option-field {
  border-color: var(--wpcpo-error);
}
.wpcpo-option.wpcpo-option-image-radio .form-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #aaaaaa #eeeeee;
  margin-left: -5px;
  margin-right: -5px;
  padding-bottom: 8px;
}
.wpcpo-option.wpcpo-option-image-radio .form-row::-webkit-scrollbar {
  height: 6px;
}
.wpcpo-option.wpcpo-option-image-radio .form-row::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 3px;
}
.wpcpo-option.wpcpo-option-image-radio .form-row::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border-radius: 3px;
}
.wpcpo-option.wpcpo-option-image-radio .form-row .field-image-radio, .wpcpo-option.wpcpo-option-image-radio .form-row .field-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.wpcpo-option.wpcpo-option-image-radio .form-row label:has(input[type=radio]:checked),
.wpcpo-option.wpcpo-option-image-radio .form-row label.wpcpo-checked {
  border: 1px solid green;
}
.wpcpo-option.wpcpo-option-image-radio .form-row label:has(input[type=radio]:checked):before,
.wpcpo-option.wpcpo-option-image-radio .form-row label.wpcpo-checked:before {
  content: "✓";
  color: #ffffff;
  display: block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  background-color: green;
  text-align: center;
  font-size: 14px;
  border-radius: 24px;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  border-image: initial;
  box-sizing: border-box;
  position: absolute;
  top: -10px;
  right: -10px;
}
.wpcpo-option.wpcpo-option-image-radio .form-row label {
  width: 200px;
  flex-shrink: 0;
  text-align: center;
  padding: 10px;
  margin: 5px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  touch-action: manipulation;
}
.wpcpo-option.wpcpo-option-image-radio .form-row label img {
  display: block;
  width: 100%;
  height: auto;
}
.wpcpo-option.wpcpo-option-image-radio .form-row .wpcpo-zoom-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.wpcpo-option.wpcpo-option-image-radio .form-row .wpcpo-zoom-btn:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #333;
  border-radius: 50%;
  box-shadow: 2px 2px 0 0 #333;
  transform: rotate(-45deg);
  margin-bottom: 2px;
}

#wpcpo-zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
}
#wpcpo-zoom-modal.wpcpo-zoom-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpcpo-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: zoom-out;
}
.wpcpo-zoom-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpcpo-zoom-content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 4px;
}
.wpcpo-zoom-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 0;
  color: #333;
}
.wpcpo-option.wpcpo-option-image-checkbox .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.wpcpo-option.wpcpo-option-image-checkbox .form-row .field-image-checkbox, .wpcpo-option.wpcpo-option-image-checkbox .form-row .field-checkbox {
  display: none;
}
.wpcpo-option.wpcpo-option-image-checkbox .form-row input[type=checkbox]:checked + label {
  border: 1px solid green;
}
.wpcpo-option.wpcpo-option-image-checkbox .form-row input[type=checkbox]:checked + label:before {
  content: "✓";
  color: #ffffff;
  display: block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  background-color: green;
  text-align: center;
  font-size: 14px;
  border-radius: 0;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  border-image: initial;
  box-sizing: border-box;
  position: absolute;
  top: -10px;
  right: -10px;
}
.wpcpo-option.wpcpo-option-image-checkbox .form-row label {
  width: 25%;
  text-align: center;
  padding: 10px;
  margin: 5px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.wpcpo-option.wpcpo-option-image-checkbox .form-row label img {
  display: inline-block;
}
.wpcpo-option.wpcpo-option-color-radio .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.wpcpo-option.wpcpo-option-color-radio .form-row .field-color-radio, .wpcpo-option.wpcpo-option-color-radio .form-row .field-radio {
  display: none;
}
.wpcpo-option.wpcpo-option-color-radio .form-row input[type=radio]:checked + label {
  border: 1px solid green;
}
.wpcpo-option.wpcpo-option-color-radio .form-row input[type=radio]:checked + label:before {
  content: "✓";
  color: #ffffff;
  display: block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  background-color: green;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  border-image: initial;
  box-sizing: border-box;
  position: absolute;
  top: -10px;
  right: -10px;
}
.wpcpo-option.wpcpo-option-color-radio .form-row label {
  width: 25%;
  text-align: center;
  padding: 10px 5px;
  margin: 5px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.wpcpo-option.wpcpo-option-color-radio .form-row label > * {
  margin: 0 5px;
}
.wpcpo-option.wpcpo-option-color-radio .form-row label .label-color {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row .field-color-checkbox, .wpcpo-option.wpcpo-option-color-checkbox .form-row .field-checkbox {
  display: none;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row input[type=checkbox]:checked + label {
  border: 1px solid green;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row input[type=checkbox]:checked + label:before {
  content: "✓";
  color: #ffffff;
  display: block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  background-color: green;
  text-align: center;
  font-size: 14px;
  border-radius: 0;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  border-image: initial;
  box-sizing: border-box;
  position: absolute;
  top: -10px;
  right: -10px;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row label {
  width: 25%;
  text-align: center;
  padding: 10px 5px;
  margin: 5px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row label > * {
  margin: 0 5px;
}
.wpcpo-option.wpcpo-option-color-checkbox .form-row label .label-color {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.wpcpo-option.wpcpo-option-quantity .quantity {
  float: none !important;
}
.wpcpo-option.wpcpo-option-dimensions .wpcpo-dimensions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpcpo-option[data-logic=show] {
  display: none;
}

form.cart [name=wpcpo-hidden-quantity] {
  display: none !important;
}

.wp-picker-container .button {
  border-radius: 2px;
}
.wp-picker-container .button:before, .wp-picker-container .button:after {
  display: none !important;
}
.wp-picker-container .button.wp-picker-clear {
  font-size: 11px;
  line-height: 1;
}

.box-color-picker {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.box-image-radio, .box-image-checkbox {
  display: inline-block;
  width: 40px;
  vertical-align: middle;
}
.box-image-radio img, .box-image-checkbox img {
  width: 100%;
  height: auto;
}

/* Tippy */
.wpcpo-tippy-inner {
  padding: 5px 1px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.wpcpo-tippy-inner .wpcpo-tippy-label {
  font-weight: 700;
}

.wpcpo-tippy-inner > span {
  margin-bottom: 5px;
}

.wpcpo-tippy-inner > span:last-child {
  margin-bottom: 0;
}

.wpcpo-tippy-inner .wpcpo-tippy-image {
  display: block;
  width: 100%;
  min-width: 150px;
  max-width: 600px;
}

.wpcpo-tippy-inner .wpcpo-tippy-image img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 0 !important;
  padding: 0 !important;
}

.wpcpo-option-group-heading {
  display: block;
  width: 100%;
  font-weight: 700;
  margin: 12px 0 4px;
  padding: 4px 0;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  border-bottom: 1px solid #ddd;
  clear: both;
  flex: 0 0 100%;
}
.wpcpo-option-group-heading:first-child {
  margin-top: 0;
}

/* When image-radio contains headings, switch to wrapping layout */
.wpcpo-option.wpcpo-option-image-radio .form-row:has(.wpcpo-option-group-heading) {
  flex-wrap: wrap;
  overflow-x: visible;
}

.wpcpo-select-group-heading {
  font-style: italic;
  color: #888;
}

/*# sourceMappingURL=frontend.css.map */
