.timeline {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-left: 20px;
    margin: 0;
    list-style: none;
    padding-top: 30px;
}
.timeline::before {
    position: absolute;
    top: 0;
    height: 100%;
    padding-right: 11px;
    border-right: 2px solid #F2F2F2;
    content: "";
}
.timeline__item {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 20px 0;
}
.timeline__step {
    padding-right: 18px;
}
.timeline__step__marker {
    position: relative;
    height: 24px;
    line-height: 23px;
    width: 24px;
    border: 1px solid #3c98ff;
    border-radius: 50%;
    background-color: white;
    z-index: 1;
    text-align: center;
    color: #3c98ff;
    cursor: pointer;
    font-size: 12px;
}

.timeline__time {
    font-size: 12px;
    width: 206px;
    height: auto;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 10px;
    position: relative;
    right: 5px;
    top: -10px;
    cursor: pointer;
}
.timeline__time::before, .timeline__time::after {
    content: "";
    width: 0;
    height: 0;
    border: solid transparent;
    position: absolute;
    pointer-events: none;
    right: 100%;
}
.timeline__time:before {
    border-right-color: inherit;
    border-width: 9px;
    top: 50%;
    margin-top: -34px;
}
.timeline__time:after {
    border-right-color: #fff;
    border-width: 7px;
    top: 50%;
    margin-top: -32px;
}
.timeline__title {
    padding-bottom: 26px;
    font-size: 32px;
}
.timeline__points {
    padding: 0;
    list-style: none;
    font-size: 24px;
    color: #77777D;
}
.timeline__points > * {
    padding: 0 0 12px 0;
}

.label {
    width: 160px;
    height: 15px;
    line-height: 15px;
    background: #cccccc;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    margin-top: 5px;
}

.timeline__content .labelRel {
    width: 150px;
    height: 15px;
    line-height: 15px;
    background: #cccccc;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    margin-top: 5px;
}

.name {
    margin-top: 5px;
    word-wrap:break-word;
}

.status {
    /*width: 70px;*/
    width:fit-content;
    height: 16px;
    line-height: 15px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #666666;
    margin-top: 2px;
}

.timeline__content {
    padding-left: 10px;
}

.timeline__item:hover .timeline__time {
    border: 1px solid #3c98ff;
}
.timeline__item:hover .timeline__step__marker {
    background: #3c98ff;
    color: #fff;
    box-shadow: rgba(60, 152, 255, 0.3) 0px 0px 0px 4px;
}

.timeline__item_checked{
    border: 1px solid #3c98ff;
}
.timeline__step__marker_checked{
    background: #3c98ff;
    color: #fff;
    box-shadow: rgba(60, 152, 255, 0.3) 0px 0px 0px 4px;
}


html, body {
    line-height: 1.5rem;
    font-family: "Muli", sans-serif;
    font-weight: 300;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.card {
    background-color: white;
    width: 300px;
    height: 100%;
    display: table;
    position: fixed;
    right: 0;
    bottom: 0;
    height: 800px;
    z-index: 100;
    box-shadow: 0 -2px 21px 0px rgba(0, 0, 0, 0.2);
}