.lbdd-history__container {
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.lbdd-history__container h5 {
    font-size: 1.8rem;
    font-weight: bold;
}
.lbdd-history {
    padding: 11px;
    margin: 10px 0;
    border-radius: 3px;
}
.lbdd-history-create {
    background: rgba(76, 175, 80, 0.3);
}

.lbdd-history-update {
    background: rgba(243, 156, 18, 0.3);
}

.lbdd-history-delete {
    background: rgba(255, 87, 34, 0.3);
}
.lbdd-history__action {
    padding: 10px;
    border-radius: 3px;
}
.lbdd-history__header {
    position: relative;
    margin-bottom: 25px;
    border-bottom: 1px solid #1f2323;
}
.lbdd-history-header__action {
    margin: 0;
}
.lbdd-history-header__date {
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    bottom: -18px;
}
.lbdd-history-header__author {
    font-size: 1.1rem;
    position: absolute;
    right: 0;
    bottom: -18px;
    text-transform: uppercase;
}
.lbdd-history-modification__container {
    margin-bottom: 5px;
    padding: 0;
}
.lbdd-history-modification {
    position: relative;
    margin-bottom: 0.5rem;
    margin-left: 10px;
    list-style: none;
    font-size: 1.3rem;
}
.lbdd-history-modification-create:before,
.lbdd-history-modification-add:before,
.lbdd-history-modification-update:before,
.lbdd-history-modification-remove:before,
.lbdd-history-modification-delete:before {
    display: block;
    text-align: center;
    font-size: 2rem;
    border-radius: 50%;
    position: absolute;
    left: -33px;
    top: -12px;
    width: 25px;
    line-height: 24px;
    height: 25px;
    margin: 10px 0 5px;
    background: #f2f2f2;
}
.lbdd-history-modification-create:before,
.lbdd-history-modification-add:before {
    content: '+';
}
.lbdd-history-modification-update:before {
    content: '~';
}
.lbdd-history-modification-remove:before,
.lbdd-history-modification-delete:before {
    content: '-';
}
.lbdd-history-modification-create {
    color: #4caf50;
}
.lbdd-history-modification-update {
    color: #ff9800;
}
.lbdd-history-modification-add {
    color: #4caf50;
}
.lbdd-history-modification-remove {
    color: #F44336;
}
.lbdd-history-modification-delete {
    color: #F44336;
}