

#hero-header, #access-hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 30px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0% 50%, rgba(79, 79, 79, 1) 95%);
}

@media (max-width: 900px) {
    #hero-header {
        padding: 5px;
        height: auto;
        justify-content: flex-end;
    }

    #access-hero-header {
        padding: 5px;
        align-items: baseline;
        height: auto;
    }
}

.hero-header-item {
    height: 30px;
}

#hero-header-logo {
    position: fixed;
    top: 10px;
    left: 10px;
    height: 100px;
}

#navigation, #access-navigation {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin: 0;
    padding: 0;
    margin-left: 200px;
    list-style: none;
}

@media (max-width: 900px) {
    #navigation {
        max-width: 100%;
        gap: 5px;
        margin: 0;
        display: none;
    }

    #access-navigation {
        gap: 2px;
        margin-left: 70px;
        flex-wrap: wrap;
    }
}

#stores {
    margin-right: 200px;
}

@media (max-width: 900px) {
    #stores {
        display: none;
    }
}

.nav-button, .mobile-nav-button, .access-nav-button {
    border-radius: 15px;
    padding: 0px 20px 0px 20px;
    text-align: center;
    background: none;
    color: var(--text-color);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    /*background: linear-gradient(44deg, blue 0 50%, rgb(207, 207, 255) 52% 53%, blue 55%) padding-box;
    background-size: 400% 400%;*/
    border: 2px solid transparent;
    margin: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .nav-button, .access-nav-button {
        font-size: 14px;
        padding: 0px 10px 0px 10px;
    }
}

.mobile-nav-menu-button {
    display: none;
    font-size: 28px;
    padding: 2px;
    height: 30px;
    margin-right: 50px;
}

.mobile-nav-menu {
    position: absolute;
    right: 20px;
    top: 30px;
    display: none;
    color: var(--text-color);
    background: linear-gradient(var(--fg-color) 0% 90%, transparent 98%);
    padding: 15px;
    border-radius: 5px;
}

.mobile-nav-menu a {
    color: var(--text-color);
}

.mobile-nav-button {
    width: 100%;
    background: none;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 5px;
    border-radius: 0;
    display: block;
    height: auto;
    padding: 5px;
    border-radius: 0;
}

.mobile-nav-button:last-child {
    border-bottom: 0;
}

.mobile_store_locator {
    border-bottom: 0;
}

#mobile-navigation {
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    list-style-type: none;
}

.buy-now-button {
    font-size: 3rem;
    background-color: var(--link-color);
    border: 2px solid var(--text-color);
    width: min(500px, auto);
}

@media(max-width: 900px) {
    .nav-button {
        display: none;
    }

    .mobile-nav-menu-button {
        display: block;
    }

    .buy-now-button {
        display: block;
        font-size: 2rem;
    }
}

.nav-button:hover, .site-button:hover, .access-nav-button:hover {
    background: linear-gradient(44deg, rgb(255, 0, 0) 0 50%, rgb(255, 199, 199) 52% 53%, rgb(255, 0, 0) 55%);
    background-size: 250% 250%;
    border: 2px solid white;

    -webkit-animation: button-anim 0.5s linear 1;
    -moz-animation: button-anim 0.5s linear 1;
    animation: button-anim 0.5s linear 1;
}

@-webkit-keyframes button-anim {
    0%{background-position:0% 50%}
    1%{background-position:0% 50%}
    50%{background-position:50% 50%}
    100%{background-position:100% 50%}
}
@-moz-keyframes button-anim {
    0%{background-position:0% 50%}
    1%{background-position:0% 50%}
    50%{background-position:50% 50%}
    100%{background-position:100% 50%}
}
@keyframes button-anim {
    0%{background-position:0% 50%}
    1%{background-position:0% 50%}
    50%{background-position:50% 50%}
    100%{background-position:100% 50%}
}

#hero-header-messages {
    background-color: green;
    color: var(--text-color);
    width: 100%;
    position: absolute;
    bottom: -20px;
    height: 20px;
    left: 0;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
}

.nav-button a {
    color: var(--text-color);
}