.filterContainer button.active {
    background-color: black;
    color: #FEDD00;
}


.grid {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    gap: 25px;
}

.grid.active {
    display: flex;
}

.box {
    display: flex;
    width: 350px;
    align-items: center;
    justify-content: space-between;
    border: 1px #d1d1d1 solid;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}

.box.active {
    border-color: black !important;
    background-color: #FEDD00 !important;
    width: 100%;
    order: -2;
}

.box img {
    height: 60px;
    width: 60px;
}

.box p {
    margin: 0;
    font-family: 'SF Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.box button {
    padding: 7px;
    border-radius: 50px;
    border: 1px #8d8d8d solid;
    color: #8d8d8d;
    font-family: 'SF Pro', sans-serif;
    font-size: .75rem;
    font-weight: 400;
}

.box button:hover {
    background-color: transparent;
}

.box button:active {
    background-color: transparent;
    outline: none;
}

.box button:focus {
    background-color: transparent;
    outline: none;
}

.box:not(.active):hover {
    border-color: black !important;
    background-color: #f2e384 !important;
}

.box:hover button {
    color: black;
}


#resultsPanel {
    display: none;
    width: 100%;
    background-color: #ededed;
    border: 2px #d1d1d1 solid;
    /* padding: 20px; */
    margin-bottom: 20px;
    margin-top: -15px;
    border-radius: 5px;
    order: -1;
}

#resultsPanel:not(.hidden) {
    display: block;
}

.locationRow:not(:last-child) {
    border-bottom: 1px #d1d1d1 solid;
}

.locationRow a {
    flex-grow: 1;
}

.locationRow div {
    padding: 5px;
}

.locationRow p {
    color: black;
}

.locationsContainer {
    width: 100%;
    background-color: #ededed;
    border: 2px #d1d1d1 solid;
    /* padding: 20px; */
    margin-bottom: 20px;
    margin-top: -15px;
    border-radius: 5px;
}

.locationsContainer a {
    color: black;
}

.locationRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 10px;
    margin-top: 10px; */
}

.locationRow:hover {
    background-color: #f2e384;
}

.locationRow div {
    display: flex;
    align-items: center;
}

.locationRow div img {
    height: 60px;
    width: 60px;
    margin-right: 5px;
    padding: 5pxl
}

.locationRow div p {
    margin-bottom: 0;
    margin-left: 40px;
    font-family: 'SF Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    flex-grow: 1;
}

.no-results {
    padding: 20px;
    font-style: italic;
}

.locationRow div i {
    padding-right: 10px;
}

.locationRow button {
    color: black;
    border: none;
    background-color: transparent;
    outline: none;
}

.locationRow i {
    font-size: 30px;
}

.filterContainer {
    background-color: #ededed;
    padding: 10px;
    border-radius: 50px;
    margin-bottom: 35px;
    max-width: 935px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.filterContainer button {
    border-radius: 50px;
    color: black;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background-color: white;
    padding-left: 35px;
    padding-right: 35px;
    outline: none;
    width: 250px;
}

.locationSearchbarContainer {
    width: 400px !important;
    border-radius: 50px !important;
    border: none !important;
    background-color: white;
    display: flex;
    padding-left: 20px;
    align-items: center;
    color: #8d8d8d;
}

.locationSearchbarContainer input {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    color: #8d8d8d;
}

.locationDisplay {
    display: flex;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
}

.locationDisplay .mainInfo {
    background-color: #ededed;
    width: 30%;
    border-radius: 8px;
    margin-right: 5px;
    padding: 30px 20px;
}

.locationDisplay .mainInfo img {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.locationDisplay .mainInfo h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.locationDisplay .mainInfo button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    color: black;
    font-weight: 600;
    background-color: #FEDD00;
    border: none;
    outline: none;
    border-radius: 50px;
}

.locationDisplay .mainInfo h6 {
    font-weight: 400;
    margin-bottom: 5px;
}

.locationDisplay .mainInfo p {
    font-weight: 600;
}

.locationDisplay .tabbedInfo {
    background-color: #ededed;
    width: 70%;
    border-radius: 8px;
    margin-left: 5px;
}

.locationDisplay .tabbedInfo .tabs {
    padding: 12px 20px;
    padding-bottom: 5px;
    border-bottom: 2px #a6a6a6 solid;
}

.locationDisplay .tabbedInfo .tabs .tab {
    border: none;
    outline: none;
    background-color: transparent;
    color: black;
    font-weight: 500;
}

.locationDisplay .tabbedInfo .tabbedSection {
    padding: 40px;
}

.faqContainer {
    margin-bottom: 35px;
}

.faqContainer h4 {
    cursor: pointer;
}

.faqContainer p {
    transition: all 1s ease 0s;
    overflow: hidden;
}

.faqContainer i {
    margin-right: 15px;
    font-style: 25px;
}

.repRow {
    display: flex;
    margin: 15px;
}

.repRow img {
    width: 75px;
    height: 75px;
}

.repRow div {
    padding: 0px 20px;
}

.repRow div h5 {
    font-family: "SF Pro", sans-serif;
    font-size: 1.3333333rem;
    font-weight: 700;
}

.repRow div p {
    font-family: "SF Pro", sans-serif;
    font-size: 1.16rem;
}

.repRow a {
    align-self: center;
    color: black;
    outline: none;
    background-color: transparent;
    border: none;
}

.repRow a button {
    color: black;
    outline: none;
    background-color: #FEDD00;
    border: none;
    border-radius: 50px;
    padding: 7px 30px;
    font-family: "SF Pro", sans-serif;
    font-weight: 500;
}

@media(max-width: 1015px) {
    .locationDisplay {
        flex-wrap: wrap;
    }

    .locationDisplay .mainInfo {
        width: 350px;
        margin-bottom: 15px;
    }

    .locationDisplay .tabbedInfo {
        width: 100%;
        margin-left: 0px;
    }
}

@media(max-width: 800px) {
    .repRow {
        flex-wrap: wrap;
        margin: 50px 0px;
    }

    .repRow div {
        padding: 0px;
    }
}

@media(max-width: 620px) {
    .filterContainer {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 8px;
        width: 350px;
    }

    .filterContainer button {
        margin: 10px;
    }

    .locationSearchbarContainer {
        width: 250px !important;
        margin: 10px;
    }
}

@font-face {
    font-family: 'SF Pro';
    src: url('/wp-content/uploads/2023/10/SF-Pro-Display-Regular.woff') format('woff');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro';
    src: url('/wp-content/uploads/2023/10/SF-Pro-Display-Ultralight.woff') format('woff');
    font-style: normal;
    font-weight: 100;
}

@font-face {
    font-family: 'SF Pro';
    src: url('/wp-content/uploads/2023/10/SF-Pro-Display-Thin.woff') format('woff');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'SF Pro';
    src: url('/wp-content/uploads/2023/10/SF-Pro-Display-Semibold.woff') format('woff');
    font-style: normal;
    font-weight: 600;
}