<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#loading-animation {
    margin-left: auto;
    margin-right: auto;
    width: 44px;
    height: 44px;
    position: relative;
    top: 45%;
    transform: translateY(-50%);
}

.ring-title {
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #424242;
    font-weight: bold;
    margin-top: 24px;
    width: 400px;
    height: 32px;
    transform: translate(-100px, 0);

}

.ring-text {
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #424242;
    font-weight: normal;
    margin-top: 0px;
    width: 400px;
    height: 16px;
    transform: translate(-155px, 0);
}

.ring-text2 {
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #424242;
    font-weight: normal;
    margin-top: 8px;
    width: 400px;
    height: 16px;
    transform: translate(-55px, 0);
}

.ring {
    display: inline-block;
    position: relative;
    width: 400px;
    height: 44px;
    transform: scale(1);
}
.ring:before,
.ring:after {
    content: '';
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 44px;
    height: 44px;
    margin: 8px;
    border: 4px solid;
    border-radius: 50%;
    animation: lds-ring 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #0074bd transparent transparent transparent;
}
.ring:before {
    animation-delay: -0.45s;
}
.ring:after {
    animation-delay: -0.3s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
</pre></body></html>