@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Work+Sans:400,700');
.calendar {
  width: 100%;
  margin-bottom: 10px;
  color: #333;
}
.calendar * {
  margin: 0px;
  padding: 0px;
  line-height: 1em;
}
.calendar a {
  overflow: inherit;
}
.calendar a:hover {
  opacity: 1.0;
}
.calendar .today_info {
  margin-bottom: 25px;
}
.calendar .today_info h4 {
  padding: 5px;
  text-align: center;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: rgba(34, 172, 56, 0.9);
}
.calendar .today_info h4 .year {
  font-size: 0.9em;
  color: #333;
  opacity: 0.8;
}
.calendar .today_info h4 .month {
  font-size: 0.9em;
  color: #333;
  opacity: 0.8;
}
.calendar .today_info h4 .date {
  font-size: 3em;
  display: block;
  text-align: center;
  color: #333;
}
.calendar .today_info h4 .week {
  position: absolute;
  right: 50px;
  top: 3em;
  display: block;
  text-align: right;
  font-size: 0.8em;
  color: #333;
}
.calendar .today_info .info_data {
  position: relative;
  padding: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.calendar .today_info .info_data dl {
  margin: 0px auto;
  width: 143px;
  font-family: 'Work Sans', sans-serif;
  line-height: 1.3em;
}
.calendar .today_info .info_data dl:after {
  content: "";
  clear: both;
  height: 0px;
  width: 0px;
  display: block;
}
.calendar .today_info .info_data dl:hover {
  background-color: rgba(34, 172, 56, 0.9);
}
.calendar .today_info .info_data dl:hover dt a {
  color: #333;
}
.calendar .today_info .info_data dl:hover dd a {
  color: #333;
}
.calendar .today_info .info_data dl dt {
  clear: both;
  float: left;
  width: 80px;
  padding: 3px;
}
.calendar .today_info .info_data dl dt a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333;
}
.calendar .today_info .info_data dl dd {
  float: left;
  text-align: right;
  width: 50px;
  padding: 3px;
  font-weight: bold;
  font-size: 1.2em;
}
.calendar .today_info .info_data dl dd a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333;
}
.calendar .today_info .info_caption {
  padding: 10px;
  font-size: 0.8em;
  line-height: 1.3;
}
.calendar .fc-toolbar {
  background-color: rgba(34, 172, 56, 0.9);
  padding: 10px;
  border-radius: 4px 4px 0 0 ;
}
.calendar .fc-toolbar:after {
  content: "";
  clear: both;
  display: block;
  height: 0px;
  width: 0px;
}
.calendar .fc-toolbar button {
  background-color: rgba(34, 172, 56, 0.9);
  border: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}
.calendar .fc-toolbar .fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 0.6em;
}
.calendar .fc-toolbar .fc-left {
  float: left;
}
.calendar .fc-toolbar .fc-left .fc-icon-left-single-arrow {
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}
.calendar .fc-toolbar .fc-center {
  text-align: center;
}
.calendar .fc-toolbar .fc-center h2 {
  color: #ffffff;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
}
.calendar .fc-toolbar .fc-right {
  float: right;
}
.calendar .fc-toolbar .fc-right .fc-icon-right-single-arrow {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.calendar .fc-scroller {
  min-height: 170px;
  overflow: visible !important;
  overflow-y: visible !important;
  overflow-x: visible !important;
}
.calendar .fc-scroller > .fc-day-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}
.calendar .fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}
.calendar .fc-view-container {
  height: 240px;
  padding: 5px 5px 10px 5px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
}
.calendar .fc-view-container:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  /* border:0.5em solid transparent; */
  /* border-right:0.5em solid @base-color; */
  position: absolute;
  left: -1px;
  top: 0px;
  transform: rotate(45deg);
  margin-left: -0.5em;
  margin-top: -0.5em;
}
.calendar .fc-view-container:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  /* border:0.5em solid transparent; */
  /* border-left:0.5em solid @base-color; */
  position: absolute;
  right: -1px;
  top: 0px;
  transform: rotate(-45deg);
  margin-right: -0.5em;
  margin-top: -0.5em;
}
.calendar .fc-view-container table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.calendar .fc-view-container table .fc-head .fc-head-container table {
  margin-top: 5px;
}
.calendar .fc-view-container table .fc-head .fc-head-container table thead {
  display: block;
  width: 100%;
}
.calendar .fc-view-container table .fc-head .fc-head-container table thead:after {
  content: "";
  clear: both;
  display: block;
  height: 0px;
  width: 0px;
}
.calendar .fc-view-container table .fc-head .fc-head-container table thead tr {
  display: block;
  width: 98%;
  margin-left: 1%;
}
.calendar .fc-view-container table .fc-head .fc-head-container table thead tr .fc-day-header {
  display: block;
  float: left;
  width: 14%;
  text-align: center;
  color: #333;
  padding-bottom: 5px;
  font-size: 0.7em;
  font-family: 'Work Sans', sans-serif;
}
.calendar .fc-view-container table .fc-head .fc-head-container table thead tr .fc-day-header.fc-sat {
  color: #479;
}
.calendar .fc-view-container table .fc-head .fc-head-container table thead tr .fc-day-header.fc-sun {
  color: #944;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row {
  position: relative;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-bg {
  z-index: 1;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-bgevent-skeleton table {
  height: 100%;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-highlight-skeleton {
  z-index: 3;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-highlight-skeleton table {
  height: 100%;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton {
  height: 100%;
  position: relative;
  background: none;
  /* in case <td>s are globally styled */
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table {
  position: relative;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead {
  display: block;
  position: relative;
  width: 100%;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead:after {
  content: "";
  clear: both;
  display: block;
  height: 0px;
  width: 0px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr {
  display: block;
  margin-left: 1%;
  width: 98%;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td {
  width: 14%;
  display: block;
  float: left;
  position: relative;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-day-top {
  font-family: 'Work Sans', sans-serif;
  width: 14%;
  text-align: center;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-day-top a {
  margin: 2px 2px;
  display: block;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-day-top.fc-sat {
  color: #225577;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-day-top.fc-sun {
  color: #772222;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-other-month {
  color: #999999;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-other-month.fc-sat {
  color: #99ccee;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-other-month.fc-sun {
  color: #ee9999;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-today {
  font-weight: bold;
  font-size: 1.1em;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table thead tr td .fc-day-number {
  position: absolute;
  display: block;
  height: 1em;
  line-height: 1em;
  margin: auto 0px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody {
  width: 100%;
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr {
  width: 98%;
  margin-left: 1%;
  display: block;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td {
  width: 14%;
  display: block;
  float: left;
  position: relative;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container a {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 3px solid #9ab;
  margin: 0px 2px;
  height: 100%;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title {
  top: 100%;
  position: absolute;
  display: none;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 7px;
  margin-top: 8px;
  z-index: 20;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #bbb;
  border-left: 1px solid #bbb;
  transform: rotate(45deg);
  position: absolute;
  top: -6px;
  background-color: #fff;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title.left {
  left: 0px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title.left:after {
  left: 6px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title.center {
  left: -59px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title.center:after {
  left: 70px;
  margin-left: -6px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title.right {
  right: 0px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title.right:after {
  right: 6px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl {
  width: 132px;
  font-family: 'Work Sans', sans-serif;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl:after {
  content: "";
  clear: both;
  height: 0px;
  width: 0px;
  display: block;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl:hover {
  background-color: rgba(34, 172, 56, 0.9);
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl:hover dt a,
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl:hover dd a {
  color: #333;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl dt {
  clear: both;
  float: left;
  width: 80px;
  padding: 3px;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl dt a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl dd {
  float: left;
  text-align: right;
  width: 40px;
  padding: 3px;
  font-weight: bold;
}
.calendar .fc-view-container table .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-content .fc-title dl dd a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333;
}
