﻿
.bottombar-fixed {
    width: calc(100% - 24px);
    margin: auto;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    position: fixed;
    justify-content: center;
    -webkit-justify-content: center;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 11;
    transition: all 250ms ease;
}
.bottombar-fixed-content {
    width: 100%;
    background-color: #3f78ed;
    overflow: hidden;
    position: absolute;
    height: 75px;
    border-radius: 40px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    padding: 13px 35px;
}
    .bottombar-fixed.fixed-bottom{
        bottom:0;
        width:100%;
    }

        .bottombar-fixed.fixed-bottom .bottombar-fixed-content {
            border-radius: 0;
        }
.bottombar-fixed-content span {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    color: #fff;
    font-size: 23px;
}
.bottombar-fixed-content a.active span{
    color: #4E79E5;
    background: #fff;
}
.left-menu-logo > a > img {
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 30px 0 0 !important;
}



