#toaster {
	position: fixed;
	right: 1rem;
	height: 100%;
	top: 0;
	pointer-events: none;
	width: 450px;
	padding-top: 1rem;
	padding-bottom: 0rem;
	display: flex;
	box-sizing: border-box;
	justify-content: flex-end;
	flex-direction: column;
	align-items: stretch;
	gap: 0.3rem;
	z-index: 9999;
}

@media (max-width: 768px) {
	#toaster {
		width: calc(100% - 2rem);
		justify-content: flex-start;
	}
}

.alert {
	border-radius: 12px !important;
	pointer-events: auto;
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
	border-width: 2px !important;
}

.close-x {
	cursor: pointer;
	background-color: transparent;
	border: none;
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 20px;
	color: #aaa;
	line-height: 1;
	opacity: 0.8;
	outline: none;
}

.close-x:hover {
	opacity: 1;
}
