html {
    font-family: helvetica, arial;
}

.htimeline {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.htimeline .step {
    float: left;
    border-top-style: solid;
    border-top-width: 5px;
    position: relative;
    margin-bottom: 15px;
    text-align: left;
    padding: 3px 0 5px 10px;
    background-color: #ddd;
    color: #333;
    height: 160px;
    vertical-align: middle;
    border-right: solid 1px #bbb;
    transition: all 0.5s ease;
}

.htimeline .step:nth-child(odd) {
    background-color: #eee;
}

.htimeline .step:first-child {
    border-left: solid 1px #bbb;
}

.htimeline .step:hover {
    background-color: #ccc;
    border-bottom-width: 6px;
}

.htimeline .step>div {
    margin: 0 5px;
    font-size: 14px;
    vertical-align: top;
    padding: 0;
}

/* .htimeline .step.green {
    border-top-color: #348F50;
}

.htimeline .step.orange {
    border-top-color: #F09819;
}

.htimeline .step.red {
    border-top-color: #C04848;
}

.htimeline .step.blue {
    border-top-color: #49a09d;
} */

.htimeline .step::before {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    content: ' ';
    background-color: white;
    position: absolute;
    top: -10px;
    left: 0px;
    border-style: solid;
    border-width: 3px;
    transition: all 0.5s ease;
}

.htimeline .step:hover::before {
    width: 18px;
    height: 18px;
    bottom: -12px;
}

/* .htimeline .step.green::before {
    border-color: #348F50;
}

.htimeline .step.orange::before {
    border-color: #F09819;
}

.htimeline .step.red::before {
    border-color: #C04848;
}

.htimeline .step.blue::before {
    border-color: #49a09d;
} */

.htimeline .step::after {
    content: attr(data-date);
    position: absolute;
    top: -20px;
    left: 17px;
    font-size: 11px;
    font-style: italic;
    color: #888
}

/*TASKS*/
.htimeline .step .tasks {
    margin-top: 10px;
}

.htimeline .step .tasks .resource {
    position: relative;
    height: 40px;
}

.htimeline .step .tasks .resource::before {
    position: absolute;
    bottom: 2px;
    left: -5px;
    content: attr(data-name);
    font-size: 10px;
    font-style: italic;
    color: #888
}

.htimeline .step .tasks .task {
    overflow: hidden;
    font-size: 10px;
    padding: 3px;
    border: solid 1px white;
    border-radius: 4px;
    min-height: 20px;
}

/* .htimeline .step.green .tasks .task {
    background-color: #348F50;
    color: white;
}

.htimeline .step.orange .tasks .task {
    background-color: #F09819;
    color: white;
}

.htimeline .step.red .tasks .task {
    background-color: #C04848;
    color: white;
}

.htimeline .step.blue .tasks .task {
    background-color: #49a09d;
    color: white;
} */



/* COLORES PERSONALIZADOS PARA BELCRIS*/

.htimeline .step.primary {
    border-top-color: #01a7b5;
}

.htimeline .step.primary::before {
    border-color: #01a7b5;
}

.htimeline .step.primary .tasks .task {
    background-color: #01a7b5;
    color: white;
}

.htimeline .step.secondary {
    border-top-color: #a336c9;
}

.htimeline .step.secondary::before {
    border-color: #a336c9;
}

.htimeline .step.secondary .tasks .task {
    background-color: #a336c9;
    color: white;
}

.htimeline .step.success {
    border-top-color: #2bc155;
}

.htimeline .step.success::before {
    border-color: #2bc155;
}

.htimeline .step.success .tasks .task {
    background-color: #2bc155;
    color: white;
}

.htimeline .step.danger {
    border-top-color: #f46b68;
}

.htimeline .step.danger::before {
    border-color: #f46b68;
}

.htimeline .step.danger .tasks .task {
    background-color: #f46b68;
    color: white;
}

.htimeline .step.warning {
    border-top-color: #ffb800;
}

.htimeline .step.warning::before {
    border-color: #ffb800;
}

.htimeline .step.warning .tasks .task {
    background-color: #ffb800;
    color: white;
}

.htimeline .step.info {
    border-top-color: #0dcaf0;
}

.htimeline .step.info::before {
    border-color: #0dcaf0;
}

.htimeline .step.info .tasks .task {
    background-color: #0dcaf0;
    color: white;
}

.htimeline .step.light {
    border-top-color: #d1d1d1;
}

.htimeline .step.light::before {
    border-color: #d1d1d1;
}

.htimeline .step.light .tasks .task {
    background-color: #d1d1d1;
    color: white;
}

.htimeline .step.dark {
    border-top-color: #343a40;
}

.htimeline .step.dark::before {
    border-color: #343a40;
}

.htimeline .step.dark .tasks .task {
    background-color: #343a40;
    color: white;
}

.htimeline .step.orange {
    border-top-color: #fd7e14;
}

.htimeline .step.orange::before {
    border-color: #fd7e14;
}

.htimeline .step.orange .tasks .task {
    background-color: #fd7e14;
    color: white;
}

.htimeline .step.pink {
    border-top-color: #d63384;
}

.htimeline .step.pink::before {
    border-color: #d63384;
}

.htimeline .step.pink .tasks .task {
    background-color: #d63384;
    color: white;
}

.htimeline .step.green {
    border-top-color: #198754;
}

.htimeline .step.green::before {
    border-color: #198754;
}

.htimeline .step.green .tasks .task {
    background-color: #198754;
    color: white;
}

.htimeline .step.blue {
    border-top-color: #0d6efd;
}

.htimeline .step.blue::before {
    border-color: #0d6efd;
}

.htimeline .step.blue .tasks .task {
    background-color: #0d6efd;
    color: white;
}