@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;family=Outfit:wght@100..900&amp;display=swap');
/* #### START reset page containers ###########  */
.page-id-291 .has-global-padding {
    margin: 0;
    padding: 0;
}

/* #### END reset page containers ###########  */


/* clamp break at 1440px  */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

button:focus,
button:active,
a:focus,
a:active {
    outline: 0;
}

button * {
    pointer-events: none;
}

.map_section {
    background-color: #FEFBF6;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    margin: 0;
    max-width: 100%;

    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    height: 1000px;
}

.close-map-sidebar {
    display: none;
}

.map_sidebar {
    /* padding: 40px; */
    padding: clamp(20px, 2.0833vw, 40px);
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
}

.search_location_form {
    position: relative;
}

.search_location_form label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #232A6C;
}

.search_location_input {
    display: block;
}

.search_location_input {
    box-shadow: 2px 2px 4px 0px rgba(184, 182, 182, 0.15);
    padding: 12px 16px;
    font-size: clamp(12px, 1.1111vw, 16px);
    border: 0;
    width: 100%;
    font-weight: 600;
    color: #222A6C;
    height: 46px;
    border-radius: 4px;
}

.search_location_input::placeholder {
    font-weight: 400;
}

.search_location_input:focus,
.search_location_input:active {
    outline: 1px solid #222A6C;
}

.search_location_button {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 50px;
    border: 0;
    cursor: pointer;
    background: transparent;
}

.form-row {
    position: relative;
}

.no_locations_selected_container {
    height: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    /* justify-content: space-around; */
    padding: 0;
    /* 140px 0 */
}

.no_locations_selected {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.no_locations_selected_title {
    /* font-size: 24px; */
    font-size: clamp(20px, 1.6667vw, 24px);
    color: #F8A032;
    font-weight: 700;
    margin-bottom: 8px;
}

.no_locations_selected_text {
    font-size: clamp(12px, 1.1111vw, 16px);
    max-width: 315px;
}

.button_container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.use_my_location {
    padding: 8px;
    display: flex;
    gap: 4px;
    border-radius: 4px;
    background-color: #307AFF;
    align-items: center;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.use_my_location>* {
    pointer-events: none;
}

.locations_container {
    flex: 2;
    /* overflow: auto;
    padding-right: 5px; */
}

.locations_container::-webkit-scrollbar {
    width: 5px;
}

.locations_container::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.locations_container::-webkit-scrollbar-thumb {
    background-color: #222A6C;
    outline: 1px solid #222A6C;
}

.map_container {
    flex: 1;
    height: 100%;
}


.no_location_found_error {
    background-color: #F8A032;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}

.locations_container .location_item {
    border: 1px solid #F0F0F0;
    padding: clamp(12px, 1.38888889vw, 20px);
    border-radius: 4px;
    box-shadow: 2px 2px 4px 0px rgba(184, 182, 182, 0.15);
    background-color: #fff;
    transition: .3s all;
}

.locations_container .location_item:hover {
    border: 1px solid #222A6C;
    box-shadow: 2px 2px 8px 0px rgba(34, 42, 108, 0.20);
}

.locations_container .location_item .title {
    padding-bottom: clamp(12px, 1.11111111vw, 16px);
    margin: 0;
}

.locations_container .location_item .location_row {
    display: flex;
    gap: 12px;
    padding-top: clamp(12px, 1.11111111vw, 16px);
    padding-bottom: clamp(12px, 1.11111111vw, 16px);
    border-top: 1px solid #f0f0f0;
    justify-content: space-between;
    color: #393939;
}

.locations_container .location_item .location_row:first-of-type {
    padding-top: 0;
    border-top: none;
    align-items: flex-end;
}

.locations_container .location_item .location_row.hours-row {
    flex-wrap: wrap;
}

.location_item .location_row.hours-row .hours_container {
    width: 100%;
}

.locations_container .location_item .location_footer {
    margin-top: 4px;
}

.locations_container .location_item .location_footer .link_directions svg path {
    transition: all 0.3s;
}

.locations_container .location_item .location_footer .link_directions:hover {
    color: #fff;
    background-color: #222a6c;
}

.locations_container .location_item .location_footer .link_directions:hover svg path {
    stroke: #fff;
}

.locations_container .location_item .location_footer .link_details:hover {
    color: #fff;
    background-color: #222a6c;
    border-color: #222a6c;
}

@media (max-width: 767px) {
    .locations_container {
        row-gap: 12px;
    }
}

.location_item .select-location {
    display: none;
}

.location_item_button {
    margin-top: 12px;
}

.all_locations_link {
    font-size: 16px;
    display: block;
    padding: 12px;
    background-color: #307AFF;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}

.location_row a {
    color: #393939;
    text-decoration: none;
}

.location_row_highlight {
    font-weight: 600;
}

.hours_button_container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.open_hours_drawer {
    border: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    cursor: pointer;
}

.open_hours_drawer svg {
    transition: all .3s;
}

.open_hours_drawer.hours_opened svg {
    transform: scale(-1);
}



.location_footer {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.1111vw, 16px);
}

.location_footer>* {
    flex: 1;
}

.link_directions {
    font-weight: 600;
    padding: 8px;
    border: 1px solid #222A6C;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    text-transform: capitalize;
    justify-content: center;
    color: #222A6C;
}

.link_details {
    font-weight: 600;
    padding: 8px;
    background-color: #307AFF;
    color: #fff;
    border: 1px solid #307AFF;
    border-radius: 4px;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
}

.hours_container {
    display: none;
}

.show_hours {
    display: block;
}

.hour {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #393939;
    padding: 4px 0;
}

.hour.today {
    font-weight: 700;
    color: #222A6C;
}

.schedule {
    text-transform: uppercase;
}

.map_popup_container {
    width: 300px;
}

.map_popup_title {
    font-size: 16px;
    font-weight: 700;
    color: #222A6C;
    margin-bottom: 12px;
}

.map_popup_address {
    font-size: 12px;
    color: #393939;
    display: flex;
    justify-content: space-between;
}

.map_popup_time {
    padding: 12px 0;
    color: #0BB71C;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

.map_popup_footer {
    display: flex;
    gap: 8px;
}

.map_popup_footer>* {
    flex: 1;
    font-size: 12px;
}

.maplibregl-popup-close-button {
    font-size: 20px;
    top: 12px;
    right: 12px;
    color: #B8B6B6;
}

.loader {
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.marker-active {
    animation: MapPinBounce .5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    z-index: 1;
}

@keyframes MapPinBounce {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: -10px;
    }
}


@media (max-width: 900px) {
    .map_container {
        display: none;
    }

    .map_section {
        justify-content: center;
        height: auto;
    }

    .search_location_form label {
        display: none;
    }

    /* .no_locations_selected_container {
        gap: 140px;
    } */
}


/* radar autocomplete  */
.radar-autocomplete-wrapper {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 100% !important;
}

.radar-autocomplete-results-list {
    position: absolute !important;
    z-index: 1000;
}

.radar-autocomplete-results-list {
    border-radius: 4px !important;
    overflow: hidden !important;
    border: 1px solid #F0F0F0;
    background: #FFF;
    padding: 16px !important;
    box-shadow: 2px 2px 4px 0px rgba(184, 182, 182, 0.15) !important;
    margin-top: 0 !important;
}

.radar-autocomplete-results-list .pinIcon {
    display: none !important;
}

.radar-autocomplete-results-item {
    border-top: 1px solid #F0F0F0;
    padding: 12px 0 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    font-family: "Open Sans", sans-serif !important;
    margin-bottom: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.radar-autocomplete-results-item:first-child {
    border: 0 !important;
    padding-top: 0 !important;
}

.radar-autocomplete-results-item:last-child,
.radar-autocomplete-results-item:nth-last-of-type(1) {
    padding-bottom: 0 !important;
}

.radar-autocomplete-results-item:hover {
    background-color: transparent !important;
}

.radar-powered {
    display: none !important;
}

.radar-autocomplete-results-marker {
    display: none;
}