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

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

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

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

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

@font-face {
    font-family: 'Freestyle';
    src: url('/files/fonts/FREESCPT.TTF') format('truetype'),
	   url('/files/fonts/freestylescript.otf') format("opentype");
}

/**********************************/
/*         DEFAULTNI HODNOTY
/*********************************/
* {
	margin: 0px;
	padding: 0px;
}
body {
      background-color: white;
      color: #3f3f3f;  
	text-align: left;
	font-family: Roboto,sans-serif;
	line-height: 1.4;
	height: 100%;
	overflow-x: hidden;
}
section{
	overflow-x: hidden;
	position: relative;
}
#main_content a[rel="lightbox[all]"] img, #main_content > div img{
    	position: relative;
    	display: inline-block;
	border: 5px solid white !important;
	margin: 4px;
	z-index: 50;
}
#main_content a[rel="lightbox[all]"]:hover img{
	border: 5px solid #bee3fb !important;
}
h1, h2, h3, h4 {
  margin: 0 0 12px 0;
  text-align: left;
  line-height: 1.2;
}
h1 {
	color: black;
	font-size: 36px;
	font-weight: 300;
	text-align: left;
      margin: 5px 0px 22px 0px;
}
h1.cent{
	text-align: center;
}
h2 {
	color: #0070bc;
	font-size: 30px;
	font-weight: 300;
      margin-bottom: 15px;
}
h3 {
	color: black;
	font-size: 22px;
	font-weight: 400;
	clear: both;
	margin-top: 35px;
}
h4 {
	color: #0ea155;
	font-size: 14px;
	font-weight: 600;
}
p, li {
  	margin: 0 0 12px 0;
  	line-height: 1.3em;
  	font-size: 17px;
  	list-style-type: none;
  	color: #3f3f3f;
  	font-weight: 300;
}
#cookies_souhlas{
	width: 100% !important;
}
#main_content ul{
	padding-left: 0;
}


.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;
}
.EditableSection ol li, .EditableContent ol li, .editable-section ol li {
    padding-left: 40px;
    counter-increment: item;
}
.EditableSection ol li:before, .EditableContent ol li:before, .editable-section ol li:before {
    background: #ed1d24;
    color: white;
    border-radius: 50px;
    content: counter(item);
    font-size: 20px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto";
}
.EditableSection ol li strong, .EditableContent ol li strong, .editable-section ol li strong {
    margin-top: 5px;
    display: inline-block;
}
img {
	margin: 0; 
	max-width: 100%;
}
a, a:visited {
    color: #3f3f3f;
    font-size: 18px;
}
a:hover {
	text-decoration: underline;
	color: #ed1d24;
}
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;
	padding: 5px;
	border: 1px solid #e0e0e0;
}
ul, ol {
	list-style-position: outside;
	margin: 0 0 12px 0px;
}
.EditableSection a, .EditableContent a, .editable-section a{
	text-decoration: underline;
}
.EditableSection a:hover, .EditableContent a:hover, .editable-section a:hover{
	text-decoration: none;
}


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

.container{
	padding: 50px 0;
	overflow: hidden;
	width: 96%;
}
.container.small-padding{
	padding: 20px 0;
}
@media (min-width: 1400px){
.container {
    max-width: 1360px;
}
}
.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;
}
.borderEffect{
	position: relative;
	border: 1px solid #bee3fb;
}
.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 #0071bc;
    border-left: 1px solid #0071bc;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
.borderEffect:after {
    border-top: 1px solid #0071bc;
    border-right: 1px solid #0071bc;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.borderEffect:hover:after, .borderEffect:hover:before, button:hover .borderEffect:after, button:hover .borderEffect:before  {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.borderEffect div.inner {
    	text-transform: uppercase;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding: 10px 30px;
	background: #0071bc;	
	margin: 8px;
}
.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; 
	width: 100%; 
	background: white;	
	/*border-top: 3px solid white;*/
}

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

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

#logo{
	display: inline-block;
	margin: 0;
	vertical-align: middle;
	position: relative;
}
#logo img{
	border: none;
}	
p.nadpis{
	margin: 0;
	color: black;
	font-size: 45px;
	color: #002946;
   	font-family: 'Freestyle';

}
#kontakt{	
	color: black;
	margin: 0;
	display: flex;
	margin-left: auto;
}
#kontakt .dotaz{
	font-weight: bold;
	font-size: 24px;
	color: black;
	padding-right: 85px;
	display: inline-block;
	vertical-align: middle;
	background: url(/files/images/arrow_right.png) no-repeat center right;
}
#kontakt .formButton{
	display: inline-block;
}
#kontakt .formButton a:hover{
	text-decoration: none;
}
#kontakt .links{
    	margin-top: auto;
    	margin-bottom: auto;
	display: inline-block;
	vertical-align: middle;
}
#kontakt .links p{
	margin-bottom: 4px;
	display: block;
}
#kontakt .links p a.tel{
	background: url(/files/images/tel_ico.png) no-repeat left 2px center;
	padding-left: 20px;
	display: inline-block;
}
#kontakt .links p a.mail{
	background: url(/files/images/mail.png) no-repeat left center;
	padding-left: 20px;
	display: inline-block;
}
#kontakt .links p, #kontakt .links a{
	font-size: 17px;
	text-decoration: none;
	font-weight: 400;
	font-family: roboto;
}
#kontakt .links a:hover{
	text-decoration: underline;
	color: #3f3f3f;
}	

/**********************************/
/*         MENU
/**********************************/
#menu_top .container{
	padding: 0;
	overflow: visible;
}
#menu_top{
	background: #002946;
	z-index: 2;
}
.navbar {
    	padding: 0;
	margin-top: 0;
	-webkit-transition: all 0;
    	transition: all 0;
	height: 54px;
}
.navbar-toggler {
    display: none;
}
.navbar-collapse.collapse:not(.show) {
    display: block;
}
.navbar-inner{
	text-align: left;
	display: inline-block;
}
.nav {
    display: block;
}
.nav li {
    margin: 0;
    position: relative;
    display: inline-block;
}
.nav li.lvl-1 > a {
    font-size: 17px;
    color: white;
    font-weight: normal;
    padding: 10px 15px;
	border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-block;
}
.nav li.lvl-1 > a:hover, .nav li.lvl-1 > a.active, .nav li.lvl-1.show > a {
    background: url(/files/images/menu_bottom.png) no-repeat bottom center;
}
.dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
	color: #ffd51e;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.nav li.lvl-1 > a:hover:before, .nav li.lvl-1 > a.active:before, .nav li.lvl-1.show > a:before{
	color: #250174;
}
.dropdown-toggle::after{
	display: none;
}
.dropdown-menu {
    border-radius: 0;
    border: 3px solid #d73a29;
    margin: 0;
    left: 8px;
	top: 41px;
    min-width: calc(100% + 2px);
    background-color: white;
    transform-origin: 50% 0;
    transform: scaleY(0);
    opacity: 0;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
}
.dropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
}
.dropdown-menu a{
	text-transform: uppercase;
	text-decoration: none;
}
.dropdown-menu a:hover, .dropdown-menu a:active{
	text-decoration: underline;
	background: inherit;
}
/**********************************/
/*         CONTENT
/*********************************/

.gray{
	background: #eef8ff;
      border-top: 1px solid #bee3fb;
    	border-bottom: 1px solid #bee3fb;
}
#intro{
	position: relative;
    	overflow: hidden;
}
#intro figure{
	margin: 0;
}
#intro img{
	width: 100%;
	height: auto;
	display: block;
}
.bordered{
	border-bottom: 1px solid #bee3fb;
}
#main_content {
	text-align: left;
}
#main_content .col{
	    flex-basis: auto;
}
#main_content .cols .col.left{
	width: 55%;
}
#main_content .cols .col.right{
	width: 45%;
}
#main_content .cols .white{
	padding: 25px 30px;
	background: white;
	border: 1px solid #bee3fb;
}
#main_content .cols .white p{
	line-height: 1.5;
}
#main_content .cols .col .formButton{
	display: inline-block;
	border: 1px solid #bee3fb;
}
.kontakt{
	width: 330px;
	display: inline-block;
}

.kontakt p:first-of-type, .kontakt h3{
      font-family: 'Roboto',sans-serif;
	margin: 10px 0;
}

.kontakt p{
	margin-bottom: 8px;
}

.kontakt strong, .kontakt strong a{
	color: black;
	font-size: 15px;
}
.cols.mapa{
	border: 1px solid #bee3fb;
	padding: 10px;
	display: flex;
}
.cols.mapa .row{
	width: 100%;
}
.cols.mapa .col{
	text-align: center;
	align-self: center;
	flex-basis: auto;
}
.cols.mapa .col.right{
	width: 270px;
}
.cols.mapa .col.left{
	width: calc(100% - 270px);
}
.cols.mapa .col.left iframe{
	width: 100% !important;
}

#main_content table { 
border: none; width: auto; height: auto; 
} 
#main_content td { 
border: 1px solid #E4E4E4; padding: 10px; line-height: 1.3em;  
} 
p.text-big{
	margin-bottom: 0;
	margin-right: 15px;
	font-size: 23px;
	font-weight: normal;
}


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

footer{
  	background: #002946;
  	z-index: 0;
  	width: 100%;
}
#footer {
	color: white;
	height: auto;
	text-align: left;	
	border: none;
	padding-top: 0;
}
#footer p,
#footer a,
#footer a:visited,
#footer a:hover {
	color: white;
	text-decoration: none;
}
#menu_bottom{
	border-bottom: 1px solid #17527b;
	margin-bottom: 15px;
}
#menu_bottom .item{
	display: inline-block;
}
#menu_bottom .item a{
	text-transform: uppercase;
	text-decoration: none;
	font-size: 17px;
	font-weight: normal;
	padding: 15px 25px;
	display: inline-block; 
}
#menu_bottom .item a:hover{
	text-decoration: underline;
}
#menu_bottom .item a:first-of-type{
	padding-left: 0;
}
#footer_text{ 
	overflow: hidden;
}
#footer_text p, #footer #footer_text a{
	font-size: 15px;
}
#footer_text a:hover{
	text-decoration: underline;
}
#footer .col{
	align-self: center;
	float: right;
	flex-basis: auto;
}
#footer .col.left{
	width: 60%;
	margin-right: 2%;
}
#footer .col.right{
	width: 38%;
	text-align: right;
}
.fcb_box{
	text-align: center;
	display: inline-flex;
	border: 1px solid #16527b;
	background: #002946;
	padding: 15px;
	position: relative;
}
.fcb_box p{
	color: white;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: bold;
	align-self: center;
	margin-bottom: 0;
}
.fcb_box a{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
	z-index: 50;
}
.fcb_box span.fcb{
	background: white url(/files/images/fcb.png) no-repeat center center;
	border-radius: 3px;
	width: 45px;
	height: 45px;
	display: inline-block;
	margin-left: 7px;
	vertical-align: middle;
}
.fcb_box:hover span.fcb{
	background: white url(/files/images/fcb_hover.png) no-repeat center center;
}
#footer a.gdpr{
	border: 1px solid #17527b;
	background: #002946;
	color: white;
	display: inline-block;
	padding: 5px 10px;
	text-decoration: none;
	margin-bottom: 15px;
}
#footer a.gdpr:hover{
	background: #0070bc;
	text-decoration: none;
}

/* resetovac */
#reset {
	border:  0px none;
	margin:  0px;
	padding: 0px;
	float: none;
	clear: both;
	width: 0px;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}

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

#banners{
	width: calc(100% + 40px);
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 -20px;
}

.banner{
	margin: 10px 20px;
	display: inline-block;
	text-align: center;
	position: relative;
}

.banner h2{
	text-align: center;
	color: black;
	background: url(/files/images/banner_bottom_green.png) no-repeat bottom center;
	padding-bottom: 8px;
	font-weight: 300;
	font-size: 24px;
}
.banner a{
	text-decoration: none;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
}
.banner .ban_img{
	display: inline-block;
	position: relative;	
}
.banner .ban_img img{
	width: auto;
	border: none !important;
	margin: 0 !important;
	display: block;
	max-width: 100%;
}
.banner:hover .ban_img img{
	border: none !important;
}
.banner .ban_img .over{
	opacity: 0;
	z-index: 5;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
    	-webkit-transition: opacity 0.3s ease-in-out;
    	-moz-transition: opacity 0.3s ease-in-out;
    	-ms-transition: opacity 0.3s ease-in-out;
    	-o-transition: opacity 0.3s ease-in-out;
    	transition: opacity 0.3s ease-in-out;
}
.banner .ban_img .over .vice{
	display: inline-block;
	color: #bee3fb;
      border: 1px solid white;
	padding: 8px 12px;
	font-weight: bold;
	font-size: 24px;
	align-self: center;
    	margin: 0 auto;
}
.banner:hover .ban_img .over{
	opacity: 1;
}

.banner .ban_img:before, .banner .ban_img:after {
    	content: "";
    	position: absolute;
    	z-index: -1;
    	box-shadow: 0 0 15px rgba(0,0,0,0.8);
    	top: 80%;
    	bottom: 0;
    	left: 20px;
    	right: 20px;
    	border-radius: 80px / 10px;
}

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

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

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

.box2{
	border: 1px solid #ed1d24;
	padding: 0% 2% 2% 2%;
	display: inline-block;
	vertical-align: top;
	margin: 15px 0px 15px 0px;
	position: relative;
	background-color: white;
	width: 100%;
}

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

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

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

/**********************************/
/*  NAD PATICKOU 
/*********************************/
#nadpatickou .container{
	padding-top: 30px;
}
#nadpatickou h2{
	margin-bottom: 30px;
}

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

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

.form_title{
  border: none;
    margin-bottom: 20px;
    margin-top: 20px;
	color: #303030;
}

#form_main div.col{
	/*width: 32%;
	margin-bottom: 10px;
	display: inline-block;*/
}

#form_main{
  position: relative;
background: #f2f2f2;
}

.red{color: #F00;}

.form_content p{
	margin-bottom: 4px;
}

.form_content{
  	width: 960px;
	margin: 0 auto;
}

body.index .form_content{
	
}

.form_content fieldset { 
  	margin: 0;
  	border: 0px solid red;
	width: 47%;
    	margin-right: 2.5%;
	display: inline-block;
	vertical-align: top;
}

#main_content #map_other img:hover, #main_content .galerie_container img, #main_content .galerie_container img:hover{
	border: none;
}


.form_content #form_info{
	width: 25%;
	padding-left: 6%;
	display: inline-block;
	padding-top: 80px;
}

.form_content #form_info div{
	padding-left: 50px;
}

.form_content #form_info div p, .form_content #form_info div p a{
	color: white;	
	line-height: 50px;
	font-size: 16px;
}

.form_content #form_info div p a:hover{
	text-decoration: none;
}

.form_content #form_info div.tel{
	background: url(/files/images/tel.png) no-repeat left center;
}

.form_content #form_info div.mail{
	background: url(/files/images/obalka.png) no-repeat left center;
}

.form_content label{
	color: #575757;
	font-size: 17px;
	display: block;
      margin-bottom: 5px;
	font-weight: 300;
}

.form_content input, textarea {  
  	margin: 0px;
      padding: 8px;
  	font-size: 18px;
	background: white;
	border: 1px solid #e6e5e5;
	color: black;
	width: calc(100% - 18px);
	margin-bottom: 5px;
	font-weight: 300;
	font-family: Roboto;
}

.form_content textarea{
	height: 6em;
}

.form_content input.submit { 
    background: #7abb00;
    border: 1px solid #7abb00;
    color: white;
    width: 140px;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
}
.form_content input.submit:hover{
  	background: #6ba300;
	border: 1px solid #6ba300;
}


.form_content fieldset p input { 
  width: 193px;
  
}
.form_content fieldset p textarea { 
  width: 380px;
  height: 127px;
}
.form_content fieldset p.submit {
  position: relative;
  margin-bottom: 25px;
	margin-top: 10px;
  float: right;
}

p.red{margin-left: 60px;}

input.alert,
textarea.alert {
  border: solid 1px red;
}

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

.reference_box{
  	display: inline-block;
	width: 23.5%;
	margin-right: 1%;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	vertical-align: top;
	border: 1px solid white;
}
.reference_box:hover{
	border: 1px solid #7abb00;
}

.reference_img {
    	height: 159px;
	width: 100%;
    	overflow: hidden;
}

.reference_img a{
    	height: 159px;
	width: 100%;
	position: relative;
	display: block;	
}
.reference_img a img{
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto !important;
}

.reference_galerie .reference_img{
	display: inline-block;
	text-align: center;
	margin-right: 5px;
	margin-bottom: 5px;
	width: 265px;
	height: 175px;
	max-height: 100%;
}

.reference_name{
	padding: 8px 0;
}	

.reference_name a{
	color: black;
	text-decoration: none;
	font-size: 15px;
	min-height: 4em;
      display: block;
}

.reference_name a:hover{
	text-decoration: underline;
}

.reference_img img{
	max-width: calc(100% - 18px);
	margin: 0;
	height: auto;
}

.reference_vice_odkaz{
	text-align: center;
}

.reference_vice_odkaz a{
	display: inline-block;
	text-decoration: none;
	color: white;
	padding: 8px 11px 10px 10px;
	background: #7abb00;
	border: 1px solid #7abb00;
	border-bottom: none;
	font-size: 17px;
	font-weight: 300;
}

.reference_vice_odkaz a:hover{
	background: #6ba300;
}

.produkt_pagination{
	height: 35px;
	margin: 10px 0;
}

.produkt_pagination .strankovani-odkaz, .produkt_pagination .strankovani-sipky{
	border: 1px solid #e6e5e5;
	background: white;
	padding: 1px 5px;
	color: black;
	text-decoration: none;
      font-weight: 300;
	vertical-align: top;
	display: inline-block;
}

.produkt_pagination b{
	background: #80b800;
	border: 1px solid #80b800;
	padding: 5px 6px;
	line-height: 17px;
      display: inline-block;
	color: white;
	vertical-align: top;
	display: inline-block;
	font-size: 18px;
}

.produkt_pagination .strankovani-odkaz:hover, .produkt_pagination .strankovani-sipky:hover{
	background: #d1e240;
	border: 1px solid #b6cb00;
}

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

.reference_col_container.detail .reference_box{
	margin: 0;
	border: none;
	width: 100%;
	padding: 0;
	position: relative;
    	padding-bottom: 65px;
}

.reference_col_container.detail .reference_box > h3{
	clear: both;
}


.reference_col_container.detail .reference_big{
	float: left;
	margin-bottom: 10px;
	margin-right: 3%;
}

.reference_col_container.detail .reference_big a{
	display: block;
	width: 100%;
	margin: 0;
	position: relative;
	width: 300px;	
	height: 300px;
	background: #f2f2f2;
	border: 5px solid #f2f2f2;
}
.reference_col_container.detail .reference_big a:hover{
	border: 5px solid #85b700;
}
#main_content .reference_col_container.detail .reference_big a img,
#main_content .reference_col_container.detail .reference_big a:hover img{
	border: none !important;
}

#main_content .reference_col_container.detail .reference_big img{
	max-width: calc(100% - 10px);
	margin: auto;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.reference_col_container.detail .reference_text{
	width: 100%;
	text-align: justify;
	margin-bottom: 10px;
}

.reference_col_container.detail .reference_text div{
    font-size: 17px;
    font-weight: 300;
}

.reference_col_container.detail .reference_text ul{
	display: inline;
}

.reference_col_container.detail .reference_text ul li{
	list-style-position: inside;
	display: inline-block;
}

.reference_col_container.detail .reference_text h3,
.reference_col_container.detail .reference_text p,
.reference_col_container.detail .reference_text ul,
.reference_col_container.detail .reference_text ul li{
	/*float: left !important;
	clear: right;*/
}

.reference_col_container.detail .reference_text h3{
	clear: none;
}

.reference_col_container.detail .reference_galerie{
	position: relative;
	width: 96%;
	padding: 2%;
	overflow: auto;
	background: white;
-webkit-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
	text-align: left;
}

.reference_col_container.detail .reference_img a{
	width: auto;
	max-width: calc(100% - 6px);
	max-height: calc(100% - 6px);
	display: inline-block;
	float: left;	
	border: 3px solid white;
	margin-bottom: 20px;
	text-align:center;
}

.reference_col_container.detail .reference_img a:hover{
	
}

.reference_col_container.detail .reference_img a:nth-of-type(3n+1){
	margin: 0 10px;
	margin-bottom: 3px;
}

#main_content .reference_col_container.detail .reference_img img{
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
}
.products-not-found{
	display: none;
}


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

.breadcrumb{
	margin-bottom: 0;
	padding: 0;
}
.breadcrumb *{
	color: #3C3C3C;
	font-size: 15px;
}
.breadcrumb a{
	text-decoration: underline;
}
.breadcrumb a:hover{
	text-decoration: none;
}
.drobeckova-navigace-sipky{
	display: inline-block;
	margin: 0 10px;
}

/***************************/
/*  AKTUALITY
/***************************/
.aktuality_col_container {
  width: auto;
  height: auto;
}
.aktuality_col_container .aktuality_box {
  width: 23%;
  margin-right: 1.5%;
	background: white;
  height: auto;
  margin-top: 10px;
  padding-bottom: 10px;
	display: inline-block;
	border: 1px solid #e3e2e2;
	position: relative;
	margin-bottom: 30px;
	vertical-align: top;
}
.aktuality_col_container .aktuality_box:hover{
	border:1px solid #7abb00;
}
.aktuality_col_container .aktuality_date {
  font-size: 8pt;
  color: #000000;
  display: none;
}
.aktuality_col_container .aktuality_name {
  padding: 4px 10px;
	text-align: center;
      height: 4.8em;
	font-size: 15px;
	display: table;
    	width: calc(100% - 20px);
    	vertical-align: middle;
    	overflow: hidden;
}
.aktuality_col_container .aktuality_name a,
.aktuality_col_container .aktuality_name a:visited {
  font-size: 13pt;
  color: black;
	text-decoration: none;
	vertical-align: middle;
    	display: table-cell;
}
.aktuality_col_container .aktuality_name a:hover {
  color: black;
  text-decoration: underline;
}

.aktuality_col_container .aktuality_text {
  	text-align: center;
	padding: 4px 10px;
	height: 5.5em;
    	margin-bottom: 1em;
	overflow: hidden;
}
.aktuality_col_container .aktuality_datum{
	margin-bottom: 15px;
}
.aktuality_col_container .aktuality_datum p{
	text-align: center;
	font-weight: bold;
	font-size: 13px;
}
.aktuality_col_container .aktuality_text a,
.aktuality_col_container .aktuality_text a:visited {
  color: #028C3E;
  text-decoration: underline;
}
.aktuality_col_container .aktuality_text a:hover {
  color: black;
  text-decoration: none;
}

#main_content .aktuality_col_container .aktuality_img{
	text-align: center;	
}
#main_content .aktuality_col_container .aktuality_img a{
	height: 150px;
	width: 100%;
	position: relative;
	display: block;
}

#main_content .aktuality_col_container .aktuality_img img {
	margin: auto;
	border: none !important;
  	width: auto;
    	max-height: 150px;
    	height: auto;
    	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.aktuality_col_container .aktuality_vice_odkaz {
}

.aktuality_col_container .aktuality_vice_odkaz a{
	position: absolute;
    	left: 0;
    	right: 0;
	bottom: -20px;
    	margin-left: auto;
    	margin-right: auto;
	display: inline-block;
	vertical-align: bottom;
	width: 140px;
    	text-align: center;
	padding: 6px 9px;
	border: 1px solid #7abb00;
	background: #7abb00;
	color: white;
	text-decoration: none;
      font-size: 18px;
	font-weight: 300;
}

.aktuality_col_container .aktuality_vice_odkaz a:hover{
	background: #6ba300
}

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

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

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

/**************
FOTOGALERIE
*****************/

.dalsiObrazky{
	padding: 0 4px;
	margin-top: 15px;
}
#dalsiObrazkyThumbs{
	background-color: white;
    	border-radius: 3px;
	padding: 0 40px;
	-webkit-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.1);
}
#dalsiObrazkyThumbs a{
	outline: none !important;
}
.slick-prev, .slick-next{
	z-index: 100;
	color: transparent;
	height: 50px;
}
.slick-prev{
	left: 10px;
}
.slick-next{
	right: 10px;
}	
.slick-prev:before, .slick-next:before{
	color: black;
	font-size: 50px;
}
.slick-prev:hover:before, .slick-next:hover:before{
	color: #7abb00;
}
.slick-prev:before {
    	content: '\2039';
}
.slick-next:before {
    	content: '\203A';
}

#galerie-thumbs {
	margin-top: 15px;
    background-color: white;
    border-radius: 3px;
	-webkit-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.3);
box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.1);
    width: 98%;
    padding: 1% 1%;
    height: auto;
    overflow-x: scroll;
}

#main_content table.galerie-slozky{
	border: none;
}

.galerie-slozky + .galerie_container{
	display: none;
}

#main_content .galerie-slozky tr{
	display: inline;
}

#main_content .galerie-slozky tr td{
	display: inline-block;
	border: none;
}

#main_content .galerie_nahledy td{
	padding: 0;
	box-shadow: none;
	    display: table;
}	

.galerie_slozka{
	text-align: center;
	position: relative;
	width: 298px;
	height: 206px;
}

.galerie_slozka a{
	position: relative;
	display: block;
	height: calc(100% - 8px);
	width: calc(100% - 8px);
}

.galerie_slozka a .fotka{	
	position: absolute;
    	top: 0;
    	right: 0;
    	bottom: 0;
    	left: 0;
    	margin: auto;
    	display: table;
    	width: 100%;
}

.galerie_slozka a .fotka div{
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.galerie_slozka .fotka img{
	/*position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto !important;
	height: auto !important;
	margin: auto !important;*/
	border: none;
    max-height: 195px;
    width: auto;
	max-width: 288px;
}

.galerie_slozka a{
	border: 4px solid white;
	background: white;
}

.galerie_slozka:hover a{
	border: 4px solid #85b700;
}

.galerie_slozka:hover a:before {
    content: '';
    display: block;
    background: rgba(12, 12, 12, 0.5) url(/files/images/lupa.png) no-repeat;
    width: 100%;
    background-position: center center;
    height: 100%;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
}

.galerie_slozka .img_caption{
	display: block;
	position: absolute;
	bottom: 2px;
    	left: 0;
    	right: 0;
	color: white;
	padding: 15px;
	text-align: center;
	background: url(/files/images/foto_bcg.png) repeat left top;
	font-size: 16px;
	margin: 0;
}

.galerie_container tr{
	display: inline-flex;
}

.galerie_container td{
	border: 3px solid #ead5b6;
      box-shadow: 0px 0px 2px 2px #c7b49c;
	margin: 0 5px;
}

.galerie_fotka, .galerie_fotka_uvodni{
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

.galerie_fotka .velke{
	display: none;
}

.galerie_fotka .velke.activ{
	display: block;
}

.galerie_fotka .velke.activ a{
	display: block;
}

.galerie_fotka .velke.activ a img{
	margin: 0 !important;
	/*width: calc(100% - 10px);*/
} 

#main_content .thumbs img, #main_content .thumbs img:hover{
	cursor: pointer;
	border: 5px solid white;
	width: auto !important;
    	height: auto !important;
	margin: 0 !important;
	max-width: initial;
}

div.galerie_container table.galerie_table .thumbs:hover{
	border: 3px solid #853d01;
}

div.galerie_fotka img, div.galerie_fotka img:hover, div.galerie_fotka_uvodni img, div.galerie_fotka_uvodni img:hover{
	border: none;
      box-shadow: none;
}

.galerie_container::-webkit-scrollbar
{
  width: 25px;  /* for vertical scrollbars */
  height: 25px; /* for horizontal scrollbars */
  border: 5px solid white;
  border-radius: 3px;
}

.galerie_container::-webkit-scrollbar-track{
  background: white;
  border-radius: 3px;
}

.galerie_container::-webkit-scrollbar-thumb{
  background: #d4d4d4;
  border-radius: 3px;
}

/*************
SLIDESHOW AKTUALITY
**************/

#aktuality_slide .aktuality_name,
#aktuality_slide .aktuality_date,
#aktuality_slide .aktuality_text{
	width: 50%;
	float: left;
}
#aktuality_slide .aktuality_text{
    height: 6em;
    overflow: hidden;
}

#aktuality_slide .aktuality_name {
    height: 4em;
    overflow: hidden;
    margin-bottom: 10px;
font-size: 18px;
}

#aktuality_slide .aktuality_name a{
	color: black;
	font-size: 18px;
	text-decoration: none;
	font-weight: bold;
}

#aktuality_slide .aktuality_name a:hover{
	text-decoration: underline;
}

#aktuality_slide .aktuality_date{
	color: black;
	font-size: 15px;
}

#aktuality_slide .aktuality_text p{
	color: black;
	font-size: 18px;
}

#aktuality_slide .aktuality_img{
	float: right;
	width: 45%;
}

#aktuality_slide .aktuality_img img{
	border: 3px solid #a0dd00;
	max-width: 92%;
}

#aktuality_slide .aktuality_vice_odkaz{
	clear: both;
	margin-top: 10px;
}

#aktuality_slide .aktuality_vice_odkaz a{
	background: url(/files/images/odr_white.png) no-repeat left center;
	padding-left: 20px;
	color: black;
	font-size: 18px;
}

#aktuality_slide .slidesjs-pagination{
	padding: 0;
	margin: 0;
	position: absolute;
	left: 50%;
    	bottom: 40px;
	z-index: 100;
}

#aktuality_slide .slidesjs-pagination li{
	display: inline-block;
	margin-left: 5px;
	background: none;
	padding-left: 0;
}
	
#aktuality_slide .slidesjs-pagination li a{
	display: block;
	color: #4a4a47;
	text-decoration: none;
	font-weight: bold;
	line-height: 34px;
	height: 35px;
	width: 35px;
	background: url(/files/images/act_button.png) no-repeat center center;
	font-size: 15px;
	margin: 0 2px;
}

#aktuality_slide .slidesjs-pagination li a.active, #aktuality_slide .slidesjs-pagination li a:hover{
	background: url(/files/images/act_button_hover.png) no-repeat center center;
	color: white;
}

#mobile_open, #mobile_close {
    	display: none;
	color: transparent;
	height: 0;
}

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

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

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

#hornimenu1 {
    text-align: center;
}

.form_content fieldset{
	margin-right: 3%;
	margin-bottom: 15px;
}


.form_content fieldset p input, .form_content fieldset p textarea{
	width: 96%;
	padding: 5px 2%;
}

#menu_top{
	height: auto;
}

.ddmx .ddmxlileftsel, .ddmx .ddmxlileft{
	float: none;
	display: inline-block;
	position: relative;
}

figcaption{
	font-size: 20px;
}

.form_content #form_info{
	padding-left: 0;
}

#aktuality_slide .slidesjs-container{
	min-height: 275px;
	height: auto !important;
}

#aktuality_slide .aktuality_img img{
	    max-width: 88%;
}

.aktuality_col_container .aktuality_name {
    height: 5.5em;
}

.reference_box{
	width: 27%;
	padding: 2%;	
}

.reference_box:nth-of-type(3n+1) {
    margin: 0 0;
	margin-bottom: 10px;
}

.reference_box:nth-of-type(2n+1) {
    margin: 0 1%;
	margin-bottom: 10px;
}

.reference_col_container.detail .reference_galerie{
	overflow: auto;
}

.aktuality_col_container .aktuality_box{
	width: 30%;
}
}

@media screen and (max-width: 1380px){
p.nadpis{
	font-size: 35px;
}
}

@media screen and (max-width: 1200px){
#header .col-md-auto{
	flex-basis: 100%;
	max-width: 100%;
	justify-content: center !important;
	text-align: center;
}
p.nadpis{
	max-width: 100%;
	margin: 6px 0;
}
#menu_top{
	padding: 5px 0;
}
.navbar-inner {
    width: 100%;
}
.navbar {
	height: auto;
}
.navbar-toggler {
    	display: block !important;
    	color: white;
	font-size: 25px;
   	vertical-align: middle;
    	outline: none !important;
    	line-height: 25px;
	width: 100%;
}
.navbar-toggler-icon {
    	font-size: 25px;
    	height: auto;
    	vertical-align: initial;
	margin-bottom: 0;
	color: white;
}
.navbar-collapse.collapse:not(.show) {
    display: none;
    height: auto;
}
.nav li.lvl-1 {
    display: block;
    text-align: center;
}
.nav li.lvl-1 a {
    display: block;
}
.nav li.lvl-1:last-of-type{
	padding-left: 0;
}
.nav li.lvl-1:last-of-type a:before{
	display: none;
}
.dropdown-toggle::before{
	display: none;
}
	
}
@media screen and (max-width: 1000px){
#header .col-md-3{
	flex: initial;
	max-width: 100%;
	display: inline-block;
}
#header{
	text-align: center;
}
#kontakt{
	float: none;
	display: inline-block;
	text-align: center;
}
#kontakt .col, #kontakt .col button{
	padding-left: 5px;
	padding-right: 5px;
}
p.nadpis{
	max-width: 100%;
}
}

@media screen and (max-width: 900px){
.caption p {
    font-size: 22px;
}
#banners{
	display: block;
}
.cols, .cols.mapa{
	display: block;
}
#menu_bottom{
	text-align: center;
}
.col{
    	width: 100% !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	float: none !important;
}
.cols.mapa .row {
    width: auto;
}
#main_content .cols .col.white{
	width: calc(100% - 32px) !important;
}
#footer .col.left, #footer .col.right{
	text-align: center;
}
#footer .row{
	flex-flow: column-reverse;
}
.fcb_box{
	margin-bottom: 15px;
}
}

@media screen and (max-width: 800px){
.form_content fieldset, #form_map{
	margin-right: 0;
	width: 100%;
	margin-bottom: 15px;
}
#kontakt button{
	white-space: normal;
}
#kontakt .dotaz{
	padding-right: 0;
	background: transparent;
}
#kontakt .formButton{
	margin: 0;
}
h1.cent{
	text-align: center !important;
}
#kontakt .links{
	display: block;
}	
#kontakt .links{
	display: block;
	text-align: center;
}
#kontakt .links p{
	display: inline-block;
}
#kontakt .links a, #kontakt .links a:hover{
	overflow: hidden;
    	content: '';
    	color: transparent;
    	height: 25px;
    	width: 25px;
	display: inline-block;
}
#kontakt .links i{
	display: none;
}
#kontakt .links a:before{
    	font-weight: 900;
    	font-family: "Font Awesome 5 Free";
    	display: inline-block;
    	font-size: 20px;
    	vertical-align: middle;
    	margin-top: 4px;
    	margin-right: 6px;
	color: black;
}
#kontakt .links .tel a:before{
	content: '\f095';
}
#kontakt .links .mail a:before{
	content: '\f2b6';
	font-weight: normal;
}
#kontakt .links a:hover:before{
	color: #fe7201;
}

}

@media screen and (max-width: 720px){
#header{
	display: block;
    	flex-direction: initial;
    	justify-content: initial;
}
#logo {
    	width: 96%;
    	margin: 0 2%;
    	background-position: top center;
    	padding-left: 0;
}
#odkaz_na_uvod{
	width: 100%;
	margin-right: 0;
	text-align: center;
	background-position: center center;
}
#kontakt{
	float: none;
	text-align: center;
	width: 100%;
	margin-top: 0;
}
#nadpis{
	width: 100%;
}
p.nadpis{

}
ul.slidesjs-pagination {
    bottom: 0;
    margin-bottom: 0;
}
.banner .ban_img:before, .banner .ban_img:after{
	bottom: 10px;
}

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

#logo p{
	text-align: center;
}

.banner{
	width: 60%;
	margin-bottom: 10px;
}

#main_content .banner .ban_img img{
	width: 100%;
	max-width: 100%;
	display: inline-block;
}
.banner a:before, .banner a:after{
	
}

#nadpatickou .text, #nadpatickou .text.half, #map_other{
	width: 100%;
}

.box.right{
	float: none;
	width: 100%;
	padding: 10px 0;
}

.form_content fieldset{
	width: 100%;
	margin-right: 0;
}

.form_content #form_info{
	display: block;
	padding-top: 0;
	width: auto;
}

#form_main div.col {
    width: 100%;
}

div.box, div.box:nth-of-type(2){
	width: 92%;
	float: none;
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}

#aktuality_slide .slidesjs-container{
	min-height: 240px;
}

#aktuality_slide .slidesjs-pagination{
	position: relative;
	right: auto;
	bottom: auto;
}

.aktuality_col_container .aktuality_box{
	width: 47%;
}

#main_content .galerie-slozky tr td, .galerie_slozka{
	padding: 0;
}

.reference_box{
	width: 80%;
    margin: 0 auto;
	margin-bottom: 20px;
	display: block;
}

.reference_box:nth-of-type(3n+1),.reference_box:nth-of-type(2n+1) {
    margin: 0 auto;
	margin-bottom: 20px;
}

.reference_vice_odkaz a{
	    margin-bottom: -2%;
}

.reference_col_container.detail .reference_big, .reference_col_container.detail .reference_text{
	width: 100%;
	float: none;
}

.reference_col_container.detail .reference_text{
	width: 96%;
}

#main_content .reference_col_container.detail .reference_big a{
	max-width: 98%;
}

.reference_col_container.detail .reference_img a{
	max-width: 100%;
}

#main_content .reference_col_container.detail .reference_img img{
	margin: 0;
}

.reference_col_container.detail .reference_img a:nth-of-type(3n+1){
	margin-bottom: 20px;
}

#main_content img{
	height: auto !important;
	width: auto !important;
}

#main_content .reference_col_container.detail .reference_big img {
    width: calc(100% - 10px) !important;
    margin: 0;
    height: auto;
}

#main_content a[rel="lightbox[all]"]{
	max-width: 94%;
}

div.kontakt, iframe{
	width: 100% !important;
}
#intro {
    overflow: hidden;
}
.caption{
	bottom: auto;
	top: 0;   
}
.caption p{
	font-size: 15px;
}

}

@media (min-width: 576px){
#mobile_open, #mobile_close {
    max-width: 540px;
}
}
@media (min-width: 768px){
#mobile_open, #mobile_close {
    max-width: 720px;
}
}

@media screen and (max-width: 480px){
.caption{
	display: none;
}
}


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

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

div.modal-header {
	border-radius: 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2ab8fa+0,2a83fa+100 */
	background: #2ab8fa; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJhYjhmYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyYTgzZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #2ab8fa 0%, #2a83fa 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2ab8fa), color-stop(100%,#2a83fa)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top, #2ab8fa 0%,#2a83fa 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top, #2ab8fa 0%,#2a83fa 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top, #2ab8fa 0%,#2a83fa 100%); /* IE10 preview */
	background: linear-gradient(to bottom, #2ab8fa 0%,#2a83fa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ab8fa', endColorstr='#2a83fa',GradientType=0 ); /* IE6-8 */
}

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

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

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

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

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

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

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

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#6bc2ff+0,01a0ea+100 */
	background: #6bc2ff; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZiYzJmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMWEwZWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #6bc2ff 0%, #01a0ea 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6bc2ff), color-stop(100%,#01a0ea)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top, #6bc2ff 0%,#01a0ea 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top, #6bc2ff 0%,#01a0ea 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top, #6bc2ff 0%,#01a0ea 100%); /* IE10 preview */
	background: linear-gradient(to bottom, #6bc2ff 0%,#01a0ea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6bc2ff', endColorstr='#01a0ea',GradientType=0 ); /* IE6-8 */
	-webkit-box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
	-moz-box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
	box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
}


.modal-dialog .btn-primary:hover{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2aa1fa+0,2a82fa+100 */
	background: #2aa1fa; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJhYTFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyYTgyZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #2aa1fa 0%, #2a82fa 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2aa1fa), color-stop(100%,#2a82fa)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top, #2aa1fa 0%,#2a82fa 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top, #2aa1fa 0%,#2a82fa 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top, #2aa1fa 0%,#2a82fa 100%); /* IE10 preview */
	background: linear-gradient(to bottom, #2aa1fa 0%,#2a82fa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2aa1fa', endColorstr='#2a82fa',GradientType=0 ); /* IE6-8 */	
}


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

.invalid-feedback, .form-text, small, .small {
    font-size: 15px;
}
.modal small a{
	font-size: 15px;
    	font-weight: normal;
}
.modal small a:hover{
	text-decoration: none !important;
}







