
.quick-button {
    border: 1px solid #dbdee0;
    background: #e9ebec;
    margin-bottom: -1px;
    padding: 30px 0 10px 0;
    font-size: 14px;
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #b2b8bd;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

    .quick-button:hover {
        color: #34383c;
        text-decoration: none;
        background: #dbdee0
    }

    .quick-button .notification {
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        top: -1px;
        right: -1px;
        font-size: 10px
    }

    .quick-button i {
        font-size: 32px
    }

    .quick-button.small {
        padding: 15px 0 0 0;
        font-size: 10px
    }

        .quick-button.small i {
            font-size: 20px
        }

        .quick-button.small .notification {
            top: -1px;
            right: -1px;
            font-size: 7px;
            padding: 4px 5px
        }
    .quick-button.blue {
        background-color:aliceblue;
        font-weight:bold;
    }


