.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--waiting {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0;
}

.waiting--title {
  margin: 150px auto 20px;
  text-align: center;
  color: white;
  padding: 30px 0;
}

.waiting--message {
  margin: 50px auto 0;
  color: white;
  padding: 0 10px;
  text-align: center;
}



.waiting--loader {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.waiting--loader--bull {
  width: 18px;
  height: 18px;
  background-color: white;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.waiting--loader .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.waiting--loader .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
