.lk-toast__stack {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: min(420px, calc(100vw - 40px));
	pointer-events: none;
	font-family: "Graphik LCG", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	letter-spacing: 0.01em;
	line-height: 1.4;
	color: #242424;
}

.lk-toast__stack:hover {
	pointer-events: auto;
}

.lk-toast__stack:not(:empty) {
	pointer-events: auto;
}

@media (max-width: 575px) {
	.lk-toast__stack {
		top: 12px;
		right: 12px;
		left: 12px;
		width: auto;
	}
}

.lk-toast {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 40px 14px 14px;
	border-radius: 8px;
	border: 1px solid transparent;
	background-color: #fff;
	box-shadow: 0 8px 24px rgba(36, 36, 36, 0.12);
	pointer-events: auto;
	animation: lkToastIn 0.25s ease-out;
	transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.lk-toast.is-leaving {
	opacity: 0;
	transform: translateX(12px);
}

@keyframes lkToastIn {
	from {
		opacity: 0;
		transform: translateX(16px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.lk-toast__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.lk-toast__body {
	flex: 1;
	min-width: 0;
	padding-top: 2px;
}

.lk-toast__title {
	font-size: 14px;
	font-weight: 500;
	color: #242424;
	margin-bottom: 2px;
}

.lk-toast__text {
	font-size: 13px;
	color: #484848;
}

.lk-toast__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	opacity: 0.45;
	transition: opacity 0.2s ease-in-out;
	border: 0;
	background: transparent;
	padding: 0;
}

.lk-toast__close::before,
.lk-toast__close::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 2px;
	height: 12px;
	background-color: currentColor;
	transform-origin: center;
}

.lk-toast__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.lk-toast__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.lk-toast__close:hover {
	opacity: 1;
}

.lk-toast--error {
	background-color: #fff4f0;
	border-color: rgba(255, 87, 27, 0.2);
	border-left: 3px solid #ff571b;
}

.lk-toast--error .lk-toast__icon {
	background-color: rgba(255, 87, 27, 0.12);
	color: #ff571b;
}

.lk-toast--success {
	background-color: #eef3ff;
	border-color: rgba(0, 87, 255, 0.15);
	border-left: 3px solid #0057ff;
}

.lk-toast--success .lk-toast__icon {
	background-color: rgba(0, 87, 255, 0.12);
	color: #0057ff;
}

.lk-toast--info {
	background-color: #f8f8f8;
	border-color: #d7dadd;
	border-left: 3px solid #929292;
}

.lk-toast--info .lk-toast__icon {
	background-color: rgba(146, 146, 146, 0.15);
	color: #929292;
}
