@import url('https://fonts.googleapis.com/css?family=Roboto');


.container-fluid {
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden
}
.navigator {display: none;}
.hour-column {
  width: 10%;
  float: left;
}
.event-column {
  width: 90%;
  float: right;
  height: 1566px;
  position: relative;
}
.headings {
  width: 100%;
  border-bottom: 1px solid rgba(218,218,218, 0.5);
}

.heading {
  display: inline-block;
  padding: 15px 0;

}

.empty.heading {
  text-align: center;
}

.empty.heading span {
  display: none;
  text-align: center;
  transition: color 400ms ease;
}

.empty.heading a {
  text-align: center;
  text-decoration: none;
}
.empty.heading a:hover span {
  color: #000;
}

.weekdays {
  width: 100%;
  display: inline-block;
  float: right;
}

.weekdays .heading {
  width: 14.28571428571429%;
  float: left;
  text-align: center;
}

.week-view {
  height: 1500px;
  position: relative;
}

.week-grid {
  position: absolute;
  top: 51px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hours-grid {
  width: 100%;
  float: right;
  border: 1px solid rgba(218,218,218, 1);
  height: 1500px;
  top: 0;
  border-top: 0;
  z-index: 1;
}
.grid {
  height: 60px;
  border-bottom: 1px solid rgba(218,218,218, 0.5);
}
.grid:last-child {
  border-bottom: 0;
}

.week-body {
  width: 100%;
  height: 100%;
  background: #fff
}

.hours {
/*   width: 10%;
  float: left; */
  height: 100%;
  backround: #fff;
}

.events {
  width: 100%;
  float: right;
  height: 1500px;
  border-left: 1px solid rgba(218,218,218, 1);
  position: relative;
}
.hour-column {
      z-index: 2000;
    background: #fff;
}
.hour-column .headings {
  height: 51px;
  text-align: center;
}

.hr {
  text-align: right;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
  opacity: 0.5;
  max-height: 60px;
  border-bottom: 1px solid rgba(218,218,218, 1);
}
.event-outer {
  width: 100%;
  position: relative;
  height: 100%;
}
.event-cont {
  position: relative;
  height: 100%;
  width: 14.28571428571429%;
  float: left;
  border-right: 1px solid rgba(218,218,218, 1);
}

.event-cont:last-child {
  border-right: 0;
}

.event {
  width: 100%;
  padding: 9px 10px;
  min-height: 30px;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  margin-top: -9px;
}
.event p {
  font-size: 14px;
  transition: all 0.4s ease;
  text-overflow: ellipsis;
  z-index: 20;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.event span.bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  display: block;
  transition: all 0.4s ease;
  z-index: 0;
}

.event:hover span.bar {
  width: 100%;
}

.event:hover p {
  color: #fff;
}

.navigator a {
    display: inline-block;
    padding: 15px;
    border-radius: 3px;
    background: rgba(218,218,218, 0.3);
    transition: color 400ms ease;
    color: rgba(0,0,0,0.5);
  }
.navigator a:hover {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 650px) {
/*   .events {
        overflow-x: scroll;
  }
  .event-outer {
    width: 800px !important;
  } */
  
/*   .event-cont, .weekdays .heading {
    width: 50%;
  } */
  
/*   .non-visible {
    display: none;
  } */
  
  .hour-column {
    position: absolute;
    width: 60px;
  }
  .event-column {
    width: 800px;
    float: left;
/*     margin-left: 60px; */
  }
 
  .navigator {
    display: block;
    padding: 10px 0;
  }
  
  .go-right {
    text-align: right;
  }
}