<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#events__block.is-loading {
    color: transparent!important;
    pointer-events: none;
    position: relative;
}
#events__block.is-loading::before {
	background: rgba(0, 0, 0, 0.05);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute!important;
    z-index: 499;
}
#events__block.is-loading::after {
    left: 50%;
    top: 50%;
    position: absolute!important;

    -webkit-animation: spinAround .5s infinite linear;
    animation: spinAround .5s infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    margin-top: -24px;
    margin-left: -24px;
    height: 48px;
    width: 48px;

    z-index: 500;
}

@-webkit-keyframes spinAround {
	from {
		-webkit-transform:rotate(0);
		transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		transform:rotate(359deg);
	}
}
@keyframes spinAround {
	from {
		-webkit-transform:rotate(0);
		transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		transform:rotate(359deg);
	}
}</pre></body></html>