.woocommerce-MyAccount-content {

	transition:all 1s;
}

.sswcmaat-loading:after, 
.sswcmaat-loading:before {
	position:absolute;
	top:calc(50% - 90px);
	left:calc(50% - 90px);

}

.sswcmaat-loading:before {
	content:'ASPCC';
	padding:65px 0 0 30px;
    font-family: Spectral, serif;
	font-weight:800;
	font-size:35px
}
.sswcmaat-loading:after {
    b!ackground: transparent url(../imgs/loading.gif) center center no-repeat;
	content:'';
	aspect-ratio: 1/1;
	border-radius: 50%;
	animation-name: spin;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	width: 180px;
	border: 5px solid var(--vert);
	border-top-color: transparent;
	animation-duration: 1s;
}

/* Keyframes Spin */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@media only screen and (max-width: 768px) {
	.woocommerce-MyAccount-content {
		position:relative;
	}
	.sswcmaat-loading:after, 
	.sswcmaat-loading:before {
		position:absolute;
		top:50%;
	}
}
