.wrapper_toolbar {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 7;
}

.toolbar__items {
    text-align: center;
    background-color: #FFF;
    border-top: 1px solid #7FB8EF;
    padding: 6px 5px 4px;
    position: relative;
    z-index: 4;
}

.toolbar__items:after {
    content: '';
    display: block;
    clear: both;
}

.toolbar__items [class*="item-"] {
    width: calc(100% / 5 - 7px);
    margin-right: calc(7px * 5 / 4);
    line-height: 1.2;
    color: #717171;
    float: left;
    position: relative;
}

.toolbar__items [class*="item-"]:nth-child( n+5 ) {
    margin-right: 0;
}

.toolbar__items [class*="item-"].active {
    color: #0A7CEB;
}

.toolbar__items [class*="item-"] .icon {
    font-size: 22px;
}

.toolbar__items [class*="item-"] .txt {
    font-size: .9em;
    margin-top: 3px;
}

.toolbar__items [class*="item-"] a {
    color: #717171;
    display: block;
}

/*** Toolbar - Message Notification Section ***/
.notification__items {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: none;
}

.notification__items .evt-bg {
    width: 100%;
    height: 100%;
}

.notification_item-content {
    width: 100%;
    font-weight: 700;
    text-align: left;
    background-color: #FFF;
    border-top: 1px solid #1C85ED;
    border-bottom: 1px solid #1C85ED;
    position: absolute;
    left: 0;
    bottom: -500px;
}

.notification_item-content h5 {
    font-size: 16px;
    text-align: center;
    color: #2487ED;
    padding: 10px;
    margin: 0;
}

.footer-func-sub-item {
    font-size: 14px;
    color: #000;
    border-top: 1px solid #F5F5F5;
    display: block;
    padding: 8px 10px;
    position: relative;
}

.footer-func-sub-item > * {
    display: inline-block;
    vertical-align: middle;
}

.footer-func-sub-item .num {
    letter-spacing: 1px;
    margin-left: 10px;
}

.footer-func-sub-item .item-count-highlight {
    color: #C00;
}

.footer-func-sub-item .icon {
    font-size: 14px;
    color: #666;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

[data-count]:before {
    content: attr(data-count);
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 0.7rem;
    text-align: center;
    color: #FFF;
    background-color: #CC0000;
    border-radius: 50%;
    position: absolute;
    right: 12%;
    top: -13%;
    z-index: 1;
}

[data-count="0"]:before {
    display: none;
}