.ticket-info {
    margin-bottom: 4rem;
}



.ticket-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    filter: drop-shadow(1px 1px 5px rgba(122, 122, 122, 0.3));
    margin-bottom: 2rem;
}

.ticket-card .t-head {
    padding: 20px 10px 10px;
    border-radius: 8px 8px 0 0;
}

.c-early {
    background-color: var(--yellow);
}

.c-pre {
    background-color: #caff8a;
}

.c-final {
    background-color: #97dffc;
}

.c-mail {
    color: #ffffff;
    background-color: #996fd6;
}

.ticket-card .t-top,
.ticket-card .t-bottom {
    background-color: #fff;
    padding: 15px;
}

.ticket-card .t-bottom {
    border-radius: 0 0 8px 8px;
    padding-bottom: 25px;
}

.ticket-card .dot {
    position: relative;
    height: 20px;
    margin: 0 10px;
    background-image: url('data:image/svg+xml,%3Csvg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 20"%3E%3Ccircle cx="9.75" cy="9.76" r="7.75" fill="%23333"/%3E%3Ccircle cx="45.5" cy="9.76" r="7.75" fill="%23333"/%3E%3C/svg%3E');
    background-size: 10px 10px;
    background-repeat: repeat-x;
    background-position: center;
    background-color: #fff;
}

.ticket-card .dot::before,
.ticket-card .dot::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 5px solid transparent;
    border-top-color: #fff;
    border-right-color: #fff;
    border-radius: 100%;
    pointer-events: none;
}

.ticket-card .dot::before {
    left: -10px;
}

.ticket-card .dot::after {
    transform: translate(-50%, -50%) rotate(225deg);
    right: -40px;
}