﻿
.tabBarItemCloseButtonIcon {
    display: inline;
    visibility: visible;
    position: absolute;
    height: 12px;
    width: 12px;
    top: 3px;
    left: 3px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.tabBarItem {
    position: absolute;
    height: 27px;
    border-bottom: 3px solid;
    border-bottom-color: rgba(255,255,255,0);
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: default;
    transition: border-bottom-color linear 200ms;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
    cursor:pointer;
}

    .tabBarItem:hover {
        border-bottom-color: rgba(255,255,255,0.54);
    }

.tabBarItemSelected {
    position: absolute;
    height: 27px;
    border-bottom: 3px solid;
    border-bottom-color: rgba(255,255,255,1);
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: default;
    transition: none;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
}

.tabBarItemIconHide {
    display: none;
    visibility: hidden;
}

.tabBarItemIcon {
    display: inline;
    visibility: visible;
    position: absolute;
    height: 20px;
    width: 20px;
    top: 2px;
    left: 5px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.tabBarItemCloseButton {
    position: absolute;
    height: 18px;
    width: 18px;
    top: 3px;
    right: 4px;
    transition: background-color linear 500ms;
    border-radius: 9px;
    opacity:0;
}

    .tabBarItemCloseButton:hover {
        background-color: rgba(255,255,255,.87);
        opacity: 1;
    }

    .tabBarItemCloseButton:active {
        background-color: rgba(255,255,255,1);
        opacity: 1;
    }
.tabBarItemLabelSelected {
    padding-left: 30px;
    padding-right: 30px;
    word-break: keep-all;
    white-space: nowrap;
    color: rgba(255,255,255,1);
    text-align: center;
}
.tabBarItemLabelIconHideSelected {
    padding-left: 30px;
    padding-right: 30px;
    word-break: keep-all;
    white-space: nowrap;
    color: rgba(255,255,255,1);
    text-align: center;
}
.tabBarItemLabel {
    padding-left: 30px;
    padding-right: 30px;
    word-break: keep-all;
    white-space: nowrap;
    color:rgba(255,255,255,.87);
    text-align:center;
}
.tabBarItemLabelIconHide {
    padding-left: 30px;
    padding-right: 30px;
    word-break: keep-all;
    color: rgba(255,255,255,.87);
    white-space: nowrap;
    text-align: center;
}
