:root {
    --color-black: rgb(0,0,0);
    --color-red: rgb(235,28,46);
    --color-dark-grey: rgb(20,20,20);
    --color-grey: rgb(100,100,100);
}

#account-block {
    margin-bottom: 1rem;
}
#account-block a {
    color: var(--color-black);
    text-decoration: none;
}
#account-block a:hover {
    color: var(--color-red);
}

.attribution {
    padding: .25rem 0 .5rem;
    background-color: var(--color-black);
    color: var(--color-grey);
}

body {
    margin-top: 0;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

#banner {
    background-image: url('/images/background.webp');
    background-repeat: repeat-y;
}
#banner img.logo-image {
    max-height: 120px;
}

.content-block {
    text-align: left;
}

#footer {
    background: rgba(22, 22, 22, 0.8);
    color: #ddd;
}
.footer-outer-content {
    background: url('/images/footer-h.webp') no-repeat center center;
    background-size: auto 100%;
}
@media screen and (min-width: 992px) {
    .footer-outer-content {
        background: url('/images/footer-h.webp') no-repeat left center;
        background-size: auto 130%;
    }
}
.footer-title {
    font-family: 'Roboto', sans-serif;
}
.footer .title-one {
    line-height: 1.2;
    font-size: 4rem;
}
.footer .title-two {
    font-size: 2rem;
    line-height: 1.2;
}
@media screen and (min-width: 992px) {
    
}
.footer-section {
    margin-top: 1rem;
}
.footer-section a,
.sub-footer a {
    color: #ddd;
    text-decoration: none;
}
.footer-section a:hover,
.sub-footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-section {
    padding-top: 1rem;
}

@media (min-width: 992px) {
    .hide-small {
        display: none;
    }
}
@media (min-width: 1200px) {
    .hide-small {
        display: inline-block;
    }
}

.hours-wrapper {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    font-size: .8rem;
    margin: 2rem 0;
}
.hours-wrapper .flex-row {
    display: flex;
    justify-content: space-around;
}
.hours-wrapper .today {
    background: #dedede;
}
.hours-wrapper .flex-cell {
    flex: 1;
    text-align: center;
}

@media (min-width: 992px) {
    #login-form {
        margin: 4rem 0;
    }
}

#main-content {
    padding: 1rem .25rem;
    background: white;
    min-height: 10rem;
}

@media (min-width: 992px) {
    #main-menu {
        max-width: 991.98px;
    }
}
@media (min-width: 1200px) {
    #main-menu {
        max-width: 1199.98px;
    }
}

.map-wrap {
    text-align: center;
}
.map-block {
    width: 100%;
    height: 450px;
}

@media (min-width: 992px) {
    .navbar-brand {
        display: none;
    }
}

#search-block, #store-locator-block {
    margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
    #search-block, #store-locator-block {
        margin-top: .5rem;
    }
}

#search-button {
    background-color: var(--color-black);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px; /* Adds space between input and button */
}
#search-button:hover {
    background-color: var(--color-red);
}
.search-container {
    display: flex; /* Aligns input and button horizontally */
    align-items: center; /* Vertically centers items */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    max-width: 300px; /* Adjust as needed */
    margin: 20px auto; /* Centers the search box */
}
#search-input {
    flex-grow: 1; /* Allows the input to take up available space */
    border: none;
    padding: 8px;
    font-size: 16px;
    outline: none; /* Removes default focus outline */
}

.store-locator-block {
    padding-bottom: .5rem;
    text-align: center;
    font-weight: bold;
}
.store-locator-block a {
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    /*font-variant: small-caps;*/
}
.store-locator-block a:hover {
    color: var(--color-red);
}

#sub-footer {
    padding-top: 1rem;
    font-size: .8rem;
    background: var(--color-dark-grey);
    color: #ddd;
}
.sub-footer a {
    text-transform: uppercase;
}