@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");

/** {
  box-sizing: border-box;
}*/

bodyasientos {
/*  background-color: #242333;*/
/*  color: #fff;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  padding: 100px 100px 100px 100px;
  font-family: "Lato", sans-serif;
  margin: 0;
}

.movie-container {
  margin: 20px 0;
}

.movie-container select {
  background-color: #000;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  margin-left: 10px;
  padding: 5px 15px 5px 15px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.containerasientos {
  perspective: 1000px;
  margin-bottom: 30px;
}

.seat {
  background-color: green;
  height: 26px;
  width: 32px;
  margin: 3px;
  font-size: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.pasillo {
  background-color: white;
  height: 26px;
  width: 32px;
  margin: 3px;
  font-size: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.seatdis {
  background-color: lightblue;
  height: 26px;
  width: 32px;
  margin: 3px;
  font-size: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}



.seatdis.selected{
  background-color: #444451;//Gris
}

.seatdis.sold{
  background-color: red;
  pointer-events: none;
}

.seat.selected{
  background-color: #444451;//Gris
}

.seat.sold{
  background-color: red;
  pointer-events: none;
}

.
/*.seat:nth-of-type(6) {
  margin-right: 18px;
  background-color: darkorange;
}


.seat:nth-last-of-type(6) {
  margin-left: 18px;
  background-color: darkorange;
}*/


.seatdis:not(.sold):hover {
  cursor: pointer;
  transform: scale(1.2);
}
.seat:not(.sold):hover {
  cursor: pointer;
  transform: scale(1.2);
}

.showcase .seat:not(.sold):hover {
  cursor: default;
  transform: scale(1);
}

.showcase .seatdis:not(.sold):hover {
  cursor: default;
  transform: scale(1);
}

.showcase {
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  color: #777;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}

.showcase li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.showcase li small {
  margin-left: 2px;
}

.rowasientos {
  display: flex;

  

/*Fuente: <a href="https://recursivos.com/css/separacion/" title="CSS: Separación">CSS: Separación</a>*/
}

.screen {
  background-color: black;
  height: 120px;
  width: 100%;
  margin: 15px 0;
  transform: rotateX(-48deg);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}

p.text{
    margin: 5px 0;
}

p.text span{
    color: black;
}