@charset "UTF-8";

/* Generic */
.sb_text_right {
    text-align: right;
    float: right;
}

.block {
    display: block;
}

.float_left {
    float: left;
}

.float_left_text {
    display: inline-block;
    transform: translateY(-4px);
}

.flexBreak {
    flex-basis: 100%;
    height: 0;
}

/* SM Banner */
#smCategoryBanner {
    background-color: #e5f4e5;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    clear: both;
}

#smCategoryViews {
    margin-right: auto;
}

#smCategoryBannerCenter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#smCategoryBannerRight {
    margin-left: auto;
}

/* Spot */
#containerHeader {
    display: flex;
    /* establish flex container */
    flex-direction: column;
    /* make main axis vertical */
    justify-content: center;
    /* center items vertically, in this case */
    align-items: center;
    /* center items horizontally, in this case */
    width: 100%;
}

.containerCategories {
    display: flex;
    /* establish flex container */
    flex-wrap: wrap;
    flex-direction: row;
    /* make main axis vertical */
    justify-content: center;
    /* center items vertically, in this case */
    align-items: center;
    /* center items horizontally, in this case */
    width: 100%;
}

.smTopRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 12px;
    margin-bottom: 6px;
}

.smFeedbackLink {
    display: inline-block;
    font-size: 14px;
    color: #004000;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dashed #004000;
}

.smFeedbackLink:hover,
.smFeedbackLink:focus-visible {
    color: #2f9c21;
}

.categoryPillWrapper {
    width: 100%;
}

.filterToggleContent {
    width: 100%;
}

.filterDateWrapper {
    width: 100%;
    margin: 12px 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #004000;
}

.filterDateLabel {
    white-space: nowrap;
}

.link-btn {
    background: none;
    border: none;
    color: #2f9c21;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    padding: 0;
}

.link-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.dateRangeInput {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #c6c6c6;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

.flatpickr-calendar {
    font-family: inherit;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid #c6c6c6;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
    background: #2f9c21;
    border-color: #2f9c21;
    color: #fff;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    outline: none;
    border-color: #2f9c21;
}

@media (min-width: 769px) {
    .filterDateWrapper {
        margin: 8px 0 18px;
    }
    .dateRangeInput {
        width: auto;
        min-width: 220px;
        max-width: 320px;
    }
}

.categoryToggleWrapper {
    display: none;
    width: auto;
    text-align: right;
    margin: 0;
}

.categoryToggleButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #2f9c21;
    padding: 10px 14px;
    border-radius: 30px;
    background-color: #fff;
    color: #2f9c21;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.categoryToggleButton:focus-visible {
    outline: 3px solid #7fd47f;
    outline-offset: 2px;
}

.categoryToggleIcon {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    color: currentColor;
}

.categoryToggleIcon::before,
.categoryToggleIcon::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    background-color: currentColor;
    transition: transform 0.2s ease;
}

.categoryToggleIcon::before {
    top: 0;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 60% 50%, 60% 100%, 40% 100%, 40% 50%);
}

.categoryToggleIcon::after {
    top: 6px;
    left: 50%;
    width: 2px;
    height: 8px;
    transform: translateX(-50%);
}

.categoryToggleButton[aria-expanded="true"] {
    background-color: #2f9c21;
    color: #fff;
}

.categoryToggleText {
    font-size: 14px;
}

.spotDiv {
    display: flex;
    /* establish flex container */
    flex-wrap: wrap;
    flex-direction: row;
    /* make main axis vertical */
    justify-content: center;
    /* center items vertically, in this case */
    align-items: center;
    /* center items horizontally, in this case */
    width: 100%;
    margin: auto;
}

#spotCount {
    background: #e5f4e5;
    text-align: center;
    font-size: 14px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
}

#containerFlagged {
    display: flex;
    /* establish flex container */
    flex-wrap: wrap;
    flex-direction: row;
    /* make main axis vertical */
    justify-content: center;
    /* center items vertically, in this case */
    align-items: center;
    /* center items horizontally, in this case */
    width: 100%;
}

.contentBox {
    margin: 2px;
    text-align: center;
}

.spotBox {
    flex-basis: 0;
    flex-grow: 1;
    margin: 2px;
    text-align: left;
    align-self: flex-start;
    max-width: 176px;
    min-width: 176px;
    width: 176px;
    overflow-x: hidden;
}

.sm_no_shadowbox {
    margin: 6px;
}

.spotboxImgNoShadow {
    width: 176px;
    height: 176px;
    object-fit: cover;
}

.sm_shadowbox {
    padding: 6px;
    box-shadow: -2px 7px 10px -3px rgba(0, 0, 0, 0.43);
    -webkit-box-shadow: -2px 7px 10px -3px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: -2px 7px 10px -3px rgba(0, 0, 0, 0.43);
    margin: 6px 6px 12px 6px;
}

.spotboxImgShadow {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.sm_clickDiv {
    cursor: pointer;
}

.sb_like {
    cursor: pointer;
}

.sb_like img {
    width: 26px;
    height: auto;
}


#prodInfo .sb_like img {
    width: 20px;
    height: auto;
}
.sb_text_right {
    text-align: right;
    float: right;
}

.sm_shoppinglist b, .sm_shoppinglist {
    color: black !important;
    font-weight: 400 !important;
}

.littlelike {
    /*color:#2f9c21 !important;*/
    color: #999999 !important;
    font-size: 9px;
    font-weight: bold;
}

.btnShareRemove {
    background-color: red;
    color: white;
    border-radius: 12px;
}

.btnShareAdd {
    background-color: green;
    color: white;
    border-radius: 12px;
}

#btnMarketGPS {
    display: block;
    margin: 10px auto 5px;
    text-align: center;
}

.rwd-span {
    display: block;
    height: 15px;
}

@media (max-width: 768px) {
    .categoryToggleWrapper {
        display: block;
    }

    .filterToggleContent {
        display: none;
    }

    .filterToggleContent.is-open {
        display: block;
    }
}

@media only screen and (min-width: 591px) {
    .spotDiv {
        width: 180px;
    }

    #smCategoryBanner, #spotCount {
        width: 180px;
    }
}

@media only screen and (min-width: 771px) {
    .spotDiv {
        width: 360px;
    }

    #smCategoryBanner, #spotCount {
        width: 360px;
    }
}

@media only screen and (min-width: 951px) {
    .spotDiv {
        width: 540px;
    }

    #smCategoryBanner, #spotCount {
        width: 540px;
    }
}

@media only screen and (min-width: 1131px) {
    .spotDiv {
        width: 720px;
    }

    #smCategoryBanner, #spotCount {
        width: 720px;
    }
}

@media only screen and (min-width: 1311px) {
    .spotDiv {
        width: 900px;
    }

    #smCategoryBanner, #spotCount {
        width: 900px;
    }

    .rwd-break {
        display: none;
    }

    .rwd-span {
        display: inline;
    }
}

.mstbtn {
    border: 1px solid #cccccc !important;
    cursor: pointer;
    border-radius: 12px;
    padding: 4px 6px 4px 6px;
}

.mstbtn-selected {
    background-color: #418547;
    color: white;
}

#searchFilter, .select-dropdown select {
    background-color: rgb(234, 234, 234);
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    max-width: 100%;
    padding: 4px 14px 4px 5px;
    /*border: none;*/
    border-radius: 4px;
    border: 1px solid #dddddd;
    /*background-color: transparent;*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-dropdown select:active, .select-dropdown select:focus {
    outline: none;
    box-shadow: none;
}

.select-dropdown:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-top: 5px solid #aaa;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

/* ShareMarket Listing */
#sm_userlikes {
    font-size: 0.8em;
    font-style: italic;
    color: red;
    font-weight: bold;
    clear: both;
}

.sm_listing {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.sm_sharedfromtext {
    font-size: 12px;
}

.sm_shoppinglist b, .sm_shoppinglist {
    color: black !important;
    font-weight: 400 !important;
}

.sm_desc {
    color: #666;
}

.sm_sharedname {
    font-size: 12px;
}

.sm_sharedname b {
    font-size: 12px;
    font-weight: 400 !important;
}

.sm_sname {
    font-size: 11px;
    color: #666;
}

.sm_company {
    font-size: 11px;
    color: #666;
}

.sm_address {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
}

.sm_phone {
    font-size: 11px;
    color: #666;
}

.sm_email {
    font-size: 11px;
    color: #666;
}

.sm_gpsdistance {
    text-transform: uppercase;
    font-size: 11px;
    color: #666;
}

.sm_comments {
    font-size: 11px;
    color: #666;
}

.sm_desc {
    font-size: 11px;
    color: #666;
}

.sm_igaccounts {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.view-more {
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

.view-more:hover {
    text-decoration: underline;
}

.sm_layout {
    margin-left: 8px;
    display: inline-block;
    margin-right: 8px;
}

.view-more, .sm_listing, .sm_desc, .sm_sharedname, .sm_igaccounts, .sm_sharedfromtext, .sm_shoppinglist, .sm_gpsdistance {
    margin-left: 8px;
    display: inline-block;
    margin-right: 8px;
}

.toggledSection {
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #666;
    border-radius: 3px;
    cursor: pointer;
}

/* SM Map */
#smMap {
    height: 95%;
    width: 95%;
    border-style: solid;
    border-color: #009500;
    border-top: none;
    margin: auto;
}
