.acgCssButton
{	
	display:inline-block;
	jtext-align:center;
	padding:0.25em 1em 0.25em 25px;
	border-width:0;
	jbackground-color:var(--main-color);	/* Do we need to set this? It forces all "x" buttons to have to be explicitly "undone" */
	border-radius:5px;
	color:rgb(255,255,255);
	jbox-shadow:1px 1px 1px 1px rgba(0,0,0,0.5); */	/* hoffset,voffset,blur,spread,color */
	box-shadow:none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

.acgCssButton.acgCssButtonDisabled
{
	color:rgb(204,204,204);
	cursor:default;
}

/*
.acgUseCaseNavButton
{
	width:40px;
	
	height:60px;	// This seems to actually force a min-height for table-cells whereas "min-height" does not...
	background-color:rgb(0,104,181);
	color:rgb(255,255,255);
	text-align:center;
	font-size:2em;
	padding:0;
	display:table-cell;
	box-sizing:border-box;
}
*/

/*
.acgCssButton.acgInfoPopupNavBarItem.acgCssButtonDisabled
{
	background-color:rgb(191,217,236);
}
*/

.acgCssButton.acgAccordianButton
{
	background-color:var(--main-color);
	border-radius:0;
	width:100%;
	color:rgb(255,255,255);
	font-size:1.2rem;
	display:flex;
	justify-content:space-between;
	padding:1px 1px 1px 25px;
}
.acgAccordianButton .acgAccordianButtonIconArea
{
	width:30px;
	background-color:rgb(242,242,242);
	font-size:1.1rem;
	display:flex;
	align-items:center;
	justify-content:center;
	color:var(--main-color);
	line-height:0;
}

.acgAccordianButton .acgAccordianButtonIconClosed
{
	display:initial;
}
.acgAccordianButton.acgCssButtonSelected .acgAccordianButtonIconClosed
{
	display:none;
}
.acgAccordianButton.acgCssButtonSelected .acgAccordianButtonIconOpen
{
	display:initial;
}
.acgAccordianButton .acgAccordianButtonIconOpen
{
	display:none;
}
.acgAccordianButtonLabel
{
	font-size:1.1rem;
	padding:4px 0;
}
.acgPillButton
{
	background-color:var(--main-color);
	padding:8px;
	jwidth:170px;
	width:200px;
	border-radius:100px;
	border:2px solid white;
	box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5);
	text-align:center;
	font-size:1.1rem;
	jfont-weight:bold;
	font-family:'LG Smart Bold';
}
.acgPillButton:hover
{
	background-color:rgb(204,0,65);
}

