header.gm-navbar {
    z-index: 99999999 !important;
}

.big-modal-overlay{
    height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1008;
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.7); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    pointer-events: none;
    opacity: 0;
}
.big-modal-overlay.active{
    pointer-events: auto;
    opacity:1;
}

.big-modal-logo {
    width: 100%;
    margin-bottom:30px !important;
}

.big-modal-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: calc(50% + 50px);
    left: 50%;
    max-height: calc(100% - 200px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    min-width: 250px;
    background: white;
    -webkit-box-shadow: 10px 10px 172px 21px #000;
    box-shadow: 10px 10px 172px 21px #000;
    z-index: 10000000;
    border-radius: 4px;
    border: 2px solid #fff;
    overflow-y:auto;
}

.big-modal-container::-webkit-scrollbar {
    width: 6px;
}

.big-modal-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 5px;
}

.big-modal-container::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.big-modal-body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear, left top, right top, from(var(--main-color)), to(#4a121a));
    background: -o-linear-gradient(left, var(--main-color), #4a121a);
    background: linear-gradient(to right, var(--main-color), #4a121a);
    padding: 50px 50px;
    -webkit-box-shadow: 0 20px 0 0 linear-gradient(to right, #35adff, #9d73fa);
    box-shadow: 0 20px 0 0 linear-gradient(to right, #35adff, #9d73fa);
    border-radius: 4px 4px 0 0;
    /* border: 1px solid #000;*/
}

.big-modal-body > * {
    margin: 5px 0;
    text-align: center;
    color: white;
    font-family: "Jost", sans-serif;
}

.big-modal-body i {
    font-size: 3em;
}

.big-modal-body .big-modal-title {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 20px;
}

.big-modal-body .big-modal-subtitle {
    font-size: 14px;
    letter-spacing: .3px;
}

.big-modal-footer {
    position: relative;
    text-align: center;
}

.big-modal-footer input {
    outline: none;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px 20px !important;
    font-size: 17px !important;
    font-family: jost !important;
    border: 1px solid #aaa !important;
}


.big-modal-footer input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}


.big-modal-footer input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}


.big-modal-footer input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}


.big-modal-footer input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}


.big-modal-footer input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.big-modal-input-group{
    position:relative;
    padding-bottom: 30px;
}
/*.big-modal-input-group:first-of-type {*/
/*    margin-top:10px;*/
/*}*/
.big-modal-icon-wrapper {
    position: relative;
    background: #f7a700;
    width: calc(100% - 40px);
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Jost';
    font-size: 23px;
    margin: 20px auto 20px auto;
    border-radius: 4px;
    font-weight: 600;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    text-transform: uppercase;
}

.big-modal-icon-wrapper:hover {

    -webkit-filter: brightness(1.1);

    filter: brightness(1.1);
}
.big-modal-icon-wrapper i {
    font-size: 23px;
    color: #000;
    padding-left: 8px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.big-modal-icon-wrapper:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}


.big-modal-input-group label  {
    font-size: 14px;
    color: #872331;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: -22px;
    font-weight: 700;
    font-family: 'Jost';
    letter-spacing: 0px;
}

.big-modal-close {
    position: absolute !important;
    color: #fff;
    z-index: 999999;
    right: 15px;
    top: 10px !important;
    font-size: 20px;
    cursor: pointer;
}
/*.big-modal-input-group:first-of-type {*/
/*    margin-top: 60px;*/
/*}*/


.big-signup{
    padding: 6px 12px;
    background-color: #8a2332;
    border-radius: 8px;
    color: #fff;
}
.smlloginbtn{
    padding: 6px 12px;
    background-color: #f7a700;
    border-radius: 8px;
    color: #fff;
}
.big-forgot-password {
    padding: 6px 12px;
    border: #8a2332 1px solid;
    border-radius: 8px;
    color: #8a2332;
    margin-top: 10px !important;
}
.smlpass{
    margin-top:15px;
}

big-modal-container.big-modal-ticket{
    width: 90%;
    max-width: 750px;
    min-width: 250px;
    max-height: 90vh;
}
.big-modal-ticket .big-modal-body{
    padding:0;
}
.big-modal-banner {
    width: 100%;
}
.big-modal-banner img {
    width: 100%;
}
.big-modal-ticket .ts-date{
    display:-webkit-box !important;
    display:-ms-flexbox !important;
    display:flex !important;
}
.big-modal-ticket .big-modal-footer{
    width: 100%;
    padding-bottom:30px;
}
.big-modal-ticket .ts-seating-section{
    background-color:#ffffff;
}

i.far.fa-times.big-modal-close {
    text-shadow: 2px 2px 15px #000, 1px 1px 5px #000, 0 0 25px #000;
    font-size: 25px;
    -webkit-transition: text-shadow .2s;
    -o-transition: text-shadow .2s;
    transition: text-shadow .2s;
}
i.far.fa-times.big-modal-close:hover {
    text-shadow: 1px 1px 10px #000, 0px 0px 5px #000, 0 0 20px #000;
    font-size: 25px;
}

.bigcart__itembuttons__delete{
    font-size:25px;
}
.big-modal-ticket .big-modal-body{
    background: -webkit-gradient(linear, left top, right top, from(#1e1e1e), to(#343434));
    background: -o-linear-gradient(left, #1e1e1e, #343434);
    background: linear-gradient(to right, #1e1e1e, #343434);
}






@media only screen and (max-height: 800px) {

    .big-modal-body {
        padding:15px 40px;
    }
}




.register-char-prompt{
    font-size: 15px;
    line-height: .5 !important;
    /* margin-bottom: 150px; */
    /* padding-top: 100px; */
    color: #882331;
    font-weight: 500;
}

.big-login,.big-signup{
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.big-forgot-password{
    cursor: pointer;
}


.big-modal.ondemandmodal{
    padding: 0;
    font-family: Jost;
}
.ondemandmodal .big-modal-footer{
    padding: 0;
}
.big-modal-od-img{
    width: 100%;
}
.big-modal-od-img img{
    width: 100%;
}
.big-modal-od-started{
    padding-top: 20px;
}
.big-modal-od-options{
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.big-modal-od-option{
    line-height: 1;
    margin-bottom: 15px;
}
.big-modal-od-options-button{
    padding: 30px 20px;
    background-color: #333;
    color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
}
.option-fullexp .big-modal-od-options-button {
    background-color: #F9A639;
    color: #000;

}
.big-modal-od-options-button-top{
    font-size: 14px;
}
.big-modal-od-options-button-bottom{
    font-size: 20px;
    font-weight: 700;
}
.big-modal-od-options-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.big-modal-od-runtime{
    font-weight: 600;
}
.big-modal-od-numparts{
    font-weight: 600;
}









.subscriptions-modal-body .big-modal-title {
    display: none;
}

.big-sub-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0rem;
    width: 100%;
}


.big-modal-container.big-modal.big-modal-ticket {
    max-width: 900px;
}
.big-modal-banner{
    margin:0;
}

@media only screen and (max-width: 600px) {


    .big-modal-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: fixed;
        top: calc(50% + 50px);
        left: 50%;
        max-height: calc(100vh - 140px);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 98%;
        max-width: 600px;
        min-width: 250px;
        background: white;
        -webkit-box-shadow: 10px 10px 172px 21px #000;
        box-shadow: 10px 10px 172px 21px #000;
        z-index: 10000000;
        border-radius: 4px;
        border: 2px solid #fff;
        overflow-y: auto;
    }
    .big-modal-footer{
        padding: 0px;
    }
}

.loginmodal{
    z-index: 9999999999;
}

input#spektrix-promo.promocode {
    border: none !important;
    padding: 6px !important;
    box-shadow: none !important;
    text-align: center;
    border-bottom: 1px solid #aaa !important;
}

.big-modal-icon-wrapper.big-register {
    position: sticky;
    bottom: 5px;
}
.big-modal-icon-wrapper.big-login {
    position: sticky;
    bottom: 5px;
}