<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.property-alert-wizard {
    display: block;
    box-shadow:
        var(--boxShadow1),
        var(--boxShadow2);
    background-color: #FFFFFF;
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.property-alert-wizard__header {
    font-size: 2rem;
    line-height: 1.25;
    padding: 1rem;
    font-weight: bold;
    font-family: var(--fontFamilyHeaders);
    background: var(--secondaryColor) url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/Brandmark-6bca65eb2f.svg") top right no-repeat;
    color: #FFFFFF;
    text-align: center;
}

.property-alert-wizard__progress {
    --progress: 0;
    --progressColor: var(--primaryColor);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 2rem 0 2rem;
    background-image: linear-gradient(
        to bottom,
        transparent 0% calc(50% - 2px),
        var(--progressColor) calc(50% - 2px) calc(50% + 2px),
        transparent calc(50% + 2px) 100%),
    linear-gradient(
        to bottom,
        transparent 0% calc(50% - 2px),
        var(--greyColor40) calc(50% - 2px) calc(50% + 2px),
        transparent calc(50% + 2px) 100%);
    background-size: var(--progress) 100%,
    100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s linear;
}

.property-alert-wizard__progress.property-alert-wizard__progress--hidden {
    display: none;
}

.property-alert-wizard__progress-step {
    position: relative;
    display: block;
    width: 1.5rem;
    height: 0;
    padding-top: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--greyColor40);
}

.property-alert-wizard__progress-step::before {
    position: absolute;
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    top: 50%;
    left: 50%;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
}

.property-alert-wizard__progress-step.property-alert-wizard__progress-step--location::before {
    background: transparent url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/Location-5a14e51d01.svg") center no-repeat;
}

.property-alert-wizard__progress-step.property-alert-wizard__progress-step--characteristics::before {
    background: transparent url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/Characteristics-8429267bc9.svg") center no-repeat;
}

.property-alert-wizard__progress-step.property-alert-wizard__progress-step--account::before {
    background: transparent url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/Account-31e4a0e007.svg") center no-repeat;
}

.property-alert-wizard__progress-step.property-alert-wizard__progress-step--active {
    background-color: var(--primaryColor);
}

.property-alert-wizard__content {
    position: relative;
}

.property-alert-wizard__step {
    position: absolute;
    top: 0;
    transform: translateX(100%);
    padding: 1.5rem;
    width: 100%;
    background-color: #FFFFFF;
}

.property-alert-wizard__step.property-alert-wizard__step--active {
    position: relative;
    transform: none;
}

.property-alert-wizard__step.property-alert-wizard__step--success {
    text-align: center;
}

.property-alert-wizard__step.property-alert-wizard__step--success::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1.5rem auto;
    background: transparent url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/SuccessCheckmark-1b17f1a90b.svg") center no-repeat;
}

.property-alert-wizard__step-title {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: bold;
    font-family: var(--fontFamilyHeaders);
    text-align: center;
    margin-bottom: 1.5rem;
}

.property-alert-wizard__step-subtitle {
    font-size: 1rem;
    line-height: 1rem;
    font-family: var(--fontFamilyHeaders);
    color: var(--greyColor30);
    text-align: center;
    margin-top: -1.25rem;
}

.property-alert-wizard__step-content {
    margin-bottom: 1.5rem;
}

.property-alert-wizard__step-buttons {
    display: flex;
}

.property-alert-wizard__number-of-results {
    font-size: .75rem;
    line-height: 1.5;
    display: flex;
    gap: .5rem;
    margin-inline: -1rem;
    padding: .75rem 1rem 1rem 1rem;
    border-top: 1px solid var(--greyColor50);
}

.property-alert-wizard__number-of-results p {
    margin: 0;
}

.property-alert-wizard__number-of-results p::before {
    content: '';
    flex: 0 0 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/NumberOfResults-2448277283.svg");
}

.button.button--plain.property-alert-wizard__button-previous {
    color: var(--secondaryColor);
    margin-right: auto;
}

.button.button--plain.property-alert-wizard__button-previous::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/ArrowPrevious-c414c9ae61.svg") center no-repeat;
    margin-right: .5rem;
}

.button:is(.button--secondary, .button--primary):is(.property-alert-wizard__button-next, .property-alert-wizard__button-submit) {
    margin-left: auto;
}

.button:is(.button--secondary, .button--primary).property-alert-wizard__button-next:disabled {
    cursor: default;
    opacity: 0.5;
}

.button:is(.button--secondary, .button--primary).property-alert-wizard__button-next::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent url("/frontend/assets/Shared/Component/PropertyAlertWizard/Presentation/Images/ArrowNext-04f0b3f400.svg") center no-repeat;
    margin-left: .5rem;
}

.property-alert-wizard__listing-count {
    font-size: .75rem;
    line-height: calc(16/12);
}

.property-alert-wizard__city-image img {
    display: block;
    border-radius: var(--borderRadius);
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 1.5;
    border: 1px solid var(--greyColor40);
}

.property-alert-wizard__autocomplete img {
    margin-top: 1rem;
    max-width: 100%;
}

.property-alert-wizard--dialog .property-alert-wizard__header {
    padding-right: 4.5rem;
}

.property-alert-wizard--no-anims .property-alert-wizard__progress {
    transition: none;
}
</pre></body></html>