/* above calendar */
.all-filters-container {
    display: flex;
    justify-content: space-between;
}
.event-filters-wrap {
    display: flex;
    flex-direction: row;
}
.keyword-wrap {
    width: 41%;
    font-size: 16px;
    margin: 0;
}
.keyword-wrap .help-text p:last-of-type {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.keyword-wrap .help-text p:last-of-type span i {
    margin-right: 5px;
}

/* calendar title */
.cal-title-block {
	margin-bottom: 10px;
}
.cal-title-block .calendar-title {
	margin-top: 35px;
	padding: 4px 0;
	background-color: #FAE121;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.cal-title-block .calendar-title .cal-arrow {
	width: 9px;
	height: 18px;
	background-image: url('/assets/images/books-silder-left-arrow-icon.png');
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
	cursor: pointer;
}
.cal-title-block .calendar-title .cal-arrow#cal-next {
	transform: scaleX(-1);
}
.cal-title-block .calendar-title h2 {
	margin: 0 10px;
	color: #083643;
	font-size: 35px;
	letter-spacing: .3px;
	text-align: center;
}
.cal-title-block .calendar-title .calview {
	position: absolute;
	top: calc(50% - (19px / 2));
	right: 60px;
}
.cal-title-block .calendar-title .calview a {
	color: #000;
	font-size: 17px;
	text-decoration: none;
	cursor: pointer;
}
.cal-title-block .calendar-title .calview a:first-of-type {
	margin-right: 30px;
}
.cal-title-block .calendar-title .calview a span:last-of-type {
	color: #000;
	margin-left: 5px;
}

  
/* calendar dates */
.calendar-dates {
	display: flex;
	flex-wrap: wrap;
}
.calendar.list-layout .calendar-dates {
  display: none;
}
.calendar-dates li {
	position: relative;
	width: calc((100% / 7) - 4px);
    min-height: 150px;
	margin-top: 20px;
	margin-right: 4px;
    padding: 20px 10px 0 10px;
    box-sizing: border-box;
    border: 1px solid #8857FF;
}
.calendar-dates li.calendar-day-blanks {
	background-color: #EDEDED;
}
.calendar-dates li:nth-child(7) {
	margin-right: 0px;
}

.calendar-weekdays {
	display: flex;
	margin: 30px 0 10px 0;
}
.calendar.list-layout .calendar-weekdays {
  display: none;
}
.calendar-weekdays li {
	width: calc((100% / 7) - 4px);
	background-color: #083643;
	color: white;
	margin-right: 4px;
	text-align: center;
	font-weight: bold;
}
.calendar-weekdays li:nth-child(7) {
	margin-right: 0;
}

.calendar-day {
	position: absolute;
	top: -17px;
	left: calc(50% - 14px);
}
.calendar-day p {
	background-image: url("/assets/images/ribbons/ribbon-icon-yellow.svg");
}
.calendar-day p, .weekly-row td.empty-space .calendar-day {
	width: 28px;
	height: 30px;
	margin: 0 auto;
	padding-top: 2px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #000;
	text-align: center;
}
.calendar-day-event {
	margin-bottom: 10px;
    padding-left: 14px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    border-bottom: none;
    font-family: "Roboto Slab", sans-serif;
    color: #083643;
    letter-spacing: 0;
	position: relative;
	cursor: pointer;
}
.calendar-day-event::before {
	content: "";
    width: 9px;
    height: 13px;
    background-image: url('/assets/images/ribbons/ribbon-icon-gray.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    position: absolute;
    top: 2px;
	left: 0;
}
.calendar-day-event.Adults::before {
    background-image: url('/assets/images/ribbons/ribbon-icon-blue.svg');
}
.calendar-day-event.Pre-schoolers::before {
    background-image: url('/assets/images/ribbons/ribbon-icon.svg');
}
.calendar-day-event.Kids::before {
    background-image: url('/assets/images/ribbons/ribbon-icon-purple.svg');
}
.calendar-day-event.Teens::before {
    background-image: url('/assets/images/ribbons/ribbon-icon-green.svg');
}
.calendar-day-event.day-hidden {
	display: none;
}
.filtered .calendar-day-event.day-hidden {
  display: block;
}
.calendar-dates li .view-more-events {
	display: block;
	margin: 0 0 10px 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #414141;
    letter-spacing: 0;
    transition-property: all;
	transition-duration: .5s;
}
/* calendar event details */
.event-details .popup-bkgd {
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,.35);
    position: fixed;
    top: 0;
    left: 0;
	z-index: 55;
}
.event-details .popup-content {
    width: 90%;
    max-width: 750px;
    height: auto;
    margin: 0px 10px;
    background-color: #fff;
    border: 5px solid #B1D235;
    padding: 25px 25px 25px 89px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: fixed;
    top: 25%;
    left: calc(50% - (750px / 2));
    right: auto;
    z-index: 60;
}
.event-details .close-event {
    color: #083643;
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
}
.event-details .popup-title {
    margin-bottom: 20px;
    position: relative;
}
.event-details .popup-title h2 {
    margin: 0 0 10px 0;
}
.event-details .popup-title .event-date {
    width: 54px;
    height: 66px;
    margin: 0;
    padding-top: 4px;
    color: #fff;
    background-image: url('/assets/images/ribbons/ribbon-icon-xl.svg');
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: -64px;
}

/* calendar dates list */
.calendar .calendar-dates-list {
  display: none;
}
.calendar.list-layout .calendar-dates-list {
  display: block;
}

/* Calendar header */
.calendar-body {
	display: flex; 
	width: 100%; 
	margin: 0 auto; 
	flex-direction: column;
}
.calendar-header {
	width: 100%;
}
.calendar-header h2 {
  margin: 0 5px 0;
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
}
#event-table {
  padding-bottom: 3em;
}
table {
  width: 100%;
  border-spacing: 5px 25px;
}
.calendar-list {
  display: flex; 
  width: 100%; 
  margin: 0 auto;
  flex-direction: column;
  display:none;
}
.calendar-list.show,
.calendar-table.show {
  display: block;
}
.calendar-table.hide {
  display: none;
}
.calendar-list-day {
  padding: 1em; 
}
.event-list-block:first-of-type .list-event:first-of-type .rounded-edge-line {
  display: none;
}
.list-weekday {
  margin-top: 30.5px;
  font-weight: bold;
  text-transform: uppercase;
}
.list-event {
  padding: .5em 0;
}
.list-event .event-about {
  margin-bottom: 30.5px;
  padding: 25.5px 0 0 51px;
  box-sizing: border-box;
  position: relative;
}
.list-event .event-about h2 {
  margin: 0 0 5px 0;
  cursor: pointer;
  transition: color .3s;
}
.list-event .event-about h2:hover {
  color: #0A4454;
}

.list-event .event-about h3 {
  margin: 0 0 10px 0;
}
.list-event .event-about h3.ribbon {
  width: 36px;
  height: 44px;
  padding-top: 5px;
  background-image: url('/assets/images/ribbons/ribbon-icon-black.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 25.5px;
  left: 0;
}
.list-event.Pre-schoolers .rounded-edge-line {
  background-color: #F46036;
}
.list-event.Pre-schoolers .event-about h3.ribbon {
  background-image: url('/assets/images/ribbons/ribbon-icon.svg');
}
.list-event.Kids .rounded-edge-line {
  background-color: #8857FF;
}
.list-event.Kids .event-about h3.ribbon {
  background-image: url('/assets/images/ribbons/ribbon-icon-purple.svg');
}
.list-event.Teens .rounded-edge-line {
  background-color: #00A678;
}
.list-event.Teens .event-about h3.ribbon {
  background-image: url('/assets/images/ribbons/ribbon-icon-green.svg');
}
.list-event.Adults .rounded-edge-line {
  background-color: #21CEE4;
}
.list-event.Adults .event-about h3.ribbon {
  background-image: url('/assets/images/ribbons/ribbon-icon-blue.svg');
}
.list-event .event-about p {
  padding: 0;
}
.weekly-row td {
  width: 180px;
  height: 150px;
  padding: 10px 10px 0 10px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #8857FF;
  vertical-align: top;
  position: relative;
}
.weekly-row td.empty-space {
  background-color: #EDEDED;
  border: 1px solid #8857FF;
}
.weekly-row td.empty-space .calendar-day {
  display: block;
  background-image: url("/assets/images/ribbons/ribbon-icon-gray.svg");
}
.calendar-day-head {
  background-color: #083643;
  color: #fff;
}
.calendar-day {
  position: absolute;
  top: -17px;
  left: calc(50% - 14px);
}

.event-item .title {
  cursor: pointer;
}
.event-item {
  position: relative;
}
.event-item .title,
.event-item .showtime,
.event-about p {
  margin-bottom: 10px;
  padding-left: 14px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  border-bottom: none;
  font-family: "Roboto Slab", sans-serif;
  color: #083643;
  letter-spacing: 0;
  position: relative;
}
.event-item .title::before {
  content: "";
  width: 9px;
  height: 13px;
  background-image: url('/assets/images/ribbons/ribbon-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}
.event-item .title.Kids::before {
  background-image: url('/assets/images/ribbons/ribbon-icon-purple.svg');
}
.event-item .title.Teens::before {
  background-image: url('/assets/images/ribbons/ribbon-icon-green.svg');
}
.event-item .title.Adults::before {
  background-image: url('/assets/images/ribbons/ribbon-icon-blue.svg');
}
.event-item .showtime {
  font-size: 12px;
}
.event-details {}
.event-details .popup-bkgd {
  width: 100vw;
  height: 100vh;
  background-color: rgba(255,255,255,.35);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55;
}
.event-details .popup-content {
  width: 90%;
  max-width: 750px;
  height: auto;
  margin: 0px 10px;
  background-color: #fff;
  border: 5px solid #B1D235;
  padding: 25px 25px 25px 89px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: fixed;
  top: 25%;
  left: calc(50% - (750px / 2));
  right: auto;
  z-index: 60;
}
.event-details .close-event {
  color: #083643;
  font-size: 24px;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
}
.event-details .popup-content img {
  max-width: 249px;
  max-height: 300px;
  margin: 40px 0 0 25px;
  padding: 0;
  background-image: none;
}
.event-details .popup-title h2 {
  margin: 0 0 10px 0;
}
.event-details .popup-title {
  margin-bottom: 20px;
  position: relative;
}
.event-details .popup-title .event-date {
  width: 54px;
  height: 66px;
  margin: 0;
  padding-top: 4px;
  color: #fff;
  background-image: url('/assets/images/ribbons/ribbon-icon-xl.svg');
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: -64px;
}
.event-details .popup-text .phone {
  margin-top: 22px;
  padding-left: 22px;
  font-style: italic;
  text-decoration: none;
  display: block;
  position: relative;
}
.event-details .popup-text .phone:before {
  content: "";
  width: 16px; 
  height: 19px;
  background-image: url("/assets/images/font-awesome-phone-icon.png");
  background-repeat: no-repeat;
  background-size: 95%;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.phone i {
  margin-right: 5px;
  transform: scaleX(-1);
}
.event-details .popup-text button {
  border: none;
}
.individual_event_view {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.individual-event-details {
  max-width: 70%;
}
.individual-event-details h2 {
  margin: 0 0 5px 0;
}
.individual-event-details h3 {
  margin: 0 0 10px 0;
}

.detailPop {
  display: none;
  height: 150px;
  width: 100px;
  background-color: white;
}


.event-list-block h2.full-date {
  display: none;
}


.all-filters-container {
  display: flex;
  justify-content: space-between;
}
.event-filters-wrap {
  display: flex;
  flex-direction: row;
}
ul.event-filters {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  width: auto;
  padding-right: 30px;
}
ul.event-filters h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
ul.event-filters li {
  padding: 0;
  font-weight: 500;
}
ul.event-filters li:before {
  display: none;
}
/*
ul.event-filters li:first-of-type {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
ul.event-filters li:nth-of-type(2) {
  color: #F46036;
}
ul.event-filters li:nth-of-type(3) {
  color: #8857FF;
}
ul.event-filters li:nth-of-type(4) {
  color: #00A678;
}
ul.event-filters li:nth-of-type(5) {
  color: #21CEE4;
}
*/
ul.event-filters li.event-filter-li {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity .3s;
}
ul.event-filters li.event-filter-li.active {
  opacity: 1;
  pointer-events: all;
}
.keyword-wrap {
  width: 41%;
  font-size: 16px;
  margin: 0;
}
.keyword-wrap .help-text h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
.keyword-wrap .help-text p {
  margin: 0 0 10px 0;
  color: #000;
}
.keyword-wrap .help-text p:last-of-type {
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.keyword-wrap .help-text p:last-of-type span i {
  margin-right: 5px;
}
.keyword-wrap .keyword-search .keyword-input {
  display: inline-block;
  position: relative;
}
.keyword-wrap .keyword-search .keyword-input .close-icon {
  background-color: red;
  padding: 0px 5px;
  box-sizing: border-box;
  border-radius: 50%;
  opacity: 0;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  position: absolute;
  top: 2px;
  right: 3px;
  z-index: 5;
  cursor: pointer;
  pointer-events: none;
  transition: opacity .3s;
}
/*.keyword-active .keyword-wrap .keyword-search .keyword-input.filtered:focus-within .close-icon {*/
.keyword-active .keyword-wrap .keyword-search .keyword-input.filtered .close-icon {
  opacity: 1;
  pointer-events: all;
}
/*
.keyword-wrap .keyword-search {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -9999px;
  left: -9999px;
}
*/
[v-cloak] { opacity: 0; }
.mobile-only {
  display: none;
}
.view-more-events {
    font-weight: 400;
    border-bottom: none;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #414141;
    letter-spacing: 0;
    transition-property: all;
    transition-duration: .5s;
}

@media screen and (max-width: 39.9375em) {
  .mobile-only {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .view-more-events {
    display: none;
  }

  #calendar {
    border-spacing: 0 !important;
  }
  .event-item, .calview, .event-item-view {
    display: none;
  }
  .calview a {
    font-size: 21px;
  }
  .calendar-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 1em;
  }
  .calendar-title h2 {
    font-size: 17px;
  }
  #event-table {
    padding-bottom: 3em;
  }
  table {
    width: 100%; 
  }
  .calendar-list {
    display: flex; 
    max-width: 1024px;
    width: 100%; 
    margin: 0 auto;
    flex-direction: column;
    display:none;
  }
  .calendar-list.show,
  .calendar-table.show {
    display: block;
  }
  .calendar-table.hide {
    display: none;
  }
  .calendar-list-day {
    padding: 1em; 
  }
  .list-weekday {
    display: inline-block;
    font-size: 10px;
    color: #1CA2A2;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 16px;
    text-transform: uppercase;
    border-bottom: 2px solid #1CA2A2;
  }
  .list-event {
    padding: .5em 0;
  }
  .weekly-row td {
    background-color: #f3f3f3;
    height: 100px;
    width: 100px;
    vertical-align: top;
    position: relative;
  }
  .event-item .title {
    cursor: pointer;
  }
  .event-item {
    position: relative;
  }
  .event-item .title,
  .event-item .showtime {
    display: block;
    font-size: 14px;
    font-weight: 400;
    border-bottom: none;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #414141;
    letter-spacing: 0;
  }
  .event-item .showtime {
    font-size: 12px;
  }
  .event-details {
    right: 100%;
    top: 0;
    height: auto;
    width: 200px;
    padding: 5px;
    margin: 0px 10px;
    box-shadow: 0px 0px 3px #888;
    z-index: 1;
    background-color: #fff;
    position: absolute;
  }
  .detailPop {
    display: none;
    height: 150px;
    width: 100px;
    background-color: white;
  }

  .all-filters-container {
    display: flex;
    justify-content: space-between;
  }
  .event-filters-wrap {
    display: flex;
    flex-direction: row;
  }
  ul.event-filters {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    width: auto;
    padding-right: 30px;
  }
  .keyword-wrap {
    width: 40%;
    font-size: 16px;
    margin: 0;
  }
}
