#product-modal {
  background: white;
}
@media (max-width: 991px) {
  #product-modal {
    background: white !important;
  }
  #product-modal .product-customizer__thumbnail-inner {
    top: 0px;
    position: static;
    width: 100%;
    left: 0;
    background: white;
    z-index: 2;
    box-shadow: 0px -10px 25px #484848;
    background-image: url(/themes/ultrasshop/assets/img/bg-mobile.webp);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #product-modal .product-customizer__thumbnail-inner .product-customizer__upload-file .btn {
    font-size: 0.875rem;
    padding: 0.575rem 1rem;
  }
  #product-modal.fixed-view .product-customizer__thumbnail-inner {
    position: fixed !important;
  }
  #product-modal.fixed-view .product-customizer__color-picker {
    height: 62dvh;
  }
}

#product-modal label {
  color: black;
  font-weight: 700;
  font-size: 1rem;
}

.modal-body .row:nth-child(1) {
  margin-right: 20px;
  padding: 20px;
}

canvas {
  border: 1px solid #ccc;
}

#product-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#product-price {
  font-size: 24px;
}

#imageUploadToRect {
  display: none;
}

#groupSelect {
  display: none;
}

#productDesignerImageData,
#productDesignerStageData,
#producerData,
#combinationSettings,
#ajaxControllerUrl,
#scarfImage,
#scarfImageShadow {
  display: none;
}

#widthSelect,
#heightSelect,
#hookTypeSelect,
label.labelForMinimalPriceInput {
  display: block;
}

select#widthSelect + span {
  right: 1.5rem;
}

#producerSettingsWrapper #producerColorSelectWrapper {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  flex-direction: row;
}
#producerSettingsWrapper #producerSizeSelectWrapper {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
#producerSettingsWrapper #producerSizeSelectWrapper .product-customizer__size-inner {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
#producerSettingsWrapper #producerSizeSelectWrapper .sizeWrapper {
  border: 2px solid black;
  border-radius: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#producerSettingsWrapper #producerSizeSelectWrapper .sizeWrapper.disallowedSize {
  border: 2px solid #ececec;
}
#producerSettingsWrapper #producerSizeSelectWrapper .sizeWrapper.disallowedSize .product-customizer__size-input-container {
  display: none;
}
#producerSettingsWrapper #producerSizeSelectWrapper .sizeWrapper input {
  background: black;
}
#producerSettingsWrapper #producerSizeSelectWrapper .sizeInputLabel {
  text-align: center;
  padding: 0.325rem 1rem;
}
#producerSettingsWrapper #producerSizeSelectWrapper input[type=number] {
  width: 22px;
  appearance: textfield;
  -moz-appearance: textfield;
  color: white;
  outline: 0;
  border: 0;
  text-align: center;
}

.product-customizer {
  display: grid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  min-height: 46.625rem;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.product-customizer__background {
  grid-row: 1;
  grid-column: 1;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  width: auto;
  display: none;
}
.product-customizer label {
  margin-bottom: 0;
  text-align: left;
}
.product-customizer__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1.5rem;
  grid-row: 1;
  grid-column: 1;
  padding: 1.5rem;
}
@media (max-width: 991px) {
  .product-customizer__wrapper {
    padding: 0;
  }
}
.product-customizer__name {
  font-size: clamp(1.75rem, 2.6vw, 3.125rem);
  font-weight: bold;
  line-height: 1.5em;
  color: black;
  margin-bottom: 1.5rem;
}
.product-customizer__form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 100%;
}
.product-customizer__form-group:empty {
  display: none !important;
}
.product-customizer__form-group select {
  border: 2px solid #ececec;
  padding: 0.35rem 0.75rem;
  line-height: 1.5625rem;
  width: fit-content;
  border-radius: 4px;
}
.product-customizer__form-group input {
  border: 2px solid;
  border-radius: 4px;
  padding: 0.5rem;
  font-weight: bold;
  max-width: 150px;
  background: white;
}
.product-customizer__form-group .validation-box {
  background: black;
  color: white;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 110%;
  width: max-content;
  width: 150px;
  font-size: 0.875rem;
  transition: 300ms all;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.product-customizer__form-group .validation-box.active {
  opacity: 1;
  visibility: visible;
}
.product-customizer__form-group.type-size {
  flex-direction: row;
  gap: 0.5rem;
}
.product-customizer__form-group.type-size input {
  border: 0;
  padding: 0;
  color: black;
  max-width: 60px;
}
.product-customizer__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 480px) {
  .product-customizer__actions {
    flex-direction: column;
    align-items: normal;
  }
}
.product-customizer__upload-file {
  color: white !important;
  border-radius: 4px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  cursor: pointer;
  transition: 300ms all;
  line-height: 1;
  font-weight: 400;
}
.product-customizer__upload-file span {
  color: black;
  font-weight: 400;
}
.product-customizer__upload-file div {
  padding: 1.25rem 2.75rem;
}
.product-customizer__add-to-cart {
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-weight: bold;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 0.5rem;
  background: #ec0f1e;
  border: 0;
  color: white;
  transition: 500ms all ease-in-out;
}
.product-customizer__add-to-cart:hover {
  box-shadow: 0px 2px 20px #ee0004;
}
.product-customizer__producer-settings {
  display: flex;
  flex-direction: column;
}
.product-customizer__size-input-container {
  display: flex;
  align-items: center;
  background: black;
  width: 100%;
  padding: 0.25rem;
  color: white;
}
.product-customizer__size-input-container div {
  cursor: pointer;
}
.product-customizer__picked-color {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .product-customizer__picked-color {
    align-items: center;
    gap: 0.5rem;
  }
}
.product-customizer__picked-color-inner {
  display: flex;
  gap: 1rem;
  color: black;
  align-items: center;
}
.product-customizer__picked-color-info {
  display: flex;
  align-items: center;
}
.product-customizer__picked-color-info div:first-child {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.product-customizer__picked-color-edit {
  font-size: 0.9375rem;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  .product-customizer__picked-color-edit {
    display: none;
  }
}
.product-customizer__picked-color-edit::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.983' height='24.982' viewBox='0 0 24.983 24.982'%3E%3Cg id='Group_309' data-name='Group 309' transform='translate(0 -0.501)'%3E%3Cpath id='Path_5334' data-name='Path 5334' d='M19.778,94.144a1.041,1.041,0,0,0-1.041,1.041v8.328a1.042,1.042,0,0,1-1.041,1.041H3.123a1.042,1.042,0,0,1-1.041-1.041V88.939A1.042,1.042,0,0,1,3.123,87.9h8.328a1.041,1.041,0,0,0,0-2.082H3.123A3.127,3.127,0,0,0,0,88.939v14.574a3.127,3.127,0,0,0,3.123,3.123H17.7a3.127,3.127,0,0,0,3.123-3.123V95.185a1.04,1.04,0,0,0-1.041-1.041Zm0,0' transform='translate(0 -81.152)'/%3E%3Cpath id='Path_5335' data-name='Path 5335' d='M182.7,76.5a.527.527,0,0,0-.143.265l-.736,3.681a.52.52,0,0,0,.511.622.5.5,0,0,0,.1-.01l3.68-.736a.518.518,0,0,0,.266-.143l8.236-8.236-3.68-3.68Zm0,0' transform='translate(-172.937 -64.455)'/%3E%3Cpath id='Path_5336' data-name='Path 5336' d='M396.566,1.262a2.6,2.6,0,0,0-3.68,0L391.445,2.7l3.68,3.68,1.441-1.441a2.6,2.6,0,0,0,0-3.68Zm0,0' transform='translate(-372.345 0)'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.product-customizer #modalContentWrapper {
  position: relative;
}
@media (min-width: 992px) and (max-width: 1920px) {
  .product-customizer #modalContentWrapper {
    padding-right: 2.5vw;
  }
}
@media (min-width: 1921px) {
  .product-customizer #modalContentWrapper {
    padding-right: 2rem;
  }
}
.product-customizer__color-picker {
  padding: 1rem;
  max-width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
  border: 1px solid #707070;
  border-radius: 7px;
  z-index: 10;
  transition: 300ms all;
  opacity: 0;
  visibility: hidden;
}
.product-customizer__color-picker.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .product-customizer__color-picker {
    height: calc(62dvh - 78px);
    position: fixed;
    z-index: 1002;
    top: unset !important;
    bottom: 0 !important;
    left: 0 !important;
    overflow: auto;
    border-radius: 0;
    border: 0;
    transform: translateY(150%);
    width: 100%;
    max-width: unset;
    transition: 500ms all;
    display: flex;
    flex-direction: column;
  }
  .product-customizer__color-picker.active {
    transform: translateY(0);
  }
}
.product-customizer__color-picker-inner {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .product-customizer__color-picker-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: auto;
    padding: 1rem 0;
  }
}
.product-customizer__color-picker-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: black;
  display: flex;
  justify-content: space-between;
}
.product-customizer__color-picker-title span {
  cursor: pointer;
}
.product-customizer__color-picker-close {
  margin-top: auto;
  padding: 1rem;
}
@media (min-width: 992px) {
  .product-customizer__color-picker-close {
    display: none;
  }
}
.product-customizer .producerColorWrapper {
  display: block;
  cursor: pointer;
  border: 1px solid rgb(236, 236, 236);
  border-radius: 50%;
  position: relative;
}
.product-customizer .producerColorWrapper.selectedColor {
  border-color: black;
}
.product-customizer .producerColorWrapper.selectedColor::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.123' height='11.609' viewBox='0 0 16.123 11.609'%3E%3Cpath id='Vector' d='M3579.151,270.726l-8.506,8.415a1.626,1.626,0,0,1-2.282,0l-4.391-4.345a1.584,1.584,0,0,1,0-2.258,1.626,1.626,0,0,1,2.282,0l3.25,3.216,7.364-7.287a1.625,1.625,0,0,1,2.282,0A1.586,1.586,0,0,1,3579.151,270.726Z' transform='translate(-3563.5 -268)'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 50%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.product-customizer .producerColorWrapper.selectedColor .producerColorPicker {
  box-shadow: 0px 0px 8px #ee0004;
}
.product-customizer .producerColorWrapper .producerColorPicker {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  border: 1px solid #898a8b;
  transition: 300ms all;
}
.product-customizer .producerColorWrapper .producerColorPicker:hover {
  box-shadow: 0px 0px 8px #ee0004;
}
@media (max-width: 991px) {
  .product-customizer .producerColorWrapper .producerColorPicker {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.product-customizer__footer {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.product-customizer__price-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-customizer__price-group {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}
@media (max-width: 639px) {
  .product-customizer__price-group {
    gap: 0.5rem;
    flex-direction: column;
    justify-content: flex-end;
  }
  .product-customizer__price-group > div:first-child {
    margin-bottom: 0;
  }
}
.product-customizer__quantity {
  display: flex;
  align-items: center;
}
.product-customizer__quantity .qty-btn {
  background: #ececec;
  color: black;
  width: 43px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-customizer__quantity .qty-input {
  border: #ececec 1px solid;
  color: black;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  border-radius: 0;
}
.product-customizer__total-price {
  font-weight: bold;
  color: black;
  line-height: 1;
  margin-bottom: 0;
  text-align: right;
}
.product-customizer__total-price.active {
  font-size: 2rem !important;
}
.product-customizer__total-price.active + div {
  display: block;
}
.product-customizer__price-per-piece {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0;
  text-align: right;
  text-wrap: nowrap;
}
@media (max-width: 639px) {
  .product-customizer__price-per-piece {
    font-size: 0.875rem;
  }
}
.product-customizer__price-per-piece.active + div {
  display: block;
}
.product-customizer__price-label, .product-customizer__price-per-piece-label {
  font-size: 0.75rem;
  color: #c1c1c1;
  text-align: right;
  display: none;
}
.product-customizer.product-sticker-paper-round .product-customizer__upload-box, .product-customizer.product-sticker-vinyl-round .product-customizer__upload-box {
  border-radius: 50%;
  width: 25vw;
  height: 25vw;
}
.product-customizer.product-sticker .product-customizer__upload-box {
  border: 0;
  background: transparent;
}
.product-customizer .ribbon {
  background-color: #59b81b;
  color: white;
  padding: 0.125rem 0 0.125rem 0.5rem;
  position: relative;
  display: inline-block;
  font-weight: bold;
  width: 75px;
  max-width: 100%;
  font-size: 0.875rem;
  border-radius: 2px;
}
@media (max-width: 1366px) {
  .product-customizer .ribbon {
    font-size: 0.75rem;
    width: 60px;
  }
}
.product-customizer .ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-width: 12px 10px 12px 0px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}
.product-customizer .custom-qty {
  border: 2px solid;
  border-radius: 4px;
  padding: 0.25rem;
  font-weight: bold;
  max-width: 70px;
  background: white;
  max-height: 31px;
}

#sizeSelectorWrapper {
  display: flex;
  gap: 1rem;
}
#sizeSelectorWrapper span {
  position: absolute;
  color: black;
  right: 0.5rem;
  top: 46px;
}

.product-customizer__settings {
  max-height: unset;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  padding: 0 1rem 1.5rem 1rem;
}
@media (min-width: 992px) {
  .product-customizer__settings {
    max-width: 760px;
    padding-left: 3rem;
    padding-right: 1rem;
    max-height: 50rem;
  }
}
.product-customizer__upload-box {
  background: white;
  position: absolute;
  border: 2px solid black;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.product-customizer__upload-box .product-customizer__upload-file {
  flex-direction: column-reverse;
  height: auto;
  color: #858585;
  font-weight: 400;
}
.product-customizer__upload-box .product-customizer__upload-file div {
  padding: 0.875rem 1rem;
  margin: -1px;
}
.product-customizer__upload-box .product-customizer__upload-file div,
.product-customizer__upload-box .product-customizer__upload-file span {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.25rem;
  align-items: center;
  font-weight: 400;
}

.product-customizer.product-flag .product-customizer__wrapper {
  grid-template-columns: 53fr 47fr;
}
.product-customizer.product-flag .product-customizer__upload-box {
  top: 25%;
  height: 33%;
}
.product-customizer.product-flag .product-customizer__upload-box + .product-customizer__upload-box {
  top: 75%;
  transform: translate(-50%, -50%) scaleX(-1);
}
.product-customizer.product-scarf .product-customizer__wrapper, .product-customizer.product-scarf-knitted .product-customizer__wrapper, .product-customizer.product-sticker-paper-square .product-customizer__wrapper, .product-customizer.product-sticker-paper-round .product-customizer__wrapper, .product-customizer.product-sticker-paper-multipack .product-customizer__wrapper {
  grid-template-columns: 55fr 45fr;
}
.product-customizer.product-scarf.product-scarf .table-container, .product-customizer.product-scarf.product-scarf-knitted .table-container, .product-customizer.product-scarf-knitted.product-scarf .table-container, .product-customizer.product-scarf-knitted.product-scarf-knitted .table-container, .product-customizer.product-sticker-paper-square.product-scarf .table-container, .product-customizer.product-sticker-paper-square.product-scarf-knitted .table-container, .product-customizer.product-sticker-paper-round.product-scarf .table-container, .product-customizer.product-sticker-paper-round.product-scarf-knitted .table-container, .product-customizer.product-sticker-paper-multipack.product-scarf .table-container, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .table-container {
  max-height: 210px;
}
@media (min-width: 992px) {
  .product-customizer.product-scarf.product-scarf #modalContentWrapper, .product-customizer.product-scarf.product-scarf-knitted #modalContentWrapper, .product-customizer.product-scarf-knitted.product-scarf #modalContentWrapper, .product-customizer.product-scarf-knitted.product-scarf-knitted #modalContentWrapper, .product-customizer.product-sticker-paper-square.product-scarf #modalContentWrapper, .product-customizer.product-sticker-paper-square.product-scarf-knitted #modalContentWrapper, .product-customizer.product-sticker-paper-round.product-scarf #modalContentWrapper, .product-customizer.product-sticker-paper-round.product-scarf-knitted #modalContentWrapper, .product-customizer.product-sticker-paper-multipack.product-scarf #modalContentWrapper, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted #modalContentWrapper {
    margin-right: 3.33dvw;
  }
}
@media (min-width: 1921px) {
  .product-customizer.product-scarf.product-scarf #modalContentWrapper, .product-customizer.product-scarf.product-scarf-knitted #modalContentWrapper, .product-customizer.product-scarf-knitted.product-scarf #modalContentWrapper, .product-customizer.product-scarf-knitted.product-scarf-knitted #modalContentWrapper, .product-customizer.product-sticker-paper-square.product-scarf #modalContentWrapper, .product-customizer.product-sticker-paper-square.product-scarf-knitted #modalContentWrapper, .product-customizer.product-sticker-paper-round.product-scarf #modalContentWrapper, .product-customizer.product-sticker-paper-round.product-scarf-knitted #modalContentWrapper, .product-customizer.product-sticker-paper-multipack.product-scarf #modalContentWrapper, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted #modalContentWrapper {
    margin-right: 4rem;
  }
}
.product-customizer.product-scarf.product-scarf .product-customizer__upload-file, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-file, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-file, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-file, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-file, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-file, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-file, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-file, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-file, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-file {
  flex-direction: row;
}
.product-customizer.product-scarf.product-scarf .product-customizer__upload-file span,
.product-customizer.product-scarf.product-scarf .product-customizer__upload-file div, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-file span,
.product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-file div, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-file span,
.product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-file div, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-file span,
.product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-file div, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-file span,
.product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-file div, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-file span,
.product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-file div, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-file span,
.product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-file div, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-file span,
.product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-file div, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-file span,
.product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-file div, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-file span,
.product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-file div {
  display: block;
}
.product-customizer.product-scarf.product-scarf .product-customizer__upload-box, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-box, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-box, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-box, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-box, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-box, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-box, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-box, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-box, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-box {
  background: transparent;
  width: auto;
  height: auto;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.product-customizer.product-scarf.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-box.front-scarf {
  top: 210px;
}
@media (max-width: 1920px) {
  .product-customizer.product-scarf.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-box.front-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-box.front-scarf {
    top: 10.5dvw;
  }
}
.product-customizer.product-scarf.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-box.reverse-scarf {
  top: 420px;
}
@media (max-width: 1920px) {
  .product-customizer.product-scarf.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-scarf.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-scarf-knitted.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-scarf-knitted.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-square.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-square.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-round.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-round.product-scarf-knitted .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf .product-customizer__upload-box.reverse-scarf, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted .product-customizer__upload-box.reverse-scarf {
    top: 21dvw;
  }
}
.product-customizer.product-scarf.product-scarf #imageUploadToRect, .product-customizer.product-scarf.product-scarf-knitted #imageUploadToRect, .product-customizer.product-scarf-knitted.product-scarf #imageUploadToRect, .product-customizer.product-scarf-knitted.product-scarf-knitted #imageUploadToRect, .product-customizer.product-sticker-paper-square.product-scarf #imageUploadToRect, .product-customizer.product-sticker-paper-square.product-scarf-knitted #imageUploadToRect, .product-customizer.product-sticker-paper-round.product-scarf #imageUploadToRect, .product-customizer.product-sticker-paper-round.product-scarf-knitted #imageUploadToRect, .product-customizer.product-sticker-paper-multipack.product-scarf #imageUploadToRect, .product-customizer.product-sticker-paper-multipack.product-scarf-knitted #imageUploadToRect {
  display: none !important;
}
.product-customizer.product-scarf.product-scarf #groupDataArea:not(:empty), .product-customizer.product-scarf.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-scarf-knitted.product-scarf #groupDataArea:not(:empty), .product-customizer.product-scarf-knitted.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-square.product-scarf #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-square.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-round.product-scarf #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-round.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-multipack.product-scarf #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-multipack.product-scarf-knitted #groupDataArea:not(:empty) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .product-customizer.product-scarf.product-scarf #groupDataArea:not(:empty), .product-customizer.product-scarf.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-scarf-knitted.product-scarf #groupDataArea:not(:empty), .product-customizer.product-scarf-knitted.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-square.product-scarf #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-square.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-round.product-scarf #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-round.product-scarf-knitted #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-multipack.product-scarf #groupDataArea:not(:empty), .product-customizer.product-sticker-paper-multipack.product-scarf-knitted #groupDataArea:not(:empty) {
    margin-top: 0;
    padding: 2rem 1rem 1rem;
  }
}
.product-customizer.product-scarf.product-sticker-circle .product-sticker-circle .product-customizer__upload-box, .product-customizer.product-scarf-knitted.product-sticker-circle .product-sticker-circle .product-customizer__upload-box, .product-customizer.product-sticker-paper-square.product-sticker-circle .product-sticker-circle .product-customizer__upload-box, .product-customizer.product-sticker-paper-round.product-sticker-circle .product-sticker-circle .product-customizer__upload-box, .product-customizer.product-sticker-paper-multipack.product-sticker-circle .product-sticker-circle .product-customizer__upload-box {
  width: 22vw;
  height: 22vw;
  border-radius: 50%;
}

#container {
  margin: auto;
}

.product-customizer:not(.product-wear) #container,
.product-customizer:not(.product-wear) .konvajs-content,
.product-customizer:not(.product-wear) .konvajs-content canvas {
  width: 100% !important;
  aspect-ratio: 4/3;
  height: auto !important;
}

.product-customizer.product-scarf #container,
.product-customizer.product-scarf .konvajs-content,
.product-customizer.product-scarf .konvajs-content canvas,
.product-customizer.product-scarf-knitted #container,
.product-customizer.product-scarf-knitted .konvajs-content,
.product-customizer.product-scarf-knitted .konvajs-content canvas {
  aspect-ratio: 2/1;
}

.table-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.5fr;
  margin: 1px 0;
  color: black;
  position: relative;
  overflow: auto;
  max-height: 321px;
}

.table-header,
.table-row {
  display: contents;
}

.table-discount {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.ribbon__best-deal {
  background-color: red;
  color: white;
  padding: 0.125rem 0.25rem 0.125rem 0.25rem;
  position: relative;
  display: block;
  font-weight: bold;
  max-width: 100%;
  font-size: 0.875rem;
  border-radius: 2px;
}
@media (max-width: 1366px) {
  .ribbon__best-deal {
    font-size: 0.75rem;
  }
}
.ribbon__best-deal::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  border-width: 12px 10px 12px 0;
  border-style: solid;
  border-color: transparent red transparent transparent;
}

.table-row .table-quantity {
  cursor: pointer;
}
.table-row > div {
  border-bottom: 2px solid #ececec;
  padding: 10px;
}
@media (max-width: 1366px) {
  .table-row > div {
    padding: 10px 4px;
  }
}
.table-row > div:not(:last-child) {
  border-right: 2px solid #ECECEC;
}
.table-row:nth-child(odd) > div {
  background-color: #f9f9f9;
}
.table-row:nth-child(odd) > div .ribbon::after {
  border-color: transparent #f9f9f9 transparent transparent;
}
.table-row label {
  margin-left: 0.5rem;
}

.table-header div {
  background-color: #ededed;
  font-weight: bold;
  padding: 10px;
  border-bottom: 2px solid #ededed;
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-header div:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.46);
}

.product-sticker #priceType {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
.product-sticker #sizeAreaWrapper {
  width: 100%;
}
.product-sticker #modalContentWrapper {
  display: flex;
}
.product-sticker .product-customizer__thumbnail-inner {
  width: 100% !important;
  overflow: visible;
  height: auto !important;
  margin: auto;
}

.product-additional-info {
  background: #ec0f1e;
  padding: 0.5rem;
  min-height: 50.375rem;
}

@media (max-width: 991px) {
  .product-additional-info {
    background: transparent;
    padding: 0;
  }
  .product-customizer {
    border-radius: 0;
    min-height: unset;
  }
  .product-customizer__wrapper {
    grid-template-columns: 1fr !important;
  }
  .product-customizer__total-price.active {
    font-size: 2rem !important;
  }
  .product-customizer__quantity .qty-btn {
    width: 35px;
  }
  .product-customizer__quantity .qty-input {
    width: 60px;
  }
  .product-customizer__upload-box {
    width: 80%;
    height: 80%;
  }
  .product-customizer.product-sticker-circle .product-customizer__upload-box {
    width: 60vw;
    height: 60vw;
  }
}
.product-banderi-flag .product-customizer__upload-box,
.product-sector-flag .product-customizer__upload-box,
.product-fence-flag .product-customizer__upload-box,
.product-flag .product-customizer__upload-box {
  background: transparent;
  border: 0;
}

#scarfColorPicker {
  min-height: 210px;
  max-height: 210px;
  overflow: auto;
  margin: 0.5rem 0;
}
#scarfColorPicker .scarf-title {
  font-weight: bold;
}
#scarfColorPicker #scarfKnittedSelectedColors {
  font-weight: bold;
}
#scarfColorPicker .scarf-helper {
  margin-top: 0.5rem;
}
#scarfColorPicker .scarfs-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-left: 0.5rem;
}
#scarfColorPicker .scarf-color {
  border: 1px solid #ababab;
  border-radius: 7px;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  transition: 300ms all;
}
#scarfColorPicker .scarf-color:hover {
  box-shadow: 0px 0px 8px #ee0004;
}
#scarfColorPicker .scarf-color > span {
  position: relative;
  width: 32px;
  height: 32px;
}
#scarfColorPicker .scarf-color.selected > span::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.123' height='11.609' viewBox='0 0 16.123 11.609'%3E%3Cpath id='Vector' d='M3579.151,270.726l-8.506,8.415a1.626,1.626,0,0,1-2.282,0l-4.391-4.345a1.584,1.584,0,0,1,0-2.258,1.626,1.626,0,0,1,2.282,0l3.25,3.216,7.364-7.287a1.625,1.625,0,0,1,2.282,0A1.586,1.586,0,0,1,3579.151,270.726Z' transform='translate(-3563.5 -268)'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 50%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#myTab {
  border-bottom: 0;
  margin-bottom: 1rem;
}
#myTab .nav-link {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-position: under;
  border: 0 !important;
  padding-left: 0;
}
#myTab .nav-link.active, #myTab .nav-link:hover {
  color: black;
}

#combinationSelect {
  display: none;
}

.product-wear #container {
  aspect-ratio: 4/3;
  width: auto !important;
  height: auto !important;
}
.product-wear .product-customizer__upload-file {
  display: none;
}
.product-wear .product-customizer__upload-file.active {
  display: flex;
}
.product-wear .product-customizer__price-group {
  justify-content: space-between;
  gap: 0;
  width: 100%;
}
.product-wear .product-customizer__price-group:has(.active) {
  gap: 1.5rem;
}
.product-wear .product-customizer__upload-file--mobile {
  display: none;
}
.product-wear .product-customizer__upload-file--mobile.active {
  display: none;
}
@media (max-width: 991px) {
  .product-wear #imageUploadToRect {
    display: none !important;
  }
  .product-wear .product-customizer__upload-file--mobile {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9;
  }
  .product-wear .product-customizer__upload-file--mobile.active {
    display: flex;
  }
  .product-wear .product-customizer__upload-file--mobile .btn {
    padding: 1rem;
  }
  .product-wear #rectSwitcherContainer {
    gap: 0.5rem;
    top: 16px;
    left: 16px;
    z-index: 9;
  }
  .product-wear #rectSwitcherContainer img {
    height: 40px;
    width: auto;
  }
  .product-wear.fixed-view #rectSwitcherContainer {
    position: fixed;
  }
  .product-wear.fixed-view .product-customizer__upload-file--mobile {
    position: fixed;
  }
}

#rectSwitcherContainer {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#rectSwitcherContainer > div {
  background: white;
  padding: 0.5rem 0.625rem 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  color: #9e9e9e;
  border: 1px solid #9e9e9e;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#rectSwitcherContainer > div.active {
  border: 1px solid black;
  color: black;
}

.changeGroupColorButton {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 1px solid #898a8b;
}
.changeGroupColorButton::after {
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.123' height='11.609' viewBox='0 0 16.123 11.609'%3E%3Cpath id='Vector' d='M3579.151,270.726l-8.506,8.415a1.626,1.626,0,0,1-2.282,0l-4.391-4.345a1.584,1.584,0,0,1,0-2.258,1.626,1.626,0,0,1,2.282,0l3.25,3.216,7.364-7.287a1.625,1.625,0,0,1,2.282,0A1.586,1.586,0,0,1,3579.151,270.726Z' transform='translate(-3563.5 -268)' fill='%23fff'/%3E%3C/svg%3E%0A");
}
.changeGroupColorButton.selected::after {
  content: "";
}
.changeGroupColorButton.selected.selected[data-color="#FFFFFF"]::after {
  content: "";
  filter: invert(1);
}

.color-area-wrapper .color-area-picker {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 991px) {
  .color-area-wrapper .color-area-picker {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.color-area-wrapper > label {
  margin-bottom: 1rem;
  font-weight: 400 !important;
}
.color-area-wrapper .changeGroupColorButton {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  border: 1px solid #898a8b;
  transition: 300ms all;
}
@media (max-width: 991px) {
  .color-area-wrapper .changeGroupColorButton {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.color-area-wrapper .changeGroupColorButton:hover, .color-area-wrapper .changeGroupColorButton.selected {
  box-shadow: 0px 0px 8px #ee0004;
}
.color-area-wrapper .changeGroupColorButton::after {
  width: 50%;
  height: 50%;
  background-size: contain;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.123' height='11.609' viewBox='0 0 16.123 11.609'%3E%3Cpath id='Vector' d='M3579.151,270.726l-8.506,8.415a1.626,1.626,0,0,1-2.282,0l-4.391-4.345a1.584,1.584,0,0,1,0-2.258,1.626,1.626,0,0,1,2.282,0l3.25,3.216,7.364-7.287a1.625,1.625,0,0,1,2.282,0A1.586,1.586,0,0,1,3579.151,270.726Z' transform='translate(-3563.5 -268)' fill='%23fff'/%3E%3C/svg%3E%0A");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.color-area-wrapper .changeGroupColorButton.selected::after {
  content: "";
}
.color-area-wrapper .changeGroupColorButton.selected.selected[data-color="#FFFFFF"]::after {
  content: "";
  filter: invert(1);
}

.scarfColorCounterSpan {
  width: 25px;
  height: 25px;
  display: inline-block;
  color: red;
  margin: 0 15px;
}

.scarfColorCounterSpan.checked {
  border: 1px solid black;
}

.color-picker-tab {
  gap: 2em;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.color-picker-tab.active {
  display: flex;
}
@media (max-width: 991px) {
  .color-picker-tab {
    justify-content: center;
    gap: 0.5rem;
    row-gap: 1.25rem;
    max-width: 320px;
    margin: auto;
  }
  .color-picker-tab.active {
    display: flex;
  }
}
@media (max-width: 991px) {
  .color-picker-tab .producer-color-select-wrapper {
    max-width: 90px;
    width: 100%;
  }
}
.color-picker-tab .producer-color-select-wrapper label {
  font-weight: 400 !important;
  cursor: pointer;
}
@media (max-width: 991px) {
  .color-picker-tab .producer-color-select-wrapper label {
    font-size: 0.8125rem !important;
    line-height: 1.2;
    min-height: 34px;
  }
}
.color-picker-tab .producer-color-select-wrapper label:hover {
  text-decoration: underline;
}
.color-picker-tab .producer-color-select-wrapper.active label, .color-picker-tab .producer-color-select-wrapper:hover label {
  text-decoration: underline;
}
.color-picker-tab .producer-color-select-wrapper.active .product-customizer__picked-color-selected, .color-picker-tab .producer-color-select-wrapper:hover .product-customizer__picked-color-selected {
  box-shadow: 0px 0px 15px #ee0004;
}
.color-picker-tab .producer-color-select-wrapper .product-customizer__picked-color-selected {
  transition: 300ms all;
  background: white;
}

@media (max-width: 991px) {
  .product-baclava-printed #imageUploadToRect {
    display: none !important;
  }
}
.product-baclava-printed .product-customizer__upload-file--mobile {
  display: none;
}
.product-baclava-printed #rectSwitcherContainer > div {
  padding: 0.5rem 1rem 0.125rem;
}
@media (max-width: 991px) {
  .product-baclava-printed .product-customizer__upload-file--mobile {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9;
    display: flex;
  }
  .product-baclava-printed .product-customizer__upload-file--mobile .btn {
    padding: 1rem;
  }
  .product-baclava-printed.fixed-view .product-customizer__upload-file--mobile {
    position: fixed;
  }
  .product-baclava-printed.fixed-view #rectSwitcherContainer {
    position: fixed;
    z-index: 9;
  }
  .product-baclava-printed #rectSwitcherContainer {
    gap: 0.5rem;
    top: 16px;
    left: 16px;
  }
  .product-baclava-printed #rectSwitcherContainer > div {
    padding: 0.25rem 1rem 0.125rem;
  }
  .product-baclava-printed #rectSwitcherContainer > div img {
    width: auto;
    height: 40px;
  }
}
@media (min-width: 992px) {
  .product-baclava-printed .product-customizer__thumbnail-inner {
    margin-left: 6rem;
  }
}

.product-baclava #container,
.product-baclava .konvajs-content,
.product-baclava canvas {
  aspect-ratio: 1/1 !important;
}

@media (min-width: 1921px) {
  .product-customizer.product-scarf #modalContentWrapper, .product-customizer.product-scarf-knitted #modalContentWrapper {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .product-customizer.product-scarf #modalContentWrapper, .product-customizer.product-scarf-knitted #modalContentWrapper {
    padding-right: 1vw;
  }
}
.product-customizer.product-scarf .product-customizer__wrapper, .product-customizer.product-scarf-knitted .product-customizer__wrapper {
  grid-template-columns: 63fr 37fr;
}
.product-customizer.product-scarf .selectedColorScarf, .product-customizer.product-scarf-knitted .selectedColorScarf {
  display: none;
}
@media (min-width: 992px) {
  .product-customizer.product-scarf .product-customizer__color-picker-close,
  .product-customizer.product-scarf .product-customizer__color-picker-title, .product-customizer.product-scarf-knitted .product-customizer__color-picker-close,
  .product-customizer.product-scarf-knitted .product-customizer__color-picker-title {
    display: none;
  }
}
@media (max-width: 991px) {
  .product-customizer.product-scarf.fixed-view .color-area-picker-wrapper, .product-customizer.product-scarf-knitted.fixed-view .color-area-picker-wrapper {
    height: 62dvh;
  }
  .product-customizer.product-scarf .color-area-wrapper, .product-customizer.product-scarf-knitted .color-area-wrapper {
    cursor: pointer;
  }
  .product-customizer.product-scarf .color-area-wrapper:hover label, .product-customizer.product-scarf-knitted .color-area-wrapper:hover label {
    text-decoration: underline;
  }
  .product-customizer.product-scarf .color-area-wrapper:hover .selectedColorScarf, .product-customizer.product-scarf-knitted .color-area-wrapper:hover .selectedColorScarf {
    box-shadow: 0px 0px 15px #ee0004;
  }
  .product-customizer.product-scarf .color-area-picker-wrapper, .product-customizer.product-scarf-knitted .color-area-picker-wrapper {
    background: white;
    height: calc(62dvh - 78px);
    position: fixed;
    z-index: 1002;
    top: unset !important;
    bottom: 0 !important;
    left: 0 !important;
    overflow: auto;
    border-radius: 0;
    border: 0;
    transform: translateY(150%);
    width: 100%;
    max-width: unset;
    transition: 500ms all;
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
  .product-customizer.product-scarf .color-area-picker-wrapper.active, .product-customizer.product-scarf-knitted .color-area-picker-wrapper.active {
    transform: translateY(0);
  }
  .product-customizer.product-scarf .selectedColorScarf, .product-customizer.product-scarf-knitted .selectedColorScarf {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    border: 1px solid #898a8b;
    transition: 300ms all;
  }
}

.product-customizer.product-sticker-vinyl-round #container,
.product-customizer.product-sticker-vinyl-round .konvajs-content,
.product-customizer.product-sticker-vinyl-round .konvajs-content canvas, .product-customizer.product-sticker-vinyl-square #container,
.product-customizer.product-sticker-vinyl-square .konvajs-content,
.product-customizer.product-sticker-vinyl-square .konvajs-content canvas, .product-customizer.product-sticker-paper-square #container,
.product-customizer.product-sticker-paper-square .konvajs-content,
.product-customizer.product-sticker-paper-square .konvajs-content canvas, .product-customizer.product-sticker-paper-round #container,
.product-customizer.product-sticker-paper-round .konvajs-content,
.product-customizer.product-sticker-paper-round .konvajs-content canvas, .product-customizer.product-sewn #container,
.product-customizer.product-sewn .konvajs-content,
.product-customizer.product-sewn .konvajs-content canvas, .product-customizer.product-baclava #container,
.product-customizer.product-baclava .konvajs-content,
.product-customizer.product-baclava .konvajs-content canvas {
  aspect-ratio: 4/4;
}
@media (max-width: 991px) {
  .product-customizer.product-sticker-vinyl-round #container, .product-customizer.product-sticker-vinyl-square #container, .product-customizer.product-sticker-paper-square #container, .product-customizer.product-sticker-paper-round #container, .product-customizer.product-sewn #container, .product-customizer.product-baclava #container {
    aspect-ratio: 1/1 !important;
    max-width: 100%;
    width: auto !important;
    max-height: 38dvh;
  }
}
@media (max-width: 991px) {
  .product-customizer.product-sticker-paper-multipack #container, .product-customizer.product-banderi-flag #container, .product-customizer.product-sector-flag #container, .product-customizer.product-fence-flag #container, .product-customizer.product-flag #container, .product-customizer.product-wear #container {
    max-width: 100%;
    width: 100% !important;
    max-height: 38dvh;
  }
}

@media (min-width: 992px) {
  .product-sewn .product-customizer__thumbnail-inner {
    margin-left: 6rem !important;
  }
}

@media (max-width: 991px) {
  .product-scarf .product-customizer__thumbnail-inner,
  .product-scarf-knitted .product-customizer__thumbnail-inner {
    padding-bottom: 40px;
    position: relative !important;
  }
  .product-scarf .product-customizer__thumbnail-inner #container,
  .product-scarf-knitted .product-customizer__thumbnail-inner #container {
    max-width: 100%;
    width: auto !important;
    max-height: calc(38dvh - 40px);
  }
  .product-scarf .product-customizer__thumbnail-inner .product-customizer__upload-box.front-scarf,
  .product-scarf-knitted .product-customizer__thumbnail-inner .product-customizer__upload-box.front-scarf {
    top: 90% !important;
    left: 25%;
    position: absolute;
  }
  .product-scarf .product-customizer__thumbnail-inner .product-customizer__upload-box.reverse-scarf,
  .product-scarf-knitted .product-customizer__thumbnail-inner .product-customizer__upload-box.reverse-scarf {
    top: 90% !important;
    left: 75%;
    position: absolute;
  }
}

@media (max-width: 991px) {
  .fixed-view .product-customizer__wrapper {
    padding-top: 39dvh;
  }
}
@media (max-width: 639px) {
  .fixed-view .product-scarf .product-customizer__wrapper,
  .fixed-view .product-scarf-knitted .product-customizer__wrapper {
    padding-top: 200px;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .fixed-view .product-scarf .product-customizer__wrapper,
  .fixed-view .product-scarf-knitted .product-customizer__wrapper {
    padding-top: 340px;
  }
}

@keyframes highlight {
  0% {
    box-shadow: 0px 0px 0px #ee0004;
  }
  50% {
    box-shadow: 0px 0px 15px #ee0004;
  }
  100% {
    box-shadow: 0px 0px 0px #ee0004;
  }
}
.producer-color-select-wrapper:first-child .highlight,
.color-area-wrapper:first-child .highlight {
  animation: highlight 2s infinite;
}

.sticky-add-to-cart {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: black;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-top: 1px #3b3b3b solid;
  display: none;
  transform: translateY(100%);
  transition: all 300ms;
  gap: 1rem;
}
@media (max-width: 991px) {
  .sticky-add-to-cart {
    display: flex;
  }
  .sticky-add-to-cart.active {
    transform: translateY(0);
  }
}
.sticky-add-to-cart .qty-btn,
.sticky-add-to-cart .qty-input {
  height: 36px;
}
.sticky-add-to-cart .sticky-add-to-cart__add-to-cart {
  padding: 1.375rem 1rem;
}
.sticky-add-to-cart #sticky-product-quantity {
  font-weight: 700;
}
.sticky-add-to-cart .sticky-add-to-cart__size-quantity {
  display: flex;
}
.sticky-add-to-cart .sticky-add-to-cart__size-quantity label {
  color: white !important;
}
.sticky-add-to-cart .sticky-add-to-cart__size-quantity input {
  background: transparent;
  border: 0;
  color: white;
  padding: 0;
  height: auto;
}

.sticky-add-to-cart__quantity,
.sticky-add-to-cart__price-group {
  display: flex;
  align-items: center;
}

.sticky-add-to-cart__quantity-controls {
  display: flex;
  align-items: center;
}

.sticky-add-to-cart__actions {
  display: flex;
  align-items: center;
  flex: 1;
}

.sticky-add-to-cart__total-price {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  #combinationSelectWrapper {
    flex-direction: row;
    align-items: center;
  }
}

/*# sourceMappingURL=product-modal.css.map */
