
    .splash-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--gtlnk-background);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 10010;
      transition: opacity 0.5s ease-out;
    }
    .splash-screen.hide {
      opacity: 0;
      pointer-events: none;
    }
    .loader {
      width: 48px;
      height: 48px;
      border: 5px solid var(--gtlnk-text);
      border-bottom-color: transparent;
      border-radius: 50%;
      animation: rotation 1s linear infinite;
    }
    @keyframes rotation {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .gtlnk-layout {
      display: none;
    }