<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lightbox {
  /** Hide the lightbox */
  display: none;

  /** Apply basic lightbox styling */
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color:#333333;
  background: #0009;
}

.lightbox:after {
  content: '';
  display: table;
  clear: both;
}

.lightbox .box {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  min-width:500px;
  margin: 2% auto;
  padding:20px;
  background-color:#FFF;
  box-shadow: 0px 1px 26px -3px #777777;
  position: absolute;
  left: 0;
  right: 0;
}

.lightbox .title {
  margin:0;
  padding:0 0 10px 0px;
  border-bottom:1px #ccc solid;
  font-size:22px;
}

.lightbox .content {
  display:block;
  padding:10px 0 0 0px;
  font-size:18px;
  line-height:22px;
}

.lightbox .content h4 {
  line-height: 1.2;
}

.lightbox .close {
  float:right;
  display:block;
  text-decoration:none;
  font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:22px;
  color:#858585;
  font-weight: 700;
  position: absolute;
  right: 10px;
  top: 10px;
}

.lightbox .open {
  /** Show lightbox when mouse leaves the browser window */
  display: block;
  outline: none;
}

.lightbox .optin-form-wrapper h2 u {
    color: #f8436b;
}

.lightbox .optin-form-wrapper h2 {
    color: #333;
}</pre></body></html>