#poster {
    width: 100%;
    background: #000;
    max-height: 450px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

#poster>.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#poster>.image-wrapper>div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#poster>.image-wrapper>.poster-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    filter: blur(5rem);
    background-position: 50%;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('images/poster.jpg');
    background-size: calc(100% + 20%);
    background-repeat: no-repeat;
}

#poster>.image-wrapper>div>img:not(.poster-background) {
    width: 100%;
    object-fit: cover;
    z-index: 30;
}

#next-event {
    width: 100%;
}

.event>.event-photo>img {
    width: 150px;
    height: 100%;
}

.event-tix-master {
    display: flex;
    flex-direction: column;
}

@media (min-width: 700px) {
    .event-tix-master {
        flex-direction: row;
    }
}

.event-tix {
    margin-top: 1rem;
    padding: 0 10px;
    transition: all 0.3s ease-in-out;
}

.event-tix>.event-tix-a {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.event-tix>.event-tix-a,
.event-tix>.event-tix-a>div {
    color: rgb(255 255 255);
    font-weight: 700;

    text-align: center;

    font-size: 1.125rem;
    line-height: 1.75rem;

    border-radius: 0.5rem;

    transition: all 0.3s ease-in-out;

    text-decoration: inherit;

    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.event-tix>.event-tix-a>div {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.event-tix>.event-tix-a>div:last-child {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
}

.event-tix:hover {
    transform: translateY(-1px);
}

.event-checkout-master {
    display: flex;
    flex-direction: row;
}

.event-checkout {
    margin-top: 1rem;
    padding: 0 10px;
    transition: all 0.3s ease-in-out;
}

.event-checkout>a {
    display: flex;
    flex-direction: column;
}

.event-checkout>a,
.event-checkout>a>div {
    color: rgb(255 255 255);
    font-weight: 700;

    text-align: center;

    font-size: 1.125rem;
    line-height: 1.75rem;

    border-radius: 0.5rem;

    transition: all 0.3s ease-in-out;

    text-decoration: inherit;

    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.event-checkout>a>div {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.event-checkout>a>div:last-child {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
}

.event-checkout:hover {
    transform: translateY(-1px);
}

.event-title-shade {
    padding: 2rem;
}

.event-ticket-shade {
    --tw-gradient-to: #e5e7eb;
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    padding: 2rem;

    border-radius: 1rem 1rem 0 0;

    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.event-subtitle {
    color: rgb(55 65 81);
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin: 0;
    margin-top: 1rem;
}

.event-ticket-title {}

.confetti-wrapper {
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Prevent interaction */
    overflow: hidden;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.8;
    }
}

.confetti-piece {
    position: absolute;
    width: 5px;
    height: 10px;
    background: var(--confetti-color, red);
    opacity: 0.9;
    animation: confetti-fall var(--fall-duration, 4s) linear infinite;
}

/* Randomize confetti properties */
.confetti-piece:nth-child(1) {
    left: 10%;
    --confetti-color: #ff6347;
    --fall-duration: 3s;
}

.confetti-piece:nth-child(2) {
    left: 25%;
    --confetti-color: #ffa500;
    --fall-duration: 5s;
}

.confetti-piece:nth-child(3) {
    left: 40%;
    --confetti-color: #32cd32;
    --fall-duration: 4.5s;
}

.confetti-piece:nth-child(4) {
    left: 60%;
    --confetti-color: #1e90ff;
    --fall-duration: 3.5s;
}

.confetti-piece:nth-child(5) {
    left: 80%;
    --confetti-color: #ff69b4;
    --fall-duration: 6s;
}

.text-center {
    text-align: center;
}

.p-4 {
    padding: 1rem;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

@media (min-width: 768px) {
    .md\:p-6 {
        padding: 1.5rem;
    }
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.font-semibold {
    font-weight: 600;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.mt-2 {
    margin-top: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.border {
    border-width: 1px;
}

.rounded-lg {
    border-radius: var(--radius);
}

.max-w-md {
    max-width: 28rem;
}

.w-full {
    width: 100%;
}

.mt-6 {
    margin-top: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.justify-between {
    justify-content: space-between;
}

.flex {
    display: flex;
}

.mt-2 {
    margin-top: 0.5rem;
}

.font-medium {
    font-weight: 500;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.font-medium {
    font-weight: 500;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.rounded-md {
    border-radius: calc(var(--radius) - 2px);
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.h-10 {
    height: 2.5rem;
}

.inline-flex {
    display: inline-flex;
}

.mt-6 {
    margin-top: 1.5rem;
}

a {
    color: inherit;
    text-decoration: inherit;
}

.ticket-data {
    padding-left: 15px;
}