/** Modal CSS */

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

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

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  /*background-color: #fff;*/
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

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

.modal-body {
  margin: 0px 0;
  text-align: center;
}

.modal-footer {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

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

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

/** =========== */

.loadercontainer {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* admin system modal css */
#system_modal_bubble {
  width: 420px;
  height: auto;
  overflow: auto;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  position: relative;
}
#system_modal_bubble_title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #dadada;
  margin: 0 0 15px 0;
  padding: 0 0 5px 0;
  float: left;
  width: 100%;
}
#system_modal_bubble_close_button {
  cursor: pointer;
  background: #dadada;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #444;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 19px;
  display: block;
  border-radius: 100px;
  position: absolute;
  top: 10px;
  right: 10px;
}
#system_modal_bubble_close_button:hover {
  background: #333;
  color: #fff;
}

#system_modal_bubble_title h3 {
  margin-top: 0;
}
