.beer-finder > h2 {
    font-family: var(--wp--preset--font-family--neue-helvetica-condensed);
    text-transform: none;
    font-size: 2rem;
}

.single-beer .beer-finder > h2 {
    color: var(--dark-brand-color);
}

.beer-finder .tab-links {
    justify-content: center;
    gap: 20px;
    padding-bottom: 75px;
}

.beer-finder .tab-links .wp-block-button a {
    display: block;
    border-color: var(--dark-brand-color);
    background-color: var(--dark-brand-color);
    font-family: var(--wp--preset--font-family--franchise);
    font-size: var(--wp--preset--font-size--x-large);
    text-transform: uppercase;
    padding-top: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
}

.beer-finder .tab-links .wp-block-button.is-style-outline a {
    background: none;
    color: #32373c;
}

.single-beer .beer-finder .tab-links .wp-block-button.is-style-outline a {
    color: var(--dark-brand-color);
}

.beer-finder .input-wrap {
    display: flex;
    gap: 30px 50px;
    justify-content: center;
}

.beer-finder .input-wrap .column.zip {
    max-width: 160px;
}

.beer-finder .input-wrap .column .label {
    padding-bottom: 10px;
}

.beer-finder .input-wrap .column .within {
    display: flex;
    padding-top: 5px;
    gap: 10px;
    align-items: center;
}

.beer-finder .input-wrap .column .within .select-wrap {
    margin-left: auto;
}

.beer-finder .input-wrap .column .within .select-wrap:after {
    right: 5px;
}

.beer-finder .input-wrap .column .within select {
    border: none !important;
    line-height: normal !important;
    padding-left: 5px !important;
    padding-right: 30px !important;
}

.beer-finder .input-wrap .column .store-type {
    display: flex;
    gap: 20px;
}

.beer-finder .input-wrap .column .store-type .select-option {
    cursor: pointer;
    max-width: 80px;
    text-align: center;
}

.beer-finder .input-wrap .column .store-type .select-option p {
    font-size: .875rem;
    padding-top: 5px;
}

.beer-finder .input-wrap .column .store-type .select-option .image-bg {
    width: 80px;
    height: 62px;
    background-color: #DEDEDE;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-finder .input-wrap .column .store-type .select-option:hover .image-bg, .beer-finder .input-wrap .column .store-type .select-option.active .image-bg {
    background-color: var(--dark-brand-color);
}

.beer-finder .input-wrap .column .store-type .select-option .image-bg:after {
    content: "";
    display: block;
    background-color: var(--wp--preset--color--fbc-charcoal);
    background-position: center;
}

.beer-finder .input-wrap .column .store-type .select-option.anywhere .image-bg:after {
    -webkit-mask-image: url('./icons/beer-finder-all.svg');
    mask-image: url('./icons/beer-finder-all.svg');
    width: 30px;
    height: 43px;
    background-size: 30px 43px;
}

.beer-finder .input-wrap .column .store-type .select-option:hover .image-bg:after, .beer-finder .input-wrap .column .store-type .select-option.active .image-bg:after {
    background-color: #FFFFFF;
}

.single-beer .beer-finder .input-wrap .column .store-type .select-option:hover .image-bg:after, .single-beer .beer-finder .input-wrap .column .store-type .select-option.active .image-bg:after {
    background-color: var(--light-brand-color);
}

.beer-finder .input-wrap .column .store-type .select-option.restaurants .image-bg:after {
    -webkit-mask-image: url('./icons/beer-finder-restaurants.svg');
    mask-image: url('./icons/beer-finder-restaurants.svg');
    width: 39px;
    height: 41px;
    background-size: 39px 41px;
}

.beer-finder .input-wrap .column .store-type .select-option.stores .image-bg:after {
    -webkit-mask-image: url('./icons/beer-finder-stores.svg');
    mask-image: url('./icons/beer-finder-stores.svg');
    width: 48px;
    height: 33px;
    background-size: 48px 33px;
}


.beer-finder .submit-wrap {
    text-align: center;
    padding-top: 20px;
}

#beer-finder-results > p {
    padding-top: 60px;
    text-align: center;
}

.beer-finder-map {
    display:flex;
    padding-top: 60px;
}

.beer-finder-map.none {
    min-height: 700px;
}

.beer-finder-map .locations-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 345px;
    width: 30vw;
    max-height: 700px;
    overflow: scroll;
}

.beer-finder-map .locations-list p.total {
    color: #FFFFFF;
    background-color: var(--dark-brand-color);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 25px;
}

.beer-finder-map .locations-list .location {
    background-color: #EAEAEA;
    padding: 25px;
}

.beer-finder-map #map {
    flex: 1 0 auto;
}

.beer-finder-none {
    text-align: center;
    padding-top: 60px;
}

.wp-block-group .fbc-mikmak select {
    width: auto;
    line-height: initial;
    height: 31px;
    width: 92px;
    margin-right: 8px;
    padding: 6px 8px;
    padding-right: 16px;
}

.wp-block-group .fbc-mikmak .mm-lpKFs {
    color: #FFFFFF;
}

.wp-block-group .fbc-mikmak input[type=search] {
    padding-left: 40px !important;
}

@media screen and (max-width: 960px) {
    .beer-finder .input-wrap {
        flex-direction: column;
        align-items: center;
    }

    .beer-finder-map {
        flex-direction: column;
    }

    .beer-finder-map .locations-list {
        order: 1;
        width: 100%;
        max-width: none;
    }

    .beer-finder-map #map {
        height: 60vh;
        order: 0;
    }
}