.msgBox {
  display: table;
  z-index: 99;
  box-shadow: 10px 10px 5px #888;
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 96px;
}
.infoBox {
  border: 1px dotted silver;
  display: inline-flex;
  width: 100%;
  position: relative;
}
.infoBox div {
  background-size: auto 33px;
  min-height: 22px;
}
.msgText {
  margin: auto 0;
}
.msg {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
}
.fatal {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  font-weight: bold;
  border: 2px solid #990066;
  background-color: #cc0033;
  background-image: url('../img/!fatal.png');
}
.warn,
.warning {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  background-color: #FFFF99;
  background-image: url('../img/!warn.png');
}
.help {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  background-image: url('../img/!help.png');
}
.repair {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  background-image: url('../img/!repair.png');
  border: 1px solid #ffcc00;
  background-color: #ffff00;
}
.wait {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  background-color: #ccccff;
  background-image: url('../img/!wait.png');
}
.error {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  color: black;
  border: 2px solid #990033;
  background-color: #f66;
  background-image: url('../img/!error.png');
}
.info {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  background-color: #99CCFF;
  background-image: url('../img/!info.png');
}
.ok {
  display: flex;
  flex: 1;
  min-height: 96px;
  margin: auto 0;
  border: 1px solid #CCCCCC;
  font-family: Tahoma;
  background-repeat: no-repeat;
  background-position: 6px 50%;
  padding: 6px 6px 6px 96px;
  background-color: #ccffff;
  background-color: #CCFFCC;
  background-image: url('../img/!ok.png');
}
.hidden {
  visibility: hidden;
  display: none;
}
.close_x {
  position: absolute;
  top: 9px;
  right: 15px;
  cursor: pointer;
}
.close_x:hover {
  font-weight: bold;
}
#mBox {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  position: relative;
}
#mOverlay {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
}
