#expo-section {
  margin-bottom: 1rem;
}
#expo-section * {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.expo-required-chars {
  margin-left: 3px;
  color: red !important;
}
.expo-option-wrapper {
  position: relative;
  margin-bottom: 10px;
  display: none;
}
.expo-option-label {
  display: block;
  margin-bottom: 5px;
  width: fit-content;
  position: relative;
}
.expo-value-wrapper > input {
  min-height: fit-content !important;
}
.expo-value-wrapper > label {
  display: inline-block;
  margin-left: .5rem;
}
.expo-option-value-description {
  font-style: italic;
}
#expo-section input[type="text"],
#expo-section input[type="number"],
#expo-section textarea,
#expo-section input[type="date"],
#expo-section input[type="time"],
select {
  padding: 10px 5px;
}
#expo-section input[type="text"],
#expo-section textarea {
  width: 100%;
}
.expo-flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.expo-flex-horizontal {
  flex-direction: row;
}
.expo-flex-vertical {
  flex-direction: column;
}
.expo-flex-vertical .swatch-wrapper,
.expo-flex-vertical .button-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.expo-swatches-wrapper input[type="radio"],
.expo-swatches-wrapper input[type="checkbox"] {
  display: none;
}
.swatch-box {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.swatch-box.square {
  width: 40px;
  height: 40px;
}
.swatch-box.circle {
  border-radius: 50%;
}
.swatch-box.rectangular {
  width: 80px;
  height: 40px;
}
.swatch-wrapper > input:checked + .swatch-box {
  outline: 1px solid black;
}
.swatch-box:hover .expo-tooltip,
.button-box:hover .expo-tooltip,
.expo-option-label:hover .expo-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
.expo-tooltip {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: max-content;
  padding: 5px 10px;
  background-color: #000 !important;
  border-radius: 4px;
  color: #fff !important;
  bottom: calc(100% + 10px);
  left: calc(50%);
  transform: translateX(-50%);
  transition: all 0.2s cubic-bezier(0.5, 1, 0.25, 1);
  z-index: 999;
}
.expo-tooltip:empty{
  display: none;
}
.expo-tooltip:before {
  position: absolute;
  content: "";
  border: 8px solid transparent;
  width: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 8px solid #000;
  border-bottom: none;
}
.expo-zoom{
  width: 200px;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat ;
}
.expo-buttons-wrapper input[type="radio"],
.expo-buttons-wrapper input[type="checkbox"] {
  display: none;
}
.button-box {
  position: relative;
  display: block;
  min-width: 100px;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid black;
  cursor: pointer;
  text-align: center;
  background-color: #ffffff;
}
.button-wrapper > input:checked + .button-box {
  background-color: #000000 !important;
  color: #fff !important;
}

.expo-option-wrapper[data-option-type="dropdown"]
  .expo-option-value-description,
.expo-option-wrapper[data-option-type="swatches"]
  .expo-option-value-description,
.expo-option-wrapper[data-option-type="button"] .expo-option-value-description,
.expo-option-wrapper[data-option-type="swatches_multiple"]
  .expo-option-value-description,
.expo-option-wrapper[data-option-type="button_multiple"]
  .expo-option-value-description {
  display: none;
}
.expo-option-wrapper[data-option-type="dropdown"]
  .expo-option-value-description[data-is-default="true"],
.expo-option-wrapper[data-option-type="swatches"]
  .expo-option-value-description[data-is-default="true"],
.expo-option-wrapper[data-option-type="button"]
  .expo-option-value-description[data-is-default="true"],
.expo-option-wrapper[data-option-type="swatches_multiple"]
  .expo-option-value-description[data-is-default="true"],
.expo-option-wrapper[data-option-type="button_multiple"]
  .expo-option-value-description[data-is-default="true"] {
  display: block;
}

.expo-upload-modal {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff !important;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: 1px dashed;
}

.expo-upload-modal-actions {
  display: flex;
  gap: 1rem;
}

.expo-upload-modal-upload,
.expo-upload-modal-cancel,
.expo-open-upload-modal {
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  background-color: #fff !important;
}

.expo-extra-subtotal {
  width: 100%;
  padding: 1rem;
  border: 1px solid;
  background-color: #fff !important;
}
.expo-subtotal-price {
  font-weight: bold;
}
.expo-unit-quantity-wrapper {
  margin-top: 5px;
}
.expo-unit-quantity-wrapper input {
  width: 60px;
}
.expo-item-details-notice {
  border: 1px solid;
  padding: 5px;
}
.expo-powered-by{
  display: inline-block;
  font-size: 90% !important;
  margin-bottom: 1rem;
  color: #1f5199 !important;
  /* font-style: italic; */
}

.expo-item-total-notice{
  display: flex !important;
  justify-content: flex-end !important;
}

.expo-loading {
  display: inline-block !important;
  margin-left: 10px;
}

.expo-loading > svg {
  min-width: 20px !important;
  min-height: 20px !important;
}
