body {
    position: relative;
    height: 100vh;
    background: #fff;
}

.loader-intro {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    text-align: center;
}

.intro-spinner {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    border: 0.2rem solid;
    border-color: #0078db transparent #0078db transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.gtm-noscript-frame {
    display: none;
    visibility: hidden;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
