<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.popUp.loading {
    overflow: hidden;
}

.loadingIcon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 16px auto;
}

.loadingIcon img {}

.loadingIcon img.iconBG {
    width: 64px;
}

.loadingIcon img.iconVideo {
    position: absolute;
    right: 19px;
    top: 5px;
    animation: rotation 2s infinite linear;
}

.loadingIcon img.iconSpotA {
    position: absolute;
    right: 21px;
    top: 31px;
    animation: display .4s infinite .2s linear;
}

.loadingIcon img.iconSpotB {
    position: absolute;
    right:21px;
    top: 36px;
    animation: display .4s infinite linear;
}
@keyframes rotation {
		from {
				transform: rotate(0deg);
		}
		to {
				transform: rotate(359deg);
		}
}
@keyframes display {
		from {
				opacity: 0;
		}
		to {
				opacity: 1;
		}
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1024px) {}

@media screen and (min-width: 1440px) {}</pre></body></html>