.log_container {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    align-items: stretch;
    /*flex-basis: 120px; */
    height: 35px;
    line-height: 0;
}
.log_container .item {
    padding: 20px;
}

@media only screen and (max-width: 750px) {
    .log_container .item {
        padding: 15px;
    }

    .log_container {
        flex-direction: column;
        height: auto;
        margin-bottom: 20px;
    }

}