/* Styles for dialog window */
.small-dialog {
	background: white;
	padding: 5px 5px;
	text-align: left;
	max-width: 600px;
	margin: 40px auto;
	position: relative;
}

/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;



	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);

	opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;

	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}


.error-page{
	padding-top: 70px;
}

.aktuality-uvod{
	max-width: 1300px;
	margin: auto;
	padding: 0 15px 15px 15px;
	background: #f9f9f9;
}
.aktuality-uvod p{
	font-size: 14px;
	margin: 0px;
	padding: 10px 15px 10px 15px;
	text-align: justify;
}
.aktuality-uvod ul{
 list-style: circle;
 margin: 0 0 0 25px;
}


@media only screen and (max-width: 700px){
	.aktuality-uvods{
		max-width: 90%;
		margin: auto;
	}
}


/* Style the Image Used to Trigger the Modal */
#myImg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
	from {-webkit-transform:scale(0)}
	to {-webkit-transform:scale(1)}
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

/* The Close Button */
.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
	.modal-content {
		width: 100%;
	}
}



.crossroad .box a{
	font-weight: 600;
}

@media only screen and (min-width: 1199px){
	.crossroad{
		margin-top:-150px
	}
}

.uredni-deska{
	font-size: 14px;
	margin-bottom: 0;
}

.posledni-fotogalerie{
	text-decoration: none
}

.kalendar{
	text-decoration: none;
	color: black;
 font size:14px;

}

.kalendar:hover{
	text-decoration: none;
	color: dimgrey;
}

.img-novinka {
	float: left;
	margin: 0 25px 20px 0;
 max-width:80%;
}

.odkaz-novinka{
	text-decoration: none;
}


.blue-theme article.highlight h2,
.blue-theme article.highlight a,
.box--blue-link{
	background:rgba(46,161,255,0.9);
}
.orange-theme article.highlight h2,
.orange-theme article.highlight a,
.box--orange-link{
	background:rgba(246,165,6,0.9);
}
.green-theme article.highlight h2,
.green-theme article.highlight a,
.box--green-link{
	background:rgba(52,172,50,0.9);
}
.red-theme article.highlight h2,
.red-theme article.highlight a,
.box--red-link{
	background:rgba(182,30,33,0.9);
}
article h2,
article a{
	transition-duration: 1.5s;
}
article:empty {
	display: none;
}
.green-theme .jumbotron {
	border-color: #2c902c;
}
.green-theme .side-nav>ul>li.is-active {
	background: #35ab35;
}




@media (min-width: 992px){
	.col-md-15 {
		width: 33%;
		float: left;
		min-height: 380px;
	}
}

.only-mobile{
	display: none;
}
@media (max-width: 992px){
	.only-mobile{
		display: block;
	}
	.no-mobile{
		display: none;
	}
	.side-nav{
		display: none;
	}
}
#calendar {
	max-width: 900px;
	margin: 0 auto;
}
.calendar table td {
	text-align: center;
	font-size: 12px;
	padding: 10px 11.5px;
}
.calendar table tbody tr td:first-child {
	font-size: 12px;
	color: #777;
	font-weight: normal;
}

.calendar .prev,
.calendar .next{
font-size: 20px;
cursor: pointer;
}
.calendar .head{
	background: #868686;
	color: white;
}
.calendar .head td{
	color: white !important;
}
main .calendar table td .day {
	text-align: center;
}
.calendar .day.event {
	background: #ffd075;
	color: black;
	text-align: center;
}
.calendar .day.event:hover,
.draw-event,
.day.hover{
	background: #f7a507 !important;
	cursor: pointer;
}
.draw-event td{
	color: black !important;
}
.draw-event{
	display: none;
}

.side-nav a:hover{
	text-decoration: underline;
}
.generic-text ul li, .aktuality-uvod ul li {
 font-weight: normal;
}
.generic-text ul
{
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
}
.submenu .menu-mobile .menu-link2:before {
	content: '';
	background-image: url(../files/images/ico/sprite.png);
	background-position: 0px 0px;
	width: 86px;
	height: 66px;
	position: absolute;
	left: 18px;
}
.submenu .menu-mobile .menu-link2 {
	width: 100%;
}
.submenu .menu-mobile{
	background: rgb(173, 170, 170);
	width: 100%;
	height: 67px;
}
.menu-mobile .menu-link2 {
	display: block;
	width: 86px;
	height: 66px;
	line-height: 66px;
	text-align: center;
}
.menu-mobile .menu-link2 a{
	position: relative;
}

main table
{
 margin: 0px auto;
 border-collapse: separate;
 border: 1px solid white;
}

main table th, main table td
{
 text-align: left;
 padding: 5px;
 font-weight: normal;
 border: 1px solid white;
}

main table tbody tr td:first-child
{
 font-size: 15px;
 color: #000000;
 font-weight: normal;
}
.green-theme .side-nav>ul>li.is-active>a {
	color: #fff;
}
.green-theme .side-nav>ul>li.is-active>a:hover {
	background: #2c902c;
}

main table
{
 margin: 0px auto;
 border-collapse: separate;
 border: 1px solid white;
}

main table th, main table td
{
 text-align: left;
 padding: 5px;
 font-weight: normal;
 border: 1px solid white;
}

main table tbody tr td:first-child
{
 font-size: 15px;
 color: #000000;
 font-weight: normal;
}
main .generic-text p, main .generic-text table tr td, main .generic-text div, main .generic-text ul li, main .generic-text ol li
{
 font-size: 13px;
 line-height: 140%;
 color: black;
}

main .generic-text ol
{
 margin-top: 10px;
 margin-left: 15px;
 list-style-type: decimal;
}

main .generic-text ol li
{
 padding-left: 20px;
 margin-top: 15px;
 color: black;
}
.generic-text {
	padding: 30px 0 0px 0px;
}
@media only screen and (max-width: 991px)
{
.sidebar {
 margin-top: 10px;
}
}
.generic-text h1
{
 font-size: 22px;
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 30px;
 margin-left: 0px;
}
.generic-text h2{
 font-size: 18px;
 margin-top: 20px;
 margin-right: 0px;
 margin-bottom: 20px;
 margin-left: 0px;
}
.post-preview{
clear: both;

}
.generic-text .post-preview h2{
font-size: 22px;
}
.generic-text iframe{
width:100%;
}
.post-preview .info
{
 font-size: 12px;
}

.page-footer .container-fluid{
padding-bottom: 60px;

}
/* CSS Document */
.cookies_bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.86);
	border-top: 1px solid #d9d9d9;
	z-index: 10009;
	padding-bottom: 10px
}
.cookies_bar, .cookies_bar a {
	color: #f2f2f2
}
.cookies_bar .hidden {
	display: none
}
.cookies_bar_option_checkbox, .cookies_bar_option_title {
	display: inline-block;
	margin-right: 5px
}
.cookies_bar_option_title {
	font-weight: 700
}
.cookies_bar_option_description {
	display: block
}
@media all and (max-width:400px) {
.cookies_bar_option_description {
	display: none
}
}
.cookies_bar_accept, .cookies_bar_custom {
	border: 0;
	background-color: #5ddb63;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	padding: 5px 10px;
	margin-left: 10px
}
.cookies_bar_inner {
    font-size: 120%;
}
.cookies_bar_custom {
	background-color: #eee;
	color: #222
}
.cookies_bar_details {
	margin-left: 10px;
	font-size: 12px
}
.cookies_bar_details:hover {
	text-decoration: underline;
	cursor: pointer
}
.cookies_bar_title {
	padding: 0 10px;
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	margin-top: 18px
}
.cookies_bar_description {
	padding: 0 10px;
	margin-top: 5px;
	text-align: left
}
.cookies_bar_option {
	padding: 0 10px;
	margin-bottom: 10px
}
.cookies_bar.hidden {
	bottom: -100%
}
.cookies_bar button {
	border-radius: 2px
}
