.site-opening-hours-top {
    margin: 0;
    font-size: 14px;
}

.site-opening-hours-top i {
    margin-right: 6px;
    color: #baad7b;
}

body.homepage-notice-open {
    overflow: hidden;
}

.homepage-notice-modal[hidden] {
    display: none;
}

.homepage-notice-modal {
    position: fixed;
    z-index: 1200;
    inset: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.homepage-notice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 60, .68);
}

.homepage-notice-dialog {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: calc(100% - 48px);
    max-width: 580px;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    padding: 38px 42px 34px;
    overflow-y: auto;
    border-top: 5px solid #baad7b;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(20, 30, 60, .32);
    color: #36404c;
    overflow-wrap: anywhere;
    overscroll-behavior: contain;
    animation: homepage-notice-enter .22s ease-out;
}

.homepage-notice-label {
    margin: 0 0 8px;
    color: #9a8b51;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.homepage-notice-dialog h2 {
    margin: 0 0 16px;
    color: #2f4555;
    font-size: 30px;
    font-style: normal;
    line-height: 1.2;
}

.homepage-notice-message {
    color: #52636f;
    line-height: 1.65;
}

.homepage-notice-confirm {
    margin-top: 26px;
}

@keyframes homepage-notice-enter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.footer-opening-hours table {
    width: 100%;
    color: inherit;
}

.footer-opening-hours th,
.footer-opening-hours td {
    padding: 2px 0;
    border: 0;
    color: inherit;
    font-size: 14px;
    font-weight: 400;
}

.footer-opening-hours th {
    padding-right: 12px;
    text-align: left;
}

.footer-opening-hours td {
    text-align: right;
}

@media (max-width: 767.98px) {
    .site-opening-hours-top {
        padding-bottom: 5px;
    }


    .homepage-notice-modal {
        padding: 15px;
    }

    .homepage-notice-dialog {
        width: calc(100% - 30px);
        max-height: calc(100vh - 30px);
        max-height: calc(100dvh - 30px);
        padding: 32px 24px 26px;
    }

    .homepage-notice-dialog h2 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homepage-notice-dialog {
        animation: none;
    }
}
