@charset "utf-8";
/* CSS Document */

.tiles > div{
	display: flex;
	justify-content: flex-start;
}

.tiles div .tile{
	display: block;
	width: 2.2rem;
	height: 2.2rem;
	line-height: 2.2rem;
	border-radius: 0.5rem;
	margin-right: 1rem;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	border: var(--form-border);
	border-color: var(--zelena);
	background-color: var(--zelena);
	background-size: 1.5rem auto;
	background-repeat: no-repeat;
	background-position: center;
}

header .tiles div .tile{
	width: 1.25em;
	height: 1.25em;
	line-height: 1.25em;
	border-radius: 0.5rem;
	border: var(--form-border);
	border-color: var(--zelena-light-gray);
	background-color: var(--zelena-light-gray);
	color: var(--bila);
	background-size: 1.25rem auto;
}

.tiles div .tile:hover, .tiles div .tile:focus{border-color: var(--cerna); text-decoration: none;}
header .tiles div .tile:hover, header .tiles div .tile:focus{border-color: var(--zelena); text-decoration: none; background-color: var(--zelena);}

@media (max-width: 500px){
	header .tiles{display: none;}
}
