.progrees-text-pack {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.progress_texts {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 700;
	color: #001e46;
	margin-bottom: 6px;
}

.progress {
	position: relative;
	height: 28px;
	background: #dce8f3;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #b3d9f0;
}

.progress-striped #load {
	background-image: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.15) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, 0.15) 50%,
		rgba(255, 255, 255, 0.15) 75%,
		transparent 75%,
		transparent
	);
	background-size: 20px 20px;
}

.progress.active #load {
	animation: progressStripes 1s linear infinite;
}

@keyframes progressStripes {
	from { background-position: 0 0; }
	to { background-position: 20px 0; }
}

#load {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background-color: #00a3e0;
	border-radius: 14px;
	transition: width 0.6s ease;
}

#demo {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #001e46;
	z-index: 1;
}
