@charset "UTF-8";

#list-tickets {
    padding: 1rem 3rem;
}

.item {
    border-bottom: 0.3rem solid #ccc;
    padding-bottom: 2rem;
}

.item-box {
    display: flex;
}

.item-img-box {
    align-self: center;
    margin-right: 20px;
    position: relative;
    cursor: pointer;
}

.thumbnail-list {
    width: 70px;
    height: 70px;
}

.thumbnail-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 45px;
    left: 45px;
}

.item-detail {
    width: 100%;
}

.item-detail > h2.name {
    font-size: 1.5em;
    font-weight: lighter;
    margin: 0.83em 0;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
}

.item-detail > p {
    margin-bottom: 1em;
}

.item-detail > p.price {
    text-align: right;
    margin-bottom: 2em;
}

.item-detail > p.price > span.display-price {
    text-decoration-line: line-through;
}

.item-detail-1 {
    margin-top: 2em;
}

.item-detail-1 > p {
    margin-bottom: 1em;
}

.item-detail-1 > p.price {
    text-align: right;
    margin-bottom: 2em;
}

.item-detail-1 > p.price > span.display-price {
    text-decoration-line: line-through;
}

.item-box-2 {
    display: flex;
    justify-content: center;
}

.item-img-box-2 {
    margin-bottom: 1em;
    position: relative;
    cursor: pointer;
}

.thumbnail-list-2 {
    width: initial;
    max-width: 90vw;
    max-height: 300px;
    object-fit: contain;
}

.thumbnail-icon-2 {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5%;
    bottom: 5%;
}

.name-3 {
    font-size: 1.5em;
    font-weight: lighter;
    margin: 0.83em 0;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
}

#slideModal {
    top: 10vh;
    left: calc(50vw - 350px);
    width: 700px;
    min-height: initial;
    background-color: transparent;
    margin: initial;
}

.item-img {
    width: 700px;
    max-height: 525px;
    object-fit: contain;
}

.slick-prev {
    left: -70px !important;
}
.slick-next {
    right: -40px !important;
}

.slick-prev:before, .slick-next:before {
    font-size: 50px !important;
}

@media screen and (max-width: 1024px) {
    #slideModal {
        left: calc(50vw - 350px);
    }

    .slick-prev {
        left: 10px !important;
        z-index: 999;
    }
    .slick-next {
        right: 40px !important;
        z-index: 999;
    }
}

@media screen and (max-width: 767px) {
    #slideModal {
        left: calc(50vw - 230px);
        width: 460px;
    }

    .item-img {
        width: 460px;
    }
}

@media screen and (max-width: 480px) {
    #slideModal {
        left: calc(50vw - 175px);
        width: 350px;
    }

    .item-img {
        width: 350px;
    }
}

.action {
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
}

.action > button {
    color: #fff;
    padding: 4px 16px;
    border-radius: 5px;
    font-weight: bold;
}

.action > button.detail {
    background-color: #004387;
}

.action > button.disable {
    background-color: #999;
}

.action > button.input {
    background-color: #910000;
}

.search_results_bottom {
    padding: 4rem 2rem;
}

ul.pagination {
    display: flex;
    justify-content: space-between;
}

ul.pagination li a {
    color: #000000;
    padding: 4px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: bold;
}

ul.pagination li a:hover {
    background-color: #ddd;
}

ul.pagination li.disabled a {
    background-color: #ddd;
    color: #fff;
    pointer-events: none;
}

#modal_ticket_detail {
    margin: 0;
    width: 1000px;
    top: 15%;
    left: auto;
    min-height: 0;
}

body.modal-open {
    overflow: hidden;
}

#modal_ticket_detail .modal-header {
    background-color: #40b1e0;
    color: #fff;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-weight: bold;
}

#modal_ticket_detail .close {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #129ad3;
}
#modal_ticket_detail .close:hover,
#modal_ticket_detail .close:focus {
    background-color: #48aed3;
    text-decoration: none;
    cursor: pointer;
}

#modal_ticket_detail .modal-body {
    padding: 15px;
    overflow-y: auto;
    max-height: calc(100vh - 170px);
}

#modal_ticket_detail ul {
    padding: 0 20px;
}

#modal_ticket_detail .unavailable-day-date {
    padding-bottom: 20px;
}

#modal_ticket_detail ul li {
    line-height: 1.4;
}

#modal_ticket_detail div.day > p,
#modal_ticket_detail .unavailable-date
{
    padding-bottom: 0;
}

#modal_ticket_detail .unavailable-date {
    margin-left: 130px;
}

#modal_ticket_detail p.start-end-date {
    padding-top: 20px;
}

#modal_ticket_detail ul.event-price span.display-fixed-price {
    text-decoration-line: line-through;
}

#modal_ticket_detail .modal-body > ul > li {
    padding: 10px 0;
}

#modal_ticket_detail .modal-body > ul > li:before {
    content: "■";
    display: inline-block;
    width: 1em;
}

#modal_ticket_detail .event-name {
    text-decoration-line: underline;
}

#modal_ticket_detail ul li p,
#modal_ticket_detail .unavailable-day-date
{
    padding-left: 30px;
    padding-right: 30px;
}

#modal_ticket_detail .unavailable-day-date p {
    padding-left: 0;
}

#modal_ticket_detail p.number-of-ticket {
    padding-left: 25px;
}

#modal_ticket_detail ul.event-price {
    padding-top: 5px;
}

#modal_ticket_detail ul.event-price div > span {
    width: 80px;
    display: inline-block;
    text-align: end;
    margin-left: 10px;
}

#unReservedSeatNum {
    border: 1px solid #ccc;
    font-size: 1.6rem;
    padding: 5px 10px;
    text-align: right;
}

#modal_ticket_detail ul.event-price li {
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.button_modal_submit {
    width: 150px;
    height: 40px;
    background-color: #f60;
    line-height: 40px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.button_modal_submit:disabled {
    opacity: 0.3;
}

.event_not_exist_mess {
    padding: 20px 0 0;
    color: red;
    font-size: 18px;
}

@media screen and (max-width: 414px){
    #modal_ticket_detail {
        top: 5%;
        left: 7.5%;
        width: 85vw;
    }
    #modal_ticket_detail ul.event-price div > span {
        width: 50px;
    }

    #modal_ticket_detail .event-name {
        padding-left: 0;
        padding-right: 0;
    }

    #modal_ticket_detail ul {
        padding: 0;
    }

    #modal_ticket_detail ul li p, #modal_ticket_detail .unavailable-day-date {
        padding-left: 10px;
        padding-right: 10px;
    }

    #modal_ticket_detail .unavailable-date {
        margin: 0;
    }
}

@media screen and (min-width: 415px) and (max-width: 1000px){
    #modal_ticket_detail {
        top: 5%;
        left: 5%;
        width: 90vw;
    }

    .event_not_exist_mess {
        margin-left: 7%;
    }
}

@media screen and (min-width: 1001px) {
    #modal_ticket_detail .modal-body {
        max-height: calc(100vh - 320px);
    }
}

#choose-pre button {
    background-color: #004387;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    width: 80px;
    height: 40px;
    padding-bottom: 5px;
    padding-top: 10px;
}
.error-message{
    color: #cc0033;
    font-size: 12px;
}
#search-pre {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif;
    font-size: 1.6rem;
}
