* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

tspan {
  white-space: pre
}

.s0 {
  fill: #d3d4d4
}

.t1 {
  font-size: 25px;
  fill: #808285;
  font-weight: 700;
  font-family: "OpenSans-Bold", "Open Sans"
}

.s2 {
  fill: #f1f1f2;
  stroke: #d1d3d4;
  stroke-miterlimit: 10;
  stroke-width: .4
}

.s3 {
  fill: #ffffff;
  stroke: #d1d3d4;
  stroke-miterlimit: 10;
  stroke-width: .4
}

.t4 {
  font-size: 15px;
  fill: #808285;
  font-weight: 700;
  font-family: "OpenSans-Bold", "Open Sans"
}

.s5 {
  fill: #4040e7;
  stroke: #d1d3d4;
  stroke-miterlimit: 10;
  stroke-width: .4
}

.t6 {
  font-size: 15px;
  fill: #ffffff;
  font-weight: 700;
  font-family: "OpenSans-Bold", "Open Sans"
}

.s7 {
  fill: #1b3ad8
}

.s8 {
  fill: #c45eef;
  stroke: #d1d3d4;
  stroke-miterlimit: 10;
  stroke-width: .4
}

.t9 {
  font-size: 12px;
  fill: #808285;
  font-weight: 700;
  font-family: "OpenSans-Bold", "Open Sans"
}

/* SVG Styles ends here */

svg {
  cursor: move;
}

.seating-section {
  cursor: pointer;
}

.seating-section:hover {
  cursor: auto;
}

.seating-section:hover #section-wrapper #Layer,
.seating-section.seating-section--selected #section-wrapper,
.show--seating #section-wrapper #Layer {
  fill: #fff;
}

.seating-section:hover #seats-wrapper,
.seating-section.seating-section--selected #seats-wrapper,
.show--seating #seats-wrapper {
  display: block !important;
}

.seating-planner-viwport .seat-decorations {
  display: none;
}

.seating-planner-viwport.show--seating .seat-decorations {
  display: block;
}

.seating-section:hover #section-wrapper text {
  display: none;
}

.seat {
  fill: #1b3ad8;
  cursor: pointer;
  transition: all 0.2s;
}

.seat.unavailable {
  fill: #bfbdbd;
  cursor: auto;
}

.seat:not(.unavailable):hover {
  fill: #fff;
  stroke: #1b3ad8;
  stroke-width: 2px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

.seating-section:hover .seat-decorations {
  display: block !important;
}

.seat.seat--selected {
  fill: #fff;
  stroke: #1b3ad8;
  stroke-width: 2px;
}

.svg-wrapper {
  overflow: hidden;
}

.checkmark-decoration {
  stroke: #1b3ad8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  fill: none;
  pointer-events: none;
}

.seat-plan-zoom {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 112px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.seat-plan-zoom-control-container-in,.seat-plan-zoom-controller-container-out {
  position: relative;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.04),0 0 2px rgba(0,0,0,.16);
  box-shadow: 0 2px 5px rgba(0,0,0,.04),0 0 2px rgba(0,0,0,.16);
  background-color: #ffffff;
}

.seat-plan-zoom-control-container-common {
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%
}

.seat-plan-zoom-control-container-in {
  top: 0
}

.seat-plan-zoom-controller-container-out {
  top: 16px
}

.seat-plan-zoom-control {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer
}

.seat-plan-zoom-control-in:after,.seat-plan-zoom-control-in:before,.seat-plan-zoom-control-out:before {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #666;
  content: ''
}

.seat-plan-zoom-control-in:before {
  margin-left: -7px;
  margin-top: -1px;
  width: 14px;
  height: 2px
}

.seat-plan-zoom-control-in:after {
  margin-top: -7px;
  margin-left: -1px;
  width: 2px;
  height: 14px
}

.seat-plan-zoom-control-out:before {
  margin-top: -1px;
  margin-left: -5px;
  width: 10px;
  height: 2px
}

.svg-pan-zoom_viewport {
  transition: transform 0.05s linear;
}

.tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  font-family: "Open Sans";
  filter: drop-shadow(0px 1px 10px rgba(0,0,0,0.2));
  padding: 9px;
  border-radius: 8px;
  pointer-events: none;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip.show {
  opacity: 1;
}

.tooltip-tail {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.tooltip-tail svg {
  fill: #fff;
}

@media (max-width: 767px) {
  svg {
    width: 100%;
    max-height: 100vh;
  }
}

@media (max-width: 520px) {
  svg {
    width: 100%;
    max-height: 700px;
  }
}