#ssActivityIndicator_Container {
    z-index: 9999;
    box-sizing: border-box;
    position: absolute !important;
	display: inline-block;
    left: 50%;
    top: 15%;
	text-align: center;
	transform: translatex(-50%);
}

#ssActivityIndicator_SpinnersWrapper {
    z-index: 2;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
	height: 88px;
}

#ssActivityIndicator_Message {
    z-index: 2;
    position: relative;
	font: 14px sans-serif;
	padding: 6px 8px 4px;
	background: rgba(15, 39, 62, .8);
	color: #fff;
    border: 1px solid rgba(49, 104, 155, .8);
	border-radius: var(--borderRadius_els);
    text-align: center;
    white-space: pre-line; /* Preserve natural line breaks but collapse whitespace while wrapping when required */
}

#ssActivityIndicator_Underlay {
    z-index: 1;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(49, 104, 155, .8);
    border-bottom: none;
    border-radius: var(--borderRadius_els) var(--borderRadius_els) 0 0;
    background: rgba(15, 39, 62, .8);
}

/** https://raw.githubusercontent.com/tobiasahlin/SpinKit/master/LICENSE */
.ssAI_spinner {
    margin-top: 5px;
    margin-left: 13px;
	width: 60px;
	height: 60px;
	text-align: center;

	transition: opacity 500ms, height 200ms;

	animation: ss-anim-rotate 2.0s infinite linear;
}

.ssAI_spinner .ssAI_dots {
	display: inline-block;
	position: absolute;
	top: 0;
	width: 74%;
	height: 74%;
    border-radius: 100%;

	mix-blend-mode: difference;

	animation: ss-anim-bounce 2.0s infinite ease-in-out;
}

.ssAI_spinner .ssAI_dot1 {
    background-color: var(--ColorContrastPrim);
    border: 2px solid #fff;
}

.ssAI_spinner .ssAI_dot2 {
	top: auto;
	bottom: 0;
    background-color: #fff;
    border: 2px solid var(--ColorContrastPrim);

	animation-delay: -1.0s;
}

@keyframes ss-anim-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes ss-anim-bounce {
	0%, 100% {
		transform: scale(0.0);
	} 50% {
		transform: scale(1.0);
	}
}

/** https://raw.githubusercontent.com/tobiasahlin/SpinKit/master/LICENSE */
.spinner {
	margin: 0.8rem auto;
	width: 60px;
	height: 60px;
	text-align: center;

	-webkit-animation: ss-anim-rotate 2.0s infinite linear;
	animation: ss-anim-rotate 2.0s infinite linear;
}

.spinner .dot1,
.spinner .dot2 {
	display: inline-block;
	position: absolute;
	top: 0;
	width: 74%;
	height: 74%;
	border-radius: 100%;

	mix-blend-mode: difference;

	-webkit-animation: ss-anim-bounce 2.0s infinite ease-in-out;
	animation: ss-anim-bounce 2.0s infinite ease-in-out;
}

.spinner .dot1 {
	background-color: var(--ColorContrastPrim);
}

.spinner .dot2 {
	top: auto;
	bottom: 0;
	background-color: #fff;

	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes ss-anim-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes ss-anim-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes ss-anim-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes ss-anim-bounce {
	0%, 100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	} 50% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}
