div#teco-alert.alert-overall {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	width: 100%;
	height: 100vh;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	z-index: 200000;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
}

div#teco-alert.alert-overall[style*="display: block"] {
	visibility: visible;
	opacity: 1;
}

div#teco-alert.alert-overall div.alert-custom {
	border-radius: var(--Scale-200);
	font-family: Poppins;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	width: 100%;
	max-width: 500px;
	padding: 40px 24px;
}

div#teco-alert.alert-overall div.alert-custom.error-alert {
	color: var(--color-error-800);
	border: 1px solid var(--color-error-800);
	background: var(--color-error-50);
}

div.alert-custom.error-alert .alert-body p {
	margin: initial;
}

div#teco-alert.alert-overall .alert-custom .alert-header {
	border-bottom: initial;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}

div#teco-alert.alert-overall .alert-custom .alert-foo {
	border-top: initial;
}

div#teco-alert.alert-overall div.alert-custom div.alert-foo a.alert-btn {
	border-radius: var(--Scale-300);
	border: 2px solid var(--color-secondary-800);
	background: var(--color-secondary-800);
	color: #fff;
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

@media (max-width: 480px) {
	div#teco-alert.alert-overall {
		padding: 16px;
	}

	div#teco-alert.alert-overall div.alert-custom {
		padding: 30px 16px;
		max-width: 100%;
	}
}

@media (max-width: 360px) {
	div#teco-alert.alert-overall div.alert-custom {
		padding: 24px 12px;
		font-size: 16px;
	}
}