/* Schedule Banner — Popup Custom plugin */

#bpopup-schedule-banner {
    font-family: inherit;
    box-sizing: border-box;
    animation: bscheduleSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#bpopup-schedule-banner p {
    margin: 0;
}

#bpopup-schedule-msg {
    font-weight: 600;
    margin-bottom: 5px !important;
}

#bpopup-countdown {
    font-size: 0.85em;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

@keyframes bscheduleSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    #bpopup-schedule-banner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
