@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

#sternify-simple-gift {
  --product_title-type: text;
  --product_title-font_size: 18px;
  --product_title-font_weight: 600;
  --product_title-color: rgba(0, 0, 0, 1);
  --subtitle-font_size: 22px;
  --subtitle-type: text;
  --subtitle-font_weight: 500;
  --subtitle-color: rgba(0, 0, 0, 1);
  --price-font_size: 16px;
  --price-type: text;
  --price-font_weight: 400;
  --price-color: rgba(64, 64, 64, 1);
  --price_compareAt-font_size: 15px;
  --price_compareAt-type: text;
  --price_compareAt-font_weight: 100;
  --price_compareAt-color: rgba(0, 0, 0, 1);
  --badge-type: box;
  --badge-background_color: rgba(255, 17, 17, 1);
  --badge-text_color: rgba(255, 255, 255, 1);
  --checkbox-type: box;
  --checkbox-background_color: rgba(70, 61, 61, 1);
  --checkbox-text_color: rgba(255, 255, 255, 1);
  --box_color-type: box;
  --box_color-border_color: rgba(0, 0, 0, 1);
  --box_color-background_color: rgba(255, 255, 255, 1);
  --box_color-hovered_background_color: rgba(255, 255, 255, 1);
  --box_color-border_width: 2px;
  --box_color-border_radius: 0px;
  --box_color-border_style: dashed;
  --box_color-border_spacing: 6px;
  --box_color-border_dash_offset: 0px;
  --image-type: box;
  --image-image_size: 75px;
  --image-border_radius: 0px;
  margin-block: 5px;
  max-width: 550px;
  display: block;
  width: 100%;
  text-align: start;
  line-height: 1.4;
}

#sternify-simple-gift * {
  letter-spacing: normal;
  text-transform: initial;
}

#sternify-simple-gift select:focus-visible {
  outline: initial;
  outline-offset: initial;
  box-shadow: initial;
}

.st_simple-gift-checkbox * {
  box-sizing: border-box;
}

.st_simple-gift-checkbox .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  background: transparent;
  display: block;
  transition: all 0.2s ease;
  width: 100%;
}

.st_simple-gift-checkbox .cbx:not(:last-child) {
  margin-right: 6px;
}

.st_simple-gift-checkbox .cbx:hover {
  background: transparent;
}

.st_simple-gift-checkbox .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.st_simple-gift-checkbox .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.st_simple-gift-checkbox .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 12px;
  fill: none;
  stroke: var(--checkbox-text_color);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.st_simple-gift-checkbox .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.st_simple-gift-checkbox .cbx:hover span:first-child {
  border-color: rgb(28, 28, 28);
}

.st_simple-gift-checkbox .st_simple-gift-checkbox-input {
  position: absolute;
  visibility: hidden;
}

.st_simple-gift-checkbox .st_simple-gift-checkbox-input:checked+.cbx span:first-child {
  background: var(--checkbox-background_color);
  border-color: var(--checkbox-background_color);
  animation: wave-4 0.4s ease;
}

.st_simple-gift-checkbox .st_simple-gift-checkbox-input:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.st_simple-gift-checkbox .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

/* .st_simple-gift-wrapper-1 */

.st_simple-gift-wrapper-1 .st_simple-gift-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  padding-right: 20px;
  border-radius: var(--box_color-border_radius);
  background-color: var(--box_color-background_color);
  gap: 10px;
  min-height: 90px;
  position: relative;
}

.st_simple-gift-wrapper-1 .st_simple-gift-content-wrapper:hover {
  background-color: var(--box_color-hovered_background_color);
  transition: all 0.5s ease;
}

.st_simple-gift-wrapper-1 .st_simple-gift-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  align-items: center;
}

.st_simple-gift-wrapper-1 .st_simple-gift-img {
  min-width: var(--image-image_size);
  min-height: var(--image-image_size);
  width: var(--image-image_size);
  height: var(--image-image_size);
  border-radius: var(--image-border_radius);
  display: flex;
}

.st_simple-gift-wrapper-1 .st_simple-gift-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--image-border_radius);
}

.st_simple-gift-wrapper-1 .st_simple-gift-img-text-wrapper {
  grid-column: span 9 / span 9;
  display: flex;
  gap: 10px;
  align-items: center;
}

.st_simple-gift-wrapper-1 .st_simple-gift-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.st_simple-gift-wrapper-1 .st_simple-gift-title {
  font-size: var(--product_title-font_size);
  color: var(--product_title-color);
  font-weight: var(--product_title-font_weight, 500);
}

.st_simple-gift-wrapper-1 .st_simple-gift-subtitle {
  font-size: var(--subtitle-font_size);
  font-weight: var(--subtitle-font_weight);
  color: var(--subtitle-color);
}

.st_simple-gift-wrapper-1 .st_simple-gift-price-wrapper {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.st_simple-gift-wrapper-1 .st_simple-gift-price {
  font-size: var(--price-font_size);
  font-weight: var(--price-font_weight, 500);
  color: var(--price-color);
}

.st_simple-gift-wrapper-1 .st_simple-gift-compareAt-price {
  font-size: var(--price_compareAt-font_size);
  font-weight: var(--price_compareAt-font_weight);
  color: var(--price_compareAt-color);
  text-decoration: line-through;
}

.st_simple-gift-wrapper-1 .st_simple-gift-badge {
  position: absolute;
  top: 0;
  right: 4%;
  background-color: var(--badge-background_color);
  border-radius: 8px;
  padding: 4px 10px;
  color: var(--badge-text_color);
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transform: translate(0%, -50%);
  z-index: 20;
}

a.st_simple-gift-title {
  text-decoration: none;
}

a.st_simple-gift-title:hover {
  text-decoration: underline;
}

.st_simple-gift-variant-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.st_simple-gift-variant-selector>.st_option-wrapper:only-child {
  grid-column: span 2;
}

.st_simple-gift-variant-selector>.st_option-wrapper:only-child .st_variant-select {
  width: auto;
}

.st_option-wrapper label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.st_variant-select {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-family: system-ui;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 0 1px #cbcbcb !important;
  border: none;
  border-radius: 5px;
  padding: 6px 24px 6px 6px;
  margin: 0;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='4' viewBox='0 0 10 4' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 4L0.669872 0.25L9.33013 0.249999L5 4Z' fill='black'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-color: white !important;
  background-size: initial;
  color: #000 !important;
  outline: none;
  max-width: 100%;
  width: 100%;
  height: auto;
  min-height: auto;
}