* {
    margin: 0;
    padding: 0;
    /* font-family: "Nunito", sans-serif; */
    font-family: "Playfair Display", serif;
}

.text {
    font-size: 16px;
    font-weight: 700;
    align-content: center;
}

header {
    min-height: 10vh;
    width: 100%;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    border-bottom: 2mm solid rgba(0, 0, 0, 1);
    padding-top: 1mm;
}

header h3 {
    font-size: 6vh;
    padding-left: 8px;
}

.store-logo-header {
    height: 6vh;
    width: 3vw;
    filter: grayscale(100%);
    text-indent: 2px;
    padding-left: 15px;
}

.nav-links-panel {
    flex: 1;
    text-align: left;
    border-bottom: 2mm solid rgba(0, 0, 0, 1);
}

.nav-links-panel h3 {
    padding-left: 12px;
    position: relative;
}

.nav-links-panel ul li {
    list-style: none;
    display: inline-block;
    padding: 3px 12px;
    position: relative;
}

.nav-links-panel ul li a {
    color: black;
    text-decoration: none;
}

.search-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    padding: 3px 10px 3px;
    border-bottom: 2mm solid rgba(0, 0, 0, 1);
}

.search-container a {
    text-align: left;
    text-decoration: none;
    color: inherit;
}

.search-within-panel {
    display: flex;
    text-align: right;
    align-items: center;
}

.search-within-panel span {
    padding-right: 10px;
}

form {
    flex: 1;
    text-align: right;
    border: 1px solid grey;
    padding: 1px;
}

input {
    min-width: 500px;
    flex-grow: 2;
    border: none;
}

input:focus {
    outline: none;
}

.locator-button {
    background-color: transparent;
    color: black;
    border: 0.5mm solid rgba(0, 0, 0, 1);
    transition: background-color 0.5s;
}

.locator-button:hover {
    background-color: black;
    color: white;
    border: 0.5mm solid rgba(0, 0, 0, 1);
}

.home-container {
    min-height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../assets/site-background.png");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-page-panel {
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    color: white;
    font-weight: 500;
    background-color: rgba(26, 23, 23, 0.7);
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-page-panel h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.home-page-panel button {
    position: relative;
    padding: 10px 60px;
    background-color: transparent;
    color: white;
    border: 0.5mm solid rgba(255, 255, 255, 0.91);
    transition: background-color 0.5s;
}

.home-page-panel button:hover {
    position: relative;
    padding: 10px 60px;
    background-color: black;
    color: white;
    border: 0.5mm solid rgba(0, 0, 0, 1);
}

.hide {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.store-locator-panel {
    min-height: 80vh;
    max-height: 80vh;
    width: 100%;
    display: flex;
    background-color: white;
}

.locator-results-panel {
    width: 30%;
    display: block;
    align-items: center;
    background-color: white;
    overflow: scroll;
}

.error-message-panel {
    padding: 10px 2px;
    text-align: center;
}

.store-results-panel {
    display: block;
    position: relative;
    text-align: left;
}

.store-results-panel div {
    color: black;
    padding: 10px 2px;
    box-shadow: -1px 1px 5px 1px lightgray;
}

.store-results-panel ul li {
    list-style: none;
    display: block;
    position: relative;
    text-decoration: none;
}

.store__panel {
    color: black;
    transition: all 0.5s;
}

.store__panel:hover {
    background-color: rgba(0, 0, 0, 1);
    color: white;
    cursor: pointer;
}

#map {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.store__modal {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: 0.5s;
    overflow: auto;
    transition: all 0.3s linear;
}

.store__info {
    background-color: white;
    margin: auto;
    border-radius: 4px;
    max-width: 700px;
    min-height: 700px;
}

.image_button {
    padding: 10px 60px;
    background-color: white;
    color: black;
    transition: transform 0.5s;
    border: 0.5mm solid rgba(0, 0, 0, 1);
}

.image_button:hover {
    background-color: black;
    color: white;
    cursor: pointer;
    border: 0.5mm solid rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}

.close_modal img {
    color: lightgray;
    padding: 2px;
    float: right;
    width: 20px;
}

.close_modal img:hover,
.close_modal img:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.is-blurred {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

footer {
    min-height: 5vh;
    width: 100%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2mm solid rgba(0, 0, 0, 1);
}

.nav-ctl {
    display: none;
}
