.modal-mask[data-v-fbb7c76b] {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}
.modal-wrapper[data-v-fbb7c76b] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}
.modal-dialog[data-v-fbb7c76b] {
  width: 500px;
  max-width: 100%;
  margin: 0;
}
.modal-content[data-v-fbb7c76b] {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.modal-body[data-v-fbb7c76b] {
  padding: 0;
}

/* we will explain what these classes do next! */
.fade-modal-enter-active[data-v-fbb7c76b],
.fade-modal-leave-active[data-v-fbb7c76b] {
  transition: opacity 0.3s ease;
}
.fade-modal-enter-from[data-v-fbb7c76b],
.fade-modal-leave-to[data-v-fbb7c76b] {
  opacity: 0;
}