propertyTexts/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 *
 * 2do barva selekce
 */

::-moz-selection {
    background: #d8f8fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1rem 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

body, html {
	font-family: 'Roboto', sans-serif;
	text-shadow: none;

	background-color: #ffffff;
	min-width: 320px;
}

button, input, select, textarea {
	font-family: 'Roboto', sans-serif;
}

a { color: #f15629; text-decoration: none; }
a:hover { color: #8f3318; text-decoration: underline; }

/* --- project --- */

#page {
	display: table;
	table-layout: fixed;
	height: 100vh;

    max-width: none;
    width: auto;
    min-width: 100%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE 10+ */
	#page { width: 100%; }
}

#pageInner {
	display: table-row;
}

nav, main {
	display: table-cell;
	height: 100%;
	vertical-align: top;
	box-sizing: border-box;
}

nav {
	width: 290px;
	background-color: #404040;
	overflow: hidden;
	position: relative;
}

main {
	width: calc(100% - 290px);
}

@media screen and (max-width: 1024px) {
	nav {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 4;
		height: 100%;
	}

	#pageInner { position: relative; }

	main { width: 100%; }
}

nav.closed { width: 0; }

.ps > .ps__scrollbar-x-rail, .ps > .ps__scrollbar-y-rail { z-index: 5; }

.navInner {
	position: fixed;
	width: 0;
	overflow: hidden;
	height: 100%;
	background-color: #404040;
	/* ie bug */
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.navContent {
	width: 290px;
	min-width: 290px;
	padding-bottom: 1.5em;
}

nav ul {
	margin: 0;
	padding: 0;
	font-size: 15px;
}

#mainMenu { padding: 20px 25px; }

#mainMenu li {
	margin: 0;
	padding: 0;
}

#mainMenu ul {
	padding: 0;
	margin: 0;
	height: 0;
	overflow: hidden;
}

#mainMenu .active ul { margin: 0 0 13px 0; }

#mainMenu li.active ul {
	height: auto;
}

#mainMenu a {
	display: block;
	margin-bottom: 13px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	font-size: 15px;
	transition-duration: 0.05s;
}

/*
#mainMenu .active a.mainHref {
	margin-bottom: 5px;
}
*/

#mainMenu a.mainHref:hover {
	text-decoration: none;
	color: #c9c9c9;
}

#mainMenu .hasSubmenu .mainHref span { position: relative; }

#mainMenu .hasSubmenu .mainHref span:after,
#mainMenu .active > .secHref span:after
{
	content: " ";
	display: block;
	position: absolute;
	width: 13px;
	height: 13px;
	left: -25px;
	top: 3px;
	background-image: url("../img/sm_arrow_down.png");
	background-position: right center;
	background-repeat: no-repeat;
}

#mainMenu .hasSubmenu.active .mainHref span:after {
	background-image: url("../img/sm_arrow_up.png");
}

#mainMenu .active > .secHref span:after {
	background-image: none;
	width: 9px;
	height: 9px;
	top: 5px;
	border-radius: 1000px;
	background-color: #f1582b;
}

#mainMenu a.secHref {
	margin-bottom: 7px;
	line-height: 17px;
}

#mainMenu a.secHref { color: #c9c9c9; }
#mainMenu a.secHref:hover { color: #ffffff; }

#mainMenu a.secHref span { position: relative; }

#mainMenu .active > .mainHref, #mainMenu .active > .secHref { color: #f15629; }

header {
	background-color: #1c2328;
	text-align: center;
	height: 76px;
	position: relative;
}

#logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.menuTrigger, .iconLinks .menuTrigger {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
}

.menuTrigger:hover {
	color: #ffffff;
	text-decoration: none;
}

header .menuTrigger {
	float: left;
	height: 76px;
	line-height: 76px;
	margin-left: 40px;
	padding-left: 40px;
	background-image: url("../img/menu_open.png");
	background-position: center left;
	background-repeat: no-repeat;
}

@media screen
and (max-width: 800px) {
	header .menuTrigger span { display: none; }
}

#langSwitch {
	float: right;
	height: 76px;
	line-height: 76px;
	margin-right: 35px;
}

#langSwitch a {
	line-height: 30px;
	font-size: 15px;
	display: inline-block;
	color: #ffffff;
	background-color: #36434d;
	padding: 0 13px;
	border: 1px solid #878ea1;
	border-radius: 2px;
	margin-left: 5px;
	transition-duration: 0.3s;
}

#langSwitch a:hover {
	text-decoration: none;
}

#langSwitch a:hover, #langSwitch a.active {
	background-color: #506472;
}

@media screen
and (max-width: 640px) {
	#logo {
		left: 20px;
		transform: translateY(-50%);
	}

	header .menuTrigger {
		float: right;
		margin-left: 0;
	}

	#langSwitch { margin-right: 20px; }
}

@media screen
and (max-width: 540px) {
	#logo { width: 200px; }
}

@media screen
and (max-width: 420px) {
	#logo { width: 135px; }

	#langSwitch { margin-right: 15px; }

	#langSwitch a {
		padding: 0 10px;
		font-size: 12px;
	}
}

.iconLinks a {
	font-size: 15px;
	font-weight: 300;
	display: block;
	color: #ffffff;
	line-height: 37px;
	padding-left: 60px;
	background-position: 20px center;
	background-repeat: no-repeat;
}

.iconLinks a.search {
	background-color: #9b9b9b;
}

.iconLinks .menuTrigger {
	line-height: 76px;
	background-image: url("../img/menu_close.png");
}

.iconLinks .user .logout {
	display: inline-block;
	width: 64px;
	text-align: center;
	text-transform: lowercase;
	vertical-align: top;
}

.iconLinks .user .name {
	display: inline-block;
	width: calc(100% - 64px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	vertical-align: top;
}
.iconLinks .user { background-image: url("../img/user.png"); }

.iconLinks .favorites {
	background-image: url("../img/fav_star_empty.png");
	background-size: 40px;
	background-position: 13px -3px;
}
.iconLinks .favorites.full { background-image: url("../img/fav_star_full.png"); }

.iconLinks .search { background-image: url("../img/mag_glass.png"); }
.iconLinks .projects { background-image: url("../img/house.png"); background-position: 16px center; }

.iconLinks a:hover, .iconLinks a.active {
	text-decoration: none;
	background-color: #656565;
}

.social {
	padding: 0 25px;
}

.social a {
	display: inline-block;
	margin-right: 7px;
}

/* changer */
.changer {
	width: 100%;
	height: 100%;
	position: relative;
}

.changer article {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
}

.changerContent {
	width: 100%;
	height: calc(100vh - 200px);
	max-height: 600px;
	min-height: 400px;
	position: relative;
}

.changerOverlay {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 3;
	background: linear-gradient(to top, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0) 50%);
}

.changerOverlay a {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	white-space: nowrap;
}

@media screen
and (max-height: 640px) {
	.changerOverlay a { top: 50%; }
}

.changerOverlay .changerTitle {
	position: absolute;
	text-align: center;
	padding-bottom: 55px;
	left: 0;
	bottom: 0;
	width: 100%;
}

.changerOverlay h1 {
	color: #ffffff;
	font-size: 35px;
	font-weight: 300;
	margin: 0 0 0.1em 0;
	padding: 0 20px;
}

.changerOverlay h1 span {
	display: block;
	font-size: 20px;
	font-weight: 300;
}

.orangeButton {
	display: inline-block;
	color: #ffffff;
	background-color: #f1582b;
	line-height: 42px;
	border: 1px solid #ffffff;
	font-size: 18px;
	font-weight: 300;
	padding: 0 20px;
	box-sizing: border-box;
	transition-duration: 0.3s;
}

.orangeButton[disabled] { opacity: 0.5; }

.orangeButtonSm { font-size: 15px; }

.orangeButton:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: #e25328;
}

@media screen
and (max-width: 800px) {
	.changerOverlay h1 { font-size: 27px; }
	.changerOverlay { background: linear-gradient(to top, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0) 45%); }

}

/* breadcrumbs */
.breadcrumbsWrapper {
	line-height: 44px;
	border-top: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
}

.breadcrumbs {
	line-height: 44px;
}

.breadcrumbs ol {
	line-height: 44px;
	margin: 0;
	padding: 0;
}

.breadcrumbs li {
	list-style-type: none;
	list-style-image: none;
	display: inline-block;
}

.breadcrumbs a {
	font-size: 15px;
	color: #000000;
	text-transform: lowercase;
}

.breadcrumbs a:hover { text-decoration: none; }
.breadcrumbs a:after { content: " / "; }
.breadcrumbs li:last-of-type a:after { content: ""; }

.breadcrumbsWrapper .searchProperties {
	display: block;
	float: right;
	padding-left: 36px;
	text-transform: lowercase;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url("../img/mag_glass_orange.png");
}

/* hp */

.centerText {
	text-align: center;
	padding: 80px 15%;
}

.centerText h2 {
	font-size: 35px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	margin-bottom: 60px;
}

.twoTiles, .content.twoTiles {
	height: 375px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.twoTiles > div {
	width: calc(50% - (20px / 2));
	position: relative;
}

.twoTiles a.tileLink {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	font-size: 18px;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.twoTiles a.tileLink:after {
	content: " ";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	transition-duration: 0.3s;
}

.twoTiles a:hover:after {
	background-color: rgba(0,0,0,0.6);
}

.twoTiles .newsletter { background-image: url("../img/newsletter_cb.jpg"); }
.twoTiles .evaluation { background-image: url("../img/evaluation_cb.jpg"); }

.twoTiles .tileContent {
	display: block;
	position: absolute;
	width: 52%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 1;
	text-align: center;
}

.twoTiles .title { font-size: 35px; display: block; }
.twoTiles .text { font-weight: 300; }

.tileFormInner {
	display: block;
	position: absolute;
	width: 82%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 2;
	background-color: #ffffff;
}

.tileForm {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	display: none;
	background-color: rgba(0,0,0,0.7);
}

.tileForm input {
	border: 1px solid #000000;
	line-height: 30px;
	height: 30px;
	box-sizing: border-box;
	padding: 0 10px;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
}

.tileForm input[type=text] {
	margin-right: 10px;
}

@media screen
and (max-width: 920px) {
	.twoTiles > div { width: 100%; }

	.twoTiles, .content.twoTiles {
		display: block;
		height: auto;
	}

	.twoTiles .tileFormContent {
		height: 375px;
		margin-bottom: 20px;
	}

	.twoTiles .tileFormContent:last-of-type { margin-bottom: 0; }

	.twoTiles, .content.twoTiles { margin-bottom: 20px; }
}

/* top articles */
.topPropertiesContainer {
	background: linear-gradient(to bottom, rgba(226,227,227,1) 0, rgba(255,255,255,1) 450px);
	padding-top: 1px;
	margin-bottom: 30px;
}

.topArticles {
	background: linear-gradient(to bottom, rgba(226,227,227,1) 0, rgba(255,255,255,1) 450px);
	padding-top: 70px;
	margin-bottom: 30px;
}

.topArticles h2 {
	text-align: center;
	font-size: 35px;
	font-weight: 300;
	margin: 0 0 50px 0;
}

.topArticles h3 {
	font-size: 21px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 0;
}

.topArticles p { margin-bottom: 0; }

.topArticles .wholeMessage {
	font-weight: 400;
	color: #f1582b;
}

.topArticles .articles {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.topArticles .articles article {
	width: calc(33.3333% - (40px / 3));
	height: 360px;
	margin-bottom: 20px;
	background-color: #f1f1f1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	transition-duration: 0.5s;
}

.topArticles .articles article:after {
	content: " ";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	transition-duration: 0.5s;
}

.topArticles .articles article:hover:after {
	background-color: rgba(0,0,0,0.6);
}

.topArticles .articles article.blank {
	background-image: url("../img/blank_property_image.png");
	background-size: auto;
}

.topArticles .articles article a {
	display: block;
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	z-index: 1;
	color: #ffffff;
	text-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
}

.topArticles .articles article a > span {
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
	padding: 30px;
	box-sizing: border-box;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.topArticles .articles article span.date {
	display: inline-block;
	background-color: #ffffff;
	line-height: 30px;
	padding: 0 15px;
	color: #000000;
	font-size: 15px;
	text-shadow: none;
	margin-top: 13px;
}

.topArticles .showAllItems {
	margin-bottom: 80px;
}

@media screen
and (max-width: 1380px) {
	.topArticles .articles { flex-wrap: wrap; }
	.topArticles .articles article { width: calc(50% - (20px / 2)); }
}

@media screen
and (max-width: 920px) {
	.topArticles .articles article { width: 100%; }
}

/* content */

.content {
	width: 100%;
	padding: 0 60px;
	box-sizing: border-box;
	max-width: 1680px;
	min-width: 320px;
	margin: 0 auto;
}

.contentNarrow { max-width: 1280px; }
.contentNarrower { max-width: 1100px; }

@media screen
and (max-width: 1140px) {
	.content { padding: 0 20px; }
}

.topGrayGradient {
	background: linear-gradient(to bottom, rgba(244,244,244,1) 0, rgba(244,244,244,0) 100px);
}

/* tile links */

.tileLinks {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.tileLinks h2 {
	height: 360px;
	width: calc(33.333% - (40px / 3));
	background-color: #878ea1;
	margin: 0 0 20px 0;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.tileLinks a {
	display: block;
	width: 100%;
	height: 100%;
	color: #000000;
	transition-duration: 0.3s;
}

.tileLinks a:hover {
	text-decoration: none;
	background-color: rgba(0,0,0,0.5);
}

.tileLinks span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 50%;
	line-height: 20px;
	padding: 5px 10px;
	box-sizing: border-box;
	text-align: center;
	background-color: #ffffff;
	font-weight: 300;
	font-size: 13px;
	text-transform: uppercase;
	box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.1);
}

.tileLinks p {
	position: absolute;
	top: 60%;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	width: 100%;
	font-weight: 300;
	padding: 0 25%;
	box-sizing: border-box;
	display: none;
}

.tileLinks a:hover p {
	display: block;
}

@media screen
and (max-width: 1740px) {
	.tileLinks span { width: 70%; }
}

@media screen
and (max-width: 1490px) {
	.tileLinks h2 { width: calc(50% - 10px); }
}

@media screen
and (max-width: 860px) {
	.tileLinks h2 { width: 100%; }
}

/* services */
.textTopMargin { margin-top: 55px; }

.textBottomMargin { margin-bottom: 55px; }

.textColumns {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.textColumnsInner {
	display: table-row;
}

.textLeftContent {
	display: table-cell;
	vertical-align: top;
	padding-right: 20px;
	font-size: 15px;
	position: relative;
	width: 100%;
}

.textRightContent {
	display: table-cell;
	vertical-align: top;
	width: 236px;
	box-sizing: border-box;
	border-top: 0;
	font-size: 15px;
}

.addText {
	border-bottom: 1px solid #e4e4e4;
	padding-bottom: 1.17em;
}

.addText .moreRight {
	float: right;
}

.addText h2 {
	font-size: 1.17em;
	margin: 1em 0 0 0;
	color: #000000;
}

.addTextContent {
	display: none;
}

.personCard {
	float: right;
	position: relative;
	top: -56px;
	width: 236px;
	box-sizing: border-box;
	border-top: 0;
	font-size: 15px;
	line-height: 25px;
	white-space: nowrap;
	text-align: center;
}

.personCardInner {
	border: 1px solid #c1c1c1;
	background-color: #ffffff;
	border-top: 0;
}

.textRightContent .personCard { float: none; }

.personCard .body {
	padding: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.personCard.demandCard .body {
	padding-bottom: 0.5em;
}

.personCard img {
	display: block;
	margin-bottom: 1em;
	border-radius: 1000px;
}

.personCard a {
	color: #000000;
	text-decoration: underline;
}

.personCard a:hover { color: #f15629; }

.emailEnvelope {
	display: inline-block;
	background-image: url("../img/envelope.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 20px;
	width: 30px;
	margin-top: 3px;
	transition-duration: 0.1s;
}

.personCard .position {
	font-size: 12px;
}

.emailEnvelope:hover { opacity: 0.8; }

.emailEnvelope span { display: none; }

.personCard .orangeButton { width: 100%; }

.personCard .orangeButton {
	color: #ffffff;
	text-decoration: none;
	border: none;
}

.personCard .orangeButton:hover { color: #ffffff; }

.quickButtons {
	float: right;
	width: 236px;
	padding: 0 0 18px 18px;
	box-sizing: border-box;
}

.quickButtons .orangeButton {
	width: 100%;
	margin-bottom: 1em;
	text-align: center;
}

.banner {
	width: 236px;
	margin-bottom: 20px;
}

@media screen
and (max-width: 680px) {
	.personCard {
		float: none;
		width: 100%;
		text-align: left;
		margin: 30px 0 30px 0;
		top: 0;
	}

	.personCard img {
		float: left;
		margin-right: 20px;
		height: 100px;
	}

	.personCardInner {
		border-top: 1px solid #c1c1c1;
	}

	.textLeftContent {
		margin-right: 0;
		padding-right: 0;
	}

	.textRightContent {
		float: none;
		width: 100%;
	}

	.textColumns { display: block; }
	.textLeftContent { display: block; }
	.textRightContent { display: block; }
}

.bigCenter {
	font-size: 35px;
	font-weight: 300;
	text-align: center;
}

.bigCenter span {
	display: block;
	font-size: 18px;
}

.servicesSubmenu {
	margin: 1em 0 0 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.servicesSubmenu li {
	margin: auto;
	padding: 0;
	list-style-type: none;
	width: calc(33.3333% - 18px);
	box-sizing: border-box;
	height: 85px;
	border: 1px solid #c3c3c3;
	margin-bottom: 18px;
}

.servicesSubmenu li:last-of-type:nth-child(3n-1) { margin-right: calc(33.3333% + 9px); }

.servicesSubmenu a {
	display: block;
	line-height: 85px;
	text-align: center;
	color: #000000;
	font-size: 20px;
}

.servicesSubmenu a:hover, .servicesSubmenu li.active a {
	background-color: #cccccc;
	text-decoration: none;
}

/* references */
.referencesInner {
	display: flex;
	justify-content: space-between;
}

.referencesInner a {
	display: block;
	width: 22.4%;
	box-sizing: border-box;
	height: 230px;
	margin-bottom: 18px;
	color: #000000;
}

.referencesInner .image {
	height: 70%;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.referencesInner .text {
	height: 30%;
	display: block;
	background-color: #f1f1f1;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.referencesInner .text strong {
	font-size: 18px;
	display: block;
	width: 100%;
}

.referencesInner .text span {
	font-size: 15px;
	display: block;
	width: 100%;
}

/* novinky */
.article {
	font-size: 15px;
	margin-bottom: 70px;
}

.article .date { font-size: 12px; }

.article h2 {
	margin: 0;
	font-size: 20px;
}

.article img {
	margin-bottom: 1em;
	width: 100%;
	max-width: 670px;
}

.filesContainer {
	margin-bottom: 2em;
}

.filesContainer h3 {
	margin-bottom: 0.2em;
	color: #f0552a;
	font-size: 20px;
}

.files {
	margin: 0;
	padding: 0;
}

.files li, .textLeftContent .files li {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}

.youtubeVideo {
	width: 100%;
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	padding-bottom: 0px;
	overflow: hidden;
	padding-bottom: 56.25%;
	margin-bottom: 1em;
}

.youtubeVideo iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.articlesList {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;

	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}

.articlesList .article {
	display: inline-block;
	width: 100%;
	margin: 0 30px 30px 0;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
	padding: 25px;
	box-sizing: border-box;
}

@media screen
and (max-width: 960px) {
	.articlesList {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;

		-moz-column-gap: 0;
		-webkit-column-gap: 0;
		column-gap: 0;
	}

	.articlesList .article { margin-right: 0; }
}

.singleArticle .article {

}

.singleArticle .article h2 {
	font-size: 18px;
}

.singleArticle .article a {
	width: calc(50% - 9px);
}

.singleArticle .article img {
	width: 100%;
}

.singleArticle .article .images {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* pruzkum trhu */

.fileTables {
	font-size: 15px;
	margin: 75px 0 90px 0;
	text-align: center;
}

.fileTables h2 {
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #1c2328;
	margin-bottom: 35px;
}

.fileTable, .fileTable table {
	width: 100%;
	margin-bottom: 50px;
}

.fileTable th {
	background-color: #f1f1f1;
	font-weight: 400;
}

.fileTable th, .fileTable td {
	text-align: left;
	height: 47px;
	border-bottom: 3px solid #f1f1f1;
	color: #1c2328;
}

.fileTable .attachment {
	text-align: left;
	padding-left: 75px;
	min-height: 35px;
	margin-bottom: 1em;
	background-image: url("../img/download.png");
	background-position: left center;
	background-repeat: no-repeat;
}

.fileTable .name {
	font-weight: 800;
	padding-left: 30px;
}

.fileTable .title {
	padding-left: 30px;
}

.fileTable .date {
	color: #f15629;
	font-weight: 400;
	display: inline-block;
	margin-right: 1em;
}

.fileTable .annotation { padding: 0 30px; }
.fileTable .annotation p { margin-top: 0; }

.fileTable .haveAnnotation td {
	border-bottom: none;
}

.hiddenRow { display: none; }
.visibleRow { display: table-row; }

@media screen
and (max-width: 900px) {
	.fileTable .date {
		padding-top: 10px;
		display: block;
	}
}

.iconsSubmenu {
	display: flex;
	justify-content: space-between;
	margin: 0 45px;
	padding: 0;
}

.iconsSubmenu li, .textLeftContent .iconsSubmenu li {
	margin: 0;
	padding: 0 0.5em 0 0;
	list-style-type: none;
	list-style-image: none;
	position: relative;
}

.iconsSubmenu a {
	display: block;
	width: 95px;
	height: 95px;
	border: 2px solid #1c2328;
	border-radius: 1000px;
	background-position: center center;
	background-repeat: no-repeat;
	transition-duration: 0.3s;
}

.iconsSubmenu a:hover, .iconsSubmenu .active a { background-color: rgba(28,35,40,0.2); }

.iconsSubmenu .category3 a { background-image: url("../img/survey_icons/office2.png"); }
.iconsSubmenu .category2 a { background-image: url("../img/survey_icons/investments2.png"); }
.iconsSubmenu .category4 a { background-image: url("../img/survey_icons/residential2.png"); }

.iconsSubmenu a span { display: none; }

.iconsSubmenu .category0 a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.iconsSubmenu .category0 a:hover {
	text-decoration: none;
}

.iconsSubmenu .category0 span {
	display: block;
	color: #f1582b;
	text-align: center;
	font-size: 18px;
	text-transform: lowercase;
	padding-top: 5px;
}

.iconsSubmenu .tooltip {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 120px;
	background-color: #1c2328;
	width: 160px;
	box-sizing: border-box;
	padding: 17px;
	color: #ffffff;
	z-index: 2;
}

.iconsSubmenu .tooltip:before {
	position: absolute;
	content: " ";
	top: -10px;
	width: 30px;
	height: 30px;
	background-color: #1c2328;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}

.fileTables form {
	margin: 40px 0 60px 0;
}

.fileTables form select { padding: 5px; }

@media screen
and (max-width: 800px) {
	.iconsSubmenu a {
		width: 80px;
		height: 80px;
	}

	.iconsSubmenu { margin: 0; }

	.iconsSubmenu .category0 span {
		font-size: 15px;
		padding: 0 10px;
	}
}

@media screen
and (max-width: 460px) {
	.iconsSubmenu a {
		width: 55px;
		height: 55px;
		background-size: 55%;
	}

	.iconsSubmenu .category0 span { font-size: 12px; }
}

/* filtry */
#filters {
	background-color: #535353;
	border-top: 1px solid #a9a9a9;
	border-bottom: 1px solid #a9a9a9;
	box-sizing: border-box;
}

#snippet-filters-all {
	position: relative;
	transition-duration: 0.5s;
}

#filters.highlight #snippet-filters-all {
	background-color: #6f6f6f;
}

#filters.noShow {
	height: 0;
	overflow: hidden;
	border-top: none;
	border-bottom: none;
}

#filters .body {
	padding: 15px 20px;
}

#filters select, #filters input[type=text] {
	width: 100%;
	height: 35px;
	box-sizing: border-box;
	border: none;
	background-color: #9b9b9b;
	color: #ffffff;
	margin-bottom: 15px;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 14px;
}

#filters input[type=text]::-webkit-input-placeholder { color: #ffffff; opacity: 1; }
#filters input[type=text]::-moz-placeholder { color: #ffffff; opacity: 1; }
#filters input[type=text]:-ms-input-placeholder { color: #ffffff; opacity: 1; }
#filters input[type=text]:-moz-placeholder { color: #ffffff; opacity: 1; }

#filters .chbList {
	margin-bottom: 1em;
	color: #ffffff;
}

#filters .chbList label { cursor: pointer; }
#filters .chbList input { margin-right: 5px; cursor: pointer; }

#filters .chbList .disabled { display: none; }

#filters .chbList.transaction label { text-transform: capitalize; }

#filters input.orangeButton {
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	font-size: 15px;
	font-weight: 300;
}

#filters strong {
	font-size: 15px;
	color: #ffffff;
	display: block;
	text-align: center;
	font-weight: 400;
}

#filters .sliders { width: 100%; overflow: hidden; }

#filters .slider { margin-bottom: 20px; }

#filters .slider > .irs { margin: 0 20px; }

#filters .slider > .irs:before, #filters .slider > .irs:after {
	content: " ";
	position: absolute;
	background-color: #9d9d9d;
	height: 7px;
	width: 20px;
	top: 6px;
	left: -20px;
}

#filters .slider > .irs:after {
	left: auto;
	right: -20px;
}

#filters .slider .fromText, #filters .slider .toText {
	font-size: 13px;
	color: #ffffff;
	float: left;
	width: 50%;
	padding: 0 0 0 20px;
	box-sizing: border-box;
	opacity: 0.6;
}

#filters .slider .toText {
	float: right;
	text-align: right;
	padding: 0 20px 0 0;
}

@media screen
and (max-width: 1024px) {
	#filters .slider .fromText, #filters .slider .toText {
		margin-top: 3px;
	}
}

#filters .slider input {
	display: none;
}

#filters .slider.inactive .fromText, #filters .slider.inactive .toText { visibility: hidden; }

#filters .found {
	text-align: center;
	color: #ffffff;
	margin-bottom: 1em;
	font-size: 15px;
}

#filters .found.loading {
	background-image: url("../img/loader.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

#filters .found.loading span { display: none; }

#filters .setFilter {
	display: inline-block;
	font-size: 13px;
}

/* seznamy nemovitosti */
.nothingFound {
	text-align: center;
	padding: 20px 20px 70px 20px;
	font-size: 20px;
	font-weight: 700;
}

.properties .header {
	padding: 50px 0;
	text-align: center;
}

.onePerRow { width: 236px; }

.onePerRow .properties .header {
	padding: 25px 0 0 0;
}

.properties .header h1, .properties .header h2 {
	font-size: 2em;
	margin: 0.67em 0;
	margin-bottom: 5px;
	font-weight: 300;
}

.properties .header h1 a, .properties .header h2 a { color: #222222; }
.properties .header h1 a:hover, .properties .header h2 a:hover { text-decoration: none; }

.properties .header .propertiesSubtitle {
	margin-bottom: 25px;
}


.homepage .properties .header h2 {
	font-size: 30px;
	font-weight: 300;
	margin-top: 0;
}

.textRightContent .properties .header h2 {
	font-size: 26px;
	line-height: 1em;
	font-weight: 300;
}

.homepage .properties .header .propertiesSubtitle {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 0;
	color: #808080;
}

.topPropertiesTitle {
	font-size: 35px;
	font-weight: 300;
	margin-bottom: 0;
	text-align: center;
	margin-top: 70px;
}

.showAllItems {
	text-align: center;
	margin-bottom: 40px;
}

.showAllItems .orangeButtonSm {
	line-height: 33px;
	padding: 0 15px;
}

.topProperties .showAllItems {
	margin-top: 20px;
}

.properties .header .sorts a, .icons a {
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	color: #000000;
	text-transform: uppercase;
	padding-left: 55px;
	background-position: 12px center;
	background-repeat: no-repeat;
	transition-duration: 0.3s;
}

.properties .header .icons { float: left; }

.icons a.list { background-image: url("../img/icon_list.png"); }
.icons a.gallery { background-image: url("../img/icon_gallery.png"); }
.icons a.map { background-image: url("../img/icon_map.png"); background-position: 18px center; }

.properties .header .sorts a.active, .icons a.active { border: 1px solid #afafaf; }

.sorts {
	text-align: center;
	height: 30px;
}

.sorts .sortForm {
	float: right;
	width: 252px;
	text-align: right;
}

.sorts select {
	display: inline-block;
	margin-left: 20px;
	border: 1px solid #acacac;
	padding: 6px;
	font-size: 11px;
}

.sorts select:first-of-type { margin-left: 0; }

.sellRent {
	text-align: center;
}

.properties .header .sorts .sellRent a {
	display: inline-block;
	border: 1px solid #afafaf;
	text-align: center;
	padding: 0;
	text-transform: lowercase;
	color: #1c2328;
	width: 110px;
	box-sizing: border-box;
}

.sellRent .active {
	background-color: rgba(15,29,66,0.2);
}

.properties .header .sorts .sellRent a:nth-of-type(1) {
	border-right: none;
}

.noLists .sellRent {
	float: left;
}

.filtersSummary { margin-top: 1em; }

.filtersSummary a { white-space: nowrap; }

.filtersSummary a:after { content: ","; }

.filtersSummary a:last-of-type:after { content: ""; }

.demandPrice, .propertiesTable a.demandPrice, .projectsRows .project a.demandPrice { color: #f15629; }
.demandPrice:hover, .propertiesTable a.demandPrice:hover, .projectsRows .project a.demandPrice:hover { text-decoration: underline; }

@media screen
and (max-width: 800px) {
	.sorts { height: auto; }
	.properties .header .icons {
		float: none;
		margin: 0 0 15px 27px;
	}

	.sorts .sortForm {
		float: none;
		text-align: center;
		width: auto;
		margin-bottom: 15px;
	}
}

/* vlajecky */
.flags {
	width: 100%;
	box-sizing: border-box;
	padding: 22px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.flags:before {
	position: absolute;
	content: " ";
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 180px;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	z-index: 0;
}

.flags .flag {
	display: inline-block;
	position: relative;
	color: #ffffff;
	font-size: 15px;
	text-transform: lowercase;
	text-align: left;
	padding-right: 1em;
	z-index: 1;
}

.flags .sale { }
.flags .rent { }

.flags .reserved { color: #f1582b; }
.flags .sold { color: #f1582b; }

.propertiesRows .flags, .projectsRows .flags {
	position: static;
	display: table-cell;
	padding: 0;
	width: auto;
	text-align: right;
}

.propertiesRows .flags:before, .projectsRows .flags:before {
	content: "";
	display: none;
}

.propertiesRows .flags .flag, .projectsRows .flags .flag {
	padding-right: 0em;
	padding-left: 1em;
	color: #1c2328;
}

@media screen
and (max-width: 640px) {
	.propertiesRows .flags .flag, .projectsRows .flags .flag {
		padding-left: 0em;
	}
}

.topFlag {
	position: absolute;
	top: 14px;
	right: 14px;
	background-color: #ffffff;
	color: #000000;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0 10px;
	line-height: 28px;
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.2);
}

.onePerRow .propertiesTabs .topFlag { font-size: 11px; }

@media screen
and (max-width: 640px) {
	.propertiesRows .topFlag, .projectsRows .topFlag {
		top: 91px;
		right: 19px;
	}
}

/* radkovy seznam */

.property { position: relative; }

.propertiesRows .property {
	display: table;
	margin-bottom: 20px;
	background-color: #f1f1f1;
	min-height: 200px;
	font-size: 18px;
	line-height: 1.2em;
}

/*
.propertiesRows .property.noPrices {
	min-height: 150px;
}
*/

.propertiesRows .property .propertyInner {
	display: table-row;
}

.propertiesRows .property a {
	text-decoration: none;
	color: #231f20;
	display: block;
}

.propertiesRows .property a:hover {
	text-decoration: none;
}

.propertiesRows .property .part { display: table-cell; }

.propertiesRows .property .image {
	width: 34%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.propertiesRows .property .image.blank {
	background-image: url("../img/blank_property_image.png");
	background-size: auto;
}

.propertiesRows .property .text {
	width: 42%;
	box-sizing: border-box;
	padding: 28px 50px;
}

.propertiesRows .property h2 {
	font-size: 25px;
	margin-top: 0;
	margin-bottom: 10px;
}

.propertiesRows .property .address {
	margin-bottom: 1em;
}

.propertiesRows .property h2 .area {
	display: inline-block;
	float: right;
}

.propertiesRows .property .price {
	width: 24%;
	background-color: #d0d3db;
	text-align: center;
	vertical-align: middle;
	font-size: 25px;
	font-weight: 300;
	text-transform: uppercase;
}

.propertiesRows .property .orangeButton {
	font-size: 20px;
	text-transform: lowercase;
	padding: 0 15px;
	line-height: 32px;
	color: #ffffff;
	display: block;
	margin: 0 auto;
	width: 70%;
	min-width: 150px;
	margin-top: 17%;
}

.propertiesRows .property .orangeButton.priceText { width: 70%; }

/* dlazdicovy seznam */

.propertiesTabs {

}

.propertiesTabsInner {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.propertiesTabsInner.noHead { margin-top: 50px; }

.propertiesTabs .property {
	width: calc(25% - 22.5px);
	margin: 0 30px 30px 0;
	background-color: #f1f1f1;
	height: 260px;
	transition-duration: 0.3s;
}

.onePerRow .propertiesTabs .property {
	width: 236px;
	margin: 0 0 30px 0;
}

.propertiesTabs .property:nth-of-type(4n), .propertiesTabs .property:last-of-type { margin-right: 0; }

.propertiesTabs .property.noPrices { height: 235px; }

.propertiesTabs.bigTabs .property {
	width: calc(50% - 15px);
	height: 370px;
	margin: 0 0 30px 0;
}

.propertiesTabs.bigTabs .propertiesTabsInner {
	justify-content: space-between;
}

.propertiesTabs .property:hover {
	box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.03);
}

.propertiesTabs .property a.image {
	display: block;
	height: 165px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #f1f1f1;
	position: relative;
}

.propertiesTabs.bigTabs .property a.image {
	height: 295px;
}

.propertiesTabs .property a.image.blank {
	background-image: url("../img/blank_property_image.png");
	background-size: 80%;
}

.propertiesTabs .property .body {
	height: 95px;
	box-sizing: border-box;
	padding: 10px 15px;
	overflow: hidden;
	position: relative;
}

.propertiesTabs .property.noPrices .body { height: 70px; }

.propertiesTabs.bigTabs .property .body {
	height: 75px;
	padding: 15px 20px;
	line-height: 22px;
}

.propertiesTabs .property h2 {
	display: block;
	margin: 0;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 500;
}

.propertiesTabs .property a {
	color: #000000;
}

.propertiesTabs .property a:hover {
	text-decoration: none;
}

.propertiesTabs .property .address {
	display: block;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 5px;
}

.propertiesTabs .property .priceText {
	font-size: 18px;
	font-weight: 500;
}

.propertiesTabs .property .priceText.blank {
	text-decoration: underline;
}

.propertiesTabs.bigTabs .property .priceText {
	display: block;
	position: absolute;
	bottom: 20px;
	right: 20px;
}

@media screen
and (max-width: 920px) {
	.propertiesTabs .property { width: calc(33.3333% - (60px / 3)); }
	.propertiesTabs .property:nth-of-type(4n) { margin-right: 30px; }
	.propertiesTabs .property:nth-of-type(3n), .propertiesTabs .property:last-of-type { margin-right: 0; }

	.propertiesTabs.bigTabs .property { width: 100%; }
	.propertiesTabs.bigTabs .property:nth-of-type(4n) { margin-right:0; }
}


@media screen
and (max-width: 780px) {
	.propertiesTabs .property { width: calc(50% - (30px / 2)); }
	.propertiesTabs .property:nth-of-type(4n) { margin-right: 30px; }
	.propertiesTabs .property:nth-of-type(3n) { margin-right: 30px; }
	.propertiesTabs .property:nth-of-type(2n), .propertiesTabs .property:last-of-type { margin-right: 0; }
}

@media screen
and (max-width: 520px) {
	.propertiesTabs .property {
		width: 100%;
		margin-right: 0;
		overflow: hidden;
	}
	.propertiesTabs .property:nth-of-type(4n) { margin-right: 0; }
	.propertiesTabs .property:nth-of-type(3n) { margin-right: 0; }
	.propertiesTabs .property:nth-of-type(2n), .propertiesTabs .property:last-of-type { margin-right: 0; }

	.propertiesTabs.bigTabs .property .priceText { position: static; }
	.propertiesTabs.bigTabs .property { height: 395px }
	.propertiesTabs.bigTabs .property .body { height: 100px; }
}

@media screen
and (max-width: 400px) {
	.propertiesTabs .property { width: 280px; }
}

@media screen
and (max-width: 680px) {
	.onePerRow { width: 100%; }

	.onePerRow .propertiesTabs .property { width: 100%; }
}

.onePerRow .propertiesTabs .property:nth-of-type(4n) { margin-right: 0; }
.onePerRow .propertiesTabs .property:nth-of-type(3n) { margin-right: 0; }
.onePerRow .propertiesTabs .property:nth-of-type(2n),  .propertiesTabs .property:last-of-type { margin-right: 0; }

/* mapa */

.propertiesMapContainter {
	position: relative;
}

.mapContainer {
	transition-duration: 0.5s;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		height: 100%;
	}
	99% {
		opacity: 0;
		height: 100%;
	}
	100% {
		height: 0;
		opacity: 0;
	}
}

.mapContainer:after, #snippet--content:after {
	display: block;
	content: " ";
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/loader.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50px 50px;

	animation: fadeOut 0.5s;
	animation-fill-mode: forwards;
}

#snippet--content.loading { position: relative; }

.mapContainer.loading:after, #snippet--content.loading:after {
	animation: fadeIn 0.5s;
	animation-fill-mode: forwards;
	z-index: 5;
}

.mapContainer.unloading:after {

}

.propertiesMapContainter .icons {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	background-color: rgba(255,255,255,0.8);
	padding: 5px;
}

@media screen
and (max-width: 540px) {
	.propertiesMapContainter .icons {
		width: 130px;
		text-align: center;
	}
}

.propertiesMap {
	min-height: 600px;
	height: calc(100vh - 76px);
}

.propertiesInfos {
	display: none;
}

.mapPropInfo {
	width: 400px;
	position: relative;
}

.mapPropInfo .inner {
	margin-right: 160px;
}

.mapPropInfo img {
	float: right;
	margin: 0 0 10px 10px;
}

.mapPropInfo a {
	color: #000000;
	display: block;
}

.mapPropInfo a:hover {
	text-decoration: none;
}

.mapPropInfo h2 {
	font-size: 14px;
	margin: 0;
	color: #f1582b;
}

.mapPropInfo .priceText {
	color: #f1582b;
}

.mapPropInfo .flags {
	padding: 0;
	top: 3px;
	right: 3px;
	bottom: auto;
	left: auto;
	width: auto;
	opacity: 0.8;
}

.mapPropInfo .flags:before {
	display: none;
}

.mapPropInfo .flags .flag {
	color: #000000;
	background-color: #ffffff;
	padding: 4px;
	font-size: 12px;
	box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.1);
}

/* detail nemovitosti cast */

.propertyInfo {
	background-color: #ffffff;
}

.propertyInfo .priceText { font-size: 20px; }

.propertyInfo .rightBlock {
	float: right;
	height: 100%;
}

.propertyInfo .rightBlock a {
	display: inline-block;
	font-size: 15px;
	margin-left: 20px;
	color: #000000;
	vertical-align: middle;
}

.propertyInfo .priceComment { color: #f15629; }

.propertyInfo .favlinkWrapper {
	display: inline-block;
}

.propertyInfo .rightBlock .favStar {
	position: static;
	width: auto;
	background-size: 25px 25px;
	background-position: left center;
	padding-left: 35px;
	height: 45px;
	line-height: 45px;
	background-image: url("../img/fav_star_blue_empty.png");
}

.propertyInfo .rightBlock .favStarFull { background-image: url("../img/fav_star_blue_full.png"); }

.propertyInfo .rightBlock .favStar span { display: inline; }

.propertyInfo .rightBlock .favStar.loading, .propertyInfo .rightBlock .favStarFull.loading { background-image: url("../img/loader_black.svg"); }

@media screen
and (max-width: 920px) {
	.propertyInfo .rightBlock .favStar span { display: none; }
}

.propertyImages {
}

.propertyImages a {
	float: left;
	width: calc(33.3333% - (40px / 3));
	margin: 0 20px 20px 0;
	box-sizing: border-box;
	border: 1px solid #f1f1f1;
	transition-duration: 0.3s;
}

.propertyImages a:hover { box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.03); }

.propertyImages a:nth-child(3n) { margin-right: 0; }

.propertyImages img { width: 100%; }

.rollImages {
	position: relative;
	overflow: hidden;
}

.propertyImages a.rollTrigger {
	position: absolute;
	bottom: 21px;
	right: 1px;
	width: 100px;
	height: 100px;
	background-color: rgba(0,0,0,0.5);
	border: 0;
	margin: 0;
	color: #ffffff;
	text-align: center;
	line-height: 100%;
	font-size: 72px;
	font-weight: 100;
	transition-duration: 0s;
}

.propertyImages a.rollTrigger:hover { text-decoration: none; }

.rolling {
	display: none;
}

.propertyText .tableWrapper {
	padding: 0 15%;
}

.floorplans {
	margin-bottom: 40px;
	margin-top: 20px;
}

.floorplans img {
	width: 100%;
}

.floorplans a {
	width: 100%;
	display: block;
	border: 1px solid #E4E4E4;
	margin-bottom: 20px;
}

.propertyText .projectProperties {
	border-top: 1px solid #eaeaea;
	margin: 25px 0 25px 0;
}

@media screen
and (max-width: 880px) {
	.propertyText .tableWrapper {
		padding: 0;
	}
}

@media screen
and (max-width: 960px) {
	.propertyImages a { width: calc(50% - 10px); }
	.propertyImages a:nth-child(3n) { margin-right: 20px; }
	.propertyImages a:nth-child(2n) { margin-right: 0; }
}

.propertyTexts {
	padding-bottom: 2em;
	text-align: justify;
}

.textLeftContent ul {
	padding-left: 19px;
}

.textLeftContent li {
	padding-left: 3px;
	list-style-image: url("../img/bullet.png");
	padding-bottom: 0.2em;
}

/* seznam projektu */

.projectsRows .project {
	background-color: #eaeaea;
	padding: 12px;
	margin-bottom: 35px;
	position: relative;
}

.projectsRows .project .favStar {
	top: 68px;
	left: 22px;
}

.projectsRows .project:hover { box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.03); }

.projectsRows .project a { color: #000000; }

.projectsRows .project a:hover { text-decoration: none; }

.projectsRows .titleContent {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 0 0 20px 0;
}

.projectsRows .project h2 {
	font-size: 18px;
	display: table-cell;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 85%;
}

.projectsRows .project h2 span.address { font-weight: 300; }

.projectsRows .projectGallery {
	margin-bottom: 15px;
}

.projectsRows .projectGallery img { float: left; }

.projectsRows .projectGallery img.bigImage {
	width: 100%;
	margin-bottom: 10px;
}

.projectsRows .projectGallery img.stdImage {
	width: calc(33.3333% - 6.6666px);
	margin-right: 10px;
	height: auto;
}

.projectsRows .projectGallery img.stdImage:nth-child(4) { margin-right: 0; }

.projectsRows .perex { margin-bottom: 15px; }

.projectsRows .footer {
	font-size: 13px;
	line-height: 38px;
}

.projectsRows .footer.normal { line-height: normal; }

.projectsRows .showAll {
	display: inline-block;
	background-color: #f1582b;
	color: #ffffff;
	padding: 10px 15px;
	text-transform: uppercase;
	line-height: normal;
	transition-duration: 0.3s;
}

.projectsRows .showAll:hover {
	background-color: #e25328;
}

.projectsRows .moreInfo { text-transform: lowercase; }

.projectsRows .refNumber { float: right; }

.propertyListGallery {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 15px;
	position: relative;
}

.projectsRows .propertyListGallery div.img {
	width: calc(33% - 4px);
	margin-right: 11px;
}

.projectsRows .propertyListGallery img {
	width: 100%;
}

.projectsRows .propertyListGallery div.img:last-of-type { margin-right: 0; }

.projectProperties {
	width: 100%;
	margin-bottom: 15px;
}

.projectProperties a { display: block; }

.projectProperties td, .projectProperties th {
	height: 30px;
	padding: 0 7px;
	vertical-align: middle;
	background-color: #ffffff;
	border-bottom: 1px solid #eaeaea;
	text-align: center;
	font-size: 15px;
	transition-duration: 0.1s;
}

.projectProperties th {
	background-color: transparent;
	font-size: 14px;
	font-weight: 400;
}

.projectProperties td:first-of-type, .projectProperties th:first-of-type {
	text-align: left;
	padding-left: 14px;
}

.projectProperties td:last-of-type, .projectProperties th:last-of-type {
	text-align: right;
	padding-right: 14px;
	white-space: nowrap;
}

.projectProperties tr:hover td {
	background-color: #f4f4f4;
}


@media screen
and (max-width: 640px) {
	.projectsRows .titleContent { display: block; }

	.projectsRows .project h2 {
		display: block;
		width: 100%;
		margin: 0;
	}

	.projectsRows .project h2 span.name, .projectsRows .project h2 span.address {
		display: table;
		table-layout: fixed;
		width: 100%;
	}

	.projectsRows .project h2 span.name span, .projectsRows .project h2 span.address span {
		display: table-cell;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.projectsRows .project h2 span.name span.sep { display: none; }

	.projectsRows .project .favStar { top: 91px; }
}

@media screen
and (max-width: 840px) {
	.projectPropertiesTable th:nth-child(5), .projectPropertiesTable td:nth-child(5) { display: none; }
}

@media screen
and (max-width: 720px) {
	.projectPropertiesTable th:nth-child(6), .projectPropertiesTable td:nth-child(6) { display: none; }
}

@media screen
and (max-width: 620px) {
	.projectPropertiesTable th:nth-child(4), .projectPropertiesTable td:nth-child(4) { display: none; }
}


@media screen
and (max-width: 1000px) {
	.propertiesUnitsTable th:nth-child(5), .propertiesUnitsTable td:nth-child(5) { display: none; }
}

@media screen
and (max-width: 830px) {
	.propertiesUnitsTable th:nth-child(3), .propertiesUnitsTable td:nth-child(3) { display: none; }
}

@media screen
and (max-width: 750px) {
	.propertiesUnitsTable th:nth-child(6), .propertiesUnitsTable td:nth-child(6) { display: none; }
}

@media screen
and (max-width: 600px) {
	.propertyListGallery { display: block; }
	.projectsRows .propertyListGallery div.img {
		width: calc(50% - 5.5px);
		margin-right: 0;
		float: left;
	}

	.projectsRows .propertyListGallery div.img:nth-child(1) { margin-right: 11px; }
	.projectsRows .propertyListGallery div.img:nth-child(3) { display: none; }
}

@media screen
and (max-width: 450px) {
	.propertyListGallery { display: block; }
	.projectsRows .propertyListGallery div.img {
		width: 100%;
		margin-right: 0;
	}
	.projectsRows .propertyListGallery div.img:nth-child(2) { display: none; }
	.projectsRows .propertyListGallery div.img:nth-child(3) { display: none; }
}

@media screen
and (max-width: 420px) {
	.projectsRows .footer { text-align: center; }

	.projectsRows .refNumber { float: none; margin-bottom: 1em; }

	.projectPropertiesTable th:nth-child(3), .projectPropertiesTable td:nth-child(3) { display: none; }
}

@media screen
and (max-width: 510px) {
	.projectProperties th,.projectProperties td { font-size: 11px; }
}

/* detail nemovitosti */

.specTable {
	width: 100%;
	border-top: 1px solid #e4e4e4;
}

.specTable th {
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid #e4e4e4;
	text-align: left;
	font-weight: 400;
	vertical-align: top;
}

.specTable td {
	padding: 10px 30px 10px 0;
	border-bottom: 1px solid #e4e4e4;
	text-align: right;
	font-weight: 400;
	vertical-align: top;
}

.specTable td:nth-child(2) { font-weight: bold; }

.backToList {
	display: block;
	width: 100%;
	text-align: left;
	position: absolute;
	top: -39px;
	text-transform: lowercase;
}

.pdfLink { text-transform: uppercase; }

.goodFaith {
	font-style: italic;
	text-align: justify;
}

.propertyMap {
	height: 445px;
	margin-top: 2em;
}

.projectDetail .tableWrapper {
	width: 48.3%;
	float: left;
}

.projectText {
	width: 48.3%;
	float: left;
	margin-right: 3.4%;
}

.projectText h3:first-of-type {
	margin-top: 0;
}

strong.header, .properties strong.header {
	display: block;
	background-color: #f1f1f1;
	padding: 10px 0 10px 30px;
	text-transform: uppercase;
	font-weight: 300;
	text-align: left;
}

@media screen
and (max-width: 1170px) {
	.projectDetail .tableWrapper, .projectText {
		width: 100%;
		float: none;
		margin: 0;
	}
}

@media screen
and (max-width: 550px) {
	.specTable th, .specTable td { padding: 10px 0 10px 10px; }
}

@media screen
and (max-width: 380px) {
	.specTable th, .specTable td { font-size: 13px; }
}

/* oblibene */
.favStar {
	position: absolute;
	display: block;
	z-index: 2;
	background-image: url("../img/fav_star_empty.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	top: 10px;
	left: 10px;
	width: 40px;
	height: 38px;
}

.changerOverlay .favStar {
	position: static;
	display: inline-block;
	top: auto;
	left: auto;
	transform: none;
}

.favStar span { display: none; }

.favStar.favStarFull { background-image: url("../img/fav_star_full.png"); }

.favStar.loading, .favStarFull.loading {
	background-image: url("../img/loader.svg");
	background-image: url("../img/loader.svg"), radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 80%);
	border-radius: 1000px;
	background-size: 80% 80%;
}

/* tabulka nemovitosti */
.propertiesTable {
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
}

.propertiesTable th, .propertiesTable td {
	height: 47px;
	box-sizing: border-box;
}

.propertiesTable th {
	background-color: #f1f1f1;
	text-transform: uppercase;
	font-weight: 300;
}

.propertiesTable td {
	border-bottom: 1px solid #e4e4e4;
}

.propertiesTable th:first-of-type, .propertiesTable td:first-of-type {
	padding-left: 20px;
	text-align: left;
	white-space: nowrap;
}

.propertiesTable th:last-of-type, .propertiesTable td:last-of-type {
	padding-right: 20px;
	text-align: right;
	width: 10%;
	white-space: nowrap;
}

.propertiesTable a {
	display: block;
	color: #000000;
	text-decoration: none;
}

.propertiesTableWrapper {
	text-align: center;
	padding-bottom: 50px;
}

@media screen
and (max-width: 1320px) {
	.propertiesTable th, .propertiesTable td { font-size: 13px; }
	.propertiesTableWrapper th:nth-child(5), .propertiesTableWrapper td:nth-child(5) { display: none; }
}

@media screen
and (max-width: 860px) {
	.propertiesTableWrapper th, .propertiesTableWrapper td { font-size: 13px; }
}

@media screen
and (max-width: 750px) {
	.propertiesTableWrapper th:nth-child(6), .propertiesTableWrapper td:nth-child(6) { display: none; }

	.propertiesTableWrapper th, .propertiesTableWrapper td { width: 33.3333%; }

	.propertiesTable th:first-of-type, .propertiesTable td:first-of-type { padding-left: 10px; }
	.propertiesTable th:last-of-type, .propertiesTable td:last-of-type { padding-right: 10px; }
}

@media screen
and (max-width: 420px) {
	.propertiesTableWrapper th:nth-child(3), .propertiesTableWrapper td:nth-child(3) { display: none; }
}

/* contact */
.contactMap {
	height: 600px;
}

.row {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-left: 70px;
}

.half {  }

.team {
	max-width: 1040px;
}

.contact h1, .team h2 {
	font-weight: 300;
	font-size: 35px;
	margin: 35px 0 30px 0;
	text-align: center;
}

.fileNumber {
	font-style: italic;
	text-align: center;
	margin-bottom: 30px;
	font-size: 15px;
}

.openingHours {
	text-align: center;
	margin-bottom: 60px;
	font-size: 18px;
}

.openingHours div {
	display: inline-block;
	text-align: left;
}

.openingHours strong {
	display: block;
}

.contact .row {
	font-size: 18px;
	line-height: 1.5;
}

.contact .title {
	display: inline-block;
	width: 60px;
}

@media screen
and (max-width: 760px) {
	.row {
		display: block;
		padding-left: 0;
	}

	.half {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
}

.contact p { margin: 0; }

.team { margin-bottom: 120px; }

.teamFilter {
	text-align: center;
	margin-bottom: 2em;
}

.teamFilter li, .textLeftContent .teamFilter li {
	list-style-type: none;
	list-style-image: none;
	display: inline-block;
	font-size: 18px;
}

.teamFilter li:after {
	content: "\00a0\00a0|\00a0\00a0";
}

.teamFilter li:last-of-type:after { content: ""; }

.person {
	border-bottom: 1px solid #e4e4e4;
	font-size: 18px;
}

.person h4 {
	margin: 0 0 0 0;
}

.person .header {
	height: 70px;
	line-height: 70px;
}

.person img {
	float: left;
	border-radius: 1000px;
	margin-right: calc(28% - 180px);
	margin-bottom: 25px;
}

.personBody {
	height: 0;
	overflow: hidden;
	transition-duration: 0.2s;
}

.personBody.opened {
	height: auto;
}

.personContact {
    display: flex;
    justify-content: flex-start;
}

.personContact.bottom { margin-bottom: 25px; }

.personContact.header div, .personContact.header h4 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.personContact h4 { width: 28%; }
.personContact .position { width: 43.8%; padding-right: 1.2%; }
.personContact .phone { width: 21.5%; }
.personContact .email { width: 5.5%; }
.personContact .trigger {
	text-align: right;
	color: #000000;
	text-decoration: underline;
}

.personContact.bottom .position { width: 57%; }
.personContact.bottom .phone { width: 29%; }
.personContact.bottom .trigger { text-decoration: none; }

.personContact .trigger:hover { color: #f15629 }

.personContact .trigger.closeArrow {
	background-image: url("../img/contact_up.png");
	background-repeat: no-repeat;
	background-position: center center;
}

.personContact .trigger.closeArrow span { visibility: hidden; }

@media screen
and (max-width: 1410px) {
	.personContact .position { width: 36.6%; }
	.personContact .phone { width: 21.1%; }
	.personContact .email { width: 12.1%; }

	.personContact.bottom { display: block; }

	.personContact.bottom .position,
	.personContact.bottom .email,
	.personContact.bottom .phone
	{
		display: block;
		width: auto;
	}
}

@media screen
and (max-width: 1000px) {
	.personContact .email { display: none; }
	.personContact.bottom .email { display: flex; }
	.personContact .position { width: 42.6%; }
	.personContact .phone { width: 27.1%; }
}

@media screen
and (max-width: 890px) {
	.personContact h4 { width: 42%; }
	.person img { margin-right: calc(42% - 180px); }
	.personContact .phone { display: none; }
	.personContact.bottom .phone { display: flex; }
	.personContact .position { width: 55.7%; }
}

@media screen
and (max-width: 620px) {
	.personContact h4 { width: 97.7%; }
	.personContact .position { display: none; }
	.personContact.bottom .position { display: flex; }
	.person img { margin-right: 40px; }
}

@media screen
and (max-width: 460px) {
	.person img { width: 100px; margin-right: 20px; }
	.personBody, .personContact.bottom { font-size: 14px; }
}

/* directions */

.directionsForm {
	position: absolute;
	bottom: 10px;
	left: 50%;
	padding: 10px;
	border-radius: 5px;
	transform: translateX(-50%);
	width: 30%;
	background-color: #ffffff;
	box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.5);
	box-sizing: border-box;
}

.directionsForm input {
	width: 58%;
	margin-right: 4%;
	margin-bottom: 0;
	float: left;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	box-sizing: border-box;
	border: 1px solid #000000;
}

.directionsForm button {
	width: 37%;
	float: left;
	height: 40px;
	padding: 0;
	display: block;
	color: #ffffff;
	background-color: #f1582b;
	line-height: 40px;
	border: 1px solid #ffffff;
	font-size: 18px;
	font-weight: 300;
	padding: 0 20px;
	box-sizing: border-box;
	transition-duration: 0.3s;
}

.directionsForm button:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: #e25328;
}

@media screen
and (max-width: 1024px) {
	.directionsForm { width: 50%; }
}

@media screen
and (max-width: 640px) {
	.directionsForm { width: 70%; }
}

@media screen
and (max-width: 520px) {
	.directionsForm {
		bottom: -60px;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		z-index: 5;
		border-radius: 0;
		box-shadow: none;
	}

	.locationMap .grayStripe {
		margin-top: 60px;
	}
}

/* prihlaseni a registrace */

.popupForm .half {
	width: 45%;
	float: left;
}

.popupForm .half:nth-child(2n-1) { margin-right: 5%; }

.popupForm h3 {
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	background-color: #f1f1f1;
	margin: 0;
	padding: 12px 30px;
}

.popupForm .popupBody {
	padding: 30px;
}

.popupForm p {
	margin-top: 0;
}

.popupForm p.small {
	font-size: 10px;
}

.popupForm #propName { font-weight: bold; }

.popupForm input, .form input, .popupForm textarea, .form textarea {
	border: none;
	border-bottom: 1px solid #d2d2d2;
	line-height: 40px;
	height: 40px;
	margin-bottom: 2em;
	box-sizing: border-box;
	padding: 0 15px;
	width: 100%;
}

.popupForm textarea, .form textarea {
	border: 1px solid #d2d2d2;
}

.popupForm .orangeButton {
	margin: 1em 0 0 0;
}

.popupForm input[type=file], .form input[type=file] {
	padding: 0;
}

@media screen
and (max-width: 700px) {
	.popupForm .half {
		width: 100%;
		float: none;
	}

	.popupForm .half:nth-child(2n-1) { margin-right: 0; }
}

.popupForm textarea, .form textarea {
	height: 100px;
}

.popupForm label, .form label {
	font-weight: 400;
}

.popupForm .checkbox, .form .checkbox {
	white-space: nowrap;
	vertical-align: top;
	margin-bottom: 1em;
	font-weight: 400;
	color: #969696;
}

.popupForm .checkbox span, .form .checkbox span {
	display: inline-block;
	white-space: normal;
	font-weight: 400;
	color: #969696;
}

.popupForm input[type=checkbox], .form input[type=checkbox] {
	width: auto;
	height: auto;
	display: inline-block;
	margin: 5px 10px 0 0;
	padding: 0;
	vertical-align: top;
}

.popupForm input[type=submit], .form input[type=submit] {
	border: none;
	width: auto;
	display: inline-block;
	background-color: #f1582b;
	color: #ffffff;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	box-sizing: border-box;
	line-height: 40px;
	height: 40px;
	font-weight: 500;
	text-align: center;
	padding: 0px 25px;
	transition-duration: 0.2s;
}

.popupForm input[type=submit]:hover, input[type=submit]:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: #e25328;
}

.dataInfo {
	color: #969696;
	margin-bottom: 1em;
}

/* poptavka */
.demand {
	width: 730px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 2em 0;
}

.demand label { display: block; }

.properties .demandHeader {
	padding: 50px 0 0 0;
}

@media screen
and (max-width: 810px) {
	.demand {
		width: 100%;
	}
}

/* kariera */

.career { line-height: 1.6; }

.career article {}

.career .details {
	display: none;
	padding-top: 1em;
	padding-left: 20px;
	border-left: 1px solid #404040;
	margin: 10px 0 0 10px;
	font-style: italic;
	color: #4c4c4c;
	margin-bottom: 2em;
}

.career h3, .career h4 {
	font-size: 15px;
	margin: 5px 0 0 0;
}

.career h3:before {
	content: "● ";
}

.career h4 { margin-top: 0; }

.career p, .career ul { margin-top: 0; }

.career a.perex { color: #222222; }
.career a.perex:hover { text-decoration: none; }

.career .orangeButton { font-style: normal; }

/* custom offer */
#customOfferAd {
	position: fixed;
	display: block;
	top: 100px;
	right: 0;
	background-color: #1c2328;
	color: #f1582b;
	height: 45px;
	line-height: 44px;
	padding: 0 95px 0 40px;
	text-transform: lowercase;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	transform: rotate(-90deg);
    transform-origin: 100% 100%;
	z-index: 3;
}

#customOfferAd:before {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background-image: url("../img/info.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 26px;
	transform: rotate(90deg);
}

#customOfferAd:hover {
	text-decoration: none;
}

#customOfferAd .longTitle { display: inline; }
#customOfferAd .shortTitle { display: none; }

@media screen
and (max-width: 1160px)
{
	#customOfferAd {
		width: 90px;
		height: 130px;
		transform: none;
		top: 125px;
		font-size: 17px;
		line-height: normal;
		padding: 70px 0 0 0;
		text-align: center;
		box-sizing: border-box;
		opacity: 0.8;
	}

	#customOfferAd:before {
		transform: none;
		background-size: 37px;
		top: 14px;
		left: 24px;
		right: auto;
	}

	#customOfferAd .longTitle { display: none; }

	#customOfferAd .shortTitle {
		display: inline-block;
	}
}

@media screen
and (max-width: 640px) {
	#customOfferAd {
		width: 65px;
		height: 110px;
		font-size: 14px;
		padding: 64px 0 0 0;
	}

	#customOfferAd:before {
		transform: none;
		background-size: 32px;
		top: 5px;
		left: 11px;
		right: auto;
	}

	#customOfferAd .longTitle { display: none; }

	#customOfferAd .shortTitle {
		display: inline-block;
	}
}

/* mobile search */
#mobileSearch {
	position: fixed;
	display: block;
	bottom: 0;
	right: 0;
	background-color: #1c2328;
	width: 45px;
	height: 45px;
	background-image: url("../img/mag_glass.png");
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	z-index: 3;
	display: none;
}

#mobileSearch span { display: none; }

@media screen
and (max-width: 1024px) {
	#mobileSearch { display: block; }
}

/* misc */
.fullWidth { width: 100%; }

/* footer */
footer {
	background-color: #1c2328;
	color: #ffffff;
	font-size: 15px;
	text-align: center;
}

footer .contact {
	background: linear-gradient(to bottom, #ea4222 0%, #bb4922 100%);
	padding: 40px 30px 30px 30px;
}

footer a, footer a:hover { color: #ffffff; }

footer .colsection {
	text-align: center;
	padding-top: 45px;
	padding-left: 0;
}

footer .colsection h2 {
	font-size: 21px;
	margin-bottom: 0.2em;
}

footer .colsection a { display: block; }

footer .links {
	background-color: #faf8f7;
	color: #000000;
}

footer .links a, footer .links a:hover { color: #000000; }

footer .contact img {
	display: inline-block;
	margin-bottom: 35px;
}

footer .col {
	text-align: center;
	width: 22%;
	display: inline-block;
	padding-bottom: 45px;
	vertical-align: top;
}

footer .copyright {
	font-size: 12px;
	padding: 30px;
}

@media screen
and (max-width: 1400px) {
	footer .col {
		width: 32%;
	}
}

@media screen
and (max-width: 920px) {
	footer .col { width: 100%; text-align: center; }
}

/* flashes */

figure.flashes {
	position: fixed;
	width: 370px;
	padding: 15px;
	top: 333px;
	left: 50%;
	margin-left: -200px;
	background-color: #019C9E;
	color: #ffffff;
	font-weight: bold;
	z-index: 12;
	border: 1px solid #ffffff;
}

figure a.closeFlashes {
	display: block;
	float: right;
	font-weight: bold;
	text-decoration: none;
	color: #ffffff;
}

.overContent .flashes {
	margin: 2em;
}

/* recaptcha */

.recaptchaContainer.absolute {
	position: absolute;
	width: 302px;
	height: 76px;
	border-radius: 4px;
	overflow: hidden;
	top: 50%;
	left: 50%;
	margin: -39px 0px 0px -152px;
	box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.8);
}

.pagination { margin-bottom: 1em; }

/* paginator */

.pagination { text-align: center; }
.pagination ul { display:inline-block;margin:0;padding:0;border-radius:3px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.05); }
.pagination li { display:inline; }
.pagination a { float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0; }
.pagination a:hover,.pagination .active a { background-color:#f5f5f5; }
.pagination .active a { color:#999999;cursor:default; }
.pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover { color:#999999;background-color:transparent;cursor:default; }
.pagination li:first-child a { border-left-width:1px;border-radius:3px 0 0 3px; }
.pagination li:last-child a { border-radius:0 3px 3px 0; }
.pagination-centered { text-align:center; }
.pagination-right { text-align:right; }

/* errors default */

ul.error, ul.flashes {
	display: block;
	background-color: #ee630f;
	color: #ffffff;
	padding: 0;
	margin: 1rem 0rem;
}

ul.flashes {
	background-color: #a7a7a7;
}

ul.error li, ul.flashes li {
	padding: 5px 10px;
	margin: 0px;
	list-style-type: none;
	list-style-image: none;
}

ul.flashes .error {
	background-color: #ee630f;
}

/* popups */
/* 2do responzivita */

.fixContent {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/black_80.png");
	background-repeat: repeat;
	overflow-y: auto;
}

.fixContent.showed { display: block; }

.overContent {
	width: 80%;
	max-width: 50rem;
	box-sizing: border-box;
	background-color: #ffffff;
	margin: 0 auto;
	margin-top: 6.25rem;
	position: relative;
}

.overContent .close {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	line-height: 47px;
	text-align: center;
	color: #000000;
	text-decoration: none;
	font-size: 20px;
	color: #f15629;
	background-image: url("../img/orange_close.png");
	background-position: center center;
	background-repeat: no-repeat;
}

.close:hover {
	color: #000000;
	text-decoration: none;
}

@media screen
and (max-width: 640px) {
	.overContent {
		margin-top: 10px;
		width: calc(100% - 20px);
	}

	.popupBody p { text-align: justify; }
}

/* chyby v poupuech */

.fixContent ul.flashes {
	background-color: transparent;
	color: #000000;
}


/* - - - */

a[href^="error:"] {
	background: red;
	color: white;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

div.center {
	text-align: center;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}
