/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs 
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: $yuvezzi-black;
 * $body-color: $gray-100;
 */
.external-link-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none !important;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.external-link-popup--active {
  display: block !important;
}
.external-link-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.external-link-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 572px;
  height: 300px;
  padding: 44px 32px 32px 32px;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  -webkit-tap-highlight-color: transparent;
}
@media only screen and (max-width: 991.98px) {
  .external-link-popup__content {
    max-width: 100%;
    height: 322px;
    padding: 16px;
    width: calc(100% - 2rem);
  }
}
@media only screen and (max-width: 480px) {
  .external-link-popup__content {
    width: calc(100% - 2rem);
    max-width: 336px;
  }
}
.external-link-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
@media (max-width: 768px) {
  .external-link-popup__close {
    width: 24px;
    height: 24px;
    top: 8px;
    right: 10px;
  }
}
.external-link-popup__close img {
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.external-link-popup__text {
  font-family: "Figtree", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 44px 0 32px 0px;
}
@media (max-width: 768px) {
  .external-link-popup__text {
    font-size: 18px;
    line-height: 140%;
    padding: 32px 0px;
  }
}
.external-link-popup__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .external-link-popup__buttons {
    flex-direction: column;
  }
}
.external-link-popup__button {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 24px;
  height: 43px;
  border-radius: 8px;
  line-height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.external-link-popup__button--continue {
  background-color: #ab0b7b;
  border-color: #ab0b7b;
  color: #fff;
}
.external-link-popup__button--continue:hover {
  background-color: #9a3485;
  border-color: #9a3485;
}
.external-link-popup__button--cancel {
  background-color: #fff;
  color: #ab0b7b;
  border-color: #ab0b7b;
}
.external-link-popup__button--cancel:hover {
  background-color: rgba(171, 11, 123, 0.1);
}

body.scroll-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
@media (max-width: 768px) {
  body.scroll-locked {
    -webkit-overflow-scrolling: touch;
  }
}

.block--dtc-siteheader .dtc-ecp-link {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-decoration: none;
}
@media (max-width: 768px) {
  .block--dtc-siteheader .dtc-ecp-link {
    pointer-events: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .block--dtc-siteheader .dtc-ecp-link:active {
    opacity: 0.7;
  }
  .block--dtc-siteheader .dtc-ecp-link:visited, .block--dtc-siteheader .dtc-ecp-link:link {
    color: inherit;
  }
}

.dtc-ecp-link {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}
@media (max-width: 768px) {
  .dtc-ecp-link {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
  }
  .dtc-ecp-link[href] {
    pointer-events: auto;
  }
}

/*# sourceMappingURL=external-link-popup.css.map*/