.ticket-table select {
    display: block;
    padding: 9px 10px;
    color: #626262;
    background: #F5F5F5;
    border: 1px solid #CFCFCF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: normal;
    outline: none;
    text-indent: 0.01px;
    text-overflow: '';
    z-index: 10;
    margin: 0;
}

.event-title {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    background-color: #4ebd4a;
    color: white;
    font-weight: bold; 
    padding: 10px;
    margin: 10px 0px;  
    width: 90%;
    border-radius: 20px 0px 20px 0px;
    
}

.ticket-table td:nth-child(1) {
    width: 25%;
    max-width: 100px;
    text-align: left;
}

.ticket-table td:nth-child(2) {
    width: 15%;
    text-align: center;
}

.ticket-table td:nth-child(3) {
    width: 20px;
    text-align: center;
}

.ticket-table td:nth-child(4) {
    width: 35%;
    text-align: right;
}

.price {
    font-size: 12px;
}

#total {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
}

.ticket-table tr:nth-child(odd){
    background: #F5F5F5;
}

.table-quota {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.table-quota td {
    width: 20%;
    text-align: center;
}

.diamond {
    background: rgba(111,47,161,0.7);
    color: white;
}

.platinum {
    background: rgba(65,65,65,0.7);
    color: white;
}

.gold {
    background: rgba(255,193,0,0.7);
    color: #333;
}

.silver {
    background: rgba(165,165,165,0.7);
    color: #333;
}

.bronze {
    background: rgba(150,76,4,0.7);
    color: white;
}

.quota-name {
    background: #cccccc;
}

.quota-total {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: bold;
}

/*****************************************
*****************************************/

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

.plane {
  margin: 20px auto;
  max-width: 300px;
}

.cockpit {
  height: 250px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 5px solid #d8d8d8;
}
.cockpit:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  width: 100%;
  border-radius: 50%;
  border-right: 5px solid #d8d8d8;
  border-left: 5px solid #d8d8d8;
}
.cockpit h1 {
  width: 60%;
  margin: 100px auto 35px auto;
}

.exit {
  position: relative;
  height: 50px;
}
.exit:before, .exit:after {
  content: "EXIT";
  font-size: 14px;
  line-height: 18px;
  padding: 0px 2px;
  font-family: "Arial Narrow", Arial, sans-serif;
  display: block;
  position: absolute;
  background: green;
  color: white;
  top: 50%;
  transform: translate(0, -50%);
}
.exit:before {
  left: 0;
}
.exit:after {
  right: 0;
}

.fuselage {
  border-right: 5px solid #d8d8d8;
  border-left: 5px solid #d8d8d8;
}



.seats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.seat {
  display: flex;
  flex: 0 0 2.325581395348837%;
  padding: 5px;
  position: relative;
}

ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*
.seat:nth-child(10),
.seat:nth-child(20),
.seat:nth-child(30) {
  margin-right: 2.325581395348837%;
}


li.row:nth-child(10) {
    margin-bottom: 20px;
}
*/

.seat input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.seat input[type="checkbox"] + label {
    width: 56px;
}

.seat input[type="checkbox"]:checked + label {
  background: black;
  color: white;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  animation-duration: 300ms;
  animation-fill-mode: both;
  font-weight: bold;
}

.seat.wheelchair label {
  background: #3371fd;
}


li[class="seat"] input[type="checkbox"]:disabled + label {
  background: #dddddd;
  text-indent: -9999px;
  overflow: hidden;
}
li[class="seat"] input[type="checkbox"]:disabled + label:after {
  content: "\f007";
  font-family: FontAwesome;
  color: #333;
  text-indent: 0;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.seat input[type="checkbox"]:disabled + label:hover {
  box-shadow: none;
  cursor: not-allowed;
}
.seat label {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5rem;
  padding: 5px 8px;
  background: #fe7e00;
  color: #fff;
  border-radius: 5px;
  animation-duration: 300ms;
  animation-fill-mode: both;
}

.seat.space label {
  background: transparent;
}

.seat.space label:hover {
    cursor: auto;
    box-shadow: none;
}

.seat label:before {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  top: 1px;
  left: 50%;
  transform: translate(-50%, 0%);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}
.seat label:hover {
  cursor: pointer;
  box-shadow: 0 0 0px 2px #5c6aff;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

/*******************************************************
*******************************************************/


.container{
  width: 100%;
  position: absolute;
  z-index: 1;
}
.progressbar li{
  float: left;
  width: 20%;
  position: relative;
  text-align: center;
}



.progressbar{
  counter-reset: step;
  list-style: none;
}
.progressbar li:before{
  content:counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  border: 2px solid #bebebe;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  line-height: 27px;
  background: white;
  color: #bebebe;
  text-align: center;
  font-weight: bold;
}


.progressbar li:after{
  content: '';
  position: absolute;
  width:100%;
  height: 3px;
  background: #979797;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after,
.progressbar li:nth-child(2):after{
  content: none;
}

.progressbar li.active + li:after{
  background: #3aac5d;
 }
 .progressbar li.active + li:before{
 border-color: #3aac5d;
 background: #3aac5d;
 color: white
 }


 .smart-forms,
 .smart-forms .field-label,
 .smart-forms input,
 .smart-forms .switch, 
 .smart-forms .option  {
    font-size: 16px;
 }

.iconc.disabled {
  background-color: transparent !important;
  border: none !important;
}