.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.svg-loader {
	display: flex;
	position: relative;
	align-content: space-around;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	font-size: 16px;
	line-height: 16px;
}

.loader-svg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	fill: none;
	stroke-width: 6px;
	stroke-linecap: round;
	stroke: #e20074;
}

.loader-svg.bg {
	stroke-width: 6px;
	stroke: #828282;
}

.animate {
	/* stroke-dasharray: 242.6; */
	animation: fill-animation 3.5s ease-in-out infinite;
}

.animate-rotate {
	animation: rotate 2s linear infinite
}

.title {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	color: #000;
	font-size: 1.5em;
	line-height: 1em;
	margin-top: 10px;
}

@keyframes fill-animation {
	0% {
		stroke-dasharray: 60, 252;
		stroke-dashoffset: 60
	}

	50% {
		stroke-dasharray: 252, 252;
		stroke-dashoffset: 0
	}

	to {
		stroke-dasharray: 60, 252;
		stroke-dashoffset: -192
	}
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}
