/* contents of htdocs/scss/_lightbox.scss */
#overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

#lightbox {
  z-index: 112;
  width: 800px;
  height: 390px;
  margin: 10% auto 0 auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

#lightbox .lightbox-content, #lightbox .lightbox-content-dark {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 100%;
  padding: 1.4em 2em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#lightbox .lightbox-content-dark {
  background-color: black;
  color: white;
}

#lightbox .quick-signup {
  font-size: 18px;
}

#lightbox .quick-signup legend {
  float: left;
  color: #00aef0;
  font-weight: bold;
  font-size: 22px;
  margin-right: 0.5em;
  padding-top: 0.2em;
}

#lightbox .quick-signup .text {
  font-size: 14px;
  padding: 0.4em 0.7em;
  height: 24px;
}

#lightbox .quick-signup .input-email {
  width: 225px;
}

#lightbox .quick-signup .input-name {
  width: 175px;
  text-transform: none;
}

#lightbox .quick-signup .input-zip {
  width: 90px;
}

#lightbox .quick-signup .input-submit {
  font-size: 28px;
  right: -15px;
}

#lightbox .lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  font-family: "Helvetica Neue" "Helvetica" "Arial" sans-serif;
  font-size: 42px;
  color: white;
  font-weight: 200;
  z-index: 112;
  cursor: pointer;
}
#lightbox .lightbox-cta-label, #lightbox .lightbox-cta-link {
  width: 55%;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 600;
}

#lightbox .lightbox-cta-link {
  width: 45%;
  margin-left: -4px;
  text-align: right;
  font-size: 22px;
}
#lightbox .lightbox-cta-link a {
  color: #00aef0;
}

#lightbox .lightbox-cta-link:after {
  content: '\25b6';
  color: #00aef0;
  font-size: 16px;
  padding-left: 0.5em;
}

#lightbox iframe {
  width: 100%;
  height: 100%;
  position: relative;
}