/* ==========================================================================
 * Default settings
 * ========================================================================== */
/* ==========================================================================
 * SkedTape
 * ========================================================================== */
.sked-tape {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sked-tape * {
  box-sizing: inherit;
}

.sked-tape__aside {
  flex: none;
  max-width: 30%;
  min-width: 80px;
  padding: 0 !important;
  border-right: 5px solid transparent;
  position: relative;
}

.sked-tape__locations {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sked-tape__location {
  position: relative;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  line-height: 0.99em;
  padding-top:20px;
  height: 54px;
}

.sked-tape__location:not(:last-child) {
  border-bottom: 1px solid white;
}

.sked-tape__location--forbidden {
  background-image: repeating-linear-gradient(-45deg, rgba(236, 106, 94, 0.5), rgba(236, 106, 94, 0.5) 10px, rgba(255, 0, 0, 0) 10px, rgba(255, 0, 0, 0) 20px);
}

.sked-tape__location-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;

}

.sked-tape__caption {
  display: block;
  height: 24px;
  position: relative;
  top: 0;
  text-align: center;
}

.sked-tape--has-dates .sked-tape__caption {
  height: 48px;
  line-height: 48px;
}

.sked-tape__time-wrap {
  flex: 3 0 auto;
  width: 0;
  padding: 0 !important;
}

.sked-tape__time-frame {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sked-tape__time-frame:focus {
  outline: none;
}

.sked-tape__time-canvas {
  position: relative;
}

.sked-tape__hours {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.sked-tape__hours > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  height: 24px;
  align-items: center;
}

.sked-tape__hours > ul > li {
  flex: none;
  display: block;
  position: relative;
  min-width: 96px;
  width: 96px;
  height: 24px;
  line-height: 24px;
}

.sked-tape__hours > ul > li > time {
  display: block;
  position: absolute;
  left: 0;
  font-size: 13px;
  white-space: nowrap;
}

.sked-tape__hours > ul > li:not(:first-child) > time {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sked-tape__hours > ul > li:last-child {
  width: 0;
  min-width: 0;
}

.sked-tape__hours > ul > li:last-child > time {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.sked-tape__timeline-wrap {
  position: relative;
}

.sked-tape__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border-left: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sked-tape__event-row {
  position: relative;
  height: 54px;
}

.sked-tape__event-row:nth-child(odd) {
  background-color: rgba(0,0,0,0.08);
}

.sked-tape__event-row:first-child {
  border-top: 1px solid #c7c7c7;
}

.sked-tape__event-row:last-child {
  border-bottom: 1px solid #c7c7c7;
}

.sked-tape__event-row:not(:last-child) {
  border-bottom: 0;
}

.sked-tape__gap {
  display: block;
  height: 53px;
  line-height: 1;
  position: absolute;
  z-index: 4;
  white-space: nowrap;
  font-size: 12px;
  pointer-events: none;
}

.sked-tape__gap-text {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: white;
  border-radius: 0.2em;
  padding: 2px;
}


.sked-tape__event {

  transition: 200ms background-color;
  top: 0;
  bottom: 0;
  display: block;
  position: absolute;
  z-index: 3;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px;
  color: #222;

  min-width: 10px;
  cursor: default;
  line-height: 16px;
}

.sked-tape__event:hover {

}

.sked-tape__event--low-gap {

}

.sked-tape__event--low-gap:hover {

}

.sked-tape__event--disabled, .sked-tape__event--disabled:hover {

}

.sked-tape__event-row:first-child .sked-tape__event {
  top: 0;
}

.sked-tape__dummy-event {
  display: block;
  position: absolute;
  border: 2px dashed #e32c1b;
  top: 1px;
  bottom: 0;
  z-index: 4;
  white-space: nowrap;
  font-size: 12px;
  color: white;
}

.sked-tape__dummy-event::before, .sked-tape__dummy-event::after {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  padding: 3px 2px;
  line-height: 1;
}

.sked-tape__dummy-event::before {
  content: attr(data-start);
  right: 100%;
  margin-right: 5px;
}

.sked-tape__dummy-event::after {
  content: attr(data-end);
  left: 100%;
  margin-left: 5px;
}

.sked-tape__center {
  position: relative;
  text-align:center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  padding: 10px 0;
    margin: 4px;
    overflow:hidden;
    border:2px solid #fff;
}
.sked-tape__event:hover{
text-decoration:none;
}
.sked-tape__center:hover{
    cursor:pointer;
    transform: translateY(-50%) scale(1.14);
}

.sked-tape__grid {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.sked-tape__grid > li {
  display: block;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(to right, #c7c7c7 1px, #c7c7c7 1px), linear-gradient(to right, #c7c7c7 1px, #c7c7c7 1px), linear-gradient(to right, #c7c7c7 1px, #c7c7c7 1px), linear-gradient(to right, #c7c7c7 1px, #c7c7c7 1px), linear-gradient(to right, #c7c7c7 1px, #c7c7c7 1px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0 0, 100% 0, 25% 0, 50% 0, 75% 0;
  min-width: 96px;
  width: 96px;
}

.sked-tape__indicator {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e43828;
}

.sked-tape__dates {
  display: flex;
  align-items: stretch;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sked-tape__date {
  display: block;
  margin: 0;
  padding: 0;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  background: #e0e0e0;
}

.sked-tape__date:nth-child(odd) {
  background: #eee;
}

.sked-tape__date:before, .sked-tape__date:after {
  content: attr(title);
  display: block;
  width: calc(50% - 20px);
  height: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sked-tape__date:before {
  float: left;
  margin-left: 15px;
  text-align: left;
}

.sked-tape__date:after {
  float: right;
  margin-right: 15px;
  text-align: right;
}

.sked-tape__date--short:before {
  float: none;
  width: auto;
  margin: 0 5px;
  text-align: center;
}

.sked-tape__date--short:after {
  display: none;
}

/*# sourceMappingURL=jquery.skedTape.css.map */
