<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">[data-component=notifications] .notifications-inner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 15px;
    padding-bottom: 200px;
	z-index: 1001;
    background-image: linear-gradient(0deg, transparent, rgb(0 0 0 / 100%));
    animation: fadeIn 0.5s ease-in-out forwards;
}
[data-component=notifications] .notifications-inner.close {
    animation: fadeOut 0.5s ease-in-out forwards;
}

@media (min-width: 768px) {
    [data-component=notifications] .notifications-inner {
        padding-top: 33px;
    }
}

[data-component=notification] {
	display: block;
	background-color: #fff;
	padding: 8px;
	border-radius: 8px;
	box-shadow: 0 8px 15px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
	flex-direction: column;
	justify-content: space-between;
    transition: all 0.5s ease-in-out;
    animation: slideDown 0.5s ease-in-out forwards;
}

[data-component=notification].cancel {
    animation: slideRight 0.5s ease-in-out forwards;
}

[data-component=notification] .title {
    display: block;
    font-weight: 600;
    font-size: 15px;
    padding: 10px;
    padding-bottom: 0;
}

[data-component=notification] .message {
    display: block;
    font-weight: 400;
    font-size: 15px;
    padding: 10px;
    padding-top: 0;
}

[data-component=notification] .separator {
    display: block;
    height: 1px;
    background-color: #eaeaea;
    margin: 10px 0 8px;
}

[data-component=notification] .actions {
    display: grid;
    grid-template-columns: 50% 50%;
}

[data-component=notification] .actions .link {
    position: relative;
    display: block;
    color: var(--primary-website-color);
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    padding: 8px;
}
[data-component=notification] .actions .link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-website-color);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
[data-component=notification] .actions .link:last-child {
    color: #565656;
}
[data-component=notification] .actions .link:last-child::before {
    background-color: #000;
}
[data-component=notification] .actions .link:hover::before {
    opacity: 0.1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(calc(-100% - 40px));
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100% + 40px));
    }
}</pre></body></html>