.ticket-selection {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 5px;
}

.name-and-price {
    display: flex;
    flex-direction: column;

    p {
        margin: 0;
    }
}

.ticket-title {
    font-weight: 600;
}

.ticket-description {
    font-weight: 400;
    font-size: 14px;
}

.quantity-selection {

    select {
        appearance: none;
        padding: 10px 40px 10px 20px;
        border-radius: 5px;
        border: 1px solid var(--border);

        /* Input Field */
        box-shadow: var(--form-element-shadow);

    }

    .arrow-down {
        position: absolute;
        right: 10px;
        pointer-events: none;
        width: 20px;
        object-fit: contain;
    }

    .select-wrapper {
        position: relative;
        width: 100%;
        align-items: center;
        display: flex;
    }
}

.total-tickets {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    .tickets {
        font-weight: 400;
        ;
    }

    .price {
        font-size: 18px;
        font-weight: 600;
    }
}

.event-field-container {
    .tickets {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}