.modal-mask {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}
.modal-mask .modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.modal-mask .modal-container {
  width: 800px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
}
.modal-mask .modal-container form {
  width: 100%;
}
.modal-mask .modal-container form textarea {
  width: 100%;
  border-radius: 2px;
  padding: 0.1rem 0.5rem;
}
.modal-mask .modal-header h3,
.modal-mask h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-mask .modal-footer > div {
  display: inline-block;
}
.modal-mask .modal-footer .secondary-button {
  display: inline-block;
  margin-left: 0.5rem;
}
.modal-mask .modal-body {
  margin: 0;
}
.modal-mask .modal-default-button {
  float: right;
}
@media (max-width: 840px) {
  .modal-mask .modal-container {
    width: 95%;
  }
}
/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */
.modal-enter {
  opacity: 0;
}
.modal-leave-active {
  opacity: 0;
}
.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
