﻿.toolbar {
    width: 100%;
    min-height: 3em;
    position: relative;
}

    .toolbar:before {
        position: absolute;
        height: 360px;
        width: 100%;
        top: auto;
        bottom: 32px;
        z-index: 6;
        background: radial-gradient(ellipse at center,rgba(0,0,0,.25) 0,rgba(0,0,0,0) 60%);
        border-radius: 50%;
        -webkit-transform: translateY(50%) scalex(1.4) scaleY(.12);
        transform: translateY(50%) scalex(1.4) scaleY(.12);
        opacity: .18;
    }

    .toolbar ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        margin-bottom: 0.5em;
    }

        .toolbar ul:nth-child(n+2) {            
            padding-top: 1em;
            border-top: 1px var(--theme-primary-50) dotted;
        }

        .toolbar ul li:first-child {
            padding-left: 0 !important;
        }

        .toolbar ul li {
            float: left;
            cursor: pointer;
            padding-left: 1em;
        }

    .toolbar a {
        text-decoration: none;
        display: block;
        text-align: center;
        min-width: 5em;
    }

    .toolbar .separator {
        border-left: 1px var(--theme-dark) dotted;
    }

    .toolbar a:hover span {
        text-decoration: underline;
    }

    .toolbar .toolbar-label {
        margin-top: 8px;
        font-size: .688rem;
        line-height: 1;
        display: block;
        font-weight: 600;
    }

    .toolbar .disabled-label {
        color: #d9dadb;
        cursor: not-allowed !important;
    }

    .toolbar i {
        display: block;
        cursor: pointer;
    }

    .toolbar span {
    }
