.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1260px;
    margin: 0 auto;
    padding: 16px 60px;

    a {
        display: flex;
    }

    .header-logo {
        width: 200px;
        height: auto;
    }

    ul {
        display: flex;
        gap: 24px;
        padding: 0;
        margin: 0;
        list-style: none;

        a {
            color: #000;
            font-size: 20px;
            text-decoration: none;

            &[aria-current="page"] {
                font-weight: bold;
            }
         }
    }
}

/* custom header */
header.custom.topheader {	
	padding: 0;
    height: 77px;
    background: #FFF;
} 

/* standard button color, background and text color */
.button-color {
    border: 0 solid #FFF;
    background-color: #991a81;
    color: #FFF;
}
 
/* disable button color, background and text color */
.button-color:disabled {
    background-color: #999;
    color: #CCC;
}
 
/* highlighted button color */
button.highlight {
    background-color: #991a81;
}
 
/* error message color */
.error {
    color: DARKRED;
}
 
/* semi selected icon color, for example in the period control when some months from one year are selected */
.icon-color-low {
    color: #999;
}
 
/* default icon color */
.icon-color-reg {
    color: #991a81;
}
 
/* selected icon color */
.icon-color-high {
    color: #991a81;
}
 
/* delete icon color */
.icon-color-delete {
    color: RED;
}
 
/* unselected viewtype icon color */
.viewtype-color-back {
    color: #991a81;
}
 
/* selected viewtype icon color */
.viewtype-color-front {
    color: #991a81;
}
 
/* left panel header color */
.header-color {
	background: #ee3124;
	color: #FFF;
}
 
/* left panel icons li first elements */
.icon-color.high {
 color: #991a81;
}
 
/* left panel icons li sub elements */
.icon-color{
	color: #000;
}
 
/* left panel icons new element */
.button-color.high {
	background-color: #991a81;
	color: #FFF;
}
 
/* j-list icons active element */
.viewtype-color.high {
	color: #991a81;
}
 
/* j-list icons in-active element */
.viewtype-color {
	color: #000;
}
 
/* spinner during loading */
.jive-spinner-holder .jive-spinner .side .fill {
	background: #991a81;
}

/* border underline tabs */
.j-workspace-bar .j-list li.current .item {
    border-bottom-color: #991a81;
}