.root-initial-loader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999 !important;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#quotes {
    width: 550px;
    text-align: center;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.app-text-loader {
    background: #afafaf;
    background-image: linear-gradient(to right, #959595 0%, #afafaf 20%, #959595 40%, #afafaf 100%);
    background-repeat: no-repeat;
    background-size: 1000px 1000px;
    display: inline-block;
    position: relative;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: textAnimation;
    animation-timing-function: linear;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: textAnimation;
    -webkit-animation-timing-function: linear;
}

@keyframes textAnimation {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@-webkit-keyframes textAnimation {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
}