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

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

.vue-modal-close {
    font-size: 3rem;
    float: right;
    color: #fff;
    cursor: pointer;
    margin-right: 25px;
    position: absolute;
    right: 0;
    top: 20px;
    font-weight: 400;
}

.vue-modal-container {
    width: 90%;
    margin: 0px auto;
    background-color: var(--color_bg_seal);
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    max-width: 600px;
    min-height: 387px;
    position: relative;
    overflow: hidden;
}

.vue-modal-header {
  border-bottom: 0;
  text-align: center;
  padding: 15px;
  position: relative;
  padding-top: 60px;
}
.vue-modal-header h3 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-transform: initial;
}

.vue-modal-header h4 {
    font-size: 16px;
    color: #363435;
    font-weight: 500;
    text-transform: initial;
    margin-top: 9px;
}

.vue-modal-header p {
  font-size: 16px;
  color: #848484;
  margin-top: 19px;
}

.vue-modal-body {
  margin: 5px 0 20px;
  padding: 0 0 3%;
  text-align: center;
}
.vue-modal-body form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vue-modal-body input {
  width: 98%;
  height: 55px;
  border: none;
  border: 1px solid #E1E1E1;
  max-width: 317px;
  padding-left: 1rem;
  vertical-align: top;
  border-radius: 7px;
}

.vue-modal-body ::placeholder {
  color: #444444 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.vue-modal-body button {
    padding: 10px;
    background-color: var(--color_footer_button);
    border: 0;
    color: var(--color_footer_main_font);
    font-size: 14px;
    width: 112px;
    height: 55px;
    border-radius: 7px;
    margin-left: 2px;
}

.vue-modal-body p {
  margin: 2.5rem 0 0;
  font-size: 14px;
  color: var(--color_footer_main_font);
}


@media screen and (max-width: 768px) {
  .vue-modal-body form {
    flex-direction: column;
  }
  .vue-modal-body {
    padding: 0 0 10%;
  }
  /* .vue-modal-body input {
    width: 60%;
  } */
  .vue-modal-body button {
    width: 82px;
  }
  .vue-modal-body p {
    margin: 3.5rem 5px 0;
  }
}