.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.wr-loading-component-content-logo-container {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
}
.wr-loading-component-content-logo-container .wr-loading-component-content-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: url("../images/launcher_index/loader-icon-light.svg") no-repeat;
    background-size: cover;
    animation: uxa-spinner-animation 800ms linear infinite;
}

@keyframes uxa-spinner-animation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hidden-overlay {
    display: none;
}
