
.modal-mask {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
  }

  .white-background {
    background-color: white;
  }

  .modal-wrapper {
    display: table-cell;
    vertical-align: middle;
  }

  .modal-container {
    margin: 0px auto;
    width: 100%;
    height: 100%;
    background-color: #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
    overflow: auto;
  }

  .modal-header h3 {
    margin-top: 0;
    color: #42b983;
  }

  .modal-body {
    margin: 20px 0;
  }

  .modal-default-button {
    float: right;
  }

  .modal-container .checkbox-custom-label::before {
    width: 28px;
    height: 28px;
  }

  .modal-container .checkbox-custom:checked + .checkbox-custom-label::before {
    font-size: 14px;
  }

  /*
   * 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);
  }

  .modal-body table {
    width: 100%;
  }

  .modal-container {
    font-size: 120%;
  }

  .modal-container .input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1rem;
    width: 100%;
    margin-bottom: 4px;
  }

  .modal-container h3 {
    margin-bottom: 6px;
  }

  .modal-container .modal-header,
  .modal-container .modal-body,
  .modal-container .modal-footer {
    max-width: 1080px;
    margin: 0 auto;
  }

  .modal-container h1,
  .modal-container h2,
  .modal-container h3,
  .modal-container h4,
  .modal-container h5 {
    font-weight: bold;
  }

  .modal-container a {
    color: #2D2D2D;
    text-decoration: underline;
  }
