.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.modal {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 35;
  text-align: center;
}
.modal-dialog {
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.modal-dialog__box {
  background-color: var(--color-white);
  width: 80%;
  max-width: 480px;
  left: 50%;
  min-height: 110px;
  min-height: 11rem;
  padding: 50px 30px 0px;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-dialog__txt {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.modal-dialog__btn-close {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding: 6px 30px;
}

.modal-dialog__btn-execute {
  color: #ffffff;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding: 6px 30px;
}

.modal-dialog__btn-cancel {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding: 6px 30px;
}
