@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/*
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400,800&display=swap&subset=latin-ext');	// Regular + Extra Bold
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300,700&display=swap&subset=latin-ext');	// Light + Bold
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400,700&display=swap&subset=latin-ext');		// Regular + Bold

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 1000
.dm-sans-regular {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.dm-sans-medium {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.geologica-<uniquifier> {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,	// Slant/sklon (slnt): Upraví styl ze svislého na šikmý, typografům známý také jako "šikmý" styl. Zřídka může šikmý styl fungovat i v opačném směru, což se nazývá "zpětný šikmý" nebo "obrácený šikmý" styl.
    "CRSV" 0,	// Cursive/Kurzíva (CRSV) Ovládání nahrazování kurzivních tvarů podél šikmé osy. Hodnota "Off" (0) zachovává tvary římských písmen, jako je dvoupatrové a a g, hodnota "Auto" (0,5) umožňuje nahrazení kurzívy a hodnota "On" (1) potvrzuje kurzivní tvary i ve vzpřímeném textu se sklonem 0.
    "SHRP" 0;	// Sharpness/Ostrost (SHRP): Upravuje tvary od hranatých nebo tupých výchozích tvarů (0 %) ke stále ostřejším tvarům (až do 100 %).
}
*/
* {
	margin: 0 auto;
	padding: 0;
	border: none;
	box-sizing: border-box;
	position: relative;
}
:root {
	--area-width: 100%;
	--area-margin: 0px auto;

	/* Logo colors - RGB */
	--color-black-hex: #000000;
	--color-black: rgba(0,0,0,1);
	--color-black-75: rgba(0,0,0,.75);
	--color-black-50: rgba(0,0,0,.5);
	--color-black-25: rgba(0,0,0,.25);
	--color-blueberry-hex: #433b48;
	--color-blueberry: rgba(67,59,72,1);
	--color-blueberry-75: rgba(67,59,72,.75);
	--color-blueberry-50: rgba(67,59,72,.5);
	--color-blueberry-25: rgba(67,59,72,.25);
	--color-blueberry-15: rgba(67,59,72,.15);
	--color-blueberry-05: rgba(67,59,72,.05);
	--color-vermilion-hex: #e73e1b;
	--color-vermilion: rgba(231,62,27,1);
	--color-vermilion-75: rgba(231,62,27,.75);
	--color-vermilion-50: rgba(231,62,27,.5);
	--color-vermilion-25: rgba(231,62,27,.25);
	--color-yellow-hex: #f2b708;
	--color-yellow: rgba(242,183,8,1);
	--color-yellow-75: rgba(242,183,8,.75);
	--color-yellow-50: rgba(242,183,8,.5);
	--color-yellow-25: rgba(242,183,8,.25);

	--color-white-hex: #ffffff;
	--color-white: rgba(255,255,255,1);
	--color-white-75: rgba(255,255,255,.75);
	--color-white-60: rgba(255,255,255,.6);
	--color-white-50: rgba(255,255,255,.5);
	--color-white-25: rgba(255,255,255,.25);

	--color-winered: #98234f;
	--color-darkblue: #140f2c;
	--color-violet: #98234F;

	--color-lightgray: #f3f3f4;
    --color-gray: #c6c5cc;
	--color-text: var(--color-darkblue);
	--color-link: #c40009;

	--content-width: 100%;
	--max-footer-width: 1500px;
	--cms-right-img-width: 450px;
	--text-area-max-width: 900px;
	--font-family: 'DM Sans', Arial, sans-seif;
	--map-height-ratio: calc(1200/800);
	--logos-animation-duration: 60s;
//	--data-hero-img-src: attr(data-hero-img-src);
}
html {
	overflow-x: hidden;
	overflow-y: scroll;
}
body {
	text-align: center;
	font-family: var(--font-family);
    font-optical-sizing: auto;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: var(--color-text);
}

#area {
	width: var(--area-width);
	margin: var(--area-margin);
}
#go2top {
	position: fixed;
	bottom: 50px;
	right: 0px;
	width: 40px;
	height: 40px;
	background: var(--color-winered) url('/img/arrow-up-white.svg') no-repeat 50% 50%;
	background-size: 18px 18px;
//	border: solid #ffffff 5px;
//	border-right: none;
//	-moz-box-shadow: 3px 0px 6px 0px #888888;
//	box-shadow: 3px 0px 6px 0px #888888;
//	background-color: #d72233;
	border-radius: 20px 0px 0px 20px;
	cursor: pointer;
	z-index: 999999999999;
	display: none;
}
header, main, section, footer {
	position: relative;
	width: 100%;
}
main > div {
	width: var(--content-width);
	margin: 0 auto;
}
section > div {
	width: var(--content-width);
	margin: 0 auto;
	text-align: center;
}


#topline {
	text-align: left;
	padding: 30px 25px;
	min-height: calc(2 * 30px + 40px);
}
#topline > div {
}

.show-search {
	position: absolute;
	display: block;
	top: -5px;
	right: 140px;
	width: 50px;
	height: 50px;
	background: var(--color-lightgray) url('/img/magnifier.svg') no-repeat 43% 50%;
	background-size: 70%;
	border-radius: 50%;
	z-index: 99999;
}
#show-search {
	display: none;
}
#show-search:checked ~ .show-search {
	background: var(--color-lightgray) url('/img/close.svg') no-repeat 50% 50%;
}
#searchTop > form {
	display: none;
	position: absolute;
	width: 100vw;
	top: 70px;
	left: -25px;
	padding: 10px 25px 35px 25px;
	background-color: var(--color-white);
	z-index: 110;
}
#searchTop > form > input[type=search] {
	min-width: 300px;
	width: 100%;
}

#today_open_to {
	display: none;
	align-items: center;
	float: right;
	margin: 0 30px 0 0;
	padding: 12px 0;
	font-size: 18px;
	line-height: 26px;

}
#stores_map_icon {
	position: relative;
	display: inline-block;
	float: right;
	top: -5px;
	right: 70px;
	width: 50px;
	height: 50px;
	background: var(--color-blueberry) url(/img/centre-map-icon.svg) no-repeat 50% 50%;
	background-size: 75%;
	border-radius: 50%;
}
#stores_map_btn {
	display: none;
	float: right;
	top: -2px;
}

#languages-box {
	position: relative;
	display: none;
	float: left;
	margin: 3px 0 0 80px;
	width: 95px;
	height: 44px;
	font-weight: 600;
	font-size: 14px;
	line-height: 44px;
}
#languages-box > div:first-child {
	float: left;
	margin: 0 0 0 18px;
	font-weight: 600;
}
#languages-box > div:nth-child(2) {
	position: absolute;
	right: 18px;
	font-weight: 600;
}
#languages-box input {
	opacity: 0;
	width: 0;
	height: 0;
}
@media only screen and (min-width: 950px) {
	#languages-box {
		display: block;
		display: none;
	}
}
.slider {
	position: absolute;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 36px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: solid #ccc 1px;
	border-radius: 44px;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	width: 44px;
	height: 36px;
	left: 4px;
//	right: 30px;
//	bottom: 3px;
	background-color: var(--color-blueberry);
	color: var(--color-white);
	border-radius: 36px;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
//	background-color: red;
}
input:checked + .slider:before {
	content:"CZ";
}
input:not(:checked) + .slider:before {
	content:"EN";
}
input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}
input:not(:checked) + .slider:before {
	-webkit-transform: translateX(41px);
	-ms-transform: translateX(41px);
	transform: translateX(41px);
}





.hero-image {
//	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(var(--data-hero-img-src));
//	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(attr(data-hero-img-src url));
	min-height: 480px;
	height: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hero-image > div {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.hero-image > div button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}
.hero-image > div button:hover {
  background-color: #555;
  color: white;
}



#scrolldown {
	display: inline-block;
	position: absolute;
	left: calc(((100% - 1200px) / 2) + 40px);
//	left: 0px;
	bottom: 0px;
	width: 40px;
	height: 40px;
	background-color: var(--color-white);
	border-radius: 20px 20px 0px 0px;
	z-index: 20;
	cursor: pointer;
}
#scrolldown > div {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 18px;
	top: 2px;
	background: var(--color-blueberry) url(/img/arrow-down-white.svg) no-repeat 50% 50%;
}

#bluebar {
	width: 100%;
	height: 75px;
	background-color: var(--color-darkblue);
	padding: 20px 0px;
	text-align: right;
}
#search-icon {
	position: absolute;
	display: block;
	top: 15px;
	left: 55px;
	width: 50px;
	height: 50px;
	background: transparent url('/img/icon-search.svg') no-repeat 50% 50%;
	background-size: 60%;
	z-index: 99999;
}
#logo {
	display: inline-block;
	width: 120px;
	height: 40px;
	background: transparent url('/img/santovka-logo-dark.svg') no-repeat 50% 50%;
	background-size: 100%;
	float: left;

}
#img-head {
	width: 100%;
	height: calc(100vw/(1920/250)*1.5);
    overflow: hidden;
}
#img-head > div, #img-head > a {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	-webkit-animation: head-bg 20s ease-in-out infinite;
	-moz-animation: head-bg 20s ease-in-out infinite;
	-o-animation: head-bg 20s ease-in-out infinite;
	animation: head-bg 20s ease-in-out infinite;
}
@keyframes head-bg {
	0% {
		-ms-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50% {
		-ms-transform: scale(1.05, 1.05);
		-webkit-transform: scale(1.05, 1.05);
		transform: scale(1.05, 1.05);
	}
	100% {
		-ms-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

#content {
	padding: 20px 0;
}
#content > div {
	width: var(--content-width);
	padding: 0px 20px;
	text-align: left;
}
#content p {
	margin: 0 0 10px 0;
}
#border {
	display: none;
}

h1, .h1 {
	margin: 0 0 30px 0;
	font-size: 40px;
	line-height: 48px;
	font-weight: 500;
	text-align: center;
}
h2, .h2 {
	margin: 80px 0 30px 0;
	font-size: 32px;
	line-height: 40px;
	font-weight: 500;
	text-align: center;
}
h3, .h3 {
	margin: 10px 0 20px 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}
h4, .h4 {
	margin: 10px 0 20px 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}
ul, ol {
	margin: 0 0 15px 0;
	padding: 0 0 0 20px;
}
li {
	padding: 0 0 0 10px;
}
li::marker {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.pdf-list {
	list-style-type: none;
	padding: 0 0 0 0;
}
a {
	color: var(--color-text);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a > span.fas.fa-phone {
	padding-left: 10px;
}
a > span.fas:not(span.fas.fa-phone) {
	padding-right: 10px;
}
sup {
	font-size: 75%;
}
.nobr {
	white-space: nowrap;
}

span.icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin-right: 10px;
}
span.icon.phone {
	background: transparent url('/img/icon-phone.svg') 50% 50%/100% no-repeat;
}
span.icon.map-marker {
	background: transparent url('/img/icon-map-marker.svg') 50% 50%/100% no-repeat;
}
span.icon.envelope {
	background: transparent url('/img/icon-envelope.svg') 50% 50%/100% no-repeat;
}
span.icon.download {
	background: transparent url('/img/icon-download-white.svg') 50% 50%/100% no-repeat;
}

input[type=text],
input[type=email],
input[type=search],
textarea {
	padding: 12px 15px;
	background-color: var(--color-lightgray);
	height: 50px;
	border-radius: 50px;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
}
::placeholder {
	color: var(--color-gray);
	font-family: var(--font-family);
}
input[type=search] {
	min-width: 500px;
	height: 50px;
	background-image: url("/img/magnifier.svg");
	background-repeat: no-repeat;
	background-position: 15px 50%;
	padding: 12px 15px 12px 50px;
}
input[type=search]::placeholder {
//	left: 50px;
}

.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.fleft {
	float: left;
}
.fright {
	float: right;
}
.underline {
	text-decoration: underline;
}
.width50 {
	width: 50%;
}
.h30px {
	height: 30px;
}
.ptop10 {
	padding-top: 10px!important;
}
.ptop20 {
	padding-top: 20px!important;
}
.ptop30 {
	padding-top: 30px!important;
}
.p30 {
	padding: 30px 0!important;
}
.p50 {
	padding: 50px 0!important;
}
.p60 {
	padding: 60px 0!important;
}
.mtop20 {
	margin-top: 20px!important;
}
.mtop30 {
	margin-top: 30px!important;
}
.mtop50 {
	margin-top: 50px!important;
}
.mtop60 {
	margin-top: 60px!important;
}
.mtop70 {
	margin-top: 70px!important;
}
.mtop150 {
	margin-top: 150px!important;
}
.mbot30 {
	margin-bottom: 30px!important;
}
.mbot60 {
	margin-bottom: 60px!important;
}
.m30px {
	margin: 15px 30px!important;
}
.lh150 {
	line-height: 150%;
}
.maxh30 {
	max-height: 30px;
}
.inline {
	display: inline-block;
}
.lower_roman {
	list-style-type: lower-roman;
}
.lower_alpha {
	list-style-type: lower-alpha;
}
.square {
	list-style-type: square;
}
.circle {
	list-style-type: circle;
}
.disc {
	list-style-type: disc;
}
.nowrap {
	white-space: nowrap;
}
.hidden {
	display: none;
    visibility: hidden;
}
.async-hide {
	opacity: 0 !important;
}
.back {
	display: block;
	text-align: right;
	top: -10px;
}
.button {
	display: inline-block;
	padding: 15px 24px;
	border-radius: 16px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease-out;
}
.button.blue {
	background-color: var(--color-blueberry);
	color: var(--color-white);
}
.button.winered {
	background-color: var(--color-winered)!important;
	color: var(--color-white)!important;
}

a[href$=".pdf"], .pdf {
	display: inline-block;
	background: transparent url(/img/pdf.svg) no-repeat;
	background-position: 0% 4px;
	padding: 1px 0px 1px 25px;
	text-decoration: none;
}
a[href$=".zip"], .zip {
	display: inline-block;
	background: transparent url(/img/zip.svg) no-repeat;
	background-position: 0% 4px;
	background-size: 18px;
	padding: 1px 0px 1px 25px;
	text-decoration: none;
}
a[href$=".eps"], .eps {
	display: inline-block;
	background: transparent url(/img/eps.svg) no-repeat;
	background-position: 0% 4px;
	background-size: 17px;
	padding: 1px 0px 1px 25px;
	text-decoration: none;
}
a[href$=".xls"], a[href$=".xlsx"], .xls, .xlsx {
	display: inline-block;
	background: transparent url(/img/xls.svg) no-repeat;
	background-position: 0% 4px;
	padding: 1px 0px 1px 25px;
	text-decoration: none;
	background-size: 6%;
}
a[href$=".doc"], a[href$=".docx"], .doc, .docx {
	display: inline-block;
	background: transparent url(/img/doc.svg) no-repeat;
	background-position: 0% 4px;
	padding: 1px 0px 1px 25px;
	text-decoration: none;
	background-size: 7%;
}
a.no-icon {
	background: none;
	padding: 0;
	text-decoration: underline;
}
a.no-icon:hover {
	text-decoration: none;
}
#for-download a {
	text-decoration: underline;
}
#for-download a:hover {
	text-decoration: none;
}
.bold {
	font-weight: 700;
}
.italic {
	font-style: italic;
}
.red {
	color: var(--color-logo-red)!important;
}
.violet {
	color: var(--color-violet)!important;
}
.winered {
	color: var(--color-winered)!important;
}
.note {
	font-size: 14px;
	line-height: 20px;
	opacity: 0.6;
}
/*
.yellow {
	color: var(--color-logo-yellow);
}
.blue {
	color: var(--color-logo-blue);
}
.green {
	color: var(--color-logo-green);
}
.lightgreen {
	color: var(--color-logo-lightgreen);
}
.pink {
	color: var(--color-pink);
}
*/
#program {
	padding: 40px 0 0 0;
}
.program-item {
	padding: 0 0 25px 0;
	border-bottom: dotted var(--color-border) 1px;
}
.programImg {
	font-size: 0px;
	line-height: 100%;
	float: right;
	margin: 0 0 10px 20px;
	z-index: 5;
}
.programImg:hover {
	box-shadow: 0px 2px 20px var(--color-lightgray);
}
.tickets {
	display: inline-block;
	padding: 10px 15px 8px 15px;
	line-height: 100%;
    letter-spacing: 1px;
	font-weight: bold;
	color: var(--color-white);
	background-color: var(--color-link);
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
	transition: background-color 0.3s;

}
.tickets:hover {
	background-color: var(--color-black);

}

#part-logo-yellow,
#part-logo-red,
#part-logo-green,
#part-logo-orange-blue {
	display: none;
}


/***** Search - START *****/
#searchMain {
//	text-align: center;
}
#searchMain > form {
	max-width: 500px;
	margin: 0 auto;
}
#searchMain > form > input[type=search] {
	min-width: 200px;
	width: 100%;
}
#searchResults {
	max-width: 900px;
//	margin: 0 auto;
}
#searchResults > p {
	opacity: 0.5;
}
#searchResults > div {
	border-bottom: solid var(--color-blueberry-15) 1px;
	padding: 30px 10px;
/*
	clear: both;
	margin: 0px -20px;
	padding: 20px 20px;
	background-color: transparent;
	border-radius: 2px;
*/
}
#searchResults > div:first-of-type {
	margin-top: 30px;
	border-top: solid var(--color-blueberry-15) 1px;
}
#searchResults > div:hover {
	background-color: var(--color-blueberry-05);
//	box-shadow: 0 5px 6px -6px #333333;
}
#searchResults > div > div {
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	color: var(--color-winered);
}
#searchResults > div > a {
	font-size: 18px;
	line-height: 26px;
}
#searchResults > div > p {
//	font-size: 14px;
	margin: 15px 0 10px 0;
	opacity: 0.5;
//	color: #888888;
}
#searchResults > div span {
	display: block;
	line-height: 100%;
	letter-spacing: 0.1px;
	padding: 5px 5px;
	font-size: 11px;
	font-weight: 700;
	float: right;
	color: #ffffff;
//	text-shadow: 1px 1px 1px #727272;
	/*box-shadow: 0 5px 6px -6px #333333;*/
	border-radius: 2px;
}
#searchResults > div span.obchody, .search_item span.stores {
	background-color: #74c043;
}
#searchResults > div span.akce, .search_item span.events {
	background-color: #fbad1e;
}
#searchResults > div span.web {
	background-color: #4f91cd;
	background-image: none;
}
/***** Search - END *****/

#magazine-offer > div {
	width: var(--content-width);
	margin: 0px auto -20px auto;
	padding: 40px 40px;
	height: 300px;
	overflow: hidden;
	background-color: #e7f8ff;
	text-align: center;
}
#magazine-offer > div > img:first-child {
	position: absolute;
	top: 40px;
	right: 60px;
	-ms-transform: rotate(6deg); /* IE 9 */
	-webkit-transform: rotate(6deg); /* Safari 3-8 */
	transform: rotate(6deg);
}
#magazine-offer > div > img {
	position: absolute;
	top: 0px;
	right: -20px;
	height: 100%;
	width: auto;
}
#magazine-offer > div > div {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
#magazine-offer > div > h2 {
	display: none;
	margin: 0;
	text-transform: uppercase;
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: 1px;
}
#magazine-offer > div > span {
	display: none;
	color: var(--color-pink);
}
#magazine-offer > div > p {
	display: none;
	margin-top: 20px;
}
#magazine-offer > div > a {
	position: relative;
	margin: 180px 0 0 0;
	background: var(--color-pink);
	color: var(--color-white);
	text-decoration: none;
	padding: 12px 30px 10px 30px;
	line-height: 140%;
}
#magazine-offer > div > a:hover {
	background-color: var(--color-black);
}
#magazine-offer > div > a > span {
	top: -3px;
}
#newsletter,
#newsletter2 {
//	width: var(--content-width);
	padding: 0 20px;
	text-align: center;
}
#newsletter > form {
	width: var(--content-width);
	padding: 60px 30px;
	margin: 60px auto;
	background: #8a399e;
	background-image: linear-gradient(150deg, #8a399e, #4f1962);
	border-radius: 16px;
	color: var(--color-white);
}
/*
#newsletter > form::before {
	position: absolute;
	content: "";
    rotate: 25deg;
	opacity: 0.3;
	top: -25%;
	left: -25%;
	width: 150%;
	height: 150%;
	background-image: url("/img/palacpardubice-line-thin.svg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: 0% 80%;
}
*/
#newsletter > form > h2,
#newsletter2 > form > h2 {
	font-size: 28px;
	font-weight: 500;
	line-height: 36px;
	margin: 0 0 30px 0;
}
#newsletter > form > p,
#newsletter2 > form > p {
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	padding: 0 0 30px 0;
}


#newsletter > form > input[type|=email] {
	width: 100%;
	max-width: 350px;
	border-radius: 50px;
	background-color: var(--color-white-25);
	padding: 15px 30px;
	margin: 0 0 15px 0;
}
#newsletter2 > form > input[type|=email] {
	width: 100%;
	max-width: 350px;
	height: 50px;
	padding: 12px 15px 12px 15px;
	margin: 30px 0 15px 0;
	background-color: var(--color-lightgray);
	border-radius: 50px;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	text-align: center;
}
#newsletter2 > form > input[type|=email] {
//	width: 80%;
}
#newsletter > form > input[type|=email]::placeholder,
#newsletter2 > form > input[type|=email]::placeholder {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
#newsletter > form > input[type|=submit],
#newsletter2 > form > input[type|=submit] {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	padding: 15px 24px;
	border-radius: 50px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	background-color: var(--color-blueberry);
	color: var(--color-white);
	margin: 0 0 15px 0;
	transition: all 0.3s ease-out;
}
#newsletter > form > input[type|=submit]:hover,
#newsletter2 > form > input[type|=submit]:hover {
	background-color: var(--color-black);
}
#newsletter_finish {
	margin: 0 0 50px 0;
}
#newsletter_finish input[type=email] {
	width: 80%;
	margin: 0 0 10px 0;
}
#newsletter_finish input[type=submit] {
	padding: 13px 35px;
	background-color: var(--color-pink);
	color: #ffffff;
	font-size: 14px;
}
#newsletter_finish div,
.myEmail {
	padding: 15px 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-winered);
}
#newsletter_finish #agreement {
	top: 2px;
}


#get-app,
#get-voucher {
	margin: 80px 0 0 0;
	padding: 0 20px;
}
#get-app img,
#get-voucher img {
	width: 100%;
	max-width: 330px;
	height: auto;
	border-radius: 16px;
}



b, strong, .bold {
	font-weight: 700;
}


.clear {
	clear: both;
}
.clearleft {
	clear: left;
}
.clearright {
	clear: right;
}
.upper {
	text-transform: uppercase;
}
.hide {
	display: none!important;
}
.hide-cat {
	display: none!important;
}
.vtop {
	vertical-align: top;
}
.top0 {
	top: 0px!important;
}
.top5 {
	top: 5px!important;
}
.top10 {
	top: 10px!important;
}
.mtop40 {
	margin-top: 40px;
}
.lpad20 {
	padding-left: 20px;
}
.part {
	height: 0px;
	border-bottom: dotted var(--color-border) 1px;
	padding: 0 0 50px 0;
	margin: 0 0 50px 0;
}
.red {
	color: var(--color-logo-red);
}
.underline {
	text-decoration: underline!important;
}
#cms {
	max-width: var(--text-area-max-width);
	margin: 0 auto;
	text-align: center;
}
@media only screen and (min-width: 800px) {
	#cms .slim {
		max-width: 700px;
		margin: 0 auto 50px auto;
	}
}

.hideblock {
	text-align: left;
	padding: 50px 0 35px 0;
	border-bottom: solid #e3dde8 1px;
}
.hideblock:first-of-type {
	border-top: solid #e3dde8 1px;
}
p[data-for^=p-],
#cms table.except th[data-for^=tb-] {
	font-size: 20px;
	line-height: 28px;
	cursor: pointer;
	padding: 0 20px 0 0;
}
p[data-for^=p-].openp,
#cms table.except th[data-for^=tb-].openp {
	color: var(--color-winered);
}
p[data-for^=p-]::before,
#cms table.except th[data-for^=tb-]::before {
	content: "";
	position: absolute;
	width: 22px;
	height: 22px;
	top: 0%;
	right: 0%;
	z-index: -1;
	background: transparent url(/img/arrow-winered.svg) no-repeat 50% 50%;
	background-size: cover;
	transform: rotate(0deg);
	transition: all 0.5s ease-out;
}
p[data-for^=p-].openp::before,
#cms table.except th[data-for^=tb-].openp::before {
	background: transparent url(/img/close-winered.svg) no-repeat 50% 50%;
	background-size: cover;
	color: var(--color-winered);
}
#cms table.except tbody[id^=tb-] {
	display: none;
}
#cms table.except td[colspan=3] {
	padding: 0;
}


#cms > #opening-hours {
	display: flex;
	flex-flow: row wrap;
	align-content: flex-start;
}
#cms > #opening-hours > div {
	display: flex;
	flex-flow: column nowrap;
	align-content: center;
	justify-content: center;
	background-position: 50% 50%;
	background-size: cover;
	color: var(--color-white);
	-webkit-flex: 0 0 100%;
	-moz-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	min-height: 150px;
	margin: 5px 0;
	border-radius: 16px;
}
#cms > #opening-hours > div#galerie {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/galerie.jpg");
}
#cms > #opening-hours > div#obchody {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/obchody.jpg");
}
#cms > #opening-hours > div#foodcourt {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/foodcourt.jpg");
}
#cms > #opening-hours > div#cinemacity {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/cinemacity.jpg");
}
#cms > #opening-hours > div#tesco {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/tesco.jpg");
}
#cms > #opening-hours > div#svatky {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/palac-pardubice.jpg");
}
#cms > #opening-hours > div h3,
#cms > #departments > div h3 {
	font-size: 24px;
	line-height: 32px;
	margin: 0 0 10px 0;
}
#cms > #opening-hours > div a {
	color: var(--color-white);
}


.job p[data-for^=p-] {
	padding: 0 0 0 160px;
}
.job p[data-for^=p-] a {
	position: absolute;
	display: inline-block;
	top: -38px;
	left: 0;
    pointer-events: none;
}
.job p[data-for^=p-].openp a {
    pointer-events: auto;
}

div[id^=p-] {
	margin-top: 40px!important;
    display: none;
}
@media only screen and (min-width: 800px) {
	div[id^=p-] {
		margin-right: 15%;
	}
}



#cms ol,
#cms ul {
	width: auto;
	text-align: left;
}
#cms-img, #cms-img-l, .sustain-img {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: calc(100vw - 20px);
	margin: 0 0 20px 0;
	float: none;
	z-index: 5;
	box-shadow: none;
}
#cms-img:hover, #cms-img-l:hover {
//	box-shadow: 0px 10px 30px grey;
}
#cms-img > img, #cms-img-l > img, .sustain-img > img {
	width: 100%;
	height: auto;
}
#cms img {
	border-radius: 16px;
//	margin: 5px;
}
#cms #lease img {
	border-radius: 0px;
//	margin: 5px;
}
#cms .dual-img img,
#cms .dual-img iframe {
	width: 100%;
	max-width: 420px;
	margin: 10px 0 0 0;
}
@media only screen and (min-width: 900px) {
	#cms .dual-img img, #cms .dual-img iframe {
		margin: 10px 10px;
	}
}
#cms iframe {
	width: 100%;
	height: calc((100vw - 20px) / 16 * 9);
}
#cms table {
	width: 100%;
}
#cms table th {
	white-space: nowrap;
	display: block;
}
#cms table th + td {
	display: block;
}

#cms table.except {
	width: 100%;
    border-collapse: collapse;
    border: none;
	text-align: left;
}
#cms table.except tr th {
	font-size: 20px;
	padding: 0 0 10px 0;
	margin: 20px 0 0 0;
	display: table-cell;
	white-space: initial;
	vertical-align: top;
}
#cms table.except tr td {
	vertical-align: top;
}


#lease > a {
	display: block;
	text-align: center;
	margin: 0 0 15px 0;
}
#lease > h2 {
	font-size: 24px;
}
#lease > table,
#lease > div > div > table {
	display: block;
}
#lease > table tr,
#lease > div > div > table tr {
	display: block;
}
#lease > table th,
#lease > div > div > table th {
	display: inline-block;
}
#lease > table td,
#lease > div > div > table td {
	display: block;
}
#lease > table td:first-child {
	display: inline-block;
}
#lease th, #lease td {
	padding: 2px 5px;
}



.job {
	max-width: 900px;
	padding: 30px 0;
	border-top: dotted var(--color-border) 1px;
}
.job > p:first-child {
	padding: 30px 0;
	font-weight: 700;
	text-align: center;
}
.job > h2 {
	margin: 0 0 30px 0;
}
.job > a {
	display: block;
	text-align: center;
	margin: 0 0 30px 0;
}
.jobpromo {
	padding: 50px 0 0 0;
	text-align: center;
	border-top: dotted var(--color-border) 1px;
}
.jobpromo img {
	max-width: 100%;
}
#jobsAtMallContent {
	width: 100%;
	border: 0;
}


#magazin {
	width: var(--content-width);
	margin: 0px auto 20px auto;
	display: -webkit-flex;
	-webkit-flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: flex-start;
}
#magazin > a {
	display: inline-block;
	-webkit-flex: 0 0 100%;  /* Safari 6.1+ */
	-moz-flex: 0 0 100%;  /* Firefox 18+ */
	-ms-flex: 0 0 100%;  /* IE 10 */
	flex: 0 0 100%;
	text-decoration: none;
	box-shadow: none;
	text-align: center;
	background: none;
	padding: 20px;
	transition: all 0.3s ease-out;
}
#magazin > a:hover {
//	box-shadow: 0px 10px 30px grey;
}
#magazin > a > h2 {
	font-size: 24px;
	margin: 0px 0 20px 0;
}
#magazin > a > h2::first-letter {
	text-transform: uppercase;
}
#magazin > a > img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}
#magazin > a > div {
	background-color: var(--color-violet);
	color: var(--color-white);
	padding: 10px;
	transition: all 0.3s ease-out;
	border-radius: 16px;
}
#magazin > a:hover > div {
	background-color: var(--color-black);
}
#magazin > a > div > span {
	top: -3px;
}
//#fe546e




#press_menu > div {
	width: 100%;
}
#pressMsg {
	max-width: var(--text-area-max-width);
	margin: 0 auto;
}
#pressMsg a {
	text-decoration: underline;
}
#pressMsg a:hover {
	text-decoration: none;
}
#pressMsg a[href="javascript:history.back()"] {
	color: var(--color-violet);
	font-weight: 500;
}
#press > h2 {
	margin: 80px 0 50px 0;
}
#press > div {
	padding: 30px 30px 30px 0;
	border-bottom: solid #e3dde8 1px;
}
#press > div:first-of-type {
	border-top: solid #e3dde8 1px;
}
#press > div > a {
	text-decoration: none;
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
}
#press > div > a:hover {
	text-decoration: underline;
}
#press > div > span {
	float: right;
	font-weight: 500;
}
#press > div > span > a {
	color: var(--color-violet);
}


#contact {
	width: 100%;
	text-align: center;
}
#contact > p:nth-child(2) {
	text-align: center;
	margin: 30px 0 10px 0;
}
#contact > p:nth-child(2) > span {
	display: block;
	float: none;
}
#contact > p:nth-child(2) > span > a {
	color: var(--color-violet);
	font-weight: 500;
}
#contact > p:nth-child(2) > span:first-child {
//	float: left;
}
#contact > p:nth-child(2) > span:last-child {
//	float: right;
}
#contact > #gmapiframe {
	width: 100%;
	height: calc((100vw - 40px) / 3 * 2);
	max-height: 600px;
	margin: 5px 0 30px 0;
	border: none;
	border-radius: 16px;
}
#contact > #departments {
	display: flex;
	flex-flow: column wrap;
	align-content: flex-start;
	gap: 30px 0;
	margin: 90px 0 0 0;
}
#contact > #departments > div {
	display: flex;
	flex-flow: column wrap;
	align-content: flex-start;
	gap: 30px 0;
	margin: 0;
	padding: 0;
	width: 100%;
}
#contact > #departments > div > div {
	display: inline-block;
	text-align: left;
	padding: 0 15px 0 15px;
	border-left: solid #edebef 1px;
	-webkit-flex: 0 0 100%;
	-moz-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	margin: 0;
}
#contact > #departments > div.break  {
	flex-basis: 100%!important;
	height: 0;
	margin-top: -30px;
}
#contact > #departments > div > div h3 {
//	font-size: 32px;
//	line-height: 40px;
}
#contact > #departments > div > div strong {
	color: var(--color-violet);
}


/***** Contact-form - START *****/
#contactForm {
	padding: 0px 0px 25px 0px;
	margin: 0 auto;
	text-align: center;
	min-width: 300px;
	width: 100%;
}
#contactForm table {
	width: 100%;
	padding: 0px;
	margin: 20px auto 0px auto;
	text-align: left;
}
#contactForm table tr#antispam, #contactForm-nevyplnovat {
	display: none;
}
#contactForm table th {
	display: none;
	width: 15%;
	padding: 7px 10px 7px 0px;
	font-size: 13px;
	font-weight: 700;
	vertical-align: top;
	text-align: right;
}
#contactForm table td {
	padding: 3px 0px;
}
#contactForm div {
	padding: 0px;
}
#contactForm input[type="text"],
#contactForm textarea {
	font-family: var(--font-family);
	border: solid #e3dde8 1px;
	border-radius: 20px;
	background: none;
	padding: 28px 32px;
}
#contactForm input[type="text"]::placeholder,
#contactForm textarea::placeholder {
	font-family: var(--font-family);
	font-size: 18px;
	line-height: 26px;
	color: var(--color-darkblue);
}
#contactForm input[type="text"] {
	width: 100%;
}
#contactForm textarea {
	width: 100%;
	height: 200px;
}
#contactForm .errorCell label,
#contactForm .errorCell span {
	color: #ffffff;
	background-color: #cc0000;
	font-weight: bold;
	padding: 3px 5px;
	margin-left: 20px;
	border-radius: 2px;
	cursor: pointer;
}
#contactForm .g-recaptcha {
	margin: 10px 0px 20px 0px;
	text-align: center;
}
#contactForm .g-recaptcha > div{
	margin: 0px auto;
}
#contactForm-send {
//	padding: 13px 35px;
//	font-size: 14px;
//	background-color: var(--color-blueberry);
//	color: var(--color-white);
}
#contactForm-send:hover {
	background-color: var(--color-winered);
}
#contactForm table td.privacy {
	padding: 15px 5px;
}
#contactForm .privacy a {
	font-weight: 500;
}
#contactForm-privacy {
	margin: 5px 15px 60px 0;
	float: left;
	background-color: var(--color-blueberry);
}
/***** Contact-form - END *****/

/***** Info, Alerts - START *****/

.infoText {
	margin-bottom: 30px;
	text-align: center;
	z-index: 100;
}
.infoText > div > div.type {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	padding: 5px;
}
.infoText > div > div.msg {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	padding: 5px 10px;
}
.infoText > div > div.msg > span {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 16px;
	height: 16px;
	cursor: pointer;
//	background: transparent url('/img/icon-checked.svg') 50% 50% no-repeat;
}
.state_alert {
	position: relative;
	display: inline-block;
	padding: 5px!important;
	border-radius: 3px;
	border: solid #cd0a0a 1px;
	background-color: #fde2d8;
	color: #cd0a0a;
	margin: 0px auto 20px auto;
}
.state_info, .state_notice {
	position: relative;
	display: inline-block;
	padding: 5px!important;
	border-radius: 3px;
	border: solid #f7d61b 1px;
	background-color: #f1e497;
	margin: 0px auto;
}
.alert_icon, .info_icon, .notice_icon, .confirm_icon {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin: 4px 5px auto 0px;
	overflow: hidden;
}
.alert_icon {
	background: transparent url('/img/icon-alert.svg') 50% 50% no-repeat;
}
.info_icon, .notice_icon {
	background: transparent url('/img/icon-notice.svg') 50% 50% no-repeat;
}
.confirm_icon {
	background: transparent url('/img/icon-checked.svg') 50% 50% no-repeat;
}
/***** Info, Alerts - END *****/

#tenant {
	position: fixed!important;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 99999;
	background-color: #fff;
	overflow: hidden;
    touch-action: none;
}
#tenantImg {
	display: none;
	float: left;
	width: 60%;
	height: 100vh;
	background-image: url('/img/palac-pardubice.jpg');
	background-position: 50% 50%;
	background-size: cover;
}
#tenantLogin {
	width: 100%;
	text-align: center;
	margin: 50px 0px;
	padding: 30px;
}
#tenantLogin strong {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 8px;
	background-color: var(--color-winered);
	color: var(--color-text);
}
#tenantForm {
//	margin: 50px auto;
}
#tenantForm > input[type=password] {
	width: 100%;
	max-width: 300px;
	height: 50px;
	padding: 12px 15px 12px 15px;
	margin: 30px 0 15px 0;
	background-color: var(--color-lightgray);
	border-radius: 50px;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	text-align: center;
}
@media only screen and (min-width: 600px) {
	#tenant {
		display: flex;
		flex-flow: row nowrap
	}
	#tenantImg {
		display: block;
		max-width: 60%;
	}
	#tenantLogin {
//		float: right;
		min-width: 330px;
		max-width: 40%;
	}
}

#importantInfo {
	background-color: var(--color-winered);
	color: var(--color-white);
	padding: 10px 50px;
	font-size: 12px;
	line-height: 16px;
    text-shadow: 1px 1px 1px var(--color-black-50);
}
#importantInfo.homepage {
}
#importantInfo .h2 {
	margin: 0 0 20px 0;
	font-weight: 700;
}
#importantInfo .h2:only-child {
	margin: 0;
}
#importantInfo a {
	color: var(--color-white);
}
#importantInfo ol, #importantInfo ul {
	padding: 10px 0 5px 0;
	list-style-position: inside;
}
#importantInfo .separator {
	display: inline-block;
	width: 85%;
	height: 0px;
	border-bottom: solid var(--color-white) 1px;
	margin: 20px 0px 10px 0px;
}
#importantInfo.homepage .separator {
	margin: 30px 0px 20px 0px;
}
a.no_icon {
	background: none;
	padding: 1px 0px 1px 0px;
	text-decoration: underline;
}
a.no_icon:hover {
	text-decoration: none;
}

#alzabox-logo {
	height: auto;
	max-height: 85px;
	margin: 0 0 15px 30px;
	float: right;
}

/***** Logos slider - START *****/
#logos {
	margin: 80px 0 0 0;
	padding: 0 20px;
}
#logos > div {
	overflow: hidden;
}
#logos > div:before,
#logos > div:after {
	position: absolute;
	top: 0;
	width: 50px;
	height: 100%;
	content: "";
	z-index: 10;
}
#logos > div:before {
	left: 0;
	background-image: linear-gradient(90deg, #ffffffff, #ffffff00);
}
#logos > div:after {
	right: 0;
	background-image: linear-gradient(90deg, #ffffff00, #ffffffff);
}
#logos > div > h2 {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
#logos > div > div {
	display: flex;
	animation: var(--logos-animation-duration) logoslide infinite linear;
}
#logos > div > div:hover {
	animation-play-state: paused;
}
#logos > div > div > a {
	flex: 0 0 auto;
	width: 150px;
	padding: 10px 20px;
	cursor: pointer;
}
#logos > div > div > a > img {
	filter: grayscale(100%);
	transition: all 0.3s ease-out;
}
#logos > div > div > a:hover > img {
	filter: grayscale(0%);
}
@keyframes logoslide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-1550%);
	}
}
/***** Logos slider - END *****/


/***** Instagram feed - START *****/
#insta-feed {
	margin: 0 0 60px 0;
	overflow: hidden;
}
#insta-feed .swiper-wrapper {
	width: 320px;
	margin: 0 auto;
}
#insta-feed .swiper-slide {
//	width: 320px;
	height: 320px;
}
#insta-feed .swiper-slide > img,
#insta-feed .swiper-slide > video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}
#insta-feed .swiper-button-prev,
#insta-feed .swiper-button-next {
    all: unset;
	position: absolute;
	width: 50px;
	height: 50px;
    top: 65%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
	text-align: center;
//	padding: 8px 10px 12px 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
	z-index: 10;
}
#insta-feed .swiper-button-prev:after,
#insta-feed .swiper-button-next:after {
    all: unset;
}
#insta-feed .swiper-button-prev:hover,
#insta-feed .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
#insta-feed .swiper-button-prev {
    left: 10px;
}
#insta-feed .swiper-button-next {
    right: 10px;
}
/***** Instagram feed - END *****/

/***** FreePrivacyPolicy.com - START *****/
.freeprivacypolicy-com---nb-simple {
	border-radius: 5px;
	margin: 10px;
}
.freeprivacypolicy-com---reset div,
.freeprivacypolicy-com---palette-light .cc-pc-container {
	border-radius: 5px;
}
.freeprivacypolicy-com---palette-light .cc-pc-container {
	margin-bottom: 30px;
}
.freeprivacypolicy-com---pc-dialog .cc-pc-head-title {
	padding: 25px 25px 0 25px;
}
.freeprivacypolicy-com---palette-light .cc-pc-head-title-headline {
	text-align: center;
}
.freeprivacypolicy-com---palette-light .cc-pc-head-lang select {
	display: none;
}
.freeprivacypolicy-com---pc-dialog .cc-pc-head-close {
	margin-left: 0;
}
/***** FreePrivacyPolicy.com - END *****/

#chargebox {
	max-width: 650px;
	max-height: 250px;
}
#chargebox.big {
	max-height: 500px;
}


@media only screen and (min-width: 480px) {
/*
	#logo {
		width: 215px;
		height: 35px;
		background: transparent url('/img/palacpardubice-logo.svg') no-repeat 50% 50%;
		background-size: 80%;
	}
*/
	#magazin > a {
		-webkit-flex: 0 0 50%;  /* Safari 6.1+ */
		-moz-flex: 0 0 50%;  /* Firefox 18+ */
		-ms-flex: 0 0 50%;  /* IE 10 */
		flex: 0 0 50%;
	}
	#newsletter > form > input[type|=email] {
	}
	#newsletter > form > input[type|=submit] {
	}
	#newsletter_finish input[type=email] {
		width: 25%;
	}
	#cookies-text button {
		margin: 0 30% 20px 30%;
	}
	#cms > #opening-hours > div {
		-webkit-flex: 0 0 49%;
		-moz-flex: 0 0 49%;
		-ms-flex: 0 0 49%;
		flex: 0 0 49%;
		min-height: 180px;
		margin: calc(2% / 4);
	}
}

@media only screen and (min-width: 580px) {
	#cookies-text button {
		margin: 0 34% 20px 34%;
	}
	#for-download div {
		width: 50%;
		float: left;
	}
	#newsletter > form > input[type|=email],
	#newsletter > form > input[type|=submit] {
	margin: 0 15px 15px 15px;
	}
	#contact > #departments,
	#contact > #departments > div {
		flex-flow: row wrap;
		gap: 45px 0;
	}
	#contact > #departments > div > div {
		-webkit-flex: 0 0 48%;
		-moz-flex: 0 0 48%;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
//		margin: calc(4% / 4);
	}
}


@media only screen and (min-width: 600px) {
	:root {
        --logos-animation-duration: 120s;
	}
	/***** FreePrivacyPolicy.com - START *****/
	.freeprivacypolicy-com---pc-dialog .cc-pc-head-title {
		padding: 25px;
	}
	/***** FreePrivacyPolicy.com - END *****/
	#contactForm {
		max-width: 600px;
	}
}


@media only screen and (min-width: 640px) {
	#go2top {
//		display: none;
		right: -1px;
		bottom: 20px;
	}
	.show-search {
		top: 0px;
	}
	#stores_map_icon {
		top: 0px;
	}
	h1, .h1 {
		margin: 0 0 50px 0;
		font-size: 60px;
		line-height: 66px;
	}
	h2, .h2 {
		font-size: 40px;
		line-height: 48px;
	}
	h3, .h3 {
		font-size: 32px;
		line-height: 40px;
	}
	#img-head {
		height: 150px;
	}
	#img-head > div.morning {
		background-position: 70% 50%;
	}
	#content {
		padding: 50px 0;
	}
	#importantInfo {
		font-size: 14px;
		line-height: 18px;
	}
	#topline {
		display: block;
		min-height: calc(2* 30px + 50px);
	}
	#bluebar {
		height: 105px;
		text-align: center;
	}
	#languages-box {
//		display: flex;
	}
	#search-icon {
		display: none;
	}
	#logo {
		width: 150px;
		height: 50px;
		background-size: 100%;
	}
	#magazine-offer > div {
		text-align: left;
	}
	#magazine-offer > div > h2 {
		display: block;
	}
	#magazine-offer > div > span {
		display: block;
	}
	#magazine-offer > div > a {
		position: absolute;
		bottom: 40px;
		margin: 0;
	}
	#border {
		display: block;
		position: relative;
		width: calc(var(--content-width) * 0.65);
		height: 0;
		margin: 0 auto;
		border-top: solid var(--color-border) 1px;
	}
	#cms-img {
		float: right;
		width: var(--cms-right-img-width);
		margin: 0 0 15px 30px;
	}
	.sustain-img {
		float: right;
		width: 250px;
		margin: 0 0 15px 30px;
	}
	#cms-img-l {
		float: left;
		width: var(--cms-right-img-width);
		margin: 0 30px 15px 0;
	}
	#cms table {
		width: 80%;
	}
	#cms table th, #cms table td {
		padding: 0 10px 0 0;
	}
	#cms table th {
		white-space: nowrap;
		display: table-cell;
	}
	#cms table th + td {
		display: table-cell;
	}
	#lease > a,
	#lease > div > div > a {
		display: inline-block;
		float: right;
		margin: 0 0 15px 30px;
	}
	#lease > table,
	#lease > div > div > table {
		display: table;
		width: 75%;
	}
	#lease > table tr,
	#lease > div > div > table tr {
		display: table-row;
	}
	#lease > table th,
	#lease > div > div > table th {
		display: table-cell;
	}
	#lease > table td,
	#lease > div > div > table td {
		display: table-cell;
	}
	#lease > table td:first-child {
		display: table-cell;
	}
	.back {
		display: inline-block;
		float: right;
		top: -40px;
	}
	.job > a {
		display: inline-block;
		float: right;
		margin: 0 0 30px 30px;
	}
	#left {
		width: 49%;
		float: left;
	}
	#right {
		width: 49%;
		float: right;
	}
	#cookies-text button {
		margin: 0 36% 20px 36%;
	}
}


@media only screen and (min-width: 680px) {
	/***** FreePrivacyPolicy.com - START *****/
	.freeprivacypolicy-com---nb-simple {
//		max-width: 30%;
//		bottom: 5px;
//		right: 5px;
//		border-radius: 5px;
	}
	.freeprivacypolicy-com---pc-dialog .cc-pc-head-title {
		padding: 25px;
	}
	/***** FreePrivacyPolicy.com - END *****/
	#cms > #opening-hours > div {
		-webkit-flex: 0 0 32%;
		-moz-flex: 0 0 32%;
		-ms-flex: 0 0 32%;
		flex: 0 0 32%;
		margin: calc(3% / 6);
	}
}



@media only screen and (min-width: 720px) {
	.show-search {
		display: none;
	}
	#searchTop {
		display: inline-block;
		max-width: 60%;
//		margin: 0 auto;
	}
	#searchTop > form {
		display: inline-block;
		position: relative;
		width: 100%;
		top: 0;
		left: 0;
		padding: 0 0 0 25px;
//		padding: 0;
	}
	#searchTop > form > input[type=search] {
		min-width: auto;
		max-width: auto;
		width: 100%;
	}
	#get-app img {
		max-width: 1200px;
	}
	#get-voucher img {
		max-width: 1200px;
	}
}



@media only screen and (min-width: 780px) {
	#stores_map_icon {
		display: none;
	}
	#stores_map_btn {
		display: inline-block;
		right: 70px;
	}
}


@media only screen and (min-width: 820px) {
	#magazin > a {
		-webkit-flex: 0 0 33%;  /* Safari 6.1+ */
		-moz-flex: 0 0 33%;  /* Firefox 18+ */
		-ms-flex: 0 0 33%;  /* IE 10 */
		flex: 0 0 33%;
	}
	#magazine-offer > div > p {
		display: block;
	}
	#newsletter > form > input[type|=email] {
//		width: 30%;
	}
	#newsletter2 > form > input[type|=email] {
//		width: 35%;
	}
	#get-app img {
		width: 100%;
		max-width: 1200px;
	}
}

@media only screen and (min-width: 840px) {
	#topline {
		text-align: center;
	}
	#languages-box {
//		display: inline-block;
		margin: 3px 0 0 25px;
	}
}


@media only screen and (min-width: 900px) {
	:root {
        --logos-animation-duration: 180s;
	}
	#contact > #departments,
	#contact > #departments > div {
		gap: 60px 0;
	}
	#contact > #departments > div > div {
		-webkit-flex: 0 0 33%;
		-moz-flex: 0 0 33%;
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
//		margin: calc(4% / 6);
	}
}


@media only screen and (min-width: 1000px) {
	#languages-box {
		margin: 3px 0 0 80px;
	}
}


@media only screen and (min-width: 1200px) {
	:root {
		--content-width: 1200px;
        --logos-animation-duration: 240s;
	}
	#searchTop {
		width: 500px;
	}
	#img-head {
		height: 250px;
	}
	#img-head > div.floor {
		background-position: 50% 50%;
	}
	#img-head > div.info {
		background-position: 50% 50%;
	}
	#img-head > div.morning {
		background-position: 50% 50%;
	}
	#img-head > div.evening {
		background-position: 50% 50%;
	}
	#img-head > div.bowland {
		background-position: 50% 50%;
	}
	#content > div {
		padding: 0px 0px;
	}
	.mobwrap {
		display: none;
	}
	#magazine-offer {
		display: block;
		margin-top: 60px;
	}
	#cms iframe {
		height: calc(var(--content-width) / 16 * 9);
	}
	#contact > p:nth-child(2) > span {
		display: inline-block;
	}
	#contact > p:nth-child(2) > span:first-child {
		float: left;
	}
	#contact > p:nth-child(2) > span:last-child {
		float: right;
	}
	#contact > #departments,
	#contact > #departments > div {
		gap: 75px 0;
	}
	#contact > #departments > div > div {
		-webkit-flex: 0 0 25%;
		-moz-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
//		margin: calc(4% / 8);
	}


	#slider1 video {
		width: var(--area-width);
		height: calc(var(--area-width)/(1920/500));
		transform: translateX(0%);
        object-fit: cover;
	}
	#importantInfo {
//		padding: 20px 10% 20px 10%;
	}
	#importantInfo.homepage {
//		padding: 30px 10% 30px 10%;
	}
	#cookies-text {
		text-align: left;
	}
	#cookies-text button {
		float: right;
		margin: 5px 0 0 30px;
	}

}

@media only screen and (min-width: 1122px) {
	/***** FreePrivacyPolicy.com - START *****/
	.freeprivacypolicy-com---nb-simple {
		max-width: 30%;
		bottom: 5px;
		right: 5px;
		border-radius: 5px;
	}
	.freeprivacypolicy-com---palette-light .cc-pc-head-title-headline {
		text-align: left;
	}
	.freeprivacypolicy-com---palette-light .cc-pc-head-lang select {
		display: none;
	}
	.freeprivacypolicy-com---pc-dialog .cc-pc-head-close {
		margin-left: 0;
	}
	/***** FreePrivacyPolicy.com - END *****/
}

@media only screen and (min-width: 1200px) {
	#stores_map_btn {
		display: inline-block;
		right: 0;
	}
}

@media only screen and (min-width: 1330px) {
	#today_open_to {
		display: inline-block;
	}
}


@media only screen and (min-width: 1600px) {
	#part-logo-yellow {
		display: block;
		position: absolute;
		right: 0px;
		width: calc((1920px - var(--content-width))/2/2.5);
	//	width: 100%;
		z-index: 2;
	}
	#part-logo-red,
	#part-logo-green {
		display: block;
		position: absolute;
		left: 0px;
		width: calc((1920px - var(--content-width))/2/3);
		z-index: 2;
	}
	#part-logo-orange-blue {
		display: block;
		position: absolute;
		right: 0px;
		width: calc((1920px - var(--content-width))/2/4);
		z-index: 2;
	}
}