 /*# sourceMappingURL=maps/style.css.map */
  .clearfix::after,
  .calendar ol::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  /* ================
  Calendar Styling */
  .calendar {
    border-radius: 10px;
  }
  
  .month {
    font-size: 2rem;
  }
  
  @media (min-width: 992px) {
    .month {
      font-size: 3.5rem;
    }
  }
  
  .calendar ol li {
    float: left;
    width: 20%;
  }
  
  .calendar .day-names {
    border-bottom: 1px solid #eee;
  }
  
  .calendar .day-names li {
    padding-bottom: 0.5rem;
  }
  
  .calendar .days li {
	height: 100%;
	padding-bottom: 1rem;
	border-bottom: 3px solid #eee;
  }
  
  .calendar .days li .date {
	width: 36px;
	height: 36px;
	border-radius: 50% !important;
    margin: 0.5rem 0;
	display: flex;
	justify-content: center !important;
	align-items: center !important;
  }
  
  .calendar .days li .event {
    font-size: 0.75rem;
    padding: 0.4rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4rem;
    margin-bottom: 1px;
  }
  
  .calendar .days li .event.span-2 {
    width: 200%;
  }
  
  .calendar .days li .event.begin {
    border-radius: 1rem 0 0 1rem;
  }
  
  .calendar .days li .event.end {
    border-radius: 0 1rem 1rem 0;
  }
  
  .calendar .days li .event.clear {
    background: none;
  }
  
  .calendar .days li:last-child {
    border-bottom: none;
  }
  
  .calendar .days li.outside .date {
    color: #ddd;
  }

@media (min-width: 576px) { 
	.calendar .days li {
		height: 100%;
		padding-bottom: 1rem;
		border-right: 3px solid #eee;
	}
	.min-w-screen-xl {
		min-width: 1200px;
	}
}

@media (min-width: 992px) { 
	.min-w-screen-xl {
		min-width: 1024px;
	}
}

@media (max-width: 576px) { 
	.calendar .days .the-days {
		width: 100%;
		padding-right: 1.5rem;
		border-left: 6px solid rgba(0, 0, 0, 0);
	}
	.calendar .days .the-days.active {
		border-left: 6px solid #A1D1BF;
	}
	.calendar .days {
		height: auto !important;
	}
}