.modal__launch--video:not(.btn) {
  position: relative;
  display: block;
}

.modal__launch--video:not(.btn)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 112'%3E%3Cpath fill='%23FFF' d='M96.6 50.1c3.2 1.8 4.3 5.9 2.5 9.1-.6 1-1.5 1.9-2.5 2.5L10 111c-3.2 1.8-7.3.7-9.1-2.5-.6-1-.9-2.2-.9-3.3V6.7C0 3 3 0 6.7 0 7.9 0 9 .3 10 .9l86.6 49.2z'/%3E%3C/svg%3E");
  background-size: 28px 33px;
  background-position: 51% center;
  background-repeat: no-repeat;
  z-index: var(--z-index-grid-cell-icon-overlay);
}

.modal__launch--video:not(.btn):hover::before,
.modal__launch--video:not(.btn):focus::before {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (min-width: 30rem) {
  .modal__launch--video:not(.btn)::before {
    background-size: 50px 57px;
    background-position: center center;
  }
}
@media (min-width: 48rem) {
  .cell .modal__launch--video:not(.btn)::before {
    background-size: 28px 33px;
    background-position: 51% center;
  }
}
@media (min-width: 60rem) {
  .modal__launch--video:not(.btn)::before {
    background-size: 80px 90px;
    background-position: center center;
  }
  .cell .modal__launch--video:not(.btn)::before {
    background-size: 60px 67px;
    background-position: center center;
  }
}
.modal {
  --modal-max-width: 95%;
  --modal-width: 1200px;
  max-width: var(--modal-max-width);
  width: var(--modal-width);
  background-color: var(--surface-color);
  position: relative;
  box-shadow: var(--box-shadow-modal);
  z-index: var(--z-index-modal-window);
}

.modal__wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-modal-window);
  animation-name: fade-in;
  animation-duration: 0.4s;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  z-index: var(--z-index-modal-window);
  top: 0;
  right: 0;
  left: 0;
}

.modal__close .svg-icon {
  height: 16px;
  width: 16px;
}

.modal__box--scrape .modal__content {
  margin: 1.25rem;
  margin-top: calc(var(--btn-height) + 0.5rem);
}

.modal__body {
  background-color: var(--surface-color);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: auto;
  max-height: 80vh;
  transition: max-height 0.2s ease-in;
}

.modal-content-loading .modal__body {
  max-height: 30vh;
  overflow-y: hidden;
}

@media (max-height: 800px) {
  .modal-content-loading .modal__body {
    max-height: 50vh;
  }
}
.modal__body::-webkit-scrollbar-button:start:increment {
  display: block;
  height: calc(var(--btn-height) + 0.5rem);
}

.modal__back-link {
  position: relative;
  margin-right: auto;
}

.modal__back-link svg {
  width: 12px;
  height: 10px;
  fill: var(--white);
  margin: 0;
  pointer-events: none;
  transform: rotate(90deg);
}

.modal__back-link span::after {
  order: -1;
  margin-left: 0;
  margin-right: 0.75rem;
  transform: rotate(180deg) translateX(0);
}

.modal__back-link:hover span::after,
.modal__back-link:focus span::after {
  transform: rotate(180deg) translateX(10px);
}

.modal__box--video .glide__arrows {
  display: block;
}

@media (min-width: 48rem) {
  .modal__body {
    max-height: 95vh;
  }
  .modal__box--scrape .modal__content {
    margin-inline: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 60rem) {
  .modal__back-link {
    height: var(--btn-height);
  }
  .modal__box--video .modal__content {
    margin: var(--btn-height);
  }
}
.loader-pulsing {
  display: block;
  z-index: var(--z-index-modal-pulsing-loader);
  position: relative;
  margin: 5rem auto;
  width: 2rem;
  height: 2rem;
}

.loader-pulsing::before,
.loader-pulsing::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.loader-pulsing::before {
  display: block;
  width: 300%;
  height: 300%;
  margin-left: -100%;
  margin-top: -100%;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.loader-pulsing::after {
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

/*# sourceMappingURL=/assets/application/content-modules/modals-dad2af09.css.map */
