/* Lato font import */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #242333;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: 'Lato', sans-serif;
  margin: 0;
}



/* Movie container styling */
.movie-container {
  margin: 20px 0;

}

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

.container {
  /* Change the perspective of the screen so it seems 3D */
  perspective: 455px;
  margin-bottom: 30px;
}



/* Seat styling */
.seat {
  background-color: #444451;
  height: 12px;
  width: 15px;
  margin: 3px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.seat.selected {
  background-color: #6feaf6;
}

.seat.occupied {
  background-color: #fff;
}

.seat:nth-of-type(2) {
  
}

.seat:nth-last-of-type(2) {
  
}

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



/* Showcase styling */
.showcase .seat:not(.occupied):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;
}

.showcase li small {
  margin-left: 2px;
}

.row {
  display: flex;
}



/* Screen styling */
.screen {
  background-color: #fff;
  height: 70px;
  width: 100%;
  margin: 15px 0;
  transform: rotateX(-45deg);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}



/* Text styling */
p.text {
  margin: 5px 0;
}

p.text span {
  color: #6feaf6;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
.hidden {
  opacity:0;            transition: opacity 0.5s;
}
.poster-container {
max-width:300px;
}

.poster {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 0.2);
}
.poster__img {
  height: 300px;
  width: 100%;
}
.poster__info {
  background: #fff;
  padding: 25px 25px 40px;
}
.poster__title {
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 0.4em;
}
.poster__text {
  font-size: 0.9em;
  color: #999;
  font-weight: 300;
}

a {
  display: block;
  width: 250px;
  background: #27ae60;
  text-align: center;
  margin: 30px auto;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 300;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.18);
  transition: 0.3s;
}
a:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.18);
}