map area {
  cursor: pointer;
}

#eventMap_wrap {
  position: relative;
  text-align: center;
}

.seat-detail {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 250px;
  width: 250px;
  max-width: 450px;
  background-color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  display: none;
  color: black;
  z-index: 99999;
  padding: 5px;
}

.seat-detail.open {
  display: flex;
}

.seat-detail .seat-detail__title {
  font-size: 20px;
  font-weight: bold;
  color: black;
  width: 100%;
  text-align: center;
}

.seat-detail__img {
  width: 100% !important;
  height: auto;
}

.seat-detail__available {
  font-size: 14px;
  text-align: center;
  color: #04a904;
  display: none;
}

.seat-detail__available.no {
  color: red;
  display: none;
}

.select-event-area {
  position: relative;
  margin-bottom: 20px;
}

.select-eventList {
  position: absolute;
  width: 100%;
  max-width: 100%;
  max-height: 500px;
  overflow-y: scroll;
  top: 100px;
  left: 0;
  background-color: rgb(128, 128, 128);
  display: none;
  z-index: 99999;
  flex-direction: column;
  transition: 1s ease-in all;
  background-color: rgba(241, 198, 207, 1);
}

.select-eventList.open {
  display: flex;
}

.eventList-events {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.event-item__poster {
  max-width: 100%;
}

.event-item__poster img {
  max-width: 100%;
}

.select-event-date {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.select-event-date input {
  font-size: 24px;
}

.selected-event {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  box-shadow: 1px 1px 10px 0 #000;
  background: rgba(241, 198, 207, 1) !important;
}

#eventMap_displayImage {
  box-shadow: none !important;
  max-height: 900px !important;
}

.selected-event__poster {
  position: relative;
  height: 100px;
  display: flex;
  max-width: 100px;
}

.selected-event__poster img {
  margin-bottom: 0px !important;
}

.selected-event__info {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  color: #333;
  padding: 5px;
}

.selected-event__date {
  padding: 0 5px;
}

.selected-event__date span {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #333;
}

.selected-event__date span#selected-event_name {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: pre-wrap;
  text-overflow: ellipsis;
  max-width: 40vw;
  min-width: 100%;
  color: #333;
}

.selected-event__date span.highlight {
  font-weight: bold;
  font-size: 20px;
}

.select-event__name {
  text-align: center;
  font-size: 22px;
}

.btn-open-eventList {
  background: rgb(203, 6, 6);
  background: linear-gradient(186deg, rgba(203, 6, 6, 1) 7%, rgba(182, 0, 0, 1) 45%, rgba(149, 0, 0, 1) 95%);
  padding: 0.4em 1.2em;
  color: white;
  font-weight: 700;
  width: auto;
  text-align: center;
  margin-right: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  border-radius: 4px;
  width: 70%;
  font-size: 11px;
  margin-left: 10px;
}

.event-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #52d7ff14;
  opacity: .7;
  top: 0;
  left: 0;
  display: none;
  z-index: 999999;
  filter: blur(1px);
}

.event-loader .event-loader__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}

.event-loader__content img {
  width: 100px;
  box-shadow: none !important;
}

#mainContent>div.col-full.eventMapSectionWrap>div.select-event-area>div.select-eventList.open>div.eventList-events {
  background-color: #f1c6cf;
}

#mainContent>div.col-full.eventMapSectionWrap>div.select-event-area>div.select-eventList.open>div.select-event-date {
  background-color: #f1c6cf;
}

.eventMapSectionWrap {
  position: relative;
}

.eventMap_wrap__mobile {
  display: none;
}

.seat-detail.mobile {
  display: none;
}

.mobileMapZoom_areaNav {
  display: none;
}

.zoomist-slider {
  background-color: #aad4e105;
}

.event-loader[data-section="mobile"] {
  display: none;
}

#mobileBookButtonDiv {
  display: none;
}

#mobileBookButton {
  background-color: #04a904;
  width: fit-content;
  height: fit-content;
  padding: 0.4em 1.2em;
  color: white;
  font-weight: 700;
  border-radius: 9px;
  margin-bottom: 15px;
  margin-top: 15px;
  display: inline-block;
  border: 2px solid white;
}

#mobileUnavailableDiv {
  display: none;
}

#mobileEventImageDiv {
  display: none;
}

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

  #mobileUnavailable {
    background-color: #600 !important;
  }

  #mobileBookButtonDiv {
    width: 100%;
    text-align: center;
    display: none;
  }

  #mobileUnavailableDiv {
    width: 100%;
    text-align: center;
    display: none;
  }

  #mobileEventImageDiv {
    width: 100%;
    text-align: center;
    display: none;
  }

  .selected-event__date {
    padding-top: 10px;
  }

  #eventMap_wrap__mobile {
    display: block;
  }

  #eventMap_wrap__mobile .points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 50%;
  }

  #eventMap_wrap__mobile .points i {
    width: 100%;
  }

  .pi-slider-images-thumbnails .points {
    position: relative;
    left: unset;
    height: auto;
    right: unset;
    bottom: unset;
  }

  .pi-slider-images-thumbnails .buttons {
    top: 30%;
  }

  .mobileMapZoom_areaNav {
    display: block;
    width: 100%;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .mobileMapZoom_areaNav,
  .seat-detail.mobile,
  .zoomist-wrapper,
  #mobileEvent {
    background-color: transparent;
  }

  .mobileMapZoom_areaNav .activeArea,
  .mobileMapZoom_areaNav {
    color: white;
  }

  #mobileEvent {
    background-color: #52d7ff14;
  }

  .seat-detail.mobile {
    display: flex;
    position: relative;
    width: 100%;
    top: unset;
    left: unset;
  }

  .mobileMapZoom_areaNav .activeArea {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    text-align: center;
  }

  #mobileEvent {
    position: relative;
    z-index: 1;
  }

  .zoomist-zoomer {
    display: none;
  }

  .mobileMapZoom_areaNav .btnNav {
    padding: 0 10px;
    font-size: 30px;
  }

  .selected-event {
    flex-direction: column;
  }

  .selected-event__info {
    flex-direction: column;
  }


  .eventList-events {
    grid-template-columns: 1fr 1fr;
  }

  .eventList-event-item {
    text-align: center;
    text-wrap: pretty;
    max-width: 100%;
  }

  .eventList-events {
    padding: 10px;
  }

  .event-item__eventName h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    max-width: 40vw;
    min-width: 100%;
  }

  .event-item__eventName {
    display: flex;
    justify-content: center;
  }

  .select-eventList {
    top: unset;
    z-index: 10;
  }

  .selected-event__info {
    display: grid;
    grid-template-columns: .3fr 1fr 1fr 1fr;
    column-gap: 5px;
    justify-content: center;
    font-size: 15px;
    align-items: flex-start;
    padding: 5px;
  }

  .selected-event__poster {
    height: unset;
    width: 80px;
    margin-left: 5px;
  }

  .selected-event__date span {
    height: 100%;
    display: inline-block;
  }

  .btn-open-eventList {
    width: 100%;
    font-size: 10px;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .select-event-area {
    margin-bottom: 10px;
  }

  .select-eventList {
    max-height: 66vh;
  }

  .eventList-event-item {
    background-color: #e68b9d5c !important;
    ;
    padding: 4px;
    border: 1px solid gray;
  }

  .seat-detail__available.yes {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
  }

  .btnMobileBook {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background: #04a904;
    height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }

  .btnMobileBook .seat-detail__price {
    margin-right: 5px;
  }

  .seat-detail {
    padding-top: 0;
  }

  .seat-detail__img {
    width: 60% !important;
  }

  .btnMobileBook.danger {
    background: rgb(153, 4, 4);
  }

  .event-loader[data-section="mobile"] {
    display: block;
  }
}