<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.notification {
    position: relative;
    display: block;
    padding: .75rem .75rem .75rem 2.75rem;
    box-shadow:
        var(--boxShadow1),
        var(--boxShadow2);
    border-radius: var(--borderRadius);
    border-width: 1px;
    border-style: solid;
    background-size: 1.5rem;
    background-position: .75rem .75rem;
    background-repeat: no-repeat;
    z-index: 5;
    font-size: 1rem;
    line-height: 1.5rem;
}

.notification__title {
    font-weight: bold;
}

.notification__message p:last-child {
    margin: 0;
}

.notification__close {
    width: 2.25rem;
    height: 2.25rem;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    margin: 0;
    background: transparent url("/frontend/assets/Shared/Component/Notification/Presentation/Images/Close-9b01f997dd.svg") no-repeat center center;
    background-size: .75rem;
    cursor: pointer;
}

.notification.notification--animated {
    animation: notificationFadeIn .3s ease-out 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.notification.notification--animated.notification--close {
    animation: notificationFadeOut .3s ease-in;
}

@keyframes notificationFadeIn {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes notificationFadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-50%);
        opacity: 0;
    }
}

.notification.notification--hidden {
    display: none;
}

.notification a {
    text-decoration: underline;
}

.notification.notification--error {
    color: var(--redColorDark);
    border-color: var(--redColorLight);
    background-image: url("/frontend/assets/Huurwoningen/Component/Notification/Presentation/Images/Error-dd58c537a6.svg");
    background-color: var(--redColorLight);
}

.notification.notification--info {
    color: var(--primaryColorDark);
    border-color: var(--primaryColorLight);
    background-color: var(--primaryColorLight);
    background-image: url("/frontend/assets/Huurwoningen/Component/Notification/Presentation/Images/Info-57ff580676.svg");
}

.notification.notification--success {
    color: var(--tertiaryColorDark);
    border-color: var(--tertiaryColorLight);
    background-color: var(--tertiaryColorLight);
    background-image: url("/frontend/assets/Huurwoningen/Component/Notification/Presentation/Images/Success-c83ad6fc45.svg");
}

.notification.notification--warning {
    color: var(--secondaryColorDark);
    border-color: var(--secondaryColorLight);
    background-color: var(--secondaryColorLight);
    background-image: url("/frontend/assets/Huurwoningen/Component/Notification/Presentation/Images/Warning-841d892145.svg");
}
</pre></body></html>