.day-timeline-container {
    overflow-x: hidden;
    width:100%;
}
.day-timeline-content-container {
    width: 100%;
    transform-origin: left;
    padding-left: 5px;
}
.day-timeline-item-row {
    display: block;
    transform-origin: center;
    margin-bottom: 10px;
    height: 60px;
    overflow-x:hidden!important;
    overflow-y: hidden!important;
    width:0;
}
.day-timeline-item-row.animate {
    -webkit-animation: linear;
    -webkit-animation-name: run;
    -webkit-animation-duration: 1500ms;
}
.day-timeline-item-row.show {
    width: 100%;
}
@-webkit-keyframes run {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.day-timeline-hover {
    background: white;
    opacity: 0;
    width: 100%;
    height: 100%;
}
.day-timeline-hover:hover {
    background: white;
    opacity: 0.3;
}

.day-timeline-item {
    display: inline-block;
    left: 0;
    height: 60px;
    opacity: 0;
    background: white;
    overflow: hidden!important;
}

.day-timeline-item.hour {
    border-radius: 2px;
    outline: 1px solid white;
}
.day-timeline-item.hour.animate {
    transition: all 1s;
    opacity: 1;
}
.day-timeline-item.hour.show {
    opacity: 1;
}

.day-timeline-item.five-minutes {
    outline: 1px solid white;
    border-radius: 2px;
}
.day-timeline-item.five-minutes.animate {
    transition: all 500ms;
    opacity: 1;
}
.day-timeline-item.five-minutes.show {
    opacity: 1;
}

.day-timeline-item.minute {

}
.day-timeline-item.minute.animate {
    transition: all 250ms;
    opacity: 1;
}
.day-timeline-item.minute.show {
    opacity: 1;
}

.day-timeline-item.raw {

}
.day-timeline-item.raw.animate {
    transition: all 1s;
    opacity: 1;
}
.day-timeline-item.raw.show {
    opacity: 1;
}

.tooltip {
    display: none;
    background-color: white;
    color: black;
    position: absolute;
    outline: 1px solid dimgrey;
    min-width: 100px;
    max-width: 300px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 2px 10px;
    z-index: 3000;
    font-family: 'Roboto', sans-serif;
    padding: 7px;
    line-height: 30px;
}

.day-timeline-axis-row {
    display: block;
    margin-bottom: 10px;
    font-family: sans-serif;
    border-top: 1px solid black;
    transform-origin: left;
    padding-left: 5px;
}
.day-timeline-axis-item {
    display: inline-block;
    position: relative;
    transform-origin: left;
    border-left: 1px solid black;
    height: 10px;
    margin-bottom: 1em;

}
.day-timeline-axis-item::before {
    content: attr(data-content);
    position: absolute;
    left: 0;
    margin-top: 10px;
    transform: translateX(-50%);
    white-space: nowrap;
}