﻿#pageLoading {display: none;position: fixed;inset: 0;z-index: 999999;background: rgba(255, 255, 255, 0.15);align-items: center;justify-content: center;-webkit-tap-highlight-color: transparent;}
#pageLoading.is-active {display: flex;}
.page-loading-spinner {width: 15px;height: 15px;border: 2px solid #ff0000;border-top-color: #111;border-radius: 50%;animation: pageLoadingSpin .5s linear infinite;}
@keyframes pageLoadingSpin {
	to {transform: rotate(360deg);}
}
