div.multi-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

    div.day {
        max-width: 1000px;
        width: 100%;

        > h3 {
            margin-bottom: 22px;
            text-align: center;
            font-size: 2.5rem;
        }

        > div.card {
            --stampHeight: 60px;

            position: relative;
            min-height: 100px;
            margin-top: calc((var(--stampHeight) / 2) + 22px);

            div.date-stamp {
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                left: -4px;
                top: calc((var(--stampHeight) / -2) - 4px);
                padding-left: 44px;
                padding-right: 44px;
                font-weight: bold;
                height: var(--stampHeight);
                background-color: var(--cardColour);
                border: solid 4px var(--cardColour);
            }

            img.monster {
                position: absolute;
                top: 0;
                width: 75px;

                &.maya {
                    right: -61px;
                }

                &.clara {
                    right: -66px;
                }

                &.phoebe {
                    right: -64px;
                }

                &.hallie {
                    right: -69px;
                }
            }

            p.title {
                position: absolute;
                right: 22px;
                top: 15px;
                font-family: 'Bangers', sans-serif;
                font-size: 1.8rem;
            }

            p.description {
                margin-top: 44px;
                min-height: 50px;
            }

            button[data-toggle-tickets] {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 11px;
                margin-top: 22px;
                margin-left: auto;
                margin-right: auto;
                width: 100%;
                max-width: 300px;

                svg {
                    fill: white;
                    width: 30px;
                }
            }

            div.all-tickets {
                display: flex;
                flex-direction: column;
                gap: 22px;
                margin-top: 22px;

                &:not(.show) > * {
                    display: none;
                }

                [data-group] {
                    > h3 {
                        text-align: center;
                        margin-bottom: 11px;
                    }

                    order: 999;
                }

                [data-group="standard-tickets"] {
                    order: 1;
                }

                [data-group="grinch-grotto"] {
                    order: 2;
                }


            }

            @media (max-width: 991px) {
                p.title {
                    position: unset;
                    margin-top: 22px;
                }

                p.description {
                    margin-top: 0;
                }
            }
        }
    }

    a.mt-shortcut {
        scroll-margin-top: calc(var(--navHeight) + 100px);
    }

    div.ticket {
        &.golden {
            --goldColour: rgb(194, 165, 0);
            --notchSize: 30px;

            background-color: var(--goldColour);
            border-color: var(--goldColour);
            box-shadow: 0 0 8px 1px var(--goldColour);
            position: relative;
            border: dashed white 3px;

            &::before, &::after {
                content: ' ';
                position: absolute;
                width: var(--notchSize);
                height: var(--notchSize);
                background-color: #191220;
                top: calc(50% - (var(--notchSize) / 2));
                border-radius: 50%;
            }

            &::before {
                left: calc(0px - (var(--notchSize) / 2) - 5px);
            }

            &::after {
                right: calc(0px - (var(--notchSize) / 2) - 5px);
            }
        }
    }
}

div.no-events {
    text-align: center;
    padding-top: 22px;
    font-size: 2rem;

    p {
        font-size: 1.4rem;
    }
}

div.mobile-shortcuts {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #282828;
    padding: 11px;

    div.shortcuts {
        display: flex;
        gap: 11px;
        align-items: stretch;
        justify-content: flex-end;

        a.button {
            flex: 1;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        button {
            svg {
                fill: white;
                width: 40px;
            }
        }

        &.calendar {
            a.button {
                display: none;
            }
        }
    }

    div.days {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 11px;
        
        a {
            width: 100%;
        }
    }

    &:not(.calendar) {
        div.days {
            display: none;
        }
    }

    &.calendar {
        div.shortcuts > a {
            display: none;
        }
    }

    @media (min-width: 992px) {
        display: none;
    }
}