html {
    background-color: #000000;
}
body {
    font-family: "Franklin Gothic Medium", sans-serif; /*Franklin Gothic*/
    font-size: 20px;
    color: #ffffff;
    margin-right: 0;
    margin-left: 0;
}
.page-wrapper {
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 991px) {
    .mobile-hide {
        display: none;
    }
}
.nav {
    z-index: 1000;
    background: #000000;
    position: relative;
}
.nav-menu {
    float: right;
    position: relative;
}
@media screen and (max-width: 991px) {
    .nav[data-collapse="medium"] .nav-menu {
        display: none;
    }
}
.nav-link {
    vertical-align: top;
    color: #222222;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}
.nav-brand {
    float: left;
    color: #333333;
    text-decoration: none;
    position: relative;
}
@media screen and (max-width: 767px) {
    .nav-brand {
        padding-left: 10px;
    }
}
.nav-button {
    float: right;
    cursor: pointer;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-user-select: none;
}
@media screen and (max-width: 991px) {
    .nav-button {
        padding-right: 0;
    }
}
@media screen and (max-width: 991px) {
    .nav[data-collapse="medium"] .nav-button {
        display: block;
    }
}
@media screen and (max-width: 991px) {
    .hamburger {
        flex-direction: column;
        justify-content: space-between;
        height: 12px;
        display: flex;
    }
}
@media screen and (max-width: 991px) {
    .hamburger-line {
        background-color: #ffffff;
        width: 32px;
        height: 2px;
        padding-bottom: 0;
        padding-right: 0;
    }
}
/*////////////////////////////////////////// Hamburger Menu //////////////////////////////////////////*/
:root {
    --bar-width: 60px;
    --bar-height: 8px;
    --hamburger-gap: 6px;
    --hamburger-margin: 50px;
    --foreground: #ffffff;
    --background: #ffffff;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}
.hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: none;
    flex-direction: column;
    gap: var(--hamburger-gap);
    background-color: rgba(0, 0, 0, 0);
    width: max-content;
    height: max-content;
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 80%;
    margin-top: 5%;
    z-index: 2;
}
@media screen and (max-width: 991px) {
    .hamburger-menu {
        display: flex;
    }
}
.hamburger-menu::after,
.hamburger-menu::before,
.hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
    rotate var(--animation-timing), translate var(--animation-timing);
}
.hamburger-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
}
.hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
}
.hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
}
.hamburger-menu input:checked {
    opacity: 0;
    width: 0;
}
.sidebar {
    transition: translate var(--animation-timing);
    translate: 30%;
    padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 1rem);
    max-width: 10rem;
    display: none;
}
.hamburger-menu:has(input:checked) + .sidebar {
    display: flex;
    flex-direction: column;
}
.hamburger-item-links {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 18px;
}
.hamburger-item-links:hover {
    border-bottom: 3px solid #355f9c;
}
/*////////////////////////////////////////// Hamburger Menu //////////////////////////////////////////*/
/*////////////////////////////////////////// Page Top //////////////////////////////////////////*/
.page-top {
    z-index: 9999;
    justify-content: center;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
}
.page-top-grid {
    grid-column-gap: 0;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    display: grid;
}
.page-top-container {
    z-index: 100;
    flex: 1;
    justify-content: space-between;
    max-width: 1510px;
    height: 100%;
    padding: 0 2.75em 1em 0;
    margin-right: 20px;
    margin-left: 20px;
    position: relative;
    display: flex;
}
@media screen and (max-width: 991px) {
    .page-top-container {
        margin-top: 0;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        position: static;
    }
}
.page-top-container-photo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 33%;
}
.photo-logo {
    align-items: center;
    width: 12em;
    padding: 0;
    display: flex;
}
.page-top-container-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 66%;
}
@media screen and (max-width: 991px) {
    .page-top-container-menu {
        display: none;
    }
}
.menu-items-navigation {
    z-index: 99;
    transform-origin: 0%;
    flex-direction: row;
    align-items: right;
    display: flex;
}
.menu-items-navigation > a:hover {
    border-bottom: 3px solid #4f95ff;
}
.menu-item-links {
    align-items: center;
    white-space: nowrap;
    margin-right: 5px;
    padding: 12px 12px 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    display: flex;
    vertical-align: top;
    text-align: left;
    margin-left: auto;
    position: relative;
    color: #ffffff;
}
.menu-item-cart {
    max-height: 20px;
    max-width: 20px;
}
/*////////////////////////////////////////// Page Top //////////////////////////////////////////*/
/*////////////////////////////////////////// Page Footer //////////////////////////////////////////*/
.footer {
    padding-top: 3em;
    padding-bottom: 3em;
}
#footer-logo {
    max-width: 100%;
}
.inline-blocks {
    max-width: 100%;
    display: inline-block;
}
@media screen and (max-width: 479px) {
    .footer {
        padding-top: 7vw;
        padding-bottom: 7vw;
    }
}
.content.flex {
    flex-direction: column;
}
.content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6em;
    padding-right: 6em;
    position: relative;
}
@media screen and (max-width: 479px) {
    .content {
        padding-top: 28px;
        padding-left: 7vw;
        padding-right: 7vw;
    }
}
@media screen and (max-width: 767px) {
    .content {
        text-align: center;
        padding-left: 4vw;
        padding-right: 4vw;
    }
}
.flex {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .content.flex {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 991px) {
    .flex, .flex.right {
        justify-content: center;
    }
}
.footer-content-container {
    grid-column-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.25fr;
    grid-auto-columns: 1fr;
    display: grid;
    position: relative;
}
@media screen and (max-width: 479px) {
    .footer-content-container {
        grid-row-gap: 2em;
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 991px) {
    .footer-content-container {
        grid-column-gap: 0.75em;
        grid-row-gap: 20px;
        grid-template-columns: 1fr;
    }
}
.footer-content-container-photo {
    padding-top: 5px;
}
@media screen and (max-width: 991px) {
    .footer-content-container-photo {
        padding-top: 0;
    }
}
.container-photo {
    max-width: 350px;
    display: flex;
    position: static;
    top: 0;
    left: 0;
}
@media screen and (max-width: 479px) {
    .container-photo {
        width: 250px;
    }
}
@media screen and (max-width: 991px) {
    .container-photo {
        width: 300px;
    }
}
.footer-content-container-links {
    text-align: center;
    font-size: 25px;
    margin-top: 30px;
}
.container-links {
    flex-direction: column;
    display: flex;
}
.footer-item-links {
    color: #ffffff;
    margin-top: .6em;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1;
    text-decoration: none;
}
.footer-item-links:hover {
    color: #d0d0d0;
}
.footer-socials {
    justify-content: space-between;
    align-items: flex end;
    display: flex;
}
@media screen and (max-width: 479px) {
    .footer-socials {
        flex-direction: column;
        align-items: center;
        max-width: none;
        margin-top: 6vw;
    }
}
@media screen and (max-width: 767px) {
    .footer-socials {
        text-align: center;
        max-width: 70%;
        margin-top: 1.3em;
    }
}
@media screen and (max-width: 991px) {
    .footer-socials {
        flex-direction: column;
        align-items: center;
    }
}
.footer-socials-content {
    align-items: center;
    display: flex;
}
.footer-socials-content.flex {
    align-items: center;
    display: flex;
}
@media screen and (max-width: 991px) {
    .footer-socials-content.flex {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 479px) {
    .footer-socials-content {
        margin-bottom: 4vw;
    }
}
.socials-content-wrapper {
    display: flex;
    margin-top: 0.5em;
}
@media screen and (max-width: 479px) {
    .socials-content-wrapper {
        margin-top: 0;
        margin-left: 0;
    }
}
.socials-links {
    justify-content: center;
    align-items: center;
    margin-right: 1.7em;
    display: flex;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 479px) {
    .socials-links {
        width: 6vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }
}
@media screen and (max-width: 767px) {
    .socials-links {
        width: 4vw;
    }
}
@media screen and (max-width: 991px) {
    .socials-links {
        margin-right: 2em;
    }
}
.social {
    max-width: 25%;
    height: auto;
}
@media screen and (max-width: 476px) {
    .social {
        max-width: 100%;
    }
}
@media screen and (max-width: 991px) {
    .social {
        max-width: 100%;
    }
}
.first {
    margin-left: 0;
}
.last {
    margin-right: 0;
}
.contact-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}
.legal-links {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}
.legal-item {
    font-size: 10px;
    color: #ffffff;
}
/*////////////////////////////////////////// Page Footer //////////////////////////////////////////*/
.menu {
    display: flex;
    justify-content: space-evenly;
}
#logo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #000000;
    padding: 10px 0;
}
#ice-cream {
    display: block;
    margin-left: 0;
    margin-right: auto;
    background-color: #202020;
    padding: 10px 0;
}
nav {
    padding: 10px 0;
}
nav > ul {
    display: flex;
    height: 100%;
    margin-top: 10%;
}
li > a {
    text-decoration: none;
    color: #ffffff;
    background-color: #000000;
    max-width: 20px;
    border: 10px solid #000000;
    border-radius: 3px;
    margin: 0 20px;
}
nav li > a:hover {
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 3px solid #4f95ff;
}
.head-links {
    list-style: none;
}
.divide-line {
    border-bottom: 3px solid #303030;
    margin-right: 20px;
    margin-left: 20px;
}
.store-locator {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}
#store-button {
    text-decoration: none;
    color: #ffffff;
    background-color: #355f9c;
    max-width: 50%;
    border: 10px solid #355f9c;
    border-radius: 3px;
}
#store-button:hover {
    background-color: #4f95ff;
    color: #ffffff;
    cursor: pointer;
    border: 10px solid #4f95ff;
    border-radius: 3px;
}
.home-shortcut {
    text-decoration: none;
    color: #000000;
}
.home-shortcut:hover {
    color: #a0a0a0;
    cursor: pointer;
}
.referrer {
    list-style: none;
}
button {
    color: #ffffff;
    background-color: #355f9c;
    border: 10px solid #355f9c;
    border-radius: 3px;
    font-family: "Franklin Gothic Medium", sans-serif;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 200px;
}
button:hover {
    color: #ffffff;
    background-color: #4f95ff;
    border: 10px solid #4f95ff;
    border-radius: 3px;
    font-family: "Franklin Gothic Medium", sans-serif;
    cursor: pointer;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 200px;
}
.socials {
    display: flex;
    margin-top: 10px;
    margin-right: auto;
    margin-left: 70%;
    width: 50%;
    height: 50px;
    padding: 5px 20px;
}
.social:hover {
    cursor: pointer;
}
#bottom {
    display: flex;
}
#logo2 {
    width: 50%;
    background-color: #000000;
    padding: 10px 10%;
}
.words {
    padding-top: 10px;
    text-align: center;
}
form {
    margin-left: 10px;
}
.info {
    display: flex;
    justify-content: space-evenly;
}
.info2 {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

/*////////////////////////////////////////// Map //////////////////////////////////////////*/
#mapbox-locals-container {
    font-size: 1rem;
    min-height: 500px;
    position: relative;
    visibility: visible !important;
    padding: 0;
    text-align: left !important;
    box-sizing: border-box !important;
    border: 1px solid #D1D1D1;
    border-radius: 6px;
    background-color: #ffffff;
    color: #000000;
    margin-left: 20%;
    margin-right: 20%;
}
@media screen and (max-width: 476px) {
    #mapbox-locals-container {
        margin-left: 0;
        margin-right: 0;
    }
}
#mapbox-container {
    position: absolute;
    left: 100%;
    right: 0;
    bottom: 0;
    margin: 0;
    background: #FBFBFB;
    overflow: hidden;
    z-index: 5;
    top: 0;
    box-shadow: 6px 10px 42px rgba(0, 0, 0, 0.05);
    border-radius: 0 6px 6px 0;
    border-left: 1px solid #D1D1D1;
}
#map {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
/*////////////////////////////////////////// Map //////////////////////////////////////////*/

/*////////////////////////////////////////// Menu of locations //////////////////////////////////////////*/
#locals-panel {
    overflow: hidden !important;
    position: relative;
    top: 0;
    left: 0;
    width: 400px;
    background: #ffffff;
    z-index: 15;
    color: rgba(0, 0, 0, .56);
    box-shadow: 6px 10px 42px rgba(0, 0, 0, 0.086);
    border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 720px) {
    #locals-panel {
        border-right: 0;
    }
}
.locals-list {
    overflow-x: auto;
    overflow-y: hidden;
}
.locals-list-content {
    height: 100%;
}
.locals {
    overflow: hidden;
    padding: 30px 20px;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    cursor: pointer;
    display: flex;
    transition: all .2s ease;
    background: linear-gradient(to bottom, #FDFDFD 0%, #FCFCFC 100%);
    text-align: center;
}
.locals-content {
    width: 100%;
}
.locals-content-name {
    font-size: 14px;
    font-weight: 700;
    color: #060606;
}
.locals-content-address {
    margin-top: 5px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #555555;
}
.locals-content-phone {
    margin-top: 10px;
    font-size: 12px;
    line-height: normal;
    font-weight: 300;
    color: #444444;
}
.locals-content-website {
    margin-top: 12px;
}
#temp-words {
    margin-left: 25%;
    text-align: center;
}
/*////////////////////////////////////////// Menu of locations //////////////////////////////////////////*/
.preorder {
    background-color: #355f9c;
}
.preorder:hover {
    background-color: #4f95ff;
}