main {
    margin: 0;
}

footer{
    margin-block-start: 0;
}

/* HERO */

div.hero {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--wp--preset--color--thrifty-main);
}

div.hero {
    display: flex;
    height: 50vh;
    min-height: 430px;
}

div.hero-tag-container {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

div.hero-tag-spacer {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
}

div.hero-tag-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 130px;
    color: white;
}

.hero-tag {
    font-size: 4rem;
}

.hero-desc {
    font-family: 'Avenir';
    font-size: 1.3rem;
}

img.faq-logo {
    width: 60%;
}

div.hero-header-stack {
    display: flex;
    flex-direction: row;
}

@media (max-width: 600px) {
    .hero-desc {
        font-size: 1.2rem;
    }

    .hero-tag {
        font-size: 3rem
    }

    div.hero-tag-left {
        padding-top: 70px;
    }

    div.hero-header-stack {
        flex-direction: column;
    }
}

/* Explore our Locations */

div.explore-locations {
    /* margin-top: 100px; */
    padding-top: 50px;
    text-align: center;
    background-color: #F8F1E9;
}

p.subtext {
    margin-top: 40px;
    font-family: 'Avenir';
    font-size: 1.2rem;
}

div.filter-control-container {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    padding: 0 100px;
}

input.filter-text-field {
    font-size: 1rem;
    border-radius: 999px;
    border: 1px solid #D5D5D5;
    padding: 15px 25px;
    width: 100%;
    font-family: 'Avenir';
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    div.filter-control-container {
        flex-direction: column;
        padding: 0;
    }
}

/* Panes */

div.pane-no-results{
    display: none;
    font-family: 'Avenir';
    margin-top: 50px;
    height: 80vh;
    flex-direction: row;
    justify-content: center;
    font-size: 1rem;
}

div.pane-no-results.visible{
    display: flex;
}

div.pane-container{
    display: flex;
    flex-direction: row;
    padding-bottom: 100px;
    gap: 20px
}

div.pane-container.invisible{
    display: none;
}

div.left-pane{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    width: 50%;
    gap: 15px;
}

div.right-pane{
    margin-top: 50px;
    width: 50%;
}

@media (min-width: 900px) {
    div.pane-container{
        min-height: 820px;
    }
}

@media (max-width: 900px) {
    div.left-pane{
        width: 100%;
    }

    div.right-pane:not(.modal-visible){
        display: none;
    }

    div.right-pane.modal-visible {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: black;
        left: 0;
        top: 0;
        margin-top: 0;
        padding: 20px;
        z-index: 100;
        box-sizing: border-box;
    }

    div.location-detail-block-scroll-block{
        display: block;
        width: 100vw;
        height: 100vh;
        background-color: #ff0000aa;
    }
}

/* Locations Card */

div.location-card {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.08s;
}

div.location-card.hide-card{
    display: none;
}

a.card-book-now{
    color: #AB206C;
}

a.card-book-now:focus{
    outline: none;
}

div.title-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

div.title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

div.address-row,
div.phone-row {
    display: flex;
    gap: 10px;
    font-family: 'Avenir';
    align-items: center;
    font-size: 1.1rem;
    margin-top: 25px;
    text-align: left;
}

a.view-more-link:focus{
    outline: none;
}

div.view-more-responsive {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 15px 10px 20px;
    background-color: var(--wp--preset--color--thrifty-main);
    color: white;
    font-size: 0.9rem;
    border-top-left-radius: 30px;
    font-weight: 200;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    visibility: hidden;
}

img.arrow-right{
    width: 12px;
}

@media (max-width: 900px){
    div.location-card.selected:active{
        -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); 
        box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
    }

    div.view-more-responsive {
        visibility: visible;
    }
}

@media (min-width: 900px) {
    div.location-card.selected{
        -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); 
        box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
        outline: 2px solid #007AC3;
    }
}

/* Locations Modal */

div.location-detail-modal{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); 
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
}

@media (min-width: 900px) {
    div.location-detail-modal{
        position: sticky;
        top: 20px;
    }
}

div.header-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 19px 30px;
    color: white;
    background-color: var(--wp--preset--color--thrifty-main);
}

img.modal-close-ico{
    height: 20px;
}

@media (min-width: 900px){
    img.modal-close-ico{
        display: none;
    }
}

div.modal-content{
    display: flex;
    flex-direction: column;
    padding: 30px;
}

div.row-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--wp--preset--color--thrifty-main);
    gap: 10px;
    font-size: 1.3rem;
}

div.row-title > img{
    width: 25px;
}

div.row-content{
    margin-top: 15px;
    margin-bottom: 25px;
    margin-left: 35px;
    font-family: 'Avenir';
    font-size: 1rem;
    text-align: left;
}

div.location-content-row{
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
}

a#modal-location-link{
    display: flex;
    background-color: #EDEDED;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

img.modal-navigation-ico{
    width: 20px;
}

div.hour-row{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

div.hour-row > span{
    width: 50%;
}

a#modal-contact-number{
    color: var(--wp--preset--color--thrifty-main);
}

a.modal-book-now{
    margin-top: 30px;
    margin-bottom: 10px;
    background-color: #AB206C;
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
}