#toast-container.toast-top-right {
	top: 86px;
	right: 18px;
}

#toast-container > div {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	width: min(420px, calc(100vw - 32px));
	min-height: 82px;
	margin: 0 0 12px;
	padding: 18px 48px 18px 18px;
	color: #263238;
	background-color: #fff !important;
	background-image: none !important;
	border: 1px solid rgba(38, 50, 56, 0.08);
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(38, 50, 56, 0.18);
	opacity: 1;
}

#toast-container > div:hover {
	box-shadow: 0 12px 32px rgba(38, 50, 56, 0.22);
	opacity: 1;
}

#toast-container > div:before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome, sans-serif;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

#toast-container > .toast-success:before {
	content: "\f00c";
	color: #0cbe00;
	background: rgba(12, 190, 0, 0.14);
}

#toast-container > .toast-info:before {
	content: "\f129";
	color: #64adf1;
	background: rgba(100, 173, 241, 0.18);
}

#toast-container > .toast-warning:before {
	content: "\f071";
	color: #ef8f00;
	background: rgba(239, 143, 0, 0.16);
}

#toast-container > .toast-error:before {
	content: "\f00d";
	color: #f93030;
	background: rgba(249, 48, 48, 0.14);
}

#toast-container .toast-title,
#toast-container .toast-message {
	grid-column: 2;
	padding: 0;
	color: #263238;
	text-shadow: none;
}

#toast-container .toast-title {
	margin-bottom: 4px;
	font-family: Quicksand, Raleway, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

#toast-container .toast-message {
	font-family: Mulish, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
}

#toast-container .toast-message a {
	color: #e6007e;
	font-weight: 700;
	text-decoration: underline;
}

#toast-container .toast-message .toast-action-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	margin: 8px 0 0;
	padding: 6px 10px;
	color: #e6007e;
	background-color: rgba(230, 0, 126, 0.1);
	border: 1px solid rgba(230, 0, 126, 0.18);
	border-radius: 6px;
	box-shadow: none;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

#toast-container .toast-message .toast-action-button:before {
	content: "\f06e";
	margin-right: 7px;
	font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome, sans-serif;
	font-weight: 900;
	font-size: 13px;
}

#toast-container .toast-message .toast-action-button:hover,
#toast-container .toast-message .toast-action-button:focus {
	color: #c8006f;
	background-color: rgba(230, 0, 126, 0.16);
	border-color: rgba(230, 0, 126, 0.28);
	text-decoration: none;
}

#toast-container .toast-close-button {
	position: absolute;
	top: 14px;
	right: 14px;
	color: #607d8b;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	opacity: 0.8;
	text-shadow: none;
}

#toast-container .toast-close-button:hover,
#toast-container .toast-close-button:focus {
	color: #263238;
	opacity: 1;
}

#toast-container .toast-progress {
	display: none !important;
}

@media screen and (max-width: 768px) {
	#toast-container.toast-top-right {
		top: 72px;
		right: 0;
		left: 0;
		width: 100%;
		padding: 0 10px;
	}

	#toast-container > div {
		width: 100%;
		max-width: none;
		min-height: 76px;
		margin-right: auto;
		margin-left: auto;
		padding: 16px 42px 16px 16px;
		grid-template-columns: 44px minmax(0, 1fr);
	}

	#toast-container > div:before {
		width: 42px;
		height: 42px;
		border-radius: 8px;
	}
}
