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

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

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

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

@font-face {
    font-family: 'Ubuntu';
    src: url('/files/fonts/Ubuntu-M.ttf') format('truetype');
    font-weight: 500;
}
/**********************************/
/*         DEFAULTNI HODNOTY
/*********************************/
* {
	margin: 0px;
	padding: 0px;
}
body {
      background-color: white;
      color: #313131;  
	text-align: left;
	font-family: Ubuntu,sans-serif;
	line-height: 1.4;
	height: 100%;
	overflow-x: hidden;
}
section{
	overflow-x: hidden;
	position: relative;
}
#intro{
	margin-top: 160px;
}
#main_content a[rel="lightbox[all]"] img, #main_content > div img{
    	position: relative;
    	display: inline-block;
	border: 5px solid white !important;
	margin: 4px;
}
#main_content a[rel="lightbox[all]"]:hover img{
	border: 5px solid #85b700 !important;
}
h1, h2, h3, h4 {
  	line-height: 1.3em;
  	margin: 0 0 12px 0;
  	text-align: left;
}
h1, .h1{
	color: black;
	font-size: 37px;
	font-weight: normal;
	text-align: left;
      margin: 5px 0px 20px 0px;
}
h2, .h2 {
	color: black;
	font-size: 28px;
	font-weight: normal;
}
h3, .h3 {
	color: black;
	font-size: 24px;
	font-weight: normal;
}
h4, .h4 {
	font-size: 14px;
	font-weight: normal;
	color: black;
}
p, li, th, td, label, dt, dd {
  	margin: 0 0 12px 0;
  	line-height: 1.3em;
  	font-size: 18px;
  	list-style-type: none;
  	color: #313131;
  	font-weight: 300;
}
span{
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
}

ul{
	padding-left: 0;
}

img {
	margin: 0; 
	max-width: 100%;
	height: auto;
}
a{
    	color: #313131;
    	font-size: 18px;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
	color: #d73a29;
}
table {
	border-collapse: collapse;
	border: none;
  	margin: 0 0 12px 0;
}
table td {
  	vertical-align: top;
  	text-align: left;
}
b, strong{
	font-weight: bold;
}
.EditableSection a[rel="lightbox[all]"] img, .EditableSection img, .EditableContent a[rel="lightbox[all]"] img, .EditableContent img, .editable-section a[rel="lightbox[all]"] img, .editable-section img {
    border: 2px solid #f4f4f4 !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,
.EditableSection a:hover img, .EditableContent a:hover img, .editable-section a:hover img{
    border: 2px solid #d4d4d4 !important;
}
.EditableSection li:before, .EditableContent li:before, .editable-section li:before {
    content: '\f45c';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 8px;
    vertical-align: top;
    margin-top: 1px;
    margin-right: 6px;
}

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

#cookies_souhlas{
	width: 100% !important;
}
.container{
	padding: 15px 0;
	overflow: hidden;
	width: 96%;
}
main .container{
	overflow: initial;
}	
@media (min-width: 1440px){
.container {
    max-width: 1300px;
}
}

@media (min-width: 1440px){
.container2 {
    max-width: 1300px;
}
}
.vertical-align {
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	flex-direction: row;
}
.align-line{
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    	flex-direction: row;
}
figure{
	margin: 0;
}
button, button:hover, button:active, button:focus{
	outline: none;
	box-shadow: none !important;
}
.link-fill{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
	z-index: 10;
}
.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;
}
.borderEffect{
	position: relative;
	border: 1px solid #83c011;
}
.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 #fe7201;
    border-left: 1px solid #fe7201;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
.borderEffect:after {
    border-top: 1px solid #fe7201;
    border-right: 1px solid #fe7201;
    -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: 10px 30px;
	background: #fe7201;	
	margin: 8px;
}
.borderEffect a, .borderEffect a:hover{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	color: transparent !important;
}	

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

.btn{
	text-decoration: none !important;
	font-weight: normal;
	font-size: 18px;
}
.btn:active{
	border: inherit !important;
	background: inherit !important;
	color: inherit !important;
}
.btn-primary{
	border: none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e7e7e7+0,ffffff+100 */
	background: rgb(231,231,231); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U3ZTdlNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(left, rgba(231,231,231,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(231,231,231,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(left, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(left, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(left, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%); /* IE10 preview */
	background: linear-gradient(to right, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=1 ); /* IE6-8 */
	border-radius: 0;
	box-shadow: none !important;
	color: black;
}
.btn-primary:hover, .btn-primary:focus{
	background: #e7e7e7;
	color: black;
}
.btn-secondary{
	border-radius: 0;
	background: #27b303;
	border: none;
	color: white;
	box-shadow: none !important;
}
.btn-secondary:hover, .btn-secondary:focus, .article-thumb:hover .btn-secondary{
	background: #2cce02;
	color: white;
}
.btn-back{
	margin-bottom: .5rem;
}

/**********************************/
/*         HEADER
/**********************************/
header{
	position: relative; 
	width: 100%; 
	background: #262626 url(/files/images/bcg.png) repeat left top;
}
#header{
	overflow: visible;
}
.nadpis{
	color: white;
	font-size: 22px;
	font-weight: normal;
	text-transform: uppercase;
	display: inline-block;
	margin: 0;
}
.kontakt{
	display: inline-block;
}
.kontakt-box{
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.kontakt-box:after{
	content: '';
	height: 100%;
	width: 1px;
	background: #9b9b9b;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}
.kontakt-box:last-of-type:after{
	width: 0;
}
.kontakt-box p{
	display: inline-block;
	font-size: 18px;
	color: #9b9b9b;
	margin: 0;
	vertical-align: middle;
}
.kontakt-box .fas{
	color: #9b9b9b;	
	vertical-align: middle;
	margin-right: 0.5rem;
}
.kontakt-box p a{
	color: white !important;
	text-decoration: none !important;
	font-weight: bold;
}
.kontakt-box p a:hover{
	text-decoration: underline !important;
}
.kontakt-box button{
	background: transparent !important;
	padding: 0;
	text-align: left;
}
.kontakt-box button a{
	text-transform: uppercase;
}

.currency p{
	color: #9b9b9b;
}
.currency p span.bold{
	font-weight: normal;
}
.currency{
	position: relative;
}
#currency_toggle{
	cursor: pointer;
}
#currency_box {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid black;
    padding: 5px 5px;
    z-index: 10;
    max-width: 167px;
    cursor: pointer;
}
#currency_text{
	color: white;
}
#currency_toggle:hover #currency_text, #currency_toggle:focus #currency_text{
	color: #d73a29;
}
#currency_text:after{
	content: '\f0d7';
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	margin-left: 5px;
	font-size: 80%;
}
#currency_box a{
	display: block;
	text-decoration: none;
	padding: 5px 15px;
}
#currency_box a:hover, #currency_box a:focus{
	color: white;
	background: black;
}

/**********************************/
/*         MENU
/**********************************/
.navbar {
    	padding: 0;
	text-align: right;
	margin-top: 1rem;
	height: 55px;
}
.navbar-toggler {
    display: none;
}
.navbar-collapse.collapse:not(.show) {
    display: block;
}
.navbar-inner{
	background: black;
	text-align: left;
	display: inline-block;
}
.nav {
    display: block;
}
.nav li {
    margin: 0;
    position: relative;
    display: inline-block;
	/* padding: 0.75rem 0.5rem; */
}
.nav li.lvl-1 > a {
    font-size: 17px;
    color: white;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-block;
}
.nav li.lvl-1 > a:hover, .nav li.lvl-1 > a.active, .nav li.lvl-1.show > a {
    background: #d73a29;
    color: white;
}
.nav li.lvl-1:last-of-type{
	padding: 0;
	padding-left: 15px;
}
.nav li.lvl-1:last-of-type a{
	padding: 1rem 1rem;
	background: #d73a29;
}
.nav li.lvl-1:last-of-type a:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
    	border-bottom: 55px solid #d73a29;
    	border-left: 15px solid transparent;
}
.nav li.lvl-1:last-of-type a:hover{
	background: white;
	color: black;
}
.nav li.lvl-1:last-of-type a:hover:before{
    	border-bottom: 55px solid white;	
}
.dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    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;
}
.dropdown-toggle::after{
	display: none;
}
.dropdown-menu {
    border-radius: 0;
    border: 3px solid #d73a29;
    margin: 0;
    left: 8px;
	top: 41px;
    min-width: calc(100% + 2px);
    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: uppercase;
	text-decoration: none;
}
.dropdown-menu a:hover, .dropdown-menu a:active{
	text-decoration: underline;
	background: inherit;
}

/**********************************/
/*         SLIDESHOW
/**********************************/
#slides{
	overflow: hidden;
	margin: 0;
}	
.slick-slide{
	position: relative;
}
.caption{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.caption > div{
	position: relative;
	height: 100%;
}
.caption_left{
	position: absolute;
	left: 0;
	text-align: right;
	top: 3rem;
}
.caption_left > div{
	position: relative;
	display: inline-block;
	padding: .75rem 1.5rem;
	background: rgba(0,0,0,0.7);
}
.caption_left > div:after{
	content: '';
	position: absolute;
	width: 6px;
	background: #d73a29;
	right: 0;
	top: 0.5rem;
	bottom: 0.5rem;
	
}
.caption_left p{
	font-weight: bold;
	color: white;
	font-size: 42px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
	text-transform: uppercase;
	margin: 0;
	line-height: normal;
}

.caption_left p strong{
	color: white;
	font-size: 61px;
}



.caption_right p strong{
	color: white;
	font-size: 61px;
}
.caption_left img{
	height: 40px;
	width: auto;
	float: right;
}



.caption_right{
	position: absolute;
	right: 0;
	top: 3rem;
}
.caption_right > div{
	position: relative;
	display: inline-block;
	padding: .75rem 1.5rem;
	background: rgba(0,0,0,0.7);
}
.caption_right > div:before{
	position: absolute;
	left: 0;
	top: 0.3rem;
	bottom: 0.3rem;
	width: 6px;
	background: #d73a29;
	content: '';
}
.caption_right p{
	font-weight: bold;
	color: white;
	font-size: 42px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
	text-transform: uppercase;
	margin: 0;
	line-height: normal;
}
.caption_left a,.caption_right a{
color: white;
font-size: 32px;
text-transform: uppercase;
}
.slick-dots{
	position: absolute;
	bottom: 1rem;
	text-align: left;
	width: 100%;
	max-width: 96%;
	margin: 0 auto;
	z-index: 50;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slick-dots li{
	border: 5px solid transparent;
	width: auto;
	height: auto;
	margin: 0;
}
.slick-dots li button{
	background: white;
	width: 12px;
	height: 12px;
}
.slick-dots li:hover, .slick-dots li.slick-active{
	border: 5px solid #d73a29;
}
.slick-dots li button:before{
	content: none;
}
/**********************************/
/*         MAIN
/**********************************/
.left-col {
    max-width: 285px;
    width: 285px;
    margin-bottom: 1rem;
}
.main-col {
    max-width: calc(100% - 285px);
    flex: 0 0 calc(100% - 285px);
}
.kategorie{
	margin-bottom: 1.5rem;
}
.kategorie a{
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
}
.kategorie p{
	margin: 0;
}
.kategorie-nadpis{
	font-weight: bold;
	font-size: 21px;
	overflow: hidden;
	position: relative;
	border-bottom: 2px solid black;
	margin-bottom: 5px !important;
}
.kategorie-nadpis img{
	background: black;
	float: right;
}
.kategorie .toggler{
	border: none;
	background: transparent;
	color: black;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	width: 100%;
	cursor: pointer;
	display: none;
}
.kategorie .toggler .navbar-toggler-icon{
	color: black;
}
.kategorie.red .item1 > p > a{
	background: #d73a29;
	color: white;
	padding: 0.5rem 1rem;
	display: block;
	margin: 0;
	border-bottom: 1px solid white;
}
.kategorie.red .item1 > p > a:hover, .kategorie.red .item1 > p.open > a, .kategorie.red .item1 > p.selectedP > a{
	background: black;
}
.kategorie.red .item2{
	border-bottom: 1px solid white;
}
.kategorie.red .item2 > p > a{
	background: #b61604;
	padding: 0.5rem 2.5rem;
	display: block;
	margin: 0;
	color: white;
	text-transform: uppercase;
}
.kategorie.red .item2 > p > a:hover, .kategorie.red .item2 > p.open > a, .kategorie.red .item2 > p.selectedP > a{
	background: #d73a29;
}
.kategorie.other .item1 > p > a{
	color: black;
	padding: 0.5rem 1rem;
	display: block;
	margin: 0;
	border-bottom: 1px solid #d3d3d3;
	border-top: 1px solid white;
    background: rgb(231,231,231);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, rgba(231,231,231,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(231,231,231,1)), color-stop(100%,rgba(255,255,255,1)));
    background: -webkit-linear-gradient(left, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(left, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(left, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(231,231,231,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=1 );
}
.kategorie.other .item1 > p > a:hover, .kategorie.other .item1 > p.open > a, .kategorie.other .item1 > p.selectedP > a{
	background: black;
	color: white;
}
.kategorie.gray p > a{
	background: #ececec;
	color: black;
	padding: 0.5rem 1rem;
	display: block;
	margin: 0;
	border-bottom: 1px solid #d3d3d3;
	border-top: 1px solid white;
	text-transform: uppercase;
}
.kategorie.gray p > a:hover{
	color: white;
	background: black;
}
.kategorie.gray p > a:hover img{
	filter: invert(100%);
}
.kategorie p.close{
	opacity: 1 !important;
	float: none !important;
	font-size: inherit !important;
	text-shadow: none !important;
	line-height: inherit !important;
	color: inherit !important;
}	
.kategorie p.close + div{
	display: none;
}
section.gray{
	background: #f4f4f4;
}
#nadpatickou table td{
	padding-right: 1rem;
	padding-bottom: 0.5rem;
}
#nadpatickou .col-md-6:first-of-type{
	border-right: 1px solid #dfdfdf;
}
#nadpatickou .col-md-6:last-of-type{
	border-left: 1px solid white;
}
#nadpatickou iframe{
	margin-bottom: 1rem;
	border: 1px solid #dfdfdf !important;
}

/**********************************/
/*         INDEX
/**********************************/
.gray-box{
	background: #f4f4f4;
	padding: 1.5rem 1rem;
	margin-bottom: 1.5rem;
}
.gray-box p:last-of-type{
	margin-bottom: 0;
}
hr{
	border-top: 1px solid #d3d3d3;
	margin-top: -0.25rem;
}

/**********************************/
/*         FOOTER
/**********************************/
section.dark{
	background: #262626 url(/files/images/bcg.png) repeat left top;
	padding: 1rem 0;
}
#bottom .row{
	justify-content: space-between;
}
#bottom .logo img{
	max-height: 100px;
}
.toggleForm{
	cursor: pointer;
}
#bottom a{
	color: white;
	text-decoration: none;
	font-weight: normal;
	font-size: 18px;
}
#bottom a:hover{
	color: white;
	text-decoration: underline;
}
#bottom .bordered{
	border-left: 1px solid #5a5a5a;
	border-right: 1px solid #5a5a5a;	
}
#bottom p{
	color: white;
	line-height: 1.5em;
	margin-bottom: 1.5rem;
}
#bottom .col-md-auto p:last-of-type{
	margin-bottom: 0;
}
#bottom p .fas, #bottom p .far{
	margin-left: .5rem;
	font-size: 1.5em;
	vertical-align: middle;
}
footer{
	background: black;
	padding: 1rem 0;
}
footer p, footer a{
	color: white !important;
	text-decoration: none;
}
footer a:hover{
	text-decoration: underline;
	color: white;
}

/**********************************/
/*         AKTUALITY SLIDE
/**********************************/
#aktuality_slide_box{
	border: 3px solid #d3d3d3;	
	position: relative;
	margin-bottom: 2.5rem;
}
#aktuality_slide_box:before{
	position: absolute;
	left: -3px;
	top: -3px;
	bottom: -3px;
	width: 6px;
	content: '';
	background: #d73a29;
}
#aktuality_slide{
	margin: 0;
}
.aktuality_box{
	justify-content: space-between;
	padding: 1.5rem;
    	padding-right: 200px;
}
.aktuality_date{
	color: black;
	font-size: 16px;
	font-weight: normal;
}
.aktuality_name{
	font-size: 18px;
	font-weight: bold;
	color: #d73a29;
	text-decoration: none;
}
#aktuality_slide .aktuality_name{
	height: 1.4em;
	overflow: hidden;
}
.aktuality_box:hover .aktuality_name{
	text-decoration: underline;
}
.aktuality_box:hover .btn-primary{
	background: #e7e7e7;
	color: black;
}
.archiv{
	position: absolute;
	margin: auto;
	right: 1.5rem;
	top: 0;
	bottom: 0;
	display: table;
}
.archiv a{
	vertical-align: middle;
}

/********************/
/** AKTUALITY
*********************/

.aktuality_col_container {
  	width: auto;
  	height: auto;
}
.aktuality_col_container .aktuality_box {
  	height: auto;
  	padding: 10px;
	border: 1px solid #f4f4f4;
	background: #f4f4f4;
	position: relative;
	margin-bottom: 15px;
	overflow: hidden;
}
.aktuality_col_container .aktuality_box:hover{
	border: 1px solid #292929;

}

.aktuality_col_container .aktuality_date {
  	font-size: 8pt;
  	color: #000000;
  	display: none;
}
.aktuality_col_container .aktuality_name {
	font-size: 15px;
    	height: 2em;
    	overflow: hidden;
}
.aktuality_col_container .aktuality_box:hover .aktuality_name{
	text-decoration: none;
}
.aktuality_col_container .aktuality_name p {
  	color: black;
  	text-decoration: none;
	font-size: 22px;
    	font-weight: 300;
}

.aktuality_col_container .aktuality_text {
	overflow: hidden;
    	height: 3.1em;
    	margin-bottom: 10px;
}
.aktuality_col_container .aktuality_text a,
.aktuality_col_container .aktuality_text a:visited {
}
.aktuality_col_container .aktuality_text a:hover {
  	color: black;
  	text-decoration: none;
}

.aktuality_col_container .aktuality_img{
	float: right;
    	width: 200px;
    	height: 130px;
	position: relative;
}

.aktuality_col_container .aktuality_box .aktuality_img{
	background: white;
}

.aktuality_col_container .aktuality_img a{
	display: block;
    	width: 200px;
    	height: 130px;
}
.aktuality_col_container .aktuality_img a img {
	margin: auto !important;
	border: none !important;
  	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 100%;
}
.aktuality_col_container .aktuality_vice_odkaz {
    	font-size: 17px;
	text-decoration: underline;
}

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

/********************/
/** PRODUCTS
*********************/

.produkty{
	flex-wrap: wrap;
}
.produkty .produkt_box{
    	flex-basis: 25%;
	max-width: 25%;
	position: relative;
	text-align: center;
	line-height: 1.1;
	border: 1px solid transparent !important;
	border-right: 1px solid #dddddd !important;
	border-radius: 0 !important;
	margin-bottom: 2rem;
}
.produkty .produkt_box.no-border{
	border-right: 1px solid transparent !important;
}
.produkty .produkt_box:hover{
	border: 1px solid #dddddd !important;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
	z-index: 2;
}
.produkty .produkt_box .link-fill{
	z-index: 100;
}
.card-header, .card-body, .card-footer{
	padding: 1rem;
	padding-bottom: 0.5rem;
}
.card-footer{
	padding-top: 0;
}
.produkty .h2{
	height: 2em;
	overflow: hidden;
	line-height: 1;
	margin-bottom: 15px;
}
.produkty .h2 a{
	font-size: 17px;
	text-decoration: none;
	color: black;
	font-weight: normal;
}
.produkty .card_img{
	position: relative;
	margin-bottom: 15px;
	min-height: 8rem;
	height: 130px;
}
.produkty .card_img img{
	max-height: 130px;
	width: auto;
    	height: auto;
}
.produkty .akce{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.produkty .akce span{
	color: white;
	font-size: 17px;
	font-weight: bold;
	padding: 0 5px;
	display: block;
	position: relative;
	line-height: 1.5;
}
.produkty .akce span:after{
	content: '';
	position: absolute;
    	left: 100%;
    	top: 0;
}
.produkty .akce .novinka{
	background: #d73a29;
}
.produkty .akce .novinka:after{
    	border-top: 7px solid transparent;
    	border-bottom: 9px solid transparent;
    	border-left: 7px solid #d73a29;
}
.produkty .card-text{
	font-size: 15px;
	color: #424242;
	margin-bottom: 4px;
	height: 2.5rem;
	overflow: hidden;
}
.produkty .card .produkt_cena_s_dph, .produkty .card .produkt_cena_s_dph span{
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 17px;
	color: black;
    	height: 1.2em;
}
.produkty .card .card-footer{
	background: transparent;
	border: none;
}
.produkty .card:hover .btn-secondary{
	background: #2cce02;
}
.produkt_pagination{
	flex-basis: 100%;
	text-align: right;
	border-bottom: 1px solid #d3d3d3;
	margin-bottom: 1rem;
	padding-bottom: .5rem;
}
.pgr, .strankovani-odkaz, .strankovani-sipky{
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	color: black;
	text-decoration: none;
	padding: 4px 10px;
}
.pgr, .strankovani-odkaz:hover, .strankovani-sipky:hover{
	background: #e8e8e8;
	text-decoration: none;
	color: black;
}
.pgr{
	font-weight: bold;
}

/**********************************/
/*         PRODUCTS DETAIL
/**********************************/

.produkt_switcher {
    margin-bottom: 2rem;
	margin-top: 1rem;
	clear: both;
}
.switcher-bar {
    background: white;
    border-bottom: none;
    display: block;
}
.switcher-bar .nav-item {
    display: inline-block;
	padding: 0;
}
.switcher-bar .nav-item .nav-link{
	text-decoration: none;
	font-weight: normal;
}
.switcher-bar .switcher-toggle:hover, .switcher-bar .switcher-toggle.active {
    background: white;
    border-color: #cee7ff;
    border-bottom: 1px solid #e0e0e0;
	color: black;
}
.produkt_switcher .switcher-bar .switcher-toggle {
    font-size: 21px;
    font-weight: 300;
    padding: 1rem 1.5rem;
    background: #eeeeee;
    margin: 0;
    margin-right: 0.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 0;
}
.produkt_switcher .switcher-bar .switcher-toggle:hover, .produkt_switcher .switcher-bar .switcher-toggle.active {
    background: white;
    border-bottom: 1px solid white;
}
.produkt_switcher .switcher-content {
    padding: 1rem;
    border: 1px solid #e0e0e0;
}
.img-detail-big{
	float: left;
	max-width: 50%;
	margin-right: 1rem;
	margin-bottom: 1rem;
}
.product_detail_table{
	width: 100%;
}
.product_detail_table td{
    	border: 1px solid #e0e0e0;
	padding: 5px;
	font-weight: normal;
}
.detail_images {
    margin: 0;
    width: 100%;
}
.detail_image {
    width: 100%;
    padding-top: 66%;
    position: relative;
    background: white;
    margin-bottom: 1rem;
}
.detail_image:hover {
    background: #eeeeee;
}
.detail_image img, .detail_img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}
.detail_img img, .detail_image img {
    max-width: 100%;
    height: auto;
}
.Produkt-CenaSDPH-Box span{
	font-weight: bold;
	font-size: 20px;
}

.accordion .card{
	border: none;
	margin-bottom: 1rem;
}
#headingVerze{
	padding: 0;
	border: 1px solid #e0e0e0;
}
#collapseVerze{
	border: 1px solid #e0e0e0;
	border-top: none;
}
#headingVerze .btn{
	font-size: 18px;
	color: black !important;
	width: 100%;
	padding: 1rem;
	text-align: left;
	display: flex;
    	justify-content: space-between;
	align-items: center;
	border-radius: 0;
}
#headingVerze .btn::after {
    	display: inline-block;
    	width: 0;
    	height: 0;
    	margin-left: 0.255em;
    	content: "";
    	border-top: 0;
    	border-right: 0.5em solid transparent;
    	border-bottom: 0.5em solid;
    	border-left: 0.5em solid transparent;
}
#headingVerze .btn.collapsed::after{
    	border-top: 0.5em solid;
    	border-right: 0.5em solid transparent;
    	border-bottom: 0;
    	border-left: 0.5em solid transparent;
}
#headingVerze .btn:hover{
	color: white !important;
	background: #d73a29;
	border-color: #b61604;
}

/**********************************/
/*         BREADCRUMB
/**********************************/
.breadcrumb{
	background: transparent;
	padding: 0;
}
.breadcrumb a, .drobeckova-navigace-nazev{
	text-transform: lowercase;
}
.breadcrumb a:first-letter, .drobeckova-navigace-nazev:first-letter{
	text-transform: uppercase;
}
.drobeckova-navigace-sipky{
	display: inline-block;
	padding: 0 1rem;
}

/**********************************/
/*         BANNERS
/**********************************/
.banners{
	display: flex;
	margin: 0 -15px;
	flex-wrap: wrap;
	max-width: 1050px;
	margin: 0 auto;
}
.banner{
	padding: 0 15px;
	flex-basis: 33.333%;
	max-width: 33.333%;
	position: relative;
	margin-bottom: 30px;
}
.banner > div{
	position: relative;
	padding-top: 100%;
	text-align: center;
}
.banner-img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.banner-img img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 100%;
}
.banner-title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #d73a29;
	padding: 1em .5rem;
}
.banner-title >  div{
	height: 3em;
	z-index: 2;
	overflow: hidden;
	align-items: center;
    	display: flex;
	text-align: center;
	justify-content: center;
}
.banner-title:before{
	content: '';
    	width: 0;
    	height: 0;
    	position: absolute;
    	top: -10px;
    	left: 0;
    	right: 0;
   	z-index: 50;
    	margin: auto;
    	display: block;
    	border-left: 12px solid transparent;
    	border-right: 12px solid transparent;
    	border-bottom: 10px solid #d73a29;
    	-webkit-transition: 0.3s;
    	transition: 0.3s;
}
.banner-title:after{
	position: absolute;
    	top: 0;
	left: 0;
    	height: 100%;
    	width: 100%;
    	background: #282828;
    	content: "";
    	z-index: 1;
	transform: scaleY(0);
    	transform-origin: top center;
    	-webkit-transition: 0.3s;
    	transition: 0.3s;
}
.banner:hover > div{
    	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
    	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
    	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
}
.banner:hover .banner-title:after {
    	transform: scaleY(1);
}
.banner:hover .banner-title:before{
    	border-bottom: 10px solid #282828;
}
.banner-title p{
	display: inline-block;
	text-transform: uppercase;
	color: white;
	font-weight: normal;	
	margin: 0;
	z-index: 2;
}

/********************/
/** FOTOGALLERY
*********************/
.banners.foto .banner:hover > div{
	-webkit-box-shadow: none;
    	-moz-box-shadow: none;
    	box-shadow: none;
}
.banners.foto .sub-banner{
	padding-top: 0;
	background: white;
	padding: 0.5rem;
	margin-top: 0.5rem;
}
.banners.foto .sub-banner a{
	display: block;
	text-align: center;
	padding: 0.5rem 0;
}
.banners.foto .detail_image{
	padding-top: 75%;
}

/**********************************/
/*         FORM
/**********************************/

.modal-content{
	border: none;
	border-radius: 0;
}

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

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 span{
	color: white;
}
div.modal-header .close:not(:disabled):not(.disabled):hover, 
div.modal-header .close:not(:disabled):not(.disabled):focus{
	opacity: 1;
	color: black;
	background: white;
}
div.modal-header .close:not(:disabled):not(.disabled):hover span, 
div.modal-header .close:not(:disabled):not(.disabled):focus span{
	color: black;
}

.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{
	/* font-weight: bold; */
	font-size: 17px;
	color: black;
}

.modal-dialog .btn-primary{
	border: 1px solid #d73a29;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
    	padding: 0.375rem 1.75rem; 

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#6bc2ff+0,01a0ea+100 */
	background: #d73a29;
	-webkit-box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
	-moz-box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
	box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
}


.modal-dialog .btn-primary:hover{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2aa1fa+0,2a82fa+100 */
	background: black;
	border: 1px solid black;
}
.modal-dialog a:hover{
	text-decoration: none !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;
}

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

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


@media (min-width: 576px){
.slick-dots{
    max-width: 540px;
}
}
@media (min-width: 768px){
.slick-dots {
    max-width: 720px;


}
}

@media (min-width: 992px){
.slick-dots {
    max-width: 960px;
}
}
@media (min-width: 1200px){
.slick-dots {
    max-width: 1140px;
}
}
@media screen and (min-width: 1320px){
.slick-dots {
    max-width: 1300px;

}
}

@media screen and (max-width: 720px){
.slick-dots {
			bottom: 0px;
	right: 0px;
	left: 0px;
	transform: none;
}
}



@media screen and (max-width: 1420px){
.navbar {
	height: auto;
}
}

@media screen and (max-width: 1320px){
.produkty .produkt_box{
	flex-basis: 33.333%;
	max-width: 33.333%;
}
.banners{
	justify-content: center;
}
.banner{
	flex-basis: 50%;
	max-width: 340px;
}
}


@media screen and (max-width: 1160px){
#header .row{
	align-items: baseline;
}
.logo img{
	max-height: 80px;
}
.navbar-inner {
    width: 100%;
}
.navbar-toggler {
    	display: block !important;
    	color: white;
	font-size: 25px;
   	vertical-align: middle;
    	outline: none !important;
    	line-height: 25px;
	width: 100%;
}
.navbar-toggler-icon {
    	font-size: 25px;
    	height: auto;
    	vertical-align: bottom;
	margin-bottom: 0;
	color: white;
}
.navbar-collapse.collapse:not(.show) {
    display: none;
    height: auto;
}
.nav li.lvl-1 {
    display: block;
    text-align: center;
}
.nav li.lvl-1 a {
     color:white !important;	
    display: block;
}
.nav li.lvl-1:last-of-type{
	padding-left: 0;
}
.nav li.lvl-1:last-of-type a:before{
	display: none;
}
.dropdown-toggle::before{
	display: none;
}
.banner{
	flex-basis: 50%;
	max-width: 50%;
}
}

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

#header .col, #header .col-md-auto{
	flex-basis: 100%;
	text-align: center;
}
#header .kontakt-box{
	flex-basis: auto;
}
.kontakt-box:after{
	width: 0;
}
#currency_box{
	left: 0;
	margin: auto;
}
#header .row{
	justify-content: center !important;
}
.nadpis{
	padding: 0.5rem 0;
}

.caption_left{
	top: 0rem;
}

.caption_right{
	display: none;
}
.caption_left p{
	font-size: 20px;
}	

.caption_left a{
	font-size: 20px;
}	
	.caption_left img{
		height: 25px;
		width: auto;
	}
.caption_left p strong{
	font-size: 23px;
}
.left-col{
	width: 100%;
	max-width: 100%;
}
.main-col{
	max-width: 100%;
	flex: 0 0 100%;
}
.kategorie .toggler{
	display: block;
}
#bottom .col-md-auto{
	text-align: center;
}
#bottom .logo{
	margin-bottom: 1rem;
}
#bottom .col-md-auto p:last-of-type {
    margin-bottom: 1.5rem;
}
.produkty .produkt_box{
	flex-basis: 50%;
	max-width: 50%;
}
.img-detail-big{
	float: none;
	max-width: 100%;
	width: 100%;
	text-align: center;
	margin-right: 0;
	margin-bottom: 1rem;
}
.banner{
	flex-basis: 100%;
	max-width: 340px;
}
.archiv{
	position: relative;
	right: auto;
	top: auto;
	bottom: auto;
	display: block;
	padding: 1.5rem;
	padding-top: 0;
}
.aktuality_box{
	padding-right: 1.5rem;
	padding-bottom: 0.5rem;
	flex-direction: column;
	align-items: baseline;
}
.aktuality_vice_odkaz{
	margin-bottom: 0.5rem;
}

}

@media screen and (max-width: 700px){
.produkty .produkt_box{
	flex-basis: 100%;
	max-width: 100%;
	border-right: none !important;
}
.aktuality_col_container .aktuality_img {
    float: none;
    width: 100%;
	margin-bottom: 0.5rem;
}
.aktuality_col_container .aktuality_img a img {
    max-height: 100%;
}
.aktuality_col_container .aktuality_name, .aktuality_col_container .aktuality_text{
	height: auto;
}


  .mobile-hide {
    display: none !important;
  }

}