@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}
.cartelera_image{
	width:100%;
	max-height: 537px;
	min-height: 537px;
}
.cartelera_image_det{
	width:100%;
	max-height: 537px;
	
}


/* NAVBAR */
 .header{
  padding: 1rem;
  background-color: #f7f7f7;
  
  margin-bottom: 1rem;
}
.navbar{
  padding: 1rem;
    background-color: #f7f7f7;
  border: 0px solid #333;
  margin-bottom: 1rem;
}
.navbar_title{
  color: #000000;
}
.navbar svg{
  stroke: #000;
}
.navbar_userIcon{
  background-color: #ffffff;
}

/* CARTELERA */

.cartelera_title{
  color: #074634;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-align: center;
  margin: 0;
  margin-bottom: 2rem;
}
.cartelera_container{
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 1280px) {
  .cartelera_container{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .cartelera_container{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .cartelera_container{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.cartelera_card{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 500px;
}
.cartelera_card_image{
  object-fit: cover;
  color: transparent;
  width: 100%;
  height: 400px;
  display: block;
  vertical-align: middle;
}
.cartelera_card_bottom_cotainer{
  padding: 15px;
}
.cartelera_card_title{
    color: rgb(31 41 55);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0;
    margin-bottom: 0.5rem;
}
.cartelera_card_category{
    color: rgb(30 64 175);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: rgb(219 234 254);
    border-radius: 9999px;
}
.cartelera_card_runtime{
  color: rgb(75 85 99);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* COMPRAS */

  .compras_title{
    color: #074634;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    text-align: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .compras_container{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    padding: 1rem;
    gap: 2rem;
    width: 100%;
  }
  .compras_container>section{
    width: 40%;
	background-color: #ffffff;
  }
  @media (max-width: 1024px) {
    .compras_container{
      flex-direction: column;
      align-items: center;
    }
    .compras_container>section{
      width: 100%;
    }
  }
  .compras_movie_image{

  }
  .compras_movie_title{
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0;
    margin-bottom: 0.5rem;
  }
  .compras_movie_description{
    color: rgb(55 65 81);
  }


/* STEPBAR */

.stepbar_step_buttom{
display:none;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: rgb(107 114 128);
  background-color: rgb(255 255 255);
  border-color: rgb(209 213 219);
  border-width: 2px;
  border-radius: 9999px;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.stepbar_current_step_buttom{
  background-color: #074634;
  border-color: #d7e6e1;
  color: #ffffff;
}
.stepbar_step_bar{
  height: 0.25rem;
  flex: 1 1 0%;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgb(209 213 219);
  z-index: 10;
}
.stepbar_current_step_bar{
  background-color: #084734;
}

.stepbar_step_description{
  color: rgb(55 65 81);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}

.step-btn-prev{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color:  #084734;
  border-width: 1px;
  border-color: #084734;
  border-radius: 9999px;
  float: left;
}
.step-btn-next{
//display:none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color:  #084734;
  border-width: 1px;
  border-color: #084734;
  border-radius: 9999px;
  float: right;
}

/* PASO 1: TicketDateTime */

.ticketDateTime_Month{
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
}
.ticketDateTime_Date{
  color: rgb(255 255 255);
  background-color:#d7e6e1;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}
.ticketDateTime_Current_Date {
  background-color: #084734;
}
.ticketDateTime_DropDuwn{
  border-width: 1px;
  border-radius: 0.25rem;
  border-color: #e5e7eb;
  background-color: #ffffff;
}
.ticketDateTime_DropDuwn>button{
  background-color: #ffffff;
}
.ticketDateTime_DropDuwn svg{
  stroke: #000;
}
.ticketDateTime_Cinema_Name{
  padding: 1rem;
  background-color: rgb(255 255 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #000
}
.ticketDateTime_Language{
  margin-bottom: 1rem;
  color: #000
}
.ticketDateTime_RunTime{
  color: #084734;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-color: #084734;
  border-width: 1px;
  border-radius: 9999px;
}
.ticketDateTime_Current_RunTime{
  background-color: #084734;
  color: #ffffff;  
}

/* PASO 2: TicketType */

.ticketType_Description{
  color: #000000;
}
.ticketType_button{
  background-color: rgb(229 231 235);
  border-radius: 9999px;
  padding: 0.5rem;
}
.ticketType_quantity{
  margin: 1rem;
  color: #000
}
.step-btn-cancel
  {
	 
    padding: .25rem .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    color:  #084734;
    border-width: 1px;
    border-color:  #084734;
    border-radius: 9999px;
    margin: auto;

/* PASO 3:  TicketSeat*/
.ticketSeat_Seat{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 200ms;
  color: rgb(255 255 255);
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-width: 1px;
  border-radius: 0rem;
  height: 2rem;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) and (max-width: 1500px) {
  .ticketSeat_Seat {
    height: 1.3rem;
    width: 1.3rem;
    font-size: 0.7rem;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .ticketSeat_Seat {
    height: 1.2rem;
    width: 1.2rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 600px) {
  .ticketSeat_Seat {
    height: 0.95rem;
    width: 0.95rem;
    font-size: 0.55rem;
  }
}


.ticketSeat_Seat_Allowed{
  background-color: rgb(141 141 141);
  cursor: pointer;
}
.ticketSeat_Seat_Not_Allowed{
  background-color: rgb(239 68 68);
  cursor: not-allowed;
}
.ticketSeat_Seat_Current{
  background-color: rgb(104 136 243);
  cursor: pointer;

}
.ticketSeat_Seat_Disabled{
  background-color: rgb(185, 185, 185);
  cursor: not-allowed;
}

/* PASO 4:  TicketRedirect*/



/* FOOTER */

.footer_container{
  margin-top: 3rem;
  width: 100vw;
  height: fit-content;
}

.footer_container_relative{
  position: absolute;
  bottom: 0;
  left: 0;
}