﻿/*body {
    line-height: 1.3em;
    min-width: 920px;
}*/

.history-tl-container {
    width: 100%;
    margin: auto;
    display: block;
    position: relative;
}

    .history-tl-container ul.tl {
        margin: 20px 0;
        padding: 0;
        display: inline-block;
    }

        .history-tl-container ul.tl li {
            list-style: none;
            /*margin-left: 140px;*/
            margin: auto;
            margin-left: 30px !important;
            min-height: 50px;
            /*background: rgba(255,255,0,0.1);*/
            /*border-left: 1px dashed #86D6FF;*/
            /*border-left: 1px dashed lightgray;*/
            padding: 0 0 30px 30px;
            position: relative;
        }

.completed-border {
    border-left: 1px dashed #545454 !important;
}

.history-tl-container ul.tl li:last-child {
    border-left: none !important;
}


.completed::before {
    position: absolute;
    left: -13px;
    top: -1px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #33a100;
    height: 25px;
    width: 25px;
    transition: all 500ms ease-in-out;
}

.completed::after {
    position: absolute;
    left: -13px;
    top: -1px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #33a100;
    height: 25px;
    width: 25px;
    transition: all 500ms ease-in-out;
}


/*.history-tl-container ul.tl li::after {
    position: absolute;
    left: -13px;
    top: -1px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #258CC7;
    height: 25px;
    width: 25px;
    transition: all 500ms ease-in-out;
}*/





.completed:first-child::before {
    animation: pulse 1s ease-out infinite;
    content: " ";
    color: lightgreen;
  /*  width: 40px;
    height: 40px;*/
}

   /* .completed:last-child::before{
        width: 40px;
        height: 40px;
    }
*/


    @keyframes pulse {
        100% {
        transform: scale(2);
        opacity: 0;
    }
}



@keyframes pulser {
    0% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



/*.history-tl-container ul.tl li:hover::before {*/
    /*border-color: #258CC7;*/
    /*background: lightgray;
    transition: all 500ms ease-in-out;
}*/

.completed::before {
    content: " ";
    background: #33a100 !important;
    /*animation: pulser 1.5s infinite;*/
}


.history-tl-container ul.tl li {
    margin-left: 10px !important;
}

ul.tl li .item-title {
    font-weight: 500;
}

ul.tl li .item-detail {
    color: rgba(0,0,0,0.5);
    font-size: 14px;
}

ul.tl li .timestamp {
    color: #8D8D8D;
    position: absolute;
    width: 100px;
    left: -50%;
    text-align: right;
    font-size: 12px;
}


/* Tooltip container */
.tool-tip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
}

/* Show the tooltip text when you mouse over the tooltip container */
    .tool-tip:hover .tooltiptext {
        visibility: visible;
    }
