<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sk-loading * {
    opacity: 0;
}

.sk-loading {
    position: relative;
    overflow: hidden;
    flex: 1;
    overflow-y: hidden !important;
}

    .sk-loading::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background-image: linear-gradient( to right, rgba(255, 255, 255, 0.5), transparent );
        animation: kf-sk-loading 1s infinite;
    }

    /* Spinner inside sk-loading */
    .sk-loading::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 255, 255, 0.6);
        border-top-color: #007bff;
        border-radius: 50%;
        animation: sk-spinner 1s linear infinite;
        transform: translate(-50%, -50%);
    }

@keyframes sk-spinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.copy-btn {
    border: none;
    background: none;
    height: auto;
    padding: 0px;
    cursor: pointer;
}

.location-result-empty {
    height: 280px;
}

.location-items-container {
    overflow-y: auto;
}

.notfoundimg {
    width: 300px !important;
    height: 200px !important;
    background-image: url(/assets/customs/images/not_found.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.location-type-container {
    display: none;
}

    .location-type-container.show {
        display: block;
    }

.location-lookup-res-fail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

    .location-lookup-res-fail p {
        text-align: center;
    }

        .location-lookup-res-fail p:first-child {
            color: var(--Palette-Text-Interactive-int-sub-active, #292929);
            font-size: 24px;
            font-style: normal;
            font-family: "Averta-semibold";
            line-height: 130%; /* 31.2px */
            letter-spacing: -0.48px;
        }

        .location-lookup-res-fail p:last-child {
            color: var(--Palette-Text-Content-body, #4d4d4d);
            font-size: 17px;
            font-style: normal;
            line-height: 140%; /* 23.8px */
            letter-spacing: -0.34px;
        }

    .location-lookup-res-fail button {
        display: flex;
        min-width: 148px;
        padding: 16px 40px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 64px;
        border: 2px solid #00994f;
        font-size: 16px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%; /* 24px */
        letter-spacing: -0.16px;
        color: #00994f;
        background: none;
    }

.location-tooltip {
    transform: translateX(-50%);
    color: #00994f;
    /*padding: 5px 10px;*/
    border-radius: 5px;
    white-space: nowrap;
    display: none;
}

.location-pagination-numbers {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.location-page-item {
    display: flex;
    width: var(--Sizes-Icon-icon, 24px);
    height: var(--Sizes-Icon-icon, 24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--Palette-Text-Content-bad-contrast, #bbb);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 150%; /* 24px */
    letter-spacing: -0.16px;
    cursor: pointer;
}

    .location-page-item.active {
        color: #00994f;
    }

.location-items.active {
    display: block;
}

.location-items {
    display: none;
}

.location-introduction-sec {
    color: #747474;
    font-size: 12px;
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 150%; /* 18px */
    text-transform: uppercase;
    margin-bottom: 32px;
}

.location-lookup-result {
    display: flex;
    height: 732px;
    padding: 0px;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #ececec;
    background: #fff;
    overflow: hidden;
}

    .location-lookup-result .location-lookup-categories {
        display: flex;
        min-width: 369px;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
        background: #fff;
    }

        .location-lookup-result
        .location-lookup-categories
        .location-lookup-categories-list {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            flex: 1 0 0;
            align-self: stretch;
        }

            .location-lookup-result
            .location-lookup-categories
            .location-lookup-categories-list
            ul {
                display: flex;
                margin: 0px !important;
                width: 100%;
            }

                .location-lookup-result
                .location-lookup-categories
                .location-lookup-categories-list
                ul
                li
                button {
                    display: flex;
                    height: 56px;
                    width: 100%;
                    padding: 16px 12px;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 24px;
                    align-self: stretch;
                    border-radius: 8px;
                    color: #000;
                    font-size: 16px;
                    font-style: normal;
                    font-family: "Averta-semibold";
                    line-height: 140%;
                    letter-spacing: -0.48px;
                    border: none;
                    background: none;
                }

                    .location-lookup-result
                    .location-lookup-categories
                    .location-lookup-categories-list
                    ul
                    li
                    button.active {
                        background: #ecfae2;
                        color: #00994f;
                    }

.location-pagination-numbers .pagination {
    display: flex;
    gap: 16px;
}

    .location-pagination-numbers .pagination .page-item .page-link.active {
        color: #00994f;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%; /* 24px */
        letter-spacing: -0.16px;
    }

    .location-pagination-numbers .pagination .page-item .page-link {
        color: var(--Palette-Text-Content-bad-contrast, #bbb);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%; /* 24px */
        letter-spacing: -0.16px;
        background: none;
        border: none;
    }

.location-pagination {
    display: flex;
    padding: 12px 24px;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
    border-top: 1px solid #ececec;
}

.location-pagination-arrows {
    font-size: 20px;
    display: flex;
    color: #00994f;
}

    .location-pagination-arrows &gt; div {
        display: flex;
        padding: 8px;
        align-items: center;
        gap: 8px;
        border-radius: 1000px;
        background: rgba(255, 255, 255, 0.7);
        cursor: pointer;
    }

.location-lookup-result .location-lookup-category-content {
    flex: 1 0 0;
    align-self: stretch;
    border-left: 1px solid #ececec;
    overflow: auto;
}

    .location-lookup-result
    .location-lookup-category-content
    .location-lookup-tab-pane {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

        .location-lookup-result
        .location-lookup-category-content
        .location-lookup-tab-pane:not(.show) {
            display: none;
        }

    .location-lookup-result
    .location-lookup-category-content
    .location-lookup-accordion-button {
        display: flex;
        padding: 16px 24px;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        background: none;
        width: 100%;
        border: none;
        border-bottom: 1px solid #ececec;
        color: #292929;
        font-size: 17px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%;
        position: relative;
        text-align: start;
    }

        .location-lookup-result
        .location-lookup-category-content
        .location-lookup-accordion-button.sub-category {
            background: #ecfae2;
            color: #00994f;
            text-transform: uppercase;
            font-size: 12px;
            font-family: "Averta-bold";
            line-height: 140%;
            letter-spacing: -0.34px;
        }

        .location-lookup-result
        .location-lookup-category-content
        .location-lookup-accordion-button:not(.sub-category):hover {
            color: #00994f;
            background: #f8f8f8;
        }

    .location-lookup-result
    .location-lookup-category-content
    .location-lookup-accordion-content {
        overflow: hidden;
        height: 0;
        width: 100%;
    }

        .location-lookup-result
        .location-lookup-category-content
        .location-lookup-accordion-content.hasContent {
            border-left: 3px solid #9fe870;
        }

        .location-lookup-result
        .location-lookup-category-content
        .location-lookup-accordion-content
        .location-lookup-accordion-body {
            padding: 0 24px 16px 24px;
        }

/*Custom selection*/
.location-custom-select {
    position: relative;
}

.location-lookup-submit {
    display: flex;
    min-width: 148px;
    height: 60px;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 64px;
    border: 2px solid #9fe870;
    background: #9fe870;
    color: #015c2e;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 150%; /* 24px */
    letter-spacing: -0.16px;
}

.location-custom-select-toggle {
    display: flex;
    justify-content: space-between;
    padding: 16px 16px 16px 24px;
    align-items: center;
    gap: 4px;
    border-radius: 1000px;
    border: 1px solid var(--Primitives-Neutral-4, #bbb);
    background: #fff;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    line-height: 140%; /* 21px */
    letter-spacing: -0.3px;
    cursor: pointer;
    color: #080808;
}

    .location-custom-select-toggle.selecting {
        border: 1px solid #00994f;
    }

    .location-custom-select-toggle:after {
        font-family: "tabler-icons";
        content: "\ea5f";
        font-size: 24px;
    }

.location-custom-select-options {
    position: absolute;
    width: 100%;
    z-index: 1000;
    margin-top: 4px;
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-radius: var(--Sizes-Radius-radius, 16px);
    border: 1px solid #ececec;
    background: #fff;
    /* Elevation/Highest */
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
    overflow: auto;
    max-height: 50vh;
}

    .location-custom-select-options div {
        position: relative;
        display: flex;
        padding: 12px 40px 12px 12px;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        font-size: 15px;
        font-style: normal;
        cursor: pointer;
        color: #080808;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: "Averta-semibold";
        line-height: 140%;
        letter-spacing: -0.45px;
    }

        .location-custom-select-options .selected,
        .location-custom-select-options div:hover {
            border-radius: 8px;
            background: var(--Palette-Fill-Interactive-int-highlighted, #ecfae2);
            color: #015c2e;
        }

            .location-custom-select-options .selected::after {
                font-family: "tabler-icons";
                content: "\ea5e";
                position: absolute;
                right: 12px;
            }

/*Custom selection mobile*/
.location-categories-m {
    display: none;
}

    .location-categories-m .location-custom-select {
        position: relative;
    }

    .location-categories-m .location-custom-select-toggle {
        display: flex;
        justify-content: space-between;
        padding: 8px 12px;
        align-items: center;
        gap: 4px;
        border-radius: 50px;
        background: #ecfae2;
        backdrop-filter: blur(17px);
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%; /* 22.5px */
        letter-spacing: -0.15px;
        cursor: pointer;
        color: #015c2e;
        border: none;
    }

        .location-categories-m .location-custom-select-toggle.selecting {
            /*border: 1px solid  #00994F ;*/
        }

        .location-categories-m .location-custom-select-toggle:after {
            font-family: "tabler-icons";
            content: "\ea5f";
            font-size: 16px;
        }

    .location-categories-m .location-custom-select-options {
        position: absolute;
        width: 100%;
        z-index: 1000;
        margin-top: 4px;
        display: flex;
        padding: 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        border-radius: var(--Sizes-Radius-radius, 16px);
        border: 1px solid #ececec;
        background: #fff;
        /* Elevation/Highest */
        box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
        overflow: auto;
        max-height: 50vh;
    }

        .location-categories-m .location-custom-select-options div {
            position: relative;
            display: flex;
            padding: 12px 40px 12px 12px;
            align-items: center;
            gap: 8px;
            align-self: stretch;
            font-size: 15px;
            font-style: normal;
            cursor: pointer;
            color: #080808;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-family: "Averta-semibold";
            line-height: 140%;
            letter-spacing: -0.45px;
        }

        .location-categories-m .location-custom-select-options .selected,
        .location-custom-select-options div:hover {
            border-radius: 8px;
            background: var(--Palette-Fill-Interactive-int-highlighted, #ecfae2);
            color: #015c2e;
        }

            .location-categories-m .location-custom-select-options .selected::after {
                font-family: "tabler-icons";
                content: "\ea5e";
                position: absolute;
                right: 12px;
                font-size: 20px;
                font-weight: 200;
            }

.location-custom-label {
    color: #292929;
    font-size: 17px;
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
    margin-bottom: 8px;
}

.location-lookup-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-cards-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-introduction {
    color: #292929;
    /* Body/Normal Bold (Introduction-sm) */
    font-size: 17px;
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
}

.location-cards {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
}

.location-card {
    display: flex;
    width: calc(25% - 12px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Sizes-Gap-gap-0, 0px);
    border-radius: 16px;
    border: 1px solid #ececec;
    transition: 0.3s;
    overflow: hidden;
    cursor: pointer;
}

    .location-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .location-card.active {
        border: 1px solid #9fe870;
        background: #ecfae2;
    }

        .location-card.active .location-card-text {
            color: #292929;
        }

.location-card-content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    align-self: stretch;
}

    .location-card-content &gt; p {
        margin: 0px;
    }

    .location-card-content .location-card-title {
        color: #080808;
        /* Body/Normal Bold (Introduction-sm) */
        font-size: 17px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 140%;
        /* 23.8px */
        letter-spacing: -0.34px;
    }

    .location-card-content .location-card-text {
        color: var(--Palette-Text-Interactive-int-sub, #747474);
        /* Body/Small (Introduction-md) */

        font-size: 15px;
        font-style: normal;
        line-height: 140%;
        /* 21px */
        letter-spacing: -0.15px;
    }

#location-lookup-filter {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

    #location-lookup-filter .location-lookup-filter-container {
        display: flex;
        gap: 24px;
    }

        #location-lookup-filter .location-lookup-filter-container &gt; div {
            width: calc(25% - 12px);
        }

.location-item {
    display: flex;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 0;
    border-bottom: 1px solid #ececec;
    background: #fff;
    position: relative;
}

.location-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
}

.location-info-title {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.location-channel-name {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #ecfae2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #00994f;
    text-overflow: ellipsis;
    font-size: 17px;
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
}

.location-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #080808;
    text-overflow: ellipsis;
    font-size: var(--Primitives-Font-Size-typo-22, 22px);
    font-style: normal;
    font-family: "Averta-bold";
    line-height: 140%; /* 30.8px */
    letter-spacing: -0.44px;
    font-weight: normal;
}

.location-address,
.location-phone {
    /*    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;*/
}

.location-address-text {
    overflow: hidden;
    color: #080808;
    text-overflow: ellipsis;
    font-size: 17px;
    font-style: normal;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
}

.location-phone-text {
    overflow: hidden;
    color: #080808;
    text-overflow: ellipsis;
    font-size: 17px;
    font-style: normal;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
}

.location-icons {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .location-icons * {
        color: #4d4d4d !important;
    }

.location-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    border: 1px solid #9fe870;
    cursor: pointer;
}

.location-icons-m {
    display: none;
}

@media (max-width: 991px) {
    .location-pagination-arrows &gt; div {
        padding: 4px;
    }

    .location-lookup-res-fail {
        gap: 16px;
    }

        .location-lookup-res-fail button {
            padding: 12px var(--Sizes-Padding-padding-40, 32px);
            height: 51px;
            gap: 4px;
        }

    .location-custom-select-toggle {
        padding: 12px 12px 12px 16px;
        height: 58px;
    }

    .location-name {
        font-size: var(--Primitives-Font-Size-typo-22, 18px);
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 140%; /* 25.2px */
        letter-spacing: -0.36px;
    }

    .location-lookup-res-fail p:first-child {
        font-size: 20px;
        font-style: normal;
        font-family: "Averta-semibold";
        line-height: 130%; /* 26px */
        letter-spacing: -0.4px;
    }

    .location-lookup-res-fail p:last-child {
        font-size: 15px;
        font-style: normal;
        line-height: 140%; /* 21px */
        letter-spacing: -0.3px;
    }

    .location-lookup-submit {
        width: 100%;
        font-size: 15px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%; /* 22.5px */
        letter-spacing: -0.15px;
        height: 47px;
    }

    .location-categories-m {
        display: block;
    }

    .location-introduction-sec {
        margin-bottom: 16px;
    }

    .location-item {
        padding: 16px;
        gap: 16px;
    }

    .location-icons-m {
        display: flex;
        gap: 8px;
        position: absolute;
        right: 16px;
        top: 16px;
    }

    .location-icon {
        width: 36px;
        height: 36px;
    }

    .location-icons {
        display: none;
    }

    .location-info {
        gap: 8px;
    }

    .location-info-title {
        flex-direction: column;
        align-items: start;
        max-width: 70%;
        gap: 8px;
    }

    .location-channel-name {
        font-size: 15px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 140%; /* 21px */
        letter-spacing: -0.3px;
    }

    .location-address-text {
        font-size: 15px;
        font-style: normal;
        line-height: 140%; /* 21px */
        letter-spacing: -0.3px;
    }

    .location-phone-text {
        font-size: 15px;
        font-style: normal;
        line-height: 140%; /* 21px */
        letter-spacing: -0.3px;
    }

    .location-lookup-categories {
        display: none !important;
    }

    .location-lookup-filter-container {
        flex-direction: column;
    }

    #location-lookup-filter .location-lookup-filter-container &gt; div {
        width: 100%;
    }

    .location-custom-label {
        font-size: 15px;
        line-height: 140%; /* 21px */
        letter-spacing: -0.3px;
        margin-bottom: 4px;
    }

    .location-cards {
        flex-wrap: wrap;
        gap: 8px;
    }

    .location-card {
        width: calc(50% - 4px);
    }

    .location-card-content {
        padding: 16px;
        gap: 4px;
    }

        .location-card-content .location-card-title {
            color: #080808;
            font-size: 15px;
            font-style: normal;
            font-family: "Averta-bold";
            line-height: 140%;
            letter-spacing: -0.3px;
        }

        .location-card-content .location-card-text {
            color: var(--Palette-Text-Interactive-int-sub, #747474);
            font-size: 14px;
            font-style: normal;
            line-height: 140%;
            letter-spacing: -0.14px;
        }

    .location-pagination {
        padding: 8px 16px;
    }

    .location-pagination-numbers {
        gap: 12px;
    }

    .location-page-item {
        font-size: 15px;
        font-style: normal;
        font-family: "Averta-bold";
        line-height: 150%; /* 22.5px */
        letter-spacing: -0.15px;
    }
}
</pre></body></html>