@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

* {
  box-sizing: border-box;
  /* overflow-x: hidden; */
  overflow-y: hidden; 
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
  background-color: #000;
  overflow: hidden;
}


.modal-backdrop {
  background-color: rgb(0, 0, 0) !important;
}

.modal-header {
  border-bottom: none;
  border-top: none;
}

.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh !important;
  min-width: 100vw !important;
  margin: 0;
  padding: 0;
}

.modal {
  background-color: rgba(0, 0, 0) !important;
  overflow: hidden;
}

.modal-content {
  background-color: rgba(0, 0, 0) !important;
  border: none;
  box-shadow: none;
  outline: none;
  height: calc(100vh - 30px);
  max-width: 80%!important;
}


modal-header {
    border-bottom: 0px !important;;
}


/*.offcanvas-top {
  background-color: rgb(33, 37, 41, 0.7) !important;
} */

  p {
    font-size: small;
  }

  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #label1 {

    position: absolute;
    max-width: 70%;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 901;
  }

  #myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100vw;
    min-height: 100%;
    object-fit: cover;
  }


  .play-btn {
    width: 94px;
    height: 94px;
    margin: 0 auto;
    background: radial-gradient(#ff880000 50%, rgba(255, 255, 255, 0.6) 52%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
    animation: pulse-animation 2s infinite;
  }

  .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid rgb(0, 0, 0);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 3s;
    animation: pulsate-btn 3s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(130, 197, 255, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }

  .content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
  }

  #myBtn {
    background-color: rgba(246, 191, 106, 0.65);
    color: rgb(0, 0, 0);
    position: fixed;
    bottom: 25%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 903;
  }

  #myBtn:hover {
    background: rgb(107, 74, 44);
    color: rgb(255, 255, 255);
  }

#framyframe {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2147483647;
}

/**** REVISADO HASTA AQUI *****/

    .blinkyblink {
        text-decoration: none;
        transition: all 0.5s;
        font-size: 2.5em;
        color: #228DFF;
        font-family: Pacifico;
        -webkit-animation: neon2 1.2s ease-in-out infinite alternate;
        animation: neon2 1.2s ease-in-out infinite alternate;
    }

        @-webkit-keyframes neon2 {
            from {
            text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF, 0 0 70px #228DFF, 0 0 80px #228DFF, 0 0 100px #228DFF, 0 0 150px #228DFF;
            }

            to {
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF;
            }
        }

        @keyframes neon2 {
            from {
            text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF, 0 0 70px #228DFF, 0 0 80px #228DFF, 0 0 100px #228DFF, 0 0 150px #228DFF;
            }

            to {
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF;
            }
        }

        .pulse {
            animation: pulse-animation 2s infinite;
        }

        @keyframes pulse-animation {
            0% {
            box-shadow: 0 0 0 0px rgba(255, 208, 0, 0.4);
            }

            100% {
            box-shadow: 0 0 0 20px rgba(255, 153, 0, 0.226);
            }
        }

        .offcanvas-size-xl {
            --bs-offcanvas-width: min(95vw, 600px) !important;
        }

        .pulse {
    animation: pulse-animation 2s infinite;
  }

  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(255, 217, 0, 0.4);
    }

    100% {
      box-shadow: 0 0 0 20px rgba(255, 136, 0, 0.425);
    }
  }



@keyframes pulse-red-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.719);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 154, 154, 0.144);
  }
}

/** Revisado hasta aqui **/

      .profile-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        position: absolute;
        margin: 20px;
        bottom: 10px;
        right: 10px;
        z-index: 904;
      }

      .profile-circle img {
        width: 100%;
        height: auto;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

        .iframe-container{
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; 
        height: 0;
        }
        .iframe-container iframe{
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
        }


  #collapse-toggler {
      position:fixed;
      width: 60px;
      height: 60px;
      border-radius: 50px;
      top: 30px;
      right: 20px;
      color: rgb(70, 131, 244);
      font-size: 38px;
      z-index: 9990 !important;
      animation: pulse-animation 2s infinite;
      justify-content: center;
      align-items: center;
  }

  .hidden {
  display: none !important;
}

#collapse-toggler.hidden {
  display: none;
}

/* Revisado hasta aqui */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px;
    /* background-color: rgba(255, 255, 255, 1); */
    /*color: rgb(27, 106, 253);*/
    color: rgb(246, 191, 106);
    /* background-color: rgb(246, 150, 106)!important; */
    background-image: linear-gradient(to top right, rgba(0,0,0,0.95), rgba(100,100,100,0.8), rgba(0,0,0,0.65));
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    animation: pulse-animation 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    }
  

      .float_2 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 20px;
    /* background-color: rgba(255,255,255,1); */
    color: rgb(246, 191, 106);
    background-image: linear-gradient(to top right, rgba(0,0,0,0.95), rgba(100,100,100,0.8), rgba(0,0,0,0.65));
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    animation: pulse-animation 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
  }

        .float_3 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 200px;
    right: 20px;
    /* background-color: rgba(255, 255, 255, 1); */
    color: rgb(246, 191, 106);
    background-image: linear-gradient(to top right, rgba(0,0,0,0.95), rgba(100,100,100,0.8), rgba(0,0,0,0.65));
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    animation: pulse-animation 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .float_3.open {
  animation: pulse-red-animation 2s infinite;
}

        .float_4 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 280px;
    right: 20px;
    /* background-color: rgba(255, 255, 255, 1); */
    /* color: rgb(246, 191, 106);
    background-image: linear-gradient(to top right, rgba(0,0,0,0.95), rgba(100,100,100,0.8), rgba(0,0,0,0.65)); */
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    animation: pulse-animation 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.float_4:active {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 280px;
    right: 20px;
    background-color: rgba(0, 183, 255, 0.2);
    /* color: rgb(27, 106, 253);; */
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }

   .float_1_2 {
    position: fixed;
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    color: rgb(246, 191, 106);
    border-radius: 50px;
    text-align: center;
    font-size: 1.5rem;
    z-index: 2147483647 !important;
    animation: pulse-animation 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    #share-collapse {
      position: absolute;
      top: 200px;
      right: calc(100% - 60px);
  }

      .bi_x {
      font-size: 48px;
      cursor: pointer;
      margin-left: 1rem;
    }

    .swiper-container {
      width: 100vw;
      z-index: 2147483645 !important;
      overflow-y: hidden;
      background-color: yellowgreen;
    }

    .swiper-slide {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

    .scrollable-wrapper {
      max-height: 35vh;
      position: relative;
      overflow-x: hidden;
      overflow-y: scroll;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    
    .scrollable-wrapper::-webkit-scrollbar {
      display: none;
    }

    .glide__bullet--active {
      width: 18px !important;
      height: 15px !important;
      border-radius: 3px;
      border-top:none;
      border-bottom:none;
      border-left: 5px;
      border-right: 5px;
      background-color: rgb(70, 131, 244);
      transition: background 0.3s ease !important;
      /* border-radius: 50% !important; */
      cursor: pointer !important;
  }


  .ctarandom1 {

    background: linear-gradient(rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0.47)), url("../assets/img/cta-bg2.jpg");
    background-repeat: none;
    background-size: cover;
    height: 220px;
    z-index: -200;
  }

  .ctarandom1 h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    margin: 0 3rem;


  }

  .ctarandom1 .ctabutton {
    border: 2px solid #fff;
    padding: 10px 25px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 6rem;
  }

   /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 18px;
  background: rgba(227, 137, 37);
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 12px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: rgba(227, 137, 37);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: rgba(227, 137, 37);
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Modal Footer */

.footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-info h3 span {
  color: rgba(227, 137, 37);
}

.footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

.social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #E50019;
  color: #151515;
  text-decoration: none;
}

.obese-text {
  font-family: 'Varela Round', sans-serif;
  font-weight: bolder;
}

.video_col_arrange {
  overflow-x: hidden;
  min-width: 100%;
}

.carousel_package {
  overflow-x: hidden;
  max-width: 100%;
}

.facebook_circle {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: white;
  color: #1c0f0e;
}

.twitter_circle {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: white;
  color: #1c0f0e;
}

.insta_circle {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: white;
  color: #1c0f0e;
}

.email {
  color:#ffcd6b;
}

.phone {
  color:#ffcd6b;
}

.email .a .i {
  color:#ffcd6b;
}

.phone .a .i {
  color:#ffcd6b;
}

.offcanvas-header {
  background-color:#000;
}

.offcanvas-footer {
  background-color:#000;
}

@media (max-width: 755px) {
  .carousel-indicators {
    margin-top: -200px;
  }
  
  .carousel-caption {
    margin-bottom: -20px;
  }
  
  .carousel-inner {
    margin-bottom: -100px;
  }
}

@media (max-width: 755px) {
  .offcanvas {
    z-index: 99999999;
    min-width: 100vw;
    background-color: #000;
  }
}

@media (min-width: 756px) {
  .offcanvas{
    background-color: #000;
    min-height: 100vh;
  }
}


@media (min-width: 756px) {
  .offcanvas-footer {
    background-color: #000;
    max-height: 64px;
    bottom: 0;
    position: absolute;
    width: 100%;
  }
}

.disco-ball {
  position: fixed;
  width: 60px;
  top:10px;
  height: 60px;
  right: 20px;
  color: rgb(0, 0, 0);
  background-color: rgba(227, 137, 37, 0.726) !important;
  border: 1.25px solid black;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  }

  @media (min-width: 756px) {
    .form-lg {
      width: 100%;
    }
    .scrollable-wrapper2 {
      max-height: 85vh;
      position: relative;
      overflow-x: hidden;
      overflow-y: scroll;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
  
    .scrollable-wrapper2::-webkit-scrollbar {
      display: none;
    }
    .scrollable-wrapper4 {
      max-height: 100vh;
      position: relative;
      overflow-x: hidden;
      overflow-y: scroll;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
  
    .scrollable-wrapper4::-webkit-scrollbar {
      display: none;
    }
  }

  @media (min-width: 756px) {
    .kill_overlay {
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .kill_overlay::-webkit-scrollbar {
      display: none;
    }
  }

  @media (min-width: 756px) {
    .offcanvas-body .ptsd.custom-ptsd {
      background-color: #000;
      max-height: 64px;
      width: 100%;
      left: 0;
      bottom: 0;
      position: absolute;
    }
  }
  
  @media (max-width: 755px) {
    .offcanvas-body .ptsd.custom-ptsd {
      background-color: #000;
      max-height: 64px;
      width: 100%;
      left: 0;
      bottom: 0;
      padding-bottom: 15px;
      position: absolute;
  }

  .hatefull_iframes {
    min-width: 80vw;
    height: 57vh !important;
    margin-left: auto;
    margin-right: auto;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hatefull_iframes::-webkit-scrollbar {
    display: none;
  }
}

#overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* semi-transparent black */
  z-index: 2147483646; /* high z-index to ensure it's on top */
}

#card {
  max-height: 80vh;
  max-width: 80vw;
  background: white;
  position: absolute;
  top: 50%; /* centering the card vertically */
  left: 50%; /* centering the card horizontally */
  transform: translate(-50%, -50%); /* adjust for exact centering */
  border-radius: 10px; /* rounded corners, optional */
  box-shadow: 0px 0px 15px rgba(30, 30, 30, 0.2); /* shadow for depth */
}

#theaterMap {
  position: relative;
}

.seat-row {
  display: flex;
}

.theater-layout {
  width: 100%;
  height: auto;
}

.seat-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.seat {
  position: absolute;
  padding: 10px;
  border: 1px solid gray;
  margin: 5px;
  font-size: xx-small;
  text-align: center;
  cursor: pointer;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  overflow: hidden
  z-index: 2147483647;
}

.seat.selected {
  background-color: blue;
}

.seat.occupied {
  background-color: red;
  cursor: not-allowed;
}

