.itemband_grid_wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 35px 80px 1fr;
  gap: 1em;
  width: 100%;
  height: 100%;
}
.itemband_grid_wrapper .itemband_selector_wrapper {
  grid-area: 1/1/2/2;
  /*background-color: rgba(110, 252, 131, 0.5);*/
  align-content: center;
}
.itemband_grid_wrapper .itemband_image_wrapper {
  grid-area: 1/2/2/3;
  /*background-color: rgba(251, 120, 47, 0.5);*/
}
.itemband_grid_wrapper .itemband_title_price_wrapper {
  grid-area: 1/3/2/4;
  /*background-color: rgba(249, 225, 231, 0.5);*/
}
.itemband_grid_wrapper .itemband_info_wrapper {
  grid-area: 2/1/3/4;
  /*background-color: rgba(239, 63, 125, 0.5);*/
}
.itemband_grid_wrapper .itemband_gallery_wrapper {
  grid-area: 3/1/4/4;
  /*background-color: rgba(159, 219, 160, 0.5);*/
}
@media screen and (min-width: 768px) {
  .itemband_grid_wrapper {
    grid-template-columns: 50px 200px 1fr;
  }
  .itemband_grid_wrapper .itemband_selector_wrapper {
    grid-area: 1/1/3/2;
  }
  .itemband_grid_wrapper .itemband_image_wrapper {
    grid-area: 1/2/3/3;
  }
  .itemband_grid_wrapper .itemband_info_wrapper {
    grid-area: 2/3/3/4;
  }
  .itemband_grid_wrapper .itemband_gallery_wrapper {
    grid-area: 3/2/4/4;
  }
  .itemband_grid_wrapper.itemband_featured {
    flex: 1 1 calc(25% - 1em);
    display: flex;
    flex-direction: column;
    border: 1px solid #efefef;
    position: relative;
  }
  .itemband_grid_wrapper.itemband_featured .itemband_selector_wrapper {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .itemband_grid_wrapper.itemband_featured .itemband_image_wrapper .image {
    border: none;
    max-width: 100%;
  }
  .itemband_grid_wrapper.itemband_featured .itemband_title_price_wrapper {
    padding: 0 20px;
  }
  .itemband_grid_wrapper.itemband_featured .itemband_title_price_wrapper .itemband_item_title_price {
    flex-direction: column;
    gap: 0.5em;
  }
  .itemband_grid_wrapper.itemband_featured .itemband_info_wrapper {
    padding: 0 20px;
  }
  .itemband_grid_wrapper.itemband_featured .itemband_gallery_wrapper {
    display: none;
  }
}

.itemband_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
  justify-items: start;
  align-items: center;
}
.itemband_gallery .show-more-wrapper {
  grid-column: 1/-1;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.itemband_gallery .show-more-btn {
  padding: 15px;
  border: 1px solid #efefef;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #000;
}
.itemband_gallery .show-more-btn:active, .itemband_gallery .show-more-btn:focus {
  border: none;
  outline: none;
}
.itemband_gallery .show-more-btn:hover {
  background-color: #efefef;
}
@media screen and (min-width: 768px) {
  .itemband_gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
.itemband_gallery .gallery_item_img {
  width: 100%;
  height: auto;
  max-width: 160px;
  object-fit: cover;
  transition: border-color 0.2s;
  border: 1px solid #efefef;
}
.itemband_gallery .gallery_item_img:hover {
  border-color: var(--main-button-primary-color);
}

.itemband {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.itemband .itemband_item {
  margin-bottom: 1.618rem;
  padding-bottom: 1.618rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.itemband .itemband_item .image {
  border: 1px solid #efefef;
  flex-basis: 25%;
  max-width: 200px;
  min-width: 80px;
}
.itemband .itemband_item .itemband_item_info {
  flex-basis: 100%;
  font-size: 0.875rem;
}
.itemband .itemband_item .itemband_item_title_price {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  .itemband .itemband_item .itemband_item_title_price {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1em;
  }
}
.itemband .itemband_item .itemband_item_title {
  flex-shrink: 1;
}
.itemband .itemband_item .itemband_item_link {
  margin-left: 0.4em;
  font-size: 0.8em;
  align-items: center;
  display: inline-flex;
  color: currentColor;
}
.itemband .itemband_item .itemband_price {
  color: var(--main-button-primary-color);
  font-size: 1.12rem;
  font-weight: 600;
}
.itemband .itemband_item .itemband_price mark {
  color: currentColor;
}
.itemband .itemband_item .itemband_price .select_variant_msg {
  font-size: 0.875em;
  font-weight: 600;
}
.itemband .itemband_item .itemband_variants {
  margin-top: 1em;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
  height: 0;
  max-height: 0;
  flex-wrap: wrap;
  display: flex;
  gap: 1em;
  row-gap: 0;
}
.itemband .itemband_item .itemband_variants.show {
  height: max-content;
  max-height: 1000px;
}
.itemband .itemband_item .itemband_variants .itemband_variantPicker {
  margin-bottom: 1em;
}
.itemband .itemband_item .itemband_variants .itemband_variantPicker h3 {
  font-size: 0.875rem;
  font-weight: 400;
}
.itemband .itemband_item .itemband_variants .itemband_variantPicker .select {
  min-width: 200px;
}
.itemband .itemband_item .itemband_variants .itemband_variantPicker.type49 {
  width: 100%;
}
.itemband .itemband_item .itemband_variants .itemband_selectorButtons {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.itemband .itemband_item .itemband_variants .itemband_selectorButtons li {
  display: flex;
}
.itemband .itemband_item .itemband_variants .itemband_selectorButtons li .itemband_selectorButton {
  color: #000;
  border: 2px solid var(--main-button-primary-color);
  padding: 8px 16px;
  text-decoration: none;
}
.itemband .itemband_item .itemband_variants .itemband_selectorButtons li .itemband_selectorButton.selected {
  color: #fff;
  background-color: var(--main-button-primary-color);
}
.itemband .itemband_item .itemband_variants .itemband_selectorButtons li .itemband_selectorButton.disabled {
  color: #fff;
  background-color: #ccc;
  border: 2px solid #ccc;
}
.itemband .itemband_item .itemband_variants .itemband_selectorButtons li .itemband_selectorButton:hover {
  border: 2px solid var(--main-hover-color);
  background-color: var(--main-hover-color);
  color: #fff;
}
.itemband .itemband_item .itemband_variants .itemband_variants_reset {
  text-decoration: none;
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: 0.8em;
  flex: 0 1 100%;
  color: var(--main-link-color);
}
.itemband .itemband_item.itemband_featured .itemband_item_link {
  display: none;
}

.itemband_select {
  align-self: center;
  color: #ffffff;
}

.itemband_item_checkbox_custom {
  cursor: pointer;
  fill: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--main-button-primary-color);
  background: #ffffff;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.itemband_item_checkbox_custom.icon {
  fill: var(--main-button-secondary-font-color) !important;
}
@media screen and (min-width: 768px) {
  .itemband_item_checkbox_custom {
    width: 50px;
    height: 50px;
  }
}

.itemband_checkbox_input:checked + .itemband_item_checkbox > .itemband_item_checkbox_custom {
  border: none;
  background-color: var(--main-button-primary-color);
  fill: var(--main-button-secondary-font-color);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.show-more-wrapper {
  display: block;
  margin-top: 1em;
}

.show-more-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.875em;
  font-weight: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  line-height: normal;
  text-decoration: underline;
}
.show-more-btn:focus, .show-more-btn:active {
  border: none;
  outline: none !important;
}

.hidden {
  display: none;
}

.itemband_total_price p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1em;
}
.itemband_total_price p .total_price {
  font-weight: 600;
  font-size: 40px;
  color: var(--main-button-primary-color);
}

.itemband-container {
  margin-top: 5em;
  overflow: unset !important;
  overflow-x: unset !important;
}

/*# sourceMappingURL=itemband_configurator.css.map */
