.tip-box {
    padding: 15px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.tip-box:last-of-type {
    border-bottom: 0px;
}

.tip-header-box {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    margin-bottom: 5px;
}

.tip-nadpis {
    line-height: 1.7;
    font-weight: 700;
    padding-bottom: 3px;
    grid-column: 1/4;
    border: 0px solid #00f;
}

.tip-user {
    color: #888;
    border: 0px solid #0f0;
    line-height: 1.7;
}

.tip-user a {
    font-weight: 400;
    padding-right: 10px;
}

.tip-text {
    line-height: 1.7;
}

.tip-menu {
    text-align: right;
}

.tip-menu .material-icons {
    display: inline-block;
    color: #c00;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    margin: 5px 0px 0px 3px;
}


@media only screen and (min-width: 999px) {
    .tip-header-box {
        grid-template-columns: 1fr auto auto;
    }

    .tip-nadpis {
        grid-column: auto;
    }

    .tip-menu {
        margin-left: 10px;
    }

}