.header-alert {
	position: absolute;
	padding: 3px;
	width: 50%;
	text-align: center;
	margin-left: 25%;
	margin-top: 63px;
	z-index: 1;
}

#close_msg_icon {
	position:absolute;
	right:10px;
}

.toast {
	display: flex;
	align-items: center;
	position: fixed;
	bottom: 20px;
	right: 20px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.466);
	background-color: whitesmoke;
}

.toast-link {
	display: inline-flex;
	align-items: center;
	padding: 15px 5px 15px 10px;
	text-decoration: none;
	color: black;
}

.toast-link:hover {
	text-decoration: none;
	color: black;
	cursor: pointer;
}

.toast-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	background-color: #ffc107;
	color: white;
	border-radius: 25px;
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

.toast-content {
	font-size: 16px;
	font-weight: bold;
}

.toast-close {
	display: inline-flex;
	align-self: flex-start;
	margin-left: 10px;
	font-size: 20px;
	margin-right: 10px;
	font-family: arial;
	text-decoration: none;
	color: #222;
}

.toast-close:hover {
	text-decoration: none;
	color: #666;
}