/*************************/
/***   FONTS           ***/
/*************************/

@font-face {
    font-family: 'OpenSans';
    src: url('/files/fonts/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans';
    src: url('/files/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: initial;

}
@font-face {
    font-family: 'OpenSans-Light';
    src: url('/files/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'OpenSans-Light';
    src: url('/files/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'OpenSans-ExtraLight';
    src: url('/files/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 200;
}
@font-face {
    font-family: 'OpenSans-ExtraLight';
    src: url('/files/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'OpenSans-Thin';
    src: url('/files/fonts/OpenSans-Thin.ttf') format('truetype');
    font-weight: 100;
}
@font-face {
    font-family: 'OpenSans-Thin';
    src: url('/files/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
}


* {
	margin: 0px;
	padding: 0px;
}
body {
      background-color: white;
      color: #4d4c4c;  
	font-size: 75%;
	text-align: left;
	font-family: OpenSans-Light,sans-serif;
  	font-weight: 300;
	line-height: 1.4;
	height: 100%;
}

#cookies_souhlas{
	width: 100% !important;
}

/**********************************/
/*         COMMON COMPONENTS
/**********************************/

@media (min-width: 1400px){

}
@media (min-width: 1500px){
.container.container-lg {
    max-width: 1470px;
}
}
@media (min-width: 1660px){
.container.container-lg {
    max-width: 1640px;
}
}

.cols{
	display: flex;
}
.col{
	display: inline-block;
	vertical-align: middle;
}
button, button:hover, button:active, button:focus{
	outline: none;
	box-shadow: none !important;
}
.fader{
	opacity: 0.0;
    	-webkit-transition: opacity 1.0s ease-in-out;
    	-moz-transition: opacity 1.0s ease-in-out;
    	-ms-transition: opacity 1.0s ease-in-out;
    	-o-transition: opacity 1.0s ease-in-out;
    	transition: opacity 1.0s ease-in-out;
}
.fader.visible{
	opacity: 1;
}
.scaler{
	-webkit-transform: translateY(0) scale(1.5);
    	transform: translateY(0) scale(1.5);
    	opacity: 0;
    	-webkit-transition: -webkit-transform 1.0s ease-in-out 1.0s, opacity 1.0s ease-in-out 1.0s;
    	transition: transform 1.0s ease-in-out 1.0s, opacity 1.0s ease-in-out 1.0s;
}
.scaler.visible{
	-webkit-transform: translateY(0) scale(1);
    	transform: translateY(0) scale(1);
	opacity: 1;
}
.borderEffect{
	position: relative;
	border: 1px solid #d6f6b2;
	background: white;
}
.borderEffect:before, .borderEffect:after {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    content: "";
    z-index: 3;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.borderEffect:before {
    border-bottom: 1px solid #0396fd;
    border-left: 1px solid #0396fd;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
.borderEffect:after {
    border-top: 1px solid #0396fd;
    border-right: 1px solid #0396fd;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.borderEffect:hover:after, .borderEffect:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.borderEffect div.inner {
    	text-transform: uppercase;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding: 8px 25px;
	background: #6fcd01;	
	border: 1px solid #6fcd01;
	margin: 5px;
}
.borderEffect:hover div.inner{
	background: #0396fd;
	border: 1px solid #0396fd;
	color: white;
}
.borderEffect:hover{
	background: #EBF4FB;
}

.borderEffect a, .borderEffect a:hover{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	color: transparent !important;
}	
.rotater{
	text-align: center;
}
.rotater:hover .to-rotate{
    	-ms-transform: rotateY(360deg);
    	-webkit-transform: rotateY(360deg);
    	transform: rotateY(360deg);
    	transition: ease-in-out .6s;
    	-webkit-transition: ease-in-out .6s;
}

/**********************************/
/*         HEADER
/*********************************/
header{
	position: relative; 
	width: 100%; 	
	z-index: 2;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f0faff+0,ffffff+100 */
background: #f0faff; /* Old browsers */
background: -moz-linear-gradient(top, #f0faff 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #f0faff 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #f0faff 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0faff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
#header{
	transition: all 0.5s ease;
	padding: 10px 0;
}
.logo img{
	max-height: 150px;
	transition: all 0.5s ease;
}
header.scrolled .logo img{
	max-height: 50px;
}
header.scrolled #header{

}
header .btn.btn-primary{
	min-width: 270px;
    	padding: 6px 45px;
    	margin: 3px 0;
	display: block;
}
.navbar-text .text-blue{
	font-size: 17px;
}

.navbar-text {
	font-size: 17px;
}

.navbar-text span{
	white-space: nowrap;
}
.navbar-text a{
	text-decoration: none;
	color: black;
	display: inline-block;
}
.navbar-text a:hover, .navbar-text a:focus{
	text-decoration: underline;
	color: black;
}
.navbar-text i{
	color: #059be8;
}
.link-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    color: transparent !important;
    z-index: 10;
}
.nomargin{
	margin: 0;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
	width: 100%;
    	position: relative;
    	min-height: 1px;
    	padding-right: 15px;
    	padding-left: 15px;
}

.col-xs-5ths {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

@media (min-width: 768px) {
    .col-sm-5ths {
    	  -ms-flex: 0 0 20%;
    	  flex: 0 0 20%;
    	  max-width: 20%;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
    	  -ms-flex: 0 0 20%;
    	  flex: 0 0 20%;
    	  max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
    	  -ms-flex: 0 0 20%;
    	  flex: 0 0 20%;
    	  max-width: 20%;
    }
}

/**********************************/
/*         SEARCHBOX
/**********************************/
.searchbox{

}
.searchbox .search_text{
	border: 1px solid #e8e8e8;
	border-right: none;
	padding: 0.25em;
	padding-left: 50px;
	font-size: 18px;
	border-radius: 0;
}
#form_search{
	position: relative;
}
#form_search:before{
	position: absolute;
	top: 0;
	left: 10px;
	bottom: 0;
	content: '\f002';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900; 
	z-index: 10;
    	color: #4c4c4c;
	font-size: 20px;
	display: flex;
    	align-items: center;
}

/**********************************/
/*         BUTTONS
/**********************************/

.btn-wrap{
	display: block;
	margin-top: 8px;
	clear: both;
}
.btn,  .camera_wrap .btn{
	text-decoration: none !important;
	font-weight: bold;
	font-size: 18px;
	box-shadow: none !important;
	padding: 0.3rem 1.2rem;
	border-radius: 0;
	display: inline-block;
}
.btn.btn:active{
	border: inherit !important;
	background: inherit !important;
}
.btn.btn-primary{
	text-transform: uppercase;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#76c8f3+0,0199e8+100 */
background: #76c8f3; /* Old browsers */
background: -moz-linear-gradient(top, #76c8f3 0%, #0199e8 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #76c8f3 0%,#0199e8 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #76c8f3 0%,#0199e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#76c8f3', endColorstr='#0199e8',GradientType=0 ); /* IE6-9 */
	border: 1px solid #79d0fd;
	color: white !important;
	font-size: 17px;
	font-weight: bold;
	padding: 12px 45px;
	position: relative;
	border-radius: 5px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .reference_box:hover .btn.btn-primary{
	background: #08334a;
	border: 1px solid #79d0fd;
	color: white !important;
}
.btn.btn-secondary{
	background: transparent;
	border: 1px solid #79d0fd;
	color: #79d0fd !important;
	border-radius: 5px;
	padding: 10px 15px;
	font-size: 17px;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .article-thumb:hover .btn.btn-secondary{
	background: #0199e8;
	border: 1px solid #0199e8;
	color: white !important;
}
.btn.btn-terciary{
	background: transparent;
	border: 1px solid #004164;
	color: #004164 !important;
	border-radius: 5px;
	padding: 10px 35px;
	font-size: 17px;
	font-weight: bold;
	text-transform: uppercase;
}
.btn.btn-terciary:hover, .btn.btn-terciary:focus{
	background: #004164;
	border: 1px solid #004164;
	color: white !important;
}


/**********************************/
/*         MENU
/**********************************/
#menu_top{
	z-index: 2;
}
.navbar {
    	padding: 0;
	margin-top: 0;
	-webkit-transition: all 0;
    	transition: all 0;
	flex-wrap: nowrap;
}
.navbar-brand img{
	height: auto;
	max-width: 220px;
}	
.navbar-toggler {
    display: none;
}
.navbar-collapse.collapse:not(.show) {
    display: block;
}
.navbar-collapse{
	flex-grow: 0;
	flex-basis: auto;
}
.nav {
    	justify-content: flex-end;
}
.nav li {
    	margin: 0 15px;
   	position: relative;
    	display: inline-block;
}
.nav li.lvl-1 > a {
    	font-size: 16px;
    	color: black;
    	font-weight: bold;
    	padding: 5px 0px;
    	text-transform: uppercase;
    	text-decoration: none !important;
    	display: inline-block;
	position: relative;
	cursor: pointer;
	border-top: 2px solid transparent;
	border-bottom: 4px solid transparent;
}
/*.nav li.lvl-1 > a:before{
	content: "";
    	display: block;
    	width: 0%;
    	height: 2px;
    	background-color: #0199e8;
    	position: absolute;
    	top: 0;
    	transition: all 0.25s linear 0s;
}
.nav li.lvl-1 > a:after{
	content: "";
    	display: block;
    	width: 0%;
    	height: 4px;
    	background-color: #0199e8;
    	position: absolute;
    	bottom: 0;
    	transition: all 0.25s linear 0s;
}*/
.nav li.lvl-1:hover > a, .nav li.lvl-1:focus > a, .nav li.lvl-1 > a.active{
	border-top: 2px solid #0199e8;
	border-bottom: 4px solid #0199e8;
}
.nav li.lvl-1.fcb:hover > a, .nav li.lvl-1.fcb:focus > a, .nav li.lvl-1.fcb > a.active{
	border-top: 2px solid transparent;
	border-bottom: 4px solid transparent;
	color: #0199e8;
}
.dropdown-toggle::before {
    	display: inline-block;
    	width: 0;
    	height: 0;
	color: black;
    	margin-right: 0.255em;
    	vertical-align: 0.255em;
    	content: "";
    	border-top: 0.3em solid;
    	border-right: 0.3em solid transparent;
    	border-bottom: 0;
    	border-left: 0.3em solid transparent;
}
.dropdown-toggle::after{
	display: none;
}
.dropdown-menu {
    	border-radius: 0;	
	border: 1px solid #c0e6f9;
    	border-bottom: none;
	background: #f0faff;
    	margin: 0;
    	left: 0;
    	top: 36px;
    	min-width: calc(100% + 2px);
    	transform-origin: 50% 0;
    	transform: scaleY(0);
    	opacity: 0;
    	display: block;
    	transition: transform 0.3s, opacity 0.3s;
	padding: 0;
}
.dropdown-menu.show {
    	transform: scaleY(1);
    	opacity: 1;
}
.dropdown-menu a.dropdown-item{
	padding: 0.5rem 1.5rem;
	color: black;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid #c0e6f9;
}
.dropdown-menu a.dropdown-item:hover, .dropdown-menu a.dropdown-item.active{
	color: white;
	background: #0199e8;
}

#intro{
	position: relative;
}

#intro img{
	width: 100%;
	display: block;
	height: auto;
}

section {
    padding: 40px 0;
}

.bordered {
    border-bottom: 1px solid #dceff8;
}


/**********************************/
/*         DEFAULTNI HODNOTY
/*********************************/

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  	line-height: 1.3em;
  	margin: 0 0 12px 0;
  	text-align: left;
}
h1, .h1{
	color: white;
	font-size: 60px;
	font-weight: bold;
  	font-family: 'OpenSans';
	text-align: left;
	position: relative;
	padding-bottom: 8px;
}
 
h2, .h2{
	color: #194e6a;
	font-size: 30px;
	font-weight: normal;
  	font-family: 'OpenSans';
}
h3, .h3{
	color: #194e6a;
	font-size: 18px;
	font-weight: bold;
	clear: both;
  	font-family: 'OpenSans';
}
h4, .h4{
	color: #c90000;
	font-size: 14px;
	font-weight: 600;
}
p, li {
  	margin: 0 0 12px 0;
  	line-height: 1.3em;
  	font-size: 16px;
  	list-style-type: none;
  	color: black;
  	font-weight: normal;
  	font-family: 'OpenSans';
}

ul{
	padding-left: 0;
}
.EditableSection a, .EditableContent a, .editable-section a{
	text-decoration: underline;
}
.EditableSection a:hover, .EditableContent a:hover, .editable-section a:hover{
	text-decoration: none;
}
.EditableSection p, .EditableContent p, .editable-section p,
.EditableSection li, .EditableContent li, .editable-section li{
	line-height: 1.6em;
}
.EditableSection li, .EditableContent li, .editable-section li{
	position: relative;
	padding-left: 20px;
	list-style: none;
}
.EditableSection li:before, .EditableContent li:before, .editable-section li:before {
    content: '\f111';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 6px;
    position: absolute;
    top: 1px;
    left: 0;
}
.editable_section a[rel="lightbox[all]"], .editable-section a[rel="lightbox[all]"], .EditableContent a[rel="lightbox[all]"] {
    	position: relative;
    	transition: all 0.4s ease-out;
	z-index: 1;
}
.EditableSection a[rel="lightbox[all]"] img, .EditableContent a[rel="lightbox[all]"] img, .editable-section a[rel="lightbox[all]"] img {
    	border: 1px solid transparent !important;
	    height: auto !important;
    	margin: 4px;
    	z-index: 50;
}
.EditableSection a[rel="lightbox[all]"]:hover img, .EditableContent a[rel="lightbox[all]"]:hover img, .editable-section a[rel="lightbox[all]"]:hover img {
    	border: 1px solid black !important;
}
.justified-gallery a[rel="lightbox[all]"] {
    	position: absolute;
}
.gallery a[rel="lightbox[all]"] img, .gallery img {
    	position: inherit;
    	display: initial;
    	z-index: 0;
}
.gallery a[rel="lightbox[all]"]:hover:after{
	//content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	background: rgba(201,0,0,0.3);
}

img {
	margin: 0; 
	max-width: 100%;
}

a,
a:visited {
    	color: black;
    	font-size: 16px;
  	color: black;
  	font-weight: normal;
  	font-family: 'OpenSans';
}
a:hover {
	text-decoration: underline;
	color: #0199e8;
}
table {
	border-collapse: collapse;
	border: none;
  	margin: 0 0 12px 0;
}
table td {
  vertical-align: top;
  text-align: left;
}
.EditableSection th, .EditableContent th, .editable-section th,
.EditableSection td, .EditableContent td, .editable-section td{
	font-size: 17px;	
  	color: black;
  	font-weight: 300;
    font-family: 'OpenSans-Light';
	padding: 5px;
	border: 3px solid #caecff;
}
ul, ol {
	list-style-position: outside;
	margin: 0 0 12px 0px;
}
.EditableSection table {
  border: none;
  width: auto;
  height: auto;
}

.EditableSection td {
  border: 1px solid #E4E4E4;
  padding: 10px;
  line-height: 1.3em;
  font-size: 15px;
  color: #4d4c4c;
  margin-bottom: 5px;
}

bold, b{
	font-weight: bold;
}

/**********************************/
/*  INTRO / SLIDESHOW 
/*********************************/
#intro {
    	position: relative;
}
.intro-nadpis{
	background: url(/files/images/intro-small.jpg) repeat-y center top;
	padding: 10px 0;
}
.intro-nadpis h1, .intro-nadpis .h1{
	padding: 0;
	margin: 0;
}
#slides{
	position: relative;
	margin: 0 !important; 
	overflow: hidden;
	float: none;
}	

#slides .camera_pag{
	position: absolute;
	left: 0;
    	right: 0;
	bottom: 0;
    	margin-left: auto;
    	margin-right: auto;
	max-width: 1470px;
	text-align: left;
	z-index: 1000;
}

.camera_wrap .camera_pag .camera_pag_ul{
	text-align: right;
}

#slides .camera_pag li{
	width: 15px;
	height: 15px;
	display: inline-block;
	z-index: 1000;
	background: #175170;
	color: transparent;
	border-radius: 0;
	border: 1px solid #b4ccd9;
}

#slides .camera_pag li span{
	display: none;
}

#slides .camera_pag li:hover, 
#slides .camera_pag li.cameracurrent{
	background: #0199e8;
	color: transparent;
}
.camera_commands{
    display: none;
}

#slides .camera_pag, .caption{
	width: 100%;
}
.caption{
	z-index: 2;
	position:absolute;
    	left:0;
    	right:0;
	top: 0;
	bottom: 0;
    	margin-left:auto;
    	margin-right:auto;
    	max-width: 1360px;
}
.caption .row{
	height: 100%;
	align-items: center;
}
.caption p{
	color: white;
	font-size: 27px;
	font-family: OpenSans;
}
.caption p strong{
	font-size: 60px;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
}


/**********************************/
/*  BANNERY 
/*********************************/

#ico-boxes{
	overflow: hidden;
}
.ico-box{
	display: block;
	text-align: center;
	position: relative;
	background: white;
	-webkit-box-shadow: 0px 3px 15px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 15px 2px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 15px 2px rgba(0,0,0,0.25);
	border-top: 15px solid #dedede;
	padding: 15px 10px;
	text-decoration: none;
	transition: all 0.5s ease;
	margin-top: 0;
	margin-bottom: 20px;
	margin-top: -80px;
	margin-bottom: 40px;
}
.ico-box:after{
	content: '';
	position: absolute;
	width: 40px;
	height: 15px;
	top: -15px;
	right: 0;
	background: #c90000;
	z-index: 2;
	transition: all 0.5s ease;
}
.ico-box:hover, .ico-box:focus{
	text-decoration: none;
	margin-top: -100px;
	margin-bottom: 60px;
}
.ico-box:hover:after, .ico-box:focus:after{
	width: 100%;
}
.ico-box .ico-box-nadpis{
	font-size: 20px;
	color: black;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 0;
}
.ico-box .ico-box-icon{
	text-align: center;
	font-size: 50px;
	color: black;
}

/**********************************/
/*  INDEX 
/*********************************/
.index-info{
	display: flex;
	margin-bottom: 40px;
}
.index-info-box {
	flex-basis: 50%;
	max-width: 50%;
}
.index-info-text-box{
	background: white;
	border-right: none;
	padding: 20px 25px;
	border-top: 1px solid #d8f0fe;
	border-bottom: 1px solid #d8f0fe;
      border-left: 1px solid #d8f0fe;
}
.index-info-text-box p{
	margin-bottom: 30px;
}
.index-info-img-box{
	background: url(/files/images/index-intro.jpg) no-repeat center center;
	background-size: cover;
}
.index-info h1, .index-info .h1{
	font-size: 30px;
	font-weight: bold;
	color: black;
}
.info-leftright .index-info:nth-of-type(odd) .index-info-img-box{
	order: 1;
}
.info-leftright .index-info:nth-of-type(odd) .index-info-text-box{
	order: 2;
}

/**********************************/
/*  BOX 
/*********************************/
.box{
	display: flex;
	margin-bottom: 40px;
	width: 100% !important;
    	height: auto !important;
}
.box.box-reversed{
	flex-direction: row-reverse;
}
.box-half {
	flex-basis: 50%;
	max-width: 50%;
}
.box-text{
	background: white;
	border: 1px solid #eaeaea;
	border-right: none;
	padding: 20px 25px;
}
.box.box-reversed .box-text{
	border: 1px solid #eaeaea;
	border-left: none;
}
.box-text p{
	margin-bottom: 30px;
}
.box-img{
	background-size: cover !important;
}
.box-text h1, .box-text .h1{
	font-size: 30px;
	font-weight: bold;
	color: black;
}


/**********************************/
/*  MODULY 
/*********************************/

.section-bcg{
background: #f0faff;
    background: -moz-linear-gradient(top, #f0faff 0%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f0faff 0%,#ffffff 100%);
    background: linear-gradient(to bottom, #f0faff 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0faff', endColorstr='#ffffff',GradientType=0 );
}
.section-red{
	background: #c90000;
}

section#main_content{
	padding-top: 0;
}

#index h2, #index .h2{
	font-size: 30px;
	font-weight: bold;
	color: #929292;
	text-transform: uppercase;
}

.bcg-special{
	background: url(/files/images/bcg.png) repeat left top;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.bcg-special:before {
  	content: '';
  	position: absolute;
  	top: 0;
  	right: 0;
  	width: 50%;
  	height: 100%;
  	background: #c90000;
  	-webkit-transform-origin: 100% 0;
  	-ms-transform-origin: 100% 0;
  	transform-origin: 100% 0;
  	-webkit-transform: skewX(-35deg);
  	-ms-transform: skewX(-35deg);
  	transform: skewX(-35deg);
  	z-index: -1;
  	transform-origin: bottom;
	border-left: 1px solid white;
    	border-top: 30px solid white;
    	border-bottom: 30px solid white;
}

.row-address{
	min-height: 350px;
}
.box-blue{
	background: #edf9ff;
	border: 1px solid #c0e6f9;
}
.box-blue .col-md-6:first-of-type{
	border-right: 1px solid #c0e6f9;
}
.box-inner {
	padding: 20px 40px;
}
.box-inner h3, 
.box-address h3{
	color: black;
	font-weight: normal;
	font-size: 24px;
}
.box-inner ul li:before{
	content: '\f00c';
	color: #0199e8;
	font-size: 14px;
}
.col-over{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 20;
	display: flex;
    	align-items: center;
}	

.box-address{
	width: 100%;
	background: white;
	border: 1px solid #c0e6f9;
-webkit-box-shadow: 0px 0px 20px 4px rgba(192,230,249,1);
-moz-box-shadow: 0px 0px 20px 4px rgba(192,230,249,1);
box-shadow: 0px 0px 35px 2px rgba(192,230,249,1);
	z-index: 20;
	padding: 30px 0;
}
.box-address-inner{
	border-left: 10px solid #0199e8;
	padding: 0 20px;
	margin-left: -1px;
}	
.box-address i{
	color: #0199e8;
}
.text-blue{
	color: #0199e8;
	font-weight: bold;
}

/**********************************/
/*  FORMULARE 
/*********************************/


button#modal-launch{
    	background: none;
    	border: none;
    	cursor: pointer;
	padding: 0;
	box-shadow: none;
	text-shadow: none;
	display: flex;
    	align-items: center;
}
button#modal-launch p{
	margin-right: 10px;
	margin-bottom: 0;
}
button#modal-launch:after{
	background: transparent;
}
button#modal-launch .h2{
	text-transform: initial;
	color: white;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-content{
	border: none;
	border-radius: 0;
}

div.modal-header {
	border-radius: 0;
	background: #0199e8;
}


#Schuzka div.modal-header{
	background: #004164;
}

div.modal-header .close{
	margin: 0 0 auto;
	border: 1px solid white;
	border-radius: 5px;
	padding: 0.4rem 0.7rem;
	color: white;
	opacity: 1;
	-webkit-transition: all 0.3s; 
	-ms-transition: all 0.3s;
    	transition: all 0.3s;    
}
div.modal-header .close:not(:disabled):not(.disabled):hover, 
div.modal-header .close:not(:disabled):not(.disabled):focus{
	opacity: 1;
	color: black;
	background: white;
}

.modal-dialog label {
    margin-bottom: 0.2rem;
}

.modal-dialog .modal-title{
	color: white;
	/* text-transform: uppercase; */
	font-size: 25px;
	font-weight: bold;
}

span.mandatory-star {
    color: #ff6d6d;
}

.modal-dialog .modal-body {
    background-color: #f5f5f5;
}

.modal-dialog .modal-body label, label{
	/* font-weight: bold; */
	font-size: 17px;
	color: black;
}

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid
{
    background-color: #ffdede;
}

.invalid-feedback, .form-text, small, .small {
    font-size: 15px;
}

/***************************/
/*  LINKS
/***************************/
#ico-boxes{
	
}
#ico-boxes .col-lg-5ths{
	border-right: 1px solid #c0e6f9;
}
#ico-boxes .col-lg-5ths:last-of-type{
	border-right: none;
}
.link-box{
	position: relative;
	text-align: center;
	margin: 0 13px;
	margin-bottom: 20px;
}
.link-box .link-fill{
	color: transparent;
	outline: none !important;
    	border: none !important;
    	box-shadow: none !important;
}
.link-box-ico{
	min-height: 100px;
}
.link-box p{
	font-size: 17px;
	font-family: 'OpenSans';
	font-weight: normal;
	max-height: 110px;
    	overflow: hidden;
}
.link-box .link-box-name {
	color: #0199e8;
	font-weight: bold;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.link-box:hover .btn.btn-secondary{
	background: #0199e8;
	border: 1px solid #0199e8;
	color: white !important;
}

.link-box-ico img {
	margin-top: 15px;
	margin-bottom: 15px;
}

.slick-next, .slick-prev{
	color: black;
	font-size: 30px;
	top: 32%;
}
.slick-next:hover, .slick-prev:hover{
	color: #c90000;
}
.slick-next:before, .slick-prev:before{
	content: '';
}

/***************************/
/*  PRODUKTY
/***************************/
.product-box{
	border: 1px solid #c0e6f9;
	transition: all 0.5s ease;
	margin-top: 0;
    	margin-bottom: 15px;
	overflow: hidden;
}
.img-cover{
	width: 100%;
	padding-top: 67%;
	overflow: hidden;
	position: relative;
}
.img-cover img{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 200%;
	transform: translate(-50%, -50%);
}
.product-info{
	padding: 10px 15px;
}
.produkt-box-name{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
	color: black;
}
.produkt-box-tags{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 5px;
}
.product-tag{
	display: inline-block;
	font-size: 15px;
	color: black;
	font-weight: normal;
	padding: 3px 5px;
	background: #effaff;
	border: 1px solid #cdebfa;
	border-radius: 5px;
    	margin-right: 7px;
    	margin-bottom: 7px;
}	
.produkt-box-price{
	color: black;
	font-size: 20px;
	font-weight: bold;
}
.product-box-more{
	padding: 10px 15px;
	border-top: 1px solid #c0e6f9;
	color: #0199e8;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.5s ease;
	z-index: 5;
	position: relative;
}
.product-box-more:after{
	content: '';
    	position: absolute;
    	width: 100%;
    	height: 100%;
    	top: 0;
	bottom: 0;
    	left: -100%;
    	background: #0199e8;
    	z-index: -1;
    	transition: all 0.5s ease;
}
.product-box:hover, .product-box:focus{
	margin-top: -20px;
    	margin-bottom: 35px;
}
.product-box:hover .product-box-more, .product-box:focus .product-box-more{
    	border-top: 1px solid #0199e8;
    	color: white !important;
}
.product-box:hover .product-box-more:after, .product-box:focus .product-box-more:after{
	left: 0;
}

/***************************/
/*  FOOTER
/***************************/
#footer {
	height: auto;
	background: white url(/files/images/footer-bcg.jpg) no-repeat center bottom;
	border: none;
	padding-top: 72px;
	padding-bottom: 35px;
}
#footer p, #footer a, #footer a:visited{
	color: white;
	font-size: 16px;
	text-decoration: none;
}
#footer a:hover, #footer a:focus{
	text-decoration: underline;
	color: white;
}
#footer i{
	color: white;
	font-size: 25px;
}
.footer-nadpis{
	text-transform: uppercase;
	font-size: 17px;
	font-weight: bold;
}

#footer li{
    	position: relative;
    	padding-left: 20px;
    	list-style: none;
}	
#footer li:before{
	content: '\f45c';
    	font-weight: 900;
    	font-family: "Font Awesome 5 Free";
    	display: inline-block;
    	font-size: 6px;
    	position: absolute;
    	top: 1px;
    	left: 0;
	color: white;
}
footer{
	padding: 20px 0;
}

#footer_text a{
	color: black !important;
	text-decoration: none;
}
#footer_text a.link-webstranky{
	color: black !important;
	font-weight: bold;
}
#footer_text a:hover, 
#footer_text a.link-webstranky:hover{
	color: black!important;
	text-decoration: underline;
}


/**********************************/
/*         BREADCRUMB 
/*********************************/

.breadcrumb {
	margin: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
	padding-top: 10px; 
	margin-bottom: 35px;
}
.breadcrumb span, .breadcrumb a {
    	color: black;
	font-size: 15px;
	font-family: OpenSans-Light;
}
.breadcrumb a{
	text-decoration: underline;
}
.breadcrumb a:hover{
	text-decoration: none;
}
.breadcrumb .drobeckova-navigace-sipky {
    	display: inline-block;
    	padding: 0 1rem;
}


/***************************/
/*  PRODUKTY
/***************************/

.products-not-found{
	display: none;
}

.produkt_pagination{
	height: 35px;
	margin: 10px 0;
	text-align: left;
	flex-basis: 100%;
}

.produkt_pagination .strankovani-odkaz, .produkt_pagination .strankovani-sipky{
	border: 1px solid transparent;
	border-radius: 2px;
	background: transparent;
	width: 25px;
    	text-align: center;
    	line-height: 27px;
	font-weight: normal;
	color: black;
	text-decoration: none;
	vertical-align: top;
	display: inline-block;
}

.produkt_pagination b{
	background: #effaff;
	border: 1px solid #c0e6f9;
	width: 25px;
	color: black;
	font-weight: normal;
    	text-align: center;
    	line-height: 27px;
      display: inline-block;
	vertical-align: top;
	display: inline-block;
	font-size: 18px;
}

.produkt_pagination .strankovani-odkaz:hover, .produkt_pagination .strankovani-sipky:hover{
	background: #effaff;
	border: 1px solid #c0e6f9;
	color: black;
	font-weight: normal;
}

#main_content .strankovani-sipky img, #main_content .strankovani-sipky:hover img{
	margin: 0 !important;
	border: none !important;
}
.products-not-found{
	display: none;
}

.product-detail{
	margin-bottom: 3rem;
}
.product_detail_table{
	width: 100%;
}
.product_detail_table tbody{
	margin-bottom: 1rem;
	width: 100%;
	min-width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.product_detail_table tr{
	flex-basis: 50%;
	display: flex;
}
.product_detail_table tr td:first-of-type{
	flex-basis: 40%;
	font-weight: bold;
}
.product_detail_table td{
	flex-basis: 60%;
	display: block;
	border-bottom: 1px solid #c9dcec;
	padding: 0.5rem 0;
	padding-right: 1rem;
	font-size: 18px;
	color: black;
}
.detail_cena_s_dph{
	font-weight: bold;
}
.detail_img{
	position: relative;
	background: #daeef7;
	width: 100%;
    	height: 100%;	
	max-height: 353px;	
	min-height: 250px;
}
.detail_img_big{
	position: relative;
   	margin-bottom: 15px;
	border: 1px solid transparent;
}
.detail_img_big img{
	max-width: 100%;
	height: auto;
}
.detail_img_big:hover{
	border: 1px solid #00284f;
}

.slider-main{
	position: relative;
}
.slider-main .img-wrap{
	display: block;
	position: relative;
	width: 100%;
}
.slider-main .img-wrap a{
	padding-top: 65%;
	position: relative;
    	display: block;
}
.slider-main .img-wrap a img{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.slider-main .slick-arrow{
	position: absolute;
	top: calc(50% - 10px);
}
.slider-main .slick-prev, .slider-main .slick-next{
	color: transparent;
	font-size: 0;
}
.slider-main .slick-prev{
	z-index: 50;
	left: 10px;
}
.slider-main .slick-next{
	z-index: 50;
	right: 10px;
}
.slider-main .slick-prev:before{
	content: '\f104';
	font-weight: 900;
    	font-family: "Font Awesome 5 Free";
	color: #aac6e1;
	font-size: 35px;
}
.slider-main .slick-next:before{
	content: '\f105';
	font-weight: 900;
    	font-family: "Font Awesome 5 Free";
	color: #aac6e1;
	font-size: 35px;
}

.slider-nav .slick-slide {
    margin: 0 3px;
}
.slider-nav .slick-list {
    margin: 0 -3px;
}

.detail_img img, .detail_image img{
	max-width: 100%;
	height: auto;
}	
.detail_images{
	margin: 0;
	width: 100%;
}
.detail_images .col-md-4{
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.detail_images .col-md-4:nth-of-type(n+7){
	max-height: 0;
    	opacity: 0;
    	overflow: hidden;
	-webkit-transition: all .4s; 
    	transition: all .4s;
}
.detail_images .col-md-4.visible{
	max-height: 200px;
	opacity: 1;
}
.detail_images .button{
	width: 100%;
}
.detail_image{
	border-radius: 3px;
	overflow: hidden;
	cursor: pointer;
}
.detail_image img, .detail_img img{
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}
.button-back{
	margin-top: 1rem;
}
.cena{
	color: #506a84;
	font-size: 14px;
	font-weight: 300;
	font-family: 'OpenSans-Light';
	margin-bottom: 10px;
}
.detail_cena_s_dph{
	color: black;
	font-size: 24px;
}
.product-detail a{
	text-decoration: none;
}
.product-detail a:hover, .product-detail:focus{
	text-decoration: underline;
}


/***********
RESPONSIVE
************/

@media screen and (min-width: 1200px){
header{
	position: fixed;
	top: 0;
	z-index: 200;
}
}

@media (min-width: 576px){
#slides .camera_pag, .caption{
	max-width: 510px;
}
}
@media (min-width: 768px){
#slides .camera_pag, .caption{
	max-width: 690px;
}
}
@media (min-width: 992px){
#slides .camera_pag, .caption{
	max-width: 930px;
}
}
@media (min-width: 1200px){
#slides .camera_pag, .caption{
	max-width: 1110px;
}
}
@media (min-width: 1400px){
#slides .camera_pag, .caption{
    max-width: 1330px;
}
}
@media (min-width: 1500px){
#slides .camera_pag, .caption{
    max-width: 1440px;
}
}

@media screen and (max-width: 1600px){
.caption p{
	font-size: 20px;
}
.caption p strong{
	font-size: 36px;
}
.link-box{
	margin: 0; 
    	margin-bottom: 20px;
}
}

@media screen and (max-width: 1500px){
.navbar-toggler {
    	display: block !important;
    	color: #004265;
    	font-size: 25px;
    	vertical-align: middle;
    	outline: none !important;
    	line-height: 25px;
    	width: 100%;
	padding: 10px;
	text-align: right;
}
.navbar-toggler-icon {
    	font-size: 25px;
    	height: auto;
    	vertical-align: initial;
    	margin-bottom: 0;
    	color: #004265;
}
.navbar-collapse.collapse:not(.show) {
    display: none;
    height: auto;
}
.navbar-inner{
	width: 100%;
	text-align: center;
}
.nav li.lvl-1 {
    	display: block;
    	text-align: center;
    	flex-basis: 100%;
	margin: 0;
}
.nav li.lvl-1 > a{
	display: block;
	text-align: right;
	border: none;
	padding: 8px 15px;
}
.nav li.lvl-1:hover > a, .nav li.lvl-1:focus > a, .nav li.lvl-1 > a.active{
	border: none;
	background: #0199e8;
	color: white !important;
}
#header .col-md-auto{
	flex-basis: 100%;
	max-width: 100%;
	text-align: center;
}
.navbar-collapse{
    	position: absolute;
    	top: 100%;
    	background: white;
	width: 100%;
}
}

@media screen and (max-width: 1360px){


#menu_top{
	height: auto;
}

figcaption{
	font-size: 20px;
}
}

@media screen and (max-width: 1200px){
.caption p{
	font-size: 17px;
}
.caption p strong{
	font-size: 29px;
}
}

@media screen and (max-width: 1100px){

.logo {
    	width: 100%;
    	margin-bottom: 10px;
	text-align: center;
}

.index-info, .box{
	flex-wrap: wrap;
}
.index-info-box, .box-half{
	flex-basis: 100%;
	max-width: 100%;
}
.index-info-text-box, .box-text{
	border-top: 1px solid #d8f0fe !important;
	border-left: 1px solid #d8f0fe !important;
	border-right: 1px solid #d8f0fe !important;
	border-bottom: 1px solid #d8f0fe !important;
}
.index-info-img-box, .box-img{
	width: 100%;
    	padding-top: 70%;
    	position: relative;
	border-top: 1px solid #d8f0fe !important;
	border-left: 1px solid #d8f0fe !important;
	border-right: 1px solid #d8f0fe !important;
	border-bottom: 1px solid #d8f0fe !important;
}
#footer{
	background: url(/files/images/bcg.png) repeat left top;
}
#footer .col-md-auto{
	margin-bottom: 25px;
}
.kontakt-table{
	width: 100% !important;
}
.row-address{
	min-height: 400px;
}

}

@media screen and (max-width: 768px){

.navbar{
	flex-wrap: wrap;
}
.navbar-toggler, .navbar-brand{
	flex-basis: 50%;
	margin: 0;
}
header .btn.btn-primary{
	padding: 8px 25px;
}
#index-rozcestnik{
	margin: 0 20px;
}
.aktuality-img{
	margin-top: 20px;
}
.caption{
    	position: relative;
    	left: auto;
    	right: auto;
    	bottom: auto;
	width: 100%;
}
.caption p {
    font-size: 16px;
}
.caption p strong{
	font-size: 24px;
}
.caption .row{
	justify-content: flex-end;
}
.caption .btn.btn-primary{
	font-size: 14px;
}
.caption div.col-md-7{
	flex-basis: 75%;
	padding-top: 8px;
}
.col-over{
	position: relative;
}
#ico-boxes .col-lg-5ths,
.box-blue .col-md-6:first-of-type{
	border-right: none;
}
.product_detail_table tr{
	flex-basis: 100%;
}
.navbar-toggler-text{
	display: none;
}
.navbar-toggler{
	width: auto;
}
button#modal-launch{
	display: block;
	text-align: left;
}
button#modal-launch p{
	margin-bottom: 5px;
}
.intro-nadpis h1, .intro-nadpis .h1{
	font-size: 35px;
}
.intro-nadpis{
	background: #004265;
}
.breadcrumb{
	margin-bottom: 15px;
}
.section-bcg{
	padding: 15px;
}
.kontakt-table td{
	display: block;
	width: 100% !important;
}
}

@media screen and (max-width: 720px){

#dalsi-obrazky .col, .detail_images .col{
    	flex-basis: 50%;
	max-width: 50%;
}
}
	
@media screen and (max-width: 640px){

.caption .btn.btn-primary{
	padding: 8px 15px;
}
}






