@media only screen and (min-width: 750px) {

	.alertas::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}

	.alertas::-webkit-scrollbar-thumb {
		background-color: #CCCCCC;
		border-radius: 5px;
	}

	.alertas::-webkit-scrollbar-track {
		background-color: #FAFAFA;
	}

	.alertas::-webkit-scrollbar-button {
		display: none;
	}

}

.alertas {
	width: 100%;
	height: 100%;
	max-height: 100%;
	margin: 0px;
	padding: 25px;

	background-color: rgba(0,0,0,0.50);

	display: none;
	flex-direction: column;
	align-items: center;

	overflow-y: auto;
	position: fixed;
	z-index: 99996;
	top: 0px;
	left: 0px;
}

.alerta {
	width: 500px;
	max-width: 100%;
	height: auto;
	margin: auto;
	padding: 15px;

	background-color: #FFFFFF;
	box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);
	border-radius: 5px;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 15px;
}

.alerta > span {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 7.5px 15px;

	background-color: #333333;
	border-radius: 5px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.alerta > span > h1 {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	align-items: center;
	gap: 10px;

	text-align: start;
	font-weight: 700;
	font-size: 12px;
	color: #FAFAFA;
}

.alerta > span > h1 > svg {
	font-size: 16px;
}

.alerta > span > button {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	background-color: transparent;
	border: none;

	font-size: 18px;
	color: #FAFAFA;
}

.alerta > p {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 15px 25px;

	text-align: center;
	line-height: 22px;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.alerta > p > a {
	font-weight: 700;
	color: #333333;
}

.sucesso > span {
	background-color: var(--verde);
}

.erro > span {
	background-color: var(--vermelho);
}

.info > span {
	background-color: var(--azul);
}