/**
 * Callout Banner Block Styles
 *
 * @package jpmr2025
 */
.callout-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #007ACC;
  width: fit-content;
  padding: 10px 20px 12px 20px;
  gap: 10px;
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 20px 0 rgba(165, 214, 243, 0.2);
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 576px) {
  .callout-banner {
    gap: 12px;
    border-radius: 30px;
    padding: 10px 30px 10px 10px;
  }
}
.callout-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.callout-banner__copy--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.callout-banner__copy--header h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media only screen and (min-width: 576px) {
  .callout-banner__copy--header h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
.callout-banner__copy h2 > a,
.callout-banner__copy p > a {
  color: #fff !important;
  text-decoration: none !important;
}
.callout-banner__copy h2 > a:hover, .callout-banner__copy h2 > a:focus,
.callout-banner__copy p > a:hover,
.callout-banner__copy p > a:focus {
  color: #fff;
}
.callout-banner__copy h2 > a::after,
.callout-banner__copy p > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.callout-banner__copy h2 > a {
  font-weight: 700 !important;
}
@media only screen and (min-width: 576px) {
  .callout-banner__copy p > a {
    font-size: 16px;
    line-height: 24px;
  }
}
.callout-banner .callout-banner__icon--left--desktop {
  display: none;
  width: 80px;
  height: 80px;
}
@media only screen and (min-width: 576px) {
  .callout-banner .callout-banner__icon--left--desktop {
    display: block;
    flex-shrink: 0;
  }
}
.callout-banner .callout-banner__icon--left--mobile {
  display: block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
@media only screen and (min-width: 576px) {
  .callout-banner .callout-banner__icon--left--mobile {
    display: none;
  }
}
.callout-banner .callout-banner__icon--right {
  flex: 1 0 auto;
  width: 30px;
  height: 30px;
  mask-position: right;
}
@media only screen and (min-width: 576px) {
  .callout-banner .callout-banner__icon--right {
    width: 40px;
    height: 40px;
  }
}
.callout-banner .jpmr-icon {
  background-color: #fff;
}

.callout-banner-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.callout-banner-modal.is-open {
  display: block;
}
.callout-banner-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .callout-banner-modal__overlay {
    padding: 40px;
  }
}
.callout-banner-modal__content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.callout-banner-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 10px;
  transition: color 0.2s ease;
  z-index: 10;
  background-color: white;
  transition: all 0.2s ease-out;
}
.callout-banner-modal__close svg path {
  transition: all 0.2s ease-out;
}
.callout-banner-modal__close:hover svg path, .callout-banner-modal__close:focus svg path {
  fill: white;
}
.callout-banner-modal__image img {
  width: 100%;
  height: auto;
  display: block;
}
.callout-banner-modal__caption {
  margin: 10px 0 !important;
  font-size: 14px;
  line-height: 1.5;
  color: black;
  font-style: normal;
  text-align: center;
  padding: 0 15px;
}
.callout-banner-modal__swiper {
  width: 100%;
  height: 100%;
}
.callout-banner-modal__swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.callout-banner-modal__swiper .swiper-button-prev,
.callout-banner-modal__swiper .swiper-button-next {
  color: #AA273E;
  background-color: white;
  transition: all 0.2s ease-out;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 50%;
  border: none;
  box-shadow: inset 0 0 0 1px #AA273E;
}
.callout-banner-modal__swiper .swiper-button-prev:hover,
.callout-banner-modal__swiper .swiper-button-next:hover {
  color: #AA273E;
}
.callout-banner-modal__swiper .swiper-button-prev.swiper-button-disabled,
.callout-banner-modal__swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.callout-banner-modal__swiper .swiper-button-prev::after,
.callout-banner-modal__swiper .swiper-button-next::after {
  font-size: 32px;
}
@media only screen and (min-width: 768px) {
  .callout-banner-modal__swiper .swiper-button-prev::after,
  .callout-banner-modal__swiper .swiper-button-next::after {
    font-size: 40px;
  }
}
.callout-banner-modal__swiper .swiper-button-prev {
  left: 10px;
}
@media only screen and (min-width: 768px) {
  .callout-banner-modal__swiper .swiper-button-prev {
    left: 20px;
  }
}
.callout-banner-modal__swiper .swiper-button-next {
  right: 10px;
}
@media only screen and (min-width: 768px) {
  .callout-banner-modal__swiper .swiper-button-next {
    right: 20px;
  }
}
.callout-banner-modal__copy {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  padding: 20px 30px 30px;
}
.callout-banner-modal__copy h1,
.callout-banner-modal__copy h2,
.callout-banner-modal__copy h3,
.callout-banner-modal__copy h4,
.callout-banner-modal__copy h5,
.callout-banner-modal__copy h6 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #AA273E;
  font-weight: 700;
}
.callout-banner-modal__copy p {
  margin-bottom: 15px;
}
.callout-banner-modal__copy p:last-child {
  margin-bottom: 0;
}
.callout-banner-modal__copy a {
  color: #007ACC;
  text-decoration: underline;
}
.callout-banner-modal__copy a:hover, .callout-banner-modal__copy a:focus {
  text-decoration: none;
}

body.modal-open {
  overflow: hidden;
}

/*# sourceMappingURL=callout-banner.css.map */
