p {
	font-size: 0.95em;	
}

.bila {
    color: #fff;
}

.cerna {
    color: #444;
}

.text-stred {
	text-align: center;
}

#scroll-container {
	overflow: hidden;
	background-color: #305da3!important;
	font-size: 1.5em;
	padding: 0.35em;
	color: #fff;
	margin-bottom: 1.0em;
}

#scroll-text {
  /* animation properties */
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
  
	-moz-animation: my-animation 25s linear infinite;
	-webkit-animation: my-animation 25s linear infinite;
	animation: my-animation 25s linear infinite;
}

.table td .far {
	font-size: 2em;
}


.cervena {
	background: #f09398!important;
}

.modra {
	background: #9ccdf3!important;
}

.bile-pismo {
	color: #fff!important;
}


/* for Firefox */
@-moz-keyframes my-animation {
	from { -moz-transform: translateX(100%); }
	to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
	from { -webkit-transform: translateX(100%); }
	to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
	from {
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
}