/* common */
html {
	position: relative;
	top: 0px;
	left: 0px;/*transition: left .5s ease-out;*/
}
html.slided {
	top: 0px;/*left: -300px;			*/
}
body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	font-family: 'rawline';
	background-color: #FFFFFF;
	overflow-x: hidden;
}
select {
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('../img/selectarrow_dark.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 5px) calc(50% + 21px);
}
select.light {
	background-image: url('../img/selectarrow_light.png');
}
select.gray {
	background-image: url('../img/selectarrow_gray.png');
}
 select::-ms-expand {
 display: none;
}
select option {
	font-size: inherit;
	font-family: inherit;
	color: rgba(0, 0, 0, 1.0);
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.float-none {
	float: none;
}
span.clear,  div.clear {
	clear: both;
}
div.push_025em {
	width: 100%;
	content: " ";
	height: .25em;
}
div.push_05em {
	width: 100%;
	content: " ";
	height: .5em;
}
div.push_1em {
	width: 100%;
	content: " ";
	height: 1em;
}
div.push_2em {
	width: 100%;
	content: " ";
	height: 2em;
}
div.push_5em {
	width: 100%;
	content: " ";
	height: 5em;
}
h1.no-bottom-margin, h1.nomargin-bottom,  h2.no-bottom-margin, h2.nomargin-bottom,  p.no-bottom-margin, p.nomargin-bottom,  div.no-bottom-margin, div.nomargin-bottom {
	margin-bottom: 0px !important;
}
h1.no-top-margin, h1.nomargin-top,  h2.no-top-margin, h2.nomargin-top,  p.no-top-margin, p.nomargin-top,  div.no-top-margin, div.nomargin-top {
	margin-top: 0px !important;
}
p.default-hidden {
	display: none;
}
div.default-hidden {
	display: none;
}
body {
	font-family: 'Calibri';
}
a {
	text-decoration: none;
}
/* alternative grids */
.grid-fw {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	clear: both;
}
.grid-hw {
	position: relative;
	display: block;
	width: 50%;
	max-width: 50%;
	padding: 0px;
	margin: 0px;
	float: left;
}
.grid-100,  .grid-50,  .grid-33 {
	position: relative;
	display: block;
	height: auto;
	padding: 0px 10px;
	margin: 0px;
	box-sizing: content-box;
}
.grid-100 {
	width: calc(100% - 20px);
	max-width: calc(100% - 20px);
	clear: both;
}
.grid-50 {
	width: calc(50% - 20px);
	max-width: calc(50% - 20px);
	float: left;
}
.grid-33 {
	width: calc(33.3% - 20px);
	max-width: calc(33.3% - 20px);
	float: left;
}
/* content common */

.gradient {
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
}
h2 {
	position: relative;
	font-size: 23px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 1.5em;
}
h2 a {
	color: rgba(29, 29, 27, 1.0);
}
h2:after {
	content: " ";
	display: block;
	position: absolute;
	left: 0px;
	bottom: -0.75em;
	width: 50px;
	height: 2px;
	background-color: rgba(29, 29, 27, 1.0);
	transition: width .5s ease-out;
}
p {
	font-size: 16px;
	color: rgba(29, 29, 27, 1.0);
	line-height: 1.25em;
	margin-bottom: 1em;
}
p a {
	color: rgba(29, 29, 27, 1.0);
}
p.callout {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 18px;
}
p.small {
	margin: 1em 0em;
	color: rgba(141, 141, 140, 1.0);
	font-size: 14px;
	line-height: 1.25em;
}
p.small > a {
	color: rgba(141, 141, 140, 1.0);
	text-decoration: underline;
}
p.small > a:hover {
	color: rgba(29, 29, 27, 1.0);
}
/* buttons */

.button {
	display: inline-block;
	position: relative;
	border: 0px;
	padding: 10px 10px;
	margin: 1px;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
	color: rgba(255,255,255,1);
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	line-height: 1em;
}
button.button {
	min-width: 160px;
}
.sidebar .button {
	width: 100%;
	margin: 10px 0;
	background: #970c10;
	transition: all 0.3s;
}
.sidebar .button:hover {
	background: #970c10cc;
}
.button.button-bordered {
	min-width: 132px;
	color: rgba(29, 29, 27, 1.0);
	color: #1d1d1b;
	z-index: 1;
}
.button.button-bordered:after {
	content: " ";
	display: inline-block;
	position: absolute;
	height: calc(100% - 2px);
	width: calc(100% - 2px);
	top: 1px;
	left: 1px;
	background-color: rgba(255, 255, 255, 1.0);
	border-radius: 5px;
	z-index: -1;
	transition: background .5s ease-out;
}
.button.button-black {
	background: rgba(0, 0, 0, 1.0);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
	font-size: 14px;
	padding: 7px 20px;/*border: 1px solid rgba(0, 0, 0, 1.0);*/
}
.button:hover {
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
}
.button.button-white {
	background: rgba(255,255,255,1) url("../img/selectarrow_dark.png") calc(100% - 10px) calc(50% + 21px) no-repeat;
	padding: 9px;
	border: 1px solid rgba(29, 29, 27, 1.0);
	color: rgba(29, 29, 27, 1.0);
	padding-right: 35px;
	min-width: 80px;
	text-align: center;
}
.button.button-white:hover {
	background: rgba(255,255,255,1) url("../img/selectarrow_dark.png") calc(100% - 10px) calc(50% + 21px) no-repeat;
}
.button.button-white.active {
	background: rgba(255,255,255,1) url("../img/selectarrow_dark.png") calc(100% - 10px) calc(50% - 21px) no-repeat;
	padding: 9px;
	border: 1px solid rgba(29, 29, 27, 1.0);
	color: rgba(29, 29, 27, 1.0);
	padding-right: 35px;
	min-width: 80px;
	text-align: center;
}
.button.button-white.active:hover {
	background: rgba(255,255,255,1) url("../img/selectarrow_dark.png") calc(100% - 10px) calc(50% - 21px) no-repeat;
}
.button.button-bigradius {
	border-radius: 3px;
	padding-top: 7px !important;
	padding-bottom: 8px !important;
}
input.button.button-bigradius {
	border-radius: 3px;
	padding-top: 5px !important;
	padding-bottom: 6px !important;
}
.button.button-black.button-bigradius {
	padding-top: 7px !important;
	padding-bottom: 8px !important;
}
/* imgviewer */

a.img-wrapper {
	display: block;
	border: 0px;
	color: transparent;
	overflow: hidden;
}
a.img-wrapper img {
	transform: scale(1);
	transform-origin: 50% 50%;
	transition: transform .25s;
}
a.img-wrapper:hover img {
	transform: scale(1.25);
}
#imgviewer_overlay {
	display: block;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 1000;
	background-color: rgba(0,0,0,.80);
}
#imgviewer_overlay > div {
	position: relative;
	height: 100%;
	width: 100%;
}
#imgviewer_overlay div.imgviewer_sensor {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
}
#imgviewer_overlay .imgviewer_wrapper {
	display: inline-block;
	position: relative;
	text-align: center;
	opacity: 0;
	transition: opacity .5s;
	transform: translateX(-50%) translateY(-50%);
	top: 50%;
	left: 50%;
	min-width: 50%;
    min-height: 50%;
}
#imgviewer_overlay.shown .imgviewer_wrapper {
	opacity: 1;
}
#imgviewer_overlay .imgviewer_wrapper img {
	position: relative;
	max-height: 95vh;
	max-width: 95vw;
	height: auto;
	height: auto;
	cursor: pointer;
}
#imgviewer_overlay .imgviewer_wrapper > div {
	display: inline-block;
	width: 100%;
    height: 100%;
}
#imgviewer_overlay .imgviewer_title {
	display: inline-block;
	position: absolute;
	bottom: 10px;
	left: 10px;
	text-align: left;
	color: rgba(0,0,0,1);
	border: 0px;
	font-size: 14px;
	cursor: pointer;
	transition: color .5s;
	background-color: rgba(255,255,255,.33);
	border-radius: 40px;
	height: 1em;
	font-weight: bold;
	line-height: 1em;
	padding: 0.2em 0.5em;
}
#imgviewer_overlay .imgviewer_close {
	display: inline-block;
	position: absolute;
	bottom: 0px;
	right: 0px;
}
#imgviewer_overlay .imgviewer_close_button {
	display: inline-block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	border: 0px;
	font-size: 40px;
	cursor: pointer;
	background-color: rgba(0,0,0,.25);
	border-radius: 40px;
	height: 1em;
	width: 1em;
	line-height: 1em;
	transition: background-color .3s ease-out;
}
#imgviewer_overlay .imgviewer_close_button:hover {
	background-color: rgba(0,0,0,.6);
}
#imgviewer_overlay .imgviewer_close_button:before,  #imgviewer_overlay .imgviewer_close_button:after {
	content: " ";
	display: block;
	position: absolute;
	right: calc(50% - 1px);
	top: calc(50% + 0px);
	height: .5em;
	width: 0em;
	transform-origin: 50% 50%;
	transform: translateY(-50%) rotateZ(-45deg);
	border-left: 1px solid white;
}
#imgviewer_overlay .imgviewer_close_button:after {
	transform: translateY(-50%) rotateZ(45deg);
}
#imgviewer_overlay .imgviewer_button {
	display: inline-block;
	position: absolute;
	bottom: 50%;
	border: 0px;
	font-size: 40px;
	cursor: pointer;
	background-color: rgba(0,0,0,.25);
	border-radius: 40px;
	height: 1em;
	width: 1em;
	line-height: 1em;
	transition: background-color .3s ease-out;
}
#imgviewer_overlay .imgviewer_button:hover {
	background-color: rgba(0,0,0,.6);
}
#imgviewer_overlay .imgviewer_next {
	right: 10px;
}
#imgviewer_overlay .imgviewer_prev {
	left: 10px;
}
#imgviewer_overlay .imgviewer_next:after,  #imgviewer_overlay .imgviewer_prev:after {
	content: " ";
	display: block;
	position: absolute;
	top: calc(50% + 0px);
	height: .33em;
	width: .33em;
	transform-origin: 50% 50%;
	transform: translateY(-50%) rotateZ(-45deg);
	border: 1px solid white;
}
#imgviewer_overlay .imgviewer_next:after {
	left: calc(25% - 0px);
	border-top: 0px;
	border-left: 0px;
}
#imgviewer_overlay .imgviewer_prev:after {
	right: calc(25% - 0px);
	border-bottom: 0px;
	border-right: 0px;
}
/* carousel */
.carousel {
}
.carousel-head {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.carousel-slider {
	white-space: nowrap;
	position: relative;
	height: 100%;
	font-size: 0;
	left: 0px;
	transition: left .5s ease-out;
}
.carousel-slider > * {
	display: inline-block;
	padding: 0px;
	margin: 0px;
	border: 0px;
}
.carousel-head .carousel-handle,  .carousel-head .carousel-handle > i {
	display: inline-block;
	position: absolute;
	top: 50%;
	border: 0px;
	font-size: 40px;
	cursor: pointer;
	background-color: rgba(0,0,0,.25);
	border-radius: 1em;
	height: 1em;
	width: 1em;
	line-height: 1em;
	transform: translateY(-50%);
	transition: background-color .5s ease-out;
}
.carousel-head .carousel-handle > i {
	top: 0px;
	left: 0px;
	background: transparent;
	transform: none;
}
.carousel-head .carousel-handle:hover {
	background-color: rgba(0,0,0,.6);
}
.carousel-head .carousel-handle.next {
	right: 10px;
}
.carousel-head .carousel-handle.prev {
	left: 10px;
}
.carousel-head .carousel-handle.zoom {
	transform: none;
	top: auto;
	right: 10px;
	bottom: 10px;
}
.carousel-head .carousel-handle.zoom:after {
	content: " ";
	display: block;
	position: absolute;
	right: calc(50% - 1px);
	top: calc(50% + 0px);
	height: .5em;
	width: 0em;
	transform-origin: 50% 50%;
	transform: translateY(-50%) rotateZ(45deg);
	border-left: 1px solid white;
}
.carousel-head .carousel-handle.zoom i:before {
	content: " ";
	display: block;
	position: absolute;
	right: calc(30% + 0px);
	top: calc(31% + 0px);
	height: .12em;
	width: .12em;
	border-top: 1px solid white;
	border-right: 1px solid white;
}
.carousel-head .carousel-handle.zoom i:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: calc(30% + 0px);
	left: calc(31% + 0px);
	height: .12em;
	width: .12em;
	border-bottom: 1px solid white;
	border-left: 1px solid white;
}
.carousel-head .carousel-handle.next:after,  .carousel-head .carousel-handle.prev:after {
	content: " ";
	display: block;
	position: absolute;
	top: calc(50% + 0px);
	height: .33em;
	width: .33em;
	transform-origin: 50% 50%;
	transform: translateY(-50%) rotateZ(-45deg);
	border: 1px solid white;
}
.carousel-head .carousel-handle.next:after {
	left: calc(25% - 0px);
	border-top: 0px;
	border-left: 0px;
}
.carousel-head .carousel-handle.prev:after {
	right: calc(25% - 0px);
	border-bottom: 0px;
	border-right: 0px;
}
.carousel-strip {
	display: block;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
}
.carousel-strip-slider {
	position: relative;
	font-size: 10px;
	width: 100%;
	margin-left: 50%;
	left: 0px;
	transition: left .5s ease-out;
}
.carousel-strip-slider > * {
	display: inline-block;
	position: relative;
	transform: translateX(-50%);
}
.carousel-strip-slider img {
	max-height: 65px;
	padding: 2px;
	border-radius: 5px;
}
.carousel-strip .fade {
	display: block;
	position: absolute;
	top: 0px;
	height: 100%;
	width: 15%;
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 5%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 5%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,1) 5%, rgba(255,255,255,0) 100%);
}
.carousel-strip .fade.right {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 95%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 95%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 95%);
}
/* common */

/* header */

header {
	position: fixed;
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px;
	height: 50px;
	background-color: rgba(255,255,255,0.80);
	border-bottom: 4px solid red;
	z-index: 1000;
}
header:after {
	content: " ";
	position: absolute;
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px;
	height: 4px;
	bottom: -4px;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
}
header a.logo {
	display: block;
	float: left;
	height: 50px;
	width: 47px;
	background: transparent url('../img/logo.png') center left no-repeat;
}
header nav {
	display: block;
	float: left;
}
header nav ul,  header nav ul li {
	display: inline-block;
	height: 50px;
}
header nav ul li a {
	display: inline-block;
	position: relative;
	color: rgba(29, 29, 27, 1.0);
	text-transform: uppercase;
	font-weight: bold;
	line-height: 50px;
	padding: 0px 19px;
	font-size: 16px;
}
.tel_fent {
    color: rgba(29, 29, 27, 1.0);
    font-weight: bold;
    line-height: 50px;
    padding: 0px 0 0 10px;
    font-size: 16px;
	position: relative;
}
header nav ul li a:after,
.tel_fent:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: 13px;
	width: 0px;
	height: 2px;
	background-color: rgba(29, 29, 27, 1.0);
	transform: translateX(-50%);
	left: 50%;
	transition: width .5s ease-out;
}
.tel_fent:after {
	top: 20px;
}
header nav ul li a:hover:after,
.tel_fent:hover:after {
	width: 50px;
}
header nav.mobile-menu ul li a:hover:after {
	width: 0px;
}
header nav .search,  header nav .favourites {
	position: relative;
	display: inline-block;
	color: rgba(29, 29, 27, 1.0);
	font-size: 22px;
	margin-left: 12px;
	width: auto;
}
header nav .favourites.active i:before,  header nav .favourites:hover i:before {
	content: "\f004";
}
header nav .favourites .badge {
	position: absolute;
	font-size: 16px;
	left: 20px;
	bottom: -5px;
	font-weight: bold;
}
header nav .language {
	display: inline-block;
	color: rgba(0,0,0,1);
}
header nav .language a {
	display: inline-block;
	color: rgba(0,0,0,1);
	padding: 0px 2px;
	font-weight: bold;
	font-size: 16px;
}
header nav .button {
	font-size: 16px;
}
header .floating-callout .floating-callout-box {
	display: block;
	width: 100%;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: rgba(29, 29, 27, 1.0);
	color: rgba(255, 255, 255, 1.0);
	line-height: 33px;
	height: 30px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
}
header .floating-callout .floating-callout-box a {
	color: rgba(255, 255, 255, 1.0);
}
/* form elements */
form {
}
form.sidebar {
	padding: 12px 0 5px 12px;
}
.sidebar h3 {
    text-transform: uppercase;
    font-size: 17px;
	text-align: center;
	margin: 0 0 10px 0;
}
form input[type='text'] {
	border: 1px solid rgba(141, 141, 140, 1.0);
	border-radius: 10px;
	background-color: transparent;
	color: rgba(141, 141, 140, 1.0);
	font-size: 17px;
	padding: 0 15px;
	margin: 0px 0px 15px 0px;
	width: calc(295px - 32px);
	max-width: calc(100% - 32px);
	height: 41px;
}
form textarea {
	border: 1px solid rgba(141, 141, 140, 1.0);
	border-radius: 10px;
	background-color: transparent;
	color: rgba(141, 141, 140, 1.0);
	font-size: 17px;
	padding: 10px 15px;
	margin: 0px 0px 15px 0px;
	resize: none;
	height: 100px;
	border-radius: 3px;
    font-size: 15px;
}
form select {
	border: 1px solid rgba(141, 141, 140, 1.0);
	border-radius: 10px;
	background-color: transparent;
	color: rgba(141, 141, 140, 1.0);
	font-size: 17px;
	padding: 12px 25px 12px 15px;
	margin: 0px 0px 15px 0px;
	width: calc(295px - 0px);
	max-width: calc(100% - 0px);
}
form textarea.medium,  form input.medium {
	width: 320px;
}
form textarea.full,  form input.full {
	width: calc(100% - 32px);
}
form input[type='checkbox'],  form input[type='radio'] {
	visibility: hidden;
	height: 0px;
	width: 0px;
	position: absolute;
}
form input[type='checkbox'] + label:before,  form input[type='radio'] + label:before {
	content: " ";
	height: 2em;
	width: 1.75em;
	height: 1.5em;
    width: 1.5em;
	margin-right: 0.5em;
	display: inline-block;
	background-color: rgba(246, 246, 246, 1.0);
	border-radius: 3px;
	vertical-align: middle;
	font-family: "FontAwesome";
	text-align: center;
	color: rgba(29, 29, 27, 1.0);
}
form input[type='checkbox']:checked + label:before,  form input[type='radio']:checked + label:before {
	content: "\f00c";
}
form label {
	display: inline-block;
	font-size: 15px;
	line-height: 2em;
	color: rgba(141, 141, 140, 1.0);
	margin-bottom: 1em;
	min-width: 133px;
	text-align: left;
}
form label.small {
	min-width: 80px;
}
form .inputgroup {
	display: inline-block;
	position: relative;
	border: 1px solid rgba(141, 141, 140, 1.0);
	border-radius: 10px;
	background-color: transparent;
	color: rgba(141, 141, 140, 1.0);
	font-size: 17px;
	padding: 5px 5px 5px 15px;
	margin: 0px 0px 15px 0px;
	width: calc(295px - 22px);
	max-width: calc(100% - 22px);
	white-space: nowrap;
	text-align: right;
}
form .inputgroup > span {
	display: inline-block;
	text-align: left;
	float: left;
	line-height: 30px;
}
form .inputgroup > input[type='text'] {
	border: 0px;
	background-color: rgba(235, 235, 236, 1.0);
	width: calc(120px - 20px);
	max-width: calc(120px - 20px);
	width: calc(105px - 20px);
	text-align: center;
	padding: 5px 10px;
	margin: 0px;
	border-radius: 5px;
	font-style: italic;
	height: auto;
}
form .inputgroup > input[type='text'].medium {
	width: calc(120px - 20px);
	max-width: calc(120px - 20px);
}
form .inputgroup > input[type='text'].small {
	width: calc(38px - 20px);
	max-width: calc(38px - 20px);
}
form.sidebar * {
}
form.sidebar input[type='checkbox'] + label:before,  form.sidebar > div > select,  form.sidebar > div > .inputgroup,  form.sidebar > div > input[type='text'] {
	background-color: rgba(255,255,255,1);
}
form.sidebar > select,  form.sidebar > .inputgroup,  form.sidebar > input[type='text'] {
	margin-top: 0px;
	margin-bottom: 12px;
}
form.sidebar input[type='checkbox'] + label:before {
	display: none;
}
form.sidebar input[type='checkbox'] + label:after,  form.sidebar input[type='radio'] + label:after {
	content: " ";
	height: 1.5em;
	width: 1.5em;
	margin-left: 7px;
	margin-right: 1em;
	display: inline-block;
	background-color: rgba(255, 255, 255, 1.0);
	border: 1px solid rgba(141, 141, 140, 1.0);
	border-radius: 3px;
	vertical-align: bottom;
	font-family: "FontAwesome";
	text-align: center;
	color: rgba(29, 29, 27, 1.0);
}
form.sidebar input[type='checkbox']:checked + label:after,  form.sidebar input[type='radio']:checked + label:after {
	content: "\f00c";
}
form.sidebar label {
	text-align: right;
}
/* main and contents */

main {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100vh;
	min-height: calc( 100vh - 214px );
}
main > div.container {
	padding-top: calc(64px + 15px);
}
div.background-wrapper {
	display: block;
	z-index: -10;
	position: absolute;
	width: 100vw;
	height: 56.25vw;
	height: 700px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
div.background-wrapper:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: 0px;
	width: 100vw;
	height: 400px;
	background: -webkit-linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);
	background: -o-linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);
	background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);
}
div.callout-big,
h1.callout-big {
	position: relative;
	margin-top: 0.5em;
    margin-bottom: 0.5em;
	font-size: 30px;
	text-align: center;
}
div.callout-big > span,
h1.callout-big > span {
	color: rgba(29, 29, 27, 1.0);
	background-color: rgba(255, 255, 255, .80);
	background-color: transparent;
	display: inline-block;
	padding: 0;
	border-radius: 0.25em;
	text-transform: uppercase;
}
.body_2 h1.callout-big > span {
	background-color: rgba(255, 255, 255, .80);
	padding: 0.5em 0.5em;
}
div.callout-sub {
	position: relative;
	margin-top: 0.5em;
	font-size: 36px;
	text-align: center;
	font-weight: normal;
    text-transform: none;
    margin-bottom: 0;
}
div.callout-sub > span{
	color: rgba(29, 29, 27, 1.0);
	background-color: rgba(255, 255, 255, .80);
	display: inline-block;
	padding: 0.33em 0.5em;
	border-radius: 0.25em;
	text-transform: uppercase;
}
div.callout-paragraph,
h2.callout-paragraph {
	position: relative;
	margin-top: 0.75em;
	font-size: 17px;
	text-align: center;
	font-weight: normal;
    text-transform: none;
    margin-bottom: 0;
}
h2.callout-paragraph:after {
	display: none;
    content: normal;
}
div.callout-paragraph > span,
h2.callout-paragraph > span {
	max-width: 90%;
	color: rgba(29, 29, 27, 1.0);
	background-color: rgba(255, 255, 255, .80);
	background-color: transparent;
	display: inline-block;
	padding: 0;
	border-radius: 0.25em;
	line-height: 1.25em;
}
.body_2 h2.callout-paragraph > span {
	background-color: rgba(255, 255, 255, .80);
	padding: 0.5em 0.5em;
}
div.callout-paragraph > span strong,
h2.callout-paragraph > span strong {
	text-transform: uppercase;
	font-size: 17px;
}
div.map-search {
	position: relative;
	/*min-height: 600px;*/
	background-color: rgba(255, 255, 255, .8);
	border-radius: 5px;
}
div.map-search .map-area {
	position: relative;
	width: 100%;
	border-radius: 5px 5px 0 0;
	z-index: 10;
	height: 588px;
}
.modal-window div.map-search .map-area {
	border-radius: 5px;
}
div.map-search .map-area:before {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	background-color: rgba(255, 255, 255, 1.0);
	height: 20px;
	bottom: 0px;
	z-index: -1;
}
.modal-window div.map-search .map-area:before {
	background-color: transparent;
}
div.map-search .map-area .map-wrapper {
	display: block;
	position: relative;
	width: calc(100% - 5px);
	height: 576px;
	margin: 5px 5px 5px 0;
	border: 1px solid rgba(230, 231, 232, 1.0);
	border-radius: 5px;
	overflow: hidden;
}
.map-canvas-kereso {
    width: 100%;
    height: 100%;
}
.map-canvas-kereso .infowindow {
	font-family: 'Calibri';
}
div.map-search .map-area iframe {
	top: 0px;
	left: 0px;
	width: 100%;/*height: 600px;*/
}
div.map-search .footer-area {
	position: relative;
	z-index: 1;
	margin-top: -15px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
	padding: 15px 25px 0px 25px;
	color: rgba(255,255,255,1);
	border-radius: 5px;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
}
div.map-search .footer-area form {
	float: right;
	font-weight: normal;
}
div.map-search .footer-area form > select {
	border: 0px;
	background-color: transparent;
	color: rgba(255,255,255,1);
	line-height: 1em;
	width: auto;
	min-width: 0px;
	font-size: 14px;
	padding: 0 35px 0 15px;
	margin-bottom: 0;
	background-size: 19px;
    background-position: right 6px top -3px;
}
div.map-search .footer-area:after {
	content: " ";
	display: block;
	height: 30px;
	width: 30px;
	background-color: rgba(38, 136, 184, 1.0);
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform-origin: 50% 50%;
	transform: translateX(-50%) translateY(+50%) rotateZ(45deg);
	z-index: -2;
	display: none;
	content: "";
}
div.labeled-box {
	margin-top: 4em;
	position: relative;
	display: block;
}
div.labeled-box.box-shadow > .border-wrapper {
	box-shadow: 0px 0px 10px rgba(29, 29, 27, .75);
}
div.labeled-box > h1,
div.labeled-box > h3 {
	display: inline-block;
	position: absolute;
	bottom: 100%;
	left: 20px;
	border: 0px;
	padding: 10px 10px 10px 10px;
	margin: 0px;
	min-width: 140px;
	text-align: center;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
	color: rgba(255,255,255,1);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
div.labeled-box div.border-wrapper {
	position: relative;
	display: block;
	background-color: rgba(255,255,255,1);
	border-radius: 5px;
	border: 1px solid rgba(179, 178, 178, 1.0);
	overflow: hidden;
	min-height: 250px;
}
div.labeled-box.no-border div.border-wrapper {
	border: 0px;
}
div.labeled-box div.content {
	padding: 16px;
}
div.labeled-box .result-card div.content {
	padding-bottom: 45px;
}
div.labeled-box .border-callout-box {
	display: block;
	position: relative;
	width: 100%;
	background-color: rgba(29, 29, 27, 1.0);
	color: rgba(255, 255, 255, 1.0);
    line-height: 30px;
    height: 30px;
	padding: 0px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
}
span.labeled-image-wrapper {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0px;
	margin: 0px;
	width: calc(100% - 5px);
}
span.labeled-image-wrapper img {
}
span.labeled-image-wrapper .label {
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background-color: rgba(255, 255, 255, .80);
	line-height: 2em;
	text-indent: 1em;
	font-size: 18px;
	color: rgba(29, 29, 27, 1.0);
	text-transform: uppercase;
	font-weight: bold;
}
span.labeled-image-wrapper .label:after {
	content: " ";
	position: absolute;
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px;
	height: 4px;
	bottom: 0px;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
}
div.result-card {
	position: relative;
	/*height: 450px;*/
	border: 1px solid rgba(179, 178, 178, 1.0);
	border-radius: 5px;
	overflow: hidden;
	padding: 0px;
	margin: 0px;
	margin-bottom: 45px;
	transition: all, 0.3s;
}
div.result-card:hover {
	box-shadow: 0px 0px 15px rgba(72, 72, 72, 0.4);
	/*border:1px solid rgba(255,255,255,1);*/
}
div.result-card a.card-image {
    display: block;
    width: 100%;
    height: 194px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
div.result-card > hr {
	border: 0px;
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px;
	height: 4px;
	bottom: 0px;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
}
div.result-card .content {
	padding: 15px 25px 35px 25px;
	width: calc(100% - 50px);
}
div.flat-data {
	position: relative;
}
div.flat-data:after {
	content: " ";
	position: absolute;
	right: -10px;
	top: 10px;
	height: calc(100% - 20px);
	width: 1px;
	border-right: 1px solid rgba(218, 218, 218, 1.0);
}
div.flat-data h3,  div.result-card h3 {
	font-size: 23px;
	color: rgba(29, 29, 27, 1.0);
	text-transform: uppercase;
	margin: 0px 0px 5px 0px;
	padding: 0px;
	text-indent: -10px;
	white-space: nowrap;
}
 div.result-card h3 {
	font-size: 16px;
}
div.flat-data p,  div.result-card p {
	color: rgba(137, 139, 142, 1.0);
	margin: 0px;
	padding: 0px;
	font-size: 15px;
	line-height: 1.75em;
}
 div.result-card p {
	text-transform: none;
}
div.flat-data p > em,  div.result-card p > em {
	text-transform: initial;
	color: rgba(29, 29, 27, 1.0);
	font-style: initial;
	float: right;
	font-weight: 700;
}
div.flat-data p > em {
	font-weight: 700;
}
div.flat-desc > p {
	color: rgba(127, 127, 127, 1.0);
	font-size: 16px;
    line-height: 1.25em;
    margin: 1em 0;	
}
div.flat-desc > ul {
    margin: 1em 0;	
	list-style: disc;
    padding-left: 20px;
}
div.flat-desc > ul li {
	color: rgba(127, 127, 127, 1.0);
	font-size: 16px;
    line-height: 1.25em;
}
div.flat-desc h3,
div.flat-desc h4,
div.flat-desc h5 {
	color: rgba(127, 127, 127, 1.0);
	font-size: 16px;
    line-height: 1.1em;
    margin: 1em 0;	
}
div.flat-desc h3 {
	font-size: 28px;
}
div.flat-desc h4 {
	font-size: 24px;
}
div.flat-desc h5 {
	font-size: 20px;
}
div.flat-desc p.more-hidden {
	display: none;
}
div.result-card .card-footer {
	display: block;
	position: absolute;
	bottom: 0px;
	height: 30px;
	padding: 3px 25px 3px 25px;
	width: calc(100% - 50px);
	font-size: 20px;
	color: rgba(29, 29, 27, 1.0);
	font-weight: bold;
	line-height: 30px;
}
div.result-card .card-footer:before {
	content: " ";
	border: 0px;
	border-top: 1px solid rgba(236, 236, 236, 1.0);
	display: block;
	position: absolute;
	top: 0px;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
}
div.flat-data .card-footer {
	display: block;
	position: relative;
	bottom: 0px;
	height: 38px;
	border-top: 1px solid rgba(236, 236, 236, 1.0);
	padding: 0px 25px;
	width: calc(100% - 0px);
	font-size: 32px;
	color: rgba(29, 29, 27, 1.0);
	font-weight: bold;
	line-height: 38px;
	margin-top: 0.25em;
	padding: 0px;
	padding-top: 0.25em;
}
div.flat-data .card-footer > i,  div.result-card .card-footer > i {
	color: rgba(29, 29, 27, 1.0);
	font-size: 25px;
}
div.flat-data .card-footer i.fa,  div.result-card .card-footer i.fa {
	color: rgba(29, 29, 27, 1.0);
}
div.flat-data .card-footer a.active i.fa:before,  div.result-card .card-footer a.active i.fa:before,  div.flat-data .card-footer a:hover i.fa:before,  div.result-card .card-footer a:hover i.fa:before {
	content: "\f004";
}
div.flat-data .card-footer > span,  div.result-card .card-footer > span {
	float: right;
}
div.cover-result-list-bottom {
	position: relative;
	display: block;
	width: 100%;
	height: 150px;
	margin-top: -195px;
	z-index: 10;
	background: -webkit-linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 20%, rgba(255,255,255,1) 80%);
	background: -o-linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 20%, rgba(255,255,255,1) 80%);
	background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 20%, rgba(255,255,255,1) 80%);
}
div.favourites-wrapper {
}
div.favourites-wrapper > div {
	margin: 8px;
}
div.favourites-wrapper .result-card {
	margin: 0px;
}
#contact-us {
	display: none;
}
/* footer */
footer {
}
footer .small-info {
	margin-top: 2em;
	font-size: 12px;
	color: rgba(137, 139, 142, 1.0);
	margin-bottom: 1em;
	line-height: 1.25em;
}
footer .footer-callout-box {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: rgba(255, 255, 255, 1.0);
	color: rgba(29, 29, 27, 1.0);
	border: 2px solid rgba(29, 29, 27, 1.0);
	border-bottom: 0px;
	text-align: center;
	text-transform: uppercase;
	line-height: 33px;
    height: 30px;
    font-size: 16px;
}
footer .footer-callout-box a {
	color: rgba(29, 29, 27, 1.0);
}
footer .black-stripe {
	background-color: rgba(29, 29, 27, 1.0);
	color: rgba(175, 174, 174, 1.0);
}
footer nav ul,  footer nav ul li {
	display: inline-block;
	height: 40px;
	padding: 10px 0px 0px 0px;
}
footer nav ul li a {
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 30px;
	padding: 0px 23px;
	font-size: 16px;
	color: rgba(175, 174, 174, 1.0);
	border-left: 2px solid rgba(175, 174, 174, 1.0);
}
footer nav ul li:first-child a {
	border: none;
}
footer nav ul li a:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: 0px;
	width: 0px;
	height: 2px;
	background-color: rgba(175, 174, 174, 1.0);
	transform: translateX(-50%);
	left: 50%;
	transition: width .5s ease-out;
}
footer nav ul li a:hover:after {
	width: 50px;
}
footer .copyright {
	display: inline-block;
	padding: 1em 0em;
	font-size: 12px;
}
/* mobile navigation */

header nav.mobile-menu {
	display: inline-block;
	margin-top: 0;
}
header.book-header nav.mobile-menu {
	float: right;
}
header nav.mobile-menu ul li a {
	display: inline-block;
	font-size: 35px;
	line-height: 50px;
	height: 50px;
	border-bottom: none !important;
	position: relative;
	padding-right: 0px;
	padding-left: 10px;
}
header nav.mobile-menu ul li a:hover {
}
header nav.header-icon-wrapper {
	display: block;
	height: 50px;
	position: relative;
	text-align: right;
	width: calc(100% - 87px);
}
header nav.header-icon-wrapper li a {
	padding: 0px;
	font-size: 32px;
}
header nav.header-icon-wrapper li a:after {
	display: none;
}
div.mobile {
	display: block;
	z-index: 2000;
	position: fixed;
	top: 0px;
	right: 0px;
	background-color: rgba(255, 255, 255, 1.0);
	margin: 0px;
	padding: 0px;
	height: 0;
	box-shadow: -2px -2px 5px rgba(0,0,0,0.33);
	overflow: hidden;
	opacity: 0;
	transition: all .25s ease-out;
	width: 100vw;
}
html.slided div.mobile {
	opacity: 1;
	width: 100vw;
	height: 100vh;
}
div.mobile hr {
	height: 1px;
	border: 0px;
	border-bottom: 1px solid #E5E5E5;
	width: calc(100% - 27px);
	margin: 0em auto;
}
div.mobile h4 {
	margin: 0px;
	padding: 5px 18px;
	font-size: 25px;
	line-height: calc(50px - 10px);
	text-transform: uppercase;
	text-align: center;
	background: rgba(60,197,237,1);
	background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
	background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
	color: rgba(255, 255, 255, 1.0);
}
div.mobile h4 i {
	display: inline-block;
	font-size: 35px;
	line-height: 40px;
	height: 40px;
	border-bottom: none !important;
	position: relative;
	padding-right: 0px;
	font-weight: normal;
}
div.mobile nav ul {
	margin: 10px 0px;
	padding: 0px;
}
div.mobile nav ul li {
	display: block;
	padding: 14px 14px;
}
div.mobile nav ul li a {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
	color: rgba(29, 29, 27, 1.0);
	text-decoration: none;
	font-weight: 700;
	text-indent: 10px;
}
div.mobile nav .button {
	margin-left: 14px;
	font-size: 18px;
}
div.mobile nav .favourites {
	position: relative;
	display: inline-block;
	color: rgba(29, 29, 27, 1.0);
	font-size: 22px;
	margin-left: 20px;
	width: 2em;
}
div.mobile nav .favourites .badge {
	position: absolute;
	font-size: 16px;
	left: 20px;
	bottom: -5px;
	font-weight: bold;
}
div.mobile nav .language {
	display: inline-block;
	color: rgba(29, 29, 27, 1.0);
	font-size: 20px;
}
div.mobile nav .language a {
	display: inline-block;
	color: rgba(29, 29, 27, 1.0);
	font-size: 18px;
	font-weight: bold;
	padding: 0px 2px;
}
/* modal window */

div.modal-window {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100vw;
	padding: 0px;
	margin: 0px;
	z-index: 1000;
	background-color: rgba(0,0,0,.50);
}
div.modal-window .dismiss {
	display: block;
	position: absolute;
	height: 100vh;
	width: 100vw;
	padding: 0px;
	margin: 0px;
	background-color: transparent;
}
div.modal-window .labeled-box {
	position: relative;
	top: 0px
}
div.modal-window div.map-search {
	background-color: rgba(255, 255, 255, 1);
}
/* cookie policy */
div.cookie-wrap {
	display: none;
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	color: rgba(255, 255, 255, 1.0);
	z-index: 200;
}
div.cookie-wrap p {
	margin-top: 1em;
	line-height: 1.25em;
	color: rgba(255, 255, 255, 1.0);
}
/* css end */

#map_canvas {
	width: 100%;
	height: 350px;
	border-radius: 5px;
	overflow: hidden;
}
.lapozo_fent {
	margin-bottom: 1em;
}
.lapozo_keret {
	text-align: center;
}
.lapozo {
	display: inline-block;
}
.lapozo a {
	display: inline-block;
	position: relative;
	border: 0px;
	padding: 10px 10px;
	margin: 1px;
	color: #000;
	background: #fff;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	line-height: 1em;
	z-index: 1;
}
.footer-area .lapozo a {
	background: transparent;
    color: #fff;
}
.lapozo a:hover,
.lapozo a:active,
.lapozo a.aktiv {
	color: #fff;
	background: #000;
}
.map-search .lapozo a.aktiv,
.map-search .lapozo a:hover,
.map-search .lapozo a:active, {
	color: #fff;
	background: transparent;
}
.footer-area > div {
	float: left;
	width: 50%;
	text-align: left;
}
.footer-area .rendezes {
	float: right;
	text-align: right;
}
.map-search {
	margin-bottom: 1em;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
 color: rgba(137, 139, 142, 1.0);
 outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
 color: rgba(137, 139, 142, 1.0);
 outline: none;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder  {
 color: rgba(137, 139, 142, 1.0);
 outline: none;
}
form input[type="text"],
form textarea {
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
  	background-color: transparent;
}
form.sidebar .SumoSelect {
    width: 100%;
	margin-bottom: 10px;
	width: calc(327px - 32px);
    max-width: 100%;
}
.SumoSelect > .CaptionCont {
	border: 1px solid rgba(141, 141, 140, 1.0);
	border-radius: 3px;
	color: rgba(141, 141, 140, 1.0);
	font-size: 15px;
	height: 30px;
    padding: 0 15px;
    line-height: 30px;
	text-align: left;
}
.SumoSelect > .CaptionCont > span.placeholder {
	color: rgba(137, 139, 142, 1.0);
	font-style: normal;
	text-transform: none;
}
.SumoSelect > .CaptionCont > label {
    width: 32px;
    margin: 0;
    min-width: auto;
	background-image: url(../img/selectarrow_gray.png);
    background-position: center 6px;
    background-repeat: no-repeat;
}
.SumoSelect > .CaptionCont > label > i {
	display: none;
}
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
    box-shadow: none;
    border-color: inherit;
}
form.sidebar .SumoSelect > .optWrapper > .options li label {
	text-align: left;
	min-width: auto;
    margin: 0;
    text-transform: none;
    line-height: 24px;
}
.SumoSelect > .optWrapper > .options {
    max-height: 260px;
}
form > div > input[type='text'],
form > div > .inputgroup {
	font-size: 15px;
	margin-bottom: 10px;
	height: 30px;
	border-radius: 3px;
	text-transform: none;
}
form > div > .inputgroup {
	height: 24px;
    padding-bottom: 3px;
    padding-top: 3px;
}
form .inputgroup > input[type='text'] {
	font-size: 15px;
	padding: 3px 10px;
	text-transform: none;
}
form .inputgroup > span {
    line-height: 24px;
	text-transform: none;
}
form .checkbox-wrapper label {
	margin-bottom: 10px;
	line-height: 25px;
}
.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
    background-color: rgb(36,96,141);
}
.cluster{
    color: #FFFFFF;
    text-align:center;
    font-family: Verdana, sans-serif;
    font-size:13px;
    font-weight:bold;
    text-shadow: 0 0 2px #000;
    -moz-text-shadow: 0 0 2px #000;
    -webkit-text-shadow: 0 0 2px #000;
}
.cluster-1{
    background: url(../img/cluster1.png) no-repeat;
    line-height:30px;
    width: 50px;
    height: 40px;
}
.cluster-2{
    background: url(../img/cluster2.png) no-repeat;
    line-height:40px;
    width: 60px;
    height: 48px;
}
.cluster-3{
    background: url(../img/cluster3.png) no-repeat;
    line-height:45px;
    width: 70px;
    height: 56px;
}
.infowindow {
    width: auto;
    background: #ffffff;
    padding: 0;
    margin-left: 22px;
    margin-top: 20px;
}
.infowindow strong,
.infowindow small,
.infowindow span {
    display: block;
    width: 100%
}
.infowindow strong {
    text-transform: uppercase;
    color: #002145;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px
}
.infowindow small {
    font-size: 14px;
    color: #555
}
.infowindow span {
    font-size: 30px;
    font-weight: 600;
    color: #e3622b
}
header nav .favourites,
div.mobile nav .favourites {
	display: none;
}
header nav .favourites.active,
div.mobile nav .favourites.active {
	display: inline-block;
}
.kedvencekhez{
	cursor: pointer;
}
textarea[name=kedvencek_lista_email],
input[name=email],
input[name=tomail] {
	display: none;
}
.favourites-wrapper .kedvencek_lista_html {
	display: none;
}
.kedvencek_lista_html ul,
.kedvencek_lista_html ul li{
    list-style-type: none;
    list-style-image: none;
    margin: 0 0 1em 0;
}
.kedvencek_lista_html h6{
    line-height: normal;
	font-weight: 600;
	margin: 0 1em 0 0;
	float: none;
	margin-bottom: 0.2em;
}
.kedvencek_lista_html ul li{
    color: #fff;
    line-height: 1.5em;
    display: inline-block;
    margin-right: 2em;
	margin-bottom: 0;
}
.kedvencek_lista_html a{
}
.kedvencek_lista_html span.torles{
    display: inline-block;
	cursor: pointer;
    top: 0.15em;
    position: relative;
    font-size: 1.2em;
    color: red;
    line-height: 1em;
}
.kedvencek_lista_html span.torles:hover{
	color: #000;
}
input[type='checkbox'].kitoltendo + label,
input[type='checkbox'].kitoltendo + label a {
	color: red;
}
.uzenet_keret {
	text-align: center;
}
.uzenet {
	text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 10px 10px 10px;
    background: rgba(60,197,237,1);
    background: -moz-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
    background: -webkit-linear-gradient(left, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
    background: linear-gradient(to right, rgba(60,197,237,1) 0%, rgba(36,96,141,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cc5ed', endColorstr='#24608d', GradientType=1 );
    color: rgba(255,255,255,1);
    font-weight: bold;
    font-size: 18px;
	margin: 20px 0;
}
.modal-window .uzenet{
	cursor: pointer;
}
form > .grid-33 {
	float: none;
    width: 320px;
	max-width: none;
    padding: 0;
}
.let_my_apartment form > .grid-33.csop1 {
    width: calc(33.3% - 10px);
    max-width: calc(33.3% - 10px);
    float: left;
    padding: 0px 10px 0 0;
}
.let_my_apartment form > .grid-33.csop2 {
    width: calc(33.3% - 20px);
    max-width: calc(33.3% - 20px);
    float: left;
    padding: 0px 10px;
}
.let_my_apartment form > .grid-33.csop3 {
    width: calc(33.3% - 10px);
    max-width: calc(33.3% - 10px);
    float: left;
    padding: 0px 0 0 10px;
}
.let_my_apartment form .details_gomb {
    top: -3px;
    position: relative;
}
.container div.map-search .map-area .grid_8  {
	margin-left: 0;
	width: 650px;
}
.bezaras {
	position: absolute;
	top: -20px;
    right: -20px;
    z-index: 100;
    font-size: 40px;
    transition: color 0.3s;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 34px;
}
.bezaras:hover {
    color: #970c10cc;
	color: rgba(36,96,141,1);
	cursor: pointer;
}
.bezaras .fa{
	position: relative;
    top: -3px;
    left: -1px;
}
.map-search .bezaras {
	top: -14px;
}
.carousel-slider > a {
	height: 584px;
	width: 100%;
	overflow:hidden;
}
.carousel-slider > a > img {
    transform: translateY(-50%);
    top: 50%;
    position: relative;
    width: 100%;
}
.carousel-strip-slider > a {
	cursor: pointer;
}
