#e_ticket_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    align-items:center;
    justify-content: center;
    display: none;
    z-index: 999999;
}
#e_ticket_wrapper.active {
    display: flex;
}
#e_ticket_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0008;
}
#e_ticket {
    width: 500px;
    height: 600px;
    position: relative;
}
#e_ticket img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#close_ticket {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    right: 20%;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    #close_ticket {
        right: 0;
    }
}