.crt-spsc-wrapper {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
	overflow-y: hidden;
}

.crt-spsc-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
    will-change: transform;
    z-index: 1;
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* WebKit bug fix for border-radius clip during transform */
    width: 200px;
    height: 200px;
}

.crt-spsc-inner,
.crt-spsc-inner-expanded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.crt-spsc-inner-expanded {
    opacity: 0;
    will-change: opacity;
}

.crt-spsc-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.crt-spsc-text-inner {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.crt-spsc-text-small {
	opacity: 1;
	will-change: color, font-size, font-weight, letter-spacing;
}

.crt-spsc-text-large {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
