/**
  * ==============================================
  * Animation on loading
  * ==============================================
  */
/* line 6, app/assets/stylesheets/user_site/blocks/animations/animations.scss */
.loading-animation {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -5%;
  padding: 2rem 0;
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/user_site/blocks/animations/animations.scss */
.loading-animation-js {
  background-color: white;
}

/**
  * ==============================================
  * Animation on loading: dot pulse
  * ==============================================
  */
/* line 29, app/assets/stylesheets/user_site/blocks/animations/animations.scss */
.loading-animation__dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  color: #000;
  background-color: #000;
  border-radius: 5px;
  box-shadow: 9999px 0 0 -5px #000;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

/* line 42, app/assets/stylesheets/user_site/blocks/animations/animations.scss */
.loading-animation__dot-pulse::before,
.loading-animation__dot-pulse::after {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #000;
  background-color: #000;
  border-radius: 5px;
  content: "";
}

/* line 55, app/assets/stylesheets/user_site/blocks/animations/animations.scss */
.loading-animation__dot-pulse::before {
  box-shadow: 9984px 0 0 -5px #000;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

/* line 61, app/assets/stylesheets/user_site/blocks/animations/animations.scss */
.loading-animation__dot-pulse::after {
  box-shadow: 10014px 0 0 -5px #000;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #000;
  }
  30% {
    box-shadow: 9984px 0 0 2px #000;
  }
  60%,
100% {
    box-shadow: 9984px 0 0 -5px #000;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #000;
  }
  30% {
    box-shadow: 9999px 0 0 2px #000;
  }
  60%,
100% {
    box-shadow: 9999px 0 0 -5px #000;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #000;
  }
  30% {
    box-shadow: 10014px 0 0 2px #000;
  }
  60%,
100% {
    box-shadow: 10014px 0 0 -5px #000;
  }
}

/**
  * ==============================================
  * Rotating animation
  * ==============================================
  */
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotating-right {
  to {
    transform: rotate(360deg);
  }
}
/* line 1, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-fieldset {
  margin: 0 0 13px;
  padding: 0;
  border: none;
}

/* line 7, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-legend {
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.5em;
}

/* line 15, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group {
  position: relative;
  margin-bottom: 13px;
}

/* line 20, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group:last-child {
  margin-bottom: 0;
}

/* line 24, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group_with-select {
  position: relative;
}

/* line 27, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group_with-select::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(135deg);
  content: "";
  pointer-events: none;
}

/* line 42, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-placeholder {
  position: absolute;
  top: 50%;
  left: 10px;
  margin-bottom: 0;
  padding: 0 2px;
  color: #999;
  font-weight: 400;
  font-size: 12px;
  transform: translateY(-50%);
  transition-duration: 0.3s;
  transition-property: top, left, background-color;
  pointer-events: none;
}

/* line 56, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-credit-card:has(.form-credit-card__icon-card) .form-placeholder {
  left: 40px;
}

/* line 60, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group:hover .form-placeholder, .form-placeholder.form-placeholder_moved {
  top: 0;
  left: 10px;
  z-index: 2;
  background-color: #fff;
}

/* line 68, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group.required .form-placeholder {
  padding-right: 10px;
}

/* line 71, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-group.required .form-placeholder::after {
  position: absolute;
  top: 0;
  right: 2px;
  color: red;
  font-size: 20px;
  content: "*";
}

/* line 79, app/assets/stylesheets/user_site/blocks/form/form.scss */
.theme-version-one .form-group.required .form-placeholder::after {
  font-size: 12px;
}

/* line 86, app/assets/stylesheets/user_site/blocks/form/form.scss */
input.form-control[type="text"],
input.form-control[type="password"],
input.form-control[type="date"],
input.form-control[type="email"],
input.form-control[type="number"],
input.form-control[type="search"],
input.form-control[type="tel"],
select.form-control,
textarea.form-control,
select#address_country,
select#address_state,
select#billing_address_country,
select#billing_address_state,
select#shipping_address_country,
select#shipping_address_state,
select#payment_type {
  display: flex;
  align-items: center;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 0 12px;
  color: #333;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  outline: none;
  transition: all 0.2s;
}

/* line 115, app/assets/stylesheets/user_site/blocks/form/form.scss */
input.form-control[type="text"]:focus, #user_website input.form-control[type="text"]:focus,
input.form-control[type="password"]:focus, #user_website input.form-control[type="password"]:focus,
input.form-control[type="date"]:focus, #user_website input.form-control[type="date"]:focus,
input.form-control[type="email"]:focus, #user_website input.form-control[type="email"]:focus,
input.form-control[type="number"]:focus, #user_website input.form-control[type="number"]:focus,
input.form-control[type="search"]:focus, #user_website input.form-control[type="search"]:focus,
input.form-control[type="tel"]:focus, #user_website input.form-control[type="tel"]:focus,
select.form-control:focus, #user_website select.form-control:focus,
textarea.form-control:focus, #user_website textarea.form-control:focus,
select#address_country:focus, #user_website select#address_country:focus,
select#address_state:focus, #user_website select#address_state:focus,
select#billing_address_country:focus, #user_website select#billing_address_country:focus,
select#billing_address_state:focus, #user_website select#billing_address_state:focus,
select#shipping_address_country:focus, #user_website select#shipping_address_country:focus,
select#shipping_address_state:focus, #user_website select#shipping_address_state:focus,
select#payment_type:focus, #user_website select#payment_type:focus {
  background: #fff;
  border-color: #000;
}

/* line 121, app/assets/stylesheets/user_site/blocks/form/form.scss */
.required.invalid input.form-control[type="text"], .required.invalid input.form-control[type="password"], .required.invalid input.form-control[type="date"], .required.invalid input.form-control[type="email"], .required.invalid input.form-control[type="number"], .required.invalid input.form-control[type="search"], .required.invalid input.form-control[type="tel"], .required.invalid select.form-control, .required.invalid textarea.form-control, .required.invalid select#address_country, .required.invalid select#address_state, .required.invalid select#billing_address_country, .required.invalid select#billing_address_state, .required.invalid select#shipping_address_country, .required.invalid select#shipping_address_state, .required.invalid select#payment_type {
  border-color: red !important;
}

/* line 126, app/assets/stylesheets/user_site/blocks/form/form.scss */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #333;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}

/* line 140, app/assets/stylesheets/user_site/blocks/form/form.scss */
select.form-control,
select#address_country,
select#address_state,
select#billing_address_country,
select#billing_address_state,
select#shipping_address_country,
select#shipping_address_state,
select#payment_type {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 153, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-check {
  margin-bottom: 5px;
}

/* line 156, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-check input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* line 163, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-checkbox,
.form-radio {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 20px;
  padding-left: 18px;
  color: #8c8c8c;
  font-size: 12px;
  line-height: 1.3;
}

/* line 174, app/assets/stylesheets/user_site/blocks/form/form.scss */
.shopping-basket-shipping-methods .form-checkbox, .shopping-basket-shipping-methods .form-radio {
  font-size: 12px;
}

/* line 178, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-checkbox::before, .form-checkbox::after,
.form-radio::before,
.form-radio::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* line 194, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-checkbox::before,
.form-radio::before {
  border: 1px solid #ccc;
}

/* line 198, app/assets/stylesheets/user_site/blocks/form/form.scss */
input:checked ~ .form-checkbox::after, input:checked ~ .form-radio::after {
  border: 4px solid #000;
}

/* line 204, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-radio::before, .form-radio::after {
  border-radius: 50%;
}

/* line 211, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-radio_additional::before, .form-radio_additional::after {
  content: none;
}

/* line 218, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-text-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* line 224, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-label__value {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  min-width: 46px;
  margin-right: 10px;
  padding: 2px 10px 2px 0;
  font-weight: 700;
  font-size: 13px;
  border-right: 1px solid #b2b2b2;
}

/* line 236, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-tooltip-text {
  position: relative;
  display: inline-block;
  padding: 3px;
}

/* line 241, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-tooltip-text__value {
  position: absolute;
  display: none;
  width: 250px;
  margin-top: -66px;
  margin-left: -123px;
  padding: 7px 4px;
  color: #fff;
  text-align: center;
  background-color: #192733;
  border-radius: 4px;
}

/* line 254, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-tooltip-text:hover .form-tooltip-text__value {
  display: block;
}

/* line 259, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-credit-card {
  position: relative;
}

/* line 263, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-credit-card__icon-card {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 12px;
  margin-top: -6px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  pointer-events: none;
}

/* line 274, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-credit-card__icon-card::after {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 5px;
  height: 3px;
  background-color: #fff;
  opacity: 0.8;
  content: "";
}

/* line 286, app/assets/stylesheets/user_site/blocks/form/form.scss */
input.form-control.form-credit-card__card-field[type="text"] {
  padding-left: 40px;
}

/* line 290, app/assets/stylesheets/user_site/blocks/form/form.scss */
input.form-control.form-credit-card__cvc-field[type="number"] {
  -moz-appearance: textfield;
}

/* line 293, app/assets/stylesheets/user_site/blocks/form/form.scss */
input.form-control.form-credit-card__cvc-field[type="number"]::-webkit-outer-spin-button, input.form-control.form-credit-card__cvc-field[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/* line 300, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-credit-card__month-field-wrap {
  width: 28%;
}

/* line 304, app/assets/stylesheets/user_site/blocks/form/form.scss */
.form-credit-card__year-field-wrap,
.form-credit-card__cvc-field-wrap {
  width: 36%;
}

/* line 309, app/assets/stylesheets/user_site/blocks/form/form.scss */
#instant-checkout-new-payment-type-form,
#instant-checkout-new-address-form {
  margin-top: 5px;
}
/* line 1, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-cards {
  display: flex;
  flex-wrap: wrap;
}

/* line 6, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}

@media only screen and (min-width: 992px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card {
    width: calc(33.3% - 15px);
  }
}

@media only screen and (min-width: 1200px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card {
    width: 33.3%;
    margin-right: 0;
  }
  /* line 25, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry.two-columns .product-card {
    width: 50%;
  }
  /* line 29, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry.four-columns .product-card {
    width: 25%;
  }
}

/* line 34, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card.product-card_v1 .sold-label {
  position: absolute;
  right: 20px;
  bottom: -2px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  background: red;
  border: 4px solid;
  border-radius: 50%;
}

/* line 51, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card.product-card_v1 .sold-label {
  border-color: #fff;
}

/* line 55, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card.product-card_v1 .sold-label {
  border-color: #000;
}

/* line 59, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card.product-card_v1 .sold-label .text {
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0;
}

/* line 68, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__inner {
  position: relative;
  display: block;
  padding: 10px;
  text-decoration: none;
}

/* line 74, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__inner::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

@media only screen and (min-width: 1200px) {
  /* line 74, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card__inner::after {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  /* line 87, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card:hover .product-card__inner::after {
    opacity: 1;
  }
  /* line 91, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  body:not(.dark) .product-card__inner::after {
    background-color: rgba(255, 255, 255, 0.5);
  }
  /* line 95, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  body.dark .product-card__inner::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/* line 101, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_v1 .product-card__inner::after {
  border: 1px solid #777;
}

/* line 106, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
#content_area .product-card__inner {
  text-decoration: none;
}

/* line 110, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__photo-wrap {
  position: relative;
}

/* line 113, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__photo-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
}

/* line 120, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__photo-wrap-layers {
  position: relative;
  width: fit-content;
  margin: auto;
}

/* line 125, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
#product_gallery > .Lean .product-card__photo-wrap-layers, #product_gallery > .Clean.category-container .product-card__photo-wrap-layers, #product_gallery > .Traditional .product-card__photo-wrap-layers, #product_gallery > .Square .product-card__photo-wrap-layers {
  width: calc(var(--photo-width) * 100% / var(--photo-height));
  max-width: 100%;
  overflow: hidden;
}

/* line 134, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__photo-wrap-layers img {
  position: unset !important;
  top: unset !important;
  left: unset !important;
  display: inline-block !important;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: 100%;
  transform: unset !important;
}

/* line 145, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
#product_gallery > .Traditional .product-card__photo-wrap-layers img {
  width: 100% !important;
}

/* line 149, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__photo-wrap-layers img.canvas:not(.lazyloaded) {
  background: url(https://d32wpxz89tv3uk.cloudfront.net/assets/spinner.svg) 50% 50% no-repeat;
  background-size: 75%;
  opacity: 1;
}

/* line 156, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__photo-wrap-layers img:not(:first-child) {
  position: absolute !important;
  transform: translate(-100%, 0%) !important;
}

/* line 162, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__text-data {
  margin-top: 8px;
  color: #000;
}

/* line 167, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__name {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* line 177, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__name {
  color: #fff;
}

/* line 183, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__artist-name {
  color: #fff;
}

/* line 188, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__price-wrap {
  display: flex;
  align-items: center;
  margin: 2px 0;
  font-size: 13px;
  line-height: 16px;
}

/* line 195, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__price-wrap .discounted-price, #content_area .product-card .product-card__price-wrap .product-card__price:not(.discounted) {
  margin-top: 0;
  color: #333;
  font-weight: 400;
  font-size: 16px;
}

/* line 202, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__price-wrap .discounted-price, body.dark #content_area .product-card .product-card__price-wrap .product-card__price:not(.discounted) {
  color: #fff;
}

/* line 208, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
#content_area .product-card__price {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}

/* line 214, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__pre-price-text {
  margin-right: 5px;
}

/* line 217, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__pre-price-text {
  color: #fff;
}

/* line 223, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__price.discounted {
  margin-right: 5px;
  color: red;
  text-decoration: line-through;
}

/* line 230, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
#content_area .product-card .product-card__price.discounted {
  margin-top: 0;
  color: red;
}

/* line 235, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__controls {
  position: absolute;
  right: 10px;
  bottom: 1px;
  display: flex;
  align-items: center;
  transform: translateY(50%);
}

/* line 243, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card__controls {
  background-color: #fff;
}

/* line 247, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__controls {
  background-color: #000;
}

/* line 251, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_sold .product-card__controls {
  display: none;
}

@media only screen and (min-width: 1200px) {
  /* line 235, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card__controls {
    pointer-events: none;
  }
  /* line 258, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card:hover .product-card__controls {
    pointer-events: auto;
  }
  /* line 262, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card__controls > * {
    opacity: 0;
    transition: opacity 0.2s;
  }
  /* line 266, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card:hover .product-card__controls > * {
    opacity: 1;
  }
}

/* line 273, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant {
  display: inline-flex;
  display: none;
  align-items: center;
  height: 20px;
  padding: 0 10px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  box-shadow: none;
  transition: all 0.2s ease;
}

/* line 287, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant:hover, .product-card__instant:focus {
  top: 0;
}

/* line 292, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card__instant {
  color: #000;
  background-color: #fff;
}

/* line 296, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card__instant:hover, body:not(.dark) .product-card__instant:focus {
  color: #fff;
  background-color: #000;
}

/* line 303, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__instant {
  color: #fff;
  background-color: #000;
}

/* line 307, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__instant:hover, body.dark .product-card__instant:focus {
  color: #000;
  background-color: #fff;
}

/* line 315, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__quick-view,
.product-card__instant-v2 {
  display: inline-flex;
  width: 35px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* line 326, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__quick-view svg,
.product-card__instant-v2 svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* line 332, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__quick-view:hover, .product-card__quick-view:focus, .product-card__quick-view:active,
.product-card__instant-v2:hover,
.product-card__instant-v2:focus,
.product-card__instant-v2:active {
  top: 0;
  color: #fff;
  background: none;
  box-shadow: none;
}

/* line 343, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__quick-view .icon-magnifier__inner-circle {
  opacity: 0;
}

/* line 348, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__quick-view:hover .icon-magnifier__inner-circle {
  opacity: 1;
}

/* line 354, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant-v2 {
  position: relative;
  color: #000;
}

/* line 358, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant-v2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  content: "";
}

/* line 372, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant-v2:hover {
  color: #fff;
}

/* line 375, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant-v2:hover .icon-lightning {
  transform: scale(0.75);
}

/* line 379, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__instant-v2:hover::before {
  opacity: 1;
}

/* line 385, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite {
  position: relative;
}

/* line 388, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite .submit-form-btn, #content_area .product-card__favorite .submit-form-btn {
  width: 35px;
  height: 20px;
  padding: 0;
  background: transparent;
}

/* line 396, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite.product-card__favorite_adding-animate, .product-card__favorite.product-card__favorite_removing-animate {
  pointer-events: none;
}

/* line 401, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite form {
  margin-bottom: 0;
}

/* line 405, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite * {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  /* line 410, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-card__favorite.favorited {
    display: block;
  }
}

/* line 416, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  pointer-events: none;
}

/* line 428, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite-notes {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* line 435, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite_show-note ~ .product-card__favorite-hover .product-card__favorite-notes {
  pointer-events: auto;
}

/* line 439, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite_adding-animate ~ .product-card__favorite-hover .product-card__favorite-notes, .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-notes {
  animation-name: favorite-show-notes;
  animation-duration: 2.1s;
}

@keyframes favorite-show-notes {
  0%,
99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* line 457, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite-note {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 46px;
  padding-left: 10px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  border: 1px solid #777;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

/* line 477, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card__favorite-note {
  color: #000;
  background-color: #fff;
}

/* line 482, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__favorite-note {
  color: #fff;
  background-color: #000;
}

/* line 488, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite_show-note.favorited ~ .product-card__favorite-hover .product-card__favorite-note_added,
.product-card__favorite_show-note.not-favorited ~ .product-card__favorite-hover .product-card__favorite-note_removed {
  opacity: 1;
}

/* line 493, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite-icon {
  position: relative;
  display: flex;
}

/* line 497, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_v1 .product-card__favorite_adding-animate ~ .product-card__favorite-hover .product-card__favorite-icon, .product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon {
  animation-name: favorite-move-icon;
  animation-duration: 2s;
}

/* line 503, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite-icon .favorite-svg {
  width: 19px;
  height: 19px;
  margin: auto;
  overflow: visible;
}

/* line 510, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite-icon .favorite-svg-back,
.product-card__favorite-icon .favorite-svg-front {
  transition: fill 0.2s, stroke 0.2s;
}

/* line 516, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__favorite-icon .favorite-svg-back {
  stroke: #fff;
}

/* line 520, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite.favorited ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-back {
  stroke: red;
}

/* line 524, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_v1 .product-card__favorite_adding-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-back, .product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-back {
  animation-name: favorite-repainting-icon-back-black-to-red;
  animation-duration: 2s;
}

/* line 530, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-back {
  animation-direction: reverse;
}

/* line 536, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__favorite-icon .favorite-svg-front {
  fill: #000;
}

/* line 541, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card__favorite:not(.favorited):hover ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  fill: #000;
}

/* line 545, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card__favorite:not(.favorited):hover ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  fill: #fff;
}

/* line 550, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card__favorite.favorited ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  fill: red;
}

/* line 554, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_v1 .product-card__favorite_adding-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front, .product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  animation-duration: 2s;
}

/* line 558, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body:not(.dark) .product-card_v1 .product-card__favorite_adding-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front, body:not(.dark) .product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  animation-name: favorite-repainting-icon-front-black-to-red;
}

/* line 562, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
body.dark .product-card_v1 .product-card__favorite_adding-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front, body.dark .product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  animation-name: favorite-repainting-icon-front-white-to-red;
}

/* line 567, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card_v1 .product-card__favorite_removing-animate ~ .product-card__favorite-hover .product-card__favorite-icon .favorite-svg-front {
  animation-direction: reverse;
}

@keyframes favorite-move-icon {
  25% {
    transform: translateY(-80px);
  }
  75% {
    transform: translateY(-80px);
  }
}

@keyframes favorite-repainting-icon-back-black-to-red {
  0% {
    stroke: #000;
  }
  45% {
    stroke: #000;
  }
  55% {
    stroke: red;
  }
  100% {
    stroke: red;
  }
}

@keyframes favorite-repainting-icon-front-black-to-red {
  0% {
    fill: #000;
  }
  45% {
    fill: #000;
  }
  55% {
    fill: red;
  }
  100% {
    fill: red;
  }
}

@keyframes favorite-repainting-icon-front-white-to-red {
  0% {
    fill: #fff;
  }
  45% {
    fill: #fff;
  }
  55% {
    fill: red;
  }
  100% {
    fill: red;
  }
}

/* line 637, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-card .favorite-forms-container .submit-form-btn:hover .fa-solid .fa-regular {
  transform: none;
}

@media only screen and (min-width: 768px) {
  /* line 642, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry.product-cards {
    margin-right: -15px;
  }
}

/* line 648, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-cards-with-masonry .product-card {
  opacity: 0;
  transition: opacity 0.2s;
}

@media only screen and (min-width: 768px) {
  /* line 648, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry .product-card {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}

@media only screen and (min-width: 992px) {
  /* line 648, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry .product-card {
    width: calc(33.3% - 15px);
  }
}

/* line 661, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
.product-cards-with-masonry .product-card.product-card_positioned-masonry {
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  /* line 667, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry.two-columns .product-card {
    width: calc(50% - 15px);
  }
  /* line 671, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
  .product-cards-with-masonry.four-columns .product-card {
    width: calc(25% - 15px);
  }
}

/* line 678, app/assets/stylesheets/user_site/blocks/product-card/product-card.scss */
#product_gallery #category_0 .filters-spinner {
  width: 100%;
}
@charset "UTF-8";
/* line 6, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .content-area {
  overflow-x: visible;
}

/* line 12, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-order-form-section {
  display: flex;
  flex-wrap: wrap;
  float: none;
  clear: both;
}

/* line 19, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-photos {
  background: transparent;
  border: none !important;
}

/* line 24, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .art-preview {
  height: 100%;
}

/* line 28, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .art-preview.unique-style-frame .canvas-main img.now-framed {
  border-style: solid;
}

/* line 32, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-photos-inner .art-preview {
  display: none;
}

/* line 38, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-container {
  border-radius: 0;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.25);
}

/* line 43, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-content {
  text-align: center;
}

/* line 46, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-content h2,
body[class*="user-site-products-"] .jBox-content .medium-tooltip {
  color: #000;
}

/* line 51, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-content h2 {
  margin-top: 0;
}

/* line 56, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-closeButton-box::before {
  display: none;
}

/* line 60, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-closeButton {
  top: 7px;
  right: 7px;
  border: 1px solid transparent;
}

/* line 65, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-closeButton path, body[class*="user-site-products-"] .jBox-closeButton:hover path {
  fill: #000;
}

/* line 70, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .jBox-closeButton:hover {
  border-color: #b2b2b2;
}

/* line 77, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar,
body[class*="user-site-products-"] .original-or-prints-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  /* line 77, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar,
body[class*="user-site-products-"] .original-or-prints-bar {
    flex-wrap: nowrap;
    width: 100vw;
    margin-bottom: 20px;
    margin-left: -20px;
    padding-right: 10px;
    padding-left: 20px;
    overflow-x: auto;
  }
  /* line 93, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar::-webkit-scrollbar,
body[class*="user-site-products-"] .original-or-prints-bar::-webkit-scrollbar {
    display: none;
  }
}

/* line 98, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar__item,
body[class*="user-site-products-"] .original-or-prints-bar__item {
  display: inline-flex;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 40px;
  padding: 0 15px;
  color: #222;
  font-weight: 500;
  text-decoration: none !important;
  background-color: #fff;
  border: 1px solid #ccc;
  transition: all 0.2s;
}

/* line 114, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar__item:hover,
body[class*="user-site-products-"] .original-or-prints-bar__item:hover {
  color: #222 !important;
  text-decoration: none !important;
  border-color: #ccc;
}

@media (min-width: 768px) {
  /* line 114, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar__item:hover,
body[class*="user-site-products-"] .original-or-prints-bar__item:hover {
    border-color: #1a1a1a;
  }
}

/* line 124, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #user_site_products_art_print_products_show .original-or-prints-bar__item.active,
body[class*="user-site-products-"] .original-or-prints-bar__item.active {
  color: #fff !important;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

/* line 132, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body#user_website[class*="user-site-products-"] #content_area .productable-type-select {
  height: 55px !important;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
}

/* line 142, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-name {
  color: #333;
  font-weight: bold;
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  text-transform: uppercase;
  word-break: break-word;
}

/* line 151, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-name h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.15;
}

/* line 161, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-short-description {
  margin-top: 30px;
}

/* line 167, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-short-description p,
body[class*="user-site-products-"] .product-long-description p {
  color: #000;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

/* line 174, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-short-description p:empty,
body[class*="user-site-products-"] .product-long-description p:empty {
  display: none;
}

/* line 179, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-long-description__link .fa-angles-right {
  margin-left: 5px;
  transform: rotate(90deg);
  transition: transform 0.5s;
}

/* line 185, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-long-description_opened
.product-long-description__link
.fa-angles-right {
  transform: rotate(270deg);
}

/* line 191, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-long-description__content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}

/* line 196, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-long-description__content p:first-child:not(:empty) {
  margin-top: 15px;
}

/* line 204, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .item-price-container,
body[class*="user-site-products-"] .item-price-container span.item-price {
  float: none;
  min-height: 26px;
  font-weight: 600;
  font-size: 26px;
  line-height: 26px;
}

/* line 213, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .item-price-container p {
  margin-bottom: 0;
}

/* line 218, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .item-badge-container {
  min-height: 44px;
}

/* line 222, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .AfterpayMessage {
  margin: 0 !important;
}

/* line 225, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .AfterpayMessage-text {
  font-size: 12px;
}

/* line 230, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .item-buttons {
  flex-wrap: wrap;
  float: none;
  clear: both;
  margin-top: 25px;
}

/* line 236, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .item-buttons #user_add_a_comment {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

/* line 243, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .item-buttons-wrap {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  /* line 243, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] .item-buttons-wrap {
    flex-wrap: wrap;
  }
}

/* line 252, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .quantity-field-container,
body[class*="user-site-products-"] .add-to-cart-btn-container {
  margin-right: 10px;
}

/* line 257, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .quantity-field-container {
  flex-shrink: 0;
  width: 60px;
}

/* line 261, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .quantity-field-container input[name="quantity"] {
  margin-right: 0;
  text-align: center;
}

/* line 267, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .add-to-cart-btn-container,
body[class*="user-site-products-"] .instant-checkout-btn-trigger-wrap {
  width: 50%;
  padding-top: 0;
}

/* line 272, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .add-to-cart-btn-container .btn_theme,
body[class*="user-site-products-"] .instant-checkout-btn-trigger-wrap .btn_theme {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  /* line 278, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] .add-to-cart-btn-container {
    width: calc(100% - 70px);
    margin-right: 0;
  }
  /* line 282, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] .add-to-cart-btn-container:first-child {
    width: 100%;
  }
  /* line 287, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] .instant-checkout-btn-trigger-wrap {
    width: 100%;
    margin-top: 10px;
  }
}

/* line 295, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #product_builder_tabs {
  margin-bottom: -20px;
}

/* line 299, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip,
body[class*="user-site-products-"] #product_form_container {
  /* stylelint-disable max-line-length */
  /* stylelint-enable max-line-length */
}

/* line 884, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-subheading,
body[class*="user-site-products-"] #product_form_container .product-form-subheading {
  padding-bottom: 5px;
}

/* line 889, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .size-partial .gooten-medium-options label,
body[class*="user-site-products-"] .wall-scene-tooltip .size-partial .gooten_option label,
body[class*="user-site-products-"] .wall-scene-tooltip .size-partial .gooten_option select,
body[class*="user-site-products-"] #product_form_container .size-partial .gooten-medium-options label,
body[class*="user-site-products-"] #product_form_container .size-partial .gooten_option label,
body[class*="user-site-products-"] #product_form_container .size-partial .gooten_option select {
  font-size: 14px;
}

/* line 896, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option,
body[class*="user-site-products-"] #product_form_container .product-form-options,
body[class*="user-site-products-"] #product_form_container .size-option {
  max-height: none;
  padding: 5px;
}

/* line 901, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options label,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option label,
body[class*="user-site-products-"] #product_form_container .product-form-options label,
body[class*="user-site-products-"] #product_form_container .size-option label {
  height: 100%;
  margin: 0;
}

/* line 906, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .product-sizes,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option .product-sizes,
body[class*="user-site-products-"] #product_form_container .product-form-options .product-sizes,
body[class*="user-site-products-"] #product_form_container .size-option .product-sizes {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 10px 5px 5px;
  border: 1px solid transparent;
}

/* line 913, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .product-sizes.input-checked-state,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option .product-sizes.input-checked-state,
body[class*="user-site-products-"] #product_form_container .product-form-options .product-sizes.input-checked-state,
body[class*="user-site-products-"] #product_form_container .size-option .product-sizes.input-checked-state {
  border-color: #000;
}

/* line 917, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .product-sizes span,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option .product-sizes span,
body[class*="user-site-products-"] #product_form_container .product-form-options .product-sizes span,
body[class*="user-site-products-"] #product_form_container .size-option .product-sizes span {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.33;
}

/* line 924, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .option-selected,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option .option-selected,
body[class*="user-site-products-"] #product_form_container .product-form-options .option-selected,
body[class*="user-site-products-"] #product_form_container .size-option .option-selected {
  display: none;
}

/* line 928, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options input,
body[class*="user-site-products-"] .wall-scene-tooltip .size-option input,
body[class*="user-site-products-"] #product_form_container .product-form-options input,
body[class*="user-site-products-"] #product_form_container .size-option input {
  position: absolute;
}

/* line 933, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options,
body[class*="user-site-products-"] #product_form_container .product-form-options {
  width: 33%;
}

@media only screen and (min-width: 768px) {
  /* line 933, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
  body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options,
body[class*="user-site-products-"] #product_form_container .product-form-options {
    width: 20%;
  }
}

/* line 940, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options_hide,
body[class*="user-site-products-"] #product_form_container .product-form-options_hide {
  display: none;
}

/* line 944, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options img:not(.gooten-medium-preview),
body[class*="user-site-products-"] #product_form_container .product-form-options img:not(.gooten-medium-preview) {
  width: 90px;
  min-width: auto;
  height: 42px;
  object-fit: contain;
}

/* line 951, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .gooten-wrapper,
body[class*="user-site-products-"] #product_form_container .product-form-options .gooten-wrapper {
  height: 100%;
}

/* line 955, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .gooten-medium-preview-wrap,
body[class*="user-site-products-"] #product_form_container .product-form-options .gooten-medium-preview-wrap {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

/* line 962, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .product-form-options .gooten-medium-preview,
body[class*="user-site-products-"] #product_form_container .product-form-options .gooten-medium-preview {
  width: 90px;
  pointer-events: none;
}

/* line 968, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .order-form-heading,
body[class*="user-site-products-"] #product_form_container .order-form-heading {
  font-weight: bold;
  font-size: 12px;
}

/* line 973, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .fa-circle-question,
body[class*="user-site-products-"] #product_form_container .fa-circle-question {
  text-decoration: none;
}

/* line 976, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .fa-circle-question.medium-tooltip-link,
body[class*="user-site-products-"] #product_form_container .fa-circle-question.medium-tooltip-link {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  cursor: default;
}

/* line 983, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .fa-circle-question.medium-tooltip-link:hover::before,
body[class*="user-site-products-"] #product_form_container .fa-circle-question.medium-tooltip-link:hover::before {
  color: #ccc;
}

/* line 989, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .fa-circle-question::before,
body[class*="user-site-products-"] #product_form_container .fa-circle-question::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #000;
  font-size: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.2s;
  content: "ⓘ";
}

/* line 1007, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .size-option label,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .size-option label,
body[class*="user-site-products-"] #product_form_container #sizes .size-option label,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .size-option label {
  height: var(--button-field-height, 38px);
}

/* line 1011, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .size-option input,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .size-option input,
body[class*="user-site-products-"] #product_form_container #sizes .size-option input,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .size-option input {
  position: absolute;
}

/* line 1016, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes {
  padding: 0;
  border-color: #ccc;
  transition: background-color 0.2s;
}

/* line 1021, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes .size-label,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes .size-label,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes .size-label,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes .size-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* line 1028, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes .size-label span,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes .size-label span,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes .size-label span,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes .size-label span {
  color: #a6a6a6;
  transition: color 0.2s;
}

/* line 1034, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes:hover,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes:hover,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes:hover,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes:hover {
  border-color: #000;
}

/* line 1037, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes:hover .size-label span,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes:hover .size-label span,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes:hover .size-label span,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes:hover .size-label span {
  color: #000;
}

/* line 1042, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes.input-checked-state,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes.input-checked-state,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes.input-checked-state,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes.input-checked-state {
  background-color: #000;
  border-color: transparent;
}

/* line 1046, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .product-sizes.input-checked-state .size-label span,
body[class*="user-site-products-"] .wall-scene-tooltip #greeting_card_orientation .product-sizes.input-checked-state .size-label span,
body[class*="user-site-products-"] #product_form_container #sizes .product-sizes.input-checked-state .size-label span,
body[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes.input-checked-state .size-label span {
  color: #fff;
}

/* line 1055, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .canvas-container,
body[class*="user-site-products-"] .wall-scene-tooltip .colors-container,
body[class*="user-site-products-"] .wall-scene-tooltip .finishes-container,
body[class*="user-site-products-"] .wall-scene-tooltip .medium-partial, body[class*="user-site-products-"] .wall-scene-tooltip .size-partial, body[class*="user-site-products-"] .wall-scene-tooltip .frames-partial, body[class*="user-site-products-"] .wall-scene-tooltip .greeting-card-orientations-options__items, body[class*="user-site-products-"] .wall-scene-tooltip .greeting-card-quantity-options__items,
body[class*="user-site-products-"] #product_form_container .canvas-container,
body[class*="user-site-products-"] #product_form_container .colors-container,
body[class*="user-site-products-"] #product_form_container .finishes-container,
body[class*="user-site-products-"] #product_form_container .medium-partial,
body[class*="user-site-products-"] #product_form_container .size-partial,
body[class*="user-site-products-"] #product_form_container .frames-partial,
body[class*="user-site-products-"] #product_form_container .greeting-card-orientations-options__items,
body[class*="user-site-products-"] #product_form_container .greeting-card-quantity-options__items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin: 0 -5px 15px;
}

/* line 1061, app/assets/stylesheets/user_site/blocks/product-page/../../themes/mixins.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .canvas-container:only-child,
body[class*="user-site-products-"] .wall-scene-tooltip .colors-container:only-child,
body[class*="user-site-products-"] .wall-scene-tooltip .finishes-container:only-child,
body[class*="user-site-products-"] .wall-scene-tooltip .medium-partial:only-child, body[class*="user-site-products-"] .wall-scene-tooltip .size-partial:only-child, body[class*="user-site-products-"] .wall-scene-tooltip .frames-partial:only-child, body[class*="user-site-products-"] .wall-scene-tooltip .greeting-card-orientations-options__items:only-child, body[class*="user-site-products-"] .wall-scene-tooltip .greeting-card-quantity-options__items:only-child,
body[class*="user-site-products-"] #product_form_container .canvas-container:only-child,
body[class*="user-site-products-"] #product_form_container .colors-container:only-child,
body[class*="user-site-products-"] #product_form_container .finishes-container:only-child,
body[class*="user-site-products-"] #product_form_container .medium-partial:only-child,
body[class*="user-site-products-"] #product_form_container .size-partial:only-child,
body[class*="user-site-products-"] #product_form_container .frames-partial:only-child,
body[class*="user-site-products-"] #product_form_container .greeting-card-orientations-options__items:only-child,
body[class*="user-site-products-"] #product_form_container .greeting-card-quantity-options__items:only-child {
  margin-top: 10px;
}

/* line 308, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section,
body[class*="user-site-products-"] #product_form_container section {
  margin-bottom: 20px !important;
  padding-top: 0 !important;
  overflow: initial;
  border: 1px solid #ccc;
}

/* line 314, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section .title,
body[class*="user-site-products-"] #product_form_container section .title {
  position: relative;
  left: 0 !important;
  width: 100%;
  height: 40px !important;
  margin-bottom: 0;
  background: transparent;
  border: none !important;
}

/* line 324, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section .art-store-tab-text,
body[class*="user-site-products-"] #product_form_container section .art-store-tab-text {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
  color: #333;
}

/* line 331, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section .art-store-tab-text::after,
body[class*="user-site-products-"] #product_form_container section .art-store-tab-text::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
  transition: transform 0.5s;
  content: "";
  pointer-events: none;
}

/* line 348, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section.gooten-options-tab .art-store-tab-text,
body[class*="user-site-products-"] #product_form_container section.gooten-options-tab .art-store-tab-text {
  color: #999;
}

/* line 354, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section.active .art-store-tab-text::after,
body[class*="user-site-products-"] #product_form_container section.active .art-store-tab-text::after {
  transform: rotate(315deg);
}

/* line 359, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section:not(#greeting_card_message) .art-store-tab-label,
body[class*="user-site-products-"] #product_form_container section:not(#greeting_card_message) .art-store-tab-label {
  position: absolute;
  top: -2px;
  left: 10px;
  padding: 0 5px;
  color: #9a9898;
  font-size: 14px;
  line-height: initial;
  background-color: #fff;
  transform: translateY(-50%);
}

/* line 371, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section .art-store-tab-current-value, body[class*="user-site-products-"] .wall-scene-tooltip section#greeting_card_message .art-store-tab-label,
body[class*="user-site-products-"] #product_form_container section .art-store-tab-current-value,
body[class*="user-site-products-"] #product_form_container section#greeting_card_message .art-store-tab-label {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-weight: 600;
  font-size: 14px;
}

/* line 381, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section .styles-partial,
body[class*="user-site-products-"] #product_form_container section .styles-partial {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

/* line 387, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section .art-store-tab-content-area,
body[class*="user-site-products-"] #product_form_container section .art-store-tab-content-area {
  padding: 0 20px;
  border: none;
  border-top: 1px solid transparent;
}

/* line 393, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip section.active .art-store-tab-content-area,
body[class*="user-site-products-"] #product_form_container section.active .art-store-tab-content-area {
  border-top-color: #ccc;
}

/* line 398, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .wall-scene-tooltip,
body[class*="user-site-products-"] #product_form_container .wall-scene-tooltip {
  margin: 0 !important;
  border: none;
}

/* line 402, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip .wall-scene-tooltip .finishes-container,
body[class*="user-site-products-"] #product_form_container .wall-scene-tooltip .finishes-container {
  margin: 0;
}

/* line 408, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes #sizes_dynamic,
body[class*="user-site-products-"] #product_form_container #sizes #sizes_dynamic {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* line 414, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .size-help,
body[class*="user-site-products-"] #product_form_container #sizes .size-help {
  margin-top: 5px;
  padding: 0 5px;
}

/* line 418, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .size-help__asterisk,
body[class*="user-site-products-"] #product_form_container #sizes .size-help__asterisk {
  color: #f00;
}

/* line 422, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .size-help p,
body[class*="user-site-products-"] #product_form_container #sizes .size-help p {
  color: #333;
  font-size: 12px;
}

/* line 428, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .change-crop-size,
body[class*="user-site-products-"] #product_form_container #sizes .change-crop-size {
  padding: 0 5px;
}

/* line 432, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .art-store-tab-size-icon,
body[class*="user-site-products-"] #product_form_container #sizes .art-store-tab-size-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  color: #000;
  transform: translateY(-50%);
  opacity: 0.4;
  transition: opacity 0.2s;
}

/* line 442, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .art-store-tab-size-icon::after,
body[class*="user-site-products-"] #product_form_container #sizes .art-store-tab-size-icon::after {
  position: absolute;
  top: -23px;
  left: 50%;
  padding-right: 5px;
  padding-left: 5px;
  color: #9a9898;
  font-size: 13px;
  background-color: #fff;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  content: "Crop";
}

/* line 457, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .art-store-tab-size-icon:hover,
body[class*="user-site-products-"] #product_form_container #sizes .art-store-tab-size-icon:hover {
  opacity: 1;
}

/* line 460, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes .art-store-tab-size-icon:hover::after,
body[class*="user-site-products-"] #product_form_container #sizes .art-store-tab-size-icon:hover::after {
  opacity: 1;
}

/* line 467, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes.gooten-options-tab .art-store-tab-size-icon,
body[class*="user-site-products-"] #product_form_container #sizes.gooten-options-tab .art-store-tab-size-icon {
  display: none;
}

/* line 471, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #sizes.gooten-options-tab .size-partial .row,
body[class*="user-site-products-"] .wall-scene-tooltip #sizes.gooten-options-tab #sizes_dynamic .gooten_option,
body[class*="user-site-products-"] #product_form_container #sizes.gooten-options-tab .size-partial .row,
body[class*="user-site-products-"] #product_form_container #sizes.gooten-options-tab #sizes_dynamic .gooten_option {
  width: 100%;
}

/* line 479, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #styles .finishing,
body[class*="user-site-products-"] #product_form_container #styles .finishing {
  min-height: auto;
}

/* line 483, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .wall-scene-tooltip #styles .print_options_container,
body[class*="user-site-products-"] #product_form_container #styles .print_options_container {
  margin-bottom: 15px;
}

/* line 490, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #size-picker-tooltip-content .product-sizes {
  padding: 0;
  border-color: #ccc;
  transition: background-color 0.2s;
}

/* line 495, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #size-picker-tooltip-content .product-sizes:hover {
  border-color: #000;
}

/* line 498, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #size-picker-tooltip-content .product-sizes:hover .size-label span {
  color: #000;
}

/* line 504, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #size-picker-tooltip-content .product-sizes.input-checked-state {
  background-color: #000;
  border-color: transparent;
}

/* line 508, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #size-picker-tooltip-content .product-sizes.input-checked-state .size-label span {
  color: #fff;
}

/* line 514, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #greeting_orientation_section {
  padding: 10px 0;
}

/* line 518, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] #greeting_card_message #user_add_a_comment {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

/* line 526, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 3px;
}

/* line 535, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination > *,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 4px;
  padding: 0;
  font-size: 12px;
  font-style: normal;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s;
}

/* line 550, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .current,
body[class*="user-site-products-"] .product-builder-tabs .pagination a:not(.next_page, .previous_page),
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .current,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination a:not(.next_page, .previous_page) {
  border: 1px solid #ccc;
}

/* line 555, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .current,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .current {
  color: #808080;
  background-color: #fff;
}

/* line 560, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination a:not(.next_page, .previous_page),
body[class*="user-site-products-"] .wall-scene-tooltip .pagination a:not(.next_page, .previous_page) {
  color: #fff !important;
  font-weight: 600;
  background: #ccc;
}

/* line 565, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination a:not(.next_page, .previous_page):hover,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination a:not(.next_page, .previous_page):hover {
  background: #727272;
}

/* line 570, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .next_page,
body[class*="user-site-products-"] .product-builder-tabs .pagination .previous_page,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .next_page,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .previous_page {
  position: relative;
  margin: 0;
  color: transparent !important;
  background: transparent;
  border: none;
}

/* line 578, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .next_page.disabled,
body[class*="user-site-products-"] .product-builder-tabs .pagination .previous_page.disabled,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .next_page.disabled,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .previous_page.disabled {
  display: none;
}

/* line 582, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .next_page::after,
body[class*="user-site-products-"] .product-builder-tabs .pagination .previous_page::after,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .next_page::after,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .previous_page::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #b2b1b1;
  border-right: 1px solid #b2b1b1;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.2s;
  content: "";
  pointer-events: none;
}

/* line 596, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .next_page:hover::after,
body[class*="user-site-products-"] .product-builder-tabs .pagination .previous_page:hover::after,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .next_page:hover::after,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .previous_page:hover::after {
  border-color: #000;
}

/* line 601, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-builder-tabs .pagination .previous_page::after,
body[class*="user-site-products-"] .wall-scene-tooltip .pagination .previous_page::after {
  transform: translate(-50%, -50%) rotate(225deg);
}

/* line 608, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body[class*="user-site-products-"] .product-summary-wrapper {
  float: none;
  margin-bottom: 45px;
}

@media only screen and (max-width: 60.062em) {
  /* line 608, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body[class*="user-site-products-"] .product-summary-wrapper {
    padding-left: 0;
  }
}

/* line 617, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body.theme-version-one[class*="user-site-products-"] #product_form_container section .product-form-options {
  width: 33.3%;
}

/* line 622, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body.dark[class*="user-site-products-"] #product_form_container section .art-store-tab-text {
  color: var(--color-poduct-page-2);
}

/* line 628, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary__additional-info {
  display: flex;
  gap: 10px;
}

/* line 633, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary__additional-info__tooltip_content p {
  margin-top: 15px;
  margin-bottom: 0;
  color: var(--sl-tooltip-color);
  font-size: var(--sl-tooltip-font-size);
}

/* line 640, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary__additional-info__tooltip_content p:first-child {
  margin-top: 0;
}

/* line 645, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website[class*="user-site-products-"] .product-summary .product-summary__additional-info__tooltip_content > p span {
  color: unset;
  font-size: unset;
  font-family: unset;
  line-height: unset;
}

/* line 657, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
:root {
  --color-poduct-page-1: #fff;
  --color-poduct-page-2: #ffa61e;
  --color-poduct-page-3: #ffffff80;
  --color-poduct-page-4: #161719;
}

/* line 666, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-buttons p {
  color: var(--color-poduct-page-1);
}

/* line 670, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-buttons .favorite-product button.save-to-favorites {
  box-shadow: none;
}

/* line 675, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .social-icons-bar {
  border-top-color: var(--color-poduct-page-3);
}

/* line 680, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .social-shareable img {
  filter: invert(1);
}

/* line 684, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .social-shareable p {
  color: var(--color-poduct-page-1);
}

/* line 689, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .section-container.auto > section > .content {
  background: transparent;
}

/* line 694, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .art-store-tab-content-area {
  border-right: none;
  border-bottom: none;
  border-left: none;
}

/* line 700, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .art-store-tab-content-area.product-summary-wrapper {
  border-top: none;
}

@media only screen and (max-width: 767px) {
  /* line 700, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #user_website.dark[class*="user-site-products-"] #content_area .art-store-tab-content-area.product-summary-wrapper {
    padding-left: 0;
  }
}

/* line 711, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section p.title, #user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section.active p.title {
  background: transparent;
  border: none !important;
}

/* line 715, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section p.title a, #user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section.active p.title a {
  height: 100%;
  background: none;
}

/* line 720, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section p.title:hover, #user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section.active p.title:hover {
  border: none !important;
}

/* line 729, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section.active p.title a span {
  border-bottom: none;
}

/* line 738, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section:not(.active) p.title:hover {
  background: transparent;
}

/* line 745, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section#sizes .size-option .product-sizes .size-label {
  outline: none;
}

/* line 750, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section .input-checked-state {
  border-color: var(--color-poduct-page-1);
  outline: none;
}

/* line 754, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #content_area .build-product-form div.section-container section .input-checked-state span {
  color: var(--color-poduct-page-1);
  border-radius: 5px;
}

/* line 762, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-summary span,
#user_website.dark[class*="user-site-products-"] #item_review li {
  color: var(--color-poduct-page-3);
}

/* line 767, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-summary h5,
#user_website.dark[class*="user-site-products-"] .original-or-prints-bar h5,
#user_website.dark[class*="user-site-products-"] .product-form-subheading span,
#user_website.dark[class*="user-site-products-"] .art-print-product form .product-option-categories label,
#user_website.dark[class*="user-site-products-"] .product-summary .item-price {
  color: var(--color-poduct-page-1);
}

/* line 775, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-summary .item-price.discounted-price {
  color: #f00;
}

/* line 779, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .gooten-mediums .medium-tooltip-link {
  background-image: none;
}

/* line 783, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-sizes:hover span,
#user_website.dark[class*="user-site-products-"] .size-label:hover span,
#user_website.dark[class*="user-site-products-"] #mediums div.product-sizes:hover span,
#user_website.dark[class*="user-site-products-"] .print-options:hover span {
  color: var(--color-poduct-page-1);
  text-shadow: none;
}

/* line 791, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #prev_next_btns_bar_container a {
  text-decoration: none;
}

/* line 794, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #prev_next_btns_bar_container a:hover {
  text-decoration: underline;
}

/* line 799, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #user_add_a_comment textarea {
  padding: 20px !important;
  font-size: 15px !important;
}

/* line 804, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .pgwSlideshow {
  background: var(--color-poduct-page-4);
}

/* line 809, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-long-description .main-link {
  color: #ffffff80;
}

/* line 812, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-long-description .main-link:hover, #user_website.dark[class*="user-site-products-"] .product-long-description .main-link:focus, #user_website.dark[class*="user-site-products-"] .product-long-description .main-link:active {
  color: var(--color-poduct-page-2);
}

/* line 821, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .original-or-prints-bar__item {
  color: #fff;
  background-color: transparent;
  border-color: #4d4d4d;
}

/* line 826, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .original-or-prints-bar__item:hover {
  color: #fff !important;
}

@media (min-width: 768px) {
  /* line 826, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #user_website.dark[class*="user-site-products-"] .original-or-prints-bar__item:hover {
    border-color: #fff;
  }
}

/* line 834, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .original-or-prints-bar__item.active {
  color: #222 !important;
  background-color: #fff;
  border-color: #fff;
}

/* line 843, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container section {
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 846, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container section.active .art-store-tab-content-area {
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 850, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container section .art-store-tab-text::after {
  border-color: var(--color-poduct-page-1);
}

/* line 855, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container section:not(.gooten-options-tab, #greeting_card_message)
.art-store-tab-label {
  color: var(--color-poduct-page-1);
  background-color: var(--color-poduct-page-4);
}

/* line 861, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container .product-sizes {
  background: transparent;
}

/* line 867, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .product-sizes,
#user_website.dark[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes {
  border-color: rgba(255, 255, 255, 0.7);
}

/* line 870, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .product-sizes:hover,
#user_website.dark[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes:hover {
  border-color: var(--color-poduct-page-1);
}

/* line 873, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .product-sizes:hover .size-label span,
#user_website.dark[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes:hover .size-label span {
  color: var(--color-poduct-page-1);
}

/* line 879, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .product-sizes.input-checked-state,
#user_website.dark[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes.input-checked-state {
  background-color: var(--color-poduct-page-1);
}

/* line 882, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .product-sizes.input-checked-state .size-label span,
#user_website.dark[class*="user-site-products-"] #product_form_container #greeting_card_orientation .product-sizes.input-checked-state .size-label span {
  color: var(--color-poduct-page-4);
}

/* line 889, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .size-help p {
  color: var(--color-poduct-page-3);
}

/* line 893, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] #product_form_container #sizes .art-store-tab-size-icon {
  color: var(--color-poduct-page-1);
}

/* line 900, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-builder-tabs .pagination .current {
  color: #fff !important;
  background-color: transparent;
}

/* line 905, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-builder-tabs .pagination a:not(.next_page, .previous_page) {
  color: var(--color-poduct-page-4) !important;
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}

/* line 910, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-builder-tabs .pagination a:not(.next_page, .previous_page):hover {
  background-color: var(--color-poduct-page-1);
  border-color: var(--color-poduct-page-1);
}

/* line 918, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .product-builder-tabs .pagination .next_page:hover::after,
#user_website.dark[class*="user-site-products-"] .product-builder-tabs .pagination .previous_page:hover::after {
  border-color: var(--color-poduct-page-1);
}

/* line 924, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .recently-visited-heading,
#user_website.dark[class*="user-site-products-"] .related-products-heading {
  background: var(--color-poduct-page-4);
}

/* line 929, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .related-products.slick-initialized,
#user_website.dark[class*="user-site-products-"] .recently-visited.slick-initialized {
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 933, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .related-products.slick-initialized .slick-arrow,
#user_website.dark[class*="user-site-products-"] .recently-visited.slick-initialized .slick-arrow {
  background: var(--color-poduct-page-4);
}

/* line 936, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#user_website.dark[class*="user-site-products-"] .related-products.slick-initialized .slick-arrow svg,
#user_website.dark[class*="user-site-products-"] .recently-visited.slick-initialized .slick-arrow svg {
  color: var(--color-poduct-page-1);
}

/* line 944, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.dark[class*="user-site-products-"] .product-short-description p,
.dark[class*="user-site-products-"] .product-long-description p {
  color: var(--color-poduct-page-3);
}

/* line 952, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
div.product-sizes img {
  background: none;
}

/* line 956, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section img {
  width: 100%;
  outline: none;
}

/* line 961, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
form.build-product-form span.form-label {
  font-weight: normal;
}

/* line 965, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#item_buttons .add-to-cart-btn-container,
#item_buttons .quantity-field-container {
  padding-top: 0;
}

/* line 970, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#item_buttons .quantity-field-container input {
  height: var(--field-height, 40px);
  font-size: 14px;
}

/* line 975, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary span.item-price {
  display: block;
  font-weight: bold;
}

/* line 980, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#style_finishes_section {
  margin-top: 0;
}

/* line 984, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.theme-version-three .product-sizes,
#mediums div.product-sizes,
#sizes div.product-sizes,
#styles div.product-sizes,
#greeting_card_orientation div.product-sizes,
#greeting_card_message div.product-sizes,
#frames div.product-sizes {
  position: relative;
}

/* line 994, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#styles .art-store-tab-content-area {
  padding: 0;
}

/* line 998, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.greeting-card-orientations-options {
  margin-bottom: 1.5em;
}

/* line 1002, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.greeting-card-orientations-options-title {
  margin-bottom: 0.3em;
}

/* line 1006, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.greeting-card-quantity-options-title {
  margin-bottom: 0.3em;
}

/* line 1010, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary-inner {
  display: flex;
}

@media only screen and (max-width: 767px) {
  /* line 1010, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-summary-inner {
    justify-content: center;
  }
}

/* line 1018, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area div.columns.finishes-container,
.content-area div.columns.print-options {
  margin-top: 10px;
}

/* line 1023, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area div.columns.finishes-container,
.content-area div#sizes_dynamic.columns,
.content-area div#print_options_container.columns {
  padding-right: 0;
}

/* line 1029, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-form-container {
  padding-top: 5px;
}

/* line 1033, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-long-description {
  padding-top: 10px;
}

/* line 1037, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.build-product-form label {
  font-size: 12px;
}

/* line 1041, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.print-options span {
  color: #686868;
}

/* line 1045, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-sizes:hover span,
.size-label:hover span,
#mediums div.product-sizes:hover span,
.print-options:hover span {
  color: #333;
  text-shadow: 0 0 0.5px black;
}

/* line 1053, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
form.build-product-form .order-form-heading {
  font-weight: normal;
}

/* line 1057, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#prev_next_btns_bar_container {
  display: block;
  margin-top: 15px;
}

/* line 1062, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#prev_next_btns_bar_container a {
  text-decoration: underline;
}

/* line 1066, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-form-subheading span {
  font-weight: normal;
}

/* line 1070, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section .option-selected {
  z-index: 1;
  display: none;
}

/* line 1075, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section.input-checked-state .option-selected {
  position: absolute;
  top: 20%;
  left: 38%;
  display: block;
}

/* line 1082, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section.input-checked-state .option-selected i {
  font-size: 12px;
}

/* line 1086, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section.input-checked-state .option-selected i.fa-circle {
  font-size: 18px;
}

/* line 1090, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section.input-checked-state .option-selected i.fa-check {
  line-height: 18px;
}

/* line 1094, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area .original-or-prints-bar a.submit-form-btn.arrow-box {
  text-decoration: none;
}

/* line 1098, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area .original-or-prints-bar a.submit-form-btn.arrow-box.active {
  color: #000;
  outline: none;
}

@media (max-width: 767px) {
  /* line 1104, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .original-or-prints-bar ~ .standard-product-info {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 1110, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#mediums .product-form-options {
  width: 33.3%;
}

/* line 1114, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.price-with-automatic-discount {
  display: inline-flex;
}

/* line 1118, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.price-with-automatic-discount .item-price_origin {
  margin-left: 15px;
}

/* line 1122, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.price-with-automatic-discount .discounted-price-help {
  margin-left: 5px;
  font-size: 20px;
}

/* line 1127, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary-inner .total {
  flex-wrap: wrap;
  text-align: right;
}

/* line 1132, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary-inner .total .total-label {
  margin-right: auto;
  padding-right: 15px;
  font-weight: 600;
}

/* line 1138, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area .product-long-description a {
  color: #666;
}

@media only screen and (min-width: 40.063em) {
  /* line 1143, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-summary-inner .total {
    text-align: left;
  }
}

@media only screen and (min-width: 58.75em) {
  /* line 1149, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body.theme-version-one #product_form_container#product_form_container {
    padding-left: 20px;
  }
  /* line 1153, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #prev_next_btns_bar_container {
    display: block;
    float: right;
    margin-top: 0;
  }
  /* line 1159, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .content-area div.columns.finishes-container,
.content-area div.columns.print-options {
    margin-top: 0;
  }
  /* line 1164, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .prev-next-button-bar.wrap {
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (min-width: 75em) {
  /* line 1171, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .jumbo .prev-next-button-bar.wrap {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 1176, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .jumbo .product-photos {
    margin-right: 32px;
  }
}

@media only screen and (min-width: 85em) {
  /* line 1182, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body.theme-version-one #content_area > .wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
  }
  /* line 1188, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .choose-crop-size {
    text-align: left;
  }
  /* line 1192, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .see-on-wall-link {
    text-align: left;
  }
  /* line 1196, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  div.medium-option-section:hover a.medium-tooltip-link {
    display: block;
  }
  /* line 1200, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  body.theme-version-one .product-photos {
    width: 700px;
  }
  /* line 1204, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .main-product-display #paper_preview {
    max-width: 650px;
  }
  /* line 1208, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .main-product-display .metal-preview .product-inner-container,
div.art-store div.wall-peel-preview .product-inner-container {
    max-width: 650px;
    max-height: 650px;
  }
  /* line 1214, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  div.art-store div#wall_peel_preview .product-inner-container {
    max-width: 680px;
    max-height: 680px;
  }
  /* line 1219, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  div.art-store .main-product-display .product-inner-container,
.main-product-display .frame-medium {
    max-width: 650px;
    max-height: 650px;
  }
  /* line 1225, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  div.art-store
.main-product-display
.original-art-preview
.product-inner-container {
    display: initial;
  }
  /* line 1232, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .main-product-display .canvas-wrap-overflowed,
.main-product-display .canvas-main-overflowed img,
.main-product-display .canvas-left-overflowed img,
.main-product-display .canvas-top-overflowed img {
    max-width: 650px;
    max-height: 650px;
    overflow: hidden;
  }
  /* line 1241, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .main-product-display .canvas-overflow-shade {
    max-width: 650px;
    max-height: 650px;
  }
  /* line 1246, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .main-product-display .canvas-wrap,
.main-product-display .canvas-wrap-border {
    max-width: 650px;
    max-height: 650px;
    overflow: hidden;
  }
  /* line 1253, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .main-product-display .canvas-main img,
.main-product-display .canvas-top img,
.main-product-display .canvas-left img,
.main-product-display .canvas-main-border img,
.main-product-display .canvas-top-border img,
.main-product-display .canvas-left-border img {
    max-width: 620px;
    max-height: 620px;
    overflow: hidden;
  }
  /* line 1264, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  div.main-product-display
div#canvas_wrap_overflowed_new_preview
div.canvas-main {
    max-width: 620px;
    max-height: 620px;
  }
}

/* line 1272, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.art-store {
  padding-right: 0;
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  /* line 1278, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-buttons {
    flex-wrap: wrap;
  }
  /* line 1282, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .social-buttons.social-icons-bar {
    padding-right: 0;
  }
}

/* main styles for larger screens */
@media only screen and (min-width: 58.75em) {
  /* line 1289, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .row.art-print-product,
.row.standard-product-info {
    width: 510px;
  }
  /* line 1294, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #product_form_container {
    padding-top: 25px;
  }
}

/* end styles for larger screens */
/* begin CONTENT AREA ********************************/
/* line 1303, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.crumbtrail,
.content-area div.art-store div.crumbtrail {
  margin-bottom: 10px;
  padding-right: 0;
  padding-bottom: 0;
  font-weight: 300;
  border: none;
}

/* line 1312, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.crumbtrail .active-page {
  word-break: break-word;
}

/* line 1316, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-photos {
  padding: 0;
}

/* line 1320, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area a.medium-tooltip-link:link,
.content-area a.medium-tooltip-link:visited {
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (min-width: 58.75em) {
  /* line 1327, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-photos {
    padding: 20px 20px 20px 0;
    border: none;
  }
}

/* end CONTENT AREA ********************************/
/* line 1335, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.tooltip-video p:last-child {
  margin-bottom: 0;
}

/* line 1339, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
form.build-product-form [data-section=""] > section p.title {
  color: #d0d0d0;
  font-weight: bold;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
}

/* line 1347, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.art-store div#product_form_container {
  border-left: none;
}

/* line 1351, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
div.art-store div.headline {
  padding-right: 7px;
}

/* line 1355, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
div.art-store div.headline span {
  font-size: 0.5em;
}

/* line 1359, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
div.art-store div.headline h1 {
  margin-bottom: 0;
}

/* line 1363, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-sizes {
  border-radius: 0;
}

/* Theme v3 stuff */
/* line 1369, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.social-shareable {
  align-content: center;
  margin-right: auto;
  margin-left: auto;
  color: #777;
  font-weight: normal;
  font-size: 13px;
  font-style: normal;
  line-height: 12px;
  /* identical to box height, or 92% */
  text-align: center;
}

/* line 1383, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.twitter img {
  height: 19px;
  margin: 0 10px;
}

/* line 1388, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.pinterest img {
  width: 17px;
  height: 22px;
  margin: 0 10px;
}

/* line 1394, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.facebook img {
  width: 14px;
  height: 24px;
  margin: 0 10px;
}

/* line 1400, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
}

/* line 1406, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons svg {
  width: auto;
  height: 36px;
  color: #000;
}

/* line 1411, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body.dark .product-buttons svg {
  color: #fff;
}

/* line 1416, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons #remove_product_favorite svg {
  color: #f00;
}

/* line 1420, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area .product-buttons {
  margin: 5px 0 0;
}

/* line 1423, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.content-area .product-buttons .btn-container {
  margin-bottom: 0;
}

/* line 1428, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons p {
  color: #666;
  font-weight: normal;
  font-size: 12px;
  font-style: normal;
  line-height: 12px;
  text-align: center;
}

/* line 1436, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons p br {
  display: none;
}

@media only screen and (max-width: 576px) {
  /* line 1441, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-buttons p br {
    display: inherit;
  }
}

/* line 1448, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons .btn-container {
  max-width: 50%;
  height: 90px;
}

/* line 1453, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.see-on-scene-btn-wrapper svg {
  height: 38px;
}

/* line 1457, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons .favorite-product.favorited {
  display: block;
}

/* line 1461, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons a,
.product-buttons button {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* line 1467, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#content_area.content-area .product-buttons a, #content_area.content-area .product-buttons button {
  padding: 0;
  text-decoration: none;
}

/* line 1473, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-button__icon,
.product-button__description {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 1481, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-button__icon {
  height: 60px;
}

/* line 1485, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons .favorite-product button,
.content-area a.see-on-wall-btn {
  background-color: transparent;
  border: none;
}

/* line 1491, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-buttons .favorite-product form {
  padding: 0;
}

/* line 1502, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.email-friend a:hover,
.wall-preview a:hover,
.live-preview a:hover,
.favorite-product button:hover,
.favorite-product a:hover,
.see-on-wall-link a.see-on-wall-btn:hover,
.see-on-scene-btn-wrapper a:hover {
  top: 0;
}

@media (min-width: 768px) {
  /* line 1507, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .email-friend a .product-button__icon,
.wall-preview a .product-button__icon,
.live-preview a .product-button__icon,
.favorite-product button .product-button__icon,
.favorite-product a .product-button__icon,
.see-on-wall-link a.see-on-wall-btn .product-button__icon,
.see-on-scene-btn-wrapper a .product-button__icon {
    opacity: 0.6;
    transition: all 0.2s;
    will-change: transform;
  }
  /* line 1514, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .email-friend a:hover .product-button__icon,
.wall-preview a:hover .product-button__icon,
.live-preview a:hover .product-button__icon,
.favorite-product button:hover .product-button__icon,
.favorite-product a:hover .product-button__icon,
.see-on-wall-link a.see-on-wall-btn:hover .product-button__icon,
.see-on-scene-btn-wrapper a:hover .product-button__icon {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* line 1522, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product_form_container {
  font-style: normal;
}

/* line 1526, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary {
  padding-top: 0;
}

/* line 1530, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary h5,
.product-summary span,
.original-or-prints-bar h5 {
  display: inline;
  margin: 0;
  color: #333;
  font-weight: normal;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
  letter-spacing: 0;
  text-transform: none;
}

/* line 1544, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.item-price-container {
  display: inline-flex;
  float: right;
  margin-top: -1px;
  padding-top: 0;
  /* identical to box height */
  color: #333;
  font-weight: bold;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  /* line 1544, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .item-price-container {
    justify-content: center;
  }
}

/* line 1563, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.item-price-container .price-with-automatic-discount {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -1px;
}

/* line 1571, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary .item-price-container {
  display: flex;
  text-align: right;
}

/* line 1576, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary .item-price-container .admin-question-tooltip {
  text-align: left;
}

/* line 1580, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#change_crop_size_large_screens {
  padding-bottom: 0;
}

/* line 1584, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#sizes_dynamic #change_crop_size_small_screens a,
#sizes_dynamic #change_crop_size_large_screens a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1rem;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: black;
  border: 2px solid #000;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1603, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#sizes_dynamic #change_crop_size_small_screens a {
  width: 70%;
}

@media screen and (max-width: 420px) {
  /* line 1608, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #sizes_dynamic #change_crop_size_small_screens a {
    width: calc(100% - 10px);
  }
}

/* line 1613, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#sizes_dynamic #change_crop_size_small_screens a:hover,
#sizes_dynamic #change_crop_size_small_screens a:focus,
#sizes_dynamic #change_crop_size_large_screens a:hover,
#sizes_dynamic #change_crop_size_large_screens a:focus {
  top: 0;
  color: #000;
  background: #fff;
}

/* line 1622, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#change_crop_size_small_screens .fa-rotate-right::before,
#change_crop_size_large_screens .fa-rotate-right::before {
  content: none;
}

/* line 1627, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#content_area #local_cart_btn.add-to-cart {
  padding: 0;
  letter-spacing: 0.5px;
}

/* line 1631, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
body:not(.theme-version-three) #content_area #local_cart_btn.add-to-cart {
  height: 40px;
}

/* line 1636, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-short-description,
.jbox-content,
.jbox-tooltip,
.jbox-content.standard-tooltip {
  color: #666;
  font-weight: normal;
  font-size: 13px;
  font-style: normal;
  line-height: 30px;
  text-align: justify;
}

/* line 1648, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.jbox-content,
.jbox-tooltip,
.jbox-content.standard-tooltip {
  color: #333;
}

/* line 1654, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.art-store-tab-text {
  color: #d0d0d0;
  font-weight: bold;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
}

/* line 1662, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.art-store-tab-text span {
  text-transform: none;
}

/* line 1666, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.section-container.auto > section > .title a {
  color: #a6a6a6;
  font-weight: normal;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
  background: white;
}

/* line 1675, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#content_area section.active p a {
  padding-bottom: 0;
  /* identical to box height */
  color: #333;
  font-weight: normal;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
}

/* line 1686, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-option-section,
.medium-height,
#styles div.product-sizes,
.product-form-options {
  padding: 0;
  background: transparent;
  outline: none;
}

/* line 1695, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#sizes_dynamic > div > label > .medium-option-section {
  min-width: unset;
}

/* line 1699, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.build-product-form .input-checked-state {
  background: transparent;
  outline: none;
}

/* line 1704, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#content_area .art-store-tab-content-area {
  border: none;
}

/* line 1708, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.image-enlarge-container a.fancybox-button {
  color: #666;
  font-weight: normal;
  font-size: 10px;
  font-style: normal;
  line-height: 18px;
}

/* line 1716, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.image-enlarge-container a.fancybox-button:hover {
  color: #333;
}

/* line 1720, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
form.build-product-form section a.art-store-tab-text {
  border: none;
}

/* line 1724, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.medium-tooltip-link {
  top: -10px;
}

/* line 1728, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.art-print-product {
  width: 100%;
  margin-top: 0;
}

/* line 1733, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-summary > .columns {
  padding-right: 0;
}

/* line 1737, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.art-store-tab-content-area {
  padding-left: 0;
}

/* line 1741, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#mediums p a,
.art-store-tab-content-area,
.section-container.auto > section > .content {
  padding-left: 0;
}

/* line 1747, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.product-long-description a {
  text-transform: uppercase;
  text-decoration: underline;
}

/* line 1752, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#greeting_card_item_review li {
  padding-bottom: 7px;
  color: #333;
  font-weight: bold;
  font-size: 12.5px;
  list-style-type: initial;
}

/* line 1760, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#greeting_card_item_review li b {
  font-weight: normal;
}

/* line 1764, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.change-crop-size p a i.fa-solid {
  font-family: "Raleway", sans-serif;
}

/* line 1768, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.favorite-forms-container .submit-form-btn .fa-solid,
.favorite-forms-container .submit-form-btn .fa-regular {
  color: #ccc;
  transition: 0.2s;
}

/* line 1774, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.favorite-forms-container .submit-form-btn:hover {
  top: 0;
}

/* line 1778, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.favorite-forms-container .submit-form-btn:hover .fa-solid,
.favorite-forms-container .submit-form-btn:hover .fa-regular {
  transform: scale(1.4);
}

@media only screen and (max-width: 1200px) {
  /* line 1784, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  section#mediums {
    overflow: auto;
  }
}

/* border top is added by foundation in section */
@media only screen and (max-width: 700px) {
  /* line 1792, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #greeting_card_orientation {
    margin-bottom: 5px !important;
    border: 1px solid #ccc;
  }
  /* line 1797, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #greeting_card_message {
    border: 1px solid #ccc;
  }
}

/* IPHONE S/SE */
@media only screen and (min-width: 250px) and (max-width: 359px) {
  /* line 1804, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-form-options,
.medium-option-section,
.frames-tab div.product-sizes {
    margin-right: 0;
  }
  /* line 1810, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .art-store-tab-content-area,
.section-container.auto > section > .content {
    padding-left: 15px;
  }
  /* line 1815, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .medium-option-section img {
    height: 40px;
  }
}

/* GALAXY S5 */
@media only screen and (min-width: 360px) and (max-width: 374px) {
  /* line 1822, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-form-options,
.medium-option-section,
.frames-tab div.product-sizes {
    margin-right: 0;
  }
  /* line 1828, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .art-store-tab-content-area,
.section-container.auto > section > .content {
    padding-right: 0;
    padding-left: 13px;
  }
  /* line 1834, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .medium-option-section img {
    height: 47px;
  }
}

/* IPHONE6/7/8/X */
@media only screen and (min-width: 375px) and (max-width: 409px) {
  /* line 1841, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-form-options,
.medium-option-section,
.frames-tab div.product-sizes {
    margin-right: 0;
  }
  /* line 1847, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .art-store-tab-content-area,
.section-container.auto > section > .content {
    padding-right: 0;
    padding-left: 20px;
  }
  /* line 1853, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .medium-option-section img {
    height: 47px;
  }
}

/* PIXEL 2 PIXEL 2XL IPHONE6/7/8plus */
@media only screen and (min-width: 410px) and (max-width: 1199px) {
  /* line 1860, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .product-form-options,
.medium-option-section,
.frames-tab div.product-sizes {
    margin-right: 0;
  }
  /* line 1866, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .art-store-tab-content-area,
.section-container.auto > section > .content {
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (min-width: 1200px) {
  /* line 1874, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #mediums .medium-partial {
    display: flex;
    flex-wrap: wrap;
  }
  /* line 1879, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .frames-tab div.product-sizes {
    margin-right: 15px;
  }
  /* line 1883, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .art-store-tab-content-area,
.section-container.auto > section > .content {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 1889, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  .medium-option-section img {
    height: 42px;
  }
  /* line 1893, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
  #product_builder_tabs {
    padding-bottom: 0;
  }
}

/* line 1898, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.global-form-container input.btn_theme,
.global-form-container input.btn_theme:focus {
  font-size: 13px;
}

/* line 1903, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.build-product-form:not([data-productable-type="art_print_product"])
#local_cart_btn,
.build-product-form:not([data-productable-type="art_print_product"])
#instant-checkout-btn-trigger {
  height: 40px;
}

/* line 1910, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
.related-products-container {
  margin-bottom: 0;
}

/* Adjust product page form "Email a friend" */
/* line 1916, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#share_product_form {
  padding: 40px;
}

/* line 1920, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#share_product_form .global-form-container {
  padding-right: 0;
}

/* line 1924, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#share_product_form form {
  margin-right: -0.833rem;
  margin-bottom: 0;
}

/* line 1929, app/assets/stylesheets/user_site/blocks/product-page/product-page.scss */
#share_product_form form .row {
  max-width: none;
}
/* line 5, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  color: #1a1a1a;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
}

/* line 18, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout .flex-container_with-gutters {
  margin-right: -5px;
  margin-left: -5px;
}

/* line 22, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout .flex-container_with-gutters .cell {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 28, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout .shopping-basket-shipping-methods:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

/* line 395, app/assets/stylesheets/user_site/blocks/instant-checkout/../../themes/mixins.scss */
.instant-checkout input:-webkit-autofill,
.instant-checkout input:-webkit-autofill:hover,
.instant-checkout input:-webkit-autofill:focus,
.instant-checkout textarea:-webkit-autofill,
.instant-checkout textarea:-webkit-autofill:hover,
.instant-checkout textarea:-webkit-autofill:focus,
.instant-checkout select:-webkit-autofill,
.instant-checkout select:-webkit-autofill:hover,
.instant-checkout select:-webkit-autofill:focus {
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}

/* line 35, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout_open {
  transform: translateX(0);
}

/* line 39, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  border-bottom: 1px solid #e6e6e6;
}

/* line 47, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__header-text {
  position: relative;
  padding-top: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

/* line 53, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__header-text::after {
  position: absolute;
  top: 50%;
  right: -23px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(https://d32wpxz89tv3uk.cloudfront.net/assets/user_site/instant-checkout/icon-black.png) no-repeat center/100%;
  content: "";
}

/* line 66, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__close-button {
  position: relative;
  width: 35px;
  height: 35px;
  padding: 0;
  background-color: #fff;
  border: none;
  border-radius: 50%;
}

/* line 75, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__close-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translate(-75%, -50%) rotate(45deg);
  content: "";
  pointer-events: none;
}

/* line 88, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__close-button:hover {
  top: 0;
  background-color: #e6e6e6;
}

/* line 94, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-height: calc(100% - 60px);
}

@media (orientation: landscape) and (max-width: 1000px) {
  /* line 94, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
  .instant-checkout__inner {
    display: block;
    overflow: auto;
  }
}

/* line 106, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block,
.instant-checkout__footer {
  padding: 20px 25px;
}

/* line 111, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block {
  flex-grow: 1;
  padding-bottom: 10px;
  overflow-y: auto;
}

/* line 116, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block::-webkit-scrollbar {
  width: 5px;
}

/* line 120, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3);
}

/* line 124, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}

/* line 128, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block #confirm_purchase {
  display: none;
}

/* line 132, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__scroll-block .shopping-basket-shipping-methods {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  background: none;
  border: none;
}

/* line 142, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__shipping-info p {
  margin-bottom: 8px;
  padding: 5px;
  padding-left: 9px;
  color: #030303;
  font-weight: 600;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
  background-color: #f0f0f0;
  border-radius: 5px;
}

/* line 155, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__footer {
  border-top: 1px solid #e6e6e6;
}

/* line 159, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__cart-total-error {
  margin-top: 10px;
  color: #b42318;
  font-size: 12px;
  line-height: 1.4;
}

/* line 166, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount {
  position: relative;
  display: flex;
  flex-shrink: 0;
  max-height: 24px;
  margin-bottom: 6px;
  padding-top: 25px;
  overflow: hidden;
  transition: max-height 0.5s, margin-bottom 0.5s;
}

/* line 167, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount form {
  display: flex;
  width: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

/* line 184, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount.instant-checkout__discount-open {
  max-height: 70px;
  margin-bottom: 20px;
}

/* line 189, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount.instant-checkout__discount-open .instant-checkout__discount-visible::before {
  top: 2px;
  transform: rotate(-225deg);
}

/* line 195, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount.instant-checkout__discount-open form {
  opacity: 1;
}

/* line 201, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-visible {
  position: absolute;
  top: 0;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* line 210, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-visible span {
  padding-right: 16px;
}

/* line 214, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-visible::before {
  position: absolute;
  top: 5px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: rotate(-45deg);
  transition: transform 0.5s;
  content: "";
}

/* line 228, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-input {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  background: none !important;
}

/* line 238, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount .instant-checkout__discount-input {
  margin: 0;
}

/* line 243, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
input.instant-checkout__discount-input[type="text"] {
  height: 40px;
}

/* line 247, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-btn {
  top: 0 !important;
  height: 40px;
  margin: 0;
  padding: 10px 30px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #000;
  border: none;
  border-radius: 0;
  outline: none;
}

/* line 263, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-btn.loading {
  color: transparent;
  pointer-events: none;
}

/* line 267, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-btn.loading:hover {
  top: 0;
}

/* line 271, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__discount-btn.loading::before {
  position: absolute;
  top: 10px;
  left: 50%;
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  animation: spin-btn 1s infinite linear;
  content: "";
}

/* line 286, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .instant-checkout__discount-btn, .theme-version-two .instant-checkout__discount-btn {
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
}

/* line 294, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__cart-total {
  margin-bottom: 13px;
}

/* line 298, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__cart-total-item {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
}

/* line 304, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__cart-total-sum {
  font-size: 16px;
}

/* line 308, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__cart-total-value {
  margin-left: 3px;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
}

/* line 315, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__btn-submit,
.instant-checkout__btn-submit[disabled] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 20px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  background-color: black;
  border: none;
  box-shadow: none;
}

/* line 332, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .instant-checkout__btn-submit:hover, .theme-version-one .instant-checkout__btn-submit[disabled]:hover {
  background-color: black;
}

/* line 337, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .instant-checkout__btn-submit, .theme-version-two .instant-checkout__btn-submit, .theme-version-one .instant-checkout__btn-submit[disabled], .theme-version-two .instant-checkout__btn-submit[disabled] {
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
}

/* line 344, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one.dark .instant-checkout__btn-submit, .theme-version-two.dark .instant-checkout__btn-submit, .theme-version-one.dark .instant-checkout__btn-submit[disabled], .theme-version-two.dark .instant-checkout__btn-submit[disabled] {
  color: white;
  background-color: black;
}

/* line 349, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one.dark .instant-checkout__btn-submit:hover, .theme-version-one.dark .instant-checkout__btn-submit:focus, .theme-version-two.dark .instant-checkout__btn-submit:hover, .theme-version-two.dark .instant-checkout__btn-submit:focus, .theme-version-one.dark .instant-checkout__btn-submit[disabled]:hover, .theme-version-one.dark .instant-checkout__btn-submit[disabled]:focus, .theme-version-two.dark .instant-checkout__btn-submit[disabled]:hover, .theme-version-two.dark .instant-checkout__btn-submit[disabled]:focus {
  color: white;
  background-color: black;
}

/* line 357, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__btn-submit-note {
  margin-top: 5px;
  color: #333;
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0;
  text-align: center;
}

/* line 366, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__btn-submit-note a {
  color: #00e;
  text-decoration: underline;
}

/* line 370, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__btn-submit-note a:hover {
  text-decoration: none;
}

/* line 376, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  background-color: #000;
  border: none;
  box-shadow: none;
}

/* line 391, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout-btn:disabled {
  cursor: not-allowed;
}

/* line 395, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .instant-checkout-btn, .theme-version-two .instant-checkout-btn {
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
}

/* line 401, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .instant-checkout-btn:hover, .theme-version-one .instant-checkout-btn:focus, .theme-version-two .instant-checkout-btn:hover, .theme-version-two .instant-checkout-btn:focus {
  position: relative;
  top: 1px;
  color: #fff;
  background-color: #000;
}

/* line 409, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .instant-checkout-btn:disabled, .theme-version-two .instant-checkout-btn:disabled {
  position: static;
  background-color: #000;
  cursor: not-allowed;
}

/* line 416, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one .original-or-prints-bar ~ :not(.art-print-product) .instant-checkout-btn, .theme-version-two .original-or-prints-bar ~ :not(.art-print-product) .instant-checkout-btn {
  height: 59px;
}

/* line 421, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one.dark .body-container .instant-checkout-btn, .theme-version-two.dark .body-container .instant-checkout-btn {
  color: #000;
  background-color: #fff;
}

/* line 426, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one.dark .body-container .instant-checkout-btn:hover, .theme-version-one.dark .body-container .instant-checkout-btn:focus, .theme-version-two.dark .body-container .instant-checkout-btn:hover, .theme-version-two.dark .body-container .instant-checkout-btn:focus {
  color: #000;
  background-color: #fff;
}

/* line 432, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-one.dark .body-container .instant-checkout-btn:disabled, .theme-version-two.dark .body-container .instant-checkout-btn:disabled {
  background-color: #fff;
}

/* line 437, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
[data-product-buying-page]:not(.art-print-products-show) .instant-checkout-btn {
  width: 100%;
}

/* line 441, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-two [data-product-buying-page]:not(.art-print-products-show) .instant-checkout-btn {
  height: 57px;
}

/* line 445, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.theme-version-three [data-product-buying-page]:not(.art-print-products-show) .instant-checkout-btn {
  height: 50px;
}

/* line 450, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout-btn__icon {
  flex-shrink: 0;
  width: 20px;
  height: 17px;
  margin-left: 3px;
}

/* line 456, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout-btn__icon .icon-lightning {
  width: 100%;
  height: 100%;
}

/* line 463, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.website-body .instant-checkout-btn-form {
  display: none;
}

/* line 467, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.drawer__footer .instant-checkout-btn-form {
  margin-bottom: 10px;
}

/* line 472, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout-btn-trigger-wrap {
  clear: both;
  padding-top: 13px;
}

/* line 476, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
body.theme-version-one .instant-checkout-btn-trigger-wrap, body.theme-version-two .instant-checkout-btn-trigger-wrap {
  padding-top: 0;
  padding-bottom: 5px;
}

/* line 482, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
body.theme-version-one .product-summary .instant-checkout-btn-trigger-wrap, body.theme-version-two .product-summary .instant-checkout-btn-trigger-wrap {
  padding-bottom: 0;
}

/* line 489, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__note p {
  color: #333;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
}

/* line 498, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
body.instant-checkout-enabled #item_buttons .quantity-field-container input {
  margin-bottom: 0;
}

/* line 503, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__disclaimer-text {
  font-size: 12px;
}

/* line 507, app/assets/stylesheets/user_site/blocks/instant-checkout/instant-checkout.scss */
.instant-checkout__disclaimer-link {
  color: #000;
  text-decoration: underline;
}
/* line 1, app/assets/stylesheets/user_site/blocks/totals/totals.scss */
.totals {
  padding: 16px 0 10px;
}

/* line 5, app/assets/stylesheets/user_site/blocks/totals/totals.scss */
.tax, .subtotal {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

/* line 12, app/assets/stylesheets/user_site/blocks/totals/totals.scss */
.total {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

/* line 19, app/assets/stylesheets/user_site/blocks/totals/totals.scss */
.total__value {
  font-size: 24px;
  font-weight: 500;
  margin-left: 5px;
}
/* line 1, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell {
  padding-bottom: 3rem;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

/* line 7, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell form {
  margin-bottom: 0;
}

/* line 12, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__header {
  padding: 40px 0;
  color: #9a9a9a;
  border-bottom: 1px solid #e6e6e6;
}

/* line 17, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__header {
  color: #fff;
}

/* line 22, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  border: 2px solid #F26222BF;
  border-radius: 50%;
}

/* line 33, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__header-icon-img {
  width: 22px;
  height: 22px;
  filter: hue-rotate(180deg);
}

/* line 39, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__header-text {
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 20px;
}

/* line 45, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__header-link {
  color: #f26222;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

/* line 53, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__header-link:hover, .upsell__header-link:focus {
  color: #f26222;
  border-bottom-color: #f26222;
}

/* line 60, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product {
  padding: 40px 0;
  border-bottom: 1px solid #e6e6e6;
}

/* line 65, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-head-text {
  margin-bottom: 40px;
  color: #333;
  font-size: 20px;
  text-align: center;
}

/* line 71, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-head-text {
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  /* line 76, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
  .upsell__product-img-wrap {
    margin-right: -5px;
  }
}

@media only screen and (max-width: 767px) {
  /* line 76, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
  .upsell__product-img-wrap {
    margin-bottom: 1rem;
  }
}

/* line 86, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-img-wrap.gooten-image-wrap {
  position: relative;
}

/* line 89, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-img-wrap.gooten-image-wrap img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: unset;
  top: unset;
  position: unset;
}

/* line 99, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-img-wrap.gooten-image-wrap img:not(:first-child) {
  position: absolute;
  transform: translate(-100%, 0%);
}

/* line 105, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-content {
  text-align: left;
}

/* line 109, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

/* line 115, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-title {
  color: #fff;
}

/* line 120, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-prices {
  display: flex;
}

/* line 124, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-price {
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 20px;
}

/* line 130, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-price_discounted {
  margin-right: 5px;
  color: #f26222;
  text-decoration: line-through;
}

/* line 136, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-price_new {
  font-size: 18px;
}

/* line 140, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-description {
  margin-bottom: 20px;
}

/* line 143, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-description p {
  color: #fff;
}

/* line 148, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-totals {
  border-top: 1px solid #e6e6e6;
}

/* line 151, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-totals {
  color: #fff;
}

/* line 156, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 20px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: black;
  border: none;
  border: 2px solid #000;
  box-shadow: none;
  transition: all 0.2s ease;
}

/* line 177, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-btn_buy-now:hover, .upsell__product-btn_buy-now:focus {
  color: #000;
  background-color: #fff;
}

/* line 183, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-btn_buy-now {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

/* line 188, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-btn_buy-now:hover, body.dark .upsell__product-btn_buy-now:focus {
  color: #fff;
  background-color: #000;
}

/* line 196, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-btn_to-order-confirmation {
  height: 38px;
  margin-top: 15px;
  color: #000;
  font-weight: 400;
  font-size: 12px;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #000;
  opacity: 0.55;
  transition: opacity 0.2s;
}

/* line 208, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-btn_to-order-confirmation:hover, .upsell__product-btn_to-order-confirmation:focus {
  opacity: 1;
}

/* line 214, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-note {
  margin-top: 10px;
  font-size: 12px;
}

/* line 218, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
.upsell__product-note p {
  line-height: 1.33;
}

/* line 221, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.dark .upsell__product-note p {
  color: #fff;
}

/* line 227, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 234, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body p {
  color: #333;
  font-weight: 400;
  letter-spacing: 0;
}

/* line 240, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body .upsell__product-content p {
  text-align: left;
}

/* line 244, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body .upsell__product-to-order-confirmation:focus {
  color: #000;
  background-color: #fff;
}

/* line 249, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body .upsell__countdown {
  font-size: initial;
  text-align: center;
}

/* line 253, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body .upsell__countdown span {
  font-weight: bold;
}

/* line 259, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body .upsell__product-expired-offer p {
  color: red;
  font-weight: bold;
  font-size: large;
  text-transform: uppercase;
}

/* line 266, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages #website_body_container .website-body .upsell__product-expired-offer .hidden {
  display: none;
}

/* line 272, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.user-site-upsell-pages.dark #website_body_container .website-body p {
  color: #fff;
}

/* line 276, app/assets/stylesheets/user_site/blocks/upsell/upsell.scss */
body.theme-version-one.user-site-upsell-pages {
  background-color: #fff;
}
/* Categories for all themes */
/* line 3, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  /* line 8, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards.two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  /* line 14, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards.three-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 992px) {
  /* line 14, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards.three-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  /* line 24, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards.four-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 992px) {
  /* line 24, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards.four-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 1200px) {
  /* line 24, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards.four-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* line 39, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card {
  aspect-ratio: 1 / 1;
}

@supports not (aspect-ratio: 1/1) {
  /* line 39, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card {
    position: relative;
    padding-top: 100%;
  }
}

/* line 48, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__inner {
  position: relative;
  height: 100%;
  padding: 20px;
}

@supports not (aspect-ratio: 1/1) {
  /* line 48, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

/* line 61, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__warning-message {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background-color: #fff;
}

/* line 73, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__warning-message span {
  padding: 5px 10px;
  color: inherit;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

/* line 84, app/assets/stylesheets/user_site/blocks/category/category.scss */
body.dark .category-card__warning-message {
  color: #fff;
  background-color: #000;
}

/* line 90, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 97, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #727272;
}

@media only screen and (min-width: 1200px) {
  /* line 97, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card__hover {
    border-color: #727272;
    transition: all 0.2s ease;
  }
  /* line 109, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card:hover .category-card__hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: #000;
  }
}

/* line 116, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__name {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 2 * 20px + 4px);
  padding: 5px 10px;
  color: #333;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  transform: translateX(-50%);
}

@media only screen and (min-width: 1200px) {
  /* line 116, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card__name {
    color: rgba(51, 51, 51, 0.5);
    transition: all 0.2s ease;
  }
  /* line 137, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card:hover .category-card__name {
    color: #333;
  }
}

/* line 142, app/assets/stylesheets/user_site/blocks/category/category.scss */
body.dark .category-card__name {
  color: #fff;
  background-color: #000;
}

@media only screen and (min-width: 1200px) {
  /* line 142, app/assets/stylesheets/user_site/blocks/category/category.scss */
  body.dark .category-card__name {
    color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 1200px) {
  /* line 151, app/assets/stylesheets/user_site/blocks/category/category.scss */
  body.dark .category-card:hover .category-card__name {
    color: #fff;
  }
}

/* Categories for Lean theme */
/* line 160, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-cards-lean {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  /* line 160, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards-lean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 992px) {
  /* line 160, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-cards-lean {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* line 175, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean {
  position: relative;
  border: 1px solid #ccc;
}

/* line 179, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean::before, .category-card-lean::after {
  position: absolute;
  width: 0;
  height: 0;
  border: 1px solid transparent;
  opacity: 0;
  transition: width 0.4s, height 0.4s, opacity 0s;
  transition-delay: 0s;
  transition-timing-function: linear;
  content: "";
  pointer-events: none;
}

/* line 193, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean::before {
  top: -1px;
  left: -1px;
  border-top-color: #000;
  border-right-color: #000;
}

/* line 200, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean::after {
  right: -1px;
  bottom: -1px;
  border-bottom-color: #000;
  border-left-color: #000;
}

/* line 208, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean:hover::before, .category-card-lean:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 1;
}

/* line 215, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean:hover::before {
  transition-delay: 0s, 0.4s, 0s;
}

/* line 219, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean:hover::after {
  transition-delay: 0.8s, 1.2s, 0.8s;
}

/* line 225, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__inner {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 95%;
  text-decoration: none;
}

/* line 233, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__image {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: cover;
}

/* line 243, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__hover {
  position: absolute;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background-color: transparent;
}

@media only screen and (min-width: 1200px) {
  /* line 243, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean__hover {
    transition: all 0.5s;
  }
  /* line 253, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean:hover .category-card-lean__hover {
    padding-top: calc(95% - 2px);
    background-color: rgba(255, 255, 255, 0.7);
  }
}

/* line 260, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__inner-warning-message {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1b1f;
  background-color: #fff;
}

/* line 272, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card__inner-warning-message span {
  color: inherit;
  font-size: 12px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

/* line 280, app/assets/stylesheets/user_site/blocks/category/category.scss */
body.dark .category-card__inner-warning-message {
  color: #fff;
  background-color: #000;
}

/* line 286, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__name-wrap {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  display: flex;
}

@media only screen and (min-width: 1200px) {
  /* line 286, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean__name-wrap {
    transition: transform 0.5s, bottom 0.5s;
  }
  /* line 296, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean:hover .category-card-lean__name-wrap {
    bottom: 50%;
    transform: translateY(50%);
  }
}

/* line 303, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 35px);
  margin-right: auto;
  margin-left: auto;
  padding: 4px 10px;
  color: #1a1b1f;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
}

@media only screen and (min-width: 1200px) {
  /* line 303, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean__name {
    transition: font-size 0.5s, background-color 0.5s;
    transition-delay: 0s, 0.2s;
    will-change: font-size, background-color;
  }
  /* line 325, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean:hover .category-card-lean__name {
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0);
    transition: font-size 0.5s, background-color 0s;
    transition-delay: 0s;
  }
  /* line 332, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean__name.category-card-lean__name_without-font-size-transition {
    transition: font-size 0s, background-color 0.5s;
  }
  /* line 336, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean:hover .category-card-lean__name.category-card-lean__name_without-font-size-transition {
    transition: font-size 0s, background-color 0s;
  }
}

/* line 342, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  /* line 342, app/assets/stylesheets/user_site/blocks/category/category.scss */
  .category-card-lean__gallery {
    display: none;
  }
}

/* line 356, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-item-trigger {
  position: relative;
  z-index: 1;
  display: flex;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  padding: 3px;
  background-color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 100%;
  cursor: default;
  opacity: 0;
  transition: padding 0.2s, border 0.2s, opacity 0.5s, transform 0s;
  transition-delay: 0s, 0s, 0s, 0.5s;
  pointer-events: none;
}

/* line 373, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-item-trigger:hover {
  padding: 0;
  border: none;
}

/* line 378, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean:hover .category-card-lean__gallery-item-trigger {
  transform: translateY(34px);
  opacity: 1;
  transition: padding 0.2s, border-width 0.2s, opacity 0.5s, transform 0.5s;
  transition-delay: 0s, 0s, 0.4s, 0.4s;
  pointer-events: auto;
}

/* line 387, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-item-trigger::before {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  content: "";
}

/* line 396, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-item-trigger-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 100%;
}

/* line 404, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}

/* line 416, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-item-trigger:hover ~ .category-card-lean__gallery-image {
  opacity: 1;
}

/* line 421, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__gallery-quantity-others {
  z-index: 1;
  height: 30px;
  margin-left: -10px;
  padding-right: 5px;
  padding-left: 8px;
  font-size: 14px;
  line-height: 30px;
  cursor: default;
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s, background-color 0.1s;
  transition-delay: 0.5s, 0s, 0s;
  pointer-events: none;
}

/* line 435, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean:hover .category-card-lean__gallery-quantity-others {
  background-color: #fff;
  transform: translateY(34px);
  opacity: 1;
  transition-delay: 0.4s, 0.4s, 0.8s;
}

/* line 443, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view {
  position: absolute;
  right: 20px;
  bottom: -14px;
  display: none;
  width: 40px;
  height: 30px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  transition-delay: 0s;
}

/* line 455, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view::before, .category-card-lean__quick-view::after {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid transparent;
  transform: translate(-7px, -7px);
  transition: background-color 0.2s;
  content: "";
}

/* line 466, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view::before {
  top: calc(50% + 2px);
  left: 50%;
  border-bottom-color: #1a1a1a;
  border-left-color: #1a1a1a;
}

/* line 473, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view::after {
  top: calc(50% - 2px);
  left: calc(50% + 4px);
  border-color: #1a1a1a;
  transition: background-color 0.2s;
}

/* line 480, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view:hover::after {
  background-color: #1a1a1a;
}

/* line 484, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean:hover .category-card-lean__quick-view {
  opacity: 1;
  transition-delay: 0.5s;
}

/* line 490, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view-name {
  position: absolute;
  top: 50%;
  right: 40px;
  padding-left: 10px;
  color: #1a1b1f;
  font-size: 10px;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.2s;
  pointer-events: none;
}

/* line 507, app/assets/stylesheets/user_site/blocks/category/category.scss */
.category-card-lean__quick-view:hover .category-card-lean__quick-view-name {
  opacity: 1;
  pointer-events: auto;
}

/* line 513, app/assets/stylesheets/user_site/blocks/category/category.scss */
.content-area .Clean .product-container .product-photo-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}
/* line 1, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section {
  margin: 20px 0;
  padding: 5px 16px 16px;
  border: 1px solid #ccc;
}

/* line 6, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section form {
  margin: 0;
}

/* line 10, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__checkbox-container {
  display: flex;
  align-items: center;
}

/* line 14, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__checkbox-container .form-check {
  width: fit-content;
  max-width: 100%;
  margin-top: -16px;
  margin-bottom: 0;
  padding: 0 10px;
  background-color: #fff;
}

/* line 23, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__checkbox-container label {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* line 28, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__checkbox-container label p {
  margin: -3px 6px;
  color: black;
  letter-spacing: 0;
}

/* line 36, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__product-price {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

/* line 41, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__product-price span {
  float: left;
  font-weight: bold;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: right;
  transition: 0.3s;
}

/* line 52, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__product-info-container {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-top: 10px;
}

/* line 58, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__product-info-container img {
  max-width: 100px;
}

/* line 63, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__product-info-container .order-bump-section__product-description .price {
  font-size: 14px;
}

/* line 67, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.instant-checkout__order-bump-section .order-bump-section__product-info-container .order-bump-section__product-description p {
  margin-bottom: 5px;
  color: black;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0;
}

/* line 78, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.order-bump-section__product-img-wrap.gooten-image-wrap {
  position: relative;
}

/* line 81, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
.order-bump-section__product-img-wrap.gooten-image-wrap img:not(:first-child) {
  position: absolute;
  transform: translate(-100%, 0%);
}

/* line 87, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section {
  margin-bottom: 10px;
  padding: 10px;
  border: 2px dashed black;
}

/* line 92, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section form {
  display: none;
}

/* line 96, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__checkbox-container {
  display: flex;
  align-items: center;
}

/* line 100, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__checkbox-container label {
  display: flex;
  width: 75%;
}

/* line 104, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__checkbox-container label p {
  margin: -1px 6px;
  color: black;
  font-size: 12px;
}

/* line 110, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__checkbox-container label span.custom.checkbox {
  display: none;
}

/* line 114, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__checkbox-container label input {
  position: inherit;
  margin: 0% 1%;
  visibility: visible;
}

/* line 122, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__product-price {
  position: absolute;
  top: 60px;
  right: 15px;
  display: inline-flex;
  color: black;
}

/* line 129, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__product-price span {
  float: left;
  height: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: right;
  transition: 0.3s;
}

/* line 140, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__product-info-container {
  display: flex;
  flex-flow: row wrap;
  margin: 10px 0 0;
}

/* line 145, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__product-info-container img {
  max-width: 100px;
}

/* line 150, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__product-info-container .order-bump-section__product-img-wrap:not(.gooten-image-wrap) img:not(.gooten-image-wrap) {
  padding-right: 10px;
}

/* line 156, app/assets/stylesheets/user_site/blocks/bump-section/bump-section.scss */
div.shopping-cart .order-review-column .common-checkout__order-bump-section .order-bump-section__product-info-container .order-bump-section__product-description p {
  margin-bottom: 0;
  color: black;
  font-size: 13px;
}
/* line 1, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.bb-accordion {
  height: 63vh;
  background-color: #fff;
}

/* line 5, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.bb-accordion__wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0 -5px;
  height: 100%;
}

/* line 12, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.bb-accordion__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-right: 5px;
  padding-left: 5px;
  transition: all 1000ms ease;
  cursor: default;
}

/* line 20, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.bb-accordion__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 25, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.bb-accordion__item:hover {
  width: 300%;
}

/* Special styles for dark themes */
/* line 31, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
body.dark .bb-accordion {
  background-color: #000;
}

/* Special styles for .callout-global to use with thiss billboard */
/* line 38, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.billboard-outer.lean .callout-global.callout-global_bb-accordion h1 {
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 5px;
  font-weight: 400;
  text-shadow: 1px 1px 6px #000, 1px 1px 6px #000, 1px 1px 6px rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 577px) {
  /* line 38, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
  .billboard-outer.lean .callout-global.callout-global_bb-accordion h1 {
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
  }
}

/* line 50, app/assets/stylesheets/user_site/blocks/billboards/newbillboard.scss */
.billboard-outer.lean .callout-global.callout-global_bb-accordion .callout-row {
  margin-top: 30px;
}
/* line 1, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
.theme-version-three .billboard-outer {
  margin-bottom: 0;
}

/* line 5, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
.billboard-wrapper .sy-slide.sy-active {
  z-index: 3;
}

/* line 9, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
.billboard h1 {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  /* line 14, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-outer.legacy .billboard-wrapper .callout-global,
.billboard-outer.slippery .billboard-wrapper .callout-global {
    position: relative;
    top: unset;
    left: unset;
    padding: 60px 20px;
    transform: unset;
  }
  /* line 24, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-frame .frame {
    height: 100% !important;
  }
  /* line 28, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-frame .frame img {
    height: 100%;
    object-fit: cover;
  }
  /* line 34, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-wrapper .sy-box {
    width: 100%;
    height: 100%;
  }
  /* line 39, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-wrapper .sy-box .sy-slide img {
    height: 100%;
    object-fit: cover;
  }
  /* line 46, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-wrapper .callout-global ~ .billboard-frame {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    padding-bottom: 0 !important;
  }
  /* line 54, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-wrapper .callout-global ~ .sy-box {
    position: absolute;
    top: 0;
    left: 0;
  }
  /* line 59, app/assets/stylesheets/user_site/blocks/billboards/billboards.scss */
  .billboard-wrapper .callout-global ~ .sy-box .sy-slide {
    height: 100%;
  }
}
/* line 1, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new {
  clear: both;
  background-color: #1a1a1a;
}

/* line 6, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding: 60px 0;
}

@media only screen and (max-width: 993px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 769px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 577px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__wrap {
    grid-template-columns: 1fr;
  }
}

/* line 24, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__column {
  padding: 20px;
  color: #fff;
  border-right: 1px solid #404040;
}

/* line 29, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__column:last-child {
  border-right: none;
}

@media only screen and (max-width: 993px) {
  /* line 24, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* line 38, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__column:nth-child(-n + 3) {
    border-bottom: 1px solid #404040;
  }
}

@media only screen and (max-width: 769px) {
  /* line 44, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__column:nth-child(-n + 4) {
    border-bottom: 1px solid #404040;
  }
}

@media only screen and (max-width: 577px) {
  /* line 24, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__column {
    border-right: none;
  }
  /* line 50, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__column:nth-child(-n + 5) {
    border-bottom: 1px solid #404040;
  }
}

/* line 58, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__column.footer-new__column_center {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 993px) {
  /* line 58, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__column.footer-new__column_center {
    justify-content: flex-start;
  }
}

/* line 67, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__logo {
  display: block;
  max-width: 80%;
  margin-bottom: 10px;
}

/* line 72, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__logo img {
  max-width: 100%;
  max-height: 60px;
}

/* line 78, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__address {
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.4;
}

@media only screen and (max-width: 993px) {
  /* line 78, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__address {
    text-align: center;
  }
}

/* line 88, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.contentbuilder-wrapper .footer-new .footer-new__logo {
  color: #7f7f7f;
  font-weight: 400;
  font-size: 16px;
}

/* line 94, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__link {
  margin-bottom: 4px;
}

/* line 97, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__link a {
  color: #fff;
  transition: all 0.3s ease;
}

/* line 101, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__link a:hover {
  color: #999;
}

/* line 108, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.contentbuilder-wrapper .footer-new__link a {
  color: #fff;
}

/* line 111, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.contentbuilder-wrapper .footer-new__link a:hover {
  color: #999;
}

/* line 117, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__heading {
  display: block;
  margin-bottom: 20px;
  color: #828282;
  font-size: 16px;
}

@media only screen and (max-width: 993px) {
  /* line 117, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__heading {
    text-align: center;
  }
}

/* line 128, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__heading.footer-new__heading_form {
  text-align: center;
}

/* line 133, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__nav a {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  line-height: 1.4;
  transition: all 0.3s ease;
}

/* line 140, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__nav a:hover {
  color: #999;
}

@media only screen and (max-width: 993px) {
  /* line 133, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__nav a {
    text-align: center;
  }
}

/* line 151, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.contentbuilder-wrapper .footer-new__nav a {
  color: #fff !important;
}

/* line 154, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.contentbuilder-wrapper .footer-new__nav a:hover {
  color: #999;
}

/* line 161, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper svg {
  width: 100%;
  max-width: 100px;
  height: auto;
}

/* line 166, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper svg path {
  transition: all 0.3s ease-in-out;
}

/* line 173, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper:hover svg path {
  transition: all 0.3s ease-in-out;
}

/* line 177, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper:hover svg #phone {
  fill: #fff;
}

/* line 182, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper:hover svg #ar path {
  fill: #fff;
}

/* line 187, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper:hover svg #mount {
  fill: #ff5419;
}

/* line 191, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper:hover svg #sun {
  fill: #ff5419;
}

/* line 196, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-wrapper:hover svg #text path {
  fill: #ff5419;
}

/* line 204, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__ar-logo-link {
  position: relative;
}

/* line 209, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form input {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  background-color: transparent;
  border: 1px solid #666;
  border-radius: 20px;
}

/* line 223, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form input:focus {
  color: #fff;
  border-color: #fff;
}

/* line 229, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form input::placeholder {
  color: #999;
  font-style: normal;
  opacity: 1;
}

/* line 235, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-submit {
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 9px 15px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  background-color: #666;
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: all 200ms ease;
}

/* line 252, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-submit:hover {
  top: 0;
  color: #1a1a1a;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 261, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-descr {
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

/* line 268, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-done {
  display: none;
  padding: 20px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  background-color: #ddd;
}

/* line 276, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-done.is-active {
  display: block;
}

/* line 281, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-fail {
  display: none;
  padding: 20px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  background-color: #ffdede;
}

/* line 290, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__form .form-fail.is-active,
.footer-new__form .form-done.is-active {
  display: block;
}

/* line 296, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__copyright-wrap {
  display: grid;
  grid-template-columns: 4fr 1fr 4fr;
  padding: 20px;
  color: #1a1a1a;
  background-color: #fff;
}

@media only screen and (max-width: 769px) {
  /* line 296, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__copyright-wrap {
    grid-template-columns: 1fr;
    padding: 20px 20px 80px;
  }
}

/* line 309, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__copyright {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 769px) {
  /* line 309, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__copyright {
    justify-content: center;
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* line 321, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 326, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__back-to-top .top-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #a1a1a1;
  border-radius: 100%;
  transition: all 0.3s ease;
}

/* line 337, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__back-to-top .top-btn:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: scale(1.5);
}

/* line 342, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__back-to-top .top-btn:hover svg path {
  fill: #fff;
}

@media only screen and (max-width: 769px) {
  /* line 321, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__back-to-top {
    order: 0;
    margin-bottom: 20px;
  }
}

/* line 354, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__proud-wrapper {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 769px) {
  /* line 354, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
  .footer-new__proud-wrapper {
    justify-content: center;
    order: 2;
    margin-bottom: 20px;
  }
}

/* line 365, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__proud {
  align-items: center;
  color: #1a1a1a !important;
}

/* line 369, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__proud img {
  margin-right: 10px;
}

/* line 373, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__proud span {
  transition: all 0.2s ease;
}

/* line 378, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
.footer-new__proud:hover span {
  color: #999 !important;
}

/* line 383, app/assets/stylesheets/user_site/blocks/footers/newfooter.scss */
body.lean .footer-new__proud {
  display: flex !important;
}
/* line 1, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar-container,
#trust_bar {
  position: relative;
  margin-top: 15px;
  padding: 60px 20px;
  overflow: hidden;
}

/* line 8, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar-container::before,
#trust_bar::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: #1a1a1a;
  content: "";
}

/* line 18, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
body.dark .trust-bar-container::before, body.dark #trust_bar::before {
  background-color: #ccc;
}

/* line 24, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar {
  position: relative;
  display: flex;
  justify-content: center;
}

/* line 30, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__head {
  position: absolute;
  top: -60px;
  left: 50%;
  display: flex;
  justify-content: center;
  padding-left: 15px;
  transform: translateX(-50%);
  pointer-events: none;
}

@media only screen and (max-width: 1199px) {
  /* line 30, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__head {
    transform: translateX(-50%) scale(0.7);
  }
}

@media only screen and (max-width: 991px) {
  /* line 30, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__head {
    transform: translateX(-50%) scale(0.5);
  }
}

@media only screen and (max-width: 767px) {
  /* line 30, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__head {
    display: none;
  }
}

/* line 53, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__title {
  display: flex;
  margin: 0 auto;
  color: #fff;
  font-weight: 800;
  font-size: 200px;
  line-height: 200px;
  letter-spacing: 15px;
  text-transform: uppercase;
  opacity: 0.07;
  transition: all 200ms;
}

/* line 65, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
body.dark .trust-bar__title {
  color: #1a1a1a;
}

/* line 69, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.theme-version-two.whisper .trust-bar__title, .theme-version-two.silent .trust-bar__title {
  line-height: 250px;
}

/* line 75, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__by-artstorefronts {
  position: absolute;
  top: 175px;
  left: 50%;
  margin-left: 231px;
}

/* line 82, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__by-artstorefronts-link {
  color: #999;
  font-size: 13px;
  line-height: 20px;
  transition: all 200ms;
}

/* line 88, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__by-artstorefronts-link strong {
  color: #ff5e00;
  font-weight: 600;
}

/* line 93, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__by-artstorefronts-link:hover {
  color: #1a1a1a;
}

/* line 98, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* line 104, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-right: 20px;
  padding-left: 20px;
}

/* line 112, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item:hover {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  /* line 104, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
}

/* line 124, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-img-badge {
  transform-origin: center;
}

@media only screen and (min-width: 768px) {
  /* line 124, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item-img-badge {
    transition: transform 0.75s, opacity 0.2s, filter 0.2s;
  }
  /* line 131, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  body:not(.dark) .trust-bar__list:hover .trust-bar__item-img-badge {
    filter: invert(100%) hue-rotate(180deg);
  }
  /* line 135, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  body.dark .trust-bar__list:hover .trust-bar__item-img-badge {
    opacity: 0.6;
  }
  /* line 140, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item:hover .trust-bar__item-img-badge {
    transform: scale(1.5);
  }
  /* line 143, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  body:not(.dark) .trust-bar__item:hover .trust-bar__item-img-badge {
    filter: none;
  }
  /* line 147, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  body.dark .trust-bar__item:hover .trust-bar__item-img-badge {
    opacity: 1;
  }
}

/* line 154, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

@media only screen and (max-width: 767px) {
  /* line 154, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item-img {
    height: 100px;
  }
}

/* line 164, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 0;
  height: 0;
  transition: height 0.5s 0.5s;
}

/* line 172, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item:hover .trust-bar__item-text-content {
  transition-delay: 0.3s;
}

/* line 177, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content-inner {
  width: 500px;
  max-width: 100vw;
  overflow: hidden;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  /* line 177, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item-text-content-inner {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 768px) {
  /* line 177, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item-text-content-inner {
    opacity: 0;
    transition: opacity 0.2s 0s;
  }
  /* line 191, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item:hover .trust-bar__item-text-content-inner {
    opacity: 1;
    transition: opacity 0s 0.3s;
  }
}

/* line 197, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content-inner p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

/* line 203, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content-inner a {
  color: #ff5e00;
  letter-spacing: 0;
}

/* line 207, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content-inner a:hover {
  color: #818181;
  text-decoration: underline;
}

/* line 213, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content-inner h3 {
  margin: 17px 0;
  font-weight: 700;
  font-size: 14px;
}

/* line 219, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-text-content-inner h3,
.trust-bar__item-text-content-inner p {
  color: #1a1b1f;
}

/* line 223, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
body:not(.dark) .trust-bar__item-text-content-inner h3, body:not(.dark) .trust-bar__item-text-content-inner p {
  color: #fff;
}

/* line 229, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
.trust-bar__item-title {
  margin-top: 60px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}

/* line 240, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
body.dark .trust-bar__item-title {
  color: #1a1b1f;
}

@media only screen and (max-width: 767px) {
  /* line 229, app/assets/stylesheets/user_site/blocks/trust-bar/trust-bar.scss */
  .trust-bar__item-title {
    margin-top: 20px;
  }
}
/* Modal notification */
/* line 2, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct {
  padding: 40px;
  color: #1a1b1f;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  /* line 2, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
  .new-lct {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* line 12, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .close-reveal-modal:not(.form-modal-notification-close) {
  top: -15px;
  right: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

/* line 27, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .close-reveal-modal:not(.form-modal-notification-close) svg {
  width: 18px;
  height: 18px;
  color: #1a1a1a;
  transition: all 0.2s, color 0.2s;
}

/* line 34, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .close-reveal-modal:not(.form-modal-notification-close):hover {
  background-color: #1a1a1a;
}

/* line 37, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .close-reveal-modal:not(.form-modal-notification-close):hover svg {
  color: #fff;
}

/* line 43, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct h1 {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.13;
}

/* line 49, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct p {
  margin-top: 0;
  color: #1a1b1f;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
}

/* line 57, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .user-form-field {
  margin-bottom: 10px;
}

/* line 60, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .user-form-field label {
  color: #1a1b1f;
}

/* line 65, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct.react-reveal-modal.form-modal[data-appear-automatically="true"] {
  outline: none;
}

/* line 69, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct.reveal-modal.form-modal[data-appear-automatically="true"] {
  outline: none;
}

/* line 73, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .new-lct__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid #ccc;
}

@media (max-width: 767px) {
  /* line 73, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
  .new-lct .new-lct__inner {
    padding-right: 0;
    padding-left: 0;
    border: none;
  }
}

/* line 87, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .new-lct__logo-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  padding: 0 10px;
  overflow: hidden;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  background-color: #fff;
  transform: translate(-50%, -50%);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* line 102, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .new-lct__logo-wrap img {
  width: auto;
  height: 40px;
}

/* line 108, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .new-lct__trust-badges {
  position: absolute;
  bottom: -5px;
  left: 50%;
  display: flex;
  background-color: #fff;
  transform: translate(-50%, 50%);
}

/* line 116, app/assets/stylesheets/user_site/blocks/new-lead-capture-tool/new-lead-capture-tool.scss */
.new-lct .new-lct__trust-badges img {
  width: auto;
  max-width: none;
  height: 60px;
  max-height: none;
  margin-right: 10px;
  margin-left: 10px;
}
/* line 1, app/assets/stylesheets/user_site/blocks/checkout/checkout.scss */
.order-review-column #checkout-afterpay-clearpay-message {
  display: flex;
  justify-content: flex-end;
}

/* line 6, app/assets/stylesheets/user_site/blocks/checkout/checkout.scss */
.order-review-column #checkout-afterpay-clearpay-message .AfterpayMessage {
  margin-top: 0 !important;
}
/* line 1, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.test-todo-move {
  display: flex;
  width: 100%;
  flex-direction: column;
}

/* line 6, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* line 14, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc .new-form__submit {
  display: block;
  width: 100%;
  background-color: #000;
  font-size: inherit;
  line-height: inherit;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

@media only screen and (max-width: 769px) {
  /* line 6, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-acc {
    padding: 0;
    align-items: normal;
  }
}

/* line 29, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  padding-right: 30px;
  z-index: 1;
}

@media only screen and (max-width: 769px) {
  /* line 29, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-acc__header {
    display: none;
  }
}

/* line 43, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__header-link {
  font-size: 14px !important;
  color: #9a9999 !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

/* line 48, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__header-link:hover {
  color: #fff !important;
}

/* line 52, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__header-link.back {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}

/* line 56, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__header-link.back:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #9a9999;
}

/* line 66, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  overflow: hidden;
  display: grid;
  grid-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

/* line 77, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__background img {
  width: 100%;
  height: auto;
}

/* line 81, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__background:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* line 91, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__background.new-acc__background_sign-in {
  grid-template-columns: 1fr 1fr 1fr;
}

/* line 94, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc__content {
  position: relative;
  z-index: 1;
  width: 500px;
  margin-bottom: 0px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 14px 12px rgba(26, 26, 26, 0.7);
}

@media only screen and (max-width: 769px) {
  /* line 94, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-acc__content {
    width: 100%;
    min-height: 100%;
    box-shadow: none;
  }
}

/* line 108, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 30px;
  border: 1px solid #d6d6d6;
  color: #1a1a1a;
  letter-spacing: normal;
}

/* line 117, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form form {
  width: 100%;
  margin-bottom: 0;
}

/* line 121, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form a {
  color: #1a1a1a;
}

/* line 124, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form .recaptcha-field {
  margin: 0px !important;
}

/* line 128, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__title {
  margin-top: -5px;
  margin-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  width: fit-content;
}

/* line 142, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__logo {
  margin-bottom: 10px;
}

/* line 144, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__logo img {
  height: 60px;
}

/* line 148, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__item {
  margin-bottom: 20px;
}

/* line 152, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__grid {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 577px) {
  /* line 152, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__grid {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

/* line 161, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__field {
  position: relative;
}

/* line 163, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__field input[type] {
  border: 1px solid #ccc;
  transition: all 200ms ease;
  font-size: 12px;
  margin-bottom: 0;
  padding: 8px 12px;
  height: 38px;
  box-shadow: none;
  background: #fff;
}

/* line 172, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__field input[type]:focus {
  background: #fff;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 12px;
  margin-bottom: 0;
  box-shadow: none;
}

/* line 181, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__field input::placeholder {
  color: #B8B8B8;
  opacity: 1;
  font-style: normal;
}

/* line 186, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__field .new-form__remember {
  padding: 0px 15px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  right: 15px;
}

@media only screen and (max-width: 577px) {
  /* line 186, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__field .new-form__remember {
    padding: 0 0 0 15px;
    right: 0;
  }
}

/* line 198, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__checkbox {
  position: relative;
  cursor: pointer;
  user-select: none;
  color: #1a1a1a;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  padding-left: 20px;
  width: fit-content;
  transition: all 0.3s ease;
}

/* line 209, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* line 214, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__checkbox:hover {
  color: #b3b3b3;
}

/* line 219, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__checkbox .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  transition: all .2s ease;
}

/* line 229, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__checkbox input:checked ~ .checkmark {
  border: 4px solid #000;
}

/* line 232, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__message {
  position: relative;
  margin: -9px 8px 0 8px;
  display: none;
  justify-content: start;
  max-width: 100%;
  width: fit-content;
  padding-right: 5px;
  padding-left: 5px;
  background-color: #fff;
  color: red;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  text-align: left;
}

/* line 248, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__message.is-active {
  display: flex;
}

/* line 251, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__bottom {
  margin-bottom: 10px;
  line-height: 1.4;
}

@media only screen and (max-width: 769px) {
  /* line 251, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__bottom {
    margin-top: 10px;
  }
}

/* line 258, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__forgot {
  font-size: 13px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

/* line 263, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__forgot:hover {
  color: #818181 !important;
}

/* line 267, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__sign-up {
  text-align: center;
  font-size: 13px;
}

/* line 270, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__sign-up a {
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

/* line 274, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__sign-up a:hover {
  color: #818181 !important;
}

@media only screen and (max-width: 769px) {
  /* line 267, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__sign-up {
    margin-top: 10px;
  }
}

/* line 282, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__sign-in {
  margin-bottom: -10px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fff;
  text-align: center;
  font-size: 13px;
}

/* line 289, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__sign-in a {
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

/* line 293, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__sign-in a:hover {
  color: #818181 !important;
}

/* line 298, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__badge {
  position: absolute;
  right: 26px;
  bottom: -56px;
  width: 90px;
}

/* line 303, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__badge img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 769px) {
  /* line 298, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__badge {
    position: static;
    margin: 30px 0;
  }
}

/* line 312, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__back {
  display: none;
  position: absolute;
  bottom: -10px;
  left: -9px;
  padding: 6px 8px;
  font-size: 14px !important;
  background-color: #fff;
  color: #9a9999 !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

@media only screen and (max-width: 769px) {
  /* line 312, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__back {
    display: block;
  }
}

/* line 327, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-form__home {
  display: none;
  position: absolute;
  bottom: -10px;
  right: -9px;
  padding: 6px 8px;
  font-size: 14px !important;
  background-color: #fff;
  color: #9a9999 !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

@media only screen and (max-width: 769px) {
  /* line 327, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
  .new-form__home {
    display: block;
  }
}

/* line 343, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc.new-acc_login .new-form__submit {
  margin-bottom: 10px;
}

/* line 346, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
.new-acc.new-acc_login .new-form__badge {
  bottom: -25px;
}

/* line 353, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
body.theme-version-one .new-acc .new-form__submit {
  border: none;
  padding: 15px;
}

/* line 362, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
body.theme-version-two .new-acc .new-form__submit {
  border: none;
  padding: 12px 10px;
}

/* line 371, app/assets/stylesheets/user_site/blocks/new-account/new-account.scss */
body.theme-version-three .new-acc .new-form__submit {
  display: flex;
}
/* line 1, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews {
  position: relative;
  min-height: 50px;
}

/* line 6, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews.waiting .gooten-product-previews__bcg {
  background-color: rgba(255, 255, 255, 0.85);
  visibility: visible;
  opacity: 1;
}

/* line 14, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews.loading .gooten-product-previews__bcg {
  background-color: rgba(255, 255, 255, 0.85);
  visibility: visible;
  opacity: 1;
}

/* line 19, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews.loading .gooten-product-previews__bcg .loader {
  visibility: visible;
  opacity: 1;
}

/* line 26, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews.disabled {
  display: none;
}

/* line 30, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__container {
  display: flex;
  margin: 0 -5px;
}

/* line 35, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__item {
  position: relative;
  flex: 0 0 25%;
  padding: 0 5px;
  cursor: pointer;
}

/* line 41, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__item img {
  width: 100%;
  height: auto;
}

/* line 47, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__bcg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* line 62, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__bcg .loader,
.gooten-product-previews .gooten-product-previews__bcg .loader::before,
.gooten-product-previews .gooten-product-previews__bcg .loader::after {
  width: 0.35em;
  height: 2em;
  background: #4a4a4a;
  animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
}

/* line 72, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__bcg .loader {
  position: relative;
  color: #4a4a4a;
  font-size: 11px;
  text-indent: -9999em;
  transform: translateZ(0);
  transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  opacity: 0;
  animation-delay: -0.16s;
  animation-delay: -0.16s;
}

/* line 86, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__bcg .loader::before,
.gooten-product-previews .gooten-product-previews__bcg .loader::after {
  position: absolute;
  top: 0;
  content: "";
}

/* line 93, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__bcg .loader::before {
  left: 0.65em;
  animation-delay: -0.32s;
  animation-delay: -0.32s;
}

/* line 99, app/assets/stylesheets/user_site/blocks/gooten-product-previews/gooten-product-previews.scss */
.gooten-product-previews .gooten-product-previews__bcg .loader::after {
  left: -0.65em;
}

@keyframes load1 {
  0%,
80%,
100% {
    height: 2em;
    box-shadow: 0 0;
  }
  40% {
    height: 3em;
    box-shadow: 0 -1em;
  }
}

@keyframes load1 {
  0%,
80%,
100% {
    height: 2em;
    box-shadow: 0 0;
  }
  40% {
    height: 3em;
    box-shadow: 0 -1em;
  }
}
/* line 413, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview {
  /* Variables */
  --wp-color-text-1: #000;
  --wp-color-text-2: #333;
  --wp-color-text-3: #b2b2b2;
  --wp-color-text-4: #b8b8b8;
  --wp-color-bg-1: #fff;
  --wp-color-bg-2: #e6e6e6;
  --wp-color-border-1: #ccc;
  --wp-color-border-2: #1a1a1a;
  --wp-color-accent-1: #fe5419;
  background-color: var(--wp-color-bg-1);
  transition: all 0.3s ease;
}

/* line 428, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__topbar {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 60px;
  padding: 10px 20px;
  overflow: unset;
  background: var(--wp-color-bg-1);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* line 442, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__topbar::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 992px) {
  /* line 428, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__topbar {
    overflow: visible;
  }
}

@media only screen and (max-width: 768px) {
  /* line 428, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__topbar {
    height: 100px;
  }
}

/* line 455, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo-wrapper {
  position: relative;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 455, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__logo-wrapper {
    display: none;
  }
}

/* line 464, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

/* line 471, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo svg {
  width: auto;
  height: 38px;
  overflow: visible;
}

/* line 476, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo svg path {
  transition: all 0.2s ease-in-out;
}

/* line 481, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo:hover, .wall-preview .wall-preview__logo.is-active {
  top: 0;
}

/* line 485, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo:hover .hover-orange, .wall-preview .wall-preview__logo.is-active .hover-orange {
  fill: #fe5419;
}

/* line 489, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo:hover + .wall-preview__dropdown, .wall-preview .wall-preview__logo.is-active + .wall-preview__dropdown {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* line 497, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo.wall-preview__logo-ar #gray path {
  fill: var(--wp-color-text-1);
}

/* line 501, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo.wall-preview__logo-ar #orange path {
  fill: var(--wp-color-text-1);
}

/* line 507, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo.wall-preview__logo-ar:hover #gray path, .wall-preview .wall-preview__logo.wall-preview__logo-ar.is-active #gray path {
  fill: var(--wp-color-text-1);
}

/* line 511, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__logo.wall-preview__logo-ar:hover #orange path, .wall-preview .wall-preview__logo.wall-preview__logo-ar.is-active #orange path {
  fill: #fe5419;
}

/* line 518, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 11;
  min-width: 300px;
  padding: 35px 20px;
  color: var(--wp-color-text-1);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
  text-align: justify;
  background-color: var(--wp-color-bg-1);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

/* line 536, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__dropdown h3 {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 16px;
  font-size: inherit;
  letter-spacing: inherit;
}

/* line 544, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__dropdown p {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* line 549, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__dropdown p a {
  color: var(--wp-color-accent-1);
  font-weight: 500;
  text-decoration: none;
  transition: all 200ms ease;
}

/* line 555, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__dropdown p a:hover {
  color: var(--wp-color-text-4);
}

/* line 562, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__close {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  color: var(--wp-color-text-1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: all 200ms ease;
}

/* line 579, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__close:hover {
  background-color: var(--wp-color-bg-2);
  transform: none;
}

/* line 585, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  /* line 585, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__controls {
    align-items: start;
  }
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 585, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__controls {
    gap: 12px;
  }
}

/* line 600, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__controls-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 600, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__controls-wrapper {
    gap: 12px;
  }
}

/* line 612, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control {
  position: relative;
}

/* line 615, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control select {
  background: url("data:image/svg+xml,<svg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M3 6.776 3.588 6 8 9.727 12.412 6l.588.776L8 11 3 6.776Z' fill='%231A1A1A'/></svg>") no-repeat;
  background-position: calc(100% - 4px) center !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* line 627, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__input:focus, .wall-preview .wall-preview__control .wall-preview__input:focus-visible,
.wall-preview .wall-preview__control input:focus,
.wall-preview .wall-preview__control input:focus-visible {
  background: var(--wp-color-bg-1) !important;
}

/* line 633, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview #frame_picker.wall-preview__control {
  position: relative;
  display: none;
}

/* line 637, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview #frame_picker.wall-preview__control.is-active {
  display: block;
}

/* line 641, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview #frame_picker.wall-preview__control select {
  padding-right: 24px;
  pointer-events: none;
}

@media only screen and (max-width: 576px) {
  /* line 633, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview #frame_picker.wall-preview__control {
    position: unset;
  }
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 652, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview #frame_picker.wall-preview__control select {
    padding-left: 0;
    font-size: 16px;
    border: none;
  }
}

/* line 660, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;
  height: fit-content;
  max-height: 80vh;
  padding: 6px 0;
  overflow-y: scroll;
  background-color: var(--wp-color-bg-1);
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  /* line 660, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .frame-picker-dropdown {
    top: auto;
  }
}

@media only screen and (max-width: 576px) {
  /* line 660, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .frame-picker-dropdown {
    right: 0;
  }
}

/* line 681, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown.is-active {
  visibility: visible;
  opacity: 1;
}

/* line 686, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

/* line 692, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item:hover, .wall-preview .wall-preview__control .frame-picker-dropdown .option-item.is-active {
  background-color: #1c9afe;
}

/* line 696, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item:hover .name, .wall-preview .wall-preview__control .frame-picker-dropdown .option-item.is-active .name {
  color: #fff;
}

/* line 701, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item:last-child {
  margin-bottom: 0;
}

/* line 705, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item .image-wrapper {
  width: 5rem;
  min-width: 5rem;
  margin-right: 1rem;
  padding: 0 6px 4px;
  background-color: #fff;
  border: 1px solid var(--wp-color-border-1);
}

@media only screen and (max-width: 768px) {
  /* line 705, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .frame-picker-dropdown .option-item .image-wrapper {
    width: 4rem;
    min-width: 4rem;
    margin-right: 0.5rem;
  }
}

/* line 719, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item .image-wrapper img {
  width: 100%;
  height: auto;
}

/* line 725, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .frame-picker-dropdown .option-item .name {
  color: var(--wp-color-text-1);
  font-size: 14px;
  white-space: nowrap;
}

/* line 733, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview #wall_colorpicker.wall-preview__control {
  background: #fff;
}

/* line 737, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview #wall_size_picker.wall-preview__control {
  margin-top: 0;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 742, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview #wall_size_picker.wall-preview__control select {
    width: 75px;
    padding-left: 0;
    font-size: 16px;
    border: none;
  }
}

/* line 751, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__input,
.wall-preview .wall-preview__control .wall-preview__button,
.wall-preview .wall-preview__control input,
.wall-preview .wall-preview__control select {
  height: 38px;
  margin-bottom: 0;
  padding-right: 16px;
  padding-left: 14px;
  color: var(--wp-color-text-1);
  font-size: 12px;
  border: 1px solid var(--wp-color-border-1);
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

/* line 764, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__input:focus, .wall-preview .wall-preview__control .wall-preview__input:focus-visible,
.wall-preview .wall-preview__control .wall-preview__button:focus,
.wall-preview .wall-preview__control .wall-preview__button:focus-visible,
.wall-preview .wall-preview__control input:focus,
.wall-preview .wall-preview__control input:focus-visible,
.wall-preview .wall-preview__control select:focus,
.wall-preview .wall-preview__control select:focus-visible {
  margin-bottom: 0;
  color: var(--wp-color-text-1);
  border: 1px solid var(--wp-color-text-1);
  outline: none;
  box-shadow: none;
}

/* line 774, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__label,
.wall-preview .wall-preview__control label {
  position: absolute;
  top: -6px;
  left: 10px;
  z-index: 10;
  padding-right: 5px;
  padding-left: 5px;
  color: var(--wp-color-text-3);
  font-size: 12px;
  line-height: 14px;
  background-color: var(--wp-color-bg-1);
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 774, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__label,
.wall-preview .wall-preview__control label {
    display: none;
  }
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 793, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview #room_image_picker.wall-preview__control {
    display: none;
  }
}

/* line 800, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 15px;
  color: var(--wp-color-text-2);
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0;
  background-color: var(--wp-color-bg-2);
  border: none;
  box-shadow: none;
  transition: all 200ms ease;
}

/* line 816, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__control-btn:hover, .wall-preview .wall-preview__control .wall-preview__control-btn:focus {
  top: 0;
}

/* line 821, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__control-btn svg {
  height: 17px;
  margin-right: 10px;
  transition: all 0.2s ease-in-out 0;
}

/* line 827, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control .wall-preview__control-btn:hover {
  color: var(--wp-color-bg-1);
  background: var(--wp-color-text-1);
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 800, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__control-btn {
    min-width: auto;
    padding-right: 6px;
    padding-left: 6px;
    background: none;
  }
  /* line 839, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__control-btn svg {
    height: 28px;
    margin-right: 0;
  }
  /* line 844, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__control-btn span {
    display: none;
  }
  /* line 848, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__control-btn:hover {
    background-color: inherit;
  }
}

@media only screen and (max-width: 380px) {
  /* line 800, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__control-btn {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 857, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__control .wall-preview__control-btn svg {
    height: 24px;
  }
}

/* line 864, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__control.wall-preview__control-upload input {
  position: absolute;
  visibility: hidden;
}

/* line 871, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
.wall-preview .wall-preview__body {
  flex: 1;
  width: 100%;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 871, app/assets/stylesheets/user_site/blocks/wall-preview/../../themes/mixins.scss */
  .wall-preview .wall-preview__body {
    order: 1;
  }
}

/* line 6, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview {
  /* Live Preview styles */
}

/* line 7, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview.see-on-wall-link {
  background-color: transparent;
}

/* line 11, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview.is-active {
  visibility: visible;
  opacity: 1;
}

/* line 16, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body {
  /* some iphone models adds this padding somewhy, so to keep consistency we should add it */
  padding-right: 20px;
  padding-left: 20px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media only screen and (max-height: 900px) {
  /* line 16, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__body {
    -ms-overflow-style: auto;
    scrollbar-width: thin;
  }
}

/* line 29, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body .preview-wall-color {
  --wall-preview-room-width: min(1500px, calc(100vw - 40px));
  --wall-preview-top-offset: clamp(20px, calc(var(--wall-preview-room-width) * 0.047), 70px);
  --wall-preview-bottom-offset: clamp(85px, calc(var(--wall-preview-room-width) * 0.22), 330px);
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: 800px;
  max-width: 1500px;
  height: 100%;
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 330px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 1500px 723px;
}

@media only screen and (max-width: 1024px) {
  /* line 29, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__body .preview-wall-color {
    min-width: auto;
    padding-top: var(--wall-preview-top-offset);
    padding-bottom: var(--wall-preview-bottom-offset);
    background-size: contain;
  }
}

@media screen and (max-width: 768px) {
  /* line 29, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__body .preview-wall-color {
    min-width: auto;
    min-height: calc(100vh - 160px);
    padding-top: var(--wall-preview-top-offset);
    padding-bottom: var(--wall-preview-bottom-offset);
    background-size: contain;
  }
}

@media only screen and (max-height: 900px) {
  /* line 29, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__body .preview-wall-color {
    height: auto;
  }
}

/* line 67, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body .preview-wall-color.custom {
  display: flex;
  align-items: center;
  max-width: none;
  padding: 0;
  background-size: cover;
}

/* line 76, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-height: 900px) {
  /* line 76, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__body::-webkit-scrollbar {
    display: block;
    width: 8px;
  }
}

/* line 85, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body::-webkit-scrollbar-thumb {
  background: var(--wp-color-border-1);
  border-radius: 2px;
}

/* line 90, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body::-webkit-scrollbar-thumb:hover {
  background: var(--wp-color-border-1);
}

/* line 94, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__body::-webkit-scrollbar-track {
  background: var(--wp-color-bg-1);
  border-radius: 0;
  box-shadow: inset 0 0 0 0 var(--wp-color-bg-1);
}

@media only screen and (max-width: 1024px) {
  /* line 101, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__topbar {
    z-index: 10000;
    height: 60px;
  }
  /* line 106, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__topbar .wall-preview__controls {
    flex-direction: row;
  }
}

@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  /* line 109, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__topbar .wall-preview__controls #room_image_picker {
    display: none;
  }
}

/* line 118, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 899;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 670px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  /* line 118, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__scalebar {
    width: 100%;
  }
}

/* line 135, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 35px 5px;
  background-color: var(--wp-color-bg-1);
  border-bottom-right-radius: 70px;
  border-bottom-left-radius: 70px;
}

@media only screen and (max-width: 1024px) {
  /* line 135, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__scalebar-container {
    width: calc(40% + 40px);
    margin-top: -1px;
    padding: 7px 20px 5px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media only screen and (max-width: 664px) and (max-height: 390px) and (orientation: landscape) {
  /* line 135, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__scalebar-container {
    width: calc(60%);
  }
}

/* line 157, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .left-line {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  height: 20px;
}

/* line 164, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .left-line::before {
  width: 100%;
  height: 1px;
  background: var(--wp-color-border-1);
  content: "";
}

/* line 171, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .left-line::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--wp-color-border-1);
  border-radius: 100%;
  content: "";
}

/* line 183, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .right-line {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  height: 20px;
}

/* line 190, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .right-line::before {
  width: 100%;
  height: 1px;
  background: var(--wp-color-border-1);
  content: "";
}

/* line 197, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .right-line::after {
  position: absolute;
  top: 6px;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--wp-color-border-1);
  border-radius: 100%;
  content: "";
}

/* line 209, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__scalebar-container .text-part {
  padding-right: 20px;
  padding-left: 20px;
  color: grey;
}

@media only screen and (max-width: 768px) {
  /* line 209, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__scalebar-container .text-part {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  /* line 209, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__scalebar-container .text-part {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* line 227, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__product img {
  max-height: none;
}

/* line 232, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview {
  height: 60px;
  padding: 0 20px;
  background: var(--wp-color-bg-1);
}

@media only screen and (max-width: 768px) {
  /* line 232, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview {
    order: 0;
    padding: 0 20px 5px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  /* line 232, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview {
    order: 0;
    padding: 0 20px 5px;
  }
}

/* line 247, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  overflow: scroll visible;
  scroll-padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* line 259, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* line 247, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview .room-preview-wrapper {
    display: block;
    margin: 0;
    padding: 0 10px;
    overflow: visible;
    border: 1px solid var(--wp-color-border-1);
    scroll-snap-type: inherit;
    scroll-padding: auto;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  /* line 247, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview .room-preview-wrapper {
    display: block;
    margin: 0;
    padding: 0 10px;
    overflow: visible;
    border: 1px solid var(--wp-color-border-1);
    scroll-snap-type: inherit;
    scroll-padding: auto;
  }
}

/* line 283, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-arrow:hover {
  top: 50%;
  z-index: inherit;
}

/* line 288, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-prev {
  left: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 30px;
  padding: 2px;
  color: var(--wp-color-border-1);
  background: var(--wp-color-bg-1) !important;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}

/* line 302, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-prev svg {
  width: 11px;
  height: 20px;
}

/* line 307, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-prev::before {
  content: none;
}

/* line 311, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-prev.slick-disabled {
  visibility: hidden;
  opacity: 0;
}

/* line 317, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-next {
  right: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 30px;
  padding: 2px;
  color: var(--wp-color-border-1);
  background: var(--wp-color-bg-1) !important;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}

/* line 331, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-next svg {
  width: 11px;
  height: 20px;
}

/* line 336, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-next::before {
  content: none;
}

/* line 340, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-next.slick-disabled {
  visibility: hidden;
  opacity: 0;
}

/* line 346, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-wrapper .slick-track {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  /* line 247, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview .room-preview-wrapper {
    justify-content: start;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  /* line 247, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview .room-preview-wrapper {
    justify-content: start;
  }
}

/* line 360, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-changer {
  width: auto;
  height: 40px;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

/* line 367, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-changer img {
  width: auto;
  height: 100%;
}

/* line 372, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-changer.is-active {
  opacity: 0.4;
}

/* line 376, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .wall-preview__room-preview .room-preview-changer:hover {
  transform: scale(1.3);
}

@media only screen and (max-width: 768px) {
  /* line 376, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview .room-preview-changer:hover {
    transform: none;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  /* line 376, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview .wall-preview__room-preview .room-preview-changer:hover {
    transform: none;
  }
}

/* line 391, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .my-camera {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* line 398, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .my-camera .distance-tip p {
  letter-spacing: 0;
}

/* line 404, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure {
  color: var(--wp-color-text-1);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  background: var(--wp-color-bg-1);
}

/* line 411, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure .failure__inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

/* line 420, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure .failure__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  height: 100%;
}

/* line 429, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure .failure__logo {
  width: 260px;
  margin-bottom: 40px;
}

/* line 434, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure .failure__text {
  margin-bottom: 40px;
}

/* line 438, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure a {
  opacity: 1;
}

/* line 441, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure a:hover {
  transform: scale(1);
}

/* line 446, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure p {
  color: inherit;
  font-size: 14px;
  letter-spacing: inherit;
  text-align: center;
}

/* line 452, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure p:first-of-type {
  margin-top: 0;
}

/* line 457, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure .failure__btn {
  margin-top: 10px;
}

/* line 461, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .failure .failure__badget {
  width: 140px;
}

/* line 466, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview .live-preview {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 475, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview-live .live-preview {
  display: flex;
  flex-direction: column;
}

/* line 479, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview-live .live-preview .preview-wall-section {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

/* line 485, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview-live .live-preview .paper-preview-modal {
  top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 58.75em) {
  /* line 485, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview-live .live-preview .paper-preview-modal {
    top: -70px;
  }
}

@media all and (max-width: 1024px) {
  /* line 497, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview-live .live-preview .wall-preview__control .wall-preview__control-btn.fullscreen {
    display: none;
  }
}

/* line 505, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 10;
  width: 350px;
  margin-top: 73px;
  padding: 20px;
  color: var(--wp-color-text-1);
  letter-spacing: 0;
  text-align: center;
  background: var(--wp-color-bg-1);
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
  /* TODO Remove form styles after merging other tasks */
}

/* line 521, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container h3 {
  margin-bottom: 10px;
  color: inherit;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: inherit;
  text-transform: uppercase;
}

/* line 530, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container p {
  margin-bottom: 20px;
  color: inherit;
  font-size: 14px;
  letter-spacing: inherit;
}

/* line 538, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .new-form__field {
  position: relative;
  margin-bottom: 12px;
}

/* line 542, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .new-form__field label {
  position: absolute;
  top: -6px;
  left: 10px;
  z-index: 10;
  padding-right: 5px;
  padding-left: 5px;
  color: var(--wp-color-text-4);
  font-size: 12px;
  line-height: 14px;
  background-color: var(--wp-color-bg-1);
}

/* line 555, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .new-form__field input[type] {
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 12px;
  background: var(--wp-color-bg-1);
  border: 1px solid var(--wp-color-border-1);
  box-shadow: none;
  transition: all 200ms ease;
}

/* line 565, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .new-form__field input[type]:focus {
  margin-bottom: 0;
  color: var(--wp-color-border-2);
  font-size: 12px;
  background: var(--wp-color-bg-1);
  border: 1px solid var(--wp-color-border-2);
  box-shadow: none;
}

/* line 575, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .new-form__field input::placeholder {
  color: var(--wp-color-text-4);
  font-style: normal;
  opacity: 1;
}

/* line 582, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .submit-form-btn {
  width: 100%;
}

/* line 586, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .wall-preview__close {
  top: -10px;
  right: -10px;
}

/* line 590, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__email-container .wall-preview__close:hover {
  top: -10px;
}

@media only screen and (max-width: 992px) {
  /* line 505, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
  .wall-preview__email-container {
    visibility: hidden;
    opacity: 0;
  }
}

/* line 601, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wp-tip {
  font-size: 12px;
}

/* line 604, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wp-tip p {
  color: #fff;
  color: var(--wp-color-bg-1);
  font-size: 14px;
}

/* line 611, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
#paper_preview_modal img {
  cursor: move;
  pointer-events: auto;
}

/* line 616, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-preview__close {
  background-color: inherit;
  border-color: inherit;
  box-shadow: none;
}

/* line 622, app/assets/stylesheets/user_site/blocks/wall-preview/wall-preview.scss */
.wall-scene__close {
  background-color: inherit;
  border-color: inherit;
  box-shadow: none;
}
/* line 413, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene {
  /* Variables */
  --wp-color-text-1: #000;
  --wp-color-text-2: #333;
  --wp-color-text-3: #b2b2b2;
  --wp-color-text-4: #b8b8b8;
  --wp-color-bg-1: #fff;
  --wp-color-bg-2: #e6e6e6;
  --wp-color-border-1: #ccc;
  --wp-color-border-2: #1a1a1a;
  --wp-color-accent-1: #fe5419;
  background-color: var(--wp-color-bg-1);
  transition: all 0.3s ease;
}

/* line 428, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__topbar {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 60px;
  padding: 10px 20px;
  overflow: unset;
  background: var(--wp-color-bg-1);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* line 442, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__topbar::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 992px) {
  /* line 428, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__topbar {
    overflow: visible;
  }
}

@media only screen and (max-width: 768px) {
  /* line 428, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__topbar {
    height: 100px;
  }
}

/* line 455, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo-wrapper {
  position: relative;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 455, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__logo-wrapper {
    display: none;
  }
}

/* line 464, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

/* line 471, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo svg {
  width: auto;
  height: 38px;
  overflow: visible;
}

/* line 476, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo svg path {
  transition: all 0.2s ease-in-out;
}

/* line 481, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo:hover, .wall-scene .wall-scene__logo.is-active {
  top: 0;
}

/* line 485, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo:hover .hover-orange, .wall-scene .wall-scene__logo.is-active .hover-orange {
  fill: #fe5419;
}

/* line 489, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo:hover + .wall-scene__dropdown, .wall-scene .wall-scene__logo.is-active + .wall-scene__dropdown {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* line 497, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo.wall-scene__logo-ar #gray path {
  fill: var(--wp-color-text-1);
}

/* line 501, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo.wall-scene__logo-ar #orange path {
  fill: var(--wp-color-text-1);
}

/* line 507, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo.wall-scene__logo-ar:hover #gray path, .wall-scene .wall-scene__logo.wall-scene__logo-ar.is-active #gray path {
  fill: var(--wp-color-text-1);
}

/* line 511, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__logo.wall-scene__logo-ar:hover #orange path, .wall-scene .wall-scene__logo.wall-scene__logo-ar.is-active #orange path {
  fill: #fe5419;
}

/* line 518, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 11;
  min-width: 300px;
  padding: 35px 20px;
  color: var(--wp-color-text-1);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
  text-align: justify;
  background-color: var(--wp-color-bg-1);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

/* line 536, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__dropdown h3 {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 16px;
  font-size: inherit;
  letter-spacing: inherit;
}

/* line 544, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__dropdown p {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* line 549, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__dropdown p a {
  color: var(--wp-color-accent-1);
  font-weight: 500;
  text-decoration: none;
  transition: all 200ms ease;
}

/* line 555, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__dropdown p a:hover {
  color: var(--wp-color-text-4);
}

/* line 562, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__close {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  color: var(--wp-color-text-1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: all 200ms ease;
}

/* line 579, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__close:hover {
  background-color: var(--wp-color-bg-2);
  transform: none;
}

/* line 585, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  /* line 585, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__controls {
    align-items: start;
  }
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 585, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__controls {
    gap: 12px;
  }
}

/* line 600, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__controls-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 600, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__controls-wrapper {
    gap: 12px;
  }
}

/* line 612, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control {
  position: relative;
}

/* line 615, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control select {
  background: url("data:image/svg+xml,<svg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M3 6.776 3.588 6 8 9.727 12.412 6l.588.776L8 11 3 6.776Z' fill='%231A1A1A'/></svg>") no-repeat;
  background-position: calc(100% - 4px) center !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* line 627, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__input:focus, .wall-scene .wall-scene__control .wall-scene__input:focus-visible,
.wall-scene .wall-scene__control input:focus,
.wall-scene .wall-scene__control input:focus-visible {
  background: var(--wp-color-bg-1) !important;
}

/* line 633, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene #frame_picker.wall-scene__control {
  position: relative;
  display: none;
}

/* line 637, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene #frame_picker.wall-scene__control.is-active {
  display: block;
}

/* line 641, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene #frame_picker.wall-scene__control select {
  padding-right: 24px;
  pointer-events: none;
}

@media only screen and (max-width: 576px) {
  /* line 633, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene #frame_picker.wall-scene__control {
    position: unset;
  }
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 652, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene #frame_picker.wall-scene__control select {
    padding-left: 0;
    font-size: 16px;
    border: none;
  }
}

/* line 660, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;
  height: fit-content;
  max-height: 80vh;
  padding: 6px 0;
  overflow-y: scroll;
  background-color: var(--wp-color-bg-1);
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  /* line 660, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .frame-picker-dropdown {
    top: auto;
  }
}

@media only screen and (max-width: 576px) {
  /* line 660, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .frame-picker-dropdown {
    right: 0;
  }
}

/* line 681, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown.is-active {
  visibility: visible;
  opacity: 1;
}

/* line 686, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

/* line 692, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item:hover, .wall-scene .wall-scene__control .frame-picker-dropdown .option-item.is-active {
  background-color: #1c9afe;
}

/* line 696, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item:hover .name, .wall-scene .wall-scene__control .frame-picker-dropdown .option-item.is-active .name {
  color: #fff;
}

/* line 701, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item:last-child {
  margin-bottom: 0;
}

/* line 705, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item .image-wrapper {
  width: 5rem;
  min-width: 5rem;
  margin-right: 1rem;
  padding: 0 6px 4px;
  background-color: #fff;
  border: 1px solid var(--wp-color-border-1);
}

@media only screen and (max-width: 768px) {
  /* line 705, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .frame-picker-dropdown .option-item .image-wrapper {
    width: 4rem;
    min-width: 4rem;
    margin-right: 0.5rem;
  }
}

/* line 719, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item .image-wrapper img {
  width: 100%;
  height: auto;
}

/* line 725, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .frame-picker-dropdown .option-item .name {
  color: var(--wp-color-text-1);
  font-size: 14px;
  white-space: nowrap;
}

/* line 733, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene #wall_colorpicker.wall-scene__control {
  background: #fff;
}

/* line 737, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene #wall_size_picker.wall-scene__control {
  margin-top: 0;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 742, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene #wall_size_picker.wall-scene__control select {
    width: 75px;
    padding-left: 0;
    font-size: 16px;
    border: none;
  }
}

/* line 751, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__input,
.wall-scene .wall-scene__control .wall-scene__button,
.wall-scene .wall-scene__control input,
.wall-scene .wall-scene__control select {
  height: 38px;
  margin-bottom: 0;
  padding-right: 16px;
  padding-left: 14px;
  color: var(--wp-color-text-1);
  font-size: 12px;
  border: 1px solid var(--wp-color-border-1);
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

/* line 764, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__input:focus, .wall-scene .wall-scene__control .wall-scene__input:focus-visible,
.wall-scene .wall-scene__control .wall-scene__button:focus,
.wall-scene .wall-scene__control .wall-scene__button:focus-visible,
.wall-scene .wall-scene__control input:focus,
.wall-scene .wall-scene__control input:focus-visible,
.wall-scene .wall-scene__control select:focus,
.wall-scene .wall-scene__control select:focus-visible {
  margin-bottom: 0;
  color: var(--wp-color-text-1);
  border: 1px solid var(--wp-color-text-1);
  outline: none;
  box-shadow: none;
}

/* line 774, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__label,
.wall-scene .wall-scene__control label {
  position: absolute;
  top: -6px;
  left: 10px;
  z-index: 10;
  padding-right: 5px;
  padding-left: 5px;
  color: var(--wp-color-text-3);
  font-size: 12px;
  line-height: 14px;
  background-color: var(--wp-color-bg-1);
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 774, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__label,
.wall-scene .wall-scene__control label {
    display: none;
  }
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 793, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene #room_image_picker.wall-scene__control {
    display: none;
  }
}

/* line 800, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 15px;
  color: var(--wp-color-text-2);
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0;
  background-color: var(--wp-color-bg-2);
  border: none;
  box-shadow: none;
  transition: all 200ms ease;
}

/* line 816, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__control-btn:hover, .wall-scene .wall-scene__control .wall-scene__control-btn:focus {
  top: 0;
}

/* line 821, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__control-btn svg {
  height: 17px;
  margin-right: 10px;
  transition: all 0.2s ease-in-out 0;
}

/* line 827, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control .wall-scene__control-btn:hover {
  color: var(--wp-color-bg-1);
  background: var(--wp-color-text-1);
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 800, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__control-btn {
    min-width: auto;
    padding-right: 6px;
    padding-left: 6px;
    background: none;
  }
  /* line 839, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__control-btn svg {
    height: 28px;
    margin-right: 0;
  }
  /* line 844, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__control-btn span {
    display: none;
  }
  /* line 848, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__control-btn:hover {
    background-color: inherit;
  }
}

@media only screen and (max-width: 380px) {
  /* line 800, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__control-btn {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 857, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__control .wall-scene__control-btn svg {
    height: 24px;
  }
}

/* line 864, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__control.wall-scene__control-upload input {
  position: absolute;
  visibility: hidden;
}

/* line 871, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
.wall-scene .wall-scene__body {
  flex: 1;
  width: 100%;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 871, app/assets/stylesheets/user_site/blocks/3d-preview/../../themes/mixins.scss */
  .wall-scene .wall-scene__body {
    order: 1;
  }
}

/* line 6, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene {
  --button-field-height: 38px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999999;
  display: none;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* line 20, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene.is-active {
  display: block;
}

@media only screen and (min-width: 40.063em) {
  /* line 6, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene {
    min-width: 100%;
    min-height: inherit;
  }
}

/* line 29, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 36, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__topbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: auto;
}

/* line 45, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__content {
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 51, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* line 62, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__placeholder.hide {
  display: none;
}

/* line 67, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__placeholder-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 20px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* line 76, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__placeholder-inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  opacity: 0.5;
}

/* line 85, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__controls,
.wall-scene .wall-scene__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 85, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__controls,
.wall-scene .wall-scene__options {
    gap: 12px;
  }
}

/* line 98, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__controls .wall-scene__options {
  flex-wrap: nowrap;
  gap: 10px;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: landscape) {
  /* line 98, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__controls .wall-scene__options {
    gap: 12px;
  }
}

/* line 107, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__controls .wall-scene__options #sizes_dynamic {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* line 114, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__controls .wall-scene__options_merch-options:empty {
  display: none;
}

/* line 118, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__controls .wall-scene__options_merch-options #sizes_dynamic {
  flex-wrap: nowrap;
}

/* line 124, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene__option {
  position: relative;
  cursor: pointer;
}

/* line 128, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene__option::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(135deg);
  content: "";
  pointer-events: none;
}

/* line 143, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene__option_active {
  display: block;
}

/* line 147, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .gooten_option {
  margin: 0 5px;
}

/* line 150, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .gooten_option label {
  max-width: 110px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 157, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .gooten_option select {
  min-width: 100px;
  padding-right: 26px;
}

/* line 164, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control .wall-scene__input,
.wall-scene .wall-scene__control .wall-scene__button {
  padding-right: 24px;
  font-weight: normal;
  font-family: inherit;
  cursor: pointer;
}

/* line 171, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control .wall-scene__input:hover,
.wall-scene .wall-scene__control .wall-scene__button:hover {
  position: unset;
  top: unset;
}

/* line 177, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control .wall-scene__button {
  color: var(--wp-color-text-1);
  background-color: var(--wp-color-bg-1);
  border-color: var(--wp-color-border-1);
}

/* line 182, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control .wall-scene__button:hover {
  color: var(--wp-color-text-2);
  background-color: var(--wp-color-bg-2);
  border-color: var(--wp-color-border-2);
}

/* line 190, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene canvas {
  width: inherit;
  height: inherit;
  border: 1px solid #ccc;
  outline: none;
  transition: opacity 0.2s;
  touch-action: none;
}

/* line 199, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene._with-loader canvas {
  opacity: 0;
}

/* line 203, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene__footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
}

/* line 211, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control-btn .screenshot-icon,
.wall-scene .wall-scene__control-btn .add-to-cart-icon {
  width: 20px;
  margin: 0 10px 0 0;
}

/* line 220, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control-btn:hover .screenshot-icon path,
.wall-scene .wall-scene__control-btn:hover .add-to-cart-icon path {
  transition: all 0.2s;
}

/* line 227, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene .wall-scene__control-btn-text {
  display: inline-flex;
  align-items: center;
}

/* line 233, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-controls {
  display: flex;
  justify-content: center;
}

/* line 237, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-controls__options {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 0;
  align-items: center;
  margin-right: 10px;
  list-style: none;
}

/* line 246, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-controls__action-buttons {
  display: flex;
  grid-gap: 10px;
}

/* line 253, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .medium-option-section span {
  color: #686868;
  font-weight: 400;
  font-size: 12px;
  font-family: sans-serif;
  line-height: normal;
  text-align: center;
}

/* line 262, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .finishes-container {
  margin: 0;
}

/* line 266, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .product-form-subheading {
  display: none;
}

/* line 270, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .product-form-options input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* line 277, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .product-form-options .product-sizes {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 10px 5px 5px;
  border: 1px solid transparent;
}

/* line 285, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .product-form-options .product-sizes.input-checked-state,
.wall-scene-tooltip .product-form-options input[selected] ~ .medium-option-section {
  border-color: #000;
}

/* line 290, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .product-form-options label {
  display: block;
}

/* line 294, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .product-form-options .medium-option-section {
  margin: 0;
}

/* line 298, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip #sizes_dynamic input {
  opacity: 0;
}

/* line 303, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip #product_form_container #styles .finishing {
  min-height: auto;
}

/* line 307, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip #product_form_container #styles .print_options_container {
  margin-bottom: 15px;
}

/* line 312, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .fa-circle-question {
  display: none;
}

/* line 315, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .fa-circle-question::before {
  display: none;
}

/* line 320, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.wall-scene-tooltip .change-crop-size {
  display: none;
}

/* line 325, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
.fade-in {
  bottom: 0;
  opacity: 1;
}

@keyframes animatetop {
  from {
    top: 1%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* line 342, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
#babylonjsLoadingDiv {
  display: none !important;
}

@media (max-width: 768px) {
  /* line 348, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__topbar {
    margin: 0 0 20px;
    padding: 10px;
  }
  /* line 353, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__body {
    order: 2;
  }
  /* line 357, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__controls .wall-scene__options_merch-options #sizes_dynamic {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  /* line 362, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__controls-wrapper {
    flex-wrap: wrap;
    padding: 0;
  }
  /* line 367, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .gooten_option label,
.wall-scene .wall-scene__control .wall-scene__label {
    display: none;
  }
  /* line 372, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .gooten_option select,
.wall-scene .wall-scene__control .wall-scene__input {
    font-size: 14px;
  }
  /* line 377, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__logo-wrapper {
    display: none;
  }
  /* line 381, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene .wall-scene__close {
    margin: 0;
  }
  /* line 385, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene canvas {
    border: none;
  }
  /* line 390, app/assets/stylesheets/user_site/blocks/3d-preview/scene-preview.scss */
  .wall-scene-controls {
    display: none;
  }
}
@charset "UTF-8";
/* line 7, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .title {
  font-size: 16px;
  background: transparent;
  border: none !important;
}

/* line 13, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .art-store-tab-text {
  color: #a6a6a6;
  font-weight: normal;
  font-size: 18px;
  font-style: normal;
  line-height: 23px;
  background: white;
}

/* line 21, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .art-store-tab-text span {
  font-size: 16px;
  background: transparent;
  border: none;
}

/* line 29, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs section.active .art-store-tab-text {
  color: #333;
}

/* line 32, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs section.active .art-store-tab-text span {
  border-bottom: 1px solid #333;
}

/* line 884, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-subheading {
  padding-bottom: 5px;
}

/* line 889, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .size-partial .gooten-medium-options label,
.user-site-stores-art-upload-stores #product_builder_tabs .size-partial .gooten_option label,
.user-site-stores-art-upload-stores #product_builder_tabs .size-partial .gooten_option select {
  font-size: 14px;
}

/* line 896, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option {
  max-height: none;
  padding: 5px;
}

/* line 901, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options label,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option label {
  height: 100%;
  margin: 0;
}

/* line 906, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .product-sizes,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option .product-sizes {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 10px 5px 5px;
  border: 1px solid transparent;
}

/* line 913, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .product-sizes.input-checked-state,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option .product-sizes.input-checked-state {
  border-color: #000;
}

/* line 917, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .product-sizes span,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option .product-sizes span {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.33;
}

/* line 924, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .option-selected,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option .option-selected {
  display: none;
}

/* line 928, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options input,
.user-site-stores-art-upload-stores #product_builder_tabs .size-option input {
  position: absolute;
}

/* line 933, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options {
  width: 33%;
}

@media only screen and (min-width: 768px) {
  /* line 933, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
  .user-site-stores-art-upload-stores #product_builder_tabs .product-form-options {
    width: 20%;
  }
}

/* line 940, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options_hide {
  display: none;
}

/* line 944, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options img:not(.gooten-medium-preview) {
  width: 90px;
  min-width: auto;
  height: 42px;
  object-fit: contain;
}

/* line 951, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .gooten-wrapper {
  height: 100%;
}

/* line 955, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .gooten-medium-preview-wrap {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

/* line 962, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .product-form-options .gooten-medium-preview {
  width: 90px;
  pointer-events: none;
}

/* line 968, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .order-form-heading {
  font-weight: bold;
  font-size: 12px;
}

/* line 973, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .fa-circle-question {
  text-decoration: none;
}

/* line 976, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .fa-circle-question.medium-tooltip-link {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  cursor: default;
}

/* line 983, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .fa-circle-question.medium-tooltip-link:hover::before {
  color: #ccc;
}

/* line 989, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .fa-circle-question::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #000;
  font-size: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.2s;
  content: "ⓘ";
}

/* line 1007, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .size-option label,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .size-option label {
  height: var(--button-field-height, 38px);
}

/* line 1011, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .size-option input,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .size-option input {
  position: absolute;
}

/* line 1016, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes {
  padding: 0;
  border-color: #ccc;
  transition: background-color 0.2s;
}

/* line 1021, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes .size-label,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes .size-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* line 1028, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes .size-label span,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes .size-label span {
  color: #a6a6a6;
  transition: color 0.2s;
}

/* line 1034, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes:hover,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes:hover {
  border-color: #000;
}

/* line 1037, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes:hover .size-label span,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes:hover .size-label span {
  color: #000;
}

/* line 1042, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes.input-checked-state,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes.input-checked-state {
  background-color: #000;
  border-color: transparent;
}

/* line 1046, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs #sizes .product-sizes.input-checked-state .size-label span,
.user-site-stores-art-upload-stores #product_builder_tabs #greeting_card_orientation .product-sizes.input-checked-state .size-label span {
  color: #fff;
}

/* line 1055, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .canvas-container,
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .colors-container,
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .finishes-container,
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .left-options__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin: 0 -5px 15px;
}

/* line 1061, app/assets/stylesheets/user_site/blocks/art-upload-store/../../themes/mixins.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .canvas-container:only-child,
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .colors-container:only-child,
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .finishes-container:only-child,
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .left-options__inner:only-child {
  margin-top: 10px;
}

/* line 43, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .product-form-options > a.gooten-medium-popup-link {
  display: block;
  height: 100%;
  margin: 0;
  color: inherit;
  text-decoration: none;
}

/* line 51, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #product_builder_tabs .left-options .pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 3px;
}

/* line 62, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #sizes_dynamic #change_crop_size_large_screens {
  margin-top: 5px;
}

/* line 65, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #sizes_dynamic #change_crop_size_large_screens .submit-form-btn {
  width: auto;
}

/* line 69, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #sizes_dynamic #change_crop_size_large_screens > p {
  margin-top: 0;
}

/* line 74, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores .size-option [name="size"] {
  position: absolute;
}

/* line 78, app/assets/stylesheets/user_site/blocks/art-upload-store/art-upload-store.scss */
.user-site-stores-art-upload-stores #sizes .product-sizes {
  margin-top: 0;
}
/*




















*/
/* line 1, app/assets/stylesheets/user_site/blocks/3d-preview/3d-preview-btn-v2.scss */
.see-on-scene-btn-js {
  position: relative;
}

/* line 4, app/assets/stylesheets/user_site/blocks/3d-preview/3d-preview-btn-v2.scss */
.see-on-scene-btn-js:hover {
  top: 1px;
}
/* line 1, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.coupon-message {
  outline: 2px solid #454545;
  outline-offset: -7px;
  text-align: center;
}

/* line 6, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.coupon-message.coupon-message_open {
  display: block;
  z-index: 10000000001;
  visibility: visible;
}

/* line 12, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.theme-version-three .coupon-message {
  position: fixed;
  font-family: 'Raleway', sans-serif;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  margin-left: 0;
  width: 630px;
  z-index: 10000000001;
  border: 0px;
  outline: none;
  max-height: 100%;
  overflow-y: auto;
}

@media (max-width: 768px) {
  /* line 12, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
  .theme-version-three .coupon-message {
    left: 0;
    width: 100%;
  }
}

/* line 34, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.theme-version-three .coupon-message .close-reveal-modal {
  font-size: 40px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 46, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.coupon-message__inner {
  padding-top: 10px;
}

@media (min-width: 768px) {
  /* line 46, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
  .coupon-message__inner {
    padding: 10px 20px 0;
  }
}

/* line 54, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.coupon-message__text {
  text-align: center;
  font-size: 22px;
}

/* line 58, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.theme-version-three .coupon-message__text {
  color: #000;
}

/* line 63, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.coupon-message__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  font-size: 13px;
  height: 40px;
  padding: 0 20px;
  white-space: nowrap;
  border: none;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 20px auto 15px;
  width: 130px;
}

/* line 82, app/assets/stylesheets/user_site/blocks/coupon-message/coupon_message.scss */
.coupon-message__note {
  color: #000;
}
/*



*/
/*

*/

:root {
  --color-poduct-page-1: white;
  --color-poduct-page-2: #ffa61e;
  --color-poduct-page-3: #ffffff80;
  --color-poduct-page-4: black;
}

html {
  min-width: 100%;
  background: none;
}

#website_body_container .website-body {
  width: 100%;
  padding: 0;
}

.wrap {
  max-width: 1260px;
  margin: 0 auto !important;
  padding-right: 20px;
  padding-left: 20px;
}

#website_body_container {
  max-width: 100%;
  margin: 0 auto;
}

#scrolling_header_and_navigation {
  left: 0;
  z-index: 1000000000;
  display: none;
  margin-top: 0;
  padding-right: 0;
  padding-left: 0;
  background: #fff;
  border-bottom: 1px solid #ccc;
  opacity: 0.95;  /* make things invisible upon start */
}

#scrolling_header_and_navigation .logo {
  text-align: left;
}

#scrolling_header_and_navigation .nav-outer {
  padding-right: 0;
}

#scrolling_header_and_navigation .ddsmoothmenu ul li a {
  color: black;
  font-size: 12px;
}

#scrolling_header_and_navigation .ddsmoothmenu ul li ul li a {
  color: #555;
}

#scrolling_header_and_navigation .ddsmoothmenu ul li a:hover {
  color: black;
}

#scrolling_header_and_navigation .navigation-menu::before {
  border: none;
}

#top_controls {
  max-width: 100%;
}

.prev-next-button-bar.wrap {
  padding-bottom: 40px;
}

.top-controls.wrap,
#trust-bar .wrap {
  float: none;
}

.flash-container {
  margin-bottom: 20px;
}

.flash-container .wrap {
  padding-right: 0;
  padding-left: 0;
}

body.dark .form-page p,
body.dark .form-page a:link,
body.dark.astute .form-page .form .required-tip p,
body#user_website.dark.astute .form-page .form label {
  color: #fff;
}

.content-area div.form-page div.columns.global-form-details {
  padding: 30px;
}

.form-page .global-form-details .required-tip,
.form-page .global-form-details .required-tip p {
  margin-bottom: 0 !important;
  color: #999;
}

#user_site_apps_sessions_new .sign-in-column input[type="submit"],
#user_site_apps_sessions_new .sign-in-column.new-customer .submit-form-btn {
  height: 48px;
  padding: 15px;
  font-size: 13px;
  line-height: 1.3;
}

.form-page .global-form-details form {
  padding-left: 0;
}

@media only screen and (width >= 58.75em) {
  #user_website #scrolling_header_and_navigation #scrolling_navigation .navigation-menu {
    padding-right: 45px;
  }

  .wrap {
    max-width: 1300px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .prev-next-button-bar.wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .logo-slogan {
    margin-left: -0.1375em;
  }

  .logo {
    margin-top: 20px;
  }

  /*  .scrolling .top-controls #account_container,
  .scrolling .top-controls #search {
    display: none;
  } */

  #scrolling_header_and_navigation .logo-header img {
    max-height: 50px;
  }

  #scrolling_header_and_navigation .logo-slogan {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
  }

  #scrolling_header_and_navigation .logo-slogan.image {
    margin-top: 10px;
  }

  #scrolling_header_and_navigation {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .scrolling #scrolling_header_and_navigation {
    display: block;
    opacity: 0.98;  /* make things invisible upon start */
  }

  #scrolling_header_and_navigation .logo-nav-inline .wrap {
    padding-right: 60px;
  }

  .scrolling #shopping_cart_btn_sidebar.sidebar-widget {
    position: absolute;
    top: 25px;
    right: 0;
    z-index: 10001;
    display: block;
  }

  #header_and_navigation {
    opacity: 1;
  }

  .scrolling #header_and_navigation {
    opacity: 0;
  }

  .scrolling #shopping_cart_bar_container #shopping_cart_btn_sidebar.sidebar-widget a.submit-form-btn {
    padding: 10px;
  }

  .submit-form-btn,
  .submit-form-btn:link,
  .submit-form-btn:visited,
  button.submit-form-btn.crop-and-continue {
    padding: 12px 15px;
    color: white;
    font-size: 0.9em;
    text-decoration: none;
    background: #000;
    border: none;
    border-radius: 0;
    cursor: pointer;
    cursor: hand;
  }

  #user_site_products_art_print_products_show.art-store {
    min-width: 100%;
  }

  .product-photos {
    width: calc((100% - 30px) * 7 / 12);
    margin-right: 30px;
  }

  #product_form_container {
    width: calc((100% - 30px) * 5 / 12);
  }
}

@media only screen and (width >= 75em) {
  .jumbo .prev-next-button-bar.wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .jumbo .product-photos {
    margin-right: 32px;
  }
}

@media only screen and (width >= 85em) {
  .content-area .Clean .product-container.three-columns {
    min-width: auto;
    min-height: auto;
    text-align: center;
  }

  .content-area .Clean .product-container.three-columns img {
    max-width: 100%;
    max-height: 100%;
  }

  a div.photo-hover {
    width: 260px;
    height: 260px;
  }

  .photo-inner-container img {
    max-width: 235px;
    max-height: 235px;
  }

  .choose-crop-size {
    text-align: left;
  }

  .see-on-wall-link {
    text-align: left;
  }

  div.medium-option-section:hover a.medium-tooltip-link {
    display: block;
  }

  .drag-drop-upload-box {
    display: block;
  }

  .content-area a.see-on-wall-btn.condensed,
  .content-area a.see-on-wall-btn.condensed.email-friend {
    display: none;
  }

  /*  .content-area a.see-on-wall-btn,
  .content-area a.see-on-wall-btn.email-friend {
    padding: 13px 20px;
  } */

  .product-info-container {
    display: block;
  }

  #mediums div.product-sizes,
  #styles div.product-sizes,
  #frames div.product-sizes {
    width: 95%;
  }

  .theme-version-two .art-store-tab-text span {
    font-size: 1em;
  }

  .social-sharing-icons {
    text-align: left;
  }

  .main-product-display #paper_preview {
    max-width: 700px;
  }

  .main-product-display .metal-preview .product-inner-container,
  div.art-store div.wall-peel-preview .product-inner-container {
    max-width: 700px;
    max-height: 700px;
  }

  div.art-store div#wall_peel_preview .product-inner-container {
    max-width: 730px;
    max-height: 730px;
  }

  div.art-store .main-product-display .product-inner-container,
  .main-product-display .frame-medium {
    max-width: 100%;
    max-height: 700px;
  }

  div.art-store .main-product-display .original-art-preview .product-inner-container {
    display: initial;
  }

  .main-product-display .canvas-wrap-overflowed,
  .main-product-display .canvas-main-overflowed img,
  .main-product-display .canvas-left-overflowed img,
  .main-product-display .canvas-top-overflowed img {
    max-width: 700px;
    max-height: 700px;
    overflow: hidden;
  }

  .main-product-display .canvas-overflow-shade {
    max-width: 700px;
    max-height: 700px;
  }

  .main-product-display .canvas-wrap,
  .main-product-display .canvas-wrap-border {
    max-width: 700px;
    max-height: 700px;
    overflow: hidden;
  }

  .main-product-display .canvas-main img,
  .main-product-display .canvas-top img,
  .main-product-display .canvas-left img,
  .main-product-display .canvas-main-border img,
  .main-product-display .canvas-top-border img,
  .main-product-display .canvas-left-border img {
    max-width: 670px;
    max-height: 670px;
    overflow: hidden;
  }

  div.main-product-display div#canvas_wrap_overflowed_new_preview div.canvas-main {
    max-width: 670px;
    max-height: 670px;
  }

  .product-container.four-columns .top-controls {
    right: 5px;
  }
}

.content-area .global-form-details.new-customer a.submit-form-btn {
  padding: 20px;
}

.theme-version-two .Traditional,
.content-area .Traditional {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  width: 100%;
}

.user-form-field-label input[type="text"],
.user-form-field-label + input[type="text"],
.user-form-field-label input[type="number"],
.user-form-field-label input[type="password"],
.shopping-cart .coupon-code__field,
.shopping-cart .coupon-code__button {
  height: 50px;
}

div.shopping-cart select#billing_address_country,
div.shopping-cart select#billing_address_state,
div.shopping-cart select#shipping_address_country,
div.shopping-cart select#shipping_address_state,
div.shopping-cart select#payment_type {
  color: #222;
  font-size: 1.1em;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}

.shopping-cart .user-form-field-label input[type="number"] {
  background-color: #f9f9f9;
}

.update-favorite-list .share-favorite-list-form {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

@media only screen and (width >= 58.75em) {
  .update-favorite-list .switch {
    font-size: 16px;
  }
}

#product_gallery .Masonry.caption-style-1 .category {
  --line-height-1: 1.2125em;
}

@media (width >= 768px) {
  #product_gallery .Masonry.caption-style-1 .category {
    --line-height-1: 1.4;
  }
}

.google-pay-button,
.afterpay-button,
.paypal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0;
  color: #fff;
  background-color: #000;
  border: none;
  box-shadow: none;
}

.dark .google-pay-button:hover,
.dark .google-pay-button:focus,
.dark .afterpay-button:hover,
.dark .afterpay-button:focus,
.dark .paypal-button:hover,
.dark .paypal-button:focus {
  color: #fff;
  background-color: #000;
}

.theme-version-two.prestige .google-pay-button:hover,
.theme-version-two.prestige .afterpay-button:hover,
.theme-version-two.prestige .paypal-button:hover {
  color: #fff;
  background-color: #000;
}

.dark #payment_method .or_condition {
  color: inherit;
}

.headline_with-control .submit-form-btn,
.address-select__submit-button-wrapper .submit-form-btn {
  margin-bottom: 0;
  line-height: normal;
}

.address-select__submit-button-wrapper .submit-form-btn {
  color: #fff;
  font-size: 1em;
}

.dark .content-area .address-select__submit-button-wrapper .submit-form-btn {
  color: #fff;
  background-color: #000;
}
