/* Minification failed. Returning unminified contents.
(627,43): run-time error CSS1046: Expect comma, found '0'
(627,47): run-time error CSS1046: Expect comma, found '/'
(627,73): run-time error CSS1046: Expect comma, found '0'
(627,77): run-time error CSS1046: Expect comma, found '/'
 */
/*-----------------------------------------------------------------------------*
 *  STORE LOCATOR
 *-----------------------------------------------------------------------------*
 *
 *  Responsive Google Maps Store locator build in Preact featuring interactive
 *  places list, user geolocation, search box with autocomplete, custom map
 *  styles, custom markers and internationalization.
 *
 *  Forked and improved from https://github.com/microapps/store-locator
 *
 *  @author Luca Rosaldi
 *
 */

/**
 * @block        Store Locator
 * @description  The place locator wrapper.
 */
.place-locator {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.place-locator *:not([class*="fa-"]) {
    box-sizing: border-box;
    font-family: inherit;
}

/**
 * @element      Store Locator Store
 * @description  The wrapper for the place block.
 */
.place-locator_place {
    display: flex;
    align-items: stretch;
}

.place-locator_list .place-locator_place {
    position: relative;
    transition: all 0.2s ease;
}

.place-locator_list .place-locator_place.is-selected {
    background-color: #f5f5f5;
}

.place-locator_map .place-locator_place {
}

/**
 * @element      Store Locator Store Text
 * @description  The container for the place text.
 */
.place-locator_place_text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 1rem;
}

.place-locator_list .place-locator_place_text {
    margin-left: 1.5rem;
}

/**
 * @element      Store Locator Store Thumbnail
 * @description  The container for the place thumbnail.
 */
.place-locator_place_thumbnail {
    flex: 0 0 auto;
    margin: 1rem;
    text-align: center;
}

.place-locator_place_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.place-locator_list .place-locator_place_thumbnail {
    width: 80px;
    height: 92px;
}

.place-locator_map .place-locator_place_thumbnail {
    margin: 0.5rem 0 0.5rem 0.5rem;
}

/**
 * @element      Store Locator Store Name
 * @description  The name of the place.
 */
.place-locator_place_name {
    margin: 0;
    font-size: 20px;
}

/**
 * @element      Store Locator Store Summary
 * @description  The summary of the place.
 */
.place-locator_place_summary {
    margin: 0.5rem 0 0;
}

.place-locator_list .place-locator_place_summary {
    margin-top: 0.25rem;
}

.place-locator_map .place-locator_place_summary {
    display: none;
}

/**
 * @element      Store Locator Store Address
 * @description  The address of the place.
 */
.place-locator_place_address {
    margin: 0.5rem 0 0;
}

.place-locator_list .place-locator_place_address {
}

.place-locator_map .place-locator_place_address {
    display: none;
}

/**
 * @element      Store Locator Store description
 * @description  The description of the place.
 */
.place-locator_place_description {
    margin: 0.5rem 0 0;
}

.place-locator_list .place-locator_place_description {
    display: none;
}

.place-locator_map .place-locator_place_description {
}

/**
 * @element      Store Locator Store Distance
 * @description  The text which displays the distance of the place from the current location.
 */
.place-locator_place_distance {
    display: block;
    height: 1em;
    margin: 0.35rem 0 0;
    line-height: 1em;
}

.place-locator.distance-is-hidden .place-locator_place_distance {
    display: none;
}

/**
 * @element      Store Locator Store Actions
 * @description  The available actions for the place.
 *
 * [1] remove click event on container to prevent conflicts with place selection
 */
.place-locator_place_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
    pointer-events: none;
    color: #000;
    font-size: 16px;
}

.place-locator_list .place-locator_place_actions {
    display: none;
    margin-left: -0.25rem;
}

.place-locator_map .place-locator_place_actions {
    flex-direction: column;
    align-items: flex-start;
}

/**
   * @element      Store Locator Store Actions
   * @description  The available actions for the place.
   *
   * [1] replace click events on links
   */
.place-locator_place_actions a {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding: 0.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    pointer-events: auto; /* [1] */
}

.place-locator_place_actions a:hover {
    z-index: 2;
}

.place-locator_list .place-locator_place_actions a {
    white-space: nowrap;
}

.place-locator_list .place-locator_place_actions a::after {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY( -50% );
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    white-space: nowrap;
    background-color: #4285f4;
    color: #fff;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.1s linear;
    pointer-events: none;
}

.place-locator_list .place-locator_place_actions a:hover::after {
    opacity: 1;
}

.place-locator_map .place-locator_place_actions a {
    padding-left: 0;
}

/**
   * @element      Store Locator Store Actions Icon
   * @description  The icon for the place action.
   */
.place-locator_place_actions svg {
    width: 1.5em;
    height: 1.5em;
    color: #4285f4;
    transition: all 0.15s ease;
}

.place-locator_place_actions [class*="fa-"] {
    color: #4285f4;
    transition: all 0.15s ease;
}

/**
   * @element      Store Locator Store Actions Text
   * @description  The text for the place action.
   */
.place-locator_place_actions span {
    margin-left: 0.25em;
}

.place-locator_list .place-locator_place_actions span {
    display: none;
}

/**
 * @element      Store Locator Map
 * @description  The map wrapper.
 */
.place-locator_map {
    flex: 1;
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
* @element      Store Locator Map Store
* @description  Store inside the map infowindow.
*/
.place-locator_map .place-locator_place {
    flex-direction: column;
    max-width: 300px;
}

.place-locator_map .place-locator_place.has-thumbnail {
}

/**
* @element      Store Locator Map Store Text
* @description  Text of place inside the map infowindow.
*/
.place-locator_map .place-locator_place .place-locator_place_text {
    margin: 0.5rem 0 0.5rem 0.5rem;
}

/**
 * @element      Store Locator Nav
 * @description  The wrapper for the place navigation.
 */
.place-locator_nav {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    background: #fff;
    color: inherit;
    box-shadow: 0 0 8px rgba( 0, 0, 0, 0.3 );
}

/**
   * @element      Store Locator Nav Container
   * @description  The place navigation container.
   */
.place-locator_nav_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /*max-height: 300px;*/
    overflow: hidden;
}

/**
     * @element      Store Locator Nav Header
     * @description  The place navigation header.
     */
.place-locator_nav_header {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #e6e6e6;
}

/**
     * @element      Store Locator Nav Search
     * @description  The search bar inside the place navigation.
     */
.place-locator_nav_search {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}

/**
   * @element      Store Locator Search
   * @description  The search bar.
   */
.place-locator_search {
    flex-grow: 1;
    position: relative;
}

/**
 * @element      Store Locator Search Input
 * @description  The input element inside the search bar.
 */
.place-locator_search input {
    width: 100%;
    height: 3em;
    padding: 0 2.25rem 0 0.75rem;
    line-height: 3em;
    background: transparent;
    border: 0;
    outline: none;
}

/**
 * @element      Store Locator Search Label
 * @description  The label (icon) inside the search bar.
 */
.place-locator_search svg, .place-locator_search i {
    position: absolute;
    right: 0.5em;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1.5em;
    height: 1.5em;
    opacity: 0.38;
    pointer-events: none;
}

.place-locator_search i {
    top: 12px;
    font-size: 20px;
    width: auto;
}
/**
     * @element      Store Locator Search Hint
     * @description  The text below the search bar.
     */
.place-locator_search_hint {
    width: 100%;
    margin: 1rem 0 0;
    opacity: 0.75;
}

.place-locator_nav_button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 3em;
    height: 3em;
    background: transparent;
    border: 0;
    color: inherit;
    appearance: none;
    cursor: pointer;
}

.place-locator.no-geolocation .place-locator_nav_button {
    display: none;
}

.place-locator_nav_button svg {
    width: 1.5em;
    height: 1.5em;
    opacity: 0.38;
    transition: all 0.15s ease;
}

.place-locator_nav_button:hover svg {
    color: #4285f4;
    opacity: 1;
}

.place-locator_nav_button:before {
    content: "";
    position: absolute;
    top: 0.75em;
    bottom: 0.75em;
    left: 0;
    width: 1px;
    background-color: #e6e6e6;
}

/**
   * @element      Store Locator Nav Empty
   * @description  Container for the text displayed where there are no results.
   */
.place-locator_nav_empty {
    opacity: 0.5;
    padding: 1.5rem;
}

/**
   * @element      Store Locator List
   * @description  The list of all places.
   */
.place-locator_list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
}

.place-locator_list::-webkit-scrollbar {
    width: 6px;
}

.place-locator_list::-webkit-scrollbar-thumb {
    background: rgba( 0, 0, 0, 0.42 );
}

.place-locator_list::-webkit-scrollbar-track {
    background: rgba( 0, 0, 0, 0.12 );
}

/**
 * @element      Store Locator List Item
 * @description  Item inside the place navigator list.
 */
.place-locator_list li {
    border-bottom: 1px solid #e6e6e6;
}

@media (min-width: 750px) {

    /**
   * @block        Store Locator
   * @description  The place locator wrapper.
   *
   * [1] put map and navigation side by side
   */
    .place-locator {
        flex-direction: row;
    }

    /**
   * @element      Store Locator Nav
   * @description  The wrapper for the place navigation.
   *
   * [1] put the navigation on the left of the screen
   */
    .place-locator_nav {
        order: -1;
        max-width: 400px;
    }

    /**
   * @modifier     Store Locator Fullwidth Nav
   * @description  The wrapper for the place navigation when in full width mode.
   */
    .place-locator.is-fullwidth .place-locator_nav {
        position: absolute;
        top: 2rem;
        left: 2rem;
        bottom: 2rem;
        right: 2rem;
    }

    /**
     * @element      Store Locator Nav Container
     * @description  The place navigation container.
     */
    .place-locator_nav_container {
        position: absolute;
        top: 0;
        left: 0;
        max-height: none;
    }
}

/*place-locator customize*/
#place-locator {
    height: 600px;
}

.place-locator_nav_search button {
    outline: none;
    -moz-outline-style: none;
}

.place-locator_map .place-locator_place_buttons {
    display: none;
}

.place-locator_list .btn-removefromtour {
    display: none;
}

.place-locator .place-locator_nav {
    /* hidden */
    transition: 0.5s;
    transform: translateX(-100%);
    visibility: hidden;
}

.place-locator .side-controls {
    transition: 0.5s;
    transform: translateX(0%);
}

.place-locator .place-locator_map {
    transition: 0.5s;
    /*transform: translateX(0%);*/
    width: 100%;
    margin-left: 0;
}

.place-locator.show .place-locator_nav {
    /* showing */
    transition: 0.5s;
    transform: translateX(0%);
    visibility: visible;
}

.place-locator.show .side-controls {
    transition: 0.5s;
    transform: translateX(400px);
}

.place-locator.show .place-locator_map {
    transition: 0.5s;
    /*transform: translateX(400px);*/
    width: calc(100% - 400px);
    margin-left: 400px;
}

/*filter-switch*/
.filter-switch {
    list-style: none;
    display: block;
    margin: 0px;
    padding: 5px 5px;
    background-color: #f5f5f5;
}

.filter-switch label {
    cursor: pointer;
    margin-bottom: 0px;
    padding: 0px 5px;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter-switch-item {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
}

.filter-switch-item i:before {
    font-size: 14px;
}

.filter-switch-item input {
    display: none;
}

.filter-switch-item input:checked + label {
    color: #007bff;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
    background-color: #fff;
}

.filter-switch-item input:not(:checked) + label {
    background-color: transparent;
    box-shadow: none;
}

/*side-controls*/
.side-controls {
    position: absolute;
    top: 0px;
    z-index: 2;
}

.side-controls .control {
    transition: background-color .175s cubic-bezier(.4,0,.2,1),border .175s cubic-bezier(.4,0,.2,1),color .175s cubic-bezier(.4,0,.2,1),opacity .175s cubic-bezier(.4,0,.2,1),box-shadow .175s cubic-bezier(.4,0,.2,1);
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #00bc66;
    border: none;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    outline: none;
    -moz-outline-style: none;
}

.side-controls .control.toggler {
    display: block;
    background-color: rgba(255,255,255,.85);
    color: #00bc66;
}

.side-controls .control > [class*=fa-] {
    display: inline-block;
    position: relative;
    z-index: 2;
    font-size: 18px;
    width: 40px;
    height: 50px;
    line-height: 48px;
}

.side-controls .control .title {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-left: 40px;
    padding-right: .75em;
    z-index: 1;
    visibility: hidden;
    background-color: inherit;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .25);
    color: transparent;
    line-height: 50px;
    transform: translate(-100%,0);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.side-controls .control:hover .title, .side-controls .control:focus .title, .side-controls .control:active .title {
    visibility: visible;
    color: #fff;
    transform: translate(0,0);
}

/*days*/
ul.days {
    list-style: none;
    padding: 10px 10px 0px;
}

ul.days li.placeHolder {
    border: dashed 1px gray !important;
}

ul.days li img {
    width: 100%;
}

ul.days li h1 {
    font-family: inherit;
    font-size: 28px;
}

