.seatmapwrapper {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
}

.seatmap {
  width: 100%;
  background: #f7f7f7 url("/assets/img/seats/aircrafttube2.svg") no-repeat
    center center;
  background-size: cover;
  position: relative;
  background-position: 0% -100%;
  overflow: hidden;
  padding-top: 20px;
  min-height: 1000px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 15px;
}

.panel {
  padding: 30px;
}

.fromleft {
  animation: fromleft 0.5s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.toright {
  animation: toright 0.5s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.seatmapanimation {
  padding-bottom: 500px;
  animation: zoominseatmap 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fadeinanimationfast {
  animation: fadeincols 0.75s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fadeinanimation {
  animation: fadeincols 1s;
  animation-iteration-count: 1;
  animation-delay: 1s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fadeinanimationslow {
  animation: fadeincols 1s;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.scrollinanimationslow {
  animation: scrollin 1s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.scrolloutanimationslow {
  animation: scrollout 0.5s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes zoominseatmap {
  0% {
    background-position: 0px -100%;
  }

  100% {
    background-position: 0px -320px;
  }
}
@keyframes fromleft {
  0% {
    left: -400px;
  }

  100% {
    left: 51px;
  }
}
@keyframes toright {
  0% {
    left: 0px;
  }

  100% {
    left: 500px;
  }
}
@keyframes fadeincols {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeinseats {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeoutseats {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}
@keyframes scrollin {
  0% {
    left: -100%;
  }

  100% {
    left: 0%;
  }
}
@keyframes scrollout {
  0% {
    left: 0%;
  }

  100% {
    left: -100%;
  }
}

.seatcol {
  margin: 0px auto;
  margin-top: 0px;
  padding: 10px 0px 0px 0px;
  width: 290px;
  list-style-type: none;
}

.seatcol li {
  width: 34px;
  height: 34px;
  padding: 0px;
  margin: 0px 3px;
  display: inline-block;
  left: 0;
}

.seatRow::before {
  clear: both;
}

.seatRow {
  margin: 0px auto;
  margin-top: 6px;
  padding: 0px 30px;
  left: -100%;
  position: relative;
  list-style-type: none;
  background: url(/assets/img/seats/windows.svg) top center no-repeat;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.seatRow li {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-basis: 15% !important;
  justify-content: space-around;
}

.seatLegend {
  padding: 0;
  margin: 20px 20px 0px 20px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.seatLegend .seatdiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.seatLegend .seatdiv::after {
  color: #000;
  background: #fff;
  border-radius: 3px;
  font-weight: bold;
  height: inherit;
  opacity: 0.6;
  width: 90%;
  display: block;
  text-align: center;
}
.seatLegend .textA::after {
  content: "A";
}
.seatLegend .textB::after {
  content: "B";
}
.seatLegend .textC::after {
  content: "C";
}
.seatLegend .textD::after {
  content: "D";
}
.seatLegend .textE::after {
  content: "E";
}
.seatLegend .textF::after {
  content: "F";
}
.seatLegend .textG::after {
  content: "G";
}

.seatLegend .textH::after {
  content: "H";
}
.seatLegend .textI::after {
  content: "I";
}
.seatLegend .textJ::after {
  content: "J";
}
.seatLegend .textK::after {
  content: "K";
}
.seatLegend .textL::after {
  content: "L";
}

.seatCategory1 {
  background: url("/assets/img/seats/seatRed.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}
.seatCategory2 {
  background: url("/assets/img/seats/seatYellow.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}
.seatCategory3 {
  background: url("/assets/img/seats/seatGreen.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}
.seatCategory4 {
  background: url("/assets/img/seats/seatBlue.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}
.seatCategory5 {
  background: url("/assets/img/seats/seatDarkBeige.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}
.seatCategory6 {
  background: url("/assets/img/seats/seatBeige.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}

.seatXL {
  height: 70px;
}

.seatXLRowNumber {
  height: 70px;
}
.seatBlocked {
  background: url("/assets/img/seats/seatWhite.svg") bottom left no-repeat !important;
  background-size: 90% !important;
}

.seatBlank {
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 7px;
  margin: 0px !important;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.transfree {
  animation: fadeoutseats 0.75s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.blockfree {
  animation: fadeinseats 0.75s;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.seatWait {
  opacity: 0.2;
}
/* Seatselection */
.seatFree:hover {
  cursor: pointer;
}
.seatBuyed:hover {
  cursor: pointer;
}

.seatselectionwrapper {
  display: block;
  position: absolute;
  width: auto;
  z-index: 999 !important;
  min-height: 50px;
  overflow: hidden;
  filter: drop-shadow(0.5px 0.5px 9px #8c8c8c);
}

.selectheader {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  border-top: 2px solid #ffffff;
}

.selectheader label {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  display: block;
  font-size: 11px;
  color: #ededed;
  line-height: 13px;
}

.selectheaderleft {
  border-right: 0px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
}

.selectheaderright {
  border-left: 0px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
}

.passengerseatlist {
  margin: 0px;
  padding: 0px;
  background: #ffffff;
  list-style-type: none;
}

.passengerseatlist li {
  padding: 12px 5px 5px 7px;
  margin: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14px;
  border-bottom: 1px solid #efefef;
  display: block;
  float: left;
  width: 100%;
  background: #fff;
}

.passengerseatlist li:last-child {
  border-bottom: none !important;
  margin: 0px !important;
}

.seatselectabort {
  background: #ababab;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 12px;
  padding: 5px;
  display: block;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
}

.seatselectabort a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 14.5px solid transparent;
  border-right: 14.5px solid transparent;
  border-bottom: 14.5px solid #ffffff;
}

.rownumber {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
}

.bottomText {
  position: absolute;
  bottom: 5%;
  width: 100%;
  text-align: center;
  color: #333;
}
.labelsmall {
  margin-top: 3px !important;
  font-size: 12px;
  color: #ececec;
  display: block;
}
.selectheaderspan {
  display: block;
  float: left;
}

ul.listexst {
  padding: 0px;
  margin: 0px 0px 20px 0px;
  list-style-type: mone;
}
ul.listexst:after {
  clear: both;
}
ul.listexst li {
  background: none;
  display: block;
  width: 100%;
  float: none;
  height: auto !important;
  margin: 1px 0px;
  padding: 0px 0px 0px 25px;
}

ul.listexst li:before {
  display: inline-block;
  content: "\f05e";
  font-family: "fontawesome";
  font-size: 16px;
  color: #686868;
  margin-left: -25px;
  width: 25px;
}
.seatBlankSpace {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/assets/img/seats/seatBlank.svg") bottom left no-repeat;
  background-size: 100%;
  height: 50px;
}

.seatFig {
  width: 32px;
}
