* {
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;  
}

body::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.8)
}


.column1 {
  margin-top:250px;
  float: left;
  width: 40%;
  min-width: 220px;
  padding: 10px;
  height: 100%;
}

.column2 {
  margin-top:100px;
  float: left;
  width: 60%;
  padding: 10px;
  height: 100%;
}

.row1:after {
  content: "";
  display: table;
  clear: both;
}

.booking-input {
  margin: 20px 0 0 50px;
}

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

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

.row-number{
  color: #444451;
  font-size: 14px;
  height: 12px;
  width: 15px;
  margin: 13px 5px 10px 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.seat {
  background-color: #787878;
  height: 35px;
  width: 35px;
  margin: 3px;
  border-radius: 10px;
}

.seat-icon {
  background-color: #787878;
  height: 15px;
  width: 15px;
  margin: 3px;
  border-radius: 10px;
}

.seat.selected, .seat-icon.selected {
  background-color: green;
}

.seat.sold, .seat-icon.sold {
  background-color: red;
}

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

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

.seat:not(.sold):hover {
  cursor: pointer;
  transform: scale(1.3);
  background-color: lightblue;
  transition: all 0.2s;
}


.fake-seat {
  background-color: transparent;
  height: 35px;
  width: 35px;
  margin: 3px;
  border-radius: 10px;
}

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


.seat-info-bar {
  display: flex;
  margin-left:20px;
  background: rgba(0, 0, 0, 0.1);
  width:400px;
  padding: 5px 30px;
  border-radius: 5px;
  color: #777777;
  list-style-type: none;
  justify-content: space-between;
}

.seat-info-bar li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.seat-info-bar li small {
  font-size: 14px;
  margin-left: 2px;
}

.row {
  display: flex;
}

.row:nth-of-type(3) {
  margin-bottom: 18px;
}

.row:nth-last-of-type(2) {
  margin-top: 18px;
}

.screen {
  margin: 30px 10px;
  border-top: 60px solid white;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	height: 0;
	width: 415px;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.7));
}

p.text {
  margin: 5px 40px;
}

p.text span {
  color: red;
}

.book-now-btn{
  padding: 5px 15px;
  border: solid transparent;
  border-radius: 15px;
  background-color: #585858;
  color: white;
  margin-left: 280px; 
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.book-now-btn:hover{
  cursor: pointer;
  background-color: rgb(138, 138, 158);
  color: black;
  box-shadow: 0 8px 8px -1px lightblue;
  transform: scale(1.1);
  transition: all 0.3s;
}

.payment-link {
  text-decoration: none;
}

.payment-link:link {
  color:white;
}

.payment-link:visited {
  color: white;
}

/* @media only screen and (max-width: 749px) {
  .screen {
    width: 75vw;
  }
} */

@media only screen and (max-width: 749px) {
  .seat-info-bar, .screen {
    width: 51vh;
  }

  .column1 {
    width: 70vw;
    margin-top: 80px;
  }

  .column2 {
    margin-top: 10px;
    width: 70vw;
  }
}
