.view[view]:not(.shown){
    display:none;
}

.nav-tabs{
    border-bottom: 0;
    padding: 0;
}
.nav-tabs .nav-item{

}
.nav-tabs .nav-item a {
    color: var(--themeColorSecondary);
    cursor:pointer;
    border: 0;
}
.nav-tabs .nav-item a.active {
	color: var(--themeColorPrimary);
}

.view{
	position:relative;
}

.view-header-inline,
.view .view-header {
    padding: 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: max-content;
    right: 0;
    bottom: 100%;
}

.view .view-header-inline{
    bottom: calc(100% - 43px);
}

.view .viewButtons{
    display: flex;
    height: 40px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap:1rem;
}
.view .viewButtons select{
    background-color:#fff;
}

.viewsNavigator{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width:100%;
    max-width:1000px;
    float: initial;
    margin: 30px auto;
}
.viewsNavigator .viewNavItem{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.viewsNavigator .viewNavSpacer{
    flex: 1;
    height: 1px;
    background-color: var(--themeColor_blueLight);
}
.viewsNavigator .viewNavItem span{
    border-radius: 50%;
    background-color: var(--themeColor);
    color: white;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.viewsNavigator .viewNavItem:not(.active) span{
    background-color: var(--themeColor_grey);
}
.viewsNavigator .viewNavItem font{}

@media screen and (max-width:880px){
    .viewsNavigator {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        margin: 2px 0 11px;
        gap: 5px;
    }
    
    .viewsNavigator .viewNavItem {
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        display: flex;
    }
    .viewsNavigator .viewNavItem font {
        flex: 1;
        line-height: 1.1em;
    }
}