.equinox {
   margin-bottom: 50px;
}
.equinox .calendar-header {
   border-bottom: 1px solid #efefef;
}
.equinox .calendar-header:after,
.equinox .calendar-header:before {
   content: " ";
   display: table;
}
.equinox .calendar-header:after {
   clear: both;
}
.equinox .calendar-actions {
   float: left;
   padding-left: 5px;
   padding-bottom: 5px;
}
.equinox .calendar-actions button,
.equinox .load {
   padding: 0px 3px;
}
.equinox .month-label {
   text-align: center;
   font-weight: bold;
   font-size: 10px;
}
.equinox .month-weeks {
   border: 1px solid #efefef;
   border-top: none;
   border-bottom-left-radius: 4px;
   border-bottom-right-radius: 4px;
}
.equinox .week {
   margin-left: -1px;
   position: relative;
}
.equinox .week:first-child .day {
   border-top: none;
}
.equinox .week-events {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   list-style: none;
   padding: 0;
   margin: 0;
}
.equinox .week-events .slot {
   margin: 0;
}
.equinox .week-events .slot > ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: table;
   table-layout: fixed;
   width: 100%;
}
.equinox .week-events .slot > ul > li {
   box-sizing: border-box;
   display: table-cell;
   margin: 0;
   padding-left: 9px;
   padding-right: 8px;
   width: 14.28571%;
}
.equinox .week-events .slot > ul > li.span-1 {
   width: 14.28571%;
}
.equinox .week-events .slot > ul > li.span-2 {
   width: 28.57143%;
}
.equinox .week-events .slot > ul > li.span-3 {
   width: 42.85714%;
}
.equinox .week-events .slot > ul > li.span-4 {
   width: 57.14286%;
}
.equinox .week-events .slot > ul > li.span-5 {
   width: 71.42857%;
}
.equinox .week-events .slot > ul > li.span-6 {
   width: 85.71429%;
}
.equinox .week-events .slot > ul > li.span-7 {
   width: 100%;
}
.equinox .week-events .event .start-time {
   display: none;
}
.equinox .week-events .event .title {
   white-space: nowrap;
}
.equinox .days-container {
   display: table;
   table-layout: fixed;
   width: 100%;
}
.equinox .days-container .day {
   box-sizing: border-box;
   display: table-cell;
   width: 14.28571%;
   padding: 4px;
   border-left: 1px solid #efefef;
   border-top: 1px solid #efefef;
}
.equinox .week-header {
   text-transform: uppercase;
}
.equinox .week-header .day {
   text-align: center;
   background-color: #fff;
   text-overflow: ellipsis;
   overflow: hidden;
}
.equinox .date.outside-month .date-label {
   color: #d7d7d7;
}
.equinox .date.current-date {
   background-color: #fcaa86;
   position: relative;
}
.equinox .date.current-date:before {
   content: "";
   position: absolute;
   display: block;
   left: -1px;
   top: -1px;
   right: -1px;
   bottom: -1px;
   border: 1px solid #ceeef9;
   z-index: 1;
}
.equinox .date.current-date .date-label {
   color: #fff;
}
.equinox .date-label {
   text-align: right;
   padding-bottom: 3px;
}
.equinox .date-events {
   list-style: none;
   padding: 0;
   margin: 0;
   min-height: 68px;
}
.equinox .event-container {
   box-sizing: border-box;
   margin: 0;
}
.equinox .event-container.continuation .event {
   margin-left: -8px;
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
   border-left: none;
   padding-left: 17px;
}
.equinox .event-container.continued .event {
   margin-right: -8px;
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
   padding-right: 14px;
}
.equinox .event {
   text-align: center;
   display: block;
   box-sizing: border-box;
   background-color: #666;
   border-radius: 5px;
   box-shadow: 0 1px 1px fade(#efefef, 80%);
   color: #fff;
   position: relative;
   z-index: 2;
}
.equinox .event .start-time {
   display: none;
   float: right;
   color: #bbb;
   margin-left: 4px;
}
.equinox .event .title {
   display: block;
   overflow-x: hidden;
   text-overflow: ellipsis;
}
.equinox .holiday {
   background-color: #29cfff;
   color: #fff;
   float: left;
}
