/* Tobiasz Ryguła dla Systemy Zabezpieczeń Bankowych */
/* Content Selector */
.contentSelector
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;


}
.csContent
{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}
.csContent img
{
	max-height: 55vh;
}
.menu .btn-primary
{
	font-size: medium;
}
.csActivator:hover
{
	background-color: var(--activator-hover);
	border-radius: 10px;
}


.csButtons
{
	margin:10px;
	display: flex;
	min-width: 100px;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	color:var(--btn-text);
	background-color: var(--btn-background);
	border-radius: 5px;
	border: 1px solid;
	border-color: var(--btn-border);
	user-select: none;
}

.csButtons .csButton
{
	width:50%;
}


.csButton:hover
{
	background-color:var(--btn-active-background);


}
.csDescription
{
	padding:5px;
	display: flex;
	justify-content: center;
}
.highlight
{
	box-shadow: 
    inset 0 2px 0 0 var(--highlight-border),    /* top border */
    inset 0 -2px 0 0 var(--highlight-border);   /* bottom border */
}
.highlight-old
{
	background-color: var(--highlight);
	border-radius: 5px;
}

.csCounter
{
	position:absolute;
	bottom:20px;
	left:20px;	
	font-size: 0.8em;
	opacity: 0.6;
}