.checkbox-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.checkbox-item input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox-item label {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: pointer;
}
.checkbox-item-checkmark {
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url("../../images/icons/checkbox.svg");
  background-repeat: no-repeat;
  margin-right: 6px;
  transition: all 0.2s ease-in-out;
}
.checkbox-item span {
  font-size: 12px;
  line-height: 16px;
  color: #2A2A2A;
}
.checkbox-item input:checked + .checkbox-item-checkmark {
  background-image: url("../../images/icons/checkbox-fill.svg");
}
.checkbox-item--pale span {
  color: rgba(42,42,42,0.56);
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border: 4px solid #ffffff;

}
.product-card-image {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 192px;
  max-height: 192px;
  background-color: #F6F6F6;
}
.product-card-image img {
  width: 100%;
  max-width: 90px;
  height: auto;
  transition: all 0.2s ease-in-out;
}
.product-card-image:hover img:not(.product-card-image-zoom img) {
  transform: scale(1.2);
}
.product-card-image-zoom {
  position: absolute;
  top: 0;
  right: 100%;
  transform: translateX(-20px);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 640px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.product-card-image-zoom img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.product-card-image-zoom-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0;
  background-color: #F6F6F6;
}
.product-card-image-zoom-info strong,
.product-card-image-zoom-info span {
  font: 600 11px/24px 'Poppins';
  text-transform: uppercase;
  color: rgba(42,42,42,0.56);
}
.product-card-image-zoom-info span {
  font-weight: 400;
  margin-left: 8px;
}
.product-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 8px 16px 8px 4px;
  background-color: #ffffff;
}
.product-card-inner-top {
  display: inline-flex;
  align-items: center;
}
.product-card-inner-top-title,
.product-card-inner-top-size {
  font: 600 11px/24px 'Poppins';
  color: rgba(42,42,42,0.56);
  text-transform: uppercase;
  margin-right: 8px;
}
.product-card-inner-top-size {
  font-weight: 400;
  margin-right: 0;
}
.product-card-inner-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.product-card-inner-action-id {
  font: 600 14px/24px 'Poppins';
  color: #2A2A2A;
}
.product-card-inner-action::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../../images/icons/opportunity-product-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: auto;
  transition: all 0.2s ease-in-out;
}
.product-card-inner-pricing {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.product-card-inner-pricing-discount,
.product-card-inner-pricing-main {
  font: 600 14px/24px 'Poppins';
  color: #861F41;
}
.product-card-inner-pricing-discount {
  font-weight: 400;
  color: rgba(42,42,42,0.56);
  text-decoration: line-through;
  margin-right: 10px;
}
.product-card-inner:hover .product-card-inner-action::after {
  transform: translateX(6px);
}
.product-card-inner-info {
  display: flex;
  align-items: center;
  width: 100%;
}
.product-card-inner-info li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 14px;
  margin-right: 8px;
}
.product-card-inner-info li::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: rgba(42,42,42,0.56);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.product-card-inner-info li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.product-card-inner-info li:last-child::after {
  display: none;
}
.product-card-inner-info li strong,
.product-card-inner-info li span {
  font-size: 12px;
  line-height: 16px;
  color: rgba(42,42,42,0.56);
}
.product-card-inner-info li strong {
  font-weight: 700;
  margin-right: 4px;
}
.product-card-inner-color {
  font-size: 12px;
  line-height: 24px;
  text-decoration: underline;
  color: rgba(42,42,42,0.56);
}
.product-card--detailed .product-card-inner-action::after {
  display: none;
}
.product-card--detailed .product-card-inner-pricing::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../../images/icons/opportunity-product-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: auto;
  transition: all 0.2s ease-in-out;
}
.product-card--detailed .product-card-inner:hover .product-card-inner-pricing::after {
  transform: translateX(6px);
}
.product-card--detailed .product-card-image {
  cursor: pointer;
}

.product-card--detailed .product-card-image img {
  max-width: 100%;
  width: auto;
}
.product-card--detailed .product-card-image.show .product-card-image-zoom {
  opacity: 1;
  visibility: visible;
}
    .product-card--detailed .product-card-image .zoom-image-button {
        position: absolute;
        bottom: 5px; 
        left: 5px;
        width: 20px; height: 20px; 
    }
@media only screen and (max-width: 1590px) {
  .product-card-image-zoom {
    top: 100%;
    right: 0;
    transform: translateX(0) translateY(20px);
  }
}
@media only screen and (max-width: 991px) {
  .product-card-image-zoom {
    width: 100%;
    transform: translateY(10px);
  }
}
@media only screen and (max-width: 767px) {
  .product-card-image {
    height: 192px;
  }
  .product-card-image img {
    max-height: 100%;
    width: auto;
  }
  .product-card-image:hover img:not(.product-card-image-zoom img) {
    transform: scale(1);
  }
  .product-card-inner-info {
   flex-direction: column;
   align-items: flex-start;
  } 
  .product-card-inner-info li {
   padding-right: 0;
   margin-right: 0;
   margin-bottom: 8px;
  }
  .product-card-inner-info li::after {
   display: none;
  }
  .product-card-inner-info li:last-child {
   margin-bottom: 0;
  }
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  max-height: 40px;
  padding: 0 20px;
  background-color: #861F41;
  border: none;
  outline: none;
}
.primary-button span {
  font: 600 12px/24px 'Poppins';
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 16px;
  width: 150px; 
}
.primary-button--white {
  background-color: rgba(42,42,42,0.04);
}
.primary-button--white span,
.primary-button--base-white span {
  color: #2A2A2A;
}
.primary-button--base-white {
  background-color: #ffffff;
}
.primary-button--big {
  height: 48px;
  max-height: 48px; 
}
.primary-button--big span {
  font: 600 13px/24px 'Poppins';
}
.primary-button--reverse span {
  margin-left: 0;
  margin-right: 10px;
}

.alert {
  width: 100%;
  margin-bottom: 88px;
}
.alert .wrapper {
  display: flex;
  align-items: center;
}
.alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  background-color: rgba(42,42,42,0.04);
  transform: rotate(45deg);
  margin-right: 34px;
}
.alert-icon img {
  transform: rotate(-45deg);
}
.alert-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.alert-inner h6 {
  font: 700 14px/24px 'Poppins';
  color: #2A2A2A;
}
.alert-inner p {
  font: 400 12px/24px 'Poppins';
  color: rgba(42,42,42,0.56);
}
@media only screen and (max-width: 767px) {
  .alert {
    margin-bottom: 56px;
  }
}

.series-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.series-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.series-card span {
  position: relative;
  z-index: 2;
  padding: 8px 12px;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A2A2A;
  transition: all 0.2s ease-in-out;
}
.series-card:hover img {
  transform: scale(1.1);
}
.series-card:hover span {
  transform: scale(0.9);
}