#dialogMe
{
  background: #fff;
  color: #212121;
  border: 1px solid #212121;
  border-radius: 2px;
  padding: 10px;
}

.dialog-custom {
  margin: 0;
  background: #fff;
  display: none;
  /* font-family: 'RobotoDraft', sans-serif; */
  position: fixed;
  top: 50%;
  left: 45%;
  min-width: 400px;
  min-height: 300px;
  margin-left: -150px;
  margin-top: -92.5px;
  border-radius: 2px;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 17px 17px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 15px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -0-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 500;
}

.dialog-custom h2 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 500;
  vertical-align: baseline;
}

.dialog-custom-danger {
  margin: 0;
  background: #dc3545;
  display: none;
  /* font-family: 'RobotoDraft', sans-serif; */
  position: fixed;
  top: 50%;
  left: 45%;
  min-width: 400px;
  min-height: 370px;
  margin-left: -150px;
  margin-top: -92.5px;
  border-radius: 2px;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 17px 17px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 15px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -0-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 500;
}

.dialog-custom-danger h2 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 500;
  vertical-align: baseline;
}

.dialog-custom-success {
  margin: 0;
  background: #28a745;
  display: none;
  /* font-family: 'RobotoDraft', sans-serif; */
  position: fixed;
  top: 50%;
  left: 45%;
  min-width: 400px;
  min-height: 420px;
  margin-left: -150px;
  margin-top: -92.5px;
  border-radius: 2px;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 17px 17px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 15px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -0-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 500;
}

.dialog-custom-success h2 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 500;
  vertical-align: baseline;
}

#close {
  float: right;
  font-size: 20px;
  margin-top: -2.5px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -0-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* #okButton {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  position: relative;
  width: 150px;
  height: 37px;
  border: none;
  outline: none;
  letter-spacing: 3px;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  border-radius: 3px;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,.4);
  background:#212121;
  color: #fff;
} */

.dialogBlack {
  margin: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  background: #000;
  opacity: 0;
  z-index: -5;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -0-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}