/* Entity Logs */
.entity-logs-container {
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 0px;
    overflow: hidden;
    z-index: 99999;
    box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.18);
    transition: all 0.5s;
}
.entity-logs-container.active {
    width: 600px;
}
.entity-logs-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 600px;
    overflow-x: hidden;
    padding: 20px 5px 20px 20px;
}
.btn-open-entity-log-container {
    position: fixed;
    top: 60px;
    right: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 2px 5px 5px 7px;
    background: #1a88ff;
    transition: all 0.5s;
}
.btn-open-entity-log-container:hover {
    opacity: 0.7;
}
.btn-open-entity-log-container i {
    color: #fff;
    font-size: 35px;
}
