/*************************/
/***   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;
}

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

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'OpenSans', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-primary:active {
    background-color: #004085;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'OpenSans', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-secondary:active {
    background-color: #4e555b;
}

/*************************/
/***   LAYOUT         ***/
/*************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'OpenSans', sans-serif;
    background-color: #f5f5f5;
    
}

.container-border {
    
    margin: 0 auto;
    
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



h1 {
    margin-bottom: 30px;
    color: #333;
}

.button-group {
    display: flex;
    gap: 10px;
}


* {
	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: 10px 15px;
    	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/#ff7800+0,ffa500+100 */
background: #ff7800; /* Old browsers */

	border: 1px solid #ffa500;
	color: white !important;
	font-size: 17px;
	font-weight: bold;
	padding: 12px 45px;
	position: relative;
	border-radius: 10px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .reference_box:hover .btn.btn-primary{
	background: #ff4800;
	border: 1px solid #ffa500;
	color: white !important;
}
.btn.btn-secondary{
	background: transparent;
      border: 1px solid #0199e8;
      color: #0199e8 !important;
	border-radius: 10px;
	padding: 10px 15px;
	font-size: 18px;
	margin-bottom: 5px;
}
.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,h1 a{
	color: white !important;
	font-size: 60px;
	font-weight: bold;
  	font-family: 'OpenSans';
	text-align: left;
	position: relative;
	padding-bottom: 8px;
text-decoration: none;
cursor: default;
}
h1 a:hover{
text-decoration: none;
}
 
h2, .h2{
	color: #194e6a;
	font-size: 30px;
	font-weight: normal;
  	font-family: 'OpenSans';
	margin-top: 40px;
}
h3, .h3{
	color: #212529;
	font-size: 28px;
	font-weight: none;
	clear: both;
  	font-family: 'OpenSans';
	margin-bottom: 30px;
	margin-top: 30px;
}
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: 26px;
	list-style: none;
}

.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: 10px;
	height: 10px;
	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: #ff7800;
	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-bcg2{
background: #f0faff;
}

.blue-bg{
background: #f0faff;
}
.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{
	
	
}
.box-blue .col-md-6{
	border: 1px solid #c0e6f9;
background: #edf9ff;
}
.box-inner {
	padding: 20px 40px;
}
.box-inner h3, 
.box-address h3{
	color: black;
	font-weight: bold;
	font-size: 24px;
}
.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 #ff7800;
	padding: 0 20px;
	margin-left: -1px;
}	
.box-address i{
    color: #ff7c00;
    font-size: 22px;
    margin-right: 10px;
}



.text-blue{
	
	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: #000;
	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;
	
}
.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: 60%;
	overflow: hidden;
	position: relative;
}
.img-cover img{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 200%;
	transform: translate(-50%, -50%);
}
.product2 .img-cover img{
    
}

.product2{

    border-radius: 10px;

}
.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;
}

.produkt-box-tags2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    justify-content: space-around;
    font-size: 16px;
    margin-top: 16px;
   font-weight: bold;
text-align: center;
}


.produkt-box-price2{
	font-weight: bolder;
gap:8px;
}
.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;
    padding-top: 72px;
    padding-bottom: 35px;
    border: none;

    background:
        url('/files/images/footer-bcg.png') no-repeat center bottom;

    background-size: cover;
}

#footer p, #footer a, #footer a:visited{
	color: white !important;
	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: #ff7800;
}
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;
}
.navbar-toggler-text{
	display: none;
}
.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{
	
	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;
}
}








.card {
            background-color: #f0faff;
            width: 350px;
		height: 400px;
		margin: 15px;
		border: 1px solid #c0e6f9	;
            border-radius: 0px;
            overflow: hidden;
            font-family: sans-serif;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .card-img {
  width: 100%;
  overflow: hidden;
}

.card-img a {
  display: block;
  width: 100%;
}

.card-img img {
  width: 100%;
  height: 200px;       
  object-fit: cover;
  display: block;
}

        .card-date {
            margin: 0 0 12px 0;
            font-size: 14px;
            color: #333;
        }


.card-title a{
font-weight: bold;
text-decoration: none;
}

        .card-text {
            margin: 0 0 16px 0;
            font-size: 14px;
            color: #333;
            line-height: 1.5;
        }

.card-text a{
    
    text-decoration: underline;
}

        	 span.btn.btn-terciary2{
			text-decoration: underline;
}

	 .card-text .aktuality_text {

		}

        .card-link {
            font-size: 14px;
            color: #000;
            text-decoration: underline;
        }

.link-box .nav-group{
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.link-box .nav-item{
width: fit-content;
margin: 0 4px;
}

.link-box .nav-item a{
	font-weight: bold;
	
}


.mex-clanek-image-anchor{
    display: flex;
    justify-content: center;


}


.section-a{
	padding: 40px 0;
}


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

.section-a{
	padding: 20px 0;
}

}














        .faq-section {
        background-color: transparent;
        padding: 60px 0;
    }

    .faq-section h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        font-weight: 700;
        color: #1a1a3e;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-question {
        width: 100%;
        padding: 20px;
        background-color: #ffffff;
        border: none;
        border-radius: 12px;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        color: #363651;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .faq-question:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

    .faq-question:focus {
        outline: none;
        border: none;
    }

    .faq-question.active {
        background-color: #f0faff;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background-color: transparent;
        border-radius: 12px;
    }

    .faq-answer.show {
        max-height: 1000px;
        padding: 20px;
	  font-family: 'Roboto';
	  font-size: 17px
    }

    .faq-answer p {
        margin: 0;
        color: #555555;
        line-height: 1.6;
    }





.faq-question {
    border: 1px solid #c0e6f9;
}

.faq-question:hover {
    border-color: #08334a;
}

.arrow{
margin-right: 4px;
}

.strong-mb-2 strong,.strong-mb-2 .text-blue {
  display: block;
  margin-bottom: 8px;
}



.aktuality_text {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  
    height: auto;
  max-height: none;
}






a.disabled_reference {
    text-decoration: none;
    pointer-events: none;
}




.vyrobce-box{
	text-align: center;
	padding: 0 10px;
}
.vyrobce-box img{
	display: inline-block;
}
.aktuality_slide{
    	padding: 0 40px;
	margin-top: 40px;
}

.reviews-section-slide .slick-next,
.aktuality_slide .slick-next,
.ico-boxes-slider .slick-next,
.kategorie-list .slick-next {
    z-index: 50;
    right: 10px;
    color: transparent !important;
}


.reviews-section-slide .slick-next:before,
.aktuality_slide .slick-next:before,
.ico-boxes-slider .slick-next:before,
.kategorie-list .slick-next:before {
    content: '\f105';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: black;
    font-size: 35px;
}

.reviews-section-slide .slick-prev,
.aktuality_slide .slick-prev,
.ico-boxes-slider .slick-prev,
.kategorie-list .slick-prev {
    z-index: 50;
    left: 10px;
    color: transparent !important;
}

.reviews-section-slide .slick-prev:before,
.aktuality_slide .slick-prev:before,
.ico-boxes-slider .slick-prev:before,
.kategorie-list .slick-prev:before {
    content: '\f104';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: black;
    font-size: 35px;
}

.reviews-section-slide .slick-next{
right: -10px;

}
.reviews-section-slide .slick-prev{
left: -10px
}



        .reviews-section {
            max-width: 80%;
            margin: 0 auto;
            padding: 0px 24px;
            text-align: center;
        }

       

        .reviews-summary {
            
            color: #222;
            margin-bottom: 48px;
        }

        .reviews-summary a {
            font-weight: 700;
            color: #222;
            text-decoration: none;
        }

        .reviews-summary a:hover {
            text-decoration: underline;
        }

        .reviews-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .review-card {
            flex: 1 1 calc(33.333% - 22px);
            min-width: 260px;
            padding: 0 40px;
            text-align: center;
        }

        .review-stars {
            margin-bottom: 12px;
        }

        .review-stars i {
            color: #f5a623;
            font-size: 1.25rem;
            margin: 0 1px;
        }

        .review-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: #111;
        }

        .review-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 28px;
        }

        .review-author {
            font-weight: 700;
            font-size: 0.95rem;
            color: #111;
        }

        @media (max-width: 768px) {
            .review-card {
                flex: 1 1 100%;
			padding: 0px;
            }

            .reviews-section h2 {
                font-size: 1.5rem;
            }


        }





.btn2 {
  position: relative;
  display: inline-block;
  padding: 10px 24px;
  background-color: #ffffff;
  color: #4a90e2;
  border: 1px solid #4a90e2;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #4a90e2;
  z-index: -1;
  transition: width 0.3s ease;
}

.product2{
background-color: #f0faff;
}

/* Triggered when hovering the parent .product2 */
.product2:hover .btn2::before {
  width: 100%;
}

.product2:hover .btn2 {
  color: #ffffff;
}

.product-box-more2{
text-align: center;
padding: 8px 0;
}


.shop-katalog {
    background-color: white;
    padding: 10px 20px 40px 20px;
}







.editable_section ul,ul.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.editable_section ul li,ul.icon-list li {
  position: relative;
  padding-left: 28px;
  
  line-height: 1.5;
}

ul.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("/files/images/ic_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.EditableSection li:before, .EditableContent li:before, .editable-section li:before{

  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("/files/images/ic_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

}







.btn-category {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid #b8d4f0;
  border-radius: 6px;
  cursor: pointer;
font-weight: bold;
  text-align: center;
  transition: all 0.2s ease;
	text-decoration: none;
}

.btn-category:hover {
	text-decoration: none;
    background: #0199e8;
    color: white !important;
}

.btn-category.active {
background: #0199e8;
    color: white !important;

}


.truncate {
  white-space: nowrap;      /* keep text on one line */
  overflow: hidden;         /* hide the overflow */
  text-overflow: ellipsis;  /* show ... for the hidden part */
}




ul.icon-list-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
ul.icon-list-row li {
    position: relative;
    padding-left: 28px;
    white-space: nowrap;
}
ul.icon-list-row li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("/files/images/ic_check.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 767px) {
    ul.icon-list-row {
        padding-left: 16px;
        padding-right: 16px;
    }
}




/* --- Nav slider thumbnails: equal height, cropped to fit --- */
.slider-nav .slick-slide {
  height: 140px;
}

.slider-nav .slick-slide > div {
  height: 100%;
}

.slider-nav .slick-slide img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Optional: dim non-active thumbnails so the selected one stands out */
.slider-nav .slick-slide {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.slider-nav .slick-slide.slick-current {
  opacity: 1;
}

/* Optional: small gap between thumbnails */
.slider-nav .slick-slide {
  margin: 0 5px;
}

/* --- Responsive height adjustments for smaller screens --- */
@media (max-width: 1024px) {
  .slider-nav .slick-slide,
  .slider-nav .slick-slide img {
    height: 110px;
  }
}

@media (max-width: 768px) {
  .slider-nav .slick-slide,
  .slider-nav .slick-slide img {
    height: 90px;
  }
}

@media (max-width: 480px) {
  .slider-nav .slick-slide,
  .slider-nav .slick-slide img {
    height: 200px; /* taller here since only 1 shown at a time */
  }
}

/* --- Main slider: make it responsive in height too --- */
.slider-main .slick-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.slick-prev,
.slick-next {
    font-size: 0;      /* hides the button's own text content */
    line-height: 0;
    color: transparent; /* extra safety net in case font-size:0 gets overridden */
}

.slick-prev,
.slick-next {
    z-index: 10;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}


.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: black;
    font-size: 50px;   /* icon gets its own size, unaffected by parent's font-size:0 */
    line-height: 1;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: black;
}

.slick-prev,
.slick-next {
        background: transparent !important;
}

.slick-prev.active,
.slick-next.active {
        background: transparent !important;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  
    background: transparent !important;
}


.slick-prev:before{
    content: '\f053';
}
.slick-next:before{
    content: '\f054';
}

.slick-prev {
    left: -50px;
}
.slick-next{
    right: -50px;
}

@media (max-width: 767px) {
    .slick-prev {
        left: -10px;
    }
    .slick-next {
        right: -10px;
    }
    .slick-prev,
    .slick-next {
        width: 20px;
        height: 20px;
    }
    .slick-prev:before,
    .slick-next:before {
        font-size: 24px;
    }
}



.carousel-slide {
  position: relative;
  padding-top: 2rem; /* make room for the stars */
}

.carousel-slide::before {
  content: "★★★★★";
  display: block;
  color: #FFC107; 
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}


.label:empty + i,
i:has(+ .label:empty) {
  display: none;
}

.navbar-toggler::before{
  content: '\f0c9'; /* fa-bars */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 28px;
  color: #004265;
  transition: content 0.2s ease; /* note: content isn't actually animatable, see below */
}

.navbar-toggler:not(.collapsed)::before{
  content: '\f00d'; /* fa-times / fa-xmark (cross) */
}





@media (max-width: 767.98px) {
  .navbar > p.mb-1 {
    flex: 0 0 100%;      /* forces it onto its own line inside the wrapping navbar */
    display: grid;
    justify-content: center; /* centers the two buttons inside the <p> */
    margin-right: 0 !important; /* kill the mr-2 so it doesn't skew the centering */
  }
}




@media (max-width: 767px) {
    .nav-link.dropdown-toggle,
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
    }

    .dropdown-toggle::before {
        display: none;
    }

    .dropdown-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        color: black;
        margin-left: 0.5em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }

    .nav-item{
        border-bottom: 1px solid #e5e5e5;
    }
.nav-item.dropdown {
        width: 100%;
    }

}