.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background-color: #f2f2f2
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 40px;
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
}

.loading-text {
	font-size: 24px;
	font-weight: bold;
	color: #b0b0b0;
}
.loading-bar {
	width: 320px;
	height: 8px;
	background-color: #d9d9d9;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0px;
}
.loading-progress {
	width: 75%; /* Change this value to update progress */
	height: 100%;
	background-color: #b0b0b0;
	border-radius: 4px;
}

.tooltip {
	font-size: 18px;
	font-weight: bold;
	color: #525157;
	text-align: center;
    transition: opacity 0.5s ease;
    max-width: 500px;
    word-wrap: break-word;
}

.loading-message {
	font-size: 24px;
}
.central-graphic {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-bottom: 20px;
}
.bar {
	width: 4px;
	height: 40px;
	background-color: #b0b0b0;
	position: relative;
	border-radius: 2px;
}
.dot {
	width: 14px;
	height: 14px;
	background-color: #b0b0b0;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}
.dot-1 {
	animation-name: moveUpDown1;
}
.dot-2 {
	animation-name: moveUpDown2;
}
.dot-3 {
	animation-name: moveUpDown3;
}
@keyframes moveUpDown1 {
	0%,
	100% {
		bottom: -7px;
	}
	25% {
		bottom: 6px;
	}
	50% {
		bottom: 19px;
	}
	75% {
		bottom: 33px;
	}
}
@keyframes moveUpDown2 {
	0%,
	100% {
		bottom: 6px;
	}
	25% {
		bottom: 19px;
	}
	50% {
		bottom: 33px;
	}
	75% {
		bottom: -7px;
	}
}
@keyframes moveUpDown3 {
	0%,
	100% {
		bottom: 19px;
	}
	25% {
		bottom: 33px;
	}
	50% {
		bottom: -7px;
	}
	75% {
		bottom: 6px;
	}
}
