<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Minimal CSS for WP eCards modal */
#wp-ecard-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: none;
  z-index: 9999;
}

#wp-ecard-modal.wp-ecard-has-adminbar {
  top: 32px;
  height: calc(100vh - 32px);
}
@media (max-width: 782px) {
  #wp-ecard-modal.wp-ecard-has-adminbar {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

#wp-ecard-modal[style*="display: flex"] {
  display: block !important;
}
#wp-ecard-modal-content {
  background: #fff;
  width: 100vw;
  height: 100vh;
  padding: 18px 20px;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
}
.wp-ecard-has-adminbar #wp-ecard-modal-content {
  margin-top: 32px !important;
}
@media (max-width: 782px) {
  .wp-ecard-has-adminbar #wp-ecard-modal-content {
    margin-top: 46px !important;
  }
}
#wp-ecard-modal-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 40px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
}

.wp-ecard-has-adminbar #wp-ecard-modal-close {
 top: 56px !important;
}
@media (max-width: 782px) {
  .wp-ecard-has-adminbar #wp-ecard-modal-close {
   top: 70px !important;
  }
}
@media (max-width: 600px) {
  #wp-ecard-modal-content {
    padding: 16px 4px 4px 4px;
    width: 99vw;
    height: 99vh;
  }
  #wp-ecard-modal-close {
    top: 8px;
    right: 8px;
    font-size: 32px;
  }
}
</pre></body></html>