.mainDiv{
    align-items: center;
    display: flex;
    justify-content: center;
}

.contentPlay{
    display: flex;
    flex-wrap: wrap;
    width: 1080px;
}

.eachPlay{
    padding: 20px;
    border-radius: 2px;
    /*width: 300px;*/
}

.eachPlayDivImg{
    height: 425px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/********CAPTCHA**********/
.g-recaptcha div{
    margin: 0 auto;
    margin-top: 30px;
}

/********BUTACAS**********/
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.patio_off{
    pointer-events: none;
    opacity: 0.4;
    background-color:grey;
}

.textOverPatioOff{
    position: absolute;
    color: black;
    font-size: 40px;
    text-align: center;
    padding: 110px;
    display:none;
}

.patio {
    margin: 0px auto;
    max-width: 700px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
}

.cockpit {
    height: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid #d8d8d8;
}

.cockpit:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    border-radius: 50%;
    border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;
}

.cockpit h1 {
    width: 60%;
    margin: 100px auto 35px auto;
}

.exit {
    position: relative;
    height: 50px;
}

.exit:before,
.exit:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 2px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: green;
    color: white;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.exit:before {
    left: 0;
}

.exit:after {
    right: 0;
}

ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.centerColumn {
    margin: 0 auto;
}

.seats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 700px;
}

.seat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2%;
    flex: 0 0 2%;
    padding: 0px;
    position: relative;
    width: 20px;
    float: left;
    color: white;
}

.seat input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.seat input[type=checkbox]:checked + label {
    /*background: #bada55;*/
    background-image: url("/storage/seat_red.jpg");
    background-size: 21px;
    background-repeat: no-repeat;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.seat input[type=checkbox]:disabled + label {
    /*background: #dddddd;*/
    background-image: url("/storage/seat_gray.jpg");
    background-size: 21px;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}

.seat input[type=checkbox]:disabled + label:after {
    /*content: "X";*/
    text-indent: 0;
    position: absolute;
    top: 1px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.seat input[type=checkbox]:disabled + label:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

.seat label {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1.2rem;
    /*background: #F42536;*/
    background-image: url("/storage/seat_green.jpg");
    background-size: 21px;
    background-repeat: no-repeat;
    border-radius: 5px;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.seat label:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    top: 1px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    border-radius: 3px;
}

.seat label:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 0 0px 2px #5C6AFF;
    box-shadow: 0 0 0px 2px #5C6AFF;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

.centerColumn{
    margin: 0 auto;
}

.balloon{
    border-radius: 5px;
    border: 5px solid #ccc;
    background-color: white;
    padding: 10px;
    width: 200px;
    font-family: 'Indie Flower', cursive;
    font-size: 2em;
    display: none;
}

.balloon:before {
    content:"";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 20px solid #ccc;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    margin: -30px 0 0 0px;
}

.d-none {
    display: none!important;
}

.fileNumberRight{
    float: left;
}

.fileNumberLeft{
    float: right;
}

.stage{
    width: 100%;
    height: 100px;
    background-color: #ccc;
    margin: 25px auto;
    text-align: center;
    display: table;

}

.textStage{
    display: table-cell;
    vertical-align: middle;
    font-family: 'Indie Flower', cursive;
    font-size: 38px;
}

.fileNumberRight, .fileNumberLeft{
    line-height: 20px;
    width: 35px;
    text-align: center;
}

.linkToWeb {
    width: 100%;
    background-color: rgba(214, 211, 211, 0.658);
    position: absolute;
}

.notice {
    width: 100%;
    background-color: rgba(214, 211, 211, 0.658);
    text-align: center;
    color: red;
    height: 80px;
    padding: 10px;
    font-family: Charmonman;
    font-size: 20px;
    font-weight: bold;
}

.textLinkToWeb{
    text-align: center;
    margin: 200px 100px;
    font-size: 30px;
    font-weight: bold;
}
/******************/

html, body {
    background-color: #000;
    color: #636b6f;
    /*font-family: 'Raleway', sans-serif;*/
    font-weight: 100;
    height: 100vh;
    margin: 0;
}

.full-height {
    /*height: 100vh;*/
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    text-align: center;
}

.title {
    font-size: 84px;
}

.links > a {
    color: #636b6f;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.m-b-md {
    margin-bottom: 30px;
}

*, ::before, ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.eventDate{
    width: initial;
    margin-left: 25px;
    display: initial;
}

.crossEventDate{
    background: linear-gradient(to top left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 0.8px), red 50%, rgba(0,0,0,0) calc(50% + 0.8px), rgba(0,0,0,0) 100%);
}

.imageSizeIcon{
    width: 20px!important;
    margin-left: 20px;
    cursor: pointer;
    display: initial!important;
}

.emailSwapTickets{
    padding: 0.0rem 0.75rem;
}


@font-face {
    font-family: 'Central-Avenue';
    src: url('../fonts/central-avenue.otf');
}

.videoWelcome{
    position: absolute;
    width: 1080px;
    max-height: 450px;
    overflow: hidden;
}

.imageWelcome{
    display: none;
}

.textTheatre{
    color: #fff;
    z-index: 10;
    font-family: central-avenue;
    font-size: 84px;
    text-align: left;
    margin-left: 40px;
}

.videoTheatre{
    width: 100%;
}

.plays{
    position: relative;
    width: 100%;
    background-color: white;
}

.enCartel{
    width: 100%;
    font-family: central-avenue;
    font-size: 60px;
    color: #000;
    background-color: white;
}

.footer{
    width: 350px;
    color: white;
    text-align: left;
    font-family: Charmonman;
}

.footer div{
    font-size: 20px;
}

.titleFooter{
    font-size: 45px!important;
}

.iconMedia{
    font-size: 40px;
}

.fa-instagram {
    color: white;
    margin-left: 10px;
}

.fa-instagram:hover {
    filter: invert(0%);
    color: dodgerblue;
}

.fa-facebook {
    color: black;
    filter: invert(100%);
}

.fa-facebook:hover {
    filter: invert(0%);
    color: dodgerblue;
}

.col-2 {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    width: 16.66666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    width: 33.33333333%;
}

.col-5 {
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    width: 41.66666667%;
}

.masInfo{
    position: absolute;
    top: 365px;
    right: 0px;
}

.timeSchedulePlay {
    width: 300px;
}

.headerPlay {
    color: black;
    font-weight: bold;
}

.swiper-slide{
    overflow: hidden;
}

.swiper-slider img{
    width: 100%;
}

.marketing{
    height: 230px;
    margin-top: 10px;
    overflow: hidden;
}


.imageMarketingSize{
    width: 100%;
}

.owl-nav{
    display:block!important;
}

.owl-prev{
    margin-left: -540px!important;
    margin-top: -300px!important;
    position: absolute!important;
}

.owl-next{
    margin-left: 475px!important;
    position: absolute!important;
    margin-top: -300px!important;
}

.textCounterMax{
    text-align: center;
    float: right;
    color: red;
    margin-right: 30px;
}

.imgMoreInfo{
    margin-left: auto;
    margin-right: auto;
    /*margin-top: auto;
    margin-bottom: auto;*/
    display: block;
}

.reservas{
    text-align: center;
    width: 100%;
    background-color: yellow;
    color: red;
    height: 80px;
    padding: 10px;
    font-family: Charmonman;
    font-size: 20px;
    font-weight: bold;
}

.infoEmail{
    width: 100%;
    text-align: center;
    font-size: 24px;
    background-color: #777;
    margin-top: 10px;
    opacity: 0.8;
    color: white;
    bottom: 0;
    z-index: 10000;
    position: fixed;
}

.eventDateCancelled{
    font-size: 9px;
    color: red;
}

/*modal-body y swiperInfo
*/

.contentLegal {
    text-align: justify;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    word-wrap: break-word;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    margin: 1rem;
    padding: 1rem;
}

.titleLegal {
    font-size: 20px;
    margin: 10px;
}

.textLegal {
    font-size: .9rem;
    margin: 10px;
}

@media screen and (max-width:640px) {
    .textOverPatioOff{
        font-size: 20px;
        padding: 60px;
    }
    
    .videoWelcome {
        width: 100%;
        position: relative;
    }

    .textTheatre {
        font-size: 25px;
        margin: 5px 5px 0px 35px;
        position: absolute;
    }

    .enCartel {
        font-size: 25px;
    }

    .mainDiv{
        justify-content: inherit;
    }

    .contentPlay {
        width: inherit;
    }

    .content{
        width: 100%;
    }

    .footer {
        text-align: center;
        width:100%;
    }

    .marketing{
        height: 120px;
    }

    .reservas{
        height: 110px;
    }
}
@media screen and (max-width:1024px) and (min-width:640px) {
    .videoWelcome {
        width: 100%;
        position: relative;
    }

    .textTheatre {
        font-size: 65px;
        margin: 5px 5px 0px 35px;
        position: absolute;
    }

    .enCartel {
        font-size: 50px;
    }

    .mainDiv{
        justify-content: inherit;
    }

    .contentPlay {
        width: inherit;
    }

    .content{
        width: 100%;
    }

    .footer {
        text-align: center;
        width: 100%;
    }

}
