<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.modal-active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
}
.modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
.modal-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.modal {
  display: flex;
  position: relative;
  width: 90%;
  max-width: 70%;
  max-height: 80%;
  z-index: 9999;
}
.modal-youtube {
  width: 640px;
  height: 360px;
}
.modal-close-btn {
  position: absolute;
  background-color: #FFF5EC;
  line-height: 0;
  padding: 11px;
  border: 1px solid gray;
  border-radius: 99px;
  color: #293377;
  right: -20px;
  top: -20px;
  cursor: pointer;
}
.modal-content {
  width: 100%;
  background-color: #FFF5EC;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
html,
body {
  height: 100%;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0 none;
}
.demo-modal {
  max-width: 500px;
}
.demo-modal-content {
  padding: 40px;
}</pre></body></html>