/*------------------------------------------------------------------------------*/
/* Product Buy Form
/*------------------------------------------------------------------------------*/
.ProductBuy .SubmitButton {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ProductBuy .SubmitButton:before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
}
.ProductBuy .BuyForm fieldset {
  display: grid;
  grid-template-columns: auto 1fr;
}
.ProductBuy .FormItem:not(.BuyFormQuantity):not(.FormSubmit) {
  grid-column: 1/-1;
}
.ProductBuy .Spinner {
  --spiner-height: 3rem;
}

.BuyForm input:not([type=radio]):not([type=checkbox]):not([type=file]),
.BuyForm textarea,
.BuyForm select {
  width: 100%;
}

.BuyFormQuantity {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.BuyFormQuantity label {
  display: none;
}

.BuyForm .AddToCart {
  width: 100%;
}

/*------------------------------------------------------------------------------*/
/* Product Buy Form Radio Variations
/*------------------------------------------------------------------------------*/
.BuyFormVariationRadio .Checks:not(.CustomRadioChecks) {
  align-items: center;
  display: grid;
  grid-template-columns: auto max-content;
}

.BuyFormVariationRadio .Checks:not(.CustomRadioChecks) label {
  padding: 0.75rem 0.5rem;
}

.BuyFormVariationRadio .Checks:not(.CustomRadioChecks) .FormHelp {
  text-align: right;
}

/*------------------------------------------------------------------------------*/
/* Product Brand Link
/*------------------------------------------------------------------------------*/
.ProductBrand {
  margin: 0;
}

.ProductBrand .BrandLink {
  color: var(--color-text);
  text-decoration: none;
}

/*------------------------------------------------------------------------------*/
/* Product Description
/*------------------------------------------------------------------------------*/
.ProductDesc {
  max-width: 500px;
}

.ProductDesc p {
  max-width: 60ch;
}

.ProductTabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ProductTabs ul, .ProductTabs li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ProductTabs .tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  white-space: nowrap;
  overflow-x: auto;
  padding: 0 calc(var(--container-page-margin) + 10px) 5px;
  margin: 0 calc((var(--container-page-margin) + 10px) * -1) -5px;
  border-bottom: 1px solid #E5E7EB;
}
.ProductTabs .tabs-nav__btn {
  padding: 0;
  box-shadow: none;
  border: none;
  background: transparent !important;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.ProductTabs .tabs-nav__btn.active {
  color: var(--color-link-active);
}
.ProductTabs .tabs-content {
  padding-top: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}

/*------------------------------------------------------------------------------*/
/* Product Features
/*------------------------------------------------------------------------------*/
.ProductFeatures dd {
  display: inline-block;
}

.ProductFeatures dd + dd::before {
  content: ", ";
}

.ProductDescription {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ProductDescription * {
  margin-bottom: 0;
}
.ProductDescription ul, .ProductDescription li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ProductDescription ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ProductDescription li {
  display: flex;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  gap: 0.5rem;
}
.ProductDescription li i {
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60%;
}
.ProductDescription p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

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