#kowo-lottie-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  padding: 20px;
}

#kowo-lottie-popup.is-open {
  display: flex;
}

.kowo-lottie-popup__dialog {
  position: relative;
  width: min(600px, 92vw);
  max-height: 92vh;
  background: #a7d0ee;
  border-radius: 16px;
  overflow: hidden;
}

.kowo-lottie-popup__animation {
  width: 100%;
  aspect-ratio: 6/7;
}

.kowo-lottie-popup__animation svg {
  width: 100% !important;
  height: 100% !important;
}

.kowo-lottie-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  line-height: normal;
  border-radius: 999px;
  border: none;
  font-size: 30px;
  background: #fff;
  color: #003084;
  cursor: pointer;
  z-index: 10;
}

body.kowo-popup-open {
  overflow: hidden;
}