html, body {
    height: 100%;
    margin:0;
}

.page-display {
    /*font-size: 64px;
    font-size: 7vw;
    display: flex;*/
    margin:20px;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: 'Spartan', sans-serif;
}

.day-fc {
/*     border-bottom:1px solid #eee; */
    padding:20px;
    box-shadow: 0px 0px 1px 0px;
    margin: 10px;
}

.hour-fc {
    width: 15%;
    height: 80px;
    float: left;
    display: inline-block;
    padding: 10px;
    margin: 10px;
    box-shadow: 0px 0px 1px 0px;
}

.hour-fc span {
    float:left;
    width: 100%;
}

.div-sections {
    margin:20px;
    float:left;
    width:100%;
}

.location-search-txt {
    padding: 10px;
    border-radius: 3px;
    font-size: 1.2em;
}

.location-search-btn {
    padding: 10px;
    font-size: 1.2em;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    border: 1px solid transparent;
    border-radius: 5px;
}

.zip-entries {
    border:1px solid #eee;
    width:400px;
    padding:10px;
    height:400px;
    overflow-y: scroll;
}

.zip-entry {
    padding-top:5px;
    padding-bottom:5px;
    padding-left:5px;
    width:calc(100% - 20px);
}

.zip-entry:hover {
    background:#ddd;
    cursor:pointer;
}

@media (max-width: 600px) {
    .hour-fc {
        width: 90%;
        height: 80px;
        float: left;
    }
}