/* 
    Created on : 13-jun-2016, 17:54:15
    Author     : lucas
*/

.bd-timeline {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
}

.bd-timeline > .bd-tl-sections {
    height: 100%;
    background-color: #ddd;
    padding: 10px 15px;
    height: 200px;
}

.bd-timeline > .bd-tl-sections .bd-tl-section {
    height: 180px;
    min-width: 20px;
    display: table-cell;
    cursor: pointer;    
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.bd-timeline > .bd-tl-sections .bd-tl-section.static-duration > .bd-tl-section-resize {
    display: none;
}

.bd-timeline > .bd-tl-sections .bd-tl-section:hover {
    background: -moz-linear-gradient(bottom,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
    background: -webkit-linear-gradient(bottom,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 50%);
    background: linear-gradient(to top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(endColorstr='#00000000', startColorstr='#1a000000',GradientType=0 );
}

.bd-timeline > .bd-tl-sections .bd-tl-section > img.bd-lt-section-icon {
    
}

.bd-timeline > .bd-tl-sections .bd-tl-section > h3.bd-tl-section-caption {
    font-size: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    margin: 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.bd-timeline > .bd-tl-sections .bd-tl-section:hover > h3.bd-tl-section-caption {
    color: white;
}

.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-buttonbar {
    
}

.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize {
    position: absolute;
    top: 0;
    height: 100%;
    width: 10px;
    opacity: 0.3;
    background-color: #aaa;
    display: table-cell;
    vertical-align: middle;
    visibility: hidden;
}

.bd-tl-section-resize-helper {
    border: 2px dotted blue;
}

.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize > i.fa {
    position: absolute;
    top: 50%;
    margin-top: -7px;
}

.bd-timeline > .bd-tl-sections .bd-tl-section:hover > .bd-tl-section-resize {
    visibility: visible;
    cursor: ew-resize;
}

.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize.bd-tl-section-resize-left,
.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize.bd-tl-section-resize-left > i.fa {
    left: 0;
}

.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize.bd-tl-section-resize-right,
.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize.bd-tl-section-resize-right > i.fa {
    right: 0;
}

.bd-timeline > .bd-tl-sections .bd-tl-section > .bd-tl-section-resize:hover {
    opacity: 0.8;
}

.bd-timeline > .bd-tl-timebar {
    background-color: #888;
    height: 20px;
    display: inline-block;
}

.bd-timeline > .bd-tl-timebar ul.linegap-container {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: inline-block;
    height: 20px;
    position: relative;
    
}

.bd-timeline > .bd-tl-timebar .linegap-wrapper {
    padding: 0 5px;
    margin: 0 10px;
    background-color: #333333;
    display: inline-block;
    height: 100%;
}

.bd-timeline > .bd-tl-timebar ul.linegap-container > li.linegap {
    border-left: solid 1px white;
    display: inline-block;
}

.bd-timeline > .bd-tl-timebar ul.linegap-container > li.linegap.endline {
    border-left: 0 !important;
    border-right: 1px solid white;
    width: 1px;
}

.bd-timeline > .bd-tl-timebar ul.linegap-container > li.linegap.linegap-small {
    height: 30%;
}

.bd-timeline > .bd-tl-timebar ul.linegap-container > li.linegap.linegap-medium {
    height: 60%;
}

.bd-timeline > .bd-tl-timebar ul.linegap-container > li.linegap.linegap-large {
    height: 80%;
}