/**
 * WP Store Locator – Theme Override
 * ──────────────────────────────────
 * Kopie von:  /plugins/wp-store-locator/css/styles.css
 * Zweck:      Alle Anpassungen am WPSL-Styling hier vornehmen,
 *             damit Plugin-Updates die Änderungen nicht überschreiben.
 *
 * Einbindung: Wird per functions.php / aronation.php mit höherer
 *             Priorität geladen und das Original dequeued.
 */

@font-face {
    font-family: 'wpsl-fontello';
    src: url('../../plugins/wp-store-locator/font/fontello.eot?28897909');
    src: url('../../plugins/wp-store-locator/font/fontello.eot?28897909#iefix') format('embedded-opentype'),
        url('../../plugins/wp-store-locator/font/fontello.woff?28897909') format('woff'),
        url('../../plugins/wp-store-locator/font/fontello.ttf?28897909') format('truetype'),
        url('../../plugins/wp-store-locator/font/fontello.svg?28897909#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

#wpsl-gmap {
    float: right;
    width: 66.5%;
    height: 350px;
    margin-bottom: 0;
}

.wpsl-store-below #wpsl-gmap {
    float: none;
    width: 100%;
}

.wpsl-gmap-canvas {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

#wpsl-reset-map:hover {
    cursor: pointer;
}

/*
Some themes set a box-shadow or max-width for all image / 
div elements, we disable it to prevent it from messing up the map

The .gv-iv- class is used in streetview, and they should not be included.
*/
#wpsl-gmap div:not[class^="gv-iv"],
#wpsl-gmap img,
.wpsl-gmap-canvas div:not[class^="gv-iv"],
.wpsl-gmap-canvas img {
    box-shadow: none !important;
    max-width: none !important;
    background: none;
}

#wpsl-gmap img,
.wpsl-gmap-canvas img {
    display: inline;
    opacity: 1 !important;
    max-height: none !important;
}

/*
Fix a problem where the background color used
in street view mode doesn't cover the control area.
*/
#wpsl-gmap * {
    box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
}

#wpsl-gmap div.gm-iv-marker,
.wpsl-gmap-canvas div.gm-iv-marker {
    backgroud-image: inherit;
}

#wpsl-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    clear: both;
    margin-bottom: 20px;
}

#wpsl-search-wrap {
    float: left;
    width: 100%;
}

#wpsl-search-wrap form {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* Map Controls */
#wpsl-gmap #wpsl-map-controls {
    position: absolute;
    height: 40px;
    right: 10px;
    bottom: 24px;
    border-radius: 2px;
    z-index: 3;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
}

#wpsl-gmap #wpsl-map-controls.wpsl-street-view-exists {
    right: 60px;
}

#wpsl-map-controls .wpsl-direction-preloader {
    margin: 5px 5px 0 5px;
}

#wpsl-map-controls div {
    float: left;
    background: #fff;
    border-radius: 2px;
}

#wpsl-map-controls div:hover {
    cursor: pointer;
}

#wpsl-wrap [class^="wpsl-icon-"],
#wpsl-wrap [class*=" wpsl-icon-"] {
    position: relative;
    float: left;
    padding: 12px 13px;
    display: inline-block;
    font-family: "wpsl-fontello";
    font-style: normal;
    font-weight: normal;
    font-size: 1.3em;
    color: #737373;
    speak: none;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 
 * Make sure the CSS from a theme doesn't set a different font family, or font size
 * for the font icons. Otherwise the icons either don't show, or are to large.
 */
#wpsl-map-controls span {
    font-family: inherit;
    font-size: inherit;
}

#wpsl-wrap .wpsl-icon-reset {
    border-radius: 2px 0 0 2px;
    z-index: 2;
    padding-right: 4px;
}

/* Fix the padding for the icon fonts in IE 8-11 :( */
#wpsl-wrap .wpsl-ie .wpsl-icon-reset {
    margin-right: -1px;
}

#wpsl-wrap .wpsl-icon-direction {
    z-index: 1;
}

#wpsl-map-controls.wpsl-reset-exists .wpsl-icon-direction {
    border-radius: 0 2px 2px 0;
}

#wpsl-wrap .wpsl-active-icon,
#wpsl-wrap [class^="wpsl-icon-"]:hover,
#wpsl-wrap [class*=" wpsl-icon-"]:hover {
    color: #000;
}

#wpsl-wrap [class^="wpsl-icon-"]:active,
#wpsl-wrap [class*=" wpsl-icon-"]:focus {
    outline: 0;
}

#wpsl-wrap .wpsl-in-progress:hover,
#wpsl-wrap .wpsl-in-progress {
    color: #c6c6c6;
}

/* Map reset button */
#wpsl-gmap #wpsl-reset-map {
    position: absolute;
    display: none;
    right: 37px;
    top: 37px;
    padding: 6px 14px;
    background: #fff !important;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    z-index: 3;
}

#wpsl-reset-map:hover {
    cursor: pointer;
}

/* Possible fix for vertical text issue in IE9? */
.gm-style-cc {
    word-wrap: normal;
}

#wpsl-search-wrap .wpsl-input,
#wpsl-search-wrap .wpsl-select-wrap {
    display: table;
}

#wpsl-search-wrap .wpsl-input label,
#wpsl-search-wrap .wpsl-input input,
#wpsl-search-wrap #wpsl-radius,
#wpsl-search-wrap #wpsl-results,
#wpsl-search-btn {
    display: table-cell;
}

#wpsl-search-wrap label {
    margin-bottom: 0;
}

#wpsl-search-input {
    width: 179px;
    height: 45px;
    padding: 7px 18px;
    font-size: 100%;
    margin: 0;
    border-radius: 50px !important;
}

#wpsl-search-wrap input {
    border: 1px solid #d2d2d2;
    border-radius: 50px !important;
    height: 45px;
}

/* Button-Styles werden via uk-button uk-button-primary Klassen gesteuert */
#wpsl-search-btn {
    border-radius: 50px !important;
    height: 45px;
    padding: 0 24px;
    text-transform: none !important;
    cursor: pointer;
    border: none;
    background-image: none;
    box-shadow: none;
}

#wpsl-search-input.wpsl-error {
    border: 1px solid #bd0028 !important;
}

.wpsl-search {
    margin-bottom: 12px;
    padding: 12px 12px 0 12px;
    background: #f4f3f3;
}

.wpsl-search.wpsl-checkboxes-enabled {
    padding: 12px;
}

/* Result list */
.wpsl-back {
    display: inline-block;
}

#wpsl-result-list {
    width: 33%;
    margin-right: 0.5%;
}

.wpsl-store-below #wpsl-result-list {
    width: 100%;
    margin: 12px 0 0 0;
}

#wpsl-stores,
#wpsl-direction-details {
    height: 350px;
    overflow-y: auto;
}

.wpsl-hide,
#wpsl-direction-details {
    display: none;
}

#wpsl-result-list p {
    padding-left: 10px;
}

.wpsl-store-below #wpsl-result-list p {
    padding-left: 0;
}

#wpsl-result-list a {
    outline: none;
}

.wpsl-direction-before {
    margin: 14px 0 21px 0;
    padding-left: 10px;
}

.wpsl-store-below .wpsl-direction-before {
    padding-left: 0;
}

.wpsl-direction-before div {
    margin-top: 10px;
}

#wpsl-wrap #wpsl-result-list li {
    padding: 10px;
    border-bottom: 1px dotted #ccc;
    margin-left: 0;
    overflow: hidden;
    list-style: none outside none !important;
    text-indent: 0;
}

#wpsl-wrap #wpsl-result-list li li {
    padding: 0;
    border-bottom: 0;
    margin-left: 14px;
    overflow: visible;
}

#wpsl-wrap #wpsl-result-list ul li {
    list-style: none !important;
}

#wpsl-wrap #wpsl-result-list ol li {
    list-style: decimal !important;
}

#wpsl-wrap.wpsl-store-below #wpsl-result-list li {
    padding: 10px 10px 10px 0;
}

#wpsl-result-list li p {
    padding-left: 0;
    margin: 0 0 20px 0;
}

.wpsl-store-details.wpsl-store-listing {
    position: relative;
    padding-right: 20px;
}

.wpsl-store-details.wpsl-store-listing:before,
.wpsl-store-details.wpsl-store-listing.wpsl-active-details:before {
    position: absolute;
    content: '';
    bottom: 6px;
    right: 0;
    border-top: 5px solid #000000;
    border-left: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid rgba(0, 0, 0, 0);
}

.wpsl-store-details.wpsl-store-listing.wpsl-active-details:before {
    border-bottom: 5px solid #000000;
    border-top: none;
    border-left: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid rgba(0, 0, 0, 0);
}

#wpsl-stores .wpsl-store-thumb {
    float: right;
    border-radius: 3px;
    margin: 7px 0 0 10px;
    padding: 0;
    border: none;
}

.wpsl-direction-index {
    float: left;
    width: 8%;
    margin: 0 5% 0 0;
}

.wpsl-direction-txt {
    float: left;
    width: 62%;
}

.wpsl-direction-distance {
    float: left;
    width: 20%;
    margin: 0 0 0 5%;
}

.wpsl-direction-txt span {
    display: block;
    margin-top: 10px;
}

.wpsl-street,
.wpsl-country {
    display: block;
    border-bottom: none !important;
}

.wpsl-directions {
    display: table;
    border-bottom: none !important;
}

/* Preloader */
#wpsl-wrap #wpsl-result-list li.wpsl-preloader {
    position: relative;
    border-bottom: none;
    padding: 10px 10px 10px 35px;
}

.wpsl-preloader img {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -8px;
    box-shadow: none !important;
    border: none !important;
}

.wpsl-preloader span {
    float: left;
    margin: -5px 0 0 11px;
}

#wpsl-search-wrap div,
#wpsl-search-btn {
    margin-right: 10px;
    float: left;
}

#wpsl-search-wrap .wpsl-select-wrap {
    position: relative;
    z-index: 2;
    margin-right: 0;
}

#wpsl-search-wrap .wpsl-input-field {
    position: relative;
}

#wpsl-radius,
#wpsl-results {
    float: left;
    margin-right: 15px;
}

#wpsl-category {
    position: relative;
    z-index: 1;
    clear: both;
}

#wpsl-search-wrap .wpsl-dropdown div {
    position: absolute;
    float: none;
    margin: -1px 0 0 0;
    top: 100%;
    left: -1px;
    right: -1px;
    border: 1px solid #ccc;
    background: #fff;
    border-top: 1px solid #eee;
    border-radius: 0 0 3px 3px;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#wpsl-search-wrap .wpsl-dropdown.wpsl-active div {
    opacity: 1;
}

#wpsl-search-wrap .wpsl-input label {
    margin-right: 0;
}

#wpsl-radius,
#wpsl-results {
    display: inline;
}

#wpsl-radius {
    margin-right: 10px;
}

#wpsl-search-btn:hover {
    cursor: pointer;
}

#wpsl-search-wrap select,
#wpsl-search select {
    display: none;
}

#wpsl-search-wrap div label {
    float: left;
    margin-right: 10px;
    line-height: 32px;
}

#wpsl-results label {
    width: auto;
}

#wpsl-result-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpsl-direction-details {
    display: none;
}

/* Infowindow */
#wpsl-gmap .wpsl-info-window,
.wpsl-gmap-canvas .wpsl-info-window {
    max-width: 225px;
}

.wpsl-more-info-listings span {
    display: block;
}

.wpsl-info-window strong {
    display: block;
}

.wpsl-info-window p>span {
    display: inline !important;
    font-size: 9px !important;
}

.wpsl-info-window p>span:not(:last-child)::after {
    content: ", ";
}

.wpsl-info-window .wpsl-no-margin {
    margin: 0;
}

/* More info details in the store listings */
.wpsl-more-info-listings {
    display: none;
}

/* Fix for Google Voice breaking the phone numbers */
.wpsl-info-window span span {
    display: inline !important;
}

#wpsl-wrap .wpsl-info-window p {
    margin: 0 0 10px 0;
}

.wpsl-store-hours {
    margin-top: 10px;
}

.wpsl-store-hours strong {
    display: block;
}

#wpsl-gmap .wpsl-info-actions {
    display: block;
    margin: 10px 0 !important;
}

.wpsl-info-actions a {
    float: left;
    margin-right: 7px;
}

.wpsl-info-actions .wpsl-zoom-here {
    margin-right: 0;
}

/* --- dropdowns --- */
.wpsl-dropdown {
    position: relative;
    width: 90px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-right: 0 !important;
    z-index: 2;
    border-radius: 50px;
}

#wpsl-results .wpsl-dropdown {
    width: 70px;
}

.wpsl-dropdown ul {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    overflow: hidden;
}

.wpsl-dropdown:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.wpsl-dropdown .wpsl-selected-item,
.wpsl-dropdown li {
    position: relative;
    display: block;
    line-height: normal;
    color: #000;
    overflow: hidden;
}

#wpsl-radius .wpsl-dropdown .wpsl-selected-item,
#wpsl-radius .wpsl-dropdown li,
#wpsl-results .wpsl-dropdown .wpsl-selected-item,
#wpsl-results .wpsl-dropdown li {
    white-space: nowrap;
}

.wpsl-selected-item:after {
    position: absolute;
    content: "";
    right: 12px;
    top: 50%;
    margin-top: -4px;
    border: 6px solid transparent;
    border-top: 8px solid #000;
}

.wpsl-active .wpsl-selected-item:after {
    margin-top: -10px;
    border: 6px solid transparent;
    border-bottom: 8px solid #000;
}

.wpsl-dropdown li:hover {
    background: #f8f9f8;
    position: relative;
    z-index: 3;
    color: #000;
}

.wpsl-dropdown .wpsl-selected-item,
.wpsl-dropdown li,
.wpsl-selected-item {
    list-style: none;
    padding: 9px 12px !important;
    margin: 0 !important;
}

.wpsl-selected-dropdown {
    font-weight: bold;
}

.wpsl-clearfix:before,
.wpsl-clearfix:after {
    content: " ";
    display: table;
}

.wpsl-clearfix:after {
    clear: both;
}

#wpsl-wrap .wpsl-selected-item {
    position: static;
    padding-right: 35px !important;
}

#wpsl-category,
.wpsl-input,
.wpsl-select-wrap {
    position: relative;
    margin-bottom: 10px;
}

#wpsl-search-wrap .wpsl-scroll-required div {
    overflow-y: scroll;
}

.wpsl-scroll-required ul {
    overflow: visible;
}

.wpsl-provided-by {
    float: right;
    padding: 5px 0;
    text-align: right;
    font-size: 12px;
    width: 100%;
}

#wpsl-wrap .wpsl-results-only label {
    width: auto;
}

/* wpsl custom post type pages */
.wpsl-locations-details,
.wpsl-location-address,
.wpsl-contact-details {
    margin-bottom: 15px;
}

.wpsl-contact-details {
    clear: both;
}

table.wpsl-opening-hours td {
    vertical-align: top;
    padding: 0 15px 0 0;
    text-align: left;
}

table.wpsl-opening-hours time {
    display: block;
}

table.wpsl-opening-hours {
    width: auto !important;
    font-size: 100% !important;
}

table.wpsl-opening-hours,
table.wpsl-opening-hours td {
    border: none !important;
}

/* Custom Infobox – JUJU Dark Glass Override */
.wpsl-gmap-canvas .wpsl-infobox {
    min-width: 200px;
    max-width: 380px !important;
    padding: 12px 20px 12px 55px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 300;
    font-family: var(--juju-font-family, inherit);

    /* ── Dark Glass ───────────────────────────────────── */
    background: hsla(0, 0%, 15%, 0.65) !important;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);

    /* ── Border + Shadow ──────────────────────────────── */
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        0 4px 20px 0 rgba(0, 0, 0, 0.25);

    /* ── Stacking ─────────────────────────────────────── */
    position: relative;
    overflow: visible;
    z-index: 0;
    color: #fff;
}

/* Close-Button (Google X-Icon) ausblenden */
.wpsl-gmap-canvas .wpsl-infobox>img {
    display: none !important;
}

/* Text + Spans weiß */
.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-window {
    position: relative;
    z-index: 2;
}

.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-window p,
.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-window span,
.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-window strong {
    color: #fff !important;
    line-height: 1.4;
}

.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-window strong {
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-window span {
    font-size: 9px;
    opacity: 0.85;
}

/* Wegbeschreibung / Directions ausblenden */
.wpsl-gmap-canvas .wpsl-infobox .wpsl-info-actions,
.wpsl-gmap-canvas .wpsl-infobox .wpsl-directions {
    display: none !important;
}

/* Country-Zeile ausblenden (optional, wenn redundant) */
.wpsl-gmap-canvas .wpsl-infobox .wpsl-country {
    display: none !important;
}

/* Pfeil (Triangle) ausblenden */
.wpsl-gmap-canvas .wpsl-infobox:after,
.wpsl-gmap-canvas .wpsl-infobox:before {
    display: none !important;
}

#wpsl-checkbox-filter,
.wpsl-custom-checkboxes {
    display: block;
    float: left;
    margin: 5px 0 15px;
    padding: 0;
    width: 100%;
}

#wpsl-checkbox-filter li,
.wpsl-custom-checkboxes li {
    float: left;
    list-style: none;
    margin: 0 1% 0 0;
}

#wpsl-checkbox-filter.wpsl-checkbox-1-columns li,
.wpsl-custom-checkboxes.wpsl-checkbox-1-columns li {
    width: 99%;
}

#wpsl-checkbox-filter.wpsl-checkbox-2-columns li,
.wpsl-custom-checkboxes.wpsl-checkbox-2-columns li {
    width: 49%;
}

#wpsl-checkbox-filter.wpsl-checkbox-3-columns li,
.wpsl-custom-checkboxes.wpsl-checkbox-3-columns li {
    width: 32%;
}

#wpsl-checkbox-filter.wpsl-checkbox-4-columns li,
.wpsl-custom-checkboxes.wpsl-checkbox-4-columns li {
    width: 24%;
}

#wpsl-checkbox-filter input,
.wpsl-custom-checkboxes input {
    margin-right: 5px;
}

#wpsl-result-list .wpsl-contact-details span {
    display: block !important;
}

/*
Hide the select2 ( https://select2.org/ ) dropdowns to
prevent duplicate dropdowns from showing up in the search bar.
*/
#wpsl-search-wrap .select2 {
    display: none !important;
}

/*
Make a few adjustments for themes that use RTL languages
*/
.rtl #wpsl-result-list {
    float: left;
}

.rtl #wpsl-checkbox-filter input,
.rtl .wpsl-custom-checkboxes input {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .wpsl-info-actions a {
    float: right;
    margin: 0 0 0 7px;
}

.rtl #wpsl-gmap .wpsl-info-window {
    padding-right: 22px;
}

.rtl #wpsl-wrap #wpsl-result-list li.wpsl-preloader {
    padding: 10px 35px 10px 0;
}

.rtl .wpsl-preloader img {
    left: 0;
    right: 10px;
}

/* Only used when the TwentyNinteen theme is active */
.wpsl-twentynineteen .wpsl-input {
    width: 100%;
}

.wpsl-twentynineteen #wpsl-search-input {
    line-height: 1.3em;
}

.wpsl-twentynineteen #wpsl-search-wrap label {
    margin-top: 6px;
}

.wpsl-twentynineteen .wpsl-dropdown {
    width: 116px;
}

#wpsl-results .wpsl-dropdown {
    width: 81px;
}

/* New autocomplete support 01/03/2025 */
#wpsl-search-wrap .wpsl-autocomplete-search-container {
    position: relative;
    margin-right: 0;
}

#wpsl-autocomplete-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#wpsl-search-wrap .wpsl-autocomplete-search-results {
    position: absolute;
    width: 100%;
    top: 100%;
    /* Positions it right below the input */
    left: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-sizing: border-box;
    /* Add this to include borders in width calculation */
}

#wpsl-search-wrap .wpsl-autocomplete-search-results ul {
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0 0 25px 0;
}

#wpsl-search-wrap .wpsl-autocomplete-search-results ul:after {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    right: 0;
    background-image: url('https://storage.googleapis.com/geo-devrel-public-buckets/powered_by_google_on_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 18px
}

#wpsl-search-wrap .wpsl-autocomplete-search-results li {
    padding: 4px10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

#wpsl-search-wrap .wpsl-autocomplete-search-results li:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}

#wpsl-search-wrap .wpsl-autocomplete-search-results li:hover,
#wpsl-search-wrap .wpsl-autocomplete-search-results li:focus {
    background-color: #f5f5f5;
}

#wpsl-search-wrap .wpsl-autocomplete-search-results li a,
#wpsl-search-wrap .wpsl-autocomplete-search-results li a:link,
#wpsl-search-wrap .wpsl-autocomplete-search-results li a:hover,
#wpsl-search-wrap .wpsl-autocomplete-search-results li a:visited {
    text-decoration: none;
    color: #000;
    box-shadow: none;
}

#wpsl-search-wrap .wpsl-autocomplete-highlight {
    font-weight: bold;
}

@media (max-width: 825px) {
    #wpsl-search-input {
        width: 348px;
    }

    .wpsl-results-only #wpsl-search-wrap .wpsl-dropdown {
        width: 70px;
    }

    #wpsl-search-wrap .wpsl-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .wpsl-input label,
    #wpsl-radius label,
    #wpsl-category label,
    .wpsl-cat-results-filter #wpsl-search-wrap .wpsl-input,
    .wpsl-no-filters #wpsl-search-wrap .wpsl-input,
    .wpsl-results-only #wpsl-search-wrap .wpsl-input {
        width: auto;
    }
}

@media (max-width: 720px) {
    #wpsl-search-wrap .wpsl-dropdown {
        width: 114px;
    }
}

@media (max-width: 675px) {
    #wpsl-search-wrap #wpsl-search-btn {
        float: left;
        margin: 0 5px 0 0;
    }

    .wpsl-results-only #wpsl-search-wrap .wpsl-input,
    .wpsl-dropdown {
        width: 100%;
    }

    .wpsl-search {
        padding: 2%;
    }

    .wpsl-input {
        margin-right: 0;
    }

    #wpsl-result-list,
    #wpsl-gmap {
        width: 49.75%;
    }

    #wpsl-result-list,
    #wpsl-gmap {
        float: none;
        width: 100%;
    }

    .wpsl-direction-before {
        padding-left: 0;
    }

    #wpsl-gmap {
        margin-bottom: 15px;
    }

    .wpsl-cat-results-filter .wpsl-select-wrap,
    .wpsl-filter .wpsl-select-wrap,
    #wpsl-result-list {
        margin-bottom: 10px;
    }

    #wpsl-result-list p,
    #wpsl-wrap #wpsl-result-list li {
        padding-left: 0;
    }

    #wpsl-wrap #wpsl-result-list li.wpsl-preloader {
        padding-left: 25px;
    }

    .wpsl-preloader img {
        left: 0;
    }

    #wpsl-stores.wpsl-not-loaded {
        height: 25px;
    }

    #wpsl-reset-map {
        top: 25px;
    }

    #wpsl-gmap {
        margin-top: 10px;
    }

    .wpsl-no-filters #wpsl-search-wrap .wpsl-input,
    #wpsl-category,
    .wpsl-input,
    .wpsl-select-wrap,
    .wpsl-input,
    #wpsl-search-btn {
        margin-bottom: 0;
    }

    #wpsl-stores.wpsl-no-autoload {
        height: auto !important;
    }

    #wpsl-checkbox-filter.wpsl-checkbox-3-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-4-columns li {
        width: 49%;
    }
}

@media (max-width: 570px) {
    #wpsl-search-wrap #wpsl-search-btn {
        margin-bottom: 5px;
    }

    .wpsl-search {
        padding: 4%;
    }

    #wpsl-search-input {
        width: 98% !important;
    }

    .wpsl-cat-results-filter #wpsl-search-wrap .wpsl-input,
    .wpsl-cat-results-filter #wpsl-search-input,
    .wpsl-no-results #wpsl-search-input,
    .wpsl-results-only #wpsl-search-input {
        width: 100% !important;
    }

    .wpsl-search-btn-wrap {
        margin-top: 15px;
    }

    .wpsl-checkboxes-enabled .wpsl-search-btn-wrap {
        margin-top: 0;
    }

    #wpsl-search-wrap div,
    #wpsl-search-btn {
        margin-right: 0;
    }

    #wpsl-search-wrap div label {
        display: block;
        width: 100%;
    }

    #wpsl-results {
        width: auto;
    }

    .wpsl-select-wrap {
        width: 100%;
    }

    #wpsl-radius,
    #wpsl-results {
        width: 50%;
    }

    #wpsl-radius {
        margin-right: 4%;
    }

    #wpsl-search-wrap .wpsl-dropdown {
        width: 96% !important;
    }

    .wpsl-search-btn-wrap {
        clear: both;
    }

    .wpsl-no-filters #wpsl-search-wrap .wpsl-input,
    .wpsl-no-filters #wpsl-search-input {
        width: 100% !important;
    }
}

@media (max-width: 420px) {
    #wpsl-checkbox-filter li {
        margin: 0;
    }

    #wpsl-checkbox-filter.wpsl-checkbox-1-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-2-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-3-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-4-columns li {
        width: 100%;
    }
}