body,
html {
  width: 100%;
  height: 100%;
}

#root-container {
  display: none;
}

#loading-container {
  display: table;
  position: absolute;
  height: 100%;
  background: #ccc;
  width: 100%;
}

.loading-container {
  display: none;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.spinner-container {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  text-align: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 50px;
  height: 50px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}