﻿.toolbar-element {
    transition: all 500ms;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 48px
}

    .toolbar-element > i {
        color: #3c8dbc
    }

    .toolbar-element:hover {
        /*background: rgba(60, 141, 188, 0.8)*/
    }

        .toolbar-element:hover > i {
            color: orangered;
        }

.grid-toolbar-container-parent {
    position: absolute;
    bottom: 15px;
}

.grid-toolbar-container {
    z-index: 10;
    display: flex;
    background: white;
    height: 41px;
    border-top: 1px solid rgba(0,0,0,0.13);
    position: absolute;
}
