.logixmap-container {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    position: relative;
    border: 3px solid rgba(245, 245, 245, 1);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 600px;
    box-sizing: border-box;
}

.d-none {
    display: none !important;
}

.logixmap-map {
    flex-basis: 0;
    flex-grow: 1;
    height: 100%;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    box-sizing: border-box;
}

.logixmap-map-con {
    flex-basis: 0;
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.d-flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.logixmap-info {
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 350px;
    background-color: white;
    border-radius: 6px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.logixmap-tab-item {
    flex-grow: 1;
    flex-basis: 0;
    cursor: pointer;
    text-align: center;
    border-bottom: 5px solid rgba(217, 217, 217, 1);
    color: rgba(217, 217, 217, 1);
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 0.9rem;
}

.logixmap-tab-item.active {
    border-bottom: 5px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
}

.logixmap-info .close {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.logixmap-info-body {
    margin-top: 10px;
    overflow-y: auto;
    justify-content: stretch;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 0;
}

.md-text {
    font-size: 0.9rem;
}

.sm-text {
    font-size: 0.85rem;
}

.xs-text {
    font-size: 0.8rem;
}

.f-grey {
    color: rgba(141, 141, 141, 1);
}

.fw-bold {
    font-weight: bold;
}

.fw-500 {
    font-weight: 500;
}

.fw-normal {
    font-weight: normal;
}

.logixmap-root[data-type=prolink] {
    border-top-right-radius: 0 !important;
}

.logixmap-right-box {
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.logixmap-toolbar {
    flex-grow: 0;
    background-color: white;
    padding: 10px;
    border-bottom: 1px solid rgba(245, 245, 245, 1);
    border-left: 1px solid rgba(245, 245, 245, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logixmap-toolbar-items {
    display: flex;
    align-items: center;
}

.logixmap-toolbar-item {
    display: flex;
    align-items: center;
}

.logixmap-toolbar-item:not(:last-child) {
    margin-right: 20px;
}

.logixmap-toolbar-item input {
    margin-right: 8px;
}

.logixmap-toolbar-item label {
    user-select: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.logixmap-toolbar-title {
    font-weight: bold;
}

.logixmap-drawer {
    flex-grow: 0;
    width: 30%;
    height: 100%;
    max-height: 100%;
    min-width: 250px;
    max-width: 450px;
    background-color: rgba(255, 255, 255, 1);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logixmap-dealer-list {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

.logixmap-search-box {
    position: relative;
    margin-bottom: 10px; /* Space between search box and button */
    width: 100%;
}

/* Theme/kit-level form styling on host sites (Hello Elementor, Astra,
   etc.) tints inputs with the active brand primary on hover/focus —
   that paints these search bars green/orange. !important + explicit
   focus/hover/active states keep them neutral grey regardless. */
.logixmap-search-box input[type="text"],
.logixmap-search-box input[type="text"]:hover,
.logixmap-search-box input[type="text"]:focus,
.logixmap-search-box input[type="text"]:focus-visible,
.logixmap-search-box input[type="text"]:active {
    width: calc(100% - 32px);
    padding: 10px 10px 10px 35px;
    box-sizing: border-box;
    font-size: 13px;
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    background-image: none !important;
    border-radius: 5px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #111827 !important;
    margin-right: 16px;
    margin-left: 16px;
}

.logixmap-search-box i {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.logixmap-location-button {
    display: inline-block;
    padding: 10px !important;
    margin-right: 16px;
    margin-left: 16px;
    margin-bottom: 20px;
    border: 2px solid black !important; /* Black border for the button */
    border-radius: 0 !important;
    background: transparent !important; /* Transparent background */
    background-image: none !important;
    box-shadow: none !important;
    cursor: pointer;
    color: black !important;
    width: calc(100% - 32px);
    text-transform: none !important;
    text-shadow: none !important;
    line-height: 1.4 !important;
    font-weight: 700;
}

.logixmap-location-button:hover,
.logixmap-location-button:focus,
.logixmap-location-button:active {
    border: 2px solid black !important;
    background: transparent !important;
    background-image: none !important;
    color: black !important;
    box-shadow: none !important;
    outline: none;
}

.location-button i {
    margin-right: 5px; /* Space between icon and text */
}

.h-30px {
    height: 30px;
}

.h-40px {
    height: 40px;
}

.h-50px {
    height: 50px;
}

.h-60px {
    height: 60px;
}

.h-70px {
    height: 70px;
}

.h-80px {
    height: 80px;
}

.h-90px {
    height: 90px;
}

.h-100px {
    height: 100px;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}

.w-10 {
    width: 10%;
}

.m-0 {
    margin: 0;
}

.m-5 {
    margin: 5px;
}

.m-10 {
    margin: 10px;
}

.mt-0 {
    margin-top: 0;
}

.mt-5 {
    margin-top: 5px;
}

.ml-5 {
    margin-left: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-10 {
    padding: 10px;
}

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

.logixmap-project-images {
    margin-top: 5px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 12px;
}

.logixmap-project-image {
    width: 180px;
    height: 180px !important;
    border-radius: 6px !important;
    object-fit: cover;
    margin-right: 10px;
    cursor: pointer;
}

.logixmap-project-subtitle {
}

.logixmap-loader {
    width: 100%;
    min-height: 15px;
    display: block;
    border-radius: 7px;
    background-size: 50px 500px !important;
    background: rgb(244, 246, 249) linear-gradient(
            to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%
    ) repeat-y -100% 0;
    animation: shine 1.2s infinite;
}

.logixmap-divider {
    width: 100%;
    height: 3px;
    flex-shrink: 0;
    background-color: rgba(245, 245, 245, 1);
}

.logixmap-dealer-box {
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: start;
    flex-direction: column;
    padding: 20px 16px;
}

.logixmap-dealer-row {
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: start;
    padding: 20px 16px;
}

.logixmap-dealer-row:hover, .logixmap-dealer-row:active, .logixmap-dealer-row.active {
    cursor: pointer;
    background-color: rgba(245, 245, 245, 1);
}

.logixmap-dealer-row.dealer-only:hover .logixmap-dealer-title, .logixmap-dealer-row.dealer-only.active .logixmap-dealer-title {
    color: var(--primary-color);
}

.logixmap-dealer-row.dealer-only:active .logixmap-dealer-title, .logixmap-dealer-row.dealer-only.active .logixmap-dealer-title {
    color: var(--primary-color);
}

.logixmap-dealer-row.dealer-only:hover .logixmap-prolink-badge, .logixmap-dealer-row.dealer-only.active .logixmap-prolink-badge {
    background-color: var(--primary-color);
}

.logixmap-dealer-row.dealer-only:active .logixmap-prolink-badge, .logixmap-dealer-row.dealer-only.active .logixmap-prolink-badge {
    background-color: var(--primary-color);
}

.logixmap-dealer-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 5px;
}

@keyframes shine {
    to {
        background-position: 200% 0;
    }
}

/* Style the autocomplete container */
.pac-container {
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Shadow for depth */
    border: 1px solid #ccc; /* Light border */
    background-color: #fff; /* White background color */
}

/* Style each autocomplete item */
.pac-item {
    padding: 10px 15px;
    border-bottom: 1px solid #ececec; /* Light border for each item */
    cursor: pointer; /* Change cursor on hover */
}

/* Style the highlighted (hovered) item */
.pac-item:hover, .pac-item:active {
    background-color: #fafafa; /* Light grey background */
}

/* Style the query portion of the autocomplete item */
.pac-item-query {
    font-weight: bold; /* Make the match part bolder */
}

/* Adjust the spacing and style of the matched text */
.pac-matched {
    color: #000; /* Darker text for better readability */
}

.logixmap-dealer-logo {
    margin-top: 2px;
    margin-right: 8px;
    width: 20px;
}

/* Brand-color fill on hover for the redesigned CTAs (dealer card,
   prolink card, info-panel "Send An Email" button). The buttons all
   ship solid black; we flip to brand primary on hover using the
   per-widget --primary-color CSS var that Elementor inlines on
   .logixmap-root. Scoped to .logixmap-root so the rule covers buttons
   in both list rows and the info panel without leaking outside. */
.logixmap-root .logixmap-dealer-contact:hover,
.logixmap-root .logixmap-dealer-learn-more:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.logixmap-managers-container {
    margin-top: 20px;
    background: rgba(245, 245, 245, 1);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.logixmap-question-header {
    margin: 0 !important;
}

.logixmap-question-subtitle, .logixmap-manager-subtitle, .logixmap-manager-address {
    margin: 0 !important;
    font-size: 0.95rem;
}

.logixmap-question-subtitle {
    margin-bottom: 16px !important;
}

.logixmap-question {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.logixmap-managers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 0;
    gap: 16px;
}

.logixmap-manager-row {
    background-color: white;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.logixmap-manager-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    flex-shrink: 0;
}

.logixmap-manager-subtitle {
    margin-bottom: 8px !important;
}

.logixmap-manager-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
}

.logixmap-manager-info {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    margin-left: 10px;
}

.logixmap-manager-header {
    display: flex;
    align-items: center;
}

.logixmap-manager-header img {
    margin-left: 16px;
}

.logixmap-manager-title {
    margin: 0 !important;
    font-weight: bold;
}

.logixmap-manager-phone, .logixmap-manager-email {
    margin: 0 !important;
    font-size: 0.95rem;
    text-decoration: underline !important;
    font-weight: normal !important;
    cursor: pointer;
}

.logixmap-stoking-badge, .logixmap-bracing-badge {
    mask-image: url('/wp-content/plugins/logix-map/assets/badge.svg');
    width: 20px;
    height: 15px;
    mask-position: left;
    mask-repeat: no-repeat;
}

.logixmap-filter-installers {
    accent-color: rgb(5, 133, 196);
}

.logixmap-filter-designers {
    accent-color: rgba(151, 71, 255, 1);
}

.logixmap-filter-engineers {
    accent-color: rgba(55, 170, 4, 1);
}

.installer-color {
    color: rgb(5, 133, 196);
}

.designer-color {
    color: rgba(151, 71, 255, 1);
}

.engineer-color {
    color: rgba(55, 170, 4, 1);
}

.logixmap-prolink-badge {
    mask-image: url('/wp-content/plugins/logix-map/assets/pin.svg?i=123');
    width: 20px;
    height: 20px;
    mask-position: center left;
    mask-repeat: no-repeat;
    margin-right: 5px;
    mask-size: contain;
    background-color: black;
}

.logixmap-prolink-badge.engineer-color {
    background-color: rgba(55, 170, 4, 1);
}

.logixmap-prolink-badge.designer-color {
    background-color: rgba(151, 71, 255, 1);
}

.logixmap-prolink-badge.installer-color {
    background-color: rgba(5, 133, 196, 1);
}

.logixmap-right-search {
    display: none;
    background-color: white;
    padding-top: 10px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

/* Medium devices (tablets, 600px to 730) */
@media only screen and (max-width: 730px) {
    .logixmap-question {
        width: 100% !important;
    }

    .logixmap-managers {
        width: 100% !important;
        flex-direction: column;
    }

    .logixmap-managers .logixmap-manager-row {
        width: 100% !important;
    }

    .logixmap-drawer {
        flex-direction: row;
        width: 100%;
        max-width: none;
        order: 2;
        border-top-left-radius: 0;
        border-bottom-right-radius: 6px;
        border-bottom-left-radius: 6px;
        padding: 0;
    }

    .logixmap-info {
        left: 10px;
        right: 10px;
        top: 10px;
        bottom: 10px;
        width: auto;
    }

    .logixmap-root[data-type=prolink] .logixmap-drawer {
        height: 200px;
    }

    .logixmap-root[data-type=where-to-buy] .logixmap-drawer {
        height: 250px;
    }

    .logixmap-drawer > .logixmap-search-box, .logixmap-drawer > .logixmap-location-button, .logixmap-drawer > .logixmap-divider {
        display: none !important;
    }

    .logixmap-dealer-list {
        height: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        display: flex;
        flex-direction: row;
    }

    .logixmap-dealer-info {
        height: 100%;
        overflow-y: scroll;
    }

    .logixmap-dealer-contact, .logixmap-dealer-learn-more {
        margin-top: auto;
    }

    .logixmap-dealer-row, .logixmap-dealer-box {
        width: 80%;
        flex-shrink: 0;
    }

    .logixmap-drawer .logixmap-divider {
        height: 100%;
        width: 3px;
    }

    .logixmap-container {
        flex-direction: column;
        height: 800px;
    }

    .logixmap-map {
        border-radius: 0;
    }

    .logixmap-right-search {
        display: flex;
        flex-direction: column;
    }

    .logixmap-toolbar-title {
        display: none;
    }

    .logixmap-toolbar-items {
        width: 100%;
        justify-content: space-around;
    }
}

@media only screen and (max-width: 600px) {
    .logixmap-dealer-row, .logixmap-dealer-box {
        width: 88% !important;
    }
}

/* ----- Territory Managers Directory widget ----- */

.logix-tm-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 0;
    gap: 16px;
}

.logix-tm-body {
    background: #F5F5F5;
    border-radius: 6px;
    padding: 16px;
}

.logix-tm-manager-row {
    width: calc(50% - 8px);
    background-color: white;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .logix-tm-manager-row {
        width: 100% !important;
    }
}

.logix-tm-manager-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    flex-shrink: 0;
}

.logix-tm-manager-products {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: start;
}

.logix-tm-badge {
    border-radius: 2px;
    padding: 3px 8px;
    font-size: 12px;
}

.logix-tm-badge-element {
    background-color: rgba(59, 178, 7, 0.1);
    color: rgba(59, 178, 7, 1);
}

.logix-tm-badge-halo {
    background-color: rgba(248, 163, 0, .1);
    color: rgba(248, 163, 0, 1);
}

.logix-tm-badge-heat-sheet {
    background-color: rgba(255, 71, 71, .1);
    color: rgba(255, 71, 71, 1);
}

.logix-tm-badge-chrome {
    background-color: rgba(141, 141, 141, .1);
    color: rgba(141, 141, 141, 1);
}

.logix-tm-manager-subtitle {
    margin: 0 !important;
    margin-bottom: 8px !important;
    font-size: 0.95rem;
}

.logix-tm-manager-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
}

.logix-tm-manager-info {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    margin-left: 10px;
}

.logix-tm-manager-header {
    display: flex;
    align-items: center;
}

.logix-tm-manager-header img {
    margin-left: 16px;
}

.logix-tm-manager-title {
    margin: 0 !important;
    font-weight: bold;
}

.logix-tm-manager-address {
    margin: 0 !important;
    font-size: 0.95rem;
}

.logix-tm-manager-phone, .logix-tm-manager-email {
    margin: 0 !important;
    font-size: 0.95rem;
    text-decoration: underline !important;
    font-weight: normal !important;
    cursor: pointer;
}

.logix-tm-loader {
    width: 100%;
    min-height: 15px;
    display: block;
    border-radius: 7px;
    background-size: 50px 500px !important;
    background: rgb(244, 246, 249) linear-gradient(
            to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%
    ) repeat-y -100% 0;
    animation: shine 1.2s infinite;
}

.logix-tm-manager-avatar-loader {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: 50px 500px !important;
    background: rgb(244, 246, 249) linear-gradient(
            to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%
    ) repeat-y -100% 0;
    animation: shine 1.2s infinite;
}

.logix-tm-toolbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    flex-grow: 0;
    gap: 16px;
    margin-bottom: 16px;
}

.logix-tm-search-box {
    position: relative;
    width: 250px;
}

.logix-tm-search-box input[type="text"],
.logix-tm-search-box input[type="text"]:hover,
.logix-tm-search-box input[type="text"]:focus,
.logix-tm-search-box input[type="text"]:focus-visible,
.logix-tm-search-box input[type="text"]:active {
    width: 100%;
    padding: 10px 10px 10px 35px;
    box-sizing: border-box;
    font-size: 13px;
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    background-image: none !important;
    border-radius: 5px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #111827 !important;
}

.logix-tm-search-box i {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.logix-tm-states {
    width: 250px;
    border: none;
    height: 39px;
    background: #F5F5F5;
    border-radius: 5px;
}

.logix-tm-toolbar-items {
    height: 40px;
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border-radius: 5px;
    padding: 12px;
    margin-left: auto;
}

.logix-tm-toolbar-item {
    display: flex;
    align-items: center;
}

.logix-tm-toolbar-item:not(:last-child) {
    margin-right: 20px;
}

.logix-tm-toolbar-item input {
    margin-right: 8px;
}

.logix-tm-toolbar-item label {
    user-select: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.logix-tm-filter-element {
    accent-color: #32A600;
}

.logix-tm-filter-halo {
    accent-color: #C48100;
}

.logix-tm-filter-heat-sheet {
    accent-color: #FF4747;
}

.logix-tm-filter-chrome {
    accent-color: #8D8D8D;
}

/* Block Chrome/Safari autofill yellow on the search inputs. Some host
   themes also use an autofill-style box-shadow for "focused" inputs
   that ends up looking brand-tinted on green/orange palettes. */
.logixmap-autocomplete:-webkit-autofill,
.logixmap-autocomplete:-webkit-autofill:hover,
.logixmap-autocomplete:-webkit-autofill:focus,
.logix-tm-autocomplete:-webkit-autofill,
.logix-tm-autocomplete:-webkit-autofill:hover,
.logix-tm-autocomplete:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #f5f5f5 inset !important;
    -webkit-text-fill-color: #111827 !important;
    caret-color: #111827;
    transition: background-color 5000s ease-in-out 0s;
}

/* Address autocomplete dropdown — visual parity with the logix-activities
   CitySearchField. Rendered as a body-portal sibling so it escapes the
   widget's own stacking/overflow contexts. !important defends against
   theme rules that paint generic <button>/<div>'s with brand color.
   z-index is intentionally low so site headers (typical 100–9999) and
   Elementor popup overlays still render above the dropdown. */
.logixmap-ac-dropdown {
    position: absolute;
    background-color: #ffffff !important;
    background-image: none !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 3px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    overflow: hidden;
    z-index: 50;
    box-sizing: border-box;
    font-family: inherit;
}

.logixmap-ac-list {
    max-height: 220px;
    overflow-y: auto;
    padding: 4px 0;
    background-color: #ffffff !important;
}

/* Host themes (Hello Elementor / Astra / Elementor's button kit) paint
   <button> with the brand primary as the default background — that
   was turning every prediction row green/orange. !important on every
   interaction state forces neutral grey/white. */
.logixmap-ac-item,
.logixmap-ac-item:link,
.logixmap-ac-item:visited {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    text-align: left !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease !important;
    font-family: inherit !important;
    font-weight: 400 !important;
    color: #111827 !important;
    text-transform: none !important;
    text-decoration: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    transform: none !important;
    box-sizing: border-box !important;
}

.logixmap-ac-item:hover,
.logixmap-ac-item:focus,
.logixmap-ac-item:focus-visible,
.logixmap-ac-item:active,
.logixmap-ac-item.is-active {
    background: #f3f4f6 !important;
    background-color: #f3f4f6 !important;
    background-image: none !important;
    color: #111827 !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
}

.logixmap-ac-item-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #9ca3af !important;
}

.logixmap-ac-item-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.logixmap-ac-item-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.logixmap-ac-item-main {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111827 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4 !important;
}

.logixmap-ac-item-sub {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #9ca3af !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4 !important;
}

.logixmap-ac-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    color: #9ca3af;
    font-size: 14px;
}

.logixmap-ac-spinner {
    display: inline-flex;
    align-items: center;
    color: #9ca3af;
}

.logixmap-ac-spinner svg {
    width: 16px;
    height: 16px;
    animation: logixmap-ac-spin 1s linear infinite;
}

@keyframes logixmap-ac-spin {
    to { transform: rotate(360deg); }
}

/* Scoped utility subset used by the generated dealer/pro cards. Keep these
   inside Logix Map roots so the plugin does not leak generic Tailwind classes
   such as .!flex, .!w-full, .flex, or .container into other plugins. */
:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!m-0 {
    margin: 0 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!mt-1 {
    margin-top: 4px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!flex {
    display: flex !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!inline-flex {
    display: inline-flex !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!inline-block {
    display: inline-block !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!h-2 {
    height: 8px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!h-12 {
    height: 48px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!w-2 {
    width: 8px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!w-12 {
    width: 48px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!w-full {
    width: 100% !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!cursor-pointer {
    cursor: pointer !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!flex-col {
    flex-direction: column !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!flex-wrap {
    flex-wrap: wrap !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!items-center {
    align-items: center !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!justify-center {
    justify-content: center !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!gap-0\.5 {
    gap: 2px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!gap-1 {
    gap: 4px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!gap-1\.5 {
    gap: 6px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!gap-2 {
    gap: 8px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!gap-3 {
    gap: 12px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!rounded-full {
    border-radius: 9999px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!rounded-md {
    border-radius: 6px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!bg-gray-100 {
    background-color: #f3f4f6 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!p-4 {
    padding: 16px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!py-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-center {
    text-align: center !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-\[12px\] {
    font-size: 12px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-\[13px\] {
    font-size: 13px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-\[14px\] {
    font-size: 14px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-\[15px\] {
    font-size: 15px !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!leading-none {
    line-height: 1 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!leading-snug {
    line-height: 1.375 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!leading-tight {
    line-height: 1.25 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!font-semibold {
    font-weight: 600 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-gray-400 {
    color: #9ca3af !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-gray-500 {
    color: #6b7280 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-gray-600 {
    color: #4b5563 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-gray-900 {
    color: #111827 !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!text-white {
    color: #ffffff !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!no-underline {
    text-decoration-line: none !important;
}

:where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .\!transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
    transition-duration: 150ms !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (hover: hover) {
    :where(.logixmap-root, .logixmap-search-root, .logix-tm-root) .hover\:\!underline:hover {
        text-decoration-line: underline !important;
    }
}

/* Hide Google Maps' bottom-right utility cluster (Keyboard shortcuts,
   Map data ©, Terms, Report a map error). The Google logo and copyright
   attribution are still required by the Maps Platform ToS — leave them. */
.logixmap-map .gm-style-cc {
    display: none !important;
}

/* Slim search-only widget (WhereToBuySearch): autocomplete input + brand-color
   Search button laid out side-by-side. Reuses .logixmap-search-box markup
   but overrides the drawer-tuned spacing and grey fill. */
.logixmap-search-root {
    display: flex;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.logixmap-search-root .logixmap-search-box {
    flex: 1 1 auto;
    margin-bottom: 0;
    min-width: 0;
}

.logixmap-search-root .logixmap-search-box input[type="text"],
.logixmap-search-root .logixmap-search-box input[type="text"]:hover,
.logixmap-search-root .logixmap-search-box input[type="text"]:focus,
.logixmap-search-root .logixmap-search-box input[type="text"]:focus-visible,
.logixmap-search-root .logixmap-search-box input[type="text"]:active {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 18px 16px 18px 44px;
    font-size: 16px;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 0 !important;
}

.logixmap-search-root .logixmap-search-box i {
    left: 16px;
    font-size: 16px;
    color: #6b7280;
}

.logixmap-search-submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 28px;
    border: none !important;
    background-color: var(--search-submit-bg, var(--primary-color, #f3a04a)) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.logixmap-search-submit:hover:not(:disabled),
.logixmap-search-submit:focus:not(:disabled) {
    opacity: 0.92;
}

.logixmap-search-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .logixmap-search-root {
        flex-direction: column;
    }
    .logixmap-search-submit {
        padding: 14px 28px;
    }
}
