.BottomFixedToolBar {
    position:fixed;
    bottom:0px;
    width: 100%;
    left:0px;
    text-align:center;
    margin: 0 auto;
    z-index:999999999;
}
.ico-title {
    font-size: 2em;
}
.iconlist {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.iconlist li {
    position: relative;
    margin: 0px;
    width: 25%;
    cursor: pointer;
}
.iconlist li .icon-holder {
    position: relative;
    text-align: center;
    border-radius: 0px;
    overflow: hidden;
    padding-bottom: 0px;
    background: rgb(230,52,74);
    transition: all 0.2s linear 0s;
}
.iconlist li .icon-holder:hover {
    background: #00C3DA;
    color: #ffffff;
}
.iconlist li .icon-holder:hover .icon i {
    color: #ffffff;
}
.iconlist li .icon-holder .icon {
    padding: 3px;
    text-align: center;
}
.iconlist li .icon-holder .icon i {
    font-size: 1.5em;
    color: white;
}
.iconlist li .icon-holder span {
    font-size: 14px;
    margin-top: -5px;
    display: block;
    color:white;
}