.body-blackout {
  position: absolute;
  z-index: 1010;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}
.body-blackout.is-blacked-out {
  display: block;
}

.popup-trigger {
  display: inline-block;
}

.popup {
  width: 75%;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 35px;
  opacity: 0;
  pointer-events: none;
  z-index: 1011;
  max-height: 90%;
  overflow: scroll;
}

@media only screen and (min-width: 768px) {
  .popup {
    width: 600px !important;
  }
  
}

.popup.is--visible {
  opacity: 1;
  pointer-events: auto;
}
.popup-close {
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  font-size: 25px;
}

.popup h2 {
    margin-top: 0;
    color: #062654;
}

.popup a.continue {
    /* float: right; */
    background-color: #197EA8;
    color: #fff;
}

.popup a.cancel {
    /* float: left; */
    background-color:#d6d6d6;
    color: #000;
}

.popup a.cancel:hover {
    cursor: pointer;
}

.popup a.btn {
    padding: 10px 50px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    display: block;
}

@media only screen and (min-width: 768px) {
  .popup a.btn {
    width: 45%;
  }
  
  .popup a.cancel {
    float:left;
  }

  .popup a.continue {
    float: right;
  }

}

.visually-hidden {
  display: none;
}