<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nh-click-to-call-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    color: #00218b;
    padding: 16px;
    border-radius: 28px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
    z-index: 9999;
    font-size: 24px;
    font-family: "Gotham";
    max-width: calc(100% - 40px);
}

.nh-click-to-call-popup a,
.nh-click-to-call-popup a:hover {
    text-decoration: none;
    font-family: "Gotham";
}

.nh-click-to-call-popup.expanded {
    /*max-width: 240px;*/
    max-width: calc(100vw - 42px);
    height: auto;
    max-height: none;
    border-radius: 28px;
    padding: 16px 16px 24px 16px;
    cursor: default;
}

.nh-click-to-call-popup.expanded-call-me {
    width: 500px;
}

.nh-click-to-call-popup #phone-icon {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 0 1.2px 0 2.4px;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.nh-click-to-call-popup.nhc2c-show #phone-icon {
    display: none;
}
.nhc2c-view{
    display:none;
}
.nh-click-to-call-popup.nhc2c-show .nhc2c-view{
    display:flex;
}

.nh-click-to-call-popup #hidden-popup-content {
    display: flex;
    opacity: 0;
    width: 0;
    height: 0;
    transition: opacity .5s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.nh-click-to-call-popup.nhc2c-show #hidden-popup-content {
    opacity: 1;
    width: auto;
    height: auto;
    transition: opacity .5s ease-in-out;
}

.nh-click-to-call-popup.nhc2c-show.nhc2c-step-request-success #hidden-popup-content,
.nh-click-to-call-popup.nhc2c-show.nhc2c-step-request-error #hidden-popup-content {
    display: flex;
    width: 310px;
    padding: 32px 40px 56px 40px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.nh-click-to-call-popup {
    /*transition: all 0.5s ease-in-out;
    max-width: 72px;
    max-height: 72px;*/
}

.nh-click-to-call-popup #nhc2c-main-content {
    display: none;
    padding: 0 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    max-width: 240px;
}

.nh-click-to-call-popup.nhc2c-step-main #nhc2c-main-content {
    display: flex;
}

.nh-click-to-call-popup .title {
    color: #333;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 22.4px */
}


.nh-click-to-call-popup .rounded-button {
    border-radius: 20px;
}

.nh-click-to-call-popup #call-me-button {
    display: flex;
    height: 32px;
    min-width: 136px;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 28px;
    border: 1px solid #003A70;
    background: #FFF;

    color: #003A70;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
}

.nh-click-to-call-popup #call-me-later {
    display: flex;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    cursor: pointer;

    color: #215CA9;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */

    border: none;
    background-color: white;
}

.nh-click-to-call-popup .call-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.nh-click-to-call-popup .blue-button {
    color: #fff;
    cursor: pointer;
    border-radius: 28px;
    background-color: #003A70;
    display: flex;
    height: 32px;
    min-width: 136px;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */

    white-space: nowrap;
}

.nh-click-to-call-popup #call-button .fa-phone {
    margin-right: 10px;
}

.nh-click-to-call-popup .fa-clock-o {
    margin-right: 10px;
}

.nh-click-to-call-popup #close-button {
    position: absolute;
    top: -16px;
    right: -16px;
    background-color: #fff;
    color: #00218b;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.30);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
}

.nh-click-to-call-popup.nhc2c-show #close-button {
    display: none;
}

.nh-click-to-call-popup.nhc2c-show #minimize-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #F8F8F8;
    color: #333333;
    border-radius: 50%;
    border-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 10000;
    line-height: 0;
    padding: 0;
}

.nh-click-to-call-popup #minimize-button {
    display: none;
}

.nh-click-to-call-popup .text {
    align-self: stretch;
    color: #333;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
    margin: 0;
}

.nh-click-to-call-popup #call-me-container {
    display: none;
    width: 444px;
    max-width: 100%;
    padding: 8px 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.nhc2c-step-call-me-later.nhc2c-show #call-me-container,
.nhc2c-step-call-me-now.nhc2c-show #call-me-container {
    display: flex;
}

.nhc2c-step-call-me-now .call-me-later-text {
    display: none;
}

.nhc2c-step-call-me-later .call-me-now-text {
    display: none;
}

.nhc2c-step-call-me-now .hour_selector_wrapper {
    display: none;
}

.nh-click-to-call-popup #call-me-container .text,
.nh-click-to-call-popup #call-me-container .text span,
.nh-click-to-call-popup #call-me-container .text strong {
    color: #333;
    text-align: center;
    font-family: "Gotham";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 22.4px */
}

.nh-click-to-call-popup .checkbox-container {
    display: flex;
    justify-content: left;
    gap: 4px;
    align-items: center;
}

.nh-click-to-call-popup .checkbox-container input[type="checkbox"]:hover {
    border: none;
}

.nh-click-to-call-popup .checkbox-label,
.nh-click-to-call-popup .checkbox-label span {
    font-size: 12px;
    margin: 3px 0 0 0;
}

.nh-click-to-call-popup #nhc2c-loading-button {
    cursor: default;
}

.nh-click-to-call-popup .filled-button {
    display: flex;
    height: 40px;
    min-width: 152px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 28px;
    background: #003A70;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    cursor: pointer;
}

.nh-click-to-call-popup .centered {
    display: flex;
    justify-content: center;
}

.nh-click-to-call-popup input[type="text"],
.nh-click-to-call-popup input[type="tel"] {
    border-radius: 8px;
    border: 1px solid #646464;
    padding: 12px 16px;
    box-sizing: border-box;
    width: 100%;
}

.nh-click-to-call-popup #name {
    width: 40%;
}

.nh-click-to-call-popup .phone-wrapper {
    width: 60%;
}

.nh-click-to-call-popup .phone-form {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.nh-click-to-call-popup .error-message {
    color: red;
    display: none;
    font-size: 12px;
    text-align: left;
    margin: 5px;
    text-wrap: wrap;
}

.error-message.center {
    text-align: center;
}


.nh-click-to-call-popup #nhc2c-back-button {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #F8F8F8;
    color: #333333;
    border-radius: 50%;
    border-color: transparent;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 10000;
    line-height: 0;
    padding: 0;
}

.nh-click-to-call-popup.nhc2c-step-privacy #nhc2c-back-button {
    display: flex;
}

.nh-click-to-call-popup.nhc2c-service-available.nhc2c-step-call-me-later #nhc2c-back-button {
    display: flex;
}

.nh-click-to-call-popup.nhc2c-service-available.nhc2c-step-call-me-now #nhc2c-back-button {
    display: flex;
}

.nh-click-to-call-popup.nhc2c-step-privacy #minimize-button {
    display: none;
}

.checkbox-container-wrapper {
    text-align: left;
    width: 100%;
}

.checkbox-container label span {
    cursor: pointer;
    color: #215CA9;
}


.nh-click-to-call-popup.nhc2c-step-privacy #nhc2c-privacy {
    display: flex;
}

#nhc2c-privacy {
    display: none;
    max-width: 533px;
    padding: 0px 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

#nhc2c-privacy .title {
    color: #333;
    text-align: center;
    align-self: stretch;
    font-family: "Gotham";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 22.4px */
}

#nhc2c-privacy .text-long {
    color: #333;
    font-family: "Gotham";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 150% */
    max-height: 340px;
    overflow-y: scroll;
}

#nhc2c-privacy .text-long p, #nhc2c-privacy .text-long strong {
    text-align: left;
    color: #333;
    font-family: "Gotham";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
}

.hour_selector, .hour_selector_wrapper {
    width: 100%;
    position: relative;
}

.hour_selector__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    padding: 0 30px;
}

.hour_selector_day {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 2px solid #D7D7D7;
    padding: 0 10px;
    border-left: 2px solid transparent;
}

.hour_selector_day:last-of-type {
    border-right: none;
}

.hour_selector_day__header {
    margin-bottom: 10px;
}

.hour_selector_day__header span {
    color: #646464;
    text-align: center;
    /*margin-bottom: 10px;*/
    /* p small medium */
    font-family: "Gotham";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 150% */
    position: sticky;
    position: -webkit-sticky;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}


.hour_selector_day__container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    align-self: stretch;
}

.hour_selector_hour {

    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hour_selector_hour label {
    height: 32px;
    padding: 0px 14px;
    white-space: nowrap;
    border-radius: 28px;
    background: #F8F8F8;
    color: #003A70;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Gotham";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    margin: 0;
    display: flex;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hour_selector_hour_disabled label {
    color: #999;
    cursor: auto;
}

.hour_selector_hour label:hover {
    background: #E5E5E5;
}


.hour_selector_day__container input[type="radio"] {
    display: none;
}

.hour_selector_hour input[type="radio"]:checked + label {
    background: #009FDF;
    color: white;
}

.hour_selector__action {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 28px;
    background: #F8F8F8;
}

.hour_selector__action svg {
    color: #215CA9;
}

.hour_selector__deg_prev {
    width: 64px;
    height: 60px;
    position: absolute;
    left: 0px;
    bottom: 0;
    transform: rotate(180deg);
}


.start-position .hour_selector__prev svg,
.start-position .hour_selector__prev,
.end-position .hour_selector__next svg,
.end-position .hour_selector__next {
    color: #999999;
    cursor: auto;
}


.start-position .hour_selector__deg_next {
    cursor: auto;
}

.hour_selector__deg_next {
    width: 64px;
    height: 60px;
    position: absolute;
    right: 0px;
    bottom: 0;
}

.hour_selector__prev {
    left: 0;
}

.hour_selector__next {
    right: 0;
}

.iti {
    --iti-path-flags-1x: url('img/flags.webp');
    --iti-path-flags-2x: url('img/flags@2x.webp');
    --iti-path-globe-1x: url('img/globe.webp');
    --iti-path-globe-2x: url('img/globe@2x.webp');
}

#questions-in-english {
    display: none;
    color: #000;
    align-items: center;
    gap: var(--space-8, 8px);
}

#questions-in-english .info-text {
    font-size: 12px;
}

#nhc2c-request-result .request-title {
    color: var(--09-black, #333);
    text-align: center;
    font-family: "Gotham Medium";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

#nhc2c-request-result .request-subtitle {
    color: var(--07-grey-dark, #646464);
    text-align: center;
    font-family: "Gotham Medium";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.nh-click-to-call-popup.nhc2c-show #nhc2c-request-result {
    display: none;
    padding: 0px 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.nh-click-to-call-popup.nhc2c-show.nhc2c-step-request-success #nhc2c-request-result,
.nh-click-to-call-popup.nhc2c-show.nhc2c-step-request-error #nhc2c-request-result {
    display: flex
}

.nh-click-to-call-popup.nhc2c-show.nhc2c-step-result-show #nhc2c-request-result {
    display: flex
}

.nh-click-to-call-popup.nhc2c-show.nhc2c-step-result-show.nhc2c-step-request-success .error-icon {
    display: none
}

.nh-click-to-call-popup.nhc2c-show.nhc2c-step-result-show.nhc2c-step-request-error .success-icon {
    display: none
}

@media (max-width: 768px) {
    .nh-click-to-call-popup .phone-form {
        flex-direction: column;
        align-items: center;
    }

    .nh-click-to-call-popup .phone-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nh-click-to-call-popup .phone-wrapper .iti {
        width: 100%;
    }

    .nh-click-to-call-popup #name {
        width: 100%;
    }
}</pre></body></html>