<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dialog--call-agent {
    padding: 1.5rem;
    border: none;
    border-radius: var(--borderRadius);
    box-shadow:
        var(--boxShadow1),
        var(--boxShadow2);
    text-align: center;
    max-width: 24rem;
    width: calc(100% - 2rem);
}

.dialog--call-agent::backdrop {
    background: var(--greyColor20);
    background: color(from var(--greyColor20) srgb r g b / 0.4);
}

.dialog--call-agent .dialog__header {
    position: relative;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
    text-align: left;
}

.dialog--call-agent .dialog__title {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.dialog--call-agent .dialog__close-button {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    background: transparent url("/frontend/assets/Huurwoningen/Component/Dialog/Images/Close-6e4bb1b966.svg") no-repeat center;
    margin-left: auto;
    padding: 0;
    cursor: pointer;
}

.dialog--call-agent .dialog__body {
    text-align: left;
}

.dialog--call-agent .dialog__phone-number {
    border-radius: var(--borderRadius);
    background-color: var(--greyColor50);
    color: var(--greyColor20);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
    font-weight: bold;
    gap: .5rem;
}

.dialog--call-agent .dialog__phone-number::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: url("/frontend/assets/Huurwoningen/Component/Dialog/Images/Lock-527d81ddb6.svg") no-repeat center;
}

.dialog--call-agent .dialog__phone-number span {
    filter: blur(4px);
}

.dialog--call-agent .dialog__usps {
    border-top: 1px solid var(--greyColor50);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.dialog--call-agent .dialog__usps-title {
    font-size: 1.25rem;
    line-height: calc(28 / 20);
    margin-bottom: 1.5rem;
}

.dialog--call-agent .dialog__usps-list {
    text-align: left;
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dialog--call-agent .dialog__usps-list li {
    display: block;
    padding-left: 2rem;
    background: transparent url("/frontend/assets/Huurwoningen/Component/Dialog/Images/Checkmark-1301a74eab.svg") no-repeat left top;
    background-size: 1.5rem;
    margin-bottom: .5rem;
}

.dialog--call-agent .dialog__usps-list li:last-child {
    margin-bottom: 0;
}

.dialog--call-agent .dialog__footnote {
    font-size: .75rem;
    line-height: 1.5;
    color: var(--greyColor30);
    margin: 1rem 0 0;
    text-align: center;
}
</pre></body></html>