/*************************************************************************
 * GitHub: https://github.com/yenchiah/timeline-heatmap
 * Version: v2.3.2
 *************************************************************************/


 .timeline-heatmap {
  height: 100%;
  text-align: center;
  position: relative;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: black;
  border-spacing: 3px;
  border-collapse: separate;
}

.timeline-heatmap td {
  font-size: 12px;
  min-width: 50px;
  max-width: 50px;
  position: relative;
}

.timeline-heatmap .timeline-heatmap-value {
  height: 75%;
  background-color: #dcdcdc;
}

.timeline-heatmap .timeline-heatmap-label td {
  color: rgb(30, 30, 30);
}

.timeline-heatmap .block {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: white;
  background-image: none;
  outline: none;
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.timeline-heatmap .block:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.timeline-heatmap .block-click-region {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: transparent;
  background-image: none;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
}

.timeline-heatmap .block-click-region:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.timeline-heatmap .selected-block {
  box-shadow: 0px 0px 0px 5px rgba(77, 144, 255, 0.8) inset;
}

.timeline-heatmap .selected-block-no-color {
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5) inset;
  background-color: rgba(0, 0, 0, 0.3);
}

.timeline-heatmap .left-arrow {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: white;
  background-image: none;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
}

.timeline-heatmap .left-arrow:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.timeline-heatmap .left-arrow-click-region {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: transparent;
  background-image: none;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
}

.timeline-heatmap .left-arrow-click-region:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.timeline-heatmap .left-arrow-click-region:after {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #888888;
}

.cursor-default {
  cursor: default !important;
}
