/* Hall Ticket Popup Background */
.hall-ticket-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    align-items: center;
    justify-content: center;
}

/* Popup Box */
.hall-ticket-popup {
    width: 700px;
    max-width: 90%;
    max-height: 90vh;

    background: #ffffff;
    border: 1px solid #555;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);

    overflow-y: auto;

    animation: hallTicketPopupAnimation 0.25s ease-out;
}

/* Popup Content */
.hall-ticket-content {
    padding: 25px 35px 30px 35px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.25;
    color: #111111;
}

/* Heading */
.hall-ticket-content h2 {
    text-align: center;
    font-size: 17px;
    margin: 0 0 18px 0;

    text-decoration: underline;
    font-weight: bold;
}

/* Paragraph */
.hall-ticket-content p {
    margin: 10px 0;
}

.hall-ticket-content .intro {
    text-align: center;
    margin: 20px 0;
}

/* Note */
.note-title {
    font-weight: bold;
    text-decoration: underline;
	text-align: left;
}

/* List */
/*
.hall-ticket-content ol {
    margin-top: 10px;
    padding-left: 35px;
}

.hall-ticket-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}*/

.hall-ticket-content ol {
    list-style-type: decimal !important;
    list-style-position: outside !important;

    margin: 15px 0 0 0;
    padding-left: 32px !important;
}

.hall-ticket-content ol li {
    display: list-item !important;
    list-style-type: decimal !important;

    margin-bottom: 10px;
    padding-left: 5px;
}

/* Button area */
.hall-ticket-button-area {
    text-align: center;
    margin-top: 22px;
}

/* Instruction button */
.hall-ticket-button {
    background: #ffffff;

    border: 3px solid #222222;

    padding: 8px 16px;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;
}

.hall-ticket-button:hover {
    background: #eeeeee;
}

/* Popup animation */
@keyframes hallTicketPopupAnimation {
    from {
        opacity: 0;
        transform: scale(0.90);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media screen and (max-width: 600px) {

    .hall-ticket-popup {
        width: 94%;
        max-height: 90vh;
    }

    .hall-ticket-content {
        padding: 18px;
        font-size: 14px;
    }

    .hall-ticket-content h2 {
        font-size: 15px;
    }

}