@font-face {
    font-family: 'IBMPlexSans';
    src: local('IBMPlexSans-Medium'), local('IBMPlexSansMedium'), url(../fonts/brand/IBMPlexSans-Medium.ttf) format('truetype');
    font-weight: 500;
    font-display: swap;
}

html.loading {
    background: #fff;
    display: table;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

body.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

.text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-container {
    display: flex;
}

.loading-lottie {
    width: 18px;
    height: 18px;
}

.loading-text-static {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    color: #242529;
    font-size: 15px;
    letter-spacing: 0%;
    margin: 0 15px;
}

/* Safari iOS orientation fix */
html, body {
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Fix for Safari white screen on orientation change */
@supports (-webkit-appearance: none) {
    html {
        height: -webkit-fill-available;
    }
    body {
        min-height: -webkit-fill-available;
    }
}

/* Force repaint on orientation change */
.x-viewport {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}