.msg-dialog-box {
  font-size: 0px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1em;
  background: #fff;
  outline: none;
  opacity: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.msg-dialog-box.show {
  font-size: 16px;
  opacity: 1;
}

.msg-dialog-box.success {
  color: #111;
  background-color: #55ff55;
}

.msg-dialog-box.error {
  color: #FFF;
  background-color: #ff5555;
}
/*# sourceMappingURL=msg_dialog_box.css.map */