.fullscreen {
  width: 100%;
  height: 100%;
}

.dialog-container.active {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}

.dialog {
  background: wheat;
  padding: 10px;
  border-radius: 5px;
}

.dialog--alert, .dialog--confirm {
  width: 80%;
  margin: 100px auto 0;
  text-align: center;
}

.dialog--notification {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  text-align: left;
}

.dialog--toast {
  position: absolute;
  bottom: 20px;
  left: 20%;
  right: 20%;
  border-radius: 10px;
  background: black;
  padding: 0.2em;
}

.toast--message {
  color: white;
  margin: 0;
  text-align: center;
}

.dialog--waiting, .dialog--splash {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0;
}

.dialog--splash .dialog--title {
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 100px auto 80px;
}

.dialog--splash .dialog--message {
  text-align: center;
  color: white;
  font-size: 14px;
  padding: 10px;
  margin-top: 50px;
}
