<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
##    ##    ###    ##     ##  ######  ##     ## #### ########   ######  
###   ##   ## ##   ##     ## ##    ## ##     ##  ##  ##     ## ##    ## 
####  ##  ##   ##  ##     ## ##       ##     ##  ##  ##     ## ##       
## ## ## ##     ## ##     ## ##       #########  ##  ########   ######  
##  #### #########  ##   ##  ##       ##     ##  ##  ##              ## 
##   ### ##     ##   ## ##   ##    ## ##     ##  ##  ##        ##    ## 
##    ## ##     ##    ###     ######  ##     ## #### ##         ######  
*/

.navchips{
	white-space: nowrap;
}
.navchips__li{
	position: relative;
	vertical-align: top;
}
.navchips__li .svg{
	z-index: 3;
}

/** HORIZONTAL ****************************************************************************************************************************/
/******************************************************************************************************************************************/

.navchips--horizontal{
	padding: 10px 0;
}
.navchips--horizontal .navchips__li{
	display: inline-block;
	padding: 0 12px;
}

/** VERTICAL ******************************************************************************************************************************/
/******************************************************************************************************************************************/

.navchips--vertical .navchips__li{
	padding: 10px 0;
}

/** CIRCLEGAUGE ***************************************************************************************************************************/
/******************************************************************************************************************************************/

.js-navchips__li__item{
	display: inline-block;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	vertical-align: middle;
}
.js-navchips__li__item:before{
	box-sizing: border-box;
	border-radius: 50%;
	position: absolute;
	content: "";
	z-index: 2;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #AF9C8C;
	box-shadow: inset 0 4px 8px 0 rgba(0,0,0,0.30)
}
.js-navchips__li__item .circlegauge__content{
	border-radius: 0;
}
.js-navchips__li__item .circlegauge::after{
	background: #fff;
}
.js-navchips__li__item .circlegauge:hover::after{
	transition: all .25s ease-in-out;
	box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
}
.js-navchips__li__item .circlegauge__container{
	z-index: 2;
}
.js-navchips__li__item .circlegauge__svg{
	z-index: 3;
}
.navchips__li .circlegauge__content__inner .pix__content{
	height: 42px;
	width: 42px;
}
.navchips__li .circlegauge__content__inner .pix__content svg{
	height: 32px;
	width: 32px;
	padding: 4px;
}

/** SELECTED ******************************************************************************************************************************/
/******************************************************************************************************************************************/

.js-navchips__li__item--selected{
	pointer-events: none;
	cursor: default;
}
.js-navchips__li__item:hover,
.js-navchips__li__item--selected{
	position: relative;
	transition: all .15s;
}
.js-navchips__li__item--selected{
	transform: scale(1.25);
}
.js-navchips__li__item--selected img,
.js-navchips__li__item--selected .circlegauge__content,
.js-navchips__li__item:hover img,
.js-navchips__li__item:hover .circlegauge__content{
	transition: all .05s;
}
.js-navchips__li__item--selected:before{
	border: 2px solid #37659a;
	box-shadow: none;
	z-index: 3;
}
.js-navchips__li__item--selected .circlegauge__content{
	z-index: 2;
}</pre></body></html>