@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: FontWebContent;
    src: url(../fonts/variable/Raleway-VariableFont_wght.ttf);
}

@font-face {
    font-family: FontWebContentItalic;
    src: url(../fonts/variable/Raleway-Italic-VariableFont_wght.ttf);
}

body {
	font-family: FontWebContent, serif;
	font-weight: 400; 
	color: #111;
	-webkit-font-smoothing: antialiased; 
	margin: 0;
	padding: 0;
	background-color: #fff;
	font-size: 120%;
}

i {font-family: FontWebContentItalic, sans-serif;}
b, strong {font-weight: 600;}

div, input, textarea, p, h1, h2, h3 {box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;}

a {text-decoration: none; color: #e6332a;}
a:hover {color: #777;}

h1, h2, h3, h4 {font-weight: 400; line-height: 150%;}

input[type=checkbox]{ width: 18px; height: 18px;}
input[type=radio]{ width: 18px; height: 18px;}
input[type=button]{ background-color: #f5eee5; border: solid 1px #010101; color: #010101; transition: 0.3s;}
input[type=button]:hover { background-color: #010101; color: #f5eee5; border: solid 1px #f5eee5; transition: 0.3s;}
input[type=submit]{ padding: 10px 20px; font-size: 18px; background-color: #00375D; border: solid 1px #fff; color: #fff; transition: 0.3s;}
input[type=submit]:hover { border: solid 1px #f5eee5; background-color: #010101; cursor: pointer; color: #f5eee5; transition: 0.3s;}
input[type=reset]{ padding: 10px 20px; font-size: 18px; margin-left: 20px; background-color: #aaa; border: solid 1px #fff; color: #fff;}
input[type=reset]:hover { border: solid 1px #aaa; cursor: pointer; color: #333;}
input[type=text]{ padding: 10px; font-size: 18px; border: solid 1px #999; width: 100%;}
input[type=date]{ padding: 10px; font-size: 18px; height: 48px; border: solid 1px #999; width: 100%;}
input[type=password]{ padding: 10px; font-size: 18px; border: solid 1px #999; width: 100%;}
select{ padding: 10px; font-size: 18px; border: solid 1px #ccc; color: #555;}
textarea { padding: 5px; font-size: 18px; min-height: 160px; border: solid 1px #999; margin-bottom: 15px; width: 100%;}


/*general settings*/
.clear {clear: both;}
.general-width {max-width: 1000px; margin: auto; padding: 0 20px;}
.padding-bottom-30 {padding-bottom: 30px;}
.padding-30-0 { padding: 30px 0;}
.hidden {display: none;}
.required {color: #F37021; font-size: 18px;}
.clickable {cursor: pointer;}
.clickable:hover {color: #F37021;}
.page-width-50 {float: left; width: 50%; padding-right: 15px;}
@media only screen and (max-width: 800px) { 
	.page-width-50 {float: none; width: 100%; padding-right: 0px;} 
}

/*.page-wrapper {overflow: auto; border-top: 100px solid #fff;}*/
.dark { background-color: #2b2b2b; color: #fff;}
.page {padding-top: 30px;}
.top-delimeter {height: 120px;}

.button-holder {margin: 20px 0;}
.button {padding: 10px 20px; font-size: 20px; color: #fff; background-color: #00375D; border-radius: 10px; transition: 0.5s;}
.button:hover {cursor: pointer; background-color: #005B9B;}

/*page pop-up overlay*/
.overlay {
	opacity: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
	height: 0;
    overflow: auto;
    background-color: rgba(0,0,0,0.70);
	transition: all ease 1s, height 0s;
}

.box-content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  max-width: 80vw;
  overflow: auto;
}

.box-content {
	text-align: left;
    background-color: #fff;
    padding: 20px;

}

.close {
    color: #d2461b;
    position: absolute;
	right: 0; top: 0;
    font-size: 28px;
    font-weight: bold;
	margin: 7px 15px;
}

.close:hover {
    color: #c00;
    cursor: pointer;
}

/* HOMEPAGE */
.homepage-tiles {text-align: center; margin: 0 -15px 0 -15px; }
.homepage-tile {width: calc(33% - 20px); margin: 10px; display: inline-block; transition: 0.5s;}
.homepage-tile:hover {background-color: #eee; cursor: pointer;     
	}

.homepage-tile-image {width: 100%; display: inline-block; background-position: center center; background-repeat: no-repeat; background-size: cover; position: relative;}

.homepage-tile-image:before {
	content: "";
	float: left;
	padding-top: 100%; 	/* initial ratio of 1:1*/
	}

.border-over {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  outline: 1px solid white;
  outline-offset: -8px;	
  opacity: 0;
  transition: 0.5s;
}

.border-over:hover {
  outline: 1px solid white;
  outline-offset: -8px;
  background-color: hsla(0,0%,0%,0.20);
  opacity: 1;
  
}

.homepage-tile-name {width: 100%; font-size: 20px; padding: 15px 10px 20px 10px;}


/* ARTICLES */
.article-holder {overflow: hidden;}
.article-content {line-height: 150%;}
.article-click-header {cursor: pointer; display: block; border-top: solid 1px #f5eee5; padding: 20px 0 20px 65px; margin: 0 15px;}
.article-click-header h2 {margin: 0;}
.plus {background: url("../images/ico-plus-gray-50.png") center left no-repeat;}
.minus {background: url("../images/ico-minus-gray-50.png") left no-repeat;}
/*.article-delimeter {border-bottom: 1px solid #ccc; height: 1px;}*/
h1.article-name { margin: 40px 0px 20px 0;}
.plus .article-name {margin-top: 0px;}

.share {margin: 40px auto 30px auto;}
.share-title {font-size: 130%;}
.share-link {color: #999;}
.share-link:hover {cursor: pointer; color: #ccc;}

.article-list {text-align: center;}
.article-item-link {width: calc(33.33% - 20px); min-width: 300px; float: left; margin: 10px; cursor: pointer; font-size: 20px;}
@media only screen and (max-width: 1050px) { .article-item-link { width: calc(50% - 20px);}}
@media only screen and (max-width: 700px) { .article-item-link { width: calc(100% - 20px);}}
.article-item-link:hover {color: #36A9E1;}
.article-item-link:hover .border-over { 
  outline: 1px solid white;
  outline-offset: -8px;
  background-color: hsla(0,0%,0%,0.20);
  opacity: 1;}


.article-item-image {width: 100%; float: left; background-size: cover; background-repeat: no-repeat; position: relative;}
.article-item-image:before {
	content: "";
	float: left;
	padding-top: 60%; 	/* initial ratio of 1:1*/
}

.article-item-name {width: 100%; text-align: center; padding: 20px;}


.video-wrapper {    
	width: 100%;
    height: auto;
	min-height: 300px;
    overflow: hidden;
    position: relative;
}
.video-overlay {max-width: 1300px; padding: 20px 0 20px 0; height: 100%; margin: 40px auto;}
.video-overlay h1 {margin-top: 10px;}

.video-wrapper .bg-video {
    width: 100%; /* width needs to be set to 100% */
    height: 100%; /* height needs to be set to 100% */
    position: absolute;
	object-fit: cover;
    left: 0;
    top: 0;
    z-index: -1;
	}

.video-wrapper .bg-image {
    width: 100%; /* width needs to be set to 100% */
    height: 100%; /* height needs to be set to 100% */
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	}


/*form*/
.form {}
.confirm-checkbox {margin: 10px 0 20px 0;}

.under .text {width: 50%;}
.under .textarea {width: 50%;}
.under .textarea textarea {width: calc(100%);}

.side .text { width: calc(40% - 10px); }
.side .textarea {width: calc(60% - 10px); float: right;}
@media only screen and (max-width: 800px) { 
.side .text { width: 100%; }
.side .textarea {width: 100%; float: none;}	
}


.breadcrumb-nav {color: #999; text-align: right; margin: 15px auto 10px auto;}
.breadcrumb-nav span.click {color: #333;}
.breadcrumb-nav span.click:hover {cursor: pointer; color: #000;}

.header-wrapper {}
.header {}

.logo-top {float: left; background-repeat: no-repeat; text-align: center;}
.logo-top .logo {max-width: 220px; width: 100%; margin-top: 5px; height: auto; cursor: pointer; transition: 0.5s;}
.logo-top .logo-small {display: none;}

@media only screen and (max-width: 800px) {
	.logo-top { padding-left: 0px; }
}

@media only screen and (max-width: 400px) {
	.logo-top .logo {display: none;}
	.logo-top .logo-small {display: block; cursor: pointer;}
}
@media only screen and (max-width: 500px) {
	.logo-top .logo-small {width: 170px; padding-top: 22px;}
}

.languages {width: 100%; max-width: 1300px; margin: auto; text-align: right; position: absolute; padding-right: 10px;}
.languages div {color: #CCD9E4; display: inline-block; padding: 8px 10px;}
.languages div:hover {color: #fff; cursor: pointer;}


#navbar {
	z-index: 50;

	transition: all ease-out 0.5s;
    -webkit-transition: all ease-out 0.5s;	
	
 }

/*@media only screen and (max-width: 1000px) {#navbar {  position: -webkit-sticky;
  position: sticky;
top: 0;}}*/
#navbar {  position: -webkit-sticky; position: sticky; top: 0;}

.menu-horizontal-wrapper { padding: 0; height: 100px; background: rgba(255,255,255,1); transition: 0.5s; width: 100%;
    opacity: 1;
/*	animation: menu-animation 2s ease-out forwards;*/
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
  	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
  	box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
}

/*@keyframes menu-animation {
	0% {opacity: 0; transform: translateY(-150px);}
	100% {opacity: 100%; transform: translateY(0px);}
}*/

@media only screen and (max-width: 1000px) {.menu-horizontal-wrapper {height: 100px;}}

.menu-horizontal { margin-top: 30px; text-align: right; float: right; }
@media only screen and (max-width: 1200px) {.menu-horizontal {display: none; transition: 0.5s;}}

.menu-horizontal .menu-item {display: inline-block; font-size: 21px; padding: 5px 10px; margin:5px 10px; color: #666; transition: 0.3s;}
.menu-item img {max-width: 30px; max-height: 30px;}
.menu-horizontal .menu-item:hover {cursor: pointer; color: #e6332a;  }
.menu-horizontal .active {color: #e6332a; }

.contact-ico-top { float: right; padding-top: 33px;}
.contact-ico-top img { opacity: 0.3; width: 40px; height: 40px; transition: 0.5s; }
.contact-ico-top img:hover { opacity: 1;}
@media only screen and (max-width: 1200px) {.contact-ico-top { padding-top: 30px;}}

.menu-ico-wrapper {display: none; float: right;}
@media only screen and (max-width: 1200px) {.menu-ico-wrapper {display: block; text-align: center; transition: 0.5s;}
}
.menu-ico, .phone-ico { 
	display: inline-block;
	margin: 25px 10px 10px 5px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	 }

#menu-open {background: url(../images/menu-ico.png); background-position: top; background-repeat: no-repeat;}

#menu-bar-holder {position: fixed; overflow: scroll; top: 0; transition: visibility 1s linear;
	transition:	opacity .3s linear;
	visibility: hidden;  
	opacity: 0;
	z-index: 100; width: 100%; height: 100vh; background-color: rgba(0,0,0,0.5); padding: 0px; color: #333;
	}

.menu-bar {
background-color: #fff;
}

.menu-bar .close-bar {width: 100px; height: 100px; float: right; text-align: center; cursor: pointer; padding-top: 25px;}
.menu-bar .menu-item {float: none; width: calc(100% - 100px); height: auto; text-align: left; vertical-align: middle; padding: 15px 20px;
	font-size: 20px; border-bottom: solid 1px #ccc;
	
	-webkit-transition-property:color, background; 
	-webkit-transition-duration: .3s, .3s; 
	-webkit-transition-timing-function: linear, ease-in;}

.menu-bar .menu-item {color: #222; text-decoration: none;}
.menu-bar .menu-item:hover {color: #5C5C5C; background-color: #eee; cursor: pointer;}


.top-search {float: right; text-align: right; padding: 35px 15px 10px 15px;}
@media only screen and (max-width: 700px) {.top-search {display: none;}}

.top-search-field {display:flex; max-width: 200px;}
.search-input {height: 35px; border: solid 1px #ccc !important; color: #333;}

.search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc; font-size: 14px;
  opacity: 1; /* Firefox */}
.search-input :-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #ccc; font-size: 14px;}
.search-input ::-ms-input-placeholder { /* Microsoft Edge */
color: #ccc; font-size: 14px;}

.search-button {
	text-indent: -9000px;
	height: 35px;
	width: 35px;
	background-color: #fff !important;
	position: relative; left: -5px;
	background: #fff url(/images/search-ico.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	margin-right: -5px;	}
.button-border {	border-top: solid 1px #ccc !important;
	border-right: solid 1px #ccc !important;
	border-bottom: solid 1px #ccc !important;
	border-left: none !important;}

.search-button:hover {border-left: none !important; background-color: #eee !important;}

.search-results {padding: 15px;}

.top-search-ico-link {display: none; float: right; text-align: right; padding: 35px 5px 10px 5px;}
.top-search-ico-link img {height: 35px; width: 35px; cursor: pointer;}

@media only screen and (max-width: 700px) {
	.top-search-ico-link {display: block;}
}

.search-field {margin: 30px 0;}



.images-holder {text-align: center; margin: 0 -10px;}
.image {outline: solid 1px #fff; transition: 0.3s;}
.image:hover {outline: solid 1px #999;}

.images-holder-gallery {margin: 30px -20px 40px -20px;
text-align: center;}
.type-gallery {
	position: relative;
	width: calc(20% - 20px);		/* desired width */
	display: inline-block;
	
	margin: 7px 5px; background-repeat: no-repeat; background-size: cover; background-position: center center;
}
.type-gallery:before {
	content: "";
	display: inline-block;
	padding-top: 100%; 	/* initial ratio of 1:1*/
}
@media only screen and (max-width: 1200px) {.type-gallery {width: calc(25% - 10px);}}
@media only screen and (max-width: 900px) {.type-gallery {width: calc(33% - 10px);}}
@media only screen and (max-width: 700px) {.type-gallery {width: calc(50% - 10px);}}
@media only screen and (max-width: 400px) {.type-gallery {width: calc(100% - 10px);}}

.type-tile {width: calc(33% - 20px); height: auto; display: inline-block; margin: 10px; vertical-align: middle; position: relative;}
@media only screen and (max-width: 1000px) {.type-tile {width: calc(50% - 20px);}}
@media only screen and (max-width: 600px) {.type-tile {width: calc(100% - 20px);}}
.type-tile img {width: 100%; height: auto;}
.type-tile .text {position: absolute; bottom: 5px; left: 1px; background-color: rgba(0,0,0,0.33); width: 100%; padding: 10px; color: #fff; overflow: hidden;}

.type-poster {width: 100%; height: auto; position: relative; margin: 10px 0px 30px 0;}
.type-poster img {width: 100%; height: auto; outline: 0;}
.type-poster img:hover {outline: 0; cursor: auto;}
.type-poster .text {position: absolute; bottom: 5px; left: 1px; background-color: rgba(0,0,0,0.33); width: 100%; padding: 10px; color: #fff; overflow: hidden;}

.type-background {height: 450px; background-position: center center; background-repeat: no-repeat; background-size: cover; margin-bottom: 40px;}

.carousel-image img {width: 100%; height: auto;}

.images-holder-slider {margin: -15px 0 50px 0;}
@media only screen and (max-width: 1340px) { .images-holder-slider {margin: -15px -20px 10px -20px;}}

.files-holder {margin: 10px -5px; text-align: left;}
.file {width: calc(33.33% - 10px); max-width: 700px; min-width: 300px; height: 50px; display: inline-block; margin: 5px; padding: 10px; text-align: left; border-bottom: solid 1px #f5eee5; color: #000; transition: 0.3s; font-size: 18px; font-weight: 400;}
@media only screen and (max-width: 1000px) { .file {width: calc(50% - 10px);}}
@media only screen and (max-width: 700px) { .file {width: calc(100% - 10px);}}
.file:hover {cursor: pointer; color: #000; border-bottom: solid 1px #000;}

.video-holder {text-align: center;}
.video-description {font-size: 16px; margin-bottom: 15px;}
.video {overflow:hidden; padding-bottom:56.25%; position:relative; height:0; margin-bottom: 20px;}
.video iframe{left:0; top:0; height:100%; width:100%; position:absolute;}

.map-holder {text-align: center;}
.map {width: 100%; height: 600px;}
.gpx-download {text-align: left; margin: 15px 0 15px 0;}

/*form*/
.field-input {margin-bottom: 16px;}
.confirm-checkbox { font-size: 18px; }

.footer-1-wrapper {background-color: #eee;}
.footer-1 {min-height: 100px;}
.footer-menu {width: 50%; padding: 30px 20px; float: left;}
@media only screen and (max-width: 600px) { .footer-menu {width: 100%; padding: 30px 15px 10px 15px; float: none; text-align: center;} }
.footer-menu .footer-menu-item {font-size: 18px; padding: 5px; color: #666; transition: 0.3s;}
.footer-menu .footer-menu-item:hover {cursor: pointer; color: #111;}
.social-media {width: 50%; padding: 20px 20px; text-align: right; float: right;}
@media only screen and (max-width: 600px) { .social-media {width: 100%; padding: 10px 15px 20px 15px; float: none; text-align: center;} }
.social-media .logo img {width: 40px; height: auto; margin: 10px; cursor: pointer;}
.footer-1 .center {width: 100%; text-align: center;}
.footer-1 .payment-logo {width: 50%; padding: 10px 20px; text-align: right; float: right;}
.footer-1 .payment-logo img {width: 130px; margin: 10px;}
@media only screen and (max-width: 600px) { .footer-1 .payment-logo {width: 100%; padding: 10px 15px 20px 15px; float: none; text-align: center;} }

.footer-2-wrapper {background-color: #fff;}
.footer-2 {min-height: 50px; color: #666; text-align: center; padding: 20px 15px 30px 15px; font-size: 14px;}
.footer-2 span {padding: 5px 10px;}
.footer-2 a {text-decoration: none; color: #666; transition: 0.3s;}
.footer-2 a:hover {color: #333;}

/*used in editor*/
.half-page-left { display: inline-block; padding: 15px; width: calc(50% - 15px); text-align: right; vertical-align: middle; }
.half-page-right { display: inline-block; padding: 15px;  width: calc(50% - 15px); text-align: left; vertical-align: middle; }
@media only screen and (max-width: 800px) {
	.half-page-left, .half-page-right { display: block; width: 100%; padding: 0; text-align: center;}
.content-order {display: inline-grid;}
.content-order .order-1 {order: 1;}
.content-order .order-2 {order: 2;}
}

.mediace h2 {color: #d3423d; }
.mediace-icon {float: left; height: 100%; padding-right: 40px;}
.mediace-icon img { max-width: 150px; width: 100%; height: auto; }
@media only screen and (max-width: 600px) {
.mediace-icon {float: none; padding-right: 0px; text-align: center;}	
}


.contact-left {float: left; width: 30%;}
.contact-right {float: right; width: 65%;}
@media only screen and (max-width: 700px) {
.contact-left {float: none; width: 100%;}
.contact-right {float: none; width: 100%;}
}

.image-and-text { display: flex; }
.image-left { padding: 20px 10px 0 0; }
.text-right { padding: 0 0 0 10px;}

@media only screen and (max-width: 800px) {
.image-and-text { display: block; }
.image-left { padding: 0 0 0 0; text-align: center;}
.text-right { padding: 0 0 0 0;}
}

.half-page {width: 50%; float: left; padding-right: 15px;}
@media only screen and (max-width: 800px) {
	.half-page {float: none; width: 100%; padding-right: 0px;}
}

/*homepage icon*/
.icon-holder {text-align: center; margin-top: 20px;}
.icon-box {display: inline-block; vertical-align: top;  text-align: center; max-width: 200px; padding: 15px; width: 100%; }
.icon-image img {width: 75px; height: 75px;}
.icon-box:hover .icon-text {color: #00375D;}


.obchodni-podminky ol {
  list-style-type: none;
  counter-reset: item;
  margin: 10px 0;
  padding: 0;
}

.obchodni-podminky ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
  font-weight: bold;
}

.obchodni-podminky ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;    
}

.obchodni-podminky li ol > li {
  margin: 0;
  font-weight: normal;
}

.obchodni-podminky li ol > li:before {
  content: counters(item, ".") " ";
}

.size table {border-collapse: collapse; font-size: 14px; width: 100%;}
.size table tr td {text-align: center; padding: 5px; border-top: solid 1px #ccc; border-bottom: solid 1px #ccc;}
.size table tr:first-child {background-color: #eee;}
.size table tr td:first-child {text-align: left;}

.partnerske-firmy {text-align: center;}
.partnerska-firma {display: inline-block; margin: 0 20px;}
.partnerska-firma img {transition: .5s;}
.partnerska-firma img:hover {cursor: pointer; filter: brightness(2);}

.contact-text-holder { position: absolute; right: 0; background: rgba(0,0,0,0.60); margin-top: 50px; width: 50%; min-width: 400px; height: 455px;}
.contact-text {color: #fff; font-size: 20px; width: 400px; padding: 95px 20px 20px 100px; text-align: center;}
.contact-text a {color: #e6332a;}
.contact-text a:hover {color: #777;}
.contact-map {margin: -56px -2px -5px -2px; z-index: -1px;}


/*INTRO*/
.intro-article-holder {min-height: 100vh; background-color: #fff;}
.intro-content {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.article-text {max-width: 1000px; margin: auto;}
.article-bg-color {background-color: #F2F2F7; padding: 30px 0; }
.article-bg-white {padding: 30px 0; }

.link-login-holder {position: fixed; bottom: -10px; width: 100%; z-index: 2;}
.link-login-bottom {background-color: #1d1d1d; color: #999; width: 150px; margin: auto; height: 50px; padding: 10px; text-align: center; border-radius: 10px; transition: 0.5s;}
.link-login-bottom:hover {background-color: #000; cursor: pointer;}

.login-containter {    
	max-width: 400px;
	width: 100%;
	margin: auto;
}
.login {background-color: #eee; width: 100%; padding: 20px; text-align: center; border-radius: 20px; border: 1px solid #999;}
.login input[type=text] {text-align: center;}
.login-header {margin: 20px 0 20px 0;}
.login-button {	margin: 20px 20px 20px 10px;}


.fade-in-up {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.bg-small-repeat {background-image: url('../images/bg-small-repeat.png'); }

.image-photo-height {display: none;}
@media only screen and (max-width: 700px) {
	.image-photo-width {display: none;}
	.image-photo-height {display: block; margin: auto;}
}
	
/*plugin cookie config */
.cookies-overlay {
	opacity: 0;
    position: fixed;
    z-index: 51;
    left: 0;
    top: 0;
    width: 100%; 
	height: 0;
    overflow: auto;
    background-color: rgba(0,0,0,0.70);
	transition: all ease 1s, height 0s;
}

.cookies-content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  max-width: 80vw;
  width: 600px;
  overflow: auto;
}

.cookies-content {
	text-align: left;
    background-color: #fff;
	border-radius: 30px;
}

.cookies-scroll-holder {padding: 40px 0 20px 0;}
.cookies-scroll {overflow-y: auto; max-height: calc(80vh - 190px); max-width: calc(80vw - 23px); width: 577px;}


/* width */
.cookies-scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.cookies-scroll::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 5px;
}
 
/* Handle */
.cookies-scroll::-webkit-scrollbar-thumb {
  background: #777; 
  border-radius: 5px;
}

/* Handle on hover */
.cookies-scroll::-webkit-scrollbar-thumb:hover {
  background: #333; 
}




.cookies-text {
	 padding: 0 30px 10px 30px;
}
.cookies-header {font-size: 25px; color: #00375D;}
.cookies-choices {
	padding: 0 20px 20px 20px;	
}

.cookies-choice {
	padding: 5px;
	background: #ddd;
	margin-bottom: 5px;
}

.cookies-choice input {float: left; }
.cookies-choice label {display: block; float: left; margin: 2px 0 0 5px;}

.cookies-more-info {cursor: pointer; }

.cookies-expand {float: right; cursor: pointer; font-weight: normal; font-size: 30px; line-height: 22px; color: #555;
-webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
      -o-transition: .2s ease-in-out;
     -ms-transition: .2s ease-in-out;
         transition: .2s ease-in-out;
}
.cookies-expand.rotate { transform: rotate(-90deg);}


.cookies-info {
  background: #ddd;
  width: 100%;
  max-height: 0;
  overflow: hidden;
-webkit-transition: max-height 1s ease-in-out;
    -moz-transition: max-height 1s ease-in-out;
      -o-transition: max-height 1s ease-in-out;
     -ms-transition: max-height 1s ease-in-out;
         transition: max-height 1s ease-in-out;
}
.cookies-info.show {
	max-height: 600px;
}

.cookies-info-padding { padding: 10px;}

.cookies-buttons {
	padding: 40px 20px;
	text-align: center;
	background-color: #222;
	border-radius: 0 0 25px 25px;
}

.cookies-buttons button {transition: 0.3s; padding: 10px 20px; font-size: 20px; margin: 0 10px; cursor: pointer; border-radius: 10px;}
.cookies-buttons #save-preferences {background-color: #222; color: #777; border: solid 2px #4e994d;}
.cookies-buttons #save-preferences:hover {background-color: #246e23; color: #fff; border: solid 2px #73E170;}
.cookies-buttons #accept-all {background-color: #229b20; color: #fff; border: solid 2px #4e994d;}
.cookies-buttons #accept-all:hover {background-color: #246e23; color: #fff; border: solid 2px #73E170;}

/* cookies info page */
.cookie-types-list {margin: 60px auto 40px auto;}
.cookie-type-header {font-size: 20px; background-color: #555; margin: 10px 0; padding: 10px; color: #fff;}


/*plugin booking*/
.booking-form {margin-bottom: 40px;}
.personal-inputs {margin: 25px -30px 15px 0;}
.form-one-input {min-width: calc(33% - 20px); width: calc(100% - 20px); max-width: 350px; margin-right: 20px; float: left;}
.header-form {margin: 10px 0px 25px 0; text-align: center; font-size: 20px;}
.select-room {margin: 30px 0; background-color: #F7EFDF; padding: 30px 15px; text-align: center;}
.select-room .room {display: inline-block; padding: 15px; min-width: calc(23% - 20px); width: calc(100% - 20px); max-width: 280px; margin-right: 20px; font-size: 20px; text-align: center;}
.select-room .room label {cursor: pointer;}
.certificate-data {margin-bottom: 40px; display: none;}
.send-reset-booking {margin: 40px 0; text-align: center;}


/*parallax intro*/
.parallax-mouse-move section {
	position: relative;
	width: 100%;
	height: calc(100vh + 110px);
	min-height: 500px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.article-intro .parallax-mouse-move section {height: 100vh;}

.parallax-mouse-move section .layer {
	position: absolute;
	margin: auto;
/*	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;*/

}
