.loading-screen-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.loading-screen-container .loading-screen-container-panel {
  align-items: center;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  width: 200px;
}

.loading-screen-container .loading-screen-container-panel .loading-screen-container-separator {
  height: 20px;
}

.loading-screen-container .loading-screen-container-panel .loading-screen-container-message {
  font-size: 12px;
}

.loading-screen-container .loading-screen-container-panel .loading-screen-container-logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  height: 90px;
  width: 100%;
}

.loading-screen-container .loading-screen-container-panel .loading-screen-container-loader span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #0090ff;
  opacity: 0;
  animation: dot-animation 1.25s infinite;
}

.loading-screen-container .loading-screen-container-panel .loading-screen-container-loader span:nth-child(1) {
  animation-delay: 0.0s;
}
.loading-screen-container .loading-screen-container-panel .loading-screen-container-loader span:nth-child(2) {
  animation-delay: 0.15s;
  margin: 0 10px;
}
.loading-screen-container .loading-screen-container-panel .loading-screen-container-loader span:nth-child(3) {
  animation-delay: 0.25s;
}

@keyframes dot-animation {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
