/***************/

/* MODAL START */

/***************/

.blackout {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
  display: none;
  opacity: 0;
}
.lightbox {
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 800px;
  margin: auto;
  background-color: white;
  overflow: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.lightbox-content {
  padding: 40px 20px;
}
.record-breaker h2 {
  text-align: center;
  font-size: 20px;
  color: #faa819;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.record-breaker h3 {
  font-size: 22px;
  line-height: 36px;
}
.record-breaker ul {
  /*max-width: 500px;*/
  margin: 0 auto;
  padding-bottom: 20px;
}
.record-breaker li {
  list-style: outside disc;
  margin-left: 30px;
  padding-bottom: 10px;
}
.record-breaker p {
  font-size: 14px;
  line-height: 18px;
}
.record-breaker-value {
  color: #ed6741;
  font-style: italic;
  text-align: center;
}
.record-breaker-get-started {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  background-color: #4bc4d5;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
}
.record-breaker-get-started:hover {
  background-color: #ed6741;
  color: white;
}
