* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.time-slider {
    height: 150px;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}

.time-slider .bg {
    top: 50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: 1px #cccccc solid;
    position: absolute;
    z-index: 2;
}

.time-slider .bg-event {
    top: 50px;
    left: 0;
    width: 100%;
    height: 50px;
    cursor: move;
    background-color: transparent;
    position: absolute;
    z-index: 6;
}

.time-slider .current-time-caret {
    top: 50px;
    width: 2px;
    height: 50px;
    background-color: #ff0000;
    position: absolute;
    z-index: 5;
}

/*----------------------*/

.time-slider .graduation {
    top: 88px;
    width: 1px;
    height: 12px;
    background-color: #cccccc;
    position: absolute;
    z-index: 3;
}

.time-slider .graduation-title {
    top: 102px;
    width: 80px;
    cursor: default;
    color: #555555;
    text-align: center;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    z-index: 3;
}

.time-slider .graduation.middle {
    top: 75px;
    width: 1px;
    height: 25px;
}

.time-slider .graduation.big {
    top: 50px;
    width: 2px;
    height: 50px;
}

/*----------------------*/

.time-slider .timecell {
    top: 57px;
    height: 36px;
    padding: 1px;
    position: absolute;
    text-align: center;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    overflow: hidden;
    background-color: #ffab7d;
    opacity: 0.9;
    filter: alpha(Opacity=90);
    z-index: 4;
    border-radius: 4px;
}

.time-slider .timecell.current {
    background-color: #ff6d29;
    border-radius: 4px 0 0 4px;
}

.time-slider .timecell-event {
    top: 57px;
    height: 36px;
    background-color: transparent;
    position: absolute;
    cursor: move;
    z-index: 7;
    border-radius: 4px;
}

.time-slider .timecell-event.hover{
    border: 1px dashed #204d74;
}

.time-slider .timecell-event.moving {
    border-color: #ff0716;
}

.time-slider .timecell-event.current {
    border-right: none;
    border-radius: 4px 0 0 4px;
    cursor: default;
}

.time-slider .prompt {
    width: 86px;
    height: 40px;
    position: absolute;
    z-index: 1070;
    display: none;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    line-break: auto;
}

.time-slider .prompt .body {
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

.time-slider .prompt .triangle-up {
    top: -5px;
    left: 39px;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #000;
}

.time-slider .prompt .triangle-down {
    top: 40px;
    left: 39px;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}

.hidden {
    display: none;
}