.tabBar {
    font-family: 'Open Sans', sans-serif;
    line-height: 1;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.tabGroup {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.tabItem {
    position: relative;
    display: flex;
    margin: 0 8px;
    padding: 8px 0 6px 0;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tabItem:not(.isDisabled):hover {
    cursor: pointer;
    color: rgba(0, 100, 148, 1);
}

.tabItem .leftIcon {
    padding-right: 3px;
}

.tabItem .rightIcon {
    padding-left: 3px;
}

.tabSelected {
    color: rgba(0, 100, 148, 1);
}

.isDisabled {
    cursor: not-allowed;
    color: silver;
}

.selectedLine {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    bottom: -3px;
    background-color: rgba(0, 100, 148, 1);
}

.hasError {
    position: absolute;
    background-color: #ff3333;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    right: -5px;
    top: 5px;

    animation: highlight 0.5s;
}

@keyframes highlight {
    0% {
        width: 4px;
        height: 4px;
    }

    60% {
        border-radius: 3px;
        width: 6px;
        height: 6px;
    }

    100% {
        width: 4px;
        height: 4px;
    }
}
