@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700&display=swap');

html,
body {
	height: 100%;
}

html {
	font-family: 'Inter';
	color: #000000;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}

h1 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 40px;
	margin: 10px 0;
}

p {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	margin: 10px 0;
	color: #7a8893;
}

.Header {
	border-bottom: 2px solid #d4d4d4;
	padding: 5px 12px;
}

.Logo {
	width: 200px;
}

.Footer {
	border-top: 2px solid #d4d4d4;
	padding: 5px 0;
	display: grid;
	justify-content: center;
	color: #7a8893;
	font-size: 15px;
	text-align: center;
	gap: 3px;
}

.MainContent {
	display: grid;
	place-content: center;
	text-align: center;
}

.Progress {
	width: 100%;
	height: 7px;
	margin: 18px auto;
	background: #e9edf1;
	border-radius: 999px;
	overflow: hidden;
}

.ProgressBar {
	display: block;
	height: 100%;
	width: 35%;
	background: linear-gradient(90deg, #99daff, #38b6ff);
	border-radius: inherit;
	animation: loading 3s ease-in-out infinite;
}

.MaintenanceIcon {
	height: 100px;
	width: 90px;
	justify-self: center;
	border: 2px solid #7a8893;
	display: grid;
	place-items: center;
	border-radius: 12px;
	margin-bottom: 10px;
	position: relative;
}

.CogIcon {
	width: 50px;
	color: #38b6ff;
	animation: spin 5s linear infinite;
}

.CogIcon path {
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 0.6;
	stroke-linejoin: round;
	stroke-linecap: round;
	display: block;
}

.ActiveItem {
	width: 15px;
	height: 15px;
	border-radius: 999px;
	background-color: #38b6ff;
	position: absolute;
	bottom: -5px;
	right: -5px;
}

.ActiveItem::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background-color: #38b6ff;
	z-index: -1;
	animation: pulseWave 1.8s ease-out infinite;
}

.ContactBtn {
	background-color: #fff;
	margin-top: 15px;
	padding: 10px 15px;
	border-radius: 6px;
	border: 1px solid #7a8893;
	width: fit-content;
	color: inherit;
	justify-self: center;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	display: flex;
	gap: 10px;
	place-items: center;
	transition:
		color 0.5s ease,
		border-color 0.5s ease,
		background-color 0.5s ease;
}

.ContactBtn span {
	font-size: 16px;
}

.ContactBtn:hover {
	color: #38b6ff;
	border-color: #38b6ff;
}

.NotificationBox {
	position: fixed;
	left: 50%;
	top: 10px;
	transform: translate(-50%, -20px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: flex;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	padding: 10px 20px;
	border-radius: 6px;
	gap: 20px;
	z-index: 1000;
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0s linear 0.22s;
}

.NotificationBox.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0s linear 0s;
}

.NotificationBox button {
	border: none;
	background-color: #ffff;
	font-size: 16px;
	color: #7a8893;
	transition: color 0.5s ease;
}

.NotificationBox button:hover {
	color: #d12e2e;
}

.AI {
	color: #f191bc;
}

.NotificationInfo {
	display: flex;
	gap: 10px;
	place-content: center;
	place-items: center;
}

.NotificationInfo p {
	color: #404040;
}

@keyframes pulseWave {
	0% {
		transform: scale(1);
		opacity: 0.3;
	}
	70% {
		transform: scale(2.8);
		opacity: 0;
	}
	100% {
		transform: scale(2.8);
		opacity: 0;
	}
}

@keyframes loading {
	0% {
		transform: translateX(-120%);
	}
	100% {
		transform: translateX(320%);
	}
}

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