
.dialog-message-box {
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.dialog-message-box__center {
  background: white;
  padding: 30px;
  max-width: 600px;
  width: 95%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.dialog-message-box__buttons {
  margin-top: 20px;
  text-align: right;
}

.dialog-message-box__button {
  margin: 0;
  border: 1px solid black;
  border-radius: 7px;
  padding: 12px 0;
  text-align: center;
  display: inline-block;
  width: 120px;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  font-weight: bold;
}

.dialog-message-box__button:hover {
  background: rgb(238, 238, 238);
}

.dialog-message-box__button--confirm {
  color: white;
  background: #02bbea;
}

.dialog-message-box__button--confirm:hover {
  background: #00afdb;
}
