﻿
#admin-toolbar {
    height: 42px;
    width: auto;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    position: absolute;
    background: #fff;
    /*transition: 0.2s all;
    -webkit-transition: 0.2s all;*/
    z-index: 1995;
    display: flex;
}



#admin-toolbar .admin-edit {
    background: url("/includes/images/core/admin-toolbar-edit.svg") no-repeat left center;
    height: 28px;
    width: auto;
    display: block;
    padding: 5px 10px 5px 40px;
    margin: 7px;
    color: #646464;
    font-size: 13px;
    font-weight: 700;
    border-radius: 2px;
}

#admin-toolbar .admin-edit:hover {
    text-decoration: none;
    background-color: #eee;
}

#admin-toolbar + .container {
    padding-top: 42px;
}

/*#admin-toolbar + header {
    top: 34px;
}*/

#admin-toolbar + header + #content {
    padding-top: 119px;
}

@media (max-width:640px) {
    #admin-toolbar {
        width: 100%;
        -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.17);
        -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.17);
        box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.17);
    }
}