[data-theme="sap_horizon_dark"] {
    --bgcolor: #12171c !important;
}

[data-theme="sap_horizon"] {
    --bgcolor: #f5f6f7 !important;
}

.sapUiBody {
    background-color: var(--bgcolor);
}

.splash-screen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blink 2s linear alternate infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}