/* GTM noscript iframe: avoid inline style="" (CSP style-src-attr) */
.inline-style-1 {
  display: none;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.loading::before,
.loading::after {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.loading::before {
  content: '';
  background-color: #fff;
}

.loading::after {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  content: 'LOADING';
  text-align: center;
  white-space: pre;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04rem;
  color: #000;
  opacity: 0.8;
  animation: animation 1s alternate infinite;
}

@keyframes animation {
  to {
    opacity: 0.2;
  }
}
