
.TabBar {
    width: 100%;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 99999;
    position: absolute;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: -1px;
}

.TabBarOption > .fa {
    font-size: 18px;
}

.UI_DEFAULT > .TabBar {
    -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 1px 2px rgba(0,0,0,0.2);   
}

.UI_IOS > .TabBar {
    text-align: center;
}

.UI_DEFAULT > .TabBar > .TabBarOption {
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 12px;
    padding-right: 12px;
    font-size: : 12px;
    opacity: 0.7;
    overflow: hidden;
}

.UI_IOS > .TabBar > .TabBarOption {
    display: inline-block;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 13px;
    opacity: 0.7;
    overflow: hidden;
}

.UI_IOS > .TabBar > .TabBarOption.Active {
    opacity: 1;
}
.UI_DEFAULT > .TabBar > .TabBarOption.Active {
    opacity: 1;
}
.UI_DEFAULT > .TabBar > .Indicator { 
    border-bottom: 3px solid;
}

.UI_IOS > .TabBar > .Indicator { 
    border-bottom: 0px solid;
}


.TabBar > .Indicator {
    height: 50px;
    position: absolute;
}

.ExcludeBarSize {
    height: calc(100% - 49px) !important;
    margin-top: 49px;
}

