.eventContainer{
  display: flex;
  flex-direction: row;
}
.eventSearchContainer{
  width: 350px;
  margin-right: 25px;
}
#eventListContainer{
  flex: 1;
}
#eventListContainer .eventTitle{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#eventListContainer iframe{
  width: 100%;
}
.eventListItem{
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  position: relative;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
}
.eventListItem.topEvent{
  border-color: red !important;
}
.eventTopIcon{
  width: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 0px 5px 0px 0px;
}
.eventDateDisplay{
  background-color: #f6f6f6;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 10px;
  margin: 5px 0px;
}
.eventListTitleContainer{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 10px;
}
.eventListTitle{
  font-size: 17px;
  font-weight: 600;
}
.eventListDetail{
  flex: 1;
}
.eventListDetail .row{
  height: 100%;
}
.detailAction{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detailLink{
  color: #c63d4e;
  cursor: pointer;
  text-decoration: none;
}
.detailLink:hover{
  color: black;
}
.eventMap{
  height: 300px;
}
#detailMap{
  height: 300px;
}
#adImgSlider {
  background-color: black;
  margin-bottom: 10px;
}
.fullScreenSlider {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
#adImgSlider .carousel-item {
  text-align: center;
}
.adImgs{
  height: 300px;
  max-width: 100%;
  object-fit: contain;
}
.fullScreenSlider .adImgs:hover {
  transform: none !important;
}
.fullScreenSlider .adImgs {
  transition: 0.5s all;
  height: 100vh !important;
}
.adImgs:hover {
  cursor: pointer;
  transform: scale(1.03);
  transition: 0.5s all;
}
.imgCountStatus {
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 10;
  color: white;
  font-weight: 600;
}
.carousel-control-next, .carousel-control-prev {
  opacity: 1 !important;
}
.arrowWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 30px;
  height: 30px;
  color: red;
  border-radius: 50%;
  background-color: white;
}
.closeFullScreen {
  position: absolute;
  top: 30px;
  right: 45px;
  font-size: 25px;
  color: white;
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 540px) {
  .eventContainer{
    flex-direction: column;
  }
  .eventSearchContainer{
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

/* ------ event calendar css ----------- */
.ui-datepicker,
.ui-datepicker table,
.ui-datepicker tr,
.ui-datepicker td,
.ui-datepicker th {
    margin: 0;
    padding: 0;
    border: none;
    border-spacing: 0;
}
.ui-datepicker {
  display: none;
  padding: 9px;
  cursor: default;
  font-size: 14px;
  text-transform: uppercase;
  font-family: Tahoma;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}
.ui-datepicker-header {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
}

.ui-datepicker-title { text-align: center; }

.ui-datepicker-month {
  position: relative;
  padding-right: 15px;
}

.ui-datepicker-year {
  padding-left: 8px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: -2px;
    padding: 5px;
    cursor: pointer;
}
 
.ui-datepicker-prev {
    left: 0;
    padding-left: 0;
}
 
.ui-datepicker-next {
    right: 0;
    padding-right: 0;
}
 
.ui-datepicker-prev span,
.ui-datepicker-next span{
    display: block;
    width: 5px;
    height: 10px;
    text-indent: -9999px;
    background-image: url(../img/arrows.png);
}
 
.ui-datepicker-prev span { background-position: 0px 0px; }
 
.ui-datepicker-next span { background-position: -5px 0px; }
 
.ui-datepicker-prev-hover span { background-position: 0px -10px; }
 
.ui-datepicker-next-hover span { background-position: -5px -10px; }

.ui-datepicker-calendar th {
  padding-top: 15px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: normal;
  width: 14%;
}

.ui-datepicker-calendar td {
  padding: 0 6px;
  text-align: center;
  line-height: 29px;
  width: 14%;
}

.ui-datepicker-calendar .ui-state-default {
  display: block;
  width: 35px;
  outline: none;
  text-decoration: none;
  color: black;
  border: 1px solid transparent;
}
.ui-datepicker-calendar .ui-state-active {
  border: 1px solid rgb(158, 123, 123);
  border-radius: 4px;
}
.ui-datepicker-calendar td.active a {
  color: white;
  background: #af3f3f;
  border-radius: 4px;
}
