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

@font-face {
    font-family: 'Montserrat';
    src: url('/files/fonts/Montserrat-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/files/fonts/Montserrat-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: initial;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Light';
    src: url('/files/fonts/Montserrat-Light.otf') format('opentype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Light';
    src: url('/files/fonts/Montserrat-Bold.otf') format('opentype');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-ExtraLight';
    src: url('/files/fonts/Montserrat-Light.otf') format('opentype');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-ExtraLight';
    src: url('/files/fonts/Montserrat-Bold.otf') format('opentype');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Thin';
    src: url('/files/fonts/Montserrat-Thin.otf') format('opentype');
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Thin';
    src: url('/files/fonts/Montserrat-Bold.otf') format('opentype');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('/files/fonts/Montserrat-Regular.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Medium';
    src: url('/files/fonts/Montserrat-Regular.otf') format('opentype');
    font-weight: bold;
    font-display: swap;
}



* {
	margin: 0px;
	padding: 0px;
}
body {
      background-color: white;
  	line-height: 1.3em;
  	font-size: 12pt;
  	color: black;
  	font-weight: normal;
  	font-family: 'Montserrat';

}

#cookies_souhlas{
	width: 100% !important;
}

.overflow-hidden{
	overflow: hidden;
}

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

@media (min-width: 1400px){

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

.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.5s ease-in-out;
    	-moz-transition: opacity 1.5s ease-in-out;
    	-ms-transition: opacity 1.5s ease-in-out;
    	-o-transition: opacity 1.5s ease-in-out;
    	transition: opacity 1.5s ease-in-out;
}
.fader.visible{
	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;
}	

/**********************************/
/*         HEADER
/*********************************/
header{
	/*position: relative; */
	position: fixed;
	top: 0;
	z-index: 200;
	width: 100%; 
	background: white;	
	z-index: 2;
	border-bottom: 1px solid #c2e1f9;
	transition: transform 0.5s ease;
	background-color: #f5fcff;
}
header.scroll-hidden {
      transform: translateY(-125px);
}
#header{
	padding: 15px 0;
	transition: all 0.5s ease;
}
#header > .row {
      margin: 0;
    	justify-content: space-between; 
}
.logo img{
	max-height: 150px;
	transition: all 0.5s ease;
    	height: auto;
}
header.scrolled .logo img{
	max-height: 50px;
	width: auto !important;
}
header.scrolled #header{
	padding: 8px 0;
}
header p{
	margin: 5px 0;
	color: #193d84;
}
header a{
	text-decoration: none;
	color: #193d84;
	font-weight: normal;
	font-family: Montserrat;
}
header a:hover, header a:focus{
	text-decoration: underline;
}
.link-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    color: transparent !important;
    z-index: 10;
}
.nomargin{
	margin: 0;
}

/**********************************/
/*         SEARCHBOX
/**********************************/
.searchbox-toggle{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00367f;
	background: white;
	border: 1px solid #c0e6f9;
	border-radius: 50%;
	width: 40px;
	height: 40px;
   	position: relative;
    	cursor: pointer;
   	align-self: center;	
}
.searchbox .searchbox-toggle {
    	margin-left: 15px;
}
.searchbox {	
    	display: none;
    	position: fixed;
    	top: 0;
    	left: 0;
    	right: 0;
    	z-index: 20;
    	background: #03a1ec url(/files/images/footer.png) repeat top left;
    	padding: 15px 25px;
}

.searchbox .search_text{
	border: 1px solid #e8e8e8;
	border-right: none;
	padding: 1.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: 17px;
	box-shadow: none !important;
	padding: 0.6rem 2rem;
	border-radius: 25px;
	display: inline-block;
    	font-family: 'Montserrat-Medium';
    	font-weight: 500;
	border: 1px solid lightblue;
	white-space: normal;
}
.btn:hover, .btn:focus,
.reference-box:hover .btn, reference-box:focus .btn{
	border: 1px solid #0099e3;
	background: #0099e3;
	color: white;
}

.btn.btn-primary{
	background: #03a1ec;
	border: 1px solid #03a1ec;
	color: white !important;
	font-size: 18px;
	font-weight: bold;
	padding: 15px 35px;
	position: relative;
      white-space: normal;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active, .reference_box:hover .btn.btn-primary{
	background: lightblue !important;
/*	border: 1px solid #003780 !important; */
	color: white !important;
}
.btn.btn-secondary{
	background: #f5fcff;
      border: 1px solid lightblue;
	color: #003780 !important;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active, .article-thumb:hover .btn.btn-secondary,
.link-box:hover .btn-secondary, .link-box:focus .btn-secondary{
	background: #0099e3 !important;
	border: 1px solid #0099e3 !important;
	color: white !important;
}
.btn.btn-terciary{
	background: transparent;
	border: 1px solid white;
	color: white !important;
	font-size: 16px;
	font-weight: bold;
	padding: 15px 35px;
	position: relative;
}
.btn.btn-terciary:after{
	position: absolute;
    	top: 50%;
    	right: -15px;
    	width: 30px;
    	height: 1px;
    	content: '';
    	background: white;
}
.btn.btn-terciary:hover, .btn.btn-terciary:focus, .btn.btn-terciary:active{
	background: white !important;
	border: 1px solid white !important;
	color: #c90000 !important;
}
.btn.btn-big{
	padding: 0.7rem 1.2rem;
	min-width: 310px;
}

/**********************************/
/*         MENU-DEFAULT
/**********************************/
.navbar {
    	padding: 0;
	margin-top: 0;
	-webkit-transition: all 0;
    	transition: all 0;
}
.navbar-toggler {
    	display: none;
}
.navbar-collapse.collapse:not(.show) {
    	display: block;
}
.nav {
    	justify-content: center;
}
.nav li {
    	margin: 0;
   	position: relative;
    	display: inline-block;
}
.nav li.lvl-1 > a {
    	font-size: 14pt;
    	color: black;
    	font-weight: bold;
    	text-decoration: none !important;
    	display: inline-block;
	position: relative;
}
.nav li.lvl-1 > a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 80%;
	width: 80%;
	height: 4px;
	margin: auto;
	border: none;
}
.nav li.lvl-1:hover > a:after, .nav li.lvl-1:focus > a:after, .nav li.lvl-1 > a.active:after, .dropdown.show > a:after{
	background: black;
}
.dropdown-toggle::before {
    	display: inline-block;
    	width: 0;
    	height: 0;
	color: black;
    	margin-right: 0.255em;
    	vertical-align: 0.255em;
    	content: "";
    	border-top: 5px solid;
    	border-right: 5px solid transparent;
    	border-bottom: 0;
    	border-left: 5px solid transparent;
}
.dropdown-menu {
    	border-radius: 0;
    	border: none;
	background: #f5fcff;
	border: 1px solid #c0e6f9;
    	margin: 0;
    	left: 0;
    	top: 52px;
    	min-width: calc(100% + 2px);
    	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.nav-link{
	padding: 0.5rem 1.5rem;
	color: black;
	text-transform: initial;
	text-decoration: none;
	background: transparent;
}
.dropdown-menu a.nav-link:hover, .dropdown-menu a.nav-link.active{
	color: black;
	text-decoration: underline;
}

@media screen and (max-width: 1400px){
.navbar-toggler {
    	font-size: 25px;
    	outline: none !important;
    	line-height: 25px;
    	width: 100%;
	padding: 10px;
    	margin-left: 8px;
	display: flex !important;
    	align-items: center;
    	justify-content: center;
    	color: black;
}
.navbar-toggler-icon {
    	font-size: 25px;
    	height: auto;
    	vertical-align: initial;
    	margin-bottom: 0;
    	color: black;
}
.navbar-toggler[aria-expanded="true"]{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2001;
	padding: 10px;
	margin: 6px;
}
.navbar {
    	position: static;
}
.navbar-collapse {
    	position: absolute;
    	top: 0;
    	right: 0px;
    	width: 100vw;
	background: white;
	border-bottom: 1px solid #4d4d4d;
}
.navbar-collapse.collapse:not(.show) {
    	display: none;
    	height: auto;
}
.navbar-inner{
	width: 100%;
	text-align: center;
}
.nav li.lvl-1 {
    	display: block;
    	text-align: left;
    	flex-basis: 100%;
}
.nav li.lvl-1 > a{
	display: block;
	padding: 15px 25px;
	border-bottom: 1px solid #c0e6f9;
}
.nav li.lvl-1 > a:after{
	display: none !important;
}
.nav li.lvl-1 .dropdown-menu a.nav-link{
	padding: 12px 25px;
	margin-left: 25px;
	border-bottom: 1px solid #c0e6f9;
	text-align: center;
}
.nav li a:hover, .nav li a:focus{
	text-decoration: underline !important;
}	
.dropdown-menu{
	position: relative;
	top: auto;
	left: auto;
	float: none;
	display: none;
	padding: 0;
	border-bottom: none;
}
.nav {
    	width: 100%;
    	height: 100vh;
    	overflow: auto;
    	display: block;
}
.nav li.lvl-1 {
    	display: block;
    	text-align: center;
    	flex-basis: 100%;
}
.nav li.lvl-1 > a{
	display: block;
	color: black;
	text-align: center;
}
.nav li.lvl-1:hover > a, .nav li.lvl-1:focus > a, .nav li.lvl-1.show > a, .nav li.lvl-1 > a.active,
.dropdown-menu a.nav-link:hover, .dropdown-menu a.nav-link:focus{
	color: #007bff !important;
	background: white;
}
.dropdown-menu.show{
	float: none;
	position: relative;
	left: auto;
	top: auto;
	background: white;
}
.dropdown-menu a.nav-link{
	color: black;
}

}
/**********************************/
/*         MENU-DEFAULT-KONEC
/**********************************/



/**********************************/
/*         MENU
/**********************************/
#menu_top{
	z-index: 2;
	margin-top: 15px;
	flex-basis: 100%;
}
.nav li.lvl-1:hover > a:after, .nav li.lvl-1:focus > a:after, .nav li.lvl-1 > a.active:after, .dropdown.show > a:after{
	background: #1392D2;
}


#intro{
	position: relative;
}

#intro img{
	width: auto;
	display: block;
	height: auto;
/*	margin-bottom: 25px; */
}

section {
    padding: 40px 0;
}
.bcg-blue{
	background: #f4faff;
	padding-bottom: 10px;
}
.bordered-top{
	border-top: 1px solid #c0e6f9;
}

.bordered {
    border-bottom: 1px solid #c0e6f9;
}
.pb-10{
	padding-bottom: 10px;
}
.section-gradient{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,edf5ff+25,edf5ff+75,ffffff+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #edf5ff 25%, #edf5ff 75%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#edf5ff 25%,#edf5ff 75%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#edf5ff 25%,#edf5ff 75%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

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

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  	line-height: 1.3em;
  	margin: 30px 0 12px 0;
  	text-align: left;
}
h1, .h1{
	color: #003780;
	font-size: 30px;
	font-weight: normal;
  	font-family: 'Montserrat';
	text-align: left;
	position: relative;
}
 
h2, .h2{
      color: #0096de;
      font-size: 25px;
	font-weight: normal;
  	font-family: 'Montserrat-light';
	margin-top: 40px;
	margin-bottom: 25px;
}
h3, .h3{
	color: black;
	font-size: 18px;
	font-weight: bold;
	clear: both;
}
h4, .h4{
	color: #c90000;
	font-size: 14px;
	font-weight: 600;
}
p, li {
  	margin: 0 0 12px 0;
  	list-style-type: none;
}

ul{
	padding-left: 0;
}
.EditableSection a, .EditableContent a, .editable-section a{
	text-decoration: underline;
}
.EditableSection a:hover, .EditableContent a:hover, .editable-section a:hover{
	text-decoration: none;
}
.EditableSection p, .EditableContent p, .editable-section p,
.EditableSection li, .EditableContent li, .editable-section li{
	line-height: 1.6em;
}
.EditableSection li, .EditableContent li, .editable-section li{
	position: relative;
	padding-left: 20px;
	list-style: none;
}
.EditableSection li:before, .EditableContent li:before, .editable-section li:before {
    content: '\f111';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 6px;
    position: absolute;
    top: 1px;
    left: 0;
}
.editable_section a[rel="lightbox[all]"], .editable-section a[rel="lightbox[all]"], .EditableContent a[rel="lightbox[all]"] {
    	position: relative;
    	transition: all 0.4s ease-out;
	z-index: 1;
}
.EditableSection a[rel="lightbox[all]"] img, .EditableContent a[rel="lightbox[all]"] img, .editable-section a[rel="lightbox[all]"] img {
    	border: 1px solid transparent !important;
    	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;
}
a:hover {
	text-decoration: underline;
	color: #03a1ec;
}
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: 'Roboto-Light';
	padding: 5px;
	border: 1px solid #e0e0e0;
}
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;
	background: url(/files/images/intro.jpg) repeat-x left bottom;      
}
#intro.bordered{
	padding-top: 20px; 
	border-bottom: 1px solid #e5f3fc;
	
}
#intro .container{
/*	padding-top: 40px; */
/*	background: url(/files/images/web-rychle.png) no-repeat right bottom; */
}
.pb-150{
	padding-bottom: 150px;
}
#slides{
	position: relative;
	margin: 0 !important; 
	overflow: hidden;
	float: none;
}	

#slides .camera_pag{
	position: absolute;
	left: 0;
    	right: 0;
	bottom: 45px;
    	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{
	border-radius: 50px;
	width: 15px;
	height: 15px;
	display: inline-block;
	z-index: 1000;
	background: white;
	color: transparent;
}

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

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

#slides .camera_pag, .caption{
	width: 100%;
}
.caption{
	z-index: 2;
	position:absolute;
    	left:0;
    	right:0;
    	margin-left:auto;
    	margin-right:auto;
    	top: 80px;
    	max-width: 1360px;
	text-align: center;
}
.caption p{
	color: #c60000;
	font-size: 55px;
      font-weight: bold;
	font-family: Montserrat;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}
.caption p strong{
	font-size: 81px;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
}


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

#ico-boxes{

}
.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: 40px;
}
body#index .ico-box{
	margin-top: -80px;
}
.ico-box:after{
	content: '';
	position: absolute;
	width: 40px;
	height: 15px;
	top: -15px;
	right: 0;
	background: #c90000;
	transition: all 0.5s ease;
}
.ico-box:hover, .ico-box:focus{
	text-decoration: none;
}
.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;
	height: 65px;
	color: black;
}
.ico-box .ico-box-icon img{
	height: auto;
	width: auto;	
	max-height: 65px;
}

/**********************************/
/*  INDEX 
/*********************************/
.index-info{
	display: flex;
	margin-bottom: 40px;
}
.index-info-box {
	flex-basis: 50%;
	max-width: 50%;
}
.index-info-text-box{
	background: white;
	border: 1px solid #eaeaea;
	border-right: none;
	padding: 20px 25px;
}
.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;
}

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

/**********************************/
/*  INFO BOXY 
/*********************************/

.info-box{
	border-radius: 20px;
	border: 1px solid transparent;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
	box-shadow: 1px 5px 12px 2px rgb(0 0 0 / 10%);
	padding: 20px 10px;
	text-align: center !important;
	position: relative;
	height: 100%;
	margin-bottom: 20px;
}
.info-box h2{
	text-align: center;
	font-weight: bold;
	margin-top: 0;
	color: #1392D2;
}	
.info-box li, .info-box li b{
	font-size: 17px;
}
.info-box li:before{
	content: '\f00c';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	display: block;
	text-align: center;
	font-size: 20px;
      margin-bottom: 10px;
	font-size: 20px;
	color: #1392D2;
	position: relative;
	top: auto;
	left: auto;
	margin: 0;
}

@media screen and (max-width: 1200px){
.info-box{
	height: auto;
}
}


/**********************************/
/*  CENIK BOXY 
/*********************************/

.price-box{
	border-radius: 20px;
	border: 1px solid gray;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
	box-shadow: 1px 5px 12px 2px rgb(0 0 0 / 10%);
	padding: 20px 10px;
	padding-bottom: 80px;
	text-align: center !important;
	position: relative;
	height: 100%;
	margin-bottom: 20px;
}
@media screen and (max-width: 1200px){
.price-box{
	height: auto;
}
}

.price-box h2{
	text-align: center;
	font-weight: bold;
	margin-top: 0;
}	
.price-box li, .price-box li b{
	font-size: 17px;
}
.price-box li:before{
	content: '\f00c';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	display: block;
	text-align: center;
	font-size: 20px;
      margin-bottom: 10px;
}
.price-box .btn-wrap{
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
}
.price-box-green{
	border-color: white;
}
.price-box-green .btn{
	border: 1px solid #72A517;
	background: #72A517;
	color: white !important;
}
.price-box-green h2{
	color: #72A517;
}
.price-box-green:hover, .price-box-green:focus{
	background: #f7ffea;
}
.price-box-green li:before{
	color: #72A517;
	font-size: 20px;
      margin-bottom: 10px;
}

.price-box-blue{
	border-color: white;
}
.price-box-blue .btn{
	border: 1px solid #1392D2;
	background: #1392D2;
	color: white !important;
}
.price-box-blue h2{
	color: #1392D2;
}
.price-box-blue:hover, .price-box-blue:focus{
	background: #eefcff;
}
.price-box-blue li:before{
	color: #1392D2;
	font-size: 20px;
      margin-bottom: 10px;

}

.price-box-orange{
	border-color: white;
}
.price-box-orange .btn{
	border: 1px solid #f99705;
	background: #f99705;
	color: white !important;
}
.price-box-orange h2{
	color: #f99705;
}
.price-box-orange:hover, .price-box-orange:focus{
	background: #fff9ef;
}
.price-box-orange li:before{
	color: #f99705;
}


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

.section-bcg{
	/* background: url(/files/images/bcg.png) repeat left top; */
	background-color: #f5fcff;
}
.section-red{
	background: #c90000;
}

section#main_content{
	padding-top: 0;
}
h1.main-title, .h1.main-title{
	font-size: 38px;
	font-weight: bold;
	font-family: Montserrat;
	margin: 0;
    	background: linear-gradient(90deg, rgb(0 78 154) 0%, rgb(0 159 239) 100%);
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
	margin-top: 2rem;
    	margin-bottom: 1.5rem;
}


#index .h1.text-green{
	color: #71be01;
	font-weight: normal;
	margin: 10px 0;
}

#index h2, #index .h2, .nadpis{
/*	font-size: 30px;
	font-weight: normal;
*/
/*	color: black; */
	font-family: Montserrat;
}

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

/**********************************/
/*  AKTUALITY 
/*********************************/
.aktuality-box{
	display: block;
	color: black;
	text-decoration: none !important;
	background: white;
	border: 1px solid #eaeaea;
	padding: 20px;
	margin-left: 30px;
	margin-bottom: 15px;
}
.aktuality-box:hover{
	color: black;
}
.aktuality-box:hover .aktuality-name{
	text-decoration: underline;
}
.aktuality-name{
	font-size: 18px;
	font-weight: bold;
	color: black;
	margin-bottom: 20px;
}
.aktuality-date{
	display: inline-block;
	color: white;
	font-size: 18px;
	font-weight: bold;
	background: #c90000;
	margin-left: -50px;
	padding: 8px 10px;
	margin-right: 10px;
}
.aktuality-text{
	font-size: 16px;
}
.aktuality-img{
	margin: 0;
	max-height: 150px;
	text-align: center;
}
.aktuality-box img{
	width: auto;
	height: auto;
	max-height: 150px;
}
.aktualita-detail{
	background: white;
	border: 1px solid #eaeaea;
	margin-bottom: 30px;
	padding: 20px;
	overflow: hidden;
}

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


button#modal-launch{
    	background: none;
    	border: none;
    	cursor: pointer;
	padding: 0;
	box-shadow: none;
	text-shadow: none;
}
button#modal-launch:after{
	background: transparent;
}
button#modal-launch .h2{
	text-transform: initial;
	color: white;
}

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

div.modal-header {
	border-radius: 0;
	background: #03a1ec url(/files/images/footer.png) repeat top left;
}

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{
	/* 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;
}
#form-konzultace-mail .form-group{
	display: flex;
	flex-wrap: wrap;
}
#form-konzultace-mail .form-group label{
	width: 130px;
	flex-basis: 130px;
	font-size: 18px;
	font-weight: bold;
	color: white;
	margin-top: 8px;
}
#form-konzultace-mail .form-group input, #form-konzultace-mail .form-group textarea{
	flex-grow: 1;
	border: 1px solid white;
	max-width: calc(100% - 130px);
}
#form-konzultace-mail span.mandatory-star{
	display: none;
}
#form-konzultace-mail .invalid-feedback{
	flex-basis: 100%;
	text-align: right;
}
#form-konzultace-mail .col-form-right .form-group label{
	flex-basis: 70px;
	width: 70px;
}
#form-konzultace-mail .col-form-right .form-group textarea{
	max-width: calc(100% - 70px);
	height: 200px;
}
#form-konzultace-mail .btn-primary{
	border: 2px solid white;
	padding: 10px 25px;
}


/***************************/
/*  LINKS
/***************************/
#link-boxes{
	margin-top: -150px;
}
.link-box{
	position: relative;
	text-align: center;
	margin: 0 20px;
	margin-bottom: 25px;	
	cursor: pointer;
}
.link-box .link-fill{
	color: transparent;
	outline: none !important;
    	border: none !important;
    	box-shadow: none !important;
}
.link-box .round{
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 50%;
	width: 210px;
    	height: 210px;
	position: relative;
	margin: 0 auto;
	margin-bottom: 15px;
	-webkit-box-shadow: 0px 0px 10px 4px rgba(191,217,227,1);
	-moz-box-shadow: 0px 0px 10px 4px rgba(191,217,227,1);
	box-shadow: 0px 0px 10px 4px rgba(191,217,227,1);
}
.link-box .round:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: url(/files/images/tacho.png) no-repeat top 5px right 5px;
}
.link-box .round:after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	transition: all 0.4s ease-out;
	background: transparent;
	background-position: bottom 5px right 5px;
	opacity: 0;
}
.link-box:hover .round:after{
	background: url(/files/images/tacho-spodni.png) no-repeat bottom 5px right 5px;
	background-position: bottom 5px right 5px;
	opacity: 1;

}
.link-box .round-nadpis{
	font-size: 24px;
	font-weight: normal;
	color: #00367f;	
	line-height: 30px;
}

.slick-next, .slick-prev{
	color: #0d337d;
	font-size: 30px;
	top: 32%;
}
.slick-next:hover, .slick-prev:hover{
	color: #03a1ec;
}
.slick-next:before, .slick-prev:before{
	content: '';
}

/***************************/
/*  REFERENCE
/***************************/
.reference-box {
    text-decoration: none;
    width: 350px;
    margin: auto;
}

.reference-box-img {
    margin-bottom: 15px;
    max-height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.reference-box-img img{
/*	height: auto;
	width: auto;
*/
}		
.reference-box-name a{
	font-size: 24px;
	font-family: Montserrat-Light;
	font-weight: 300;
	text-decoration: none;
}
.reference-box:hover .reference-box-name a, .reference-box:focus .reference-box-name a{
	text-decoration: underline;
}

/***************************/
/*  FOOTER
/***************************/
footer {
	height: auto;
	background: #03a1ec url(/files/images/footer.png) repeat top left;
	border: none;
	padding: 40px 0;
}
footer p{
	margin: 0;
}
footer p, footer a, footer a:visited{
	color: white;
	text-decoration: none;
	font-size: 18px;
}
footer a:hover, footer a:focus{
	color: white;	
	text-decoration: underline;
}
.row-contacts a{
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;

}
.row-contacts a:hover, .row-contacts a:focus{
	color: white;
	text-decoration: underline;
}	
footer i{
	color: white;
}
footer .line{
	margin: 30px auto;
	border-top: 1px solid #077fb8;
	border-bottom: 1px solid #47c1fb;	
	width: 100%;
}
#footer_text div, #footer_text p{
	display: inline;
}	
.footer-gray, .footer-gray a{
	color: #929292 !important;
}
.footer-gray a.link-webstranky{
	color: white !important;
	font-weight: bold;
}
.footer-gray a:hover, 
.footer-gray a.link-webstranky:hover{
	color: #c90000 !important;
}
.col-footer-image img{
	width: auto;
	height: auto;
	position: absolute;
	bottom: -123px;
}

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

.breadcrumb {
	margin: 0;
	border-radius: 0;
	font-size: 15px;
      border-bottom: 1px solid lightblue;
}
.breadcrumb span, .breadcrumb a {
    	color: black;
	font-size: 15px;
	font-family: Montserrat-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: right;
	flex-basis: 100%;
}

.produkt_pagination .strankovani-odkaz, .produkt_pagination .strankovani-sipky{
	border: 1px solid #c2e1f9;
	border-radius: 2px;
	background: white;
	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: #f5fcff;
	border: 1px solid #c2e1f9;
	border-radius: 2px;
	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: #f5fcff;
	border: 1px solid #c2e1f9;
	border-radius: 2px;
	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{
	margin-bottom: 1rem;
}
.product_detail_table td{
	border-bottom: 1px solid #242424;
	padding: 0.5rem 0;
	padding-right: 1rem;
	font-size: 18px;
}
.detail_cena_s_dph{
	font-weight: bold;
}
.detail_img{
	position: relative;
	background: #daeef7;
	width: 100%;
    	height: 100%;	
	max-height: 353px;	
	min-height: 250px;
}
.detail_img_big{
	position: relative;
   	margin-bottom: 15px;
	border: 1px solid transparent;
}
.detail_img_big img{
	max-width: 100%;
	width: auto;
	height: auto;
}
.detail_img_big:hover{
	border: 1px solid #00284f;
}
.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{
	width: 100%;
    	padding-top: 66%;
    	position: relative;
	background: #929292;
	margin-bottom: 1rem;
}
.detail_image a{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.detail_image:hover{
	background: #c90000;
}
.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;
}
.button-back{
	margin-top: 1rem;
}
.produkt_switcher{
	margin-bottom: 2rem;
}	
.produkt_switcher .switcher-content{
	padding: 1rem;
	border: 1px solid #929292;
	background: white;
}
.produkt_switcher .switcher-bar{
	border-bottom: none;
	justify-content: flex-start;
}
.produkt_switcher .switcher-bar .switcher-toggle{
	font-size: 21px;
	font-weight: 300;
  	font-family: 'Montserrat-Light';
	padding: 0.5rem 1.5rem;
	background: #929292;
	margin: 0;
	margin-right: 0.5rem;
	text-decoration: none !important;
	color: white;
}
.produkt_switcher .switcher-bar .switcher-toggle:hover, 
.produkt_switcher .switcher-bar .switcher-toggle.active{
	background: white;
	border: 1px solid #929292;
	border-bottom: 1px solid white;
	color: #242424;
}
.produkt_switcher .switcher-bar .switcher-toggle:hover:before, 
.produkt_switcher .switcher-bar .switcher-toggle.active:before{
	display: none;
}

/***************************/
/*  RECENZE
/***************************/

#recenze{
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 0 40px;
}
.recenze-box{
	text-align: center;
	margin-bottom: 50px;
}
.recenze-nadpis{
	font-weight: bold;
}
.recenze-link{
	margin-bottom: 25px;
}
.recenze-text p{
	text-align: center;
	font-style: italic;
	font-size: 15px;
}
.recenze-stars img{
	display: inline-block;
}
.slick-prev{
	left: 0;
}	
.slick-next{
	right: 0;
}

/***********
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: 1400px){
#menu_top{
	height: auto;
	margin-top: 0;
}

figcaption{
	font-size: 20px;
}
.navbar-toggler {
    	color: #00367f;
   	background: white;
    	border: 1px solid #c0e6f9;
    	border-radius: 50%;
    	width: 40px;
    	height: 40px;
}
#header .col-md-auto{
	flex-basis: 100%;
	max-width: 100%;
	text-align: center;
}
#header > .row > .col-md-auto {
    	flex-basis: 0;
    	max-width: 100%;
}
#header > .row > .col-md-auto:first-of-type {
    	flex-grow: 1;
}
#header .col-mobile-flex{
	display: flex;
	align-items: center;
	position: static
}
.navbar-toggler {
    	padding: 0;
}
.navbar-toggler-icon {
    	color: #193d84;
    	font-size: 20px;
	padding-top: 1px;
}
#kontakt {
    margin: 0;
    flex-wrap: nowrap;
	text-align: center;
}
#kontakt .col-md-auto {
    width: auto;
    flex-basis: auto;
    padding: 0;
}
#kontakt p {
    margin-left: 8px;
}
.logo {
    	width: 100%;
    	margin-bottom: 0;
	text-align: left;
}

}

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

/*.col-footer-image{
	display: none;
}
*/
#intro .container{
	background: none;
}

#form-konzultace-mail .col-form-right .form-group label, #form-konzultace-mail .form-group label{
	flex-basis: 100%;
	max-width: 100%;
}

}

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

.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 #eaeaea !important;
	border-left: 1px solid #eaeaea !important;
	border-right: 1px solid #eaeaea !important;
	border-bottom: none !important;
}
.index-info-img-box, .box-img{
	width: 100%;
    	padding-top: 70%;
    	position: relative;
}
body#index .ico-box{
	margin-top: 0;
}
.EditableSection :not(.gallery) a[rel="lightbox[all]"] img, .EditableContent :not(.gallery) a[rel="lightbox[all]"] img, .editable-section :not(.gallery) a[rel="lightbox[all]"] img{
	width: auto !important;
	height: auto !important;
}
}

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

.logo {
    width: auto;
    text-align: left;
    margin: 0;
}
.logo img {
    max-width: 165px;
}
#kontakt p {
    margin-left: 8px;
	display: flex;
    align-items: center;
    justify-content: center;
    color: #00367f;
    background: white;
    border: 1px solid #c2e1f9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
#kontakt a {
    overflow: hidden;
    content: '';
    color: transparent;
    height: 25px;
    width: 20px;
    display: block;
}
#kontakt a:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 6px;
    color: black;
}
#kontakt i {
    display: none;
}
#kontakt .mail a:before {
    content: '\f2b6';
    font-weight: normal;
}
#kontakt .tel a:before {
    content: '\f095';
}
#kontakt .searchbox-toggle i {
    font-size: 20px;
    color: black;
    display: block;
}
.img-mobile-no-float {
    display: block;
}
.img-mobile-no-float img {
    float: none !important;
}

}

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

#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: 20px;
}
.caption p strong{
	font-size: 24px;
}
.caption div{
	max-width: calc(100% - 30px);
}
#form-konzultace-mail .form-group input, #form-konzultace-mail .form-group textarea, 
#form-konzultace-mail .col-form-right .form-group textarea{
	max-width: 100%;
}
}

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

#dalsi-obrazky .col, .detail_images .col{
    	flex-basis: 50%;
	max-width: 50%;
}
.reference-box{
	max-width: 100%;
}
.reference-box-img img{
	height: auto;
}
}
	
@media screen and (max-width: 500px){
#header > .row {
	justify-content: center;
}	
#header > .row > .col-md-auto:first-of-type{
	order: 3;
	flex-basis: 100%;
}
.logo{
	text-align: center;
}
h1.main-title, .h1.main-title{
	font-size: 25px;
}
.produkt_pagination{
	text-align: center;
}

}


/*** DEBUG ***/
.reference-detail {
  /*  background-color: #F2F2F2; */
}

.youtube-video{
	max-width: 560px;
      max-height: 315px;
}




/************************************************/
/************* NEW - DEBUG **********************/
/************************************************/



/************** Zelené tlačítko ********/

.btn.btn-primary.btn-green{
    background: rgb(113,190,1);
    border: none; 
    border-radius: 50px;
    font-size: 17pt;
    white-space: normal;
}


.btn.btn-primary.btn-green:hover, 
.btn.btn-primary.btn-green:focus, 
.btn.btn-primary.btn-green:active, 
.reference_box:hover .btn.btn-primary.btn-green
{
	background: rgb(68,115,0) !important;
	border: none;
}



/**************Oranžové tlačítko*********/


form .btn.btn-primary{
    background: #f99605; 
  /*  border: none !imporant; 1px solid #f99605;  */
    border-radius: 50px;
    font-size: 17pt;
    white-space: normal;
}


form .btn.btn-primary:hover, 
form .btn.btn-primary:focus, 
form .btn.btn-primary:active, 
form .reference_box:hover .btn.btn-primary
{
	background: #d67f00 !important; 
	border: none;
}


/*************** Formulář ve stránce **********/


form.form-in-page {
    background: #03a1ec url(/files/images/footer.png) repeat top left;
    border: 1px solid #b2e7ff;
    border-radius: 10px;
    color: white;
    font-weight: bold;
}

form.form-in-page .invalid-feedback{
    color: yellow;
}


form.form-in-page .btn-primary,
form.form-in-page .btn-primary:hover,
form.form-in-page .btn-primary:focus
{
    border: 2px solid white; 
    padding: 10px 25px;
}





form.form-in-page .btn.btn-primary {
    background-color: #f99605;
}


form.form-in-page .col-form-right .form-group label {
    flex-basis: 70px;
    width: 70px;
}

form.form-in-page .form-group label {
    width: 130px;
    flex-basis: 130px;
    font-size: 18px;
    color: white; */
    margin-top: 8px;
}


/******************************************************/
/******************* REFERENCE ************************/
/******************************************************/
.reference-detail-img-main{
    max-height: 700px;
	max-width: 700px;
    overflow: hidden;
    margin: auto;
    border-radius: 20px;
    display: inline-block;
	
}
.reference-detail-img-main img{
	height: auto;
}
.reference-detail-img {
    max-height: 500px;
    overflow: hidden;
    margin: auto;
}
.reference-detail-img img{
	width: 100%;
	height: auto;
}

a.btn.btn-reference {
    background-color: white;
    border-color: lightblue;
     white-space: initial;
	word-break: break-word;
}

.product-img-wrap{
    	padding: 0 40px;
	margin-top: 40px;
	background: #f5fcff;
	border: 1px solid lightblue;
	border-radius: 20px;
}
.product-img-wrap .slick-slide{
	padding: 15px;
	margin-bottom: 0 !important;
}
.product-img-wrap .slick-next {
    z-index: 50;
    right: 10px;
	top: calc(50% - 10px);
	color: transparent !important;
	opacity: 1;
}
.product-img-wrap .slick-next:before {
    content: '\f105';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #003780;
    font-size: 35px;
}
.product-img-wrap .slick-prev {
    z-index: 50;
    left: 10px;
	top: calc(50% - 10px);
	color: transparent !important;
	opacity: 1;
}
.product-img-wrap .slick-prev:before {
    content: '\f104';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #003780;
    font-size: 35px;
}
.product-img-wrap .slick-prev:hover:before, .product-img-wrap .slick-prev:focus:before, 
.product-img-wrap .slick-next:hover:before, .product-img-wrap .slick-next:focus:before{
	color: #0099e3;
}


/******************************************************/
/******************* CENÍK WEBU ***********************/
/******************************************************/


div.cenik-webu {
	text-align: right;
}
div.cenik-table .row{
	border-left: 1px solid #e4f2fc;
	border-right: 1px solid #e4f2fc;
}
div.cenik-table .row:first-of-type{
	border-top: 1px solid #e4f2fc;
}


div.cenik-webu .title-cell h2 {
    margin-top: 16px;
}

div.cenik-webu .bold-cell {
    font-weight: bold;
}

div.cenik-webu .row div {
/*	border-bottom: 1px solid lightgray; */
	border-right: 1px solid white;
	padding: 8px 10px;
}

div.cenik-webu .row div.title-cell h2 {
    color: white !important;
    font-weight: bold !important;
}


/*** 1. sloupec ***/

div.cenik-webu .row div:nth-child(1) {
    text-align: left;
    border-bottom: 1px solid #e4f2fc;
}


/*** 2. sloupec ***/

div.cenik-webu .row div:nth-child(2).title-cell {
    background-color: #73a804 !important;    
}

div.cenik-webu .row div:nth-child(2).bold-cell {
	border-bottom: 1px solid #73a804;
}

div.cenik-webu .row div:nth-child(2) {
      background-color: #f7ffea;
	border-bottom: 1px solid #cae4a0;
}




/*** 3. sloupec ***/

div.cenik-webu .row div:nth-child(3).title-cell {
    background-color: #1392D2 !important;
}


div.cenik-webu .row div:nth-child(3).bold-cell {
	border-bottom: 1px solid #04a3fe;
}

div.cenik-webu .row div:nth-child(3) {
	background-color: #eefcff;
	border-bottom: 1px solid #cedff0;
}




/*** 4. sloupec ***/



div.cenik-webu .row div:nth-child(4).title-cell {
    background-color: #f99705 !important;
}

div.cenik-webu .row div:nth-child(4).bold-cell {
	border-bottom: 1px solid #f99705;
}

div.cenik-webu .row div:nth-child(4) {
	background-color: #fff9ef;
	border-bottom: 1px solid #f1d9b6;
}




/********** < 576px *********/

@media screen and (max-width: 576px){
div.cenik-webu .col-sm-3 {
    	display: flex;
    	justify-content: space-between;
}
div.cenik-webu .row:first-of-type{
	display: none;
}	
div.cenik-webu .row div:before{
	font-size: 16px;
	font-weight: bold;
}
div.cenik-webu .row div:nth-child(2):before {
      content: 'START';
}

div.cenik-webu .row div:nth-child(3):before {
      content: 'KLASIK';
}

div.cenik-webu .row div:nth-child(4):before {
      content: 'PROFI';
}

}



/******************************************************/
/******************* CENÍK ESHOPU *********************/
/******************************************************/

div.cenik-eshopu {
	text-align: right;
}

div.cenik-eshopu .title-cell h2 {
    margin-top: 16px;
}

div.cenik-eshopu .bold-cell {
    font-weight: bold;
}

div.cenik-eshopu .row div {
/*	border-bottom: 1px solid lightgray; */
	border-right: 1px solid white;
	padding: 8px 10px;
}

div.cenik-eshopu .row div.title-cell h2 {
    color: white !important;
    font-weight: bold !important;
}


/*** 1. sloupec ***/

div.cenik-eshopu .row div:nth-child(1) {
    text-align: left;
    border-bottom: 1px solid #e4f2fc;
}



/*** 2. sloupec ***/

div.cenik-eshopu .row div:nth-child(2).title-cell {
    background-color: #73a804 !important;    
}

div.cenik-eshopu .row div:nth-child(2).bold-cell {
	border-bottom: 1px solid #73a804;
}

div.cenik-eshopu .row div:nth-child(2) {
      background-color: #f7ffea;
	border-bottom: 1px solid #cae4a0;
}




/*** 3. sloupec ***/

div.cenik-eshopu .row div:nth-child(3).title-cell {
    background-color: #1392D2 !important;
}


div.cenik-eshopu .row div:nth-child(3).bold-cell {
	border-bottom: 1px solid #1392D2;
}

div.cenik-eshopu .row div:nth-child(3) {
	background-color: #eefcff;
	border-bottom: 1px solid #cedff0;
}




/*** 4. sloupec ***/



div.cenik-eshopu .row div:nth-child(4).title-cell {
    background-color: #f99705 !important;
}

div.cenik-eshopu .row div:nth-child(4).bold-cell {
	border-bottom: 1px solid #f99705;
}

div.cenik-eshopu .row div:nth-child(4) {
	background-color: #fff9ef;
	border-bottom: 1px solid #f1d9b6;
}



/*** 5. sloupec ***/



div.cenik-eshopu .row div:nth-child(5).title-cell {
    background-color: #ab84bd !important;
}

div.cenik-eshopu .row div:nth-child(5).bold-cell {
	border-bottom: 1px solid #ab84bd;
}

div.cenik-eshopu .row div:nth-child(5) {
	background-color: #ab84bd1f;
	border-bottom: 1px solid #ab84bd54;
}


/******************************************************/
/******************* PATIČKA **************************/
/******************************************************/


div#footer .invalid-feedback{
	color: yellow;
	font-weight: bold;
}

div#footer .btn.btn-primary{
	background-color: #f99605;
}

img.woman-full{
	display: none;
}


p.odraz {
    margin-left: 2em;
}

p.bonus-info {
    font-size: 13pt;
    font-style: italic;
}


h2.bonus {
    color: #4caf50;
    font-weight: bold;
    font-style: italic;
}

img.wp-4 {
    max-width: 420px;
}



/******************************************************/
/******************* Konverzky ************************/
/******************************************************/


.konverzka h1 {
    font-weight: bold;
}

.konverzka h2 {
    font-weight: bold;
}


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

#form-konzultace-mail .form-group input, #form-konzultace-mail .form-group textarea {
    max-width: 100%;
}

#form-konzultace-mail .col-form-right .form-group textarea {
    max-width: 100%;
    height: 100px;
}

img.woman-part{
	display: none;
}
img.woman-full{
	display: block;
	margin-bottom: 120px;
}


}


@media screen and (max-width: 768px){
.zena-s-pocitacem {
    display: none;
}
}



@media screen and (max-width: 600px){
.btn.btn-primary.btn-red{
   font-size: 14pt;
}
}




/*
.anime-left{
  position: relative;
  animation-name: MoveLeft;
  animation-duration: 1.5s;

}


.anime-left-1600{
  position: relative;
  animation-name: MoveLeft1600;
  animation-duration: 1.5s;

}


.anime-right{
  position: relative;
  animation-name: MoveRight;
  animation-duration: 1.5s;
}


.anime-down{
  position: relative;
  animation-name: MoveDown;
  animation-duration: 1.5s;
}


@keyframes MoveLeft {
  0%   {left:100px; }
  100% {left:0px; }
}


@keyframes MoveLeft1600 {
  0%   {left:100%; }
  100% {left:0px; }
}



@keyframes MoveRight {
  0%   {left:-100px; }
  100% {left:0px; }
}

@keyframes MoveDown{
  0%   {top:-100px;}
  100% {top:0px;}
}

*/

