/** Shopify CDN: Minification failed

Line 307:0 Unexpected "."
Line 346:1 Expected ")" to go with "("

**/
.product__core-charge {
  /*
   * Protegis brand colors currently defined by the live theme.
   * Each variable includes a fallback in case the theme changes.
   */
  --core-primary: var(--color-blue-100, #1d428a);
  --core-navy: var(--color-secondary-1, #002e5d);
  --core-yellow: var(--color-yellow-100, #f2a900);
  --core-yellow-light: var(--color-yellow-20, #fceecc);
  --core-blue-light: var(--color-blue-20, #d2d9e8);
  --core-grey-light: var(--color-light-grey, #f6f6f6);
  --core-dark-grey: var(--color-dark-grey, #3f3f3f);
  --core-white: var(--color-white, #ffffff);

  position: relative;
  color: var(--core-navy);
  font-family: var(
    --font-heading-family,
    "Instrument Sans",
    sans-serif
  );
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.product__core-charge-title {
  margin: 0;
  color: var(--core-navy);
  font-size: 15px;
  font-weight: 700;
}

.product__core-charge-line {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
}

.product__core-charge-label {
  color: var(--core-dark-grey);
  font-size: 14px;
  font-weight: 700;
}

.product__core-charge-deposit {
  display: inline;
}

/* Question-mark trigger */

.product__core-charge .tooltip-wrapper {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.product__core-charge .tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;

  color: var(--core-primary);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: help;

  appearance: none;
  -webkit-appearance: none;

  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.product__core-charge .tooltip-trigger:hover,
.product__core-charge .tooltip-trigger:focus-visible,
.product__core-charge
  .tooltip-wrapper--visible
  .tooltip-trigger {
  color: var(--core-navy);
  background: var(--core-yellow-light);
  transform: scale(1.08);
}

.product__core-charge .tooltip-trigger:focus-visible {
  outline: 2px solid var(--core-primary);
  outline-offset: 2px;
}

.product__core-charge .tooltip-trigger .icon {
  display: block;
  width: 18px;
  height: 18px;
}

/* Branded tooltip */

.product__core-charge .tooltip-content {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: absolute;
  top: calc(100% + 10px);
  right: -4px;
  z-index: 99999;

  box-sizing: border-box;
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 14px 16px;

  color: var(--core-white);
  background: var(--core-navy);
  border: 1px solid var(--core-primary);
  border-top: 4px solid var(--core-yellow);
  border-radius: 6px;
  box-shadow:
    0 12px 30px rgba(0, 46, 93, 0.24),
    0 3px 8px rgba(0, 0, 0, 0.12);

  font-family: var(
    --font-heading-family,
    "Instrument Sans",
    sans-serif
  );
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;

  transform: translateY(-5px);

  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.product__core-charge .tooltip-content::before {
  content: "";

  position: absolute;
  top: -10px;
  right: 8px;

  width: 0;
  height: 0;

  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--core-yellow);
  border-left: 8px solid transparent;
}

.product__core-charge
  .tooltip-wrapper--visible
  .tooltip-content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/*
 * This hover rule is also a fallback for cart-drawer content
 * that Shopify renders after the initial page load.
 */
@media (hover: hover) and (pointer: fine) {
  .product__core-charge
    .tooltip-wrapper:hover
    .tooltip-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Main product page */

.product__core-charge--product {
  margin-top: 14px;
  padding: 11px 13px;

  background: var(--core-grey-light);
  border-left: 4px solid var(--core-yellow);
  border-radius: 0 5px 5px 0;
}

.product__core-charge--product
  .product__core-charge-line {
  margin-top: 3px;
}

/* Product listing and recommendation cards */

.product__core-charge--listing {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
}

.product__core-charge--listing
  .product__core-charge-line {
  max-width: 100%;
  padding: 6px 9px;

  color: var(--core-navy);
  background: var(--core-yellow-light);
  border: 1px solid var(--core-blue-light);
  border-left: 4px solid var(--core-yellow);
  border-radius: 5px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.product__core-charge--listing
  .tooltip-trigger {
  width: 18px;
  height: 18px;
}

.product__core-charge--listing
  .tooltip-trigger
  .icon {
  width: 16px;
  height: 16px;
}

/* Side-cart and cart-page presentation */

.product__core-charge--cart {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 7px;
}

.product__core-charge--cart
  .product__core-charge-line {
  max-width: 100%;
  padding: 5px 8px;

  color: var(--core-navy);
  background: var(--core-yellow-light);
  border-left: 3px solid var(--core-yellow);
  border-radius: 0 4px 4px 0;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.product__core-charge--cart
  .tooltip-content {
  right: -2px;
}

/*
 * Product cards near the left side of a grid should open their
 * tooltips toward the right to avoid clipping the page edge.
 */

.products-list
  .product-column:nth-of-type(3n + 1)
  .product__core-charge
  .tooltip-content,
.products-list
  .f-column:nth-of-type(3n + 1)
  .product__core-charge
  .tooltip-content {
  right: auto;
  left: -4px;
}

.products-list
  .product-column:nth-of-type(3n + 1)
  .product__core-charge
  .tooltip-content::before,
.products-list
  .f-column:nth-of-type(
    /* Keep the product tooltip away from Add to Cart */

.product__core-charge--product .tooltip-content {
  top: auto;
  right: -4px;
  bottom: calc(100% + 12px);

  width: 360px;

  pointer-events: none !important;
  transform: translateY(5px);
}

.product__core-charge--product
  .tooltip-wrapper--visible
  .tooltip-content,
.product__core-charge--product
  .tooltip-wrapper:hover
  .tooltip-content {
  pointer-events: none !important;
  transform: translateY(0);
}

/* Move the arrow to the bottom of the upward-opening tooltip */

.product__core-charge--product
  .tooltip-content::before {
  top: auto;
  right: 8px;
  bottom: -10px;

  border-top: 8px solid var(--core-yellow, #f2a900);
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-left: 8px solid transparent;
}

/* All informational tooltips should let clicks pass through */

.product__core-charge .tooltip-content {
  pointer-events: none !important;
}