<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ac-video-popup-wrapper {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ac-video-popup {
  position: relative;
  display: inline-block;
}

.ac-video-popup-wrapper img {
  display: block;
}

.ac-video-popup__image--overlay {
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.ac-video-popup__play-button-icon {
  align-items: center;
  display: flex;
  justify-content: center;
}

.ac-video-popup__play-button-icon span {
  display: inline-block;
}

.ac-video-popup__play-button-icon svg { 
  display: block;
  height: 20px;
  width: 25px;
}

.ac-video-popup__btn {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 60px;
  justify-content: center;
  left: 50%;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}

.ac-video-popup__btn::before {
  align-items: center;
  animation-delay: 0.5s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: ripple;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  border-radius: 100%;
  bottom: 0;
  content: "";
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.ac-video-popup__btn::after {
  align-items: center;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: ripple;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@media only screen and (min-width: 576px) { 
  .ac-video-popup__btn {
    height: 84px;
    width: 84px;
  }
 
  .ac-video-popup__play-button-icon svg { 
    height: 30px;
  }
}


@media only screen and (max-width: 992px) {
  .ac-tab-full-width .ac-video-popup-wrapper {
    text-align: center;
  }
}</pre></body></html>