@keyframes pulse {
  from {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0.4;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 0;
  }
}

.pulse {
  -webkit-animation: pulse 1.4s ease-out infinite;
  animation: pulse 1.4s ease-out infinite;
}

.container-app-loader {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10000000000;
  background: #fff;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.container-app-loader.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.container-app-loader.is-hidden {
  display: none;
}

.container-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  transform-origin: center center;
}

.container-pulse svg {
  width: 100%;
  height: 100%;
  display: block;
}

.container-app-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -61px 0 0 -61px;
  width: 122px;
  height: 122px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container-app-logo > svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.app-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.app-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hide-pixel {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

body.portal-loading {
  overflow: hidden;
}