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

* {
  box-sizing: border-box;
}

body {
 
  color: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  margin: 0;
}

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

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

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

.seat {
    background-color: #ffffff;
    height: 32px;
    width: 36px;
    margin: 3px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    display: inline-block;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    /* line-height: 24px; */
    color: #191717;
    padding: 6px;

}





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

    .seat.offline {
        background-color: #ff0000;
        color: #fff;
    }

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

.seat:nth-of-type(2) {
  /*margin-right: 18px;*/
}

.seat:nth-last-of-type(2) {
  /*margin-left: 18px;*/
}

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

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

.showcase {
  background: rgba(0, 0, 0, 0.1);
  padding: 0 85px;
  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;
}

/*.row {
  display: flex;
}*/

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

p.text {
  margin: 5px 0;
}

p.text span {
  color: #6feaf6;
}



@media only screen and (max-width:575px) {

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

    .seat {
        background-color: #ffffff;
        height: 22px !important;
        width: 21px !important;
        margin: 3px;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        display: inline-block;
        font-size: 12px !important;
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
        /* line-height: 24px; */
        color: #191717;
        padding: 2px 3px !important;
    }

}