﻿/* 月曆領券 */
.calendar-container {
    max-width: 1200px;
    margin: auto;
}

.calendar-coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 17px
}

.calendar-coupon time {
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    line-height: 2rem;
    font-family: Arial;
    font-weight: 800;
    color: #fcefc3;
    text-shadow:
        -1px -1px 0 #222,
        1px -1px 0 #222,
        -1px 1px 0 #222,
        1px 1px 0 #222; 
}

@media (max-width: 736px) {
    .calendar-coupon time {
        font-size: 1.5rem;
        line-height: 1rem;
    }
}

/* expired */
.calendar-coupon .expired {
    filter: saturate(0);
    cursor: unset;
}
