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

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

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

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

@font-face {
    font-family: 'Roboto';
    src: url('/files/fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 200;
}
/**********************************/
/*         DEFAULTNI HODNOTY
/*********************************/
* {
	margin: 0px;
	padding: 0px;
}
body {
      background-color: white;
      color: #3f3f3f;  
	text-align: left;
	font-family: Roboto,sans-serif;
	line-height: 1.4;
	height: 100%;
	overflow-x: hidden;
}
section{
	overflow-x: hidden;
	position: relative;
}
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  line-height: 1.3em;
  margin: 0 0 12px 0;
  text-align: left;
}
h1, .h1{
	color: #232f52;
	font-size: 36px;
	font-weight: 300;
	text-align: left;
      margin: 5px 0;
}
.EditableSection h1, .EditableContent h1, .editable-section h1,
.EditableSection .h1, .EditableContent .h1, .editable-section .h1{
	margin-top: 0;
}
h2, .h2{
	color: #232f52;
	font-size: 30px;
	font-weight: 300;
}
.EditableSection h2, .EditableContent h2, .editable-section h2,
.EditableSection .h2, .EditableContent .h2, .editable-section .h2{
	margin-top: 0;
}
h3, .h3{
	color: #232f52;
	font-size: 20px;
	font-weight: normal;
	clear: both;
}
.EditableSection h3, .EditableContent h3, .editable-section h3,
.EditableSection .h3, .EditableContent .h3, .editable-section .h3{
	margin-top: 0;
}
h4, .h4{
	color: #232f52;
	font-size: 14px;
	font-weight: 600;
}
p, li, label, .EditableSection, .EditableContent, .editable-section{
  	margin: 0 0 12px 0;
  	line-height: 1.3em;
  	font-size: 17px;
  	list-style-type: none;
  	color: #4b4b4b;
  	font-weight: 300;
}
label.font-bold{
	font-weight: bold;
}
ol > li{
	list-style-type: decimal;
	list-style-position: inside;
}
ol li ul{
	margin-left: 30px;
}
#cookies_souhlas{
	width: 100% !important;
}
#main_content ul{
	padding-left: 0;
}
.toggleForm{
	text-decoration: underline;
	cursor: pointer;
}
.toggleForm:hover{
	text-decoration: none;
}

.EditableSection ul li, .EditableContent ul li, .editable-section ul li {
    position: relative;
    padding-left: 20px;
}
.EditableSection ul li:before, .EditableContent ul li:before, .editable-section ul li:before {
    content: '\f111';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 6px;
}
.EditableSection img, .EditableContent img, .editable-section img{
	margin: 4px;
}

img {
	margin: 0; 
	max-width: 100%;
}
a, a:visited {
    color: #4b4b4b;
    font-size: 17px;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
	color: #232f52;
}
table {
	border-collapse: collapse;
	border: none;
  	margin: 0 0 12px 0;
}
table td {
  	vertical-align: top;
  	text-align: left;
}
ul, ol {
	list-style-position: outside;
	margin: 0 0 12px 0px;
}
.EditableSection a, .EditableContent a, .editable-section a{
	text-decoration: underline;
}
.EditableSection a:hover, .EditableContent a:hover, .editable-section a:hover{
	text-decoration: none;
}
.EditableSection a[rel="lightbox[all]"] img, .EditableContent a[rel="lightbox[all]"] img, .editable-section a[rel="lightbox[all]"] img{
    	position: relative;
    	display: inline-block;
	border: 5px solid white !important;
	margin: 4px;
}
.EditableSection a[rel="lightbox[all]"]:hover img, .EditableContent a[rel="lightbox[all]"]:hover img, .editable-section a[rel="lightbox[all]"]:hover img{
	border: 5px solid #232f52 !important;
}

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

.container{
	padding: 15px;
}
@media (min-width: 1400px){
.container {
    max-width: 1200px;
}
.container-full{
	max-width: 96%;
}
}
.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(0.5);
    	transform: translateY(0) scale(0.5);
    	opacity: 0;
    	-webkit-transition: -webkit-transform 0.6s ease-in-out 0.6s, opacity 0.6s ease-in-out 0.6s;
    	transition: transform 0.6s ease-in-out 0.6s, opacity 0.6s ease-in-out 0.6s;
}
.scaler.visible{
	-webkit-transform: translateY(0) scale(1);
    	transform: translateY(0) scale(1);
	opacity: 1;
}	


/**********************************/
/*         HEADER
/*********************************/
header{
	position: relative; 
	width: 100%; 
	background: #232f52;	
	/*border-top: 3px solid white;*/
}

#hornimenu1, #header{
	margin: 0 auto;
      font-family: 'Roboto',sans-serif;
}

#header{
	position: relative;
	text-align: left;
	overflow: hidden;
	align-items: center;
	width: 100%;
}
#header .row{
	width: calc(100% + 30px);
	/*justify-content: space-between;*/
}

#logo{
	display: inline-block;
	margin: 0;
	vertical-align: middle;
	position: relative;
}
#logo img{
	border: none;
}	
p.nadpis{
	margin: 0;
	font-weight: 300;
	color: black;
	font-size: 22px;
}
.kontakt{	
	color: black;
	margin: 0;
	display: flex;
	margin-left: auto;
	max-width: calc(100% - 450px);
}
.kontakt .dotaz{
	font-weight: bold;
	font-size: 24px;
	color: black;
	padding-right: 85px;
	display: inline-block;
	vertical-align: middle;
	background: url(/files/images/arrow_right.png) no-repeat center right;
}
.kontakt .formButton{
	display: inline-block;
}
.kontakt .formButton a:hover{
	text-decoration: none;
}
.kontakt .links{
    	margin-top: auto;
    	margin-bottom: auto;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}
.kontakt .links p{
	margin-bottom: 4px;
	display: inline-flex;
    	align-items: center;
	margin-right: 20px;
}
.kontakt .links p, .kontakt .links a, .kontakt .links button{
	font-size: 17px;
	text-decoration: none;
	font-weight: normal;
	font-family: roboto;
	color: white;
}
.kontakt .links i{
	display: inline-block;
	margin-right: 7px;
}
.kontakt .links p.fcb i{
	font-size: 21px;
}
.kontakt .links a{
	vertical-align: middle;
}
.kontakt .links button{
	padding: 0;
	vertical-align: middle;
	line-height: inherit;
	background: transparent;
	border: none !important;
}
.kontakt .links a:hover{
	text-decoration: underline;
	color: white;
}	
.kontakt .links .fcb a:hover{
	color: gray !important;
}

/**********************************/
/*         MENU
/**********************************/
#menu_top .container{
	padding: 15px 0;
	overflow: visible;
}
#menu_top{
	background: white;
	z-index: 2;
	border-bottom: 1px solid #e1e1e1;
}
.navbar {
    	padding: 0;
	margin-top: 0;
	-webkit-transition: all 0.4;
    	transition: all 0.4;
}
.navbar-toggler {
    display: none;
}
.navbar-collapse.collapse:not(.show) {
    display: block;
}
.navbar-inner{
	text-align: left;
	display: inline-block;
}
.nav {
    display: block;
}
.nav li {
    margin: 0;
    position: relative;
    display: inline-block;
	padding: 0 20px;
}
.nav li.lvl-1:after{
	background: #232f52;
	width: 1px;
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
}
.nav li.lvl-1:last-of-type:after{
	width: 0;
}
.nav li.lvl-1.dropdown{
	padding-left: 5px;
}
.nav li.lvl-1 > a {
    font-size: 17px;
    color: #232f52;
    font-weight: normal;
    padding: 5px 0;
	border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-block;
	position: relative;
}
.nav li.lvl-1 > a:hover:after, .nav li.lvl-1 > a.active:after, .nav li.lvl-1.show > a:after {
	height: 2px;
	width: 100%;
	max-width: 100%;
	background: #232f52;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: '';
}
.dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
	color: #232f52;
    margin-left: 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;
}
.nav li.lvl-1 > a:hover:before, .nav li.lvl-1 > a.active:before, .nav li.lvl-1.show > a:before{
	color: #232f52;
}
.dropdown-toggle::after{
	display: none;
}
.dropdown-menu {
    border-radius: 0;
    border: 1px solid #232f52;
    margin: 0;
    left: -5px;
	top: 32px;
    min-width: 250px;
    background-color: white;
    transform-origin: 50% 0;
    transform: scaleY(0);
    opacity: 0;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
}
.dropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
}
.dropdown-menu a{
	text-transform: initial;
	text-decoration: none;
	color: #232f52;
}
.dropdown-menu a:hover, .dropdown-menu a:active{
	text-decoration: none;
	background: #232f52;
	color: white;
}

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

.btn-wrap{
	display: block;
	margin-top: 8px;
	clear: both;
}
.btn, .camera_wrap .btn{
	text-decoration: none !important;
	font-weight: normal;
	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{
	background: white;
	border: 1px solid #e2e2e2;
	color: #232f52 !important;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .reference_box:hover .btn.btn-primary, section.aktualita .aktuality_box:hover .btn-primary{
	background: #232f52;
	border: 1px solid #232f52;
	color: white !important;
}
.btn.btn-secondary{
	background: transparent;
	border: 1px solid white;
	color: white !important;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .article-thumb:hover .btn.btn-secondary{
	background: white;
	color: #232f52 !important;
}
.blue .btn{
	font-size: 30px;
}

/**********************************/
/*         CONTENT
/*********************************/

.blue{
	background: #232f52;
	border-top: 1px solid #232f52;
	border-bottom: 1px solid #232f52;
	padding: 20px 0;
}
.blue *{
	color: white !important;
}
.bordered{
	border-bottom: 1px solid #e2e2e2;
	padding: 20px 0;
}
#intro{
	position: relative;
    	overflow: hidden;
}
#intro figure{
	margin: 0;
}
#intro img{
	width: 100%;
	height: auto;
	display: block;
}
.bordered{
	border-bottom: 1px solid #e2e2e2;
}
#main_content {
	text-align: left;
}
#main_content table { 
border: none; width: auto; height: auto; 
} 
#main_content td { 
border: 1px solid #E4E4E4; padding: 10px; line-height: 1.3em;  
} 

.spolupracujeme{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.partner{
	display: block;
	border: 1px solid #e2e2e2;
	width: 180px;
	height: 85px;
	position: relative;
	margin: 5px;
}
.partner img{
	max-height: 80px;
	max-width: 96%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;	
	margin: auto;
}
.partner:hover{
	border: 1px solid #232f52;
}

/**********************************/
/*         FOOTER
/*********************************/

footer{
  	background: #232f52;
  	z-index: 0;
	padding: 30px 0;
	padding-bottom: 18px;
  	width: 100%;
}
#footer {
	color: white;
	height: auto;
	text-align: left;	
	border: none;
	padding-top: 0;
}
#footer p,
#footer a,
#footer a:visited,
#footer a:hover {
	color: white;
	font-weight: normal;
	text-decoration: none;
	font-size: 16px;
}
#footer a:hover{
	text-decoration: underline;
}
footer .kontakt{
	max-width: 100%;
}

/* resetovac */
#reset {
	border:  0px none;
	margin:  0px;
	padding: 0px;
	float: none;
	clear: both;
	width: 0px;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}
.link-fill{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
	z-index: 100;
}
.no-padding{
	padding: 0;
}

/**********************************/
/*         BANNERS
/*********************************/

#banners{
	width: 100%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
}

.banner{
	text-align: center;
	position: relative;
	flex-basis: 25%;
	max-width: 25%;
	overflow: hidden;
}
.banner .ban_img{
	position: relative;
	margin: -1px;	
}
.banner .ban_img img{
	width: auto;
	border: none !important;
	margin: 0 !important;
	display: block;
	max-width: 100%;
}
.banner:hover .ban_img img{
	border: none !important;
}
.banner .ban_img .over{
	z-index: 5;
	background: transparent;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
    	transition: all 0.25s ease-in-out 0s;
}
.banner .ban_img .over .title{
	display: inline-block;
	color: white;
	border: 1px solid white;
	padding: 8px 12px;
	font-weight: 300;
	font-size: 24px;
	align-self: flex-end;
    	margin: 0 auto;
	margin-bottom: 20px;
	min-width: 250px;
}
.banner:hover .ban_img .over{
	background: rgba(0,0,0,0.5);
	transition: all 0.25s ease-in-out 0s;
}
.banner:hover .ban_img .over .title{
	background: #232f52;
	transition: all 0.25s ease-in-out 0s;
}

#main_content table {
  	border: none;
  	width: auto;
  	height: auto;
}

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

.box{
	padding: 2%;
	width: 46%;
	display: inline-block;
	vertical-align: top;
	float: left;
	margin-bottom: 10px;
	position: relative;
}

.box2{
	border: 1px solid #85b700;
	padding: 2%;
	display: inline-block;
	vertical-align: top;
	float: left;
	margin-bottom: 10px;
	position: relative;
	background-color: white;
}

.box.right{
	float: right;
}
.box.right * {
	color: white !important;
}

/*************
SLIDESHOW
**************/
#slides{
	position: relative;
	margin: 0;
}	
.slick-slide{
	margin-bottom: 0;
	outline: none !important;
}
.slick-dots{
	position: absolute;
	left: 0;
    	right: 0;
	bottom: 7px;
    	margin-left: auto;
    	margin-right: auto;
	width: 50%;
	text-align: center;
	z-index: 100;
}
.slick-dots li{
	display: inline-block;
	margin: 0 2px;	
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before{
	content: "";
}
.slick-dots li button{
	width: 18px;
	height: 18px;
	background: #f5f5f5;
	border-radius: 9px;
}

.slick-dots li.slick-active button:before,
.slick-dots li:hover button:before{
	position: absolute;
	top: -2px;
	left: -2px;
	bottom: 0;
	right: 0;
	width: 8px;
	height: 8px;
	background: #4a4949;
	border-radius: 8px;
	margin: auto;
	z-index: 5;
	opacity: 1;
}
.caption{
	position: absolute;
	left: 0;
	right: 0;
	top: 35px;
}
.caption > div{
	background: rgba(255,255,255,0.8);
	padding: 20px 0;
	display: inline-block;
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.2);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.2);
}
.caption_inside{
	padding: 0 25px;
	position: relative;
	display: inline-block;
}
.caption_inside:before{
    	content: "";
    	width: 15px;
   	position: absolute;
    	left: 0;
    	top: 0;
    	bottom: 0;
    	display: block;
    	background: #7abb00;
}
.caption_inside p{
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 5px;
}
.caption_inside strong{
	font-size: 36px;
	font-weight: bold;
	color: black;
}
.caption_inside p:last-child{
	margin-bottom: 0;
}

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

/* hlavicka - odkaz logo */
#head .link_logo  {
	background: url(/files/images/sablona1/logo.png);
	float: left;
	width: 397px;
	height: 78px;
	display: block;
	margin-top: 30px;
    margin-bottom: 10px;
}
/* clear obtekani */
.clear {
	border:  0px none;
	margin:  0px;
	padding: 0px;
	float: none;
	clear: both;
	width: 0px;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}

/***************************/
/*  KATEGORIE
/***************************/
.produkt_pagination{
	flex-basis: 100%;
	margin-bottom: 10px;
}
.kategorie-bannery{
	margin-top: 30px;
	margin-bottom: 30px;
}
.subkategorie{
	text-align: center;
	position: relative;
	border: 1px solid #232f52;
	padding: 20px;
	margin-bottom: 40px;
}
.subkategorie_name{
	text-align: center;
	height: 54px;
    	overflow: hidden;
}
.subkategorie_img{
	height: 200px;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}
.subkategorie_img img{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	max-width: 100%;
    	max-height: 100%;
    	width: auto;
	height: auto;
}
.subkategorie_text{
	color: #232f52;
	font-size: 16px;
    	overflow: hidden;
	height: 3.8em;
	margin-bottom: 20px;
}
.subkategorie_vice_odkaz{
	margin-bottom: -40px;
}
.subkategorie_vice_odkaz .btn-primary{
	border: 1px solid #232f52;
}
.subkategorie:hover{
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
}
.subkategorie:hover .subkategorie_vice_odkaz .btn-primary{
    background: #232f52;
    border: 1px solid #232f52;
    color: white !important;
}

.kategorie{
	position: relative;
}
.kategorie h1{
	padding-right: 200px;
}
.buttons-reference{
	position: absolute;
	top: 0;
	right: 0;
}

/***************************/
/*  REFERENCE ROZCESTNIK
/***************************/
.reference-bannery{
	margin-top: 10px;
	margin-bottom: 20px;
}
.reference-banner{
	position: relative;
	border: 1px solid #232f52;
	padding: 15px 5px;
	margin-bottom: 15px;
}
.reference-banner .reference_name{
	color: #232f52;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	margin: 0;
}
.reference-banner:hover{
	background: #232f52;
}
.reference-banner:hover .reference_name{
	color: white;
}

.kategorie{
	position: relative;
}
.kategorie h1{
	padding-right: 200px;
}
.buttons-reference{
	position: absolute;
	top: 0;
	right: 0;
}

/***************************/
/*  REFERENCE 
/***************************/

.produkty{
	margin-bottom: 30px;
}
.reference_box{
	text-align: center;
	position: relative;
	border: 1px solid #232f52;
	padding: 20px;
	margin-bottom: 40px;
}
.reference_name{
	text-align: center;
	height: 54px;
    	overflow: hidden;
}
.reference_img{
	height: 200px;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}
.reference_img img{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	max-width: 100%;
    	max-height: 100%;
    	width: auto;
	height: auto;
}
.reference_text{
	color: #232f52;
	font-size: 16px;
	height: 22px;
	white-space: nowrap;
    	overflow: hidden;
    	text-overflow: ellipsis;
	margin-bottom: 20px;
}
.reference_vice_odkaz{
	margin-bottom: -40px;
}
.reference_vice_odkaz .btn-primary{
	border: 1px solid #232f52;
}
.reference_box:hover{
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
}
.reference_box:hover .reference_vice_odkaz .btn-primary{
    background: #232f52;
    border: 1px solid #232f52;
    color: white !important;
}
.products-not-found{
	display: none;
}

/***************************/
/*  REFERENCE DETAIL
/***************************/
.detail_img_big{
	position: relative;
   	margin-bottom: 15px;
}
.detail_img_big img{
	max-width: 100%;
	width: auto;
	height: auto;
}
.detail_img_big:hover{
	border: 4px solid #00284f;
}
.Produkt-Nazev{
	margin-bottom: 15px;
}
.detail_image{
	position: relative;
	margin-bottom: 15px;
	background: #f6f6f6;
	height: 135px;
}
.detail_image:hover{
	background: #232f52;
}
.detail_image a, .detail_image img{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	max-width: 100%;	
	max-height: 135px;
	width: auto;
	height: auto;
}

/**********************************/
/*  NAVIGACE 
/*********************************/

.breadcrumb{
	margin-bottom: 0;
	padding: 0;
	background: transparent;
}
.breadcrumb *{
	color: #232f52;
	font-size: 16px;
	font-weight: 300;
}
.breadcrumb a{
	text-decoration: underline;
}
.breadcrumb a:hover{
	text-decoration: none;
}
.drobeckova-navigace-sipky{
	display: inline-block;
	margin: 0 10px;
}

/***************************/
/*  AKTUALITY
/***************************/
.aktuality-index{
}
.aktualita{
	border-bottom: 1px solid #e9e9e9;
	padding: 30px 0;
	position: static;
}
.aktualita .aktuality_box{
	position: relative;
}
.aktualita:nth-of-type(even){
	background: #f6f6f6;
}
.aktualita:nth-of-type(even) .aktuality_box{
	flex-direction: row-reverse;
}
.aktuality_img{
	margin: 0;
	border: 1px solid #e4e4e4;
	text-align: center;
}
.aktuality_img img{
	border: 5px solid white;
}
.aktuality_name{
	font-size: 30px;
	font-weight: 300;
	color: #232f52;
}
.aktuality_date{
	font-size: 17px;
	font-weight: bold;
	color: #8c8c8c;
}
.aktuality_text{
	font-weight: 300;
	color: #373737;
	padding-bottom: 35px;
}
section.aktualita .buttons{
	position: absolute;
	bottom: 0;
}
section.aktualita .aktuality_box:hover .aktuality_img{
	border: 1px solid #232f52;
}
.btn-aktuality-archiv{
	z-index: 100;
	margin-top: -20px;
	margin-bottom: 30px;
	text-align: right;
}
.btn-aktuality-archiv a{
	background: white;
	display: inline-block;
}

article {
    position: relative;
    padding-bottom: 65px;
}
.foto_vice_odkaz.abs {
    position: relative;
    clear: both;
    height: 40px;
	margin: 15px 0;
}
.aktuality_vice_odkaz.abs, .produkty_vice_odkaz.abs, .form_odeslan.abs, .foto_vice_odkaz.abs{
	text-align: right;
	margin: 10px 0;
}
.aktuality_vice_odkaz.abs a, .produkty_vice_odkaz.abs a, .form_odeslan.abs a, .foto_vice_odkaz.abs a{
	text-align: center;	
	display: inline-block;
	vertical-align: bottom;
    	text-align: center;
	padding: 6px 20px;
	border: 1px solid #7abb00;
	background: #7abb00;
	color: white;
	text-decoration: none;
      font-size: 17px;
	font-weight: 300;
}

.aktuality_vice_odkaz.abs a:hover, .produkty_vice_odkaz.abs a:hover, .form_odeslan.abs a:hover, .foto_vice_odkaz.abs a:hover{
	background: #6ba300;
}

#aktualita{
	background: white;
	position: relative;
	padding: 15px;
	padding-bottom: 45px;
	border: 1px solid #e3e2e2
}

/**************
PODPORUJEME
*****************/
.padding-30{
	padding: 30px 0;
}
.podporujeme{
	padding: 20px 0;
}
.podporujeme h3{
	font-size: 24px;
	font-weight: 300;
	text-align: center;
	margin-bottom: 15px;
}
.podporujeme h3 span{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
}
.podporujeme h3 span:after{
	height: 1px;
	width: 85%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	content: '';
	background: #232f52;
}
.podporujeme .buttons{
	margin-top: 30px;
}

/**************
ACCORDION
*****************/
.accordion{
	margin: 20px 0;
}
.accordion .card{
	border: 1px solid #e1e1e1;
	border-bottom: none;
	border-radius: 0;
	margin-bottom: 20px;
}
.accordion .card:hover{
	border: 1px solid #232f52;
	border-bottom: none;
}
.accordion .card:hover .card-header, .accordion .card:hover .card-body{
	border-bottom: 1px solid #232f52;
}
.accordion .card-header{
	padding: 0;
	border-bottom: 1px solid #e1e1e1;
	border-radius: 0;
	background: white;
}
.accordion .card-header button{
	position: relative;
	display: block;
	padding: 15px;
	padding-right: 40px;
    	white-space: normal;
	color: #232f52;
	width: 100%;
    	text-align: left;
}
.accordion .card-header button:after{
	content: '\f0d8';
	font-weight: 900;
    	font-family: "Font Awesome 5 Free";
    	position: absolute;
	top: calc(50% - 13px);
    	right: 15px;
}
.accordion .card-header button.collapsed:after{
	content: '\f0d7';
}
.accordion .show .card-body{
	border-bottom: 1px solid #e1e1e1;	
}

/**************
CENIK
*****************/
.font-bold{
	font-weight: bold;
}
#form-send-dotaz-PocetPodlaziExtra-full, #form-send-dotaz-ZastavenaPlochaExtra-full{
	display: none;
}
#form-send-dotaz-PocetPodlaziExtra-full.visible, #form-send-dotaz-ZastavenaPlochaExtra-full.visible{
	display: block;
}
.form-check{
	margin-bottom: 5px;
}

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

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

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

#hornimenu1 {
    text-align: center;
}
#menu_top{
	height: auto;
}
figcaption{
	font-size: 20px;
}

}

@media screen and (max-width: 1200px){
#header .col-md-auto{
	flex-basis: 100%;
	max-width: 100%;
	justify-content: center !important;
	text-align: center;
}
.banner {
    flex-basis: 50%;
    max-width: 50%;
}
#menu_top{
	padding: 5px 0;
}
.navbar-inner {
    width: 100%;
}
.navbar {
	height: auto;
}
.navbar-toggler {
    	display: block !important;
    	color: #232f52;
	font-size: 25px;
   	vertical-align: middle;
    	outline: none !important;
    	line-height: 25px;
	width: 100%;
}
.navbar-toggler-icon {
    	font-size: 25px;
    	height: auto;
    	vertical-align: initial;
	margin-bottom: 0;
	color: #232f52;
}
.navbar-collapse.collapse:not(.show) {
    display: none;
    height: auto;
}
.nav li.lvl-1 {
    display: block;
    text-align: center;
}
.nav li.lvl-1 a {
    display: block;
}
.nav li.lvl-1:after{
	width: 0;
}
.nav li.lvl-1:last-of-type{
	padding-left: 0;
}
.nav li.lvl-1:last-of-type a:before{
	display: none;
}
.dropdown-menu{
	width: 100%;
}
.dropdown-menu a{
	text-align: center;
}
.dropdown-toggle::before{

}
.kontakt .links{
	margin-top: 10px;	
}
	
}
@media screen and (max-width: 1000px){
#header .col-md-3{
	flex: initial;
	max-width: 100%;
	display: inline-block;
}
#header{
	text-align: center;
}
#kontakt{
	float: none;
	display: inline-block;
	text-align: center;
}
#kontakt .col, #kontakt .col button{
	padding-left: 5px;
	padding-right: 5px;
}
p.nadpis{
	max-width: 100%;
}
}

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

}

@media screen and (max-width: 800px){
#logo img{
	max-width: 90%;
}
.aktuality_img{
	margin-bottom: 10px;
}
.kontakt button{
	white-space: normal;
}
.kontakt .dotaz{
	padding-right: 0;
	background: transparent;
}
.kontakt .links{
	display: flex;
	text-align: center;
	align-items: center;
	margin-top: 10px;
}
.kontakt .links p{
	display: inline-block;
	margin: 0 10px;
}
.kontakt .links a, .kontakt .links a:hover{
	overflow: hidden;
    	content: '';
    	color: transparent;
    	height: 25px;
    	width: 25px;
	display: inline-block;
}
.kontakt .links .mail i, .kontakt .links .tel i, .kontakt .links .mapa i{
	display: none;
}
.kontakt .links a:before{
    	font-weight: 900;
    	font-family: "Font Awesome 5 Free";
    	display: inline-block;
    	font-size: 17px;
    	vertical-align: middle;
    	margin-right: 6px;
	color: white;
}
.kontakt .links p.fcb i {
    font-size: 17px;
}
.kontakt .links .tel a:before{
	content: '\f095';
}
.kontakt .links .mail a:before{
	content: '\f2b6';
	font-weight: normal;
}
.kontakt .links .mapa a:before{
	content: '\f3c5';
}
.kontakt .links a:hover:before{
	color: gray;
}
.kontakt .links .fcb a{
	color: white;
}
footer, footer .kontakt, #footer p{
	text-align: center;
}
footer .kontakt .links{
	width: 100%;
	justify-content: center;
}

}

@media screen and (max-width: 720px){
.banner {
    flex-basis: 100%;
    max-width: 100%;
}
#header{
	display: block;
    	flex-direction: initial;
    	justify-content: initial;
}
#kontakt{
	float: none;
	text-align: center;
	width: 100%;
	margin-top: 0;
}
#nadpis{
	width: 100%;
}
p.nadpis{
	font-size: 16px;
}

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

}




button#modal-launch, button#modal-launch-2 {
    background: none;
    border: none;
    cursor: pointer;
}
button#modal-launch-2 {
	padding: 0;
}

.modal-content{
	border: none;
	border-radius: 0;
	font-family: Roboto,sans-serif;
}

div.modal-header {
	border-radius: 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2ab8fa+0,2a83fa+100 */
	background: #232f52;
}

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-family: 'Roboto';
	font-weight: bold;
}

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

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

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

.modal-dialog .btn-primary{
	background: #232f52;
    	border: 1px solid #232f52;
    	color: white !important;
}


.modal-dialog .btn-primary:hover{
	background: white;
	color: #232f52 !important;
}


.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;
}
.modal small a{
	font-size: 15px;
    	font-weight: normal;
}
.modal small a:hover{
	text-decoration: none !important;
}







