.timeline {
    margin: 0;
    padding: 0;
}
.tl-item {
    position: relative;
    display: flex;
    width: 100%;
    padding: 0;
}
.tl-date {
    flex: 0 0 13em;
    text-align: center;
    /* background: #fff; */
    display: flex;
    flex-direction: column;
}
.tl-date > * {
    flex: 0 0 auto;
}
.tl-date::after {
    content: '';
    display: block;
    width: 0;
    flex: 1 1 100%;
    min-height: 1em;
    margin: 0 auto;
    border: solid 2px #dee5e7;
}
.defaultBelow .tl-date::after {
    display: none;
}
.tl-date select,
.tl-date time {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px;
    text-transform: inherit;
}
.tl-mode-view .tl-date select,
.tl-mode-view .tl-date time {
    padding: 0;
}
.tl-add {
    color: #00a94f;
}
.tl-add-button {
    display: flex;
    width: 100%;
    line-height: 1;
    color: inherit;
    padding: 0;
    border: 0;
    background: none;
    align-items: center;
    cursor: pointer;
}
.tl-add-button::before {
    content: '';
    display: block;
    flex-basis: 50%;
}
.add-label {
    display: block;
    flex-basis: 50%;
}
.tl-circle {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0 0.1em;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    font-size: 2.5em;
    background: currentColor;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
}
.tl-circle::before,
.tl-circle::after {
    content: '';
    position: absolute;
    display: block;
    color: #fff;
    outline: solid 2px currentColor;
}
.tl-circle::before {
    top: 50%;
    left: 30%;
    right: 30%;
}
.tl-circle::after {
    left: 50%;
    top: 30%;
    bottom: 30%;
}
.tl-date-blank-circle {
    text-align: center;
    border-radius: 50%;
    background: currentColor;
    width: 1em;
    height: 1em;
    margin: 0 auto;
}
.tl-content {
    display: block;
    flex: 1;
    position: relative;
    margin: 0 0 1em 1em;
}
.tl-title {
    display: flex;
}
.timeLine-title {
    flex: 1 1 auto;
}
.tl-desc {
    margin-top: 0.5em;
}
.tl-remove {
    flex: 0 0 1em;
    height: 1em;
    font-size: 3em;
    padding: 0.25em;
    border: 0;
    background: none;
    color: #888;
    cursor: pointer;
}
.tl-remove::before {
    content: '\00D7';
}
