.light-box-wrapper {
    position: fixed;
    background: #989898CC;
    width: 100%;
    z-index: 10000;
    top: 0;
    height: 100%;
    left: 0;
}

.lightbox-inneer-wrapper {
    max-width: 41%;
    margin: 0 auto;
    height: 96%;
    background: #fef0e8;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-image-wrapper {
    max-width: 21vw;
    margin: 0 auto;
}

img {
    /* max-width: 50%; */
    width: 100%;
}

.lightbox-header-text {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1.3vw;
    text-align: center;
    line-height: normal;
    padding-top: 1%;
    padding-bottom: 1%;
    font-weight: bold;
    color: #1c2c5c;
}

.button-wrapper {
    display: block;
    max-width: 15vw;
    margin: 0 auto;
    text-align: center;
    margin-top: 1vw;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a.getticket-button {
    display: inline-block;
    text-decoration: none;
    color: #fef0e8;
    /* background: #000; */
    /* max-width: 170px; */
    width: 100%;
    /* margin: 20px auto; */
    height: 2.9vw;
    line-height: 3.3vw;
    font-size: 1.2vw;
    letter-spacing: 0;
    box-sizing: border-box;
    /* background: url('../images/button.png') no-repeat center top; */
    background-color: #1c2c5c;
    background-size: cover;
    text-transform: uppercase;
    transition: all 0.5s;
    z-index: 10000;
    /* display: inline-flex; */
}

.lightbox-image-wrapper a:hover {
    opacity: 0.8;
}

.close-wrapper {
    position: absolute;
    right: .5vw;
    top: 0.5vw;
    font-size: 1.5vw;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-wrapper:hover {
    opacity: .5;
}

.light-box-wrapper .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #989898CC;
    pointer-events: none;
}

.mobile-close-text {
    display: none;
    text-decoration: underline;
    font-size: 21px;
}

.more-inner {
    position: fixed;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 100%;
    background-color: #fef0e8
}

@media only screen and (max-width:1023px) {
    .lightbox-inneer-wrapper {
        max-width: 94%;
        max-height: 100vh;
        overflow-y: scroll;
    }
    .lightbox-image-wrapper {
        max-width: 90%;
    }
    .lightbox-header-text {
        font-size: 13px;
        line-height: 27px;
        padding: 50px 0 20px;
    }
    .close-wrapper {
        font-size: 21px;
        right: 20px;
        top: 20px;
    }
    .mobile-close-text {
        display: block;
        margin-top: 20px;
    }
    a.getticket-button {
        height: 44px;
        width: 300px;
        margin: 0 auto;
        line-height: 46px;
        font-size: 15px;
    }
    .button-wrapper {
        max-width: 300px;
    }
    .more-inner {
        position: static;
        transform: none;
    }
}

@media only screen and (max-width:1023px) and (orientation:landscape) {
    .lightbox-inneer-wrapper {
        max-height: 100vh;
        overflow-y: scroll;
    }
    .mobile-close-text {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width:1024px) and (min-width:768px) and (orientation:landscape) {
    .lightbox-inneer-wrapper {
        max-width: 90%;
    }
}