@-webkit-keyframes pulsate {
  0% {
    opacity: 0.5;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes pulsate {
  0% {
    opacity: 0.5;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.loading-container {
  background-color: #fff;
  height: 100vh;
}

.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
}

.pulsate {
  animation: pulsate 2s ease-out;
  -webkit-animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.5;
}

.logo-img {
  height: 100%;
  background: url('../../../content/images/intercun-256.png') no-repeat center center;
  background-size: contain;
  height: 90px;
  display: inline-block;
  vertical-align: middle;
  width: 140px;
  width: 100%;
}

#loading-error h2 {
  text-align: center;
}

#loading-error p.info a {
  background-color: rgb(238, 247, 255);
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  font-weight: 500;
}

#loading-error p.info a:hover {
  background-color: rgb(225, 241, 255);
  text-decoration: none;
}

#loading-pulse strong {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}
