.modal-wrapper {
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 5;
  transition: visibility 0.4s, opacity 0.4s;
}
.modal-wrapper > main {
  z-index: 6;
  max-width: 500px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 10px 0 10px 10px;
}
.modal-wrapper > main > button.modal-dismiss {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #e53311;
  border: none;
  color: #fff;
}
.modal-wrapper > main > button.modal-dismiss:active {
  background-color: #5d0c0c;
}
.modal-wrapper > main > header {
  padding-bottom: 10px;
  border-bottom: 2px solid #e7e7e7;
}
.modal-wrapper > main > main {
  margin: 10px 0;
}
.modal-wrapper > main > footer {
  padding-top: 10px;
  border-top: 2px solid #e7e7e7;
}
.modal-wrapper > main > footer > p {
  text-align: center;
  font-size: 15px;
  color: #aaa;
}

/*# sourceMappingURL=modal.css.map */
