<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
  min-width: 100%;
  min-height: 100%;
}

body {
  /*zarovnani dlazdic na stred - vertical */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 70px;
  padding-top: 70px; /* 470*/
  /*konec zarovnani dlazdic na stred - vertical */
  
  background-color: #333;
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.background {
	background-color: #262626;
}

.border-grey-color{
	border-color: #555;
}

/* KARTY */
.card{
	margin-top: 15px;
	background-color: #222;
	text-align: center;
	opacity: 0.6;
}

.card .badge {
	position: absolute;
	z-index: 10;
	top: 10;
	left: 10;
}

.card:hover{
	text-decoration: none;
	opacity: 1;
}

.card-body{
	color: #fff;
}

.card p{
	color: #ccc;
}

.card .card-img-top{
	overflow: hidden;
}

.card .resizable {
   width: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   transform: scale(1);
}

.card:hover .resizable {
	transform: scale(1.3);
}

.card img{
	-webkit-filter: grayscale(80%); /* Safari 6.0 - 9.0 */
 	filter: grayscale(80%);
}

.card:hover img{
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
 	filter: grayscale(0%);
}

/* KONEC KARTY */

/* MODALS */
.modal {
	color: #333;
	text-shadow: none;
}

.text-info-color{
	color: #00008b;
}

/*ICONS*/
.modal-icon::before{ display: none; font-family: "Font Awesome 5 Solid"; }
.modal-icon{ font-size: 32px;	margin-right: 15px; float: left;}

.info, .info .modal-icon, .info .modal-icon::before{ 
	color: #00008b;
	content: "\f059";
}

.add, .add .modal-icon, .add .modal-icon::before{ 
	color: #ecb429;
	content: "\f055";
}

.ok, .ok .modal-icon, .ok .modal-icon::before{ 
	color: #2e8b57;
	content: "\f058";
}

.error, .error .modal-icon, .error .modal-icon::before{ 
	color: #dc143c;
	content: "\f057";
}

.warning, .warning .modal-icon, .warning .modal-icon::before{ 
	color: #ff8c00;
	content: "\f06a";
}
/* KONEC - MODALS */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

.animate {
	-webkit-transition: all 0.6s ease;
   -moz-transition: all 0.6s ease;
   -o-transition: all 0.6s ease;
   transition: all 0.6s ease;
}</pre></body></html>