/*********************************************************************************************************************************************
************************************************		MIXINS		 		******************************************************************
*********************************************************************************************************************************************/
/*********** MEDIA BREAKPOINTS **************/
/* Small only */
/* Medium and up */
/* Large and up */
/* Large and up */
.column, .calendar.list {
  width: 100%;
  padding-left: 1.5%;
  padding-right: 1.5%;
  margin: 0; }
  @media screen and (min-width: 768px) {
    .column, .calendar.list {
      margin-left: auto;
      margin-right: auto;
      max-width: 680px; } }
  @media screen and (min-width: 992px) {
    .column, .calendar.list {
      max-width: 860px; } }
  @media screen and (min-width: 1200px) {
    .column, .calendar.list {
      max-width: 1100px; } }

/*****************************************************************
*************** 	INPUT: 		;   			******************
*****************************************************************/
#calendar_year, #calendar_month {
  display: inline-block;
  font-size: 2em;
  font-weight: bold; }

/*****************************************************************
*************** 	CALENDAR FRAME:   			******************
*****************************************************************/
#post_calendar {
  background-color: rgba(0, 0, 0, 0.3); }

#calendar_outer_wrapper {
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px; }

#calendar_container {
  position: relative;
  width: 100%;
  height: auto;
  white-space: nowrap;
  overflow-x: hidden; }

#calendar_container:after {
  display: block;
  clear: both; }

.calendar {
  white-space: normal;
  border-collapse: collapse; }

/*****************************************************************
*************** 	CALENDAR NAV:   			******************
*****************************************************************/
#calendar_title {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 12px; }
  #calendar_title h2 {
    display: inline;
    margin-right: 20px; }

#calendar_nav {
  text-align: center; }
  #calendar_nav .button {
    background-color: transparent;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s; }
  #calendar_nav .button:hover {
    -webkit-filter: brightness(0%);
    -moz-filter: brightness(0%);
    filter: brightness(0%); }
  #calendar_nav #calendar_label_container {
    display: block;
    height: 50px; }
  #calendar_nav .button.calendar_nav_button.previous,
  #calendar_nav .button.calendar_mode.grid {
    margin-left: 0px; }
  #calendar_nav #calendar_nav_buttons,
  #calendar_nav #calendar_mode_buttons {
    display: inline-block;
    height: 40px; }
  @media screen and (min-width: 768px) {
    #calendar_nav #calendar_label_container {
      display: inline-block; }
    #calendar_nav .button.calendar_nav_button.previous,
    #calendar_nav .button.calendar_mode.grid {
      margin-left: 20px; }
    #calendar_nav #calendar_mode_buttons,
    #calendar_nav #calendar_nav_buttons {
      display: inline-block; } }

/*************** CALENDAR MODE **********************/
@media screen and (min-width: 768px) {
  #calendar_label_container {
    width: 250px;
    display: inline-block; } }

.calendar_mode {
  cursor: pointer; }

.calendar_mode.disabled,
.calendar_mode.disabled:hover,
.calendar_mode.disabled:focus {
  cursor: not-allowed; }

#calendar_filter_container {
  display: inline-block;
  margin-left: 20px; }
  #calendar_filter_container select {
    margin-left: 0px; }

#calendar_search {
  display: inline-flex;
  margin-left: 0px; }
  #calendar_search button {
    margin-left: 4px;
    padding: 0px; }
  @media screen and (min-width: 768px) {
    #calendar_search {
      margin-left: 20px; } }

/*************************************************************************
*************** 	SHARED CALENDAR EFFECTS   			******************
*************************************************************************/
.calendar .calendar_post {
  padding-left: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  z-index: 10;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s; }

/*****************************************************************
*************** 	CALENDAR GRID:   			******************
*****************************************************************/
.calendar.grid {
  width: 100%;
  display: table;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0;
  -moz-transition: 0;
  -ms-transition: 0;
  transition: 0;
  border: 1px solid #5C0F8B; }
  .calendar.grid tr td {
    border: 1px solid #5C0F8B;
    box-sizing: border-box; }
  .calendar.grid tr td.off_day {
    border: 1px solid #5C0F8B; }
  .calendar.grid th {
    width: calc(100%/7);
    font-size: 1em;
    font-weight: bold;
    color: #7E7E7E;
    background-color: transparent;
    padding-top: 12px;
    padding-bottom: 12px; }
  .calendar.grid td {
    position: relative;
    height: 130px;
    overflow-x: visible;
    overflow-y: auto;
    margin: 0;
    padding: 0px;
    padding-top: 32px;
    vertical-align: bottom;
    /*****************************************************************
    *************** 	POST LISTINGS: 			******************
    *****************************************************************/ }
    .calendar.grid td .calendar_cell_min_height {
      width: 100%;
      height: auto;
      min-height: 140px;
      margin: 0;
      padding: 0; }
    .calendar.grid td .calendar_date {
      position: absolute;
      display: block;
      top: 3px;
      right: 3px;
      z-index: 100;
      width: 24px;
      height: 20px;
      padding-top: 4px;
      text-align: center;
      background-color: transparent;
      color: #7E7E7E;
      font-size: 0.8em; }
      .calendar.grid td .calendar_date .calendar_date_day_of_week {
        display: none; }
    .calendar.grid td .calendar_posts_container {
      width: 100%;
      height: 100%;
      padding: 0px;
      margin: 0px;
      overflow: hidden; }
    .calendar.grid td .calendar_post {
      padding: 0;
      position: relative; }
      .calendar.grid td .calendar_post .calendar_post_inner {
        display: flex; }
      .calendar.grid td .calendar_post a, .calendar.grid td .calendar_post span {
        display: block; }
      .calendar.grid td .calendar_post .calendar_post_title {
        font-size: 0.8em;
        line-height: 0.9;
        padding-bottom: 3px;
        display: inline-block;
        padding-left: 24px; }
      .calendar.grid td .calendar_post .calendar_post_marker {
        width: 10px;
        height: 10px;
        position: absolute;
        margin: 6px;
        display: inline-block;
        background-color: #5C0F8B; }
      .calendar.grid td .calendar_post .post_time {
        padding-left: 24px;
        display: block;
        font-size: 0.7em;
        margin-top: -6px;
        margin-bottom: 4px; }
  .calendar.grid td.today .calendar_date {
    background-color: transparent;
    border: 2px solid #ABABAB;
    color: #ABABAB; }
  .calendar.grid td.off_day {
    background-color: rgba(0, 0, 0, 0.2); }

/*****************************************************************
*************** 	CALENDAR LIST:   			******************
*****************************************************************/
.calendar.list {
  height: 600px;
  overflow-y: auto;
  position: relative;
  display: block; }
  .calendar.list tbody, .calendar.list tr {
    display: block;
    width: 100%; }
  .calendar.list th, .calendar.list td.off_day {
    display: none; }
  .calendar.list td {
    display: block;
    min-height: 70px;
    border: none;
    border-bottom: 1px solid #5C0F8B;
    position: relative;
    padding-left: 86px; }
    .calendar.list td .calendar_date {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 80px;
      padding-right: 6px;
      padding-top: 6px;
      height: 100%;
      display: block;
      border-right: 1px solid #5C0F8B;
      text-align: right; }
      .calendar.list td .calendar_date .calendar_date_day_of_week {
        font-weight: normal;
        display: block; }
    .calendar.list td .calendar_posts_container {
      width: 100%; }
    .calendar.list td .calendar_post {
      position: relative;
      width: 100%;
      min-height: 80px;
      padding: 0;
      margin: 0; }
      .calendar.list td .calendar_post .calendar_post_inner {
        display: flex; }
      .calendar.list td .calendar_post a, .calendar.list td .calendar_post span {
        display: block; }
      .calendar.list td .calendar_post .calendar_post_title {
        font-size: 0.8em;
        display: inline-block; }
      .calendar.list td .calendar_post .calendar_post_marker {
        width: 10px;
        height: 10px;
        margin: 6px;
        display: inline-block;
        background-color: #5C0F8B; }
      .calendar.list td .calendar_post .post_time {
        display: block;
        font-size: 0.7em;
        margin-top: -6px;
        margin-bottom: 4px;
        padding-left: 4px; }

/*************************************************************************
*************** 	CALENDAR MOVEMENT:   			******************
*************************************************************************/
.calendar.calendar_right, .calendar.calendar_left {
  position: absolute;
  left: 100%;
  top: 0; }

.calendar.calendar_left {
  left: -100%; }

/*************************************************************************************************
**************************************************************************************************
****************************** 				SINGLE PAGE 		    			******************
**************************************************************************************************
*************************************************************************************************/
.event_category {
  font-weight: bold; }

.event_info .start_time, .event_info .event_date {
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 6px; }
.event_info .location {
  font-weight: bold; }

.event_image img {
  max-height: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: auto;
  padding: 12px; }
