/*** ALL PAGE ***/
/* no padding on whole page */
.Main-content{
    padding: 0;
}
.outside-container.custom-filter-grid{
    background: #eeeeee;
}


/*** INTRO TEXT ***/
/* import css file introtext-styles.css */

/* Fixes button to have icons appear inline centered and text to wrap with left justification */
.sqs-block-button .sqs-block-button-element--small{
    display: flex;
    flex-direction: row;
    align-items: center;
    word-break: break-word;
    hyphens: auto;
    text-align: center;
}
.sqs-block-button-container--left{
    display: flex;
    word-wrap: break-word;
}

.sqs-block-button-element--small.sqs-block-button-element > i.far {
    padding-right: 15px; fill: #1988B0;vertical-align: middle;
}
.sqs-block-button-element--small.sqs-block-button-element > i::before {
    color: #1988B0;
}



/*** FILTER CONTAINER ***/
/* add background gradient to filter settings */
#header-filter-container{
    background: linear-gradient(65deg, #5DB05B, #1988B0);
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*filter intro text */
#hungry-text{
    color: #fff;
    font-family: 'Reklame Script';
    font-size: 30px;
    margin-top: 1vh;
}

/* remove bottom padding on .header-filter parent sqsp code block */
.sqs-block.code-block.sqs-block-code{
    padding-bottom: 0;
}

/* flex direction of the filter options */
.customFiltersContainer{
    flex-direction: row;
    align-content: center !important;
}

/*** CLEAR ALL BUTTON ***/
.sqs-block.clearAllBtnWrapper > .sqs-block-content {
    display: flex !important;
    justify-content: center !important;
}
.clearAllBtn{
    border-radius: 10px !important;
    color: #ffffff !important;
    background-color: rgba(0,0,0,0) !important;
    border: 1px solid #fff !important;
}
.clearAllBtn:hover{
    background-color: #ffffff;
    color: #000000;
    border: 1px #000000;
}



/*** MAP TOGGLE ***/
/* toggle map off on load for desktop */
.custom-map-block{
    display: none;
}
#switch-text{
    padding-right:10px
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0);
  border: 1px solid #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 10px;
}
.toggle-slider:hover{
    background-color: #ffffff;
}
.toggle-slider:hover .toggle-off {
    color: #333;
}
input:checked + .toggle-slider {
  background-color: #fff;
}
input:focus + .toggle-slider {
  box-shadow: 0 0 1px #fff;
}
.toggle-on
{
  display: none;
}
.toggle-on, .toggle-off
{
  color: #333;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}
.toggle-off{
    color: #fff;
}
input:checked+ .toggle-slider .toggle-on{
    display: block;
}
input:checked + .toggle-slider .toggle-off{
    display: none;
}



/*** FILTER BUTTONS ***/
/* make buttons centered, wrap, padded*/
.custom-filter-container[class*=custom-filter-view-buttons] .filterDropdown.sqs-block .archive-group-list{
    font-size: inherit;
    display: flex;
    position: relative;
    padding: 0;
    background-color: transparent;
    z-index: 1!important;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
} 

/* change button hover background color*/
.custom-filter-container[class*=custom-filter-view-buttons] .filterDropdown.sqs-block .archive-group-list li a.active, .custom-filter-container[class*=custom-filter-view-buttons] .filterDropdown.sqs-block .archive-group-list li a:hover{
    background-color: #ffffff;
    color: #000000;
}
/* disable tags from being shown, used for internal search engine */
.sqs-block-summary-v2 .summary-block-setting-secondary-metadata-tags .summary-item-has-tags .summary-metadata--secondary{
    display: none;
}
/* disable pointer events for categories */
.sqs-block-summary-v2 .summary-block-setting-primary-metadata-cats .summary-item-has-cats .summary-metadata--primary{
    pointer-events: none;
}



/*** SEARCH BAR ***/
.custom-filter-container .customFiltersWrapper .sqs-block .search-wrap .search-input {
    border-radius: 10px !important;
}
.custom-filter-container .customFiltersWrapper .sqs-block .search-wrap .search-input::placeholder{
    color: #fff;
}
/* make search bar full opacity*/
.sqs-search-ui-button-wrapper .search-input{
opacity: 1;
}



/*** ITEM GRID ***/
/* give margins to summary list*/
@media only screen and (max-width: 600px) {
    .custom-maps-outside-markers-info{margin: 0 15px 0 15px;}
};
@media (min-width: 601px;) {
    .custom-maps-outside-markers-info{margin: 0 10px 0 10px;}
}

/* Item grid padding */
.outside-container.custom-filter-grid{
  	padding-top: 0;
}

/* specify number of columns of info panels by screen size */
@media only screen and (max-width: 600px) {
    .custom-maps-outside-markers-info[data-position=relative] .outside-marker-item {
        width: 100% !important;
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .custom-maps-outside-markers-info[data-position=relative] .outside-marker-item {
        width: 50% !important;
    }
}
@media (min-width: 901px) and (max-width: 1200px) {
    .custom-maps-outside-markers-info[data-position=relative] .outside-marker-item {
        width: 33% !important;
    }
}
@media (min-width: 1201px) {
    .custom-maps-outside-markers-info[data-position=relative] .outside-marker-item {
        width: 25% !important;
    }
}



/** Item stack **/
/* remove styling for activated class, used with the javascript workaround for activated items */
.marker-activated{
    box-shadow: none !important;
}
/* Flip categories and excerpt*/
div .custom-maps-info-wrapper {
    padding: 0 12px !important;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -moz-box-orient: vertical !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    /* additional webkit to ensure compatibility */
    -webkit-box-align: start !important;
    -moz-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;   
}

/* Image */
.info-marker-image {
    -webkit-box-ordinal-group: 1 !important;
    -moz-box-ordinal-group: 1 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important;
  }

/* Title */
.info-marker-title{
    -webkit-box-ordinal-group: 2 !important;
    -moz-box-ordinal-group: 2 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important;
    font-size: 18px;
    color: hsl(0, 0%, 10%) !important;
    letter-spacing: .06em;
    line-height: 1.3em;
    padding-bottom: 5px !important;
    pointer-events: auto !important;
}
.sqs-block-map.info-window-show-image .info-marker-title {
    margin-bottom: 0px !important;
}

/* Categories */
.info-marker-cats::before{
    content: '' !important;
}
.info-marker-cats{
    -webkit-box-ordinal-group: 3 !important;
    -moz-box-ordinal-group: 3 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important;
    color: #B04221 !important;
    font-family: "Raleway";
    opacity: .7;
    margin: 0;
    font-size: 13px;
    line-height: 1.4em;
    text-transform: none;
    letter-spacing: .06em;
}
.sqs-block-map.info-window-show-cats .info-marker-title {
    margin-bottom: 0px !important;
}
/* Description */
.info-marker-descr::before{
    content: '' !important;
}
.info-marker-descr{
    -webkit-box-ordinal-group: 4 !important;
    -moz-box-ordinal-group: 4 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important;
    font-size: 14px;
    color: hsl(0, 0%, 10%);
    letter-spacing: .06em;
    font-weight: 300;
    line-height: 1.4em;
    text-align: left;
}
/* Button */
.info-marker-title>a{
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}
.info-marker-details-button{
    -webkit-box-ordinal-group: 5 !important;
    -moz-box-ordinal-group: 5 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "Font Awesome 5 Pro", "Raleway";
    background: #1988B0 !important;
    border: 0px solid #000000 !important;
    border-radius: 10px;
    padding: 6px 15px;
    margin: 0 0 10px 0;
}



/*** MAP & ITEM POPUPS ***/
/* make map hug intro image */
.sqs-layout .sqs-row .sqs-block:first-child{
    padding-top: 0px !important;
}
/* remove top padding on map */
#block-88881f236085d18df4df{
    padding-top: 0;
}
/* Add style to google maps popups */
.gm-style-iw.gm-style-iw-c{
    background: #f8f8ff;
    border-radius: 10px !important;
}
.gm-style-iw-d{
    width: 100% !important;
    padding: 6px !important;
}
.info-marker-title.title-only{
    display: flex !important;
    justify-content: center !important;
}
.custom-map-block .custom-maps-info-window{
    padding: 0px !important;
}
.custom-map-block .custom-maps-info-window .info-marker-title a{
    font-size: 16px !important;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #333 !important;
    font-family: "Raleway";
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.custom-map-block .custom-maps-info-window .info-marker-title a::after{
    content: 'Details \f0a9';
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "Font Awesome 5 Pro", "Raleway";
    background: #1988B0 !important;
    border: 0px solid #000000 !important;
    border-radius: 10px;
    padding: 6px 15px;
}
button.gm-ui-hover-effect{
    width: 15px !important;
    height: 10px !important;

}
button.gm-ui-hover-effect > img {
    width: 8px;
    height: 14px;
    margin: 1px !important;
}