.modal-backdrop {
  background-color: rgba(0, 0, 0, .8);
  bottom: 0;
  left: 0;
  overflow: auto;
  padding: 50px 15px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

@media(max-width: 750px) {
  .modal-backdrop {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}

.modal {
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  flex-flow: column nowrap;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  padding-top: 30px;
}

.modal__title {
  color: #008f0b;
  font-family: var(--brand);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.modal__header {
  display:  block;
  padding: 0 50px 30px;
  text-align: center;
}

.modal__body {
  color: #5c645d;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 0 50px 30px;
}

.modal__footer {
  padding: 0 50px 30px;
  text-align: center;
}