.showError {
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 95%;
  z-index: 1050;
}
.showError.fatal {
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 95%;
  z-index: 1050;
}
.showError .alert {
  margin-bottom: 3px;
  transition: all 1s ease 1s;
  max-height: 15vh;
/*
  white-space: nowrap;
*/
}

.fatalError_wrap {
  /* display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center; */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1051;
}

.fatalError_wrap .fatalError_message {
  box-sizing: border-box;
    font-size: 1em;
    line-height: 1.6em;
    margin: 14vh auto 0;
    max-width: 700px;
    width: 100%;
}

.fatalError_wrap .fatalError_message .code_error {
  font-size: 1.3em;
  line-height: 1.6em;
  font-family: monospace;
}
.fatalError_wrap .fatalError_message .disc {
  font-size: 1.6em;
  line-height: 1.6em;
}

.fatalError_wrap .fatalError_message .summary {
  bottom: 5px;
}

.fatalError_wrap .fatalError_message .summary .reload {
  margin-top: 51px;
  color: #fff;
  background-color: rgb(26, 115, 232);
  /* border-color: #46b8da; */
  background-image: none;
  box-shadow: none;
  float: right;
}

.fatalError_wrap .fatalError_message .summary .reload:active {
  background-color: rgb(25, 103, 210);
}