.toast-banner {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 1000;

	max-width: 369px;
	width: calc(100% - 48px);
	box-sizing: border-box;

	background-color: #1a1a1a;
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s;

	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	font-family: 'Factor A', sans-serif;
}

.toast-banner.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}


.toast-banner__content {
	flex-grow: 1;
	text-align: center;
}

.toast-banner__title, .toast-banner__sub-title {
	color: #ffffff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	margin-left: 54px;
	max-width: 211px;
	text-align: start;
}

.toast-banner__button {
	display: block;
	background-color: #ffffff;
	color: #000000;
	border: none;
	border-radius: 10px;
	padding: 12px 16px;
	cursor: pointer;
	font-weight: 500;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	transition: opacity 0.2s ease;
	text-decoration: none;
	margin-top: 40px;
}
.toast-banner__button:hover {
	opacity: 0.9;
	text-decoration: none;
}

.toast-banner__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
	background: transparent;
	border: none;
	font-size: 24px;
	line-height: 1;
	color: #8e8e8e;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s ease;
}
.toast-banner__close:hover {
	color: #ffffff;
}

/* адаптив */

@media (max-width: 1200px) {
	.toast-banner {
		bottom: 90px;
	}
}