body {
    margin: 0;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 64px;
    align-items: center;
    position: relative;
}

.nav-left {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    justify-self: start;
    margin-left: 16px;
}

.nav-center {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    display: flex;
    gap: 24px;
}

.nav-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: end;
}

.nav-logo img {
    height: 92px;
    width: auto;
    display: block;
    max-width: min(320px, calc(100vw - 32px));
}

.social {
    color: #ffffff;
    text-decoration: none;
}

.social:hover {
    color: #e5e5e5;
}

.social svg {
    width: 24px;
    height: 24px;
    display: block;
}

.socials {
    display: flex;
    gap: 10px;
}

.hours-details {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.5rem 0;
}

.hours-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.hours-summary:hover {
    cursor: pointer;
}

.hours-info {
    position: relative;
    padding: 0 0.5rem;
    margin-left: auto;
    cursor: help;
}

.hours-info::after {
    content: attr(data-tip);
    position: absolute;
    background: #111;
    color: #fff;
    padding: 6px 8px;
    margin: 0 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 80ms ease;
    transition-delay: 0ms;
}

.hours-info:hover::after {
    opacity: 1;
}

.hours-caret {
    margin-left: 4px;
}

.caret-up {
    display: none;
}

.hours-details[open] .caret-down {
    display: none;
}

.hours-details[open] .caret-up {
    display: inline;
}

.hours-summary::marker {
    content: "";
}

.hours-summary::-webkit-details-marker {
    display: none;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.status-open {
    color: #1a7f37;
}

.status-dot.status-open {
    background: #1a7f37;
}

.status-closed {
    color: #d1242f;
}

.status-dot.status-closed {
    background: #d1242f;
}

.status-soon {
    color: #d97706;
}

.status-dot.status-soon {
    background: #d97706;
}

.status-unknown {
    color: #6b7280;
}

.status-dot.status-unknown {
    background: #6b7280;
}

.status-sep,
.status-sub,
.countdown {
    color: inherit;
    opacity: 0.9;
}

.hours-panel {
    position: absolute;
    left: 23%;
    width: 60%;
}

.hours-table {
    border-collapse: collapse;
    width: 100%;
}

.hours-row td {
    padding: 6px 0;
    vertical-align: top;
}

.hours-day {
    width: 45%;
}

.hours-time {
    text-align: right;
    white-space: nowrap;
}

.hours-range {
    display: inline-block;
}

.hours-holiday-title {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-weight: 600;
}

.hours-row.is-today {
    font-weight: 700;
}

