* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.time-slider {
    height: 150px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.time-slider .ruler {
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.time-slider .ruler .bg {
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #375E28;
    border: 1px #699859 solid;
    position: absolute;
    z-index: 2;
}

.time-slider .ruler .bg-event {
    left: 0;
    width: 100%;
    height: 150px;
    cursor: move;
    background-color: transparent;
    position: absolute;
    z-index: 6;
}

.time-slider .ruler .bg-event.disable-move {
    cursor: default;
}

.time-slider .ruler .current-time-caret {
    width: 2px;
    height: 150px;
    background-color: #ff0000;
    position: absolute;
    z-index: 5;
}

/* ----- graduations ----- */

.time-slider .ruler .graduation {
    top: 138px;
    width: 1px;
    height: 12px;
    background-color: #699859;
    position: absolute;
    z-index: 3;
}

.time-slider .ruler .graduation-title {
    top: 152px;
    width: 80px;
    cursor: default;
    color: #a5cb6b;
    text-align: center;
    font-family: "Myriad Pro",Helvetica,Arial,sans-serif;
    font-weight: bold !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    z-index: 3;
}

.time-slider .ruler .graduation.middle {
    top: 0px;
    width: 1px;
    height: 150px;
}

.time-slider .ruler .graduation.big {
    top: 0;
    width: 2px;
    height: 150px;
}

/* ----- timecells  ----- */

.time-slider .ruler .timecell {
    top: 7px;
    height: 136px;
    padding: 1px;
    position: absolute;
    text-align: center;
    font-family: "Myriad Pro",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    overflow: hidden;
    background-color: #A9CB75;
    /*border:1px solid #59BA41;*/
    opacity: 1.0;
    z-index: 4;
    color: black;
}

.time-slider .ruler .timecell img{
    margin-top:6px;
}

.time-slider .ruler .timecell div{
    color:#375E28;
}
.time-slider .ruler .timecell-event #deleteButton{
    position: absolute;
    right: 2px;
    top: -2px;
}

.time-slider .ruler .timecell-event .close{
    color:#375E28;
}



.time-slider .ruler .timecell.current {
    background-color: #ff6d29;
    border-radius: 4px 0 0 4px;
}

.time-slider .ruler .timecell-event {
    top: 7px;
    height: 136px;
    background-color: transparent;
    position: absolute;
    cursor: default;
    z-index: 7;
    border-radius: 4px;
    border: 1px solid transparent;
}

.time-slider .ruler .timecell-event.hover{
    border: 1px dashed #204d74;
}

.time-slider .ruler .timecell-event.moving {
    border-color: #ff0716;
}

.time-slider .ruler .timecell-event.current {
    border-right: none;
    border-radius: 4px 0 0 4px;
    cursor: default;
}


/* ----- prompts ----- */

.time-slider .prompts {
    top: 0;
    left: 0;
    position: relative;
    /*overflow: hidden;*/
    height: 150px;
    width: 100%;
}

.time-slider .prompts .prompt {
    width: 86px;
    height: 40px;
    position: absolute;
    z-index: 1070;
    display: none;
    font-family: "Myriad Pro",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 .prompts .prompt .body {
    padding: 3px 8px;
    color: white;
    text-align: center;
    background-color: #c75353;
    border-radius: 4px;
}

.time-slider .prompts .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 #c75353;
}

.time-slider .prompts .prompt .triangle-down {
    top: 23px;
    left: 39px;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #c75353;
}

.time-slider .prompts .prompt .triangle-down-date {
    top: 40px;
}

.hidden {
    display: none;
}