#preload {
  display: none;
}

#fuse-splash-screen {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2d323d;
  transition: background-image 0.2s ease-in-out;
  justify-content: flex-start;
  align-items: flex-start;
}

#fuse-background-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 100ms ease-in;
}

#fuse-background-screen.display {
  opacity: 1;
}

#fuse-splash-screen .center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 280px;
  text-align: center;
  background-color: #2d323d;
  padding: 1em;
  margin: 0;
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  transition: box-shadow 100ms ease-in;
}

@media screen and (max-width: 900px){
  #fuse-splash-screen .center {
    width: 100%;
  }
}

#fuse-splash-screen .center.display {
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 35%);
}

#fuse-splash-screen .logo {
  width: 100px;
  text-align: center;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

#fuse-splash-screen .logo img {
  filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.2));
}

#fuse-splash-screen .spinner-wrapper {
  display: block;
  position: relative;
  width: 100%;
  min-height: 100px;
  height: 100px;
}

#fuse-splash-screen .loading-text h2 {
  color: darkgray;
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 0;
}

#fuse-splash-screen .loading-text h1 {
  font-size: 30px;
}

.lds-ellipsis {
  margin: 0 auto;
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #fcb92c;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  background-color: #fcb92c;
  animation: lds-ellipsis1 0.6s infinite,
  background-color 0.6s ease-in-out;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  background-color: #fe8b02;
  animation: lds-ellipsis2 0.6s infinite,
  background-color 0.6s ease-in-out;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  background-color: #fa6302;
  animation: lds-ellipsis2 0.6s infinite,
  background-color 0.6s ease-in-out;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  background-color: #fcb92c;
  animation: lds-ellipsis3 0.6s infinite,
  background-color 0.6s ease-in-out;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.global-error-button-wrapper {
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  display: flex;
}

.global-error-button-wrapper.show {
  opacity: 1!important;
}

.global-error-button-wrapper .help-button {
  box-sizing: border-box;
  border: none!important;
  font-weight: normal;
  background-color: #673ab7!important;
  padding: 0 16px;
  color: white!important;
  border-radius: 4px;
  text-decoration: none!important;
  font-size: 14px;
  min-width: 64px;
  line-height: 36px;
  margin-top: 1em;
  cursor: pointer;
  z-index: 999;
  margin-bottom: 0.5em;
}

