.ticket-selection {
    --muted: #5f6f88;
    position: relative;

    input {
        display:block;
        opacity:0;
        position:absolute;
    }

    span {
        display:block;
    }
}

.one-selected input:not(:checked) + label {
    opacity: .5;
    transform: scale(0.9);
}

.plate-card {
    background: white;
    padding: 25px 45px 25px 45px;
    flex: 1 1 380px; min-width: 320px;
    max-width: 550px;
    position: relative; box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;

    /* Slant Right: Bottom-Left to Top-Right (Parallel to the bar) */
    clip-path: polygon(0% 0%, 100% 0%, 98.5% 100%, 0% 100%);
    display: flex;
    flex-direction: column;

    h4 {
        font-weight: bold;
        margin: 0 0 10px; font-size: 1.4rem; color: var(--primary-dw-dark-blue); letter-spacing: -0.01em; width: 90%; padding-bottom: 0;
    }

    h4, p {
        width:100%;
    }

    &:hover {
        transform: scale(1.05);
        z-index: 20;
    }
}

.plate-card::before {
    content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 15px;
    background: var(--gmf-blue);
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
    transition: width 0.3s ease;
}
.plate-card:hover::before { width: 20px; }

.ticket-selection:nth-child(odd) .plate-card::before { background: var(--primary-dw-dark-blue); }
.ticket-selection:nth-child(even) .plate-card::before { background: var(--primary-dw-medium-blue); }

.price {
    margin-bottom: 1rem;
}

.real-price {
    font-size:3vh;
}
.price-early-bird .text-decoration-line-through {
    color: var(--muted);
    font-size:75%;
    display:inline;
}

.early-bird-until {
    font-size:75%;
}

.ticket-description {
    margin-top:auto
}

.ticket-description ul {
    margin:0;
    padding:0 0 0 1rem;
    list-style-type: square;
}

.ticket-description ul li::marker {
    color: var(--primary-dw-dark-blue);
}