@charset "UTF-8";
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

Put Variable and overall Style-Definitions here!

*******************************************************************/
/*********************
COLORS
*********************/
/*********************
FONTS
*********************/
/**
 * Dedicated vertical spacings
 * ===========================
 * Bootstrap relies on components that ensure that vertical spacings are set.
 * As we have several scenarios where we can neither use bootstrap components nor
 * use native mark up such as paragraphs, dedicated classes/mixins are invented.
 *
 * Note that the variables used are introduced and filled by bootstrap.
 * They are reused to ensure that the vertical rhythm is consistent through out
 * bootstrap and our codes.
 *
 * Note that space is created from top towards bottom. This provides opportunities
 * to use the classes/mixins in components that might be top-aligned in some scenarios.
 */
/*********************
BORDER RADIUS
*********************/
/*********************
TRANISTION
*********************/
/*********************
BOX SHADOWS
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* Verwendung z.B.: @include css-gradient(#dfdfdf,#f1f1f1); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
TRANSLATE
*********************/
/* @include translate-x(translate-x); */
/* @include translate-x(translate-x); */
/*********************
MIRROR AND TRANSLATE
*********************/
/* @include mirror-and-translate(translate-x); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
SIZES
**********************/
/* copy from ev-bootstrap-config.json
    "@screen-xs": "480px", // phone
    "@screen-sm": "768px", // tablet
    "@screen-md": "992px", // desktop
    "@screen-lg": "1260px", // large-desktop
 */
/* greater than tablet */
/********************
 Show and Hide classes for different sizes
 to avoid massive use of includes in scss files.
 !important is only allowed here, use with care!
*********************/
@media (max-width: 767px) {
  .show-phone {
    display: block !important; }

  .show-phone-inline {
    display: inline-block !important; }

  .hide-phone {
    display: none !important; } }
@media (min-width: 768px) {
  .show-none-phone {
    display: block !important; }

  .show-none-phone-inline {
    display: inline-block !important; }

  .hide-none-phone {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .show-tablet {
    display: block !important; }

  .show-tablet-inline {
    display: inline-block !important; }

  .hide-tablet {
    display: none !important; } }
@media (min-width: 992px) and (max-width: 1259px) {
  .show-desktop {
    display: block !important; }

  .show-desktop-inline {
    display: inline-block !important; }

  .hide-desktop {
    display: none !important; } }
@media (min-width: 1260px) {
  .show-desktop-large {
    display: block !important; }

  .show-desktop-large-inline {
    display: inline-block !important; }

  .hide-desktop-large {
    display: none !important; } }
.ev-hide {
  display: none !important; }

.ev-soft-hide {
  display: none; }

/* CSS Resets */
/* Global reset
*******************************************************************************/
html,
body,
object,
iframe,
blockquote,
pre,
img,
dl,
dt,
dd,
ul,
li,
ol,
fieldset,
form,
legend {
  margin: 0;
  padding: 0;
  outline: 0; }

/* =HTML5 display definitions
*******************************************************************************/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none; }

[hidden] {
  display: none; }

figure {
  margin: 0; }

/* Tags reset
*******************************************************************************/
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  text-decoration: none; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

del {
  text-decoration: line-through; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

a:hover,
a:active,
label:focus,
label:active,
input[type="submit"],
input[type="select"],
select,
select:active,
select:focus,
input[type="submit"]:active,
textarea,
textarea:active {
  outline: none; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle; }

svg:not(:root) {
  overflow: hidden; }

p {
  margin: 0; }

ul,
li {
  list-style: none; }

/* Normalizing form elements
*******************************************************************************/
fieldset {
  border: none; }

textarea,
button,
input,
select {
  font-size: 100%;
  padding: 0;
  margin: 0;
  vertical-align: baseline; }

textarea {
  overflow: auto;
  resize:vertical; }

/* We use this to get basic styling on all basic form elements */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
  background-color: white;
  font-family: inherit;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 0.875em;
  margin: 0 0 1em 0;
  padding: 0.5em;
  height: 40px;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out;
  -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out; }

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 5px #999999;
  -moz-box-shadow: 0 0 5px #999999;
  box-shadow: 0 0 5px #999999;
  border-color: #999999; }

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
  background: #fafafa;
  border-color: #999999;
  outline: none; }

input[type="text"][disabled],
input[type="password"][disabled],
input[type="date"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="month"][disabled],
input[type="week"][disabled],
input[type="email"][disabled],
input[type="number"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="time"][disabled],
input[type="url"][disabled],
textarea[disabled] {
  background-color: #dddddd; }

/* Adjust margin for form elements below */
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select {
  margin: 0 0 1em 0; }

/* Normalize file input width */
input[type="file"] {
  width: 100%; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  margin: 2px 4px 0 1px;
  vertical-align: top;
  float: left; }

input[type="button"],
input[type="submit"],
button {
  cursor: pointer;
  -webkit-appearance: button; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

button[disabled],
input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="url"]:focus,
input[type="search"]:focus {
  outline-color: transparent;
  outline-style: none; }

/* ie7 fixes
*******************************************************************************/
.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie7 textarea,
.ie7 button,
.ie7 input,
.ie7 select {
  vertical-align: middle; }

.ie7 input[type="button"],
.ie7 input[type="submit"],
.ie7 button {
  overflow: visible; }

.ie7 input[type="radio"],
.ie7 input[type="checkbox"] {
  width: 13px;
  height: 13px; }

.ie7 audio,
.ie7 canvas,
.ie7 video {
  display: inline;
  zoom: 1; }

/* Normalizing Tags
*******************************************************************************/
small {
  font-size: 85%; }

strong,
th {
  font-weight: bold; }

td,
td img {
  vertical-align: top; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

pre {
  padding: 15px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0; }

/* Special Classes
*******************************************************************************/
.clearfix:before,
.clearfix:after,
.f-row:before,
.f-row:after {
  content: "";
  display: table; }

.clearfix:after,
.f-row:after {
  clear: both; }

.clearfix,
.f-row {
  zoom: 1; }

/* My classes
******************************************************************************/
.clear {
  clear: both; }

.bold {
  font-weight: bold; }

.l_float {
  float: left; }

.r_float {
  float: right; }

.ie9 * {
  filter: none; }

/* ==================================================================================================================== */
/* ! The 1140px Grid V2  */
/* ==================================================================================================================== */
.row {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  padding: 15px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.one,
.two,
.three,
.four,
.five,
.six,
.seven,
.eight,
.nine,
.ten,
.eleven {
  margin-right: 4%;
  float: left;
  min-height: 1px; }

.row .one {
  width: 4.75%; }

.row .two {
  width: 13.0%; }

.row .three {
  width: 22%; }

.row .four {
  width: 30.65%; }

.row .five {
  width: 39.45%; 
}

.row .six {
/*  width: 48%; */
  width: 90%; 
}

.row .seven {
  width: 56.75%; }

.row .eight {
  width: 65.3%; }

.row .nine {
  width: 73.9%; }

.row .ten {
  width: 82.7%; }

.row .eleven {
  width: 91.35%; }

.row .twelve {
  width: 100%;
  float: left; }

.last {
  margin-right: 0px; }

img,
object,
embed {
  max-width: 100%; }

img {
  height: auto; }

/* Smaller screens */
@media only screen and (max-width: 1023px) {
  body {
    font-size: 0.8em;
    line-height: 1.5em; } }
/* Mobile */
@media handheld, only screen and (max-width: 479px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: none; }

  .row,
  body {
    width: 100%;
    min-width: 0;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px; }

  .row > .one,
  .row > .two,
  .row > .three,
  .row > .four,
  .row > .five,
  .row > .six,
  .row > .seven,
  .row > .eight,
  .row > .nine,
  .row > .ten,
  .row > .eleven,
  .row > .twelve {
    width: auto;
    float: none;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 5px;
    padding-right: 5px; } }
html,
body {
  min-height: 100%; }

body {
  font: 13px/18px Verdana, Arial, Helvetica, sans-serif;
  color: #666666; }

.red {
  color: #ff0000; }

hr {
  height: 1px;
  border: none;
  border-bottom: solid 1px #DEDEDE;
  margin: 5px 0 5px 0;
  background: transparent;
  color: transparent; }

.redline {
  height: 1px;
  background: transparent;
  border: none;
  border-bottom: solid 3px #0a078d;
  margin: 0; }

a {
  text-decoration: none;
  color: #444444; }

.hidden {
  display: none; }

.group {
  clear: both;
  display: inline-block;
  width: 100%; }

.no-padding {
  padding: 0 !important; }

.no-margin {
  margin: 0 !important; }

input[type="submit"],
.button {
  /* Previous Button style */
  /* PB Button style */
  border: 1px solid #b80000;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 0 #f85454;
  color: white;
  display: inline-block;
  background-color: red;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff0000), color-stop(100%, #c70000));
  background-image: -webkit-linear-gradient(#ff0000, #c70000);
  background-image: linear-gradient(#ff0000, #c70000);
  text-decoration: none;
  text-shadow: 0 1px 0 #a30000;
  background-image: -webkit-linear-gradient(#ff0700, #be1914);
  background-image: linear-gradient(#ff0700, #be1914);
  border-radius: 0;
  font-size: 18px;
  font-family: Verdana, sans-serif;
  width: 100%;
  height: 30px;
  text-shadow: none;
  outline: none; }

input[type="submit"]:hover,
button:hover:not(:disabled) {
  box-shadow: inset 0 1px 0 0 #f72222;
  cursor: pointer;
  background-color: #e10505;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e10505), color-stop(100%, #b80000));
  background-image: -webkit-linear-gradient(#e10505, #b80000);
  background-image: linear-gradient(#e10505, #b80000); }

input[type="submit"]:active,
button:active:not(:disabled) {
  border: 1px solid #b80000;
  box-shadow: inset 0 0 8px 4px #a80000, inset 0 0 8px 4px #a80000, 0 1px 1px 0 #eeeeee; }

.error {
  border: solid 1px #ff0000 !important; }

.header-top .languages {
  font-size: 13px !important;
  float: right;
  padding: 0 20px 0 0;
  margin: -70px -20px 0 0;
  overflow: visible;
  position: relative; }

.header-top .languages a {
  color: #c9c9c9;
  display: inline-block;
  line-height: 30px;
  padding-right: 10px;
  padding-left: 10px;
  height: 30px;
  background: #fff;
  width: 80px; }

.header-new-top a:hover {
  color: #000000;
  text-decoration: none; }

.header-top .languages a.lang {
  background: url(../img/language-arrow-down.png) no-repeat center right; }

.header-top .languages ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  padding: 0 20px 0 0; }

.header-top .languages ul li {
  border-bottom: 1px solid #dedede; }

.header-top .languages:hover ul {
  display: block !important; }

.header-top .main-logo {
  float: left;
	background: url(../images/logito.jpg);background-size:150px 60px;height:60px no-repeat left center;
  width: auto;
  overflow: hidden;
  margin: 20px 0 0 0;
  display: inline-block; }

.header-top .main-logo a {
  opacity: 0;
  display: inline-block;
  height: 23px;
  width: 220px;
  float: left; }

.header-top .main-logo .header-text {
  float: left;
  padding-left: 20px;
  display: inline-block;
  padding-top: 2px;
  font-size: 16px;
  color: #858484;
  text-transform: uppercase;
  font-weight: normal;
  font-style: normal;
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  margin-top: 8px; }

.header-top .primary-menu,
.header-top .secondary-menu {
  width: 50%;
  margin: -12px 0 0 0;
  position: absolute;
  right: 40px;
  font-size: 13px !important; }

.header-top .primary-menu div > ul,
.header-top .secondary-menu div > ul {
  float: right;
  display: inline-block; }

.header-top .primary-menu div > ul > li,
.header-top .secondary-menu div > ul > li {
  height: 28px; }

.header-top .primary-menu div > ul > li.current-page-ancestor,
.header-top .secondary-menu div > ul > li.current-page-ancestor,
.header-top .primary-menu div > ul > li.current-menu-item,
.header-top .secondary-menu div > ul > li.current-menu-item,
.header-top .primary-menu div > ul > li:hover,
.header-top .secondary-menu div > ul > li:hover {
  text-decoration: none;
  background: url(../img/menu-arrow-up.png) no-repeat center bottom;
  color: #444444; }

.header-top .primary-menu div > ul > li.has-sub-menu:hover,
.header-top .secondary-menu div > ul > li.has-sub-menu:hover {
  background: 0; }

.header-top .primary-menu div > ul > li > a,
.header-top .secondary-menu div > ul > li > a {
  display: inline-block !important;
  color: #858484; }

.header-top .primary-menu div > ul > li > a:hover,
.header-top .secondary-menu div > ul > li > a:hover {
  text-decoration: none;
  color: #444444; }

.header-top .primary-menu div > ul > li.current-page-ancestor > a,
.header-top .secondary-menu div > ul > li.current-page-ancestor > a,
.header-top .primary-menu div > ul > li.current-menu-item > a,
.header-top .secondary-menu div > ul > li.current-menu-item > a {
  text-decoration: none;
  color: #444444; }

.header-top .primary-menu div > ul > li.has-sub-menu > a,
.header-top .secondary-menu div > ul > li.has-sub-menu > a {
  background: 0; }

.header-top .primary-menu div > ul > li,
.header-top .secondary-menu div > ul > li {
  float: left;
  margin: 0 0 0 40px;
  text-transform: uppercase; }

.header-top .primary-menu div > ul > li:first-child,
.header-top .secondary-menu div > ul > li:first-child {
  display: none !important; }

.header-top .primary-menu div > ul > li ul,
.header-top .secondary-menu div > ul > li ul {
  position: absolute;
  margin-left: -65px;
  padding-top: 5px;
  top: 100%;
  width: 200px;
  background: #fff;
  text-align: center;
  display: none;
  z-index: 2000; }

.header-top .primary-menu div > ul > li ul li,
.header-top .secondary-menu div > ul > li ul li {
  padding-left: 0;
  width: 100%;
  float: none;
  margin: 0;
  border-bottom: 1px solid #dedede;
  display: inline-block; }

.header-top .primary-menu div > ul > li ul li:hover,
.header-top .secondary-menu div > ul > li ul li:hover {
  background: none; }

.header-top .primary-menu div > ul > li ul li a,
.header-top .secondary-menu div > ul > li ul li a {
  display: block;
  height: 23px;
  padding: 5px 0 0 0;
  text-align: center; }

.header-top .primary-menu div > ul > li:hover ul,
.header-top .secondary-menu div > ul > li:hover ul {
  display: block !important; }

.header-top .primary-menu.de ul li ul,
.header-top .secondary-menu.de ul li ul {
  margin-left: -50px; }

.header-bottom.secondary-menu,
.header-bottom.primary-menu {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  overflow: inherit;
  font-size: 13px !important; }

.header-bottom.secondary-menu ul,
.header-bottom.primary-menu ul {
  float: left;
  margin: 0 0 0 -10px;
  padding: 0;
  overflow: visible;
  display: block; }

.header-bottom.secondary-menu ul li,
.header-bottom.primary-menu ul li {
  float: left;
  text-transform: uppercase;
  position: relative; }

.header-bottom.secondary-menu ul li ul,
.header-bottom.primary-menu ul li ul {
  position: absolute;
  left: -30%;
  top: 100%;
  width: 200px;
  min-width: 100%;
  background: #fff;
  text-align: center;
  display: none;
  z-index: 2000; }

.header-bottom.secondary-menu ul li ul li,
.header-bottom.primary-menu ul li ul li {
  width: 100%;
  float: none;
  margin: 0;
  border-bottom: 1px solid #dedede;
  display: inline-block; }

.header-bottom.secondary-menu ul li ul li:hover,
.header-bottom.primary-menu ul li ul li:hover {
  background: none; }

.header-bottom.secondary-menu ul li ul li a,
.header-bottom.primary-menu ul li ul li a {
  display: block;
  padding: 0;
  text-align: center; }

.header-bottom.secondary-menu ul li a,
.header-bottom.primary-menu ul li a {
  color: #000000;
  font-size: 12px;
  font-weight: bold;
  display: block;
  padding: 10px 10px !important; }

.header-bottom.secondary-menu ul li a:hover,
.header-bottom.primary-menu ul li a:hover {
  color: #ff0000;
  text-decoration: none; }

.header-bottom.secondary-menu ul li.current-page-ancestor ul,
.header-bottom.primary-menu ul li.current-page-ancestor ul,
.header-bottom.secondary-menu ul li.current-menu-item ul,
.header-bottom.primary-menu ul li.current-menu-item ul,
.header-bottom.secondary-menu ul li:hover ul,
.header-bottom.primary-menu ul li:hover ul {
  display: block !important; }

.header-bottom.secondary-menu ul li.current-page-ancestor a,
.header-bottom.primary-menu ul li.current-page-ancestor a,
.header-bottom.secondary-menu ul li.current-menu-item a,
.header-bottom.primary-menu ul li.current-menu-item a {
  color: #ff0000;
  text-decoration: none; }

.footer-legal {
  padding-top: 10px;
  text-align: center;
  padding: 10px 0; }

.footer-greyline {
  margin: 0; }

#footer ul li {
  display: block; }

.footer {
  text-align: center; }

.footer .pictureline {
  margin-top: 12px; }

.footer .map {
  float: right;
  width: 266px; }

.footer ul {
  text-align: left; }

.footer ul li {
  margin-right: 10px;
  float: left;
  font-weight: bold;
  width: 140px; }

.footer ul li a {
  color: #444444;
  font-family: 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: bold;
  line-height: 18px;
  margin: 0 0 10px 0;
  display: inline-block; }

.footer ul li > ul {
  width: 100%; }

.footer ul li > ul li {
  width: 100%;
  font-weight: normal;
  display: inline-block;
  float: none;
  clear: both;
  line-height: 25px; }

.footer ul li > ul li a {
  color: #858484;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 18px;
  margin: 0 0 0 0;
  display: inline-block; }

@media screen and (min-width: 890px) and (max-width: 1250px) {
  .footer ul > li {
    margin-right: 0;
    width: 16.5%; }

  .footer .map {
    margin-top: 20px;
    width: 100%; } }
@media screen and (min-width: 768px) and (max-width: 890px) {
  .footer ul.menu > li {
    margin-right: 0;
    width: 33.3%;
    margin-bottom: 10px; }

  .footer .map {
    margin-top: 20px;
    width: 100%; } }
@media screen and (min-width: 767px) and (max-width: 940px) {
  .header-top .primary-menu div > ul > li,
  .header-top .secondary-menu div > ul > li {
    margin: 0 0 0 20px; }

  .header-top .primary-menu div > ul > li a,
  .header-top .secondary-menu div > ul > li a {
    padding: 0; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  .header-top {
    padding-left: 5px;
    padding-right: 5px; }

  .header-top .languages {
    margin-right: -5px;
    z-index: 3000; }

  .header-top .main-logo {
    margin-left: 15px; }

  .header-top .secondary-menu {
    position: absolute;
    top: 98px;
    margin: 0;
    right: 0px;
    width: 50%;
    text-align: right;
    background: #fff !important;
    z-index: 1000; }

  .header-top .secondary-menu .menu {
    display: inline-block;
    position: relative; }

  .header-top .secondary-menu .menu li {
    width: 100%;
    background: #fff !important;
    display: none;
    margin: 0;
    height: auto;
    padding: 0; }

  .header-top .secondary-menu .menu li a {
    background: #fff !important;
    padding: 10px 10px !important;
    height: auto; }

  .header-top .secondary-menu .menu li:hover {
    background: none; }

  .header-top .secondary-menu .menu li:nth-child(1) {
    display: block !important; }

  .header-top .secondary-menu .menu li .sub-menu {
    display: none;
    clear: both;
    position: relative;
    width: 100%;
    margin: 0;
    left: 0; }

  .header-top .secondary-menu .menu li:hover {
    text-decoration: none;
    background: none !important;
    color: #444444; }

  .header-top .secondary-menu .menu.active {
    -webkit-box-shadow: 0 4px 4px #4f4f4f;
    -moz-box-shadow: 0 4px 4px #4f4f4f;
    box-shadow: 0 4px 4px #4f4f4f; }

  .header-top .secondary-menu .menu.active li {
    display: block !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .header-top .secondary-menu .menu.active li ul {
    position: relative;
    display: block !important;
    text-align: right; }

  .header-top .secondary-menu .menu.active li ul li {
    text-align: right; }

  .header-top .secondary-menu .menu.active li ul li a {
    text-align: right;
    padding-right: 10px !important; }

  .header-bottom.primary-menu {
    left: 0px;
    width: 50%;
    background: #fff;
    z-index: 2000;
    margin: 3px 0 0 -40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .header-bottom.primary-menu .menu {
    position: absolute;
    background: #fff;
    width: 100%;
    margin: 0 !important; }

  .header-bottom.primary-menu .menu li {
    display: none;
    padding: 0 0 0 0;
    width: 100%;
    margin: 0;
    background: #fff; }

  .header-bottom.primary-menu .menu li a {
    padding: 10px 20px !important; }

  .header-bottom.primary-menu .menu li:nth-child(1) {
    display: block !important; }

  .header-bottom.primary-menu .menu li .sub-menu {
    display: none;
    clear: both;
    position: relative;
    width: 100%;
    margin: 0;
    left: 0; }

  .header-bottom.primary-menu .menu li .sub-menu a {
    padding-left: 40px !important;
    text-align: left; }

  .header-bottom.primary-menu .menu li:hover {
    text-decoration: none;
    background: none !important;
    color: #444444; }

  .header-bottom.primary-menu .menu.active {
    -webkit-box-shadow: 0 4px 4px #4f4f4f;
    -moz-box-shadow: 0 4px 4px #4f4f4f;
    box-shadow: 0 4px 4px #4f4f4f;
    background: #fff; }

  .header-bottom.primary-menu .menu.active li {
    display: block !important; }

  .header-bottom.primary-menu .menu.active li .sub-menu {
    display: inline-block !important; }

  .primary-menu .search-form-header {
    display: none; }

  .footer {
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px; }

  .footer .group > div {
    display: block;
    clear: both; }

  .footer .menu {
    clear: both; }

  .footer .menu > li {
    width: 48%;
    margin: 0 0 10px 0; }

  .footer .menu > li:nth-child(even) {
    text-align: right; }

  .footer .menu > li:nth-child(even) * {
    text-align: right; }

  .footer .map {
    width: 266px;
    margin: 0 auto;
    float: none; }

  .footer .map img {
    width: 100%; }

  #secondary-nav {
    display: none !important; } }
@media screen and (max-width: 479px) {
  .header-top {
    padding-left: 5px;
    padding-right: 5px; }

  .header-top .languages {
    margin-right: -5px; }

  .header-top .main-logo {
    margin-left: 15px; }

  .header-top .secondary-menu {
    position: absolute;
    top: 98px;
    margin: 0;
    right: 0px;
    width: 49%;
    text-align: right;
    background: #fff !important;
    z-index: 1000; }

  .header-top .secondary-menu .menu {
    display: inline-block;
    position: relative; }

  .header-top .secondary-menu .menu li {
    width: 100%;
    background: #fff !important;
    display: none;
    margin: 0;
    padding: 0;
    height: auto; }

  .header-top .secondary-menu .menu li a {
    background: #fff !important;
    padding: 10px 20px !important;
    height: auto; }

  .header-top .secondary-menu .menu li:hover {
    background: none; }

  .header-top .secondary-menu .menu li:nth-child(1) {
    display: block !important; }

  .header-top .secondary-menu .menu li .sub-menu {
    display: none;
    clear: both;
    position: relative;
    width: 100%;
    margin: 0;
    left: 0; }

  .header-top .secondary-menu .menu li:hover {
    text-decoration: none;
    background: none !important;
    color: #444444; }

  .header-top .secondary-menu .menu.active {
    -webkit-box-shadow: 0 4px 4px #4f4f4f;
    -moz-box-shadow: 0 4px 4px #4f4f4f;
    box-shadow: 0 4px 4px #4f4f4f; }

  .header-top .secondary-menu .menu.active li {
    display: block !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .header-top .secondary-menu .menu.active li ul {
    position: relative;
    display: block !important;
    text-align: right; }

  .header-top .secondary-menu .menu.active li ul li {
    text-align: right; }

  .header-top .secondary-menu .menu.active li ul li a {
    text-align: right;
    padding-right: 10px !important; }

  .header-bottom.primary-menu {
    position: absolute;
    margin-top: 3px;
    left: 0px;
    width: 49%;
    background: #fff;
    z-index: 2000; }

  .header-bottom.primary-menu .menu {
    position: absolute;
    background: #fff;
    width: 100%;
    margin: 0 !important; }

  .header-bottom.primary-menu .menu li {
    display: none;
    padding: 0 0 0 0;
    width: 100%;
    margin: 0;
    background: #fff; }

  .header-bottom.primary-menu .menu li a {
    padding: 10px 20px !important; }

  .header-bottom.primary-menu .menu li:nth-child(1) {
    display: block !important; }

  .header-bottom.primary-menu .menu li .sub-menu {
    display: none;
    clear: both;
    position: relative;
    width: 100%;
    margin: 0;
    left: 0; }

  .header-bottom.primary-menu .menu li .sub-menu a {
    padding-left: 40px !important;
    text-align: left; }

  .header-bottom.primary-menu .menu li:hover {
    text-decoration: none;
    background: none !important;
    color: #444444; }

  .header-bottom.primary-menu .menu.active {
    -webkit-box-shadow: 0 4px 4px #4f4f4f;
    -moz-box-shadow: 0 4px 4px #4f4f4f;
    box-shadow: 0 4px 4px #4f4f4f;
    background: #fff; }

  .header-bottom.primary-menu .menu.active li {
    display: block !important; }

  .header-bottom.primary-menu .menu.active li .sub-menu {
    display: inline-block !important; }

  .primary-menu .search-form-header {
    display: none; }

  /*
    .footer{
      padding-top: 0;
      padding-left: 5px;
      padding-right: 5px;
      .group{
        >div{
          display: block;
          clear: both;
        }
      }
      .menu{
        clear: both;
        >li{
          width: 100%;
          margin: 10px 20px;
        }
      }
      .map{
        width: 266px;
        margin: 0 auto;
        float: none;
        img{
          width: 100%;
        }
      }
    }
  */
  .footer {
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px; }

  .footer .group > div {
    display: block;
    clear: both; }

  .footer .menu {
    clear: both; }

  .footer .menu > li {
    width: 48%;
    margin: 0 0 10px 0; }

  .footer .menu > li:nth-child(even) {
    text-align: right; }

  .footer .menu > li:nth-child(even) * {
    text-align: right; }

  .footer .map {
    width: 266px;
    margin: 0 auto;
    float: none; }

  .footer .map img {
    width: 100%; }

  #secondary-nav {
    display: none !important; } }
/* Overrides */
#secondary-nav {
  position: absolute;
  display: inline-block;
  bottom: 15px !important;
  width: 100% !important;
  right: 0px !important; }

div#subnavi.row {
  overflow: inherit;
  display: block;
  clear: both; }

div#subnavi.row .three {
  height: 40px; }

#primary-nav ul li {
  height: auto !important; }

#footer .menu-footer-navigation-container ul li {
  display: block; }

.footer ul li a,
.footer ul li a img {
  border: 0; }

#selections #language .dropdown ul {
  z-index: 9999; }

span.skype_pnh_container {
  display: none !important; }

span.skype_pnh_print_container {
  display: inline !important; }

/* =========================================================================
 * Base
 * ========================================================================= */
/*
 * Headings
 * Base styles for all semantic html headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #444444;
  text-rendering: optimizeLegibility;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
  line-height: 1.2125em; }

h1,
.h1 {
  margin-top: 0;
  font-size: 24px;
  font-weight: normal; }

h2,
.h2 {
  font-size: 12px;
  font-weight: bold;
  color: #444;
  text-rendering: optimizelegibility;
  line-height: 1.2125em;
  font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
  margin-top: 0.2em;
  margin-bottom: 0.5em; }

h3,
.h3 {
  font-size: 19px;
  font-weight: normal;
  color: #444;
  text-rendering: optimizelegibility;
  line-height: 1.2125em;
  font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
  margin-top: 0.2em;
  margin-bottom: 0.5em; }

.section .h3 {
  margin: 0px;
  font-size: 19px;
  line-height: 24px; }

h4,
.h4 {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: .1em; }

.h-l1,
.h-l2,
.h-l3 {
  font-family: Verdana, Arial, "sans serif";
  color: #444; }

.h-l1 {
  font-size: 24px; }

.h-l2 {
  font-size: 19px; }

.h-l3 {
  font-size: 12px; }

/*
 * Typography
 * Base styles for all typographic elements
 */
.paragraph {
  font-family: Verdana, Arial, "sans serif";
  font-size: 13px;
  color: #666; }

/*
 * Forms
 * Base styles for all form elements e.g. labels, checkboxes, inputs and so on...
 */
input,
textarea,
select {
  border-width: 1px; }

input[type="submit"] {
  border: none; }

label {
  float: left;
  font-size: 13px;
  line-height: 18px;
  color: #666666;
  margin: 0 12px 0 2px; }

select::-ms-expand {
  display: none; }

select {
  float: right;
  font-size: 12px;
  color: #444444;
  -webkit-appearance: button;
  -moz-appearance: button;
  border: 1px solid #cecece;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  background: url("../img/select_button.png") no-repeat right center, url("../img/select_bg.png") repeat-x;
  width: 100%;
  max-width: 100%;
  height: 30px;
  margin: 0 0 20px 0;
  padding: 0 30px 0 5px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F0F0F0', GradientType=0); }

.lt-ie10 select {
  background: url("../img/select_bg.png") repeat-x;
  padding-right: 0; }

select:disabled {
  color: #cecece; }

.select-overlay {
  display: none; }

/* mozilla fix */
@-moz-document url-prefix() {
  select {
    padding: 5px 0 0 0; }

  .select-container {
    width: 100%;
    clear: right;
    position: relative; }

  .select-container > div {
    position: relative;
    width: 100%;
    height: 30px; }

  .select-container .select-overlay {
    pointer-events: none;
    display: block;
    position: absolute;
    width: 33px;
    height: 28px;
    background: url("../img/select_button.png") no-repeat right center, url("../img/select_bg.png") repeat-x;
    z-index: 777;
    border-top: 1px solid #cecece;
    border-right: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    right: 0; } }
/*
 * Lists
 * Base styles for all list & definition elements e.g. <ul>, <ol>, <li>, <dl>, <dt> & <dd>
 */
ul.bullet {
  list-style-type: disc;
  padding-left: 20px; }

ul.bullet li {
  list-style: disc; }

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0; }

dl {
  margin: 0 0 10px 0; }

dl dt {
  float: left;
  min-width: 60px;
  font-weight: bold; }

/*
 * Helpers
 * Helper classes for quick fixes/styles
 */
screen-reader-text,
.hidden {
  display: none; }

.alignleft {
  float: left; }

.alignright {
  float: right; }

.aligncenter {
  display: block !important;
  margin-left: auto;
  margin-right: auto; }

/*
 * Links
 * Base styles for the anchor tag.
 */
a {
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

/* =========================================================================
 * Modules & Plugins
 * ========================================================================= */
/*
 * WP-Gallery
 * Styles for the interactive image-gallery shortcode
 */
.es-carousel-wrapper {
  padding: 5px 0;
  position: relative;
  margin-bottom: 20px;
  min-height: 70px; }

.es-carousel {
  overflow: hidden; }

.es-carousel ul {
  display: none;
  position: relative;
  left: 0; }

.es-carousel ul li {
  height: 100%;
  display: inline-block;
  vertical-align: middle; }

.es-carousel ul li a {
  border: 1px solid #ccc !important;
  display: block;
  padding: 1px;
  -webkit-touch-callout: none;
  /* option */
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.5;
  background: #FFF;
  text-align: center; }

.es-carousel ul li.selected a {
  opacity: 1;
  border-color: #222; }

.es-carousel ul li a img {
  display: inline-block;
  border: none;
  max-height: 65px;
  max-width: 100%; }

.es-nav span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  border: solid 1px #cccccc;
  height: 67px;
  display: inline-block;
  background: url("../img/bg-prev.png") center no-repeat #ffffff;
  margin-top: -35px;
  text-indent: -9000px;
  cursor: pointer; }

.es-nav span.es-nav-next {
  right: 0;
  left: auto;
  background-image: url("../img/bg-next.png"); }

.rg-image-wrapper {
  display: table;
  table-layout: fixed;
  width: 100%; }

.rg-image {
  width: 100%;
  height: 600px;
  vertical-align: middle;
  text-align: center;
  display: table-cell; }

@media screen and (max-width: 800px) {
  .rg-image {
    height: auto !important; } }
@media screen and (max-width: 840px) {
  .rg-image {
    height: auto; } }
.rg-image img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 100%;
  padding: 2px;
  background: #FFF;
  border: solid 1px #ccc; }

.rg-gallery {
  overflow: hidden; }

/*
 * Toggle List
 * Styles for the display of toggled content-lists
 */
.toggle-list a.toggle {
  font-size: 19px;
  line-height: 22px;
  font-weight: normal; }

.toggle-list a.toggle b {
  font-weight: normal; }

.toggle-list.small a {
  font-size: 12px;
  font-weight: normal; }

.toggle-list li.active > a {
  color: #ff0000;
  font-weight: normal;
  background: url(../img/4-Red-Link-7x5px.png) no-repeat 0 50%; }

.toggle-list li.active .toggle-sublist {
  display: block; }

.toggle-list .row {
  padding: 0; }

.toggle-sublist {
  padding: 10px 0 10px 12px;
  display: none; }

.toggle-sublist a:not(.button) {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  background: url(../img/3-Red-Link-5x7px.png) no-repeat 0 50%;
  padding: 0 0 0 13px;
  color: #666666; }

/*
 * Social Icons
 * Styles for the display of social-media network icons
 */
.social-networks {
  float: right;
  overflow: hidden;
  padding: 0 !important; }

.social-networks.regional {
  margin: 5px 0 0 0 !important; }

.social-networks li {
  float: left;
  margin: 4px 14px 0 0; }

.social-networks li:last-child {
  margin-right: 0px; }

.social-networks li a {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  color: transparent; }

.social-networks li.last {
  float: right; }

.social-networks li.last a {
  text-indent: 0; }

.social-networks .mail {
  background: url(../img/social/icon_mail_red.png) no-repeat;
  background-size: 24px 17px;
  margin-top: 1px;
  width: 24px;
  height: 17px; }

.social-networks .xing {
  background: url(../img/social/xing.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .facebook {
  background: url(../img/social/facebook.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .twitter {
  background: url(../img/social/twitter.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .youtube {
  background: url(../img/social/youtube.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .pinterest {
  background: url(../img/social/pinterest.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .linkedin {
  background: url(../img/social/linkedin.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .google,
.social-networks .googleplus {
  background: url(../img/social/googleplus_black.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .instagram {
  background: url(../img/social/instagram.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .foursquare {
  background: url(../img/social/foursquare.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .flickr {
  background: url(../img/social/flickr.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .vkontakte, .social-networks .vk {
  background: url(../img/social/vkontakte.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

.social-networks .rss {
  background: url(../img/social/rss.png) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px; }

@media screen and (min-width: 860px) and (max-width: 1120px) {
  .three .social-networks li {
    margin-left: 5px; } }
@media screen and (min-width: 480px) and (max-width: 860px) {
  .three .social-networks {
    float: none;
    clear: both; }

  .three .social-networks li {
    margin-left: 0;
    margin-right: 5px; } }
/*
 * Keyvisual
 * Styles for the site-keyvisual beneath the site-header
 */
.keyvisual {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0; }

.keyvisual .keyvisual-wrapper {
  max-height: 500px; }

.keyvisual .keyvisual-wrapper img {
  max-width: 100%;
  width: 100%;
  height: auto; }

.keyvisual .keyvisual-wrapper .header-widget-wrapper {
  z-index: 2000;
  position: absolute;
  top: 0;
  width: 100%; }

.keyvisual .keyvisual-wrapper .header-widget-wrapper .residential-search {
  display: inline-block;
  width: 100%;
  height: 100%; }

.keyvisual .homepage .userQ {
  display: none !important; }

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .keyvisual .search-form-header.small {
    margin-top: 0px; } }
@media screen and (min-width: 960px) and (max-width: 1024px) {
  .keyvisual .search-form-header.small {
    margin-top: -15px; }

  .keyvisual .homepage-search .tabs-area {
    top: 40px !important; } }
@media screen and (min-width: 768px) and (max-width: 960px) {
  .keyvisual .search-form-header.small {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: -15px; }

  .keyvisual .search-form-header.small h2 {
    margin-bottom: 5px; }

  .keyvisual .search-form-header.small .twelve {
    margin-bottom: 5px; }

  .keyvisual .homepage-search .tabs-area {
    top: 40px !important; } }
@media screen and (min-width: 480px) and (max-width: 960px) {
  .keyvisual .homepage-search .tabs-area {
    top: 38px !important; }

  .keyvisual .homepage-search .tabs-area .row {
    margin: 0 !important; }

  .keyvisual .homepage-search .tabs-area .button {
    margin: 0 !important; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  .keyvisual:not(.listing-search) .keyvisual-wrapper {
    max-height: none !important; }

  .keyvisual:not(.listing-search) .search-form-header.small {
    margin-top: -15px; }

  .keyvisual:not(.listing-search) .search-form-header.small h1 {
    margin-bottom: 5px; }

  .keyvisual:not(.listing-search) .search-form-header.small .six,
  .keyvisual:not(.listing-search) .search-form-header.small .twelve {
    margin-bottom: 5px; }

  .keyvisual:not(.listing-search) .homepage-search {
    margin-top: 10%; }

  .keyvisual:not(.listing-search) .homepage-search .tabs-area {
    position: relative;
    width: 70%;
    top: 0 !important;
    left: 0;
    margin: 0 auto; }

  .keyvisual:not(.listing-search) .homepage-search .tabs-area .tabset {
    width: 101%; }

  .keyvisual:not(.listing-search) .homepage-search .tabs-area .tabset li {
    width: 33.3%; }

  .keyvisual:not(.listing-search) .homepage-search .tabs-area .tab-content input[type="text"] {
    width: 100%;
    min-width: inherit;
    max-width: inherit; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  body .keyvisual {
    margin: 0; }

  body .keyvisual:not(.listing-search) {
    display: inline-block;
    position: relative;
    float: none;
    overflow: inherit;
    clear: both;
    height: auto; }

  body .keyvisual:not(.listing-search) .keyvisual-wrapper {
    overflow: inherit;
    clear: both;
    max-height: none !important; }

  body .keyvisual:not(.listing-search) .keyvisual-wrapper > img {
    display: none; }

  body .keyvisual:not(.listing-search) .keyvisual-wrapper .header-widget-wrapper {
    display: block;
    overflow: inherit;
    clear: both;
    position: relative; }

  body .keyvisual:not(.listing-search) .keyvisual-wrapper .header-widget-wrapper > .row {
    padding: 0; }

  body .keyvisual:not(.listing-search) .keyvisual-wrapper .header-widget-wrapper .search-form-header.small {
    padding: 0 10px;
    margin: 0;
    width: 100%;
    max-width: none; }

  body .keyvisual:not(.listing-search) .keyvisual-wrapper .header-widget-wrapper .search-form-header.small form > .six,
  body .keyvisual:not(.listing-search) .keyvisual-wrapper .header-widget-wrapper .search-form-header.small .twelve {
    height: 30px;
    display: inline-block;
    margin-bottom: 10px !important;
    display: block;
    float: none !important; } }
@media screen and (max-width: 479px) {
  .kv-property-defaultImage {
    display: none; }

  .keyvisual {
    display: inline-block;
    position: relative;
    float: none;
    overflow: inherit;
    clear: both;
    height: auto; }

  .keyvisual .keyvisual-wrapper {
    overflow: inherit;
    clear: both;
    max-height: none !important; }

  .keyvisual .keyvisual-wrapper .header-widget-wrapper {
    display: block;
    overflow: inherit;
    clear: both;
    position: relative; }

  .keyvisual .keyvisual-wrapper .header-widget-wrapper > .row {
    padding: 0; }

  .keyvisual .keyvisual-wrapper .header-widget-wrapper .search-form-header.small {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none; }

  .keyvisual .keyvisual-wrapper .header-widget-wrapper .search-form-header.small form > .six,
  .keyvisual .keyvisual-wrapper .header-widget-wrapper .search-form-header.small .twelve {
    height: 30px;
    display: inline-block;
    margin-bottom: 10px !important;
    display: block;
    float: none !important; }

  .keyvisual .homepage-search {
    width: auto;
    clear: both;
    margin: 0; }

  .keyvisual .homepage-search input[type="text"] {
    width: 100%; }

  .keyvisual .tabs-area {
    position: relative;
    top: 0;
    left: 0;
    width: 98%;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0; }

  .keyvisual .tabs-area .tabset {
    width: auto; }

  .keyvisual .tabs-area .tabset li {
    width: 33%; }

  .keyvisual .tabs-area .tab-content {
    padding: 5px; } }
/*
 * Tabbed Content
 * Styles for the tabbed content module
 */
.tabs-area {
  border: 1px solid #dedede;
  background: #fff;
  overflow: hidden;
  width: 100%; }

.tabs-area .tabset {
  width: 101%;
  overflow: hidden; }

.tabs-area .tabset li {
  float: left;
  width: 198px;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 34px;
  border-left: solid 1px #d8d8d8;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.tabs-area .tabset li a {
  display: block;
  color: #8b8b8b;
  border-bottom: 1px solid #d8d8d8; }

.tabs-area .tabset li a:first-child {
  border-left: none; }

.tabs-area .tabset li a:hover {
  text-decoration: none;
  color: #FF0000; }

.tabs-area .tabset li:first-child {
  border-left: solid 1px #f0f0f0; }

.tabs-area .tabset li:nth-child(2),
.tabs-area .tabset li:nth-child(3) {
  border-left: solid 1px #DEDEDE; }

.tabs-area .tabset li:last-child {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.tabs-area .tabset.four-tabs li {
  width: 25%; }

.tabs-area .tabset.three-tabs li {
  width: 33.3%; }

.tabs-area .tabset.two-tabs li {
  width: 50%; }

.tabs-area .tabset .active {
  border-bottom: 1px solid #f0f0f0;
  color: #FF0000;
  background: #f0f0f0;
  -webkit-box-shadow: 4px 0 4px #d8d8d8;
  -moz-box-shadow: 4px 0 4px #d8d8d8;
  box-shadow: 4px 0 4px #d8d8d8; }

.tabs-area .tabset .active a {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.tabs-area .tab-content {
  padding: 30px 23px 18px 23px;
  display: none;
  background: #f0f0f0; }

.tabs-area .tab-content h1 {
  font: 24px/29px Verdana, Arial, Helvetica, sans-serif;
  color: #444444;
  margin: 0px 0 17px 0; }

.tabs-area .tab-content .text {
  float: left;
  width: 300px;
  height: 30px; }

.tabs-area .tab-content .button {
  float: right;
  width: 100%; }

.tabs-area .tab-content.active {
  display: block; }

.tabs-area .tab-content .advanced {
  display: inline-block;
  vertical-align: top;
  color: #818181;
  font-size: 12px;
  line-height: 17px;
  margin: 13px 35px 0 0; }

.tabs-area .tab-content .agent {
  background: transparent; }

.tabs-area.article-tabs {
  border: 0; }

.tabs-area.article-tabs > h2 {
  display: inline-block; }

.tabs-area.article-tabs .tab-content {
  padding: 0;
  background: transparent; }

.tabs-area.article-tabs .tab-content > hr:first-child {
  margin-top: 0; }

.tabs-area.article-tabs .tab-content > iframe {
  min-height: 1100px; }

/*
 * Link-Styles
 * Additional styles and modifiers for the display of anchor tags
 */
.link {
  display: inline-block;
  vertical-align: top;
  background: url(../img/3-Red-Link-5x7px.png) no-repeat 0 50%;
  padding: 0 0 0 13px;
  color: #666666;
  font-weight: normal; }

.link--grey {
  background-image: url(../img/1-Grey-Link-5x7px.png) !important; }

.link-holder .more {
  float: right;
  margin: 0;
  text-decoration: none;
  color: #fff;
  *color: #fff;
  vertical-align: top;
  font-size: 0px;
  background: url(../img/1-Grey-Link-5x7px.png) no-repeat 0 50%; }

.link-holder .more span {
  color: #666666;
  font-size: 13px;
  margin-left: 15px;
  line-height: 26px; }

.link-holder .more:hover span {
  text-decoration: underline; }

.link-holder .more.search {
  margin-top: 2px;
  background: url(../img/search-arrow-left.png) no-repeat 0 50%; }

.link-holder .more.search span {
  margin-left: 25px; }

.link-holder .more.search.left {
  background: url(../img/search-arrow-right.png) no-repeat 0 50%; }

.link-holder .more-link-widget {
  margin-top: 0px; }

.more-link-widget {
  color: #666666;
  background: url(../img/1-Grey-Link-5x7px.png) no-repeat 0 50%;
  padding: 0 0 0 15px;
  margin-top: 4px;
  float: right; }

/*
 * Navigation-Styles
 * Styles for navigation section f.e. breadcrumb or others
 */
#breadcrumbs {
  display: inline-block;
  width: 100%; }

#breadcrumbs h2 {
  margin-bottom: 0;
  display: inline-block !important; }

#breadcrumbs a {
  display: inline-block; }

#breadcrumbs a h2:hover {
  text-decoration: underline; }

.page-navigation {
  line-height: 22px; }

.page-navigation a span {
  background-color: #ddd;
  color: #777; }

.page-navigation span {
  background-color: #EC403B;
  display: inline-block;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 4px; }

.group .page-navigation {
  float: left; }

.group .page-navigation span {
  background-color: #ffffff;
  display: inline-block;
  padding: 0 2px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0px;
  font-weight: normal; }

.group .page-navigation > span {
  font-weight: bold !important; }

.group .page-navigation > *:first-child span {
  display: inline-block;
  padding-left: 15px;
  background-image: url("../img/5-Grey-Link-5x7px.png");
  background-position: left center;
  background-repeat: no-repeat; }

.group .page-navigation > *:last-child span {
  display: inline-block;
  padding-right: 15px;
  background-image: url("../img/1-Grey-Link-5x7px.png");
  background-position: right center;
  background-repeat: no-repeat; }

.ie9 .menu-secondary-navigation-container,
.ie9 .header-bottom.primary-menu > nav {
  float: left; }

/*
 * Twitter widget
 * Styles for the twitter widget
 */
.twitter-widget {
  overflow: hidden;
  clear: left;
  padding-top: 20px; }

.twitter-widget .red {
  float: none; }

.twitter-widget .item {
  display: table;
  margin-bottom: .75em;
  padding-bottom: .5em; }

.twitter-widget .item__content,
.twitter-widget .item__avatar {
  display: table-cell; }

.twitter-widget .item__avatar {
  padding-right: 1em;
  padding-top: .3em;
  min-width: 48px;
  display: none; }

.twitter-widget .item__content {
  vertical-align: middle; }

.twitter-widget .item__content .time {
  float: left; }

.twitter-widget .item__content .text a {
  font-weight: bold; }

/*
 * WP-Styles
 * Styles for some of the default wordpress classes.
 */
.wp-caption {
  margin-bottom: 10px;
  padding-top: 5px;
  display: inline-block;
  overflow: hidden; }

.wp-caption.alignleft {
  margin-right: 10px; }

.wp-caption.alignright {
  margin-left: 10px; }

.wp-caption img {
  display: block;
  margin: 0 auto; }

.wp-caption .wp-caption-text {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 0.9em; }

#landing-page-offer-form div.notice,
#landing-page-offer-form p {
  margin: 0 0 10px 0 !important; }

#landing-page-offer-form .uploadcare-widget-circle-active {
  background-color: #ff0000 !important;
  color: #ff0000 !important; }

#landing-page-offer-form .uploadcare-widget-file-name {
  text-decoration: none; }

.widget_featured_agent_shop,
.widget_featured_listing {
  clear: both;
  padding-bottom: 20px; }

.widget_featured_agent_shop .listing-head,
.widget_featured_listing .listing-head {
  font-size: 12px;
  color: #444;
  font-weight: bold; }

.widget_featured_agent_shop .widget-title,
.widget_featured_listing .widget-title {
  text-transform: none; }

.widget_featured_agent_shop img,
.widget_featured_listing img {
  width: 100%; }

.widget_featured_agent_shop .listing-type,
.widget_featured_listing .listing-type,
.widget_featured_agent_shop .listing-price,
.widget_featured_listing .listing-price {
  display: inline-block;
  margin: 15px 0 0 0; }

.widget_featured_agent_shop .listing-type,
.widget_featured_listing .listing-type {
  float: left; }

.widget_featured_agent_shop .listing-price,
.widget_featured_listing .listing-price {
  float: right;
  font-weight: bold; }

.widget_featured_agent_shop .listing-address,
.widget_featured_listing .listing-address {
  clear: both;
  padding: 10px 0 10px 0; }

.widget_featured_agent_shop .widget-key-value,
.widget_featured_listing .widget-key-value {
  clear: both; }

.widget_featured_agent_shop .widget-key-value > *,
.widget_featured_listing .widget-key-value > * {
  display: inline-block; }

.widget_featured_agent_shop .widget-key-value :nth-child(1),
.widget_featured_listing .widget-key-value :nth-child(1) {
  float: left;
  font-weight: bold; }

.widget_featured_agent_shop .widget-key-value :nth-child(2),
.widget_featured_listing .widget-key-value :nth-child(2) {
  float: right; }

.widget_featured_agent_shop .link-holder,
.widget_featured_listing .link-holder {
  clear: both; }

.widget_featured_agent_shop .contact-form-container,
.widget_featured_listing .contact-form-container {
  clear: both;
  padding-top: 10px; }

.widget_featured_agent_shop .contact-form-container .contact-link,
.widget_featured_listing .contact-form-container .contact-link {
  text-align: right;
  padding-bottom: 10px; }

.widget_featured_agent_shop .contact-form-container .contact-form,
.widget_featured_listing .contact-form-container .contact-form {
  display: none; }

.widget_featured_agent_shop .website,
.widget_featured_listing .website {
  clear: both; }

.widget_featured_agent_shop .widget-title {
  margin: 8px 0 15px 0; }

.widget_featured_agent_shop .post-address {
  margin: 0 0 10px 0; }

.sticky-widget {
  width: 45px;
  height: 197px;
  position: absolute;
  z-index: 9999;
  top: 50%;
  margin-top: -100px;
  left: 0; }

.sticky-widget a:hover {
  text-decoration: none; }

@media screen and (min-width: 769px) and (max-width: 1120px) {
  .sticky-widget {
    top: 145px; } }
@media screen and (min-width: 581px) and (max-width: 768px) {
  .sticky-widget {
    top: 156px; } }
@media screen and (max-width: 580px) {
  .sticky-widget {
    display: none; } }
/*
.six.teaser {
  float: none !important;
  width: 100%;
  // display: inline-block !important;

  * {
    max-width: 240px;
    width: 100%;
  }
}

#secondary.widget-area {
  -moz-column-count: 2;
  -moz-column-gap: 8.4%;
  -webkit-column-count: 2;
  -webkit-column-gap: 8.4%;
  column-count: 2;
  column-gap: 8.4%;
}
*/
.pin-me-container a.pin-me {
  display: none; }

.pin-me-container:hover a.pin-me {
  display: block; }

.pin-me-container a {
  display: none;
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-image: url(../../../passets.pinterest.com/images/pidgets/pinit_bg_en_rect_gray_20_1.png);
  height: 20px;
  width: 40px; }

.pin-me-container div:hover a {
  display: block; }

.pin-me-container div:hover a:hover {
  background-position: 0 -40px; }

.pin-me-container .alignleft,
.pin-me-container .alignright,
.pin-me-container .aligncenter {
  float: none !important; }

.pin-me-container .alignleft,
.pin-me-container .alignright {
  margin-right: 0 !important;
  margin-bottom: 0 !important; }

.wp-caption.aligncenter {
  display: block !important; }

#franchisecontact-form {
  clear: both;
  border-top: 2px solid #888;
  margin: 20px 0 0 0; }

#franchisecontact-form .title {
  text-align: center;
  font-size: 19px;
  margin: 20px 0 20px 0; }

#franchisecontact-form .link-holder {
  float: left; }

#franchisecontact-form .row {
  min-height: 30px; }

#franchisecontact-form textarea {
  min-height: 200px; }

.location-list .title {
  font-size: 19px;
  margin: 20px 0 10px 0 !important;
  font-weight: normal; }

.location-list .location {
  line-height: 30px;
  min-height: 30px;
  vertical-align: center; }

.keyvisual .franchiseselection-widget {
  /*
  background-color: white;
  float: right;
  width: 225px;
  padding: 20px;
  right: 0;
  */ }

.keyvisual .franchiseselection-widget .title {
  font-size: 19px;
  margin: 0 0 15px 0 !important;
  font-weight: normal;
  text-transform: uppercase; }

.keyvisual .franchiseselection-widget {
  margin-top: 10%; }

@media screen and (max-width: 580px) {
  .keyvisual .franchiseselection-widget {
    width: 90% !important; } }
.campaigns-page .button {
  background-clip: border-box; }

.campaigns-page select {
  margin-bottom: 0; }

.campaigns-page .redline {
  position: relative;
  z-index: 100; }

.campaigns-page .redline.bottom {
  z-index: 10;
  margin-top: -2px; }

.campaigns-page .close {
  width: 150px;
  float: right;
  margin-top: -10px; }

.campaigns-page .close .button {
  text-decoration: none;
  text-align: center;
  line-height: 30px; }

.campaigns-page .toggle {
  padding-top: 40px; }

.campaigns-page .keyvisual-full {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto; }

.campaigns-page .keyvisual-full img {
  width: 100%; }

.campaigns-page .keyvisual-full .header-widget-wrapper {
  position: absolute;
  top: 0;
  right: 0; }

.campaigns-page .keyvisual-widget {
  position: absolute;
  top: 130px;
  margin-top: 40px;
  width: 100%;
  z-index: 20; }

.campaigns-page .keyvisual-widget .widget {
  padding: 20px;
  background: #ffffff;
  width: 290px;
  float: right;
  -webkit-box-shadow: 0px 2px 2px 0px #919191;
  -moz-box-shadow: 0px 2px 2px 0px #919191;
  box-shadow: 0px 2px 2px 0px #919191; }

@media screen and (max-width: 767px) {
  .campaigns-page .keyvisual-widget {
    position: relative;
    display: inline-block;
    width: 100%;
    top: 0; }

  .campaigns-page .keyvisual-widget .widget {
    width: 100%;
    float: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0; }

  .campaigns-page .keyvisual-widget .six {
    width: 100%;
    margin: 0;
    padding: 0; }

  .campaigns-page .header-top .secondary-menu {
    width: 100%;
    padding: 10px; }

  .campaigns-page .close {
    margin-top: -40px;
    padding-top: 5px;
    margin-bottom: 20px; } }
.campaigns-page .menu-links ul li,
.campaigns-page .footer-links ul li {
  float: left;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 2px solid #C9C9C9;
  line-height: 14px; }

.campaigns-page .menu-links ul li:last-child,
.campaigns-page .footer-links ul li:last-child {
  border-right: none;
  padding: 0;
  margin: 0; }

.campaigns-page .menu-links ul li a,
.campaigns-page .footer-links ul li a,
.campaigns-page .menu-links ul li a:hover,
.campaigns-page .footer-links ul li a:hover,
.campaigns-page .menu-links ul li a:visited,
.campaigns-page .footer-links ul li a:visited {
  color: #858484;
  line-height: 14px;
  font-size: 14px; }

.campaigns-page .menu-links ul {
  float: right; }

.campaigns-page .menu-links ul li a,
.campaigns-page .menu-links ul li a:hover,
.campaigns-page .menu-links ul li a:visited {
  font-size: 13px;
  font-weight: normal;
  color: #858484;
  text-decoration: none; }

.campaigns-page .menu-links ul li a:hover {
  color: #000000; }

.campaigns-page .contact-footer .close {
  margin-top: -40px;
  padding-top: 25px; }

.campaigns-page .contact-footer .contact-social-links {
  display: inline-block;
  width: 100%;
  clear: both; }

.campaigns-page .contact-footer .contact-information {
  border-top: solid 1px #dedede;
  padding: 5px 0 0 0;
  display: inline-block;
  width: 100%;
  clear: both; }

.campaigns-page .contact-footer .contact-information h2 {
  font-size: 19px !important;
  font-weight: normal;
  margin: -2px 0 10px 0; }

.campaigns-page .contact-footer .contact-information address {
  font-style: normal; }

.campaigns-page .contact-footer .contact-information .four {
  width: 27.9%;
  margin-right: 2%; }

.campaigns-page .contact-footer .contact-information .eight {
  width: 69%; }

.campaigns-page .contact-footer .contact-form {
  border-top: solid 1px #dedede;
  padding-top: 5px;
  margin-top: 8px;
  clear: both; }

.campaigns-page .contact-footer .contact-form textarea {
  min-height: 200px; }

@media screen and (max-width: 767px) {
  .campaigns-page .contact-footer .close {
    margin-top: -40px;
    padding-top: 5px;
    margin-bottom: 20px; }

  .campaigns-page .contact-footer .four,
  .campaigns-page .contact-footer .six,
  .campaigns-page .contact-footer .eight {
    width: 100% !important;
    margin: 0 !important; }

  .campaigns-page .contact-footer .no-padding .four,
  .campaigns-page .contact-footer .no-padding .six,
  .campaigns-page .contact-footer .no-padding .eight,
  .campaigns-page .contact-footer .no-padding .twelve {
    padding: 0; }

  .campaigns-page .contact-footer .four img {
    width: 100% !important;
    margin-bottom: 5px; }

  .campaigns-page .contact-footer .contact-information {
    margin-bottom: 10px; }

  .campaigns-page .contact-footer .contact-form {
    border: none; }

  .campaigns-page .contact-footer select {
    margin-bottom: 15px; } }
.career-description button {
  width: 264px;
  float: right; }

.career-description button.first {
  margin-bottom: 10px; }

.career-description .franchise-job-application {
  margin-bottom: 10px; }

.franchise-job-application .info {
  font-size: 10px; }

.franchise-job-application button {
  margin-top: 10px;
  background-clip: border-box; }

.franchise-job-application label input[type="file"] {
  position: fixed;
  top: -1000px; }

.franchise-job-application select {
  margin-bottom: 13px; }

.franchise-job-application input {
  font-size: 11px; }

.franchise-job-application .file {
  padding: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  background: #fff;
  height: 30px;
  line-height: 20px;
  font-size: 11px;
  padding: 5px;
  border: solid 1px #ccc;
  box-sizing: border-box;
  color: #A9A9A9;
  box-shadow: rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px inset;
  margin-bottom: 11px;
  position: relative;
  overflow: hidden;
  text-align: left; }

.franchise-job-application .file .handle {
  width: 30px;
  height: 28px;
  position: absolute;
  right: -1px;
  top: -1px;
  border: 1px solid #ccc;
  background: url("../img/upload-icon.jpg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: 50% 50%; }

.franchise-job-application .file.error {
  border-color: #FF0000; }

.franchise-job-application .file.error .handle {
  border-color: #FF0000; }

.google-maps-wrapper {
  margin-bottom: 20px; }

.pagelisting {
  clear: both; }

.pagelisting .row {
  margin-bottom: 10px; }

.pagelisting ul {
  float: left;
  width: 33%; }

.pagelisting ul li a {
  background: url(../img/3-Red-Link-5x7px.png) no-repeat 0 50%;
  padding: 0 0 0 13px; }

.rating-widget table tr {
  margin-bottom: 5px; }

.rating-widget table tr td {
  height: 10px;
  padding: 0 0 5px 0; }

.rating-widget table tr td.bar {
  width: 70%; }

.rating-widget table tr td.bar .background {
  background: #F0F0F0;
  width: 100%;
  height: 100%; }

.rating-widget table tr td.bar .background .percentage {
  display: block;
  height: 100%;
  background: #FF0000; }

.header-top {
  overflow: visible;
  position: relative;
  padding-top: 75px; }

.section {
  border-top: solid 1px #DEDEDE;
  padding: 5px 0 0 0;
  margin: 7px 0 0 0; }

.section h1 {
  margin: 10px 0 10px 0;
  font-family: 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
  font-size: 19px;
  line-height: 24px;
  color: #444444; }

.section h3 {
  margin: 0;
  font-size: 19px;
  line-height: 24px; }

.section p {
  padding: 0 0 5px 0;
  font-size: 13px; }

.section .content h1:first-child {
  margin-top: 0 !important; }

.teaser {
  margin-top: 20px; }

.teaser .input-box {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 200;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.widget_recent_entries a {
  color: #8b8b8b; }

.widget_recent_entries li {
  margin-bottom: 6px; }

.blog-widgets h3 {
  margin: 0;
  font: 13px/1.2125em Verdana, Arial;
  color: #444444;
  border-bottom: solid 1px #DEDEDE;
  margin: 4px 0 0 0;
  padding: 0 0 6px 0;
  text-transform: uppercase; }

.blog-widgets ul {
  padding: 10px 0 0 0; }

.blog-widgets .widget_categories h3 {
  color: #ff0000; }

.blog-widgets .widget_categories ul li a {
  text-transform: uppercase; }

.homepage-search .tabs-area {
  position: absolute;
  left: 50%;
  top: 80px;
  width: 600px;
  margin: 0 0 0 -300px;
  -webkit-box-shadow: 4px 4px 4px #aaaaaa;
  -moz-box-shadow: 4px 4px 4px #aaaaaa;
  box-shadow: 4px 4px 4px #aaaaaa; }

.homepage-search .tabs-area .tabset .active {
  border-bottom: 1px solid #fff;
  color: #000;
  background: none; }

.homepage-search .tabs-area .tabset .active a {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.homepage-search .tabs-area .tabset a:hover {
  color: #000; }

.homepage-search .tabs-area .tab-content {
  background: #fff;
  min-height: 185px; }

.homepage-search .tabs-area .tab-content input[type=text] {
  margin-bottom: 20px; }

.homepage-search .tabs-area .tab-content .first-row {
  margin: 0 0 10px 0; }

.homepage-search .tabs-area .tab-content .second-row {
  margin-bottom: 10px; }

.homepage-search .tabs-area .tab-content .second-row a {
  margin-top: 30px;
  display: block; }

.homepage-search .tabs-area .tab-content .second-row .button {
  margin-top: 30px;
  height: 35px; }

.widget-small-form .six {
/*  width: 47.8% !important; */
  width: 30% !important;
  margin-right: 2% !important; }

.widget-small-form .six.last {
  margin-right: 0 !important; }

.widget-small-form .button {
  margin-top: 13px; }

h2.red {
  float: left; }

.contact {
  width: 100%;
  display: inline-block;
  clear: both;
  margin: 3px 0 0 0; }

.contact dt {
  min-width: 70px; }

.contact h2 {
  font-size: 19px !important; }

.contact .four {
  width: 27.9%;
  margin-right: 2%; }

.contact .eight {
  width: 69%; }

.contact .logo {
  margin-right: 20px;
  float: left; }

.contact .info {
  width: 100%; }

.contact .info dl {
  margin: 0; }

.contact p {
  margin: 0;
  padding: 0; }

.contact address {
  font-style: normal; }

.contact .contact-link,
.contact .shop-link {
  float: right;
  color: #666666; }

.contact .contact-link a,
.contact .shop-link a {
  font-size: 0;
  line-height: 18px;
  display: block;
  color: #fff;
  *color: #fff;
  vertical-align: top;
  text-decoration: none;
  background: url(../img/1-Grey-Link-5x7px.png) no-repeat 0 50%; }

.contact .contact-link a span,
.contact .shop-link a span {
  color: #666666;
  font-size: 13px;
  line-height: 26px;
  margin-left: 15px; }

.contact .contact-link a:hover span,
.contact .shop-link a:hover span {
  text-decoration: underline; }

.contact .contact-link.active a,
.contact .shop-link.active a {
  background: url(../img/2-Grey-Link-7x5px.png) no-repeat 0 50%; }

.contact .legal-text {
  clear: both;
  padding-top: 7px; }

.contact .contact-form {
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
  clear: both;
  width: 100%; }

.contact .contact-form.open {
  display: block; }

.contact .contact-form span {
  display: block; }

.contact .contact-form textarea {
  min-height: 200px; }

.contact.regional h2 {
  float: left; }

.tinymce {
  display: inline-block !important;
  padding-top: 15px !important;
  padding-bottom: 0px !important;
  width: 100%; }

.table-page {
  width: 100%; }

.table-page th,
.table-page td {
  text-align: left; }

.row .agent {
  clear: both;
  display: inline-block;
  width: 100%;
  min-height: 150px;
  background: #efefef; }

.row .agent h1,
.row .agent h2,
.row .agent h3 {
  font-size: 19px !important;
  line-height: 19px;
  margin-bottom: 4px !important;
  margin-top: 26px !important; }

.row .agent dl {
  margin: 0; }

.row .agent address {
  font-style: normal; }

.row .agent .link-holder .more {
  margin-top: 15px;
  margin-bottom: 10px;
  margin-right: 15px; }

.row .agent .three {
  width: 25.5%; }

.row .agent .three img {
  width: 100%;
  max-height: 200px; }

.row .agent .nine {
  width: 70.4%; }

.row .agent .social-networks {
  float: left; }

.references .agent {
  min-height: 1px !important; }

.references .agent .three img {
  width: 160px !important;
  height: auto !important;
  max-height: none !important; }

.resort-list {
  background: #efefef;
  margin-bottom: 10px; }

.resort-list .eight {
  margin: 0; }

.resort-list .four {
  width: 34.5%;
  text-align: center; }

.resort-list .four .resort-logo {
  text-align: center;
  margin: 90px 0 30% 0;
  width: 100%; }

.resort-list .four .resort-logo img {
  max-width: 253px; }

.resort-list .four .link-holder .more {
  padding-right: 10px; }

.google-maps img {
  max-width: inherit !important; }

.google-maps .map-info-box {
  min-width: 340px; }

.google-maps .map-info-box > img.yac,
.google-maps .map-info-box > img.com {
  margin: 10px 0; }

.google-maps .map-info-box .title {
  font-weight: bold;
  padding-bottom: 5px; }

.google-maps .map-info-box .info {
  min-height: 100px;
  margin-bottom: 10px; }

.google-maps .map-info-box .info img {
  width: 132px;
  height: 99px;
  margin-right: 20px;
  margin-bottom: 0; }

.google-maps .map-info-box a.infolink {
  display: inline-block;
  color: #525152; }

.google-maps .map-info-box a.infolink:hover {
  color: #F00; }

.adjusted-four-eight-grid .group,
.adjusted-four-eight-grid .row {
  padding: 6px 0 15px 0; }

.adjusted-four-eight-grid .group .four,
.adjusted-four-eight-grid .row .four {
  width: 29%;
  margin-right: 2%; }

.adjusted-four-eight-grid .group .eight,
.adjusted-four-eight-grid .row .eight {
  width: 69%; }

.adjusted-four-eight-grid .group p,
.adjusted-four-eight-grid .row p {
  padding: 0; }

.adjusted-four-eight-grid .agent .four {
  width: 29%;
  margin-right: 2%; }

.adjusted-four-eight-grid .agent .eight {
  width: 69%; }

.adjusted-four-eight-grid .agent p {
  padding: 0; }

.post .entry ul {
  list-style-type: disc;
  padding-left: 20px; }

.post .entry ul li {
  list-style: disc; }

.criteria-search,
.search-form-header {
  float: right;
  width: 264px;
  margin: 5px 0 0 0; }

.criteria-search .input-field,
.search-form-header .input-field {
  float: left;
  width: 223px; }

.criteria-search .input-field .text,
.search-form-header .input-field .text {
  margin: 0;
  font-size: 13px;
  line-height: 17px;
  border: 1px solid #D6D6D6;
  padding: 8px 9px 6px; }

.criteria-search .go-button,
.search-form-header .go-button {
  float: right;
  width: 35px;
  height: 35px;
  background: url(../img/bg-search-btn.jpg) no-repeat; }

.criteria-search .go-button .button,
.search-form-header .go-button .button {
  opacity: 0; }

.criteria-search.small,
.search-form-header.small,
.criteria-search.residential,
.search-form-header.residential {
  padding: 20px;
  background: #fff;
  max-width: 265px;
  margin-top: 50px;
  clear: both;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.criteria-search.small h2,
.search-form-header.small h2,
.criteria-search.residential h2,
.search-form-header.residential h2,
.criteria-search.small h1,
.search-form-header.small h1,
.criteria-search.residential h1,
.search-form-header.residential h1 {
  font: 24px/29px Verdana, Arial, Helvetica, sans-serif;
  color: #444444;
  margin: 0 0 17px 0; }

.criteria-search.small select,
.search-form-header.small select,
.criteria-search.residential select,
.search-form-header.residential select {
  margin-bottom: 0; }

.criteria-search.small input[type="text"],
.search-form-header.small input[type="text"],
.criteria-search.residential input[type="text"],
.search-form-header.residential input[type="text"] {
  width: 100%;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.criteria-search.small .text,
.search-form-header.small .text,
.criteria-search.residential .text,
.search-form-header.residential .text {
  float: left;
  width: 300px;
  height: 30px; }

.criteria-search.small .button,
.search-form-header.small .button,
.criteria-search.residential .button,
.search-form-header.residential .button {
  float: right;
  width: 100%; }

.criteria-search.small .advanced,
.search-form-header.small .advanced,
.criteria-search.residential .advanced,
.search-form-header.residential .advanced {
  display: inline-block;
  vertical-align: top;
  color: #818181;
  font-size: 12px;
  line-height: 17px;
  margin: 13px 35px 0 0; }

.criteria-search.small .twelve,
.search-form-header.small .twelve,
.criteria-search.residential .twelve,
.search-form-header.residential .twelve {
  margin-bottom: 20px; }

.criteria-search.small .row,
.search-form-header.small .row,
.criteria-search.residential .row,
.search-form-header.residential .row {
  padding: 0; }

.criteria-search.small .row .six,
.search-form-header.small .row .six,
.criteria-search.residential .row .six,
.search-form-header.residential .row .six,
.criteria-search.small .row .twelve,
.search-form-header.small .row .twelve,
.criteria-search.residential .row .twelve,
.search-form-header.residential .row .twelve {
  margin-bottom: 20px; }

.criteria-search.small .row .six > .six,
.search-form-header.small .row .six > .six,
.criteria-search.residential .row .six > .six,
.search-form-header.residential .row .six > .six,
.criteria-search.small .row .twelve > .six,
.search-form-header.small .row .twelve > .six,
.criteria-search.residential .row .twelve > .six,
.search-form-header.residential .row .twelve > .six {
  margin-bottom: 0; }

.criteria-search.small,
.search-form-header.small {
  margin-top: 30px; }

.criteria-search.search {
  background: #fff;
  width: 225px;
  padding: 20px; }

.criteria-search.search input.text {
  width: 100%; }

.criteria-search.search div.label {
  overflow: hidden;
  height: 16px; }

.criteria-search.search select {
  margin-bottom: 10px; }

.criteria-search.search label {
  margin: 0; }

.criteria-search.search input[type=radio] {
  margin-bottom: 15px; }

.criteria-search.search select[multiple] {
  background: 0;
  height: 70px;
  padding: 0; }

.criteria-search.search form .four {
  margin-right: 0;
  width: 32%; }

.criteria-search.search form .four label {
  font-size: 10px !important; }

.main-form-container {
  float: right;
  width: 470px;
  display: inline-block; }

.main-form-container .six {
  width: 30%;
  margin-right: 5%; }

.main-form-container .six.last {
  width: 47.5%;
  margin-right: 0 !important; }

.page-list-ext .page-list-ext-item {
  margin: 5px 0 10px 0 !important; }

.page-list .page-list-ext-title a,
.page-list > li > a {
  font-weight: bold;
  vertical-align: top;
  background: url(../../images/arrow2.jpg) no-repeat 0 50%;
  padding: 0 0 0 13px;
  color: #666; }

.page-list .page-list-ext-title a {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal; }

.page-list > li {
  padding: 5px 0; }

.page-list > li ul {
  padding: 5px 0 20px 13px; }

.page-list > li ul li {
  font-weight: normal; }

.default-form,
.gg-form,
.offer-form {
  padding-bottom: 30px;
  clear: both;
  width: 100%; }

.default-form .uploadcare-widget,
.gg-form .uploadcare-widget,
.offer-form .uploadcare-widget {
  border: 1px solid #cecece;
  width: 100%;
  height: 33px;
  padding: 4px 0 0 4px;
  background-color: #fff;
  margin: 0 -10px 1em 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.default-form .uploadcare-widget .uploadcare-widget-status,
.gg-form .uploadcare-widget .uploadcare-widget-status,
.offer-form .uploadcare-widget .uploadcare-widget-status {
  width: 10%; }

.default-form .uploadcare-widget .uploadcare-widget-status-text,
.gg-form .uploadcare-widget .uploadcare-widget-status-text,
.offer-form .uploadcare-widget .uploadcare-widget-status-text {
  width: 70%; }

.default-form .uploadcare-widget .uploadcare-widget-circle-back,
.gg-form .uploadcare-widget .uploadcare-widget-circle-back,
.offer-form .uploadcare-widget .uploadcare-widget-circle-back {
  background-color: #c9c9c9; }

.default-form .uploadcare-widget .uploadcare-widget-buttons,
.gg-form .uploadcare-widget .uploadcare-widget-buttons,
.offer-form .uploadcare-widget .uploadcare-widget-buttons {
  float: right;
  text-align: right;
  padding-top: 1px; }

.default-form .uploadcare-widget .uploadcare-widget-buttons li,
.gg-form .uploadcare-widget .uploadcare-widget-buttons li,
.offer-form .uploadcare-widget .uploadcare-widget-buttons li {
  float: right; }

.default-form .uploadcare-widget .uploadcare-widget-buttons-dialog,
.gg-form .uploadcare-widget .uploadcare-widget-buttons-dialog,
.offer-form .uploadcare-widget .uploadcare-widget-buttons-dialog {
  display: none; }

.default-form .uploadcare-widget .uploadcare-widget-circle-active,
.gg-form .uploadcare-widget .uploadcare-widget-circle-active,
.offer-form .uploadcare-widget .uploadcare-widget-circle-active {
  background-color: #666; }

.default-form .uploadcare-widget .uploadcare-widget-circle-center,
.gg-form .uploadcare-widget .uploadcare-widget-circle-center,
.offer-form .uploadcare-widget .uploadcare-widget-circle-center {
  height: 30%;
  margin-top: -15%;
  width: 30%;
  margin-left: -15%; }

.default-form .uploadcare-widget .uploadcare-widget-file-name,
.gg-form .uploadcare-widget .uploadcare-widget-file-name,
.offer-form .uploadcare-widget .uploadcare-widget-file-name {
  color: #666;
  text-decoration: none; }

.default-form .uploadcare-widget .uploadcare-widget-file-name:hover,
.gg-form .uploadcare-widget .uploadcare-widget-file-name:hover,
.offer-form .uploadcare-widget .uploadcare-widget-file-name:hover {
  text-decoration: underline; }

.default-form .notice,
.gg-form .notice,
.offer-form .notice {
  margin: 10px 0 0 0;
  font-size: 10px;
  line-height: 14px; }

.default-form select,
.gg-form select,
.offer-form select {
  margin-bottom: 10px;
  float: left; }

.default-form .four label,
.gg-form .four label,
.offer-form .four label {
  float: none; }

.default-form .partial,
.gg-form .partial,
.offer-form .partial {
  float: left;
  width: 59%;
  margin-right: 10%; }

.default-form .partial-small,
.gg-form .partial-small,
.offer-form .partial-small {
  float: left;
  width: 31%; }

.default-form .partial-small.margin,
.gg-form .partial-small.margin,
.offer-form .partial-small.margin {
  margin-right: 10%; }

.default-form .one,
.gg-form .one,
.offer-form .one {
  margin: 0; }

.ie8 .uploadcare-widget {
  display: none !important; }

.uploadcare-widget-ie_disable {
  color: #F34E4E; }

.article-meta-info {
  text-transform: capitalize; }

.content hr {
  margin-bottom: 10px; }

/*
 * Styles for the 'A' Page-Template
 * Offers a left & right column
 */
.a-page {
  margin-bottom: 0px;
  padding-bottom: 10px;
  width: 100%; }

.a-page .left .recent-article {
  margin: 0 0 24px 0; }

.a-page .left .recent-article img {
  width: 100%; }

.a-page .left .recent-article .author {
  margin-bottom: 10px; }

.a-page .left .recent-article .four {
  width: 27.7%;
  margin-right: 2%;
  max-height: 127px;
  overflow: hidden; }

.a-page .right .recent-article .four {
  width: 30.65%;
  margin-right: 4%;
  float: left; }

.a-page .left .recent-article .four a:hover {
  text-decoration: none; }

.a-page .left .recent-article .eight {
  width: 70.3%; }

.a-page .right .recent-article .eight {
  width: 65.3%;
  float: left; }

.a-page .left .recent-article .eight a:hover {
  text-decoration: none; }

.a-page .left .recent-article .twelve a:hover {
  text-decoration: none; }

.a-page .left .recent-article.post-navigation .previous-posts {
  margin: 0 10px 0 0; }

.a-page .left .recent-article.post-navigation .next-posts {
  margin: 0 0 0 10px; }

.a-page .right .six {
  width: 30%;
  margin-right: 4%; }

.a-page .right .six.last {
  margin-right: 0; }

.a-page .right .teaser img {
  width: 100%;
  max-height: 200px;
  margin-bottom: 5px; }

.a-page .right .teaser.left {
  margin-right: 8.4% !important; }

.a-page .right .teaser.right {
  margin-right: 0 !important; }

.a-page .right .teaser.last {
  margin-right: 0; }

.a-page .right .widget-area div:nth-of-type(2n) {
  margin-right: 0; }

.a-page .right .contact .info {
  max-width: 395px; }

.a-page .right .contact .buttons-container .button-row {
  float: right; }

.a-page .right .contact .buttons-container .link-row {
  float: left; }

/*
 * Styles for the 'B' Page-Template
 * Offers a left & right column
 */
.b-page {
  margin-bottom: 0px;
  padding-bottom: 10px; }

.b-page .left .recent-article {
  padding-bottom: 11px !important;
  border-bottom: solid 1px #DEDEDE;
  margin-bottom: 5px; }

.b-page .left .recent-article img {
  width: 100%;
  margin-right: 0 !important; }

.b-page .left .recent-article .three {
  width: 18.1%;
  margin-right: 2.82%; }

.b-page .left .recent-article .four {
  max-height: 200px;
  overflow: hidden;
  margin-right: 2.82%;
  width: 30%; }

.b-page .left .recent-article .eight {
  width: 66.4%; }

.b-page .left .recent-article .nine {
  width: 78.9%; }

.b-page .left .recent-article .author {
  margin-top: 12px;
  margin-bottom: 10px; }

.b-page .left .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px; }

.b-page .left .alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px; }

.b-page .left .wp-post-image {
  vertical-align: top;
  float: left;
  margin-right: 20px; }

.b-page .left .content h1 {
  margin-top: 4px;
  margin-bottom: 9px; }

.b-page .left .content h3 {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 10px; }

.b-page .left .content .tabs-area {
  margin-top: 31px; }

.b-page .left .content .tabs-area .toggle-list > li {
  margin-bottom: 13px; }

.b-page .left .content .fw-image--top-spacer {
  margin-top: 21px; }

.b-page .right .six {
  width: 100%;
  margin-right: 0; }

.b-page .right .six img {
  width: 100%;
  max-height: 200px;
  margin-bottom: 5px; }

.b-page .right .contact .logo {
  margin: 0 0 10px 0;
  max-width: 264px;
  width: 100%;
  float: left; }

.b-page .right .contact .four {
  width: 100%; }

.b-page .right .contact .eight {
  width: 100%; }

.b-page .right .contact .contact-link {
  display: block;
  clear: both;
  margin: 0; }

.b-page .right .contact .link-holder {
  display: inline-block;
  clear: both; }

.b-page .right .contact .social-networks {
  clear: both; }

/*
 * Career view
 * Additional styles for the career section
 */
.hr-apply select {
  width: 100%;
  min-width: 100%;
  float: right; }

#hr_apply_form {
  clear: both; }

.hr-apply div.job-offer-types {
  background-color: #f0f0f0; }

.hr-apply div.job-offers {
  background-color: #f0f0f0; }

#hr_apply_form .job-offer-types > .two {
  font-size: 12px; }

.hr-apply .selection {
  margin-top: 20px;
  text-align: center; }

.hr-apply .selection {
  padding-bottom: 20px; }

.hr-apply .map-search-bar {
  display: none; }

.hr-apply .job-offer-types {
  height: auto;
  padding-top: 10px; }

.hr-apply .job-offer-types {
  display: block;
  width: 100%; }

.hr-apply .job-offer input {
  display: block;
  width: 100%;
  text-align: center; }

.form-list-page .row {
  padding: 0 0 10px 0; }

.hr-apply .job-offers .job-offer,
.hr-apply .job-offers .no-jobs {
  height: 30px;
  padding-top: 10px; }

.hr-apply .job-offer > .description > div,
.hr-apply .job-offer-types .description > div {
  padding-left: 20px; }

.hr-apply .job-offer-submit {
  margin-top: 20px; }

.hr-apply .job-offers .no-jobs {
  text-align: center; }

.hr-apply .job-offer-info,
.hr-apply .job-offer-form {
  padding-top: 20px; }

.hr-apply .job-offer-form .notice {
  font-size: 10px;
  line-height: 14px; }

.hr-apply .job-offer-form .label {
  height: 30px;
  line-height: 30px;
  vertical-align: middle; }

.hr-apply .job-offer-form .files .filelabel {
  padding-top: 6px; }

.hr-apply .job-offer-form .files .file {
  margin: 0 0 1em 0; }

.hr-apply .job-offer-form .row {
  padding: 15px 0; }

.hr-apply .job-offer-form .row input,
.hr-apply .job-offer-form .row select {
  margin: 0 0 0 0; }

.hr-apply .job-offer-form .uploadcare-widget {
  border: 1px solid #cecece;
  width: 99%;
  height: 27px;
  padding: 4px 0 0 4px;
  background-color: #fff;
  margin: 0 -10px 1em 0; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-status {
  width: 10%; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-status-text {
  width: 75%; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-circle-back {
  background-color: #c9c9c9; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-buttons {
  float: right;
  text-align: right;
  padding-top: 1px; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-buttons li {
  float: right; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-buttons-dialog {
  display: none; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-circle-active {
  background-color: #666; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-circle-center {
  height: 30%;
  margin-top: -15%;
  width: 30%;
  margin-left: -15%; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-file-name {
  color: #666;
  text-decoration: none; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-file-name:hover {
  text-decoration: underline; }

.hr-apply .job-offer-form input.error,
.hr-apply .job-offer-form select.error {
  border: 1px solid #f00; }

.hr-apply .job-offer-form textarea {
  min-height: 200px; }

.section.career h3 {
  margin: 10px 0; }

@media screen and (max-width: 840px) {
  .four.description {
    width: 100%;
    margin-bottom: 5px; }

  .section.job-offer-types {
    height: auto;
    padding-bottom: 15px; }

  .job-offer-types .two {
    margin-left: 4%;
    margin-right: 0;
    min-width: 21%;
    text-align: center; }

  .job-offer-types .two input {
    display: block;
    margin: 0 auto;
    float: none; }

  .job-offers .two {
    margin-left: 3%;
    margin-right: 0;
    min-width: 22%; }

  .job-offers .two input {
    float: none;
    margin: 0 auto;
    width: auto; }

  .job-offers .job-offer {
    height: auto;
    padding-bottom: 10px; }

  .section.job-offers {
    padding-bottom: 15px; } }
div.career-description {
  display: inline-block;
  margin-bottom: 10px;
  background-color: #f0f0f0; }

div.career-description img {
  width: 100%; }

div.career-description .info {
  padding-left: 0;
  margin: 10px 0px; }

div.career-description .info h3 {
  margin-bottom: 10px; }

div.career-description .info .link-holder {
  padding-top: 5px; }

div.career-description .last.img {
  text-align: right; }

div.career-description .info > div {
  width: 95%; }

div.career-description .info > div.odd {
  padding-left: 5%; }

div.career-submit {
  padding-top: 15px; }

div.career-submit a.button {
  width: 264px;
  line-height: 28px;
  text-align: center; }

div.career-submit a.button:hover {
  text-decoration: none; }

div.career-submit.right {
  text-align: right; }

div.career-overlay {
  background-color: #000;
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .8;
  -moz-opacity: .8;
  -o-opacity: .8;
  -webkit-opacity: .8; }

div.career-overlay-content {
  padding: 10px;
  background-color: #fff;
  position: fixed;
  width: 600px;
  margin-left: -300px;
  left: 50%;
  height: 600px;
  margin-top: -300px;
  top: 50%; }

div.career-overlay-content > .content {
  overflow-x: hidden;
  overflow-y: auto;
  height: 580px;
  max-height: 580px; }

.select-box {
  width: 100%; }

@media screen and (min-width: 960px) and (max-width: 1024px) {
  .a-page .left .recent-article .four {
    max-height: none;
    overflow: inherit; }

  .a-page .left .recent-article img {
    min-height: 1px !important; }

  .b-page .left .resort-list .eight img {
    width: 100%; }

  .b-page .left .resort-list .resort-logo {
    margin: 30% 0 20%; }

  .b-page .left .resort-list .resort-logo img {
    padding: 0;
    width: 100%;
    max-width: inherit; }

  .b-page .left .recent-article img {
    min-height: 1px !important; }

  .b-page .left .tabs-area .tabset li {
    font-size: 10px; } }
@media screen and (min-width: 768px) and (max-width: 1170px) {
  .keyvisual.listing-search .header-widget-wrapper .row {
    padding: 0 40px; }

  .keyvisual.listing-search .header-widget-wrapper .row .criteria-search.mult-bu,
  .keyvisual.listing-search .header-widget-wrapper .row .criteria-search.list-residential,
  .keyvisual.listing-search .header-widget-wrapper .row .criteria-search.list-commercial {
    height: auto;
    padding: 10px;
    margin-top: 10px; }

  .keyvisual.listing-search .header-widget-wrapper .row .criteria-search.mult-bu h2,
  .keyvisual.listing-search .header-widget-wrapper .row .criteria-search.list-residential h2,
  .keyvisual.listing-search .header-widget-wrapper .row .criteria-search.list-commercial h2 {
    font-size: 19px;
    line-height: 19px; } }
@media screen and (min-width: 768px) and (max-width: 1075px) {
  .keyvisual.listing-search .criteria-search.mult-bu input[type=radio],
  .keyvisual.listing-search .criteria-search.list-residential input[type=radio],
  .keyvisual.listing-search .criteria-search.list-commercial input[type=radio] {
    margin-bottom: 5px !important; }

  .keyvisual.listing-search .criteria-search.mult-bu select,
  .keyvisual.listing-search .criteria-search.list-residential select,
  .keyvisual.listing-search .criteria-search.list-commercial select {
    margin-bottom: 5px !important; }

  .keyvisual.listing-search .criteria-search.mult-bu select[multiple],
  .keyvisual.listing-search .criteria-search.list-residential select[multiple],
  .keyvisual.listing-search .criteria-search.list-commercial select[multiple] {
    height: 65px; } }
@media screen and (min-width: 768px) and (max-width: 992px) {
  .keyvisual.listing-search .criteria-search.mult-bu select,
  .keyvisual.listing-search .criteria-search.list-residential select,
  .keyvisual.listing-search .criteria-search.list-commercial select {
    height: 25px; }

  .keyvisual.listing-search .criteria-search.mult-bu select[multiple],
  .keyvisual.listing-search .criteria-search.list-residential select[multiple],
  .keyvisual.listing-search .criteria-search.list-commercial select[multiple] {
    height: 55px; } }
@media screen and (min-width: 768px) and (max-width: 919px) {
  body .keyvisual.listing-search .keyvisual-wrapper {
    min-height: 313px !important; }

  body .keyvisual.listing-search .keyvisual-wrapper > img {
    min-width: 904px !important; }

  body .keyvisual.listing-search .keyvisual-wrapper .keyvisual-slider img {
    min-width: 904px !important; } }
body .ev-mobile-header-spacer {
  display: none; }

@media screen and (max-width: 767px) {
  body .ev-mobile-header-spacer {
    display: block;
    width: 100%;
    height: 76px; } }
@media screen and (max-width: 767px) {
  .keyvisual.listing-search {
    background: #fff !important;
    display: inline-block;
    position: relative;
    float: none;
    overflow: inherit;
    clear: both;
    height: auto; }

  .keyvisual.listing-search .keyvisual-wrapper {
    overflow: inherit;
    clear: both;
    max-height: none !important; }

  .keyvisual.listing-search .keyvisual-wrapper .header-widget-wrapper {
    display: block;
    overflow: inherit;
    clear: both;
    position: relative; }

  .keyvisual.listing-search .keyvisual-wrapper .header-widget-wrapper > .row {
    padding: 0; }

  .keyvisual.listing-search .keyvisual-wrapper .header-widget-wrapper .search-form-header.small {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none; }

  .keyvisual.listing-search .keyvisual-wrapper .header-widget-wrapper .search-form-header.small form > .six,
  .keyvisual.listing-search .keyvisual-wrapper .header-widget-wrapper .search-form-header.small .twelve {
    height: 30px;
    display: inline-block;
    margin-bottom: 10px !important;
    display: block;
    float: none !important; }

  .keyvisual.listing-search .keyvisual-wrapper .header-widget-wrapper .tabs-area {
    position: relative;
    left: 0;
    top: 0;
    width: 100% !important;
    margin: 0; }

  .keyvisual.listing-search .criteria-search,
  .keyvisual.listing-search .homepage-search {
    width: auto;
    clear: both;
    margin: 0; }

  .keyvisual.listing-search .criteria-search input[type="text"],
  .keyvisual.listing-search .homepage-search input[type="text"] {
    width: 100%; } }
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .keyvisual.listing-search .criteria-search input[type="submit"] {
    float: right; } }

@media screen and (max-width: 767px) {
  .keyvisual.listing-search .criteria-search .nine .three {
    width: 30% !important; }

  .keyvisual.listing-search .criteria-search div.label {
    width: 100% !important;
    margin-right: 0 !important; }

  .keyvisual.listing-search .criteria-search .six,
  .keyvisual.listing-search .criteria-search .nine {
    width: 100%; }

  .keyvisual.listing-search .criteria-search .nine {
    margin-top: 5px; }

  .keyvisual.listing-search .criteria-search .fulltext-search {
    margin-bottom: 10px; }

  .keyvisual.listing-search .criteria-search .fulltext-search .ten,
  .keyvisual.listing-search .criteria-search .fulltext-search .two {
    width: 100%; }

  .keyvisual.listing-search .main-form-container {
    width: 100%; }

  .keyvisual.listing-search .link-holder {
    display: none; } }
@media screen and (min-width: 768px) and (max-width: 960px) {
  .a-page .left .recent-article .four {
    max-height: none;
    overflow: inherit; }

  .a-page .left .recent-article img {
    min-height: 1px !important; }

  .a-page .right .contact .contact-link {
    margin: 0; }

  .b-page .left .resort-list .resort-logo {
    margin: 30% 0 20%; }

  .b-page .left .resort-list .resort-logo img {
    padding: 0;
    width: 100%;
    max-width: none; }

  .b-page .left .recent-article {
    margin: 0 0 30px 0; }

  .b-page .left .recent-article img {
    width: 100%;
    margin-right: 0 !important;
    min-height: 1px !important; }

  .b-page .left .recent-article .three {
    width: 23.1%;
    margin-right: 2%; }

  .b-page .left .recent-article .nine {
    width: 73.9%; }

  .b-page .left .recent-article .author {
    margin-bottom: 10px; }

  .b-page .left .tabs-area .tabset li {
    font-size: 10px; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  .banner {
    margin: 0;
    padding: 0; }

  .contact-listing .six {
    width: 100%; }

  .a-page {
    display: inline-block;
    clear: both;
    padding-left: 5px;
    padding-right: 5px; }

  .a-page .left .recent-article .four,
  .a-page .left .recent-article .eight,
  .a-page .left .recent-article .twelve,
  .a-page .left .recent-article img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none;
    overflow: inherit; }

  .a-page .left .link-holder {
    display: inline-block;
    width: 100%; }

  .a-page .right .four,
  .a-page .right .six,
  .a-page .right .eight,
  .a-page .right .twelve,
  .a-page .right .logo,
  .a-page .right img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none; }

  .a-page .right .six.teaser {
    width: 100%; }

  .a-page .right .six.teaser img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none; }

  .b-page .left input[type="text"],
  .b-page .left .three,
  .b-page .left .four,
  .b-page .left .six,
  .b-page .left .eight,
  .b-page .left .nine {
    width: 100%; }

  .b-page .left input[type="text"] img,
  .b-page .left .three img,
  .b-page .left .four img,
  .b-page .left .six img,
  .b-page .left .eight img,
  .b-page .left .nine img {
    max-height: none;
    max-width: none; }

  .b-page .left input[type="text"] img.full,
  .b-page .left .three img.full,
  .b-page .left .four img.full,
  .b-page .left .six img.full,
  .b-page .left .eight img.full,
  .b-page .left .nine img.full {
    width: 100%; }

  .b-page .left .recent-article {
    margin: 0 0 30px 0; }

  .b-page .left .recent-article img {
    width: 100%;
    margin-right: 0 !important; }

  .b-page .left .recent-article .three {
    width: 33.1%;
    margin-right: 2%; }

  .b-page .left .recent-article .nine {
    width: 63.9%; }

  .b-page .left .recent-article .author {
    margin-bottom: 10px; }

  .b-page .left .resort-list .four {
    width: 50%;
    margin: 0 25%; }

  .b-page .left .resort-list .resort-logo {
    margin: 10% 0 10%; }

  .b-page .left .resort-list .resort-logo img {
    padding: 0;
    width: 100%;
    max-width: none; }

  .b-page .left .resort-list .link-holder .more {
    float: none;
    text-align: center; }

  .b-page .left .tabs-area .tabset li {
    display: block;
    width: 100%; }

  .b-page .right .contact .logo {
    width: 100%;
    max-width: none;
    max-height: none; }

  .b-page .right .contact dd {
    display: inline-block; }

  .b-page .right .three,
  .b-page .right .four,
  .b-page .right .six,
  .b-page .right .eight,
  .b-page .right .nine {
    margin-right: 0; }

  .b-page .right .three img,
  .b-page .right .four img,
  .b-page .right .six img,
  .b-page .right .eight img,
  .b-page .right .nine img {
    width: 100%;
    max-width: none;
    max-height: none; }

  .adjusted-four-eight-grid .group,
  .adjusted-four-eight-grid .row {
    padding: 6px 0 15px 0; }

  .adjusted-four-eight-grid .group .four,
  .adjusted-four-eight-grid .row .four {
    width: 100%;
    margin-right: 0; }

  .adjusted-four-eight-grid .group .four img,
  .adjusted-four-eight-grid .row .four img {
    width: 100%; }

  .adjusted-four-eight-grid .group .eight,
  .adjusted-four-eight-grid .row .eight {
    width: 100%; }

  .adjusted-four-eight-grid .group p,
  .adjusted-four-eight-grid .row p {
    padding: 0; }

  .adjusted-four-eight-grid .agent .four {
    width: 100%;
    margin-right: 0; }

  .adjusted-four-eight-grid .agent .four img {
    width: 100%; }

  .adjusted-four-eight-grid .agent .eight {
    width: 100%; }

  .adjusted-four-eight-grid .agent p {
    padding: 0; } }
@media screen and (max-width: 479px) {
  .contact-listing .six {
    width: 100%; }

  .a-page {
    display: inline-block;
    clear: both; }

  .a-page .left .recent-article .four,
  .a-page .left .recent-article .eight,
  .a-page .left .recent-article .twelve,
  .a-page .left .recent-article img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none; }

  .a-page .left .recent-article > .four {
    max-width: 120px;
    float: left;
    padding-right: 10px; }

  .a-page .left .recent-article > .four img {
    min-height: inherit; }

  .a-page .left .link-holder {
    display: inline-block;
    width: 100%; }

  .a-page .right .four,
  .a-page .right .six,
  .a-page .right .eight,
  .a-page .right .twelve,
  .a-page .right .logo,
  .a-page .right img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none; }

  .a-page .right .six.teaser {
    width: 100%; }

  .a-page .right .six.teaser img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none; }

  .b-page .left input[type="text"],
  .b-page .left .three,
  .b-page .left .four,
  .b-page .left .six,
  .b-page .left .eight,
  .b-page .left .nine {
    width: 100%; }

  .b-page .left input[type="text"] img,
  .b-page .left .three img,
  .b-page .left .four img,
  .b-page .left .six img,
  .b-page .left .eight img,
  .b-page .left .nine img {
    max-height: none;
    max-width: none !important;
    margin-left: 0; }

  .b-page .left input[type="text"] img.full,
  .b-page .left .three img.full,
  .b-page .left .four img.full,
  .b-page .left .six img.full,
  .b-page .left .eight img.full,
  .b-page .left .nine img.full {
    width: 100%; }

  .b-page .left .recent-article .three,
  .b-page .left .recent-article .four,
  .b-page .left .recent-article .eight,
  .b-page .left .recent-article .nine,
  .b-page .left .recent-article .twelve,
  .b-page .left .recent-article img {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none; }

  .b-page .left .resort-list .four {
    width: 50%;
    margin: 0 25%; }

  .b-page .left .resort-list .resort-logo {
    margin: 10% 0 10%; }

  .b-page .left .resort-list .resort-logo img {
    padding: 0;
    width: 100%;
    max-width: inherit; }

  .b-page .left .resort-list .link-holder .more {
    float: none;
    text-align: center; }

  .b-page .left .tabs-area .tabset li {
    display: block;
    width: 100%; }

  .b-page .right .contact .logo {
    width: 100%;
    max-width: none;
    max-height: none; }

  .b-page .right .three,
  .b-page .right .four,
  .b-page .right .six,
  .b-page .right .eight,
  .b-page .right .nine {
    margin-right: 0; }

  .b-page .right .three img,
  .b-page .right .four img,
  .b-page .right .six img,
  .b-page .right .eight img,
  .b-page .right .nine img {
    width: 100%;
    max-width: none;
    max-height: none; }

  .adjusted-four-eight-grid .group,
  .adjusted-four-eight-grid .row {
    padding: 6px 0 15px 0; }

  .adjusted-four-eight-grid .group .four,
  .adjusted-four-eight-grid .row .four {
    width: 100%;
    margin-right: 0; }

  .adjusted-four-eight-grid .group .four img,
  .adjusted-four-eight-grid .row .four img {
    width: 100%; }

  .adjusted-four-eight-grid .group .eight,
  .adjusted-four-eight-grid .row .eight {
    width: 100%; }

  .adjusted-four-eight-grid .group p,
  .adjusted-four-eight-grid .row p {
    padding: 0; }

  .adjusted-four-eight-grid .agent .four {
    width: 100%;
    margin-right: 0; }

  .adjusted-four-eight-grid .agent .four img {
    width: 100%; }

  .adjusted-four-eight-grid .agent .eight {
    width: 100%; }

  .adjusted-four-eight-grid .agent p {
    padding: 0; }

  .contact-link a {
    display: inline-block;
    padding: 0 5px; } }
#dvinci_content .row {
  padding: 0;
  margin: 0;
  width: 100%; }

#dvinci_content .row label {
  display: block;
  width: 100%; }

#dvinci_content .row .w100s {
  width: 100%; }

#dvinci_content .row select {
  height: 100px; }

#dvinci_content .row #tree1 {
  height: 30px; }

#dvinci_content .text_right {
  float: right; }

#dvinci_content .text_right a {
  color: #666; }

#dvinci_content .text_right a:hover {
  text-decoration: none; }

#dvinci_content .text_right a:hover span {
  text-decoration: underline; }

#dvinci_content a {
  color: #666; }

#search-commercial,
#search-yachting,
#search-residential {
  overflow: hidden;
  position: relative; }

#search-commercial .three,
#search-yachting .three,
#search-residential .three {
  width: 25%;
  margin-right: 0;
  overflow: hidden;
  word-wrap: normal;
  font-size: 12px; }

#search-commercial label,
#search-yachting label,
#search-residential label {
  font-size: 10px; }

#fancybox-thumbs li {
  margin-left: 0; }

.slidebox .title {
  cursor: pointer; }

.slidebox .title:after {
  content: "\2B0A";
  margin-left: 4px;
  font-size: 14px; }

.slidebox.open .title:after {
  content: "\2B09"; }

.ui-slider .ui-slider-range {
  z-index: auto !important; }

.ui-slider .ui-slider-handle {
  z-index: auto !important; }

.widget {
  margin-bottom: 20px; }

.widget ul {
  margin-bottom: 0;
  margin-left: 0; }

.widget ul li {
  list-style: none;
  margin-left: 0; }

.widget ul li li {
  margin-left: 10px; }

.widget_search input#s {
  width: 50%; }

.header .sub-nav li ul {
  margin: 0 0 0 -30px; }

.header li.language-switcher {
  width: 75px;
  height: 30px;
  text-align: right; }

.header li.language-switcher .language-wrapper {
  position: absolute;
  background: white; }

.header li.language-switcher a.language {
  display: none;
  padding: 3px 0; }

.header li.language-switcher a.language:first-child {
  display: block; }

.header li.language-switcher a.language:first-child:after {
  content: " ▼"; }

.header li.language-switcher:hover a.language {
  display: block; }

img.post-thumbnail {
  width: 160px;
  height: auto; }

.sidebar-archive #menu-blog-sidebar-categories a,
.sidebar-post #menu-blog-sidebar-categories a {
  text-transform: uppercase; }

.sidebar-archive .widget-title,
.sidebar-post .widget-title {
  text-transform: uppercase;
  color: black;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 4px;
  font-size: 14px; }

.sidebar-archive li,
.sidebar-post li {
  line-height: 24px; }

.sidebar-archive li a,
.sidebar-post li a {
  color: #8e8e8e; }

.sidebar-archive li a:hover,
.sidebar-post li a:hover {
  color: #ff0000; }

.single h2.post-title {
  color: #666666;
  font-size: 19px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 24px;
  font-family: Verdana !important; }

.single .post-meta-data {
  margin-bottom: 20px;
  color: #999; }

.single .post img {
  padding: 3px; }

.single .post .post-title {
  margin: 0; }

.single .post .post-title .edit,
.single .post .post-title .edit a {
  color: #ccc; }

.single .post .taxonomies {
  margin-bottom: 20px; }

.single .post .taxonomies a {
  color: #EC403B; }

.single .post .entry {
  overflow: hidden;
  color: #686868; }

.single .post .entry p {
  margin-bottom: 10px; }

.single .post .post-meta {
  text-align: right;
  font-style: italic; }

.single .post .post-meta a {
  color: #EC403B; }

.page .title {
  margin: 0; }

.page .title .edit,
.page .title .edit a {
  color: #ccc; }

.listing-index .listing {
  overflow: hidden;
  margin-bottom: 20px; }

.listing-index .listing .listing-thumb {
  float: left;
  margin: 0 10px 10px 0; }

.listing-single .thumbnails {
  text-align: center; }

.listing-single .thumbnails img.listing-thumb {
  height: 175px;
  width: auto;
  margin: 3px 0;
  border-radius: 5px; }

.listing-index .header-bottom.primary-menu,
.listing-single .header-bottom.primary-menu {
  overflow: hidden; }

/*
 * Map-Search
 *
 */
body.map-search {
  /* advanced search hidden in detail view context */
  /* Google Map */
  /* -------------------------- STYLING OF AUTOCOMPLETE DROPDOWN --------------------------*/
  /* -------------------------- LISTING DETAILS --------------------------*/ }

body.map-search .mapsearch-container {
  margin-top: 40px; }

body.map-search .mapsearch-container a:hover {
  text-decoration: none;
  opacity: 0.6; }

body.map-search .search-form.simple-search {
  background-color: #f0f0f0;
  font-size: 11px; }

body.map-search .search-form-elements {
  padding-top: 8px; }

body.map-search .search-form-elements .hidden-input {
  display: none !important; }

body.map-search .search-form-elements p {
  margin-bottom: 5px;
  font-weight: bold;
  color: #444444; }

body.map-search .search-form-elements div {
  float: left;
  margin-top: 0px; }

body.map-search .search-form-elements div label {
  margin-left: 2px;
  margin-top: 2px;
  font-size: 11px;
  float: none;
  line-height: 12px;
  color: #818181; }

body.map-search .search-form-elements .radio {
  margin-bottom: 10px; }

body.map-search .search-form-elements .radio div {
  margin-top: 4px; }

body.map-search .search-form-elements .select select {
  margin-top: 4px;
  height: 20px;
  padding: 0px; }

body.map-search .search-form-elements .slider .slider-range {
  width: 120px;
  display: inline-block;
  height: 2px;
  border-radius: 0;
  background: #babdbf;
  border: none;
  margin-left: 0px;
  margin-right: 0px;
  top: -12px;
  margin-left: 7px; }

body.map-search .search-form-elements .slider .fill,
body.map-search .search-form-elements .slider label {
  top: 12px;
  position: relative;
  text-align: left;
  color: #444444;
  margin-left: 0px; }

body.map-search .search-form-elements .slider label.to {
  margin-left: 4px; }

body.map-search .search-form input {
  vertical-align: middle; }

body.map-search .search-form label {
  margin-right: 10px;
  cursor: pointer; }

body.map-search .search-form .property-type {
  width: 100px; }

body.map-search .search-form label {
  display: inline-block; }

body.map-search .search-form select {
  margin-right: 10px; }

body.map-search .search-form.simple-search {
  padding-top: 5px;
  border-top: 1px solid #dddddd;
  border-width: 1px 0 1px 0;
  padding-left: 30px;
  padding-right: 30px;
  color: #000;
  border-bottom: 1px solid #dddddd;
  line-height: 14px;
  padding-bottom: 5px;
  margin-top: 4px;
  margin-bottom: 0px; }

body.map-search .search-form:after {
  content: " ";
  display: table;
  clear: both; }

@media (max-width: 1000px) {
  body.map-search .search-form-elements .slider {
    margin-top: 10px;
    margin-bottom: 15px; } }
body.map-search .search-form.simple-search .field {
  display: inline-block;
  margin-right: 10px;
  width: 150px; }

body.map-search .search-form a.advanced-search {
  float: right;
  font-weight: bold;
  margin-right: 10px;
  position: relative;
  bottom: 15px; }

body.map-search .search-form .slider strong {
  margin-left: 3px; }

body.map-search .search-form .slider .slider-range .ui-slider-range {
  background: gray; }

body.map-search .search-form .slider .slider-range .ui-slider-handle {
  background: transparent url(../img/slider-handle-left.png) scroll center center no-repeat;
  border: none;
  top: -8px;
  height: 17px;
  width: 12px; }

body.map-search .search-form .slider .slider-range .ui-slider-handle:last-child {
  background: transparent url(../img/slider-handle-right.png) scroll center center no-repeat; }

body.map-search .search-form.simple-search input[type=submit] {
  display: none; }

body.map-search .search-form .wide {
  width: 200px; }

body.map-search .search-form.advanced-search {
  position: absolute;
  display: none;
  right: 0;
  background-color: #fff;
  width: 270px;
  height: 480px;
  padding: 0 20px;
  z-index: 101;
  opacity: 0.97;
  border-left: 1px solid #dddddd; }

body.map-search .search-form.advanced-search strong {
  color: #000;
  font-weight: bold;
  float: left;
  margin-right: 5px; }

body.map-search .search-form.advanced-search .field {
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 10px; }

body.map-search .search-form.advanced-search .block {
  display: block; }

body.map-search .search-form.advanced-search .slider-range {
  width: 245px;
  margin-top: 17px; }

body.map-search .search-form.advanced-search label {
  color: red; }

body.map-search .search-form.advanced-search input[type=submit] {
  background-color: #EC403B;
  padding: 10px;
  width: 50%;
  color: #fff;
  border: none;
  font-weight: bold; }

body.map-search .property-type label {
  margin-top: 3px;
  float: left; }

body.map-search .listing-detail-context .search-form.advanced-search {
  /*display:none !important;*/ }

body.map-search .listings {
  float: left;
  width: 320px;
  height: 665px;
  background-color: white;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid #dddddd; }

body.map-search .listings .mCSB_container {
  margin-right: 10px; }

body.map-search .listings .listing {
  color: #9c9c9c;
  overflow: hidden;
  border-bottom: 1px solid #eeeeee;
  padding-left: 30px;
  font-size: 11px;
  line-height: 1.5;
  height: 120px;
  padding-right: 5px;
  cursor: pointer;
  position: relative; }

body.map-search .listings .listing.active {
  background-color: #f4f4f4;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffffff 0%, #eeeeee 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #ffffff 0%, #eeeeee 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #ffffff 0%, #eeeeee 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #ffffff 0%, #eeeeee 100%);
  /* IE10+ */
  background: linear-gradient(to right, #ffffff 0%, #eeeeee 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eee', GradientType=1);
  /* IE6-9 */ }

body.map-search .listings .listing:last-child {
  border-bottom: none; }

body.map-search .listings .listing .listing-thumbnail {
  float: right;
  margin: 0;
  border: 0;
  position: absolute;
  right: 7px;
  top: 30px;
  margin: 3px;
  width: 95px;
  height: 76px; }

body.map-search .listings .listing .name {
  padding-top: 10px;
  min-height: 2em;
  max-height: 2em;
  color: #333333;
  font-size: 12px;
  width: 280px;
  line-height: 1.2em;
  font-weight: normal;
  text-shadow: #fefefe 1px 1px 0; }

body.map-search .listings .listing .category {
  color: #ec403b;
  display: none; }

body.map-search .listings .listing .read-more {
  margin-bottom: 10px; }

body.map-search .gmap {
  overflow: auto;
  height: 100%;
  height: 500px;
  background-color: #f9f9f9 !important; }

body.map-search .gmap img {
  max-width: none; }

body.map-search .gmap .infobox img {
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 200px; }

body.map-search .gmap .infobox h4 {
  margin: 0; }

body.map-search #infobox {
  float: left;
  height: 245px;
  padding-left: 20px;
  overflow: hidden;
  position: absolute;
  border-radius: 3px; }

body.map-search #infobox #left-arrow-space {
  width: 19px;
  height: 100%;
  background-image: url("../img/left.png");
  background-repeat: no-repeat;
  float: left;
  position: relative;
  left: -279px; }

body.map-search #infobox .arrow-top {
  background-position: left top; }

body.map-search #infobox .arrow-bottom {
  background-position: left 167px; }

body.map-search #infobox #right-arrow-space {
  width: 21px;
  height: 100%;
  background-image: url("../img/right.png");
  background-repeat: no-repeat;
  float: left; }

body.map-search #infobox .infobox {
  padding: 5px;
  background: none repeat scroll 0 0 white;
  float: left;
  width: 250px;
  -moz-box-shadow: 0 0 4px #888888;
  -webkit-box-shadow: 0 0 4px #888888;
  box-shadow: 0 0 4px #888888;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc; }

body.map-search #infobox .infobox h4 {
  margin: 5px;
  margin-left: 0px;
  margin-top: 0px;
  color: #EEEEEE; }

body.map-search #infobox .infobox .img-container {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-bottom: 3px solid #ec403b; }

body.map-search #infobox .infobox img {
  min-height: 150px;
  max-width: 100%; }

body.map-search #infobox .infobox p {
  float: left;
  margin-top: 3px;
  margin-bottom: 0px;
  padding: 3px;
  width: 240px;
  font-size: 1em;
  text-align: left; }

body.map-search #infobox .infobox div.details-container:hover {
  cursor: pointer;
  background-color: red;
  background: #232020;
  transition: background 1s;
  background: #000000;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000000 0%, #1d211e 52%, #000000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(52%, #1d211e), color-stop(100%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #000000 0%, #1d211e 52%, #000000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #000000 0%, #1d211e 52%, #000000 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #000000 0%, #1d211e 52%, #000000 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #000000 0%, #1d211e 52%, #000000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */ }

body.map-search #infobox .infobox p:last-child {
  border: none; }

body.map-search #infobox .infobox p.title {
  width: 100%;
  text-align: left;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  color: black; }

body.map-search #infobox .infobox p.title span,
body.map-search #infobox .meta span {
  font-size: 0.8em;
  white-space: nowrap;
  overflow: hidden;
  font-style: italic;
  margin-left: 3px;
  margin-top: 2px;
  color: red; }

body.map-search #infobox .right {
  float: right;
  font-size: 11px; }

body.map-search #infobox p.title span {
  width: 100%;
  float: left;
  margin-left: 0px !important;
  margin-top: 0px !important; }

body.map-search .meta {
  width: 240px;
  margin-top: 0px !important;
  color: #444444; }

body.map-search .listing .price {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 1.2em; }

body.map-search .pac-item {
  line-height: 2em; }

body.map-search #listing-details {
  overflow-x: hidden;
  overflow-y: auto;
  margin-left: 340px;
  margin-right: 25px;
  display: none; }

body.map-search #listing-details .mCustomScrollBox {
  padding-right: 30px;
  padding-left: 30px; }

body.map-search #listing-details .header {
  padding: 20px 0;
  padding-bottom: 10px;
  overflow: auto; }

body.map-search #listing-details .header .back-to-map {
  display: inline-block;
  float: left;
  line-height: 35px;
  height: 35px;
  font-size: 12px;
  padding: 0 10px;
  background: #f3f3f3; }

body.map-search #listing-details .header .listing-name {
  float: left;
  margin-left: 20px;
  width: 58%; }

body.map-search #listing-details .header .listing-name .name {
  color: #222;
  margin-top: 0px;
  font-size: 1.3em;
  font-weight: bold; }

body.map-search #listing-details .header .listing-name .address {
  margin-top: 0px; }

body.map-search #listing-details .user-action a {
  display: inline-block;
  border: 1px solid #e6e6e6;
  padding: 5px 13px 7px 38px;
  margin-left: 2px;
  float: left;
  background-position: 10px center;
  background-repeat: no-repeat;
  color: #707070; }

body.map-search #listing-details .user-action a.like {
  background-position: 7px center;
  background-image: url(../img/like-listing.png); }

body.map-search #listing-details .user-action a.like.process {
  background-image: url(../img/loading.gif); }

body.map-search #listing-details .user-action a.share {
  background-image: url(../img/share-listing.png); }

body.map-search #listing-details .user-action a.print {
  background-image: url(../img/print-listing.png); }

body.map-search #listing-details .header .listing-navigation {
  float: right; }

body.map-search #listing-details .header .listing-navigation a.prev,
body.map-search #listing-details .header .listing-navigation a.next {
  display: inline-block;
  background: #f3f3f3;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0 0px;
  margin-right: 5px;
  color: #000;
  text-decoration: none; }

body.map-search #listing-details .header .listing-navigation a.next {
  margin-left: 5px;
  margin-right: 0px; }

body.map-search #listing-details .header .listing-navigation a.disabled {
  opacity: 0.75;
  color: #ccc; }

body.map-search #listing-details .listing-details {
  float: left;
  overflow: auto;
  width: 68.1%; }

body.map-search #listing-details .tabs > ul {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
  padding: 0; }

body.map-search #listing-details .tabs > ul > li {
  display: inline-block; }

body.map-search #listing-details .tabs > ul > li > a {
  display: inline-block;
  color: #7d7d7d;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
  padding: 0 15px; }

body.map-search #listing-details .tabs > ul > li.ui-state-active > a {
  border: 1px solid #e1e1e1;
  border-bottom: none;
  color: #ec403b;
  position: relative;
  bottom: -1px;
  height: 36px;
  line-height: 36px;
  background: #fff; }

body.map-search #listing-details .tabs > ul > li.ui-state-active:first-child > a {
  border-left: none; }

body.map-search #listing-details .listing-details .neighbourhood,
body.map-search #listing-details .listing-details .signup {
  display: none; }

body.map-search #listing-details .listing-details h3 {
  color: #000;
  font-size: 1em;
  font-weight: bold; }

body.map-search #listing-details .listing-details p {
  line-height: 1.5em;
  font-size: 12px;
  text-align: left; }

body.map-search #listing-details .agent-details {
  float: right;
  overflow-x: hidden;
  width: 30%;
  margin-top: 10px; }

body.map-search #listing-details .agent-details h3 {
  color: #000;
  margin: 0 0 10px 0;
  font-size: 1em;
  font-weight: bold; }

body.map-search #listing-details .agent-details form.agent-contact {
  margin-bottom: 20px; }

body.map-search #listing-details .agent-details form.agent-contact label.submit-state {
  float: none; }

body.map-search #listing-details .agent-details form.agent-contact input {
  padding: 6px;
  border: 1px solid #e6e6e6;
  margin-bottom: 10px;
  display: block;
  width: 100%; }

body.map-search #listing-details .agent-details form.agent-contact input[type=submit] {
  background: #f04d49;
  color: #fff;
  border: none;
  width: 30%;
  min-width: 80px;
  font-weight: bold; }

body.map-search #listing-details .agent-details form.agent-contact label {
  margin-bottom: 10px; }

body.map-search #listing-details .agent-details form.agent-contact label.success {
  color: green; }

body.map-search #listing-details .agent-details form.agent-contact label.fail,
body.map-search #listing-details .agent-details form.agent-contact label.invalid {
  color: red; }

body.map-search #listing-details .agent-details form.agent-contact.loading input[type=submit] {
  background: url(../img/loading.gif) scroll center center no-repeat;
  text-indent: -9999em; }

body.map-search #listing-details .agent-details .agent-name {
  color: #000;
  font-size: 18px; }

body.map-search #listing-details .agent-details .agent-position {
  margin-bottom: 10px; }

body.map-search #listing-details .agent-details .phone-contact {
  margin-bottom: 10px; }

body.map-search #listing-details .agent-details .phone-contact .number {
  color: #000; }

body.map-search #listing-details .links {
  color: #ec403b;
  margin-bottom: 10px; }

body.map-search #listing-gallery {
  float: left;
  height: 210px !important;
  overflow: hidden;
  margin-top: 10px;
  width: 100%;
  background-color: #eee; }

body.map-search #inner-gallery {
  padding: 5px;
  width: 150%;
  overflow: hidden; }

body.map-search #listing-gallery .frame {
  height: 200px;
  margin-bottom: 5px; }

body.map-search #listing-infotable-container {
  width: 100%;
  float: left; }

body.map-search #listing-infotable {
  width: 100%;
  float: left;
  margin-top: 5px; }

body.map-search #listing-context {
  width: 100%; }

body.map-search #listing-infotable .address {
  float: left;
  clear: both;
  font-size: 1em;
  padding-top: 3px;
  margin-bottom: 20px; }

body.map-search #listing-pricetag {
  float: left;
  width: 50%;
  font-size: 1.5em;
  color: black;
  margin-top: 17px; }

body.map-search #listing-details #listing-attributes {
  float: right;
  border: 1px solid #eeeeee;
  width: 258px;
  margin: 25px;
  font-size: 11px;
  margin-right: 0px; }

body.map-search #listing-details #listing-attributes .inner-container {
  padding: 10px; }

@media (max-width: 1024px) {
  body.map-search #listing-attributes {
    width: 100% !important;
    margin: 0;
    padding: 0;
    border: none !important; } }
body.map-search #listing-details #listing-attributes hr {
  border: none;
  border-bottom: 1px solid #eeeeee; }

body.map-search #listing-details #listing-attributes dl {
  line-height: 1.6em;
  margin: 0; }

body.map-search #listing-details #listing-attributes dt {
  float: left;
  width: 100px;
  color: #222;
  font-weight: normal; }

body.map-search #detail-text .neighborhood {
  margin-top: 25px; }

body.map-search .user-action {
  float: right !important;
  margin-top: 5px; }

body.map-search #places-autocomplete {
  outline: none;
  padding-left: 8px; }

body.map-search .property-type {
  width: 150px !important; }

body.map-search .property-type strong {
  margin-left: 1px; }

/*
 * Login view
 *
 */
body.login div#login {
  width: 90%;
  max-width: 720px; }

body.login div#login h1 a {
  background: url(../images/logito.jpg);background-size:150px 60px;height:60px no-repeat left center;
/*  background: url(../img/logos/logo.png) scroll center center no-repeat; */
  width: 100%; }

body.login div#login .submit #wp-submit {
  background-color: #EC403B;
  background-image: linear-gradient(to bottom, #ec403b, #db2f2a);
  border-color: #EE423D;
  font-size: 14px;
  box-shadow: 1px 2px 2px #dddddd; }

body.login div#login p#nav {
  float: right; }

body.login div#login p#backtoblog {
  float: left; }

/*
 * Career view
 * Additional styles for the career section
 */
.hr-apply select {
  width: 100%;
  min-width: 100%;
  float: right; }

#hr_apply_form {
  clear: both; }

.hr-apply div.job-offer-types {
  background-color: #f0f0f0; }

.hr-apply div.job-offers {
  background-color: #f0f0f0; }

#hr_apply_form .job-offer-types > .two {
  font-size: 12px; }

.hr-apply .selection {
  margin-top: 20px;
  text-align: center; }

.hr-apply .selection {
  padding-bottom: 20px; }

.hr-apply .map-search-bar {
  display: none; }

.hr-apply .job-offer-types {
  height: auto;
  padding-top: 10px; }

.hr-apply .job-offer-types {
  display: block;
  width: 100%; }

.hr-apply .job-offer input {
  display: block;
  width: 100%;
  text-align: center; }

.form-list-page .row {
  padding: 0 0 10px 0; }

.hr-apply .job-offers .job-offer,
.hr-apply .job-offers .no-jobs {
  height: 30px;
  padding-top: 10px; }

.hr-apply .job-offer > .description > div,
.hr-apply .job-offer-types .description > div {
  padding-left: 20px; }

.hr-apply .job-offer-submit {
  margin-top: 20px; }

.hr-apply .job-offers .no-jobs {
  text-align: center; }

.hr-apply .job-offer-info,
.hr-apply .job-offer-form {
  padding-top: 20px; }

.hr-apply .job-offer-form .notice {
  font-size: 10px;
  line-height: 14px; }

.hr-apply .job-offer-form .label {
  height: 30px;
  line-height: 30px;
  vertical-align: middle; }

.hr-apply .job-offer-form .files .filelabel {
  padding-top: 6px; }

.hr-apply .job-offer-form .files .file {
  margin: 0 0 1em 0; }

.hr-apply .job-offer-form .row {
  padding: 15px 0; }

.hr-apply .job-offer-form .row input,
.hr-apply .job-offer-form .row select {
  margin: 0 0 0 0; }

.hr-apply .job-offer-form .uploadcare-widget {
  border: 1px solid #cecece;
  width: 99%;
  height: 27px;
  padding: 4px 0 0 4px;
  background-color: #fff;
  margin: 0 -10px 1em 0; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-status {
  width: 10%; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-status-text {
  width: 75%; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-circle-back {
  background-color: #c9c9c9; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-buttons {
  float: right;
  text-align: right;
  padding-top: 1px; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-buttons li {
  float: right; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-buttons-dialog {
  display: none; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-circle-active {
  background-color: #666; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-circle-center {
  height: 30%;
  margin-top: -15%;
  width: 30%;
  margin-left: -15%; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-file-name {
  color: #666;
  text-decoration: none; }

.hr-apply .job-offer-form .uploadcare-widget .uploadcare-widget-file-name:hover {
  text-decoration: underline; }

.hr-apply .job-offer-form input.error,
.hr-apply .job-offer-form select.error {
  border: 1px solid #f00; }

.hr-apply .job-offer-form textarea {
  min-height: 200px; }

.section.career h3 {
  margin: 10px 0; }

@media screen and (max-width: 840px) {
  .four.description {
    width: 100%;
    margin-bottom: 5px; }

  .section.job-offer-types {
    height: auto;
    padding-bottom: 15px; }

  .job-offer-types .two {
    margin-left: 4%;
    margin-right: 0;
    min-width: 21%;
    text-align: center; }

  .job-offer-types .two input {
    display: block;
    margin: 0 auto;
    float: none; }

  .job-offers .two {
    margin-left: 3%;
    margin-right: 0;
    min-width: 22%; }

  .job-offers .two input {
    float: none;
    margin: 0 auto;
    width: auto; }

  .job-offers .job-offer {
    height: auto;
    padding-bottom: 10px; }

  .section.job-offers {
    padding-bottom: 15px; } }
div.career-description {
  display: inline-block;
  margin-bottom: 10px;
  background-color: #f0f0f0; }

div.career-description img {
  width: 100%; }

div.career-description .info {
  padding-left: 0;
  margin-top: 10px; }

div.career-description .info h3 {
  margin-bottom: 10px; }

div.career-description .info .link-holder {
  padding-top: 5px; }

div.career-description .last.img {
  text-align: right; }

div.career-description .info > div {
  width: 95%; }

div.career-description .info > div.odd {
  padding-left: 5%; }

div.career-submit {
  padding-top: 15px; }

div.career-submit a.button {
  width: 264px;
  line-height: 28px;
  text-align: center; }

div.career-submit a.button:hover {
  text-decoration: none; }

div.career-submit.right {
  text-align: right; }

div.career-overlay {
  background-color: #000;
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .8;
  -moz-opacity: .8;
  -o-opacity: .8;
  -webkit-opacity: .8; }

div.career-overlay-content {
  padding: 10px;
  background-color: #fff;
  position: fixed;
  width: 600px;
  margin-left: -300px;
  left: 50%;
  height: 600px;
  margin-top: -300px;
  top: 50%; }

div.career-overlay-content > .content {
  overflow-x: hidden;
  overflow-y: auto;
  height: 580px;
  max-height: 580px; }

.page-navigation {
  line-height: 22px; }

.page-navigation a span {
  background-color: #ddd;
  color: #777; }

.page-navigation span {
  background-color: #EC403B;
  display: inline-block;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 4px; }

.footer .two {
  width: 13%;
  overflow: hidden; }

#contact-signup-login-form {
  position: fixed;
  top: 35%;
  left: 50%;
  padding: 10px 0;
  margin-left: -300px;
  background: #fff;
  box-shadow: 0 0 10px #cccccc;
  opacity: 0.95;
  display: none; }

#contact-signup-login-form div.signup,
#contact-signup-login-form div.login {
  float: left;
  width: 300px;
  margin: 0 10px; }

#contact-signup-login-form input {
  padding: 2%;
  border: 1px solid #e6e6e6;
  margin-bottom: 10px;
  display: block;
  width: 95%; }

#contact-signup-login-form input[type=submit] {
  background: #f04d49;
  color: #fff;
  border: none;
  padding-top: 3%;
  padding-bottom: 3%;
  width: 99%;
  font-weight: bold; }

#contact-signup-login-form input.cancel {
  width: 99%; }

#contact-signup-login-form .process input[type=submit] {
  background: url(../img/loading.gif) scroll center center no-repeat;
  text-indent: -9999em;
  height: 30px; }

#contact-signup-login-form .response-message {
  font-weight: bold;
  padding: 3%; }

form.ajax input[type=submit] {
  display: block;
  padding: 5px 10px; }

form.ajax.process input[type=submit] {
  background: url(../img/loading.gif) scroll center center no-repeat;
  text-indent: -9999em;
  height: 30px; }

form.ajax .response-message {
  font-weight: bold; }

form.ajax .response-message.error {
  color: red; }

form.ajax .response-message.success {
  color: green; }

label.map-radio {
  margin-left: 0; }

.map-search-bar label.map-radio.three {
  min-width: 22% !important;
  width: auto !important; }

div.section.career img {
  width: 100%; }

div.google-maps-wrapper {
  position: relative; }

div.google-maps-wrapper .google-maps {
  position: relative; }

div.google-maps-wrapper .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: .7;
  -o-opacity: .7;
  -moz-opacity: .7;
  -webkit-opacity: .7;
  z-index: 777; }

div.google-maps-wrapper .overlay .caption {
  position: absolute;
  top: 50%;
  height: 30px;
  margin-top: -15px;
  left: 50%;
  width: 500px;
  margin-left: -250px;
  text-align: center;
  color: #fff;
  font-size: 16px; }

.freiheit-suche {
  width: 100%;
  min-height: 2200px; }

#switch_ab_form {
  display: block;
  min-height: 25px;
  z-index: 777;
  text-align: center;
  background-color: #f00;
  padding-top: 5px;
  color: #fff; }

#switch_ab_form label {
  display: inline-block; }

#switch_ab_form input[type=submit] {
  background: inherit;
  box-shadow: none;
  height: 20px;
  font-size: 12px;
  display: inline-block;
  width: 150px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  color: #444; }

#switch_ab_form input[type=submit]:hover {
  color: #444; }

.contact h2,
.recent-article h2,
.homepage-search h2,
.criteria-search h2,
#contact h2,
.post-content h2.title {
  font-weight: normal;
  font-family: 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
  margin: 0 0 10px 0;
  font-size: 19px;
  line-height: 24px;
  color: #444; }

.contact address {
  clear: both; }

.rating {
  display: block;
  clear: both; }

.rating ul {
  float: left; }

.rating ul li {
  float: left;
  margin-right: 5px; }

.star-picker {
  margin-bottom: 10px;
  display: inline-block; }

.star-picker ul {
  float: left; }

.star-picker ul li {
  float: left; }

.comment-button {
  float: right;
  width: auto;
  line-height: 30px;
  padding: 0 10px;
  text-decoration: none; }

.comment-button:hover {
  text-decoration: none; }

.comment-form {
  margin-bottom: 30px; }

.comment-form textarea {
  min-height: 200px; }

.rating-page {
  width: 100%;
  clear: both;
  padding: 0 0 15px 0px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.rating-page .star.smaller img {
  width: 22px;
  height: 22px; }

.rating-page .rating-info {
  display: inline-block;
  line-height: 24px;
  margin-left: 15px; }

.rating-page .rating-info.smaller {
  line-height: 22px; }

.rating-page .rating-info .rate {
  display: inline-block;
  margin-right: 8px;
  width: 40px;
  text-align: right; }

.rating-contact .star {
  display: inline-block; }

.rating-contact .star img {
  width: 16px !important;
  height: 16px !important; }

.rating-contact .rating-info {
  float: left;
  line-height: 21px;
  margin-left: 15px; }

.rating-contact .rating-info .rate {
  display: inline-block;
  margin-right: 8px;
  width: 40px;
  text-align: right; }

.rating-contact .rating-link {
  background: url("../img/1-Grey-Link-5x7px.png") no-repeat left center;
  padding-left: 15px;
  color: #666666; }

.b-page .rating-contact .rating-info {
  margin-left: 0; }

.b-page .rating-contact .rating-link {
  display: block;
  clear: both;
  width: 100%; }

h1.footer {
  font: 13px/18px Verdana, Arial, Helvetica, sans-serif;
  outline: none; }

label.checkbox.error {
  border: none !important;
  color: #ff0000 !important; }

#error_map_offices.error,
#error_map_unternehmen.error {
  border: 0 !important; }

@media screen and (max-width: 480px) {
  .ev-overlay-content {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    height: 100% !important;
    width: 100% !important;
    overflow-y: scroll !important;
    padding: 0 !important; }

  .ev-overlay-content > .content {
    height: auto !important;
    min-height: 0 !important; } }
.f_form_toggle span {
  font-size: 11px !important; }

.footer-text {
  font-size: 12px !important;
  color: #8b8b8b; }

form .origin-check {
  display: none; }

#listing-widget-target .widget-title,
.widget_featured_agent_shop .widget-title {
  font-family: Verdana, Arial, "sans serif";
  color: #444;
  font-size: 19px;
  border-bottom: 0;
  margin-bottom: 4px; }

#listing-widget-target span[data-i18n="elements_view.listing_price"] {
  display: inline-block;
  width: 60%; }

.locationSuggest_results {
  background-color: white;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  z-index: 1030;
  display: none;
  overflow: hidden;
  font-size: 12px;
  width: 337px;
  -moz-box-shadow-bottom: 0 2px 10px #333;
  -webkit-box-shadow: 0 2px 10px #333;
  -ms-box-shadow: 0 2px 10px #333;
  box-shadow: 0 2px 10px #333; }

.locationSuggest_results ul {
  clear: left; }

.locationSuggest_results li {
  line-height: 17px;
  padding: 10px;
  color: #B3B3B3;
  text-align: left;
  border-bottom: solid 1px #E0E0E0; }

.locationSuggest_results li:last-child {
  border-bottom: solid 1px #858585; }

.locationSuggest_results li:hover {
  cursor: pointer;
  box-shadow: inset 0px 8px 8px -10px #808080, inset 0px -8px 8px -10px #808080; }

.locationSuggest_over {
  cursor: pointer;
  box-shadow: inset 0px 8px 8px -10px #808080, inset 0px -8px 8px -10px #808080; }

.locationSuggest_match {
  font-weight: bold;
  color: #ff0000; }

.link-holder .more.search span {
  margin-left: 23px;
  display: block;
  width: 95px; }

.b-page .right .contact .contact-link {
  display: block;
  clear: both; }

/*
Page-list plugin
http://wordpress.org/plugins/page-list/
*/
/* default styles for [pagelist], [subpages], [siblings] */
.page-list .current_page_item > a {
  font-weight: bold;
  /* hilite active item */ }

/* default styles for [pagelist_ext] */
.page-list-ext {
  clear: both; }

/* clearfix-hack */
.page-list-ext {
  *zoom: 1; }

.page-list-ext:before, .page-list-ext:after {
  display: table;
  line-height: 0;
  content: ""; }

.page-list-ext:after {
  clear: both; }

.page-list-ext .page-list-ext-item {
  clear: both;
  margin: 10px 0 30px 0; }

.page-list-ext .page-list-ext-image {
  float: left;
  display: inline;
  margin: 5px 15px 15px 0; }

.page-list-ext .page-list-ext-title {
  clear: none; }

.acquisition-content .link {
  background: url(../img/3-Red-Link-5x7px.png) no-repeat 0 7px; }

.acquisition-content.toggle-list li.active > a {
  background: url(../img/4-Red-Link-7x5px.png) no-repeat 0 7px; }

@media screen and (max-width: 1024px) {
  .google-ad-404 {
    display: none; } }
.ev-default-cursor {
  cursor: initial; }

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

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */ }

/**************
 * General
 **************/
.greyline {
  height: 1px;
  background: transparent;
  border: none;
  border-bottom: solid 1px #c9c9c9;
  margin: 0; }

.section {
  position: inherit; }

/**************
 * Linkholder
 **************/
.link-holder-left {
  padding: 5px 0px 0px 0px; }

.link-holder-left .more {
  margin: 0;
  padding-left: 12px;
  color: #666666;
  vertical-align: top;
  background: url(../img/1-Grey-Link-5x7px.png) no-repeat 0 50%;
  line-height: 26px; }

.link-holder {
  float: right; }

.row .agent.contact .link-holder .more {
  margin-top: 4px;
  margin-bottom: 0px;
  margin-right: 15px;
  float: left; }

.ev-agent-contact-form {
  padding-left: 20px;
  padding-right: 20px; }

.ev-button-link.button {
  text-decoration: none;
  height: 18px;
  padding: 5px 20px; }

/**************
 * Career Page
 **************/
.career-form {
  width: 93%;
  margin-left: 3.5%;
  margin-bottom: 2em;
  margin-top: 1.5em; }

.career-form .row .three {
  width: 21.9%;
  /* reduce width by 0.1% for career-form because we have 3 elements in a row */ }

.career-overlay-content img {
  padding-top: 1em; }

.career-entry {
  clear: both;
  display: inline-block;
  width: 100%;
  min-height: 150px;
  background: #efefef; }

.career-entry .img.odd {
  float: right; }

.career-description .button {
  line-height: 28px;
  text-align: center; }

/**************
 * Overlays
 **************/
.ev-overlay, .ev-overlay-content {
  display: none; }

.ev-freecontent-item {
  margin-top: 15px;
  margin-bottom: 23px; }

.ev-freecontent-img {
  margin-top: 8px; }

.free-content-header {
  margin-bottom: -3px; }

.ev-spacing-success-msg-agent {
  margin-bottom: 20px;
  margin-top: 20px; }

/********************
* References
******************/
.ev-reference {
  overflow: hidden;
  clear: both;
  display: inline-block;
  width: 100%;
  background: #efefef; }

.row .ev-reference h1, .row .ev-reference h2, .row .ev-reference h3 {
  font-size: 19px;
  line-height: 19px;
  margin-bottom: 4px;
  margin-top: 26px; }

.row .ev-reference .eight {
  width: 72%; }

.ev-reference .three {
  width: 160px;
  /* see PageRef.getImagePathAdapted */ }

/********************
* Affiliation
******************/
.ev-affiliation {
  overflow: hidden;
  clear: both;
  display: inline-block;
  width: 100%;
  background: #efefef; }

.row .ev-affiliation h1, .row .ev-affiliation h2, .row .ev-affiliation h3 {
  font-size: 19px;
  line-height: 19px;
  margin-bottom: 4px;
  margin-top: 26px; }

.row .ev-affiliation .eight {
  width: 72%; }

/********************
* Cookies
******************/
.cookieContainer {
  position: relative; }

.cookies {
  /* Fond-Farbe #f0f0f0
   * Verdana Regular 13px, #444444
   */
  color: #444444;
  background: #f0f0f0;
  padding-top: 1em;
  text-align: center; }

.cookieLink li {
  padding: 1em;
  padding-right: 2em;
  padding-left: 2em;
  display: inline-block;
  display: -webkit-inline-box; }

.cookieLink li a {
  padding-left: 15px;
  background: url(../img/1-Grey-Link-5x7px.png) no-repeat 0 50%; }

.cookieClose {
  position: absolute;
  top: 0;
  right: 5px; }

/********************
* KeyVisualLink
******************/
.kvLink {
  display: block; }

.kvLinkGlyphicon {
  padding-left: 20px; }

.kv-image-caption {
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 30px;
  background: #000;
  color: #fff;
  font-size: 16px;
  opacity: .7;
  width: 100%;
  z-index: 8;
  padding: 10px 0 0 15px; }

.kv-property-overlay {
  position: absolute;
  left: 0px;
  right: 16px;
  bottom: 13px;
  height: 76px;
  background: #fff;
  color: #000;
  opacity: .9;
  z-index: 8; }

.kv-property-title {
  padding-top: 5px;
  font-size: 19px;
  color: #444444; }

.kv-property-subtitle {
  margin-left: 20px;
  font-size: 13px;
  color: #444444;
  overflow: hidden;
  max-height: 1.3em; }

.kv-property-region {
  position: absolute;
  margin-top: 12px; }

.kv-property-price {
  position: relative;
  top: 15px; }

.kv-property-defaultImage {
  max-height: 400px; }

.kv-property-text-left {
  left: 20px;
  top: -3px;
  position: absolute;
  overflow: hidden;
  max-height: 1.5em;
  min-height: 1.5em;
  line-height: 30px; }

.kv-property-text-right {
  float: right;
  margin-right: 10px; }

.kv-property-fwd {
  position: absolute;
  right: 16px;
  top: 25%;
  width: 6%; }

.kv-property-rwd {
  position: absolute;
  left: 40px;
  top: 25%;
  width: 6%; }

.kv-property-navigation-bar {
  margin: -10px;
  padding: 0px;
  float: right; }

.kv-property-navigation-dot {
  width: 5px;
  height: 5px;
  position: relative;
  float: left;
  top: 23px;
  z-index: 50;
  margin-right: 18px;
  background: #fff;
  box-shadow: 2px 2px 3px -1px #ccc; }

.kv-property-current-dot {
  background: #f00; }

.kv-property-navigation-bar {
  margin: -10px 0px;
  padding: 0px;
  float: right; }

.kv-property-navigation-dot {
  width: 5px;
  height: 5px;
  position: relative;
  float: left;
  top: 23px;
  z-index: 50;
  margin-right: 18px;
  box-shadow: 2px 2px 3px -1px #ccc; }

.kv-property-navigation-dot-red {
  background: #f00; }

.kv-property-navigation-dot-white {
  background: #fff; }

.header-widget-wrapper {
  pointer-events: none; }

.criteria-search {
  pointer-events: all; }

.res_licencearea {
  display: none;
  /* do not show licence area in overlay search form */ }

.keyvisual.listing-search .keyvisual-wrapper {
  max-height: 400px;
  /* override max height from main.css */ }

@media screen and (max-width: 767px) {
  .keyvisual.listing-search .criteria-search {
    float: none; } }
@media screen and (max-width: 767px) {
  .keyVisualLead .kv-and-link {
    max-height: none; } }
.kv-and-link {
  width: 100%;
  max-height: 400px; }

/********************
* Widgets
******************/
.ev-newsletter-widget-radio {
  padding: 16px 0 23px 0; }

.ev-newsletter-widget-headline {
  margin-top: 15px; }

.ev-blogpost-right-col {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px; }

.ev-blogpost-widget-color {
  background-color: #f0f0f0; }

.ev-blogpost-inner-widget-margin {
  margin-top: 10px; }

.ev-blogpost-inner-widget-bold {
  font-weight: bold; }

.ev-blogpost-inner-widget-text-right {
  text-align: right; }

.ev-blogpost-expose-button {
  width: 150px;
  float: right; }

/********************
* Top-Navigation
******************/
.header-new-top {
  overflow: visible;
  position: relative;
  padding-top: 40px; }

.header-new-top .top-menu {
  font-size: 13px;
  padding: 0 0 0 0;
  margin: -75px 0 0 0;
  overflow: visible;
  position: relative;
  float: right;
  text-align: right;
  vertical-align: top; }

@media screen and (max-width: 767px) {
  .header-new-top {
    height: 72px; }

  .header-new-top .top-menu {
    display: none; } }
.top-menu > div {
  display: inline-block; }

.top-menu .sub-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  background-color: #ffffff; }

.top-menu .languages {
  position: relative; }

.top-menu .languages .sub-menu {
  top: 100%;
  left: 10px; }

.top-menu .secondary-menu .sub-menu {
  width: 200px; }

.top-menu .menu-item-has-children:hover .sub-menu {
  display: block !important; }

.top-menu .secondary-menu .menu-item-has-children:hover .sub-menu {
  text-align: center;
  text-transform: uppercase;
  left: 50%;
  background-color: transparent; }

.top-menu .secondary-menu .menu-item-has-children {
  position: relative; }

.top-menu .secondary-menu .menu-item-has-children .sub-menu .menu-item {
  left: -50%;
  position: relative; }

.top-menu .sub-menu .menu-item li,
.top-menu .languages ul li {
  border-bottom: 1px solid #dedede; }

.top-menu .languages a {
  padding-right: 22px;
  float: left; }

.top-menu .top-menu a:hover {
  color: #666666;
  text-decoration: underline; }

.top-menu .languages a.lang {
  background: url(../img/language-arrow-down.png) no-repeat center right;
  padding-left: 20px; }

.top-menu .menu-spacer a {
  padding-right: 0; }

.top-menu a, .top-menu .watchlist-link .ev-watchlist-link {
  color: #c9c9c9;
  display: inline-block;
  line-height: 30px;
  padding-right: 10px;
  padding-left: 10px;
  background: #fff;
  min-height: 30px; }

.top-menu .sub-menu a {
  display: block; }

.top-menu .sub-menu li {
  padding-left: 0;
  width: 100%;
  float: none;
  margin: 0;
  border-bottom: 1px solid #dedede;
  display: inline-block;
  min-width: 7.3em; }

.top-menu .watchlist-link div > ul > li,
.top-menu .main-menu div > ul > li,
.top-menu .primary-menu div > ul > li,
.top-menu .secondary-menu div > ul > li,
.top-menu div.menu-spacer > ul > li {
  margin: 0;
  float: left; }

.top-menu .watchlist-link .ev-watchlist-link {
  background: url(https://www.engelvoelkers.com/hp/img/icon-star-grey.svg) center left/13px 12px no-repeat;
  padding-left: 20px;
  cursor: pointer; }
  .top-menu .watchlist-link .ev-watchlist-link:hover {
    background: url(https://www.engelvoelkers.com/hp/img/icon-star-black.svg) center left/13px 12px no-repeat; }
  .top-menu .watchlist-link .ev-watchlist-link::after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(https://www.engelvoelkers.com/hp/img/icon-star-black.svg); }

.top-menu .watchlist-link .ev-watchlist-link:hover {
  color: #000000;
  text-decoration: none; }

.top-menu .primary-menu .menu > .menu-item:first-child,
.top-menu .secondary-menu .menu > .menu-item:first-child,
.mobile-nav-menu .primary-menu .menu > .menu-item:first-child,
.mobile-nav-menu .secondary-menu .menu > .menu-item:first-child {
  display: none; }

@media screen and (max-width: 767px) {
  .header-optionally-fixed {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff; } }
.header-new-top .main-logo {
  width: 100%;
  margin: -65px 0 0 0;
  display: inline-block;
  float: left; }

.header-new-top .main-logo a {
  display: inline-block;
  height: 63px;
  width: 220px;
  position: relative; }

.header-new-top .main-logo a img {
  position: absolute;
  bottom: 0; }

.header-new-top .main-logo .shop-name {
  vertical-align: baseline;
  font-size: 16px;
  margin-left: 15px;
  font-weight: normal; }

.header-new-top .main-logo a {
  background: url(../images/logito.jpg);
  background-size:150px 60px;
  height:60px no-repeat left center;

  background-repeat: no-repeat;
  background-position: left bottom; }

.header-new-top .main-logo.custom-logo a {
  background-image: none; }

.header-new-top .logo-residential a {
  background: url(../images/logito.jpg) no-repeat left center;
/*  background-image: url(../img/logos/EV_Logo_RGB_oReg_220x59px.png); */
  /*  background-image: url(../img/logos/EV_Logo_RGB_oReg.svg), none;*/
  background-size: 150px 60px; }

/* only use residential logo for retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header-new-top .logo-residential a {
    background-image: url(../images/logito.jpg), none; } }
.header-new-top .logo-yachting a {
  background-image: url(../img/logos/Logo_EV-Y_2zlg_RGB_220x47px.png);
  background-size: 220px 47px; }

.ev-empty-nav-spacer {
  visibility: hidden;
  /* take space in dom but dont show content */ }

@media screen and (max-width: 767px) {
  .header-bottom.primary-menu {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    margin: 0px 0px 0px 0px; } }
@media screen and (max-width: 767px) {
  .header-bottom.primary-menu {
    display: none; } }
@media screen and (max-width: 767px) {
  .header-new-top {
    padding-top: 0px;
    z-index: 10000;
    /*expanded menu should overlay other content*/ }

  div.row.header-new-top {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px; } }
@media screen and (max-width: 767px) {
  .header-new-top hgroup {
    float: inherit; } }
@media screen and (max-width: 767px) {
  .header-new-top .menu-spacer {
    display: none; } }
@media screen and (max-width: 767px) {
  .header-new-top .top-menu {
    float: inherit;
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px; } }
@media screen and (max-width: 767px) {
  .header-new-top .main-logo {
    float: inherit;
    width: auto;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px; } }
@media screen and (max-width: 767px) {
  .header-new-top .main-logo a {
    margin-right: 20px; } }
@media screen and (max-width: 767px) {
  .header-new-top .main-logo .shop-name {
    display: none; } }
@media screen and (max-width: 767px) {
  .header-new-top .redline {
    float: inherit; } }
@media screen and (max-width: 767px) {
  .keyvisual.listing-search {
    float: inherit;
    margin-top: 0px; } }
/********************
* Highlight für Navigation-Bottom
******************/
.header-bottom .active, .header-bottom.primary-menu nav .active a {
  color: #ff0000;
  text-decoration: none; }

/********************
* Key-Visual Bereich
******************/
.keyvisual .criteria-search {
  float: left; }

.criteria-search.search select[multiple] {
  height: 50px; }

/** see http://css-tricks.com/fighting-the-space-between-inline-block-elements/ */
.search .main-form-container .group {
  display: block; }

.search form .link-holder .more.search {
  background: url(../img/search-arrow-right.png) no-repeat right 50%; }

.search form .link-holder .more.search.left {
  background: url(../img/search-arrow-left.png) no-repeat right 50%; }

.search form .link-holder .more.search span {
  width: auto;
  margin-right: 20px;
  margin-left: 0px;
  float: right;
  text-align: right; }

.search .main-form-container {
  float: left; }

.search .submit {
  width: 108px; }

.search .submit.show-phone.show-tablet {
  float: right; }

@media screen and (max-width: 767px) {
  .search-mobile-detail {
    display: none; }

  .search-mobile-detail.visible {
    display: block; } }
.search .search-mobile-detail-link .fa {
  font-size: 24px;
  color: red;
  line-height: 11px;
  margin-right: 10px;
  width: 10px; }

.search .search-mobile-detail-link .fa.fa-angle-right {
  display: inline-block; }

.search .search-mobile-detail-link .fa.fa-angle-up {
  display: none; }

.search .search-mobile-detail-link.active .fa.fa-angle-right {
  display: none; }

.search .search-mobile-detail-link.active .fa.fa-angle-up {
  display: inline-block; }

#editorial .mainTitle {
  color: #444444;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 29px;
  margin-bottom: 15px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 5px;
  /* 10 px zur linie (5px von .section)*/
  text-rendering: optimizelegibility; }

#editorial .subTitle {
  color: #666;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 18px;
  margin: 0px;
  padding: 0px;
  padding-bottom: 20px; }

#content ul li, #editorial ul li, .footer-text ul li {
  list-style-type: initial;
  margin-left: 20px; }

#content ol li, #editorial ol li, .footer-text ol li {
  list-style-type: decimal;
  margin-left: 30px; }

/* no list style for aquisition page */
#content ul.acquisition-content li {
  list-style-type: none; }

/* reset list styling for bullet on acquisition page */
#content ul.acquisition-content ul.bullet li {
  list-style-type: initial;
  margin-left: 20px; }

/********************
* Fix gegen den Button an Select-Boxen:
******************/
select {
  text-indent: 0.01px;
  text-overflow: ''; }

/**************
 * Breadcrumbs
 **************/
#breadcrumbs h2 {
  display: initial !important;
  /* overwrite ev.com/main.css */ }

#breadcrumbs h2 a {
  display: initial;
  /* overwrite ev.com/main.css */ }

/********************
 * Mobile Navigation
 ********************/
.header-new-top .mobile-nav-menu-button {
  display: none; }

@media screen and (max-width: 767px) {
  .header-new-top .mobile-nav-menu-button {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #444;
    font-size: 24px;
    line-height: 24px; } }
#mobile-nav-box {
  box-shadow: 3px 2px 9px -2px rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 76px;
  left: -290px;
  width: 280px;
  max-width: 80%;
  bottom: 0;
  z-index: 99999;
  background: #C9C9C9;
  overflow: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -ms-touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none; }

@media screen and (min-width: 767px) {
  #mobile-nav-box {
    display: none; } }
@media screen and (max-width: 767px) {
  #mobile-nav-box {
    display: block; } }
#mobile-nav-menu-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden; }

.mobile-nav-menu ul li {
  border-bottom: solid 1px #fff; }

.mobile-nav-menu .menu-item-has-children > ul {
  display: none; }

.mobile-nav-menu .menu-item-has-children > ul.open-sub-menu {
  display: block; }

.mobile-nav-menu ul li a,
.mobile-nav-menu ul li span.ev-masked-link,
.mobile-nav-menu .language-menu a,
.mobile-nav-menu .language-menu span.ev-masked-link {
  padding: 10px;
  display: inline-block;
  width: 90%;
  text-transform: uppercase;
  color: #444;
  line-height: 25px; }

.mobile-nav-menu ul li span.ev-masked-link:hover,
.mobile-nav-menu .language-menu span.ev-masked-link:hover {
  text-decoration: underline; }

.mobile-nav-menu ul li.active a {
  color: #ff0000;
  font-weight: bold; }

.mobile-nav-menu a.active {
  background-color: transparent;
  -webkit-animation: animate-click-response 300ms;
  animation: animate-click-response 300ms; }

@-webkit-keyframes animate-click-response {
  from {
    background-color: transparent; }
  to {
    background-color: rgba(0, 0, 0, 0.2); } }
@keyframes animate-click-response {
  from {
    background-color: transparent; }
  to {
    background-color: rgba(0, 0, 0, 0.2); } }
.mobile-nav-menu .menu-item-has-children ul li a {
  padding-left: 30px; }

.mobile-nav-menu .menu-item-has-children > a:after {
  float: right;
  line-height: 25px;
  font: normal 22px FontAwesome;
  content: "\f105"; }

.mobile-nav-menu .menu-item-has-children.open-menu-item > a:after {
  float: right;
  line-height: 25px;
  font: normal 22px FontAwesome;
  content: "\f107"; }

.ev-mobile-contact-bottom {
  margin-bottom: 1em; }

/********************
 * Lead Key Visual
 ********************/
@media screen and (max-width: 767px) {
  #cookieText ~ .keyVisualLead {
    box-shadow: 0 7px 5px -5px rgba(0, 0, 0, 0.3), 0 -7px 5px -5px rgba(0, 0, 0, 0.3), 0 -150px 200px -100px rgba(0, 0, 0, 0.1) inset; } }

.primary-menu ~ .keyVisualLead {
  box-shadow: 0 7px 5px -5px rgba(0, 0, 0, 0.3), 0 -7px 5px -5px rgba(0, 0, 0, 0.3), 0 -150px 200px -100px rgba(0, 0, 0, 0.1) inset; }

.keyVisualLead {
  padding: 0px;
  box-shadow: 0 7px 5px -5px rgba(0, 0, 0, 0.3), 0 -150px 200px -100px rgba(0, 0, 0, 0.1) inset; }

.keyVisualLead > .left {
  margin: 0px; }

.keyVisualLead > .right {
  padding-left: 4%;
  padding-bottom: 18px; }

.keyVisualLead .leadTabContents {
  margin-right: 48px; }
  .keyVisualLead .leadTabContents #tabOfferAPropertyForm .submit, .keyVisualLead .leadTabContents #tabNewsletterForm .submit {
    float: right;
    width: 30.65%;
    margin: 5px 0 5px 5px; }

/********************
 * Fullscreen Key Visual
 ********************/
body .keyvisual.keyvisual-fullscreen {
  max-width: none;
  background-color: #c9c9c9; }
  @media screen and (max-width: 767px) {
    body .keyvisual.keyvisual-fullscreen {
      min-height: 635px;
      margin-top: 0; } }
  @media screen and (min-width: 768px) {
    body .keyvisual.keyvisual-fullscreen {
      height: 635px; } }
  body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-image {
    width: 100%;
    height: 100%;
    background: center/cover no-repeat; }
    @media screen and (max-width: 767px) {
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-image {
        background-image: url("../img/fullscreen-kv-back-mobile.jpg"); } }
    @media screen and (min-width: 768px) and (max-width: 1280px) {
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-image {
        background-image: url("../img/fullscreen-kv-back-desktop.jpg"); } }
    @media screen and (min-width: 1281px) {
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-image {
        background-image: url("../img/fullscreen-kv-back-desktop-lg.jpg"); } }
  body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay {
    z-index: 2000;
    position: absolute;
    top: 0;
    width: 666px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
    font-weight: 300;
    text-align: center; }
    @media (min-width: 768px) {
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-title-container {
        height: 184px;
        position: relative; } }
    @media (max-width: 767px) {
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-title-container {
        margin-top: 62px; } }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-title-container .keyvisual-fullscreen-search-title {
      width: 100%;
      font-size: 34px;
      line-height: 40px;
      text-transform: uppercase; }
      @media (min-width: 768px) {
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-title-container .keyvisual-fullscreen-search-title {
          position: absolute;
          bottom: 0; } }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-filter-row {
      text-align: left;
      margin-top: 46px;
      font-size: 16px;
      line-height: 26px; }
      @media (max-width: 767px) {
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-filter-row {
          margin-top: 31px; } }
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-filter-row .keyvisual-fullscreen-search-filter {
        display: inline-block;
        cursor: default; }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-group {
      height: 50px;
      position: relative; }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-advanced-search-button-container {
      margin-top: 10px;
      text-align: right; }
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .keyvisual-fullscreen-search-advanced-search-button-container .keyvisual-fullscreen-search-advanced-search-button {
        display: inline-block;
        text-transform: uppercase;
        font-size: 16px;
        line-height: 19px;
        font-weight: bold;
        cursor: pointer; }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-submit-container {
      line-height: 0; }
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-submit-container .fullscreen-keyvisual-search-submit {
        height: 60px;
        background-color: #f00;
        display: inline-block;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 16px;
        cursor: pointer;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
        -moz-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
        -ms-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
        -o-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
        box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13); }
        @media (max-width: 767px) {
          body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-submit-container .fullscreen-keyvisual-search-submit {
            margin-top: 45px; } }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-submit-container .fullscreen-keyvisual-search-submit .fullscreen-keyvisual-search-submit-label {
          height: 60px;
          vertical-align: middle;
          display: table-cell;
          min-width: 130px;
          text-align: center;
          text-transform: uppercase;
          font-size: 22px;
          line-height: 26px; }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row {
      margin-top: 60px; }
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row .fullscreen-keyvisual-search-link-container {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        text-decoration: none;
        outline: none;
        text-align: center;
        display: inline-block;
        color: #fff;
        width: 200px;
        max-width: 40%;
        /* to prevent line break up to display width of around 260px */
        vertical-align: top; }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row .fullscreen-keyvisual-search-link-container .fullscreen-keyvisual-search-link-icon {
          display: inline-block;
          width: 30px;
          height: 30px;
          color: #fff;
          background-color: #fff; }
          body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row .fullscreen-keyvisual-search-link-container .fullscreen-keyvisual-search-link-icon.sell-property-icon {
            background: url(https://www.engelvoelkers.com/hp/img/Icon_House.svg) center/29px 30px no-repeat; }
          body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row .fullscreen-keyvisual-search-link-container .fullscreen-keyvisual-search-link-icon.recruiting-icon {
            background: url(https://www.engelvoelkers.com/hp/img/Icon_Career.svg) center/24px 30px no-repeat; }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row .fullscreen-keyvisual-search-link-container .fullscreen-keyvisual-search-link-title {
          margin-top: 13px;
          text-transform: uppercase;
          font-size: 16px;
          line-height: 19px;
          font-weight: bold; }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .fullscreen-keyvisual-search-link-row .fullscreen-keyvisual-search-link-container .fullscreen-keyvisual-search-link-description {
          font-size: 16px;
          line-height: 19px;
          font-weight: normal;
          margin-top: 2px; }
    body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .ev-dropdown {
      color: #fff; }
      body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .ev-dropdown .ev-dropdown-options {
        top: -7px;
        left: 0; }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .ev-dropdown .ev-dropdown-options .ev-dropdown-value {
          display: inline-block;
          line-height: 51px;
          min-width: 254px;
          max-width: none;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          padding-top: 0;
          padding-bottom: 0; }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .ev-dropdown .ev-dropdown-options .ev-dropdown-scroll.down {
          bottom: 0; }
        body .keyvisual.keyvisual-fullscreen .keyvisual-fullscreen-search-overlay .ev-dropdown .ev-dropdown-options .ev-dropdown-options-scrollable-container {
          max-height: 318px; }

.keyvisual-fullscreen-search-input-group {
  margin-top: 5px;
  margin-bottom: 0;
  height: 50px;
  position: relative;
  background-color: #fff; }
  .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-icon {
    background: url(https://www.engelvoelkers.com/hp/img/Icon_Search_666666.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    position: relative;
    float: left;
    width: 50px;
    height: 100%; }
  .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container {
    width: auto;
    overflow: hidden; }
    .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input {
      font-size: 16px;
      height: 50px;
      line-height: 18px;
      font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
      font-weight: 300;
      border: none;
      box-shadow: none;
      -webkit-box-shadow: none;
      padding-left: 0;
      margin: 0;
      caret-color: #f00; }
      .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input::-webkit-input-placeholder {
        color: #c9c9c9; }
      .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input:-ms-input-placeholder {
        color: #c9c9c9; }
      .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input::-moz-placeholder {
        color: #c9c9c9; }
      .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input:-moz-placeholder {
        color: #c9c9c9; }
    .keyvisual-fullscreen-search-input-group .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input:focus {
      background: #fff; }
  .keyvisual-fullscreen-search-input-group.mobile-dialog-view {
    margin-top: 0;
    height: 35px; }
    .keyvisual-fullscreen-search-input-group.mobile-dialog-view .keyvisual-fullscreen-search-input-container .keyvisual-fullscreen-search-input {
      height: 35px; }

.ev-location-suggest-row.small-padding {
  padding: 5px 8px;
  height: 45px;
  border-bottom: none; }
  .ev-location-suggest-row.small-padding .ev-location-suggest-input-cell {
    font-size: 0;
    padding: 0; }

/********************
 * Lead KV Searchform
 ********************/
div.ev-tabs {
  position: relative;
  left: -8.3%;
  width: 108%; }

div.ev-tabs div.ev-tab {
  height: 34px;
  width: 33.33%;
  margin: 0 0 32px 0;
  font-size: 13px;
  text-align: center;
  line-height: 34px;
  box-shadow: 0 -6px 23px -11px rgba(0, 0, 0, 0.3) inset, 50px 0 70px -26px rgba(0, 0, 0, 0.1) inset; }

@media screen and (max-width: 767px) {
  .keyVisualLead .leadTabContents {
    margin-right: 0px;
    padding-left: 5px;
    padding-right: 5px; }

  div.ev-tabs {
    left: 0;
    width: 100%; }

  div.ev-tabs div.ev-tab {
    width: 30.0%;
    margin: 0 0 16px 0;
    float: left; } }
div.ev-tabs div.ev-tab a {
  color: #8b8b8b; }

div.ev-tabs div.ev-tab.selected {
  margin: 0px;
  box-shadow: none; }

div.ev-tabs div.ev-tab.selected a {
  color: #444; }

div.ev-tab-content {
  display: none; }

div.ev-tab-content.selected {
  display: block; }

.keyVisualLead .row {
  padding: 0px; }

.leadTabContents select,
.leadTabContents input[type="text"],
.leadTabContents input[type="radio"] {
  margin-bottom: 15px;
  font-size: 13px; }

.leadTabContents .descriptionText {
  margin-bottom: 15px; }

a.resetLink {
  background: url(../img/icon_close_2013.png) no-repeat 2px 4px;
  padding-left: 16px; }

.ui-slider.ev-slider {
  height: 1px;
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 9px;
  margin-right: 9px; }

.ui-slider.ev-slider span.ui-slider-handle {
  top: -5px;
  width: 0;
  height: 0;
  padding-right: 7px;
  border-style: solid;
  border-width: 6px 10.4px 6px 0;
  border-color: transparent #8b8b8b transparent transparent;
  border-radius: 0px;
  background-color: transparent; }

.ui-slider.ev-slider span.ui-slider-handle.ui-state-hover,
.ui-slider.ev-slider span.ui-slider-handle.ui-state-active {
  background-color: transparent; }

.ui-slider.ev-slider.ev-slider-changed span.ui-slider-handle {
  border-color: transparent red transparent transparent; }

.ui-slider.ev-slider span.ui-slider-handle:first-of-type {
  border-width: 6px 0px 6px 10.4px;
  border-color: transparent transparent transparent #8b8b8b; }

.ui-slider.ev-slider.ev-slider-changed span.ui-slider-handle:first-of-type {
  border-color: transparent transparent transparent red; }

.ui-slider.ev-slider div.ui-slider-range {
  background-color: #8b8b8b; }

.ui-slider.ev-slider.ev-slider-changed div.ui-slider-range {
  height: 2px;
  background-color: red; }

span.ev-facet-values {
  float: right;
  min-height: 36px; }

/********************
 * Blogpost Content
 ********************/
.post li {
  margin-left: 24px;
  list-style-type: decimal; }

.blogpostcontentitem-margin {
  margin-bottom: 15px; }
  .blogpostcontentitem-margin img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0; }

.post .entry h2, .post .entry .h2 {
  font-size: 13px;
  font-weight: bold; }

.ev-location {
  background-color: #efefef;
  min-height: 169px;
  margin-top: 0px;
  margin-bottom: 5px; }

.ev-location .row {
  position: relative; }

.ev-location .row .four, .ev-location .row .six, .ev-location .row .eight {
  padding: 0px; }

.ev-location .row img {
  width: 100%; }

.ev-location-address {
  position: relative;
  padding: 22px 3px 10px; }

.ev-location-tel-fax {
  margin-top: 11px; }

p.ev-location-success {
  margin: 0 0 0 20px;
  padding: 10px 0 0 0;
  width: 75%; }

.ev-location-links {
  position: absolute;
  right: 20px;
  bottom: 10px; }

.ev-location-links .contact-link {
  float: none; }

.ev-location-contact-form-link {
  margin-top: -4px; }

.ev-success-message-location {
  margin-top: 190px; }

.ev-location-contact-image {
  width: 225px;
  height: 169px; }

/********************
 * Mobile Contact Widget
 ********************/
.action-buttons {
  display: inline-block;
  width: 49px;
  height: 49px;
  line-height: 49px;
  text-align: center;
  background-image: -webkit-linear-gradient(#FEFEFE 0, #E6E6E6 100%);
  background-image: -moz-linear-gradient(#FEFEFE 0, #E6E6E6 100%);
  background-image: -ms-linear-gradient(#FEFEFE 0, #E6E6E6 100%);
  background-image: -o-linear-gradient(#FEFEFE 0, #E6E6E6 100%);
  background-image: linear-gradient(to, #E6E6E6 100%);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5); }

.action-buttons .fa {
  font-size: 28px;
  line-height: 49px;
  color: #666; }

.ev-contact-button {
  float: left;
  width: 27.5%;
  text-align: center;
  padding: 2px 0px;
  position: relative; }

.ev-contact-button-left {
  width: 22.5%;
  text-align: left; }

.ev-contact-button-right {
  width: 22.5%;
  text-align: right; }

.ev-contact-button a {
  margin: 2px; }

#contact .show-phone.show-tablet .ev-office-name {
  margin-top: 1em; }

.show-phone .ev-social-link-picker, .show-tablet .ev-social-link-picker {
  -moz-appearance: none;
  /* remove the ugly dropdown arrow in firefox */
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 52px;
  width: 49px;
  float: right;
  background: 0 0;
  color: transparent;
  border: none;
  z-index: 1000;
  padding: 0;
  margin: 0; }

/*******************
 * free form content
 *******************/
.ev-row-form-button {
  float: right;
  width: auto;
  padding: 0px 20px; }

.ev-free-content-label-break {
  word-wrap: break-word;
  width: 100%;
  float: none; }

.ev-free-content-label-break > p {
  margin-left: 25px; }

.form-no-side-padding {
  padding: 15px 0px; }

.form-no-bottom-padding {
  padding-bottom: 0px; }

.form-no-top-padding {
  padding-top: 0px; }

.form-no-right-padding {
  padding-right: 0px; }

.form-no-left-padding {
  padding-left: 0px; }

.form-textarea {
  min-height: 200px; }

.row .ten-fill {
  width: 85.33%; }

.row .eleven-fill {
  width: 93.67%; }

.ev-free-form-success {
  background-color: #EFEFEF; }

.ev-mandatory-star {
  color: red; }

.ev-free-form-confirm-note {
  white-space: pre-wrap; }

.ev-free-form-error {
  color: red; }

.row .ev-free-form-label {
  padding: 0px; }

.ev-free-form-label {
  padding: 0px; }

.row-form-padding .ev-free-form-input {
  margin-top: 4px;
  margin-bottom: 4px; }

.ev-free-form-input {
  margin-top: 4px;
  margin-bottom: 4px; }

.ev-free-check-box {
  float: left; }

.ev-free-check-text {
  padding-left: 20px; }

.row-form-padding {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 5px;
  padding-bottom: 5px; }

.row-form-no-padding {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 5px;
  padding-bottom: 5px; }

/*******************
 * acquisition form
 *******************/
.ev-form-heading {
  margin-top: 4px; }

.ev-acquisition-form select {
  margin-bottom: 10px; }

.ev-custom-checkbox {
  background: url(https://www.engelvoelkers.com/hp/img/checkbox/normal.svg) no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
  float: left;
  padding: 1px; }

.ev-custom-checkbox.checked {
  background: url(https://www.engelvoelkers.com/hp/img/checkbox/active.svg) no-repeat; }

.ev-custom-checkbox.required:not(.checked) {
  background: url(https://www.engelvoelkers.com/hp/img/checkbox/error.svg) no-repeat; }

.ev-custom-checkbox input {
  display: none; }

.ev-custom-checkbox-label {
  margin: 2px 8px 2px 33px;
  line-height: 20px;
  display: block; }

.ev-privacy {
  display: inline-block;
  float: left;
  margin-top: 10px; }
  .ev-privacy input[type=checkbox] {
    display: none; }
  .ev-privacy .ev-privacy-label {
    margin: 2px 8px 10px 35px;
    line-height: 20px;
    display: block;
    float: none; }
  .ev-privacy .ev-privacy-label > p {
    display: inline; }
  .ev-privacy input[type=checkbox] + label {
    background: url(https://www.engelvoelkers.com/hp/img/checkbox/normal.svg) no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
    float: left;
    margin-left: 0px; }
  .ev-privacy input[type=checkbox]:checked + label {
    background: url(https://www.engelvoelkers.com/hp/img/checkbox/active.svg) no-repeat; }
  .ev-privacy input[type=checkbox]:invalid + label {
    background: url(https://www.engelvoelkers.com/hp/img/checkbox/error.svg) no-repeat; }

.ev-clickable {
  cursor: pointer; }

.widget-link-holder {
  position: relative; }

.ev-widget-link-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%; }

#widgets h2, #widgets .h2 {
  margin-bottom: 0; }

.ev-widget-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1; }

/* overwrite widget rule for two column widget list WCMS-446 */
.a-page .right #widgets .teaser.last {
  float: right;
  /* let last widget per row flow right */ }

#widgets img {
  width: 100%; }

.agent .row {
  position: relative; }

.agent .contact-link-teamMember {
  margin-top: 10px; }

.agent .agent-image {
  min-height: 150px; }

/* https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
.videoWrapper {
  position: relative;
  padding-bottom: 50%;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.section.nobreadcrumb {
  border-top: initial; }

.umantis iframe {
  width: 100%;
  height: 500px;
  margin: 0;
  padding: 0;
  border: none; }

@media screen and (min-width: 480px) and (max-width: 992px) {
  /* tablet firefox view of select boxes has smaller height: see L4112 main.css */
  .select-container .select-overlay {
    height: 23px; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  .row,
  body {
    width: 100%;
    min-width: 0;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px; }

  .row > .one,
  .row > .two,
  .row > .three,
  .row > .four,
  .row > .five,
  .row > .six,
  .row > .seven,
  .row > .eight,
  .row > .nine,
  .row > .ten,
  .row > .eleven,
  .row > .twelve {
    width: auto;
    float: none;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 5px;
    padding-right: 15px; } }
@media screen and (min-width: 768px) and (max-width: 1199px) {
  /* WCMS-751 */
  .ev-blogpost-right-col td {
    display: block; }

  .ev-blogpost-right-col tr {
    display: block;
    margin-bottom: 5px; } }
/*******************
 * form in lightbox
 *******************/
.ev-dialog-button {
  width: 40%;
  height: auto;
  margin: 50px auto;
  padding: 14px 40px;
  text-align: center;
  display: block; }

button:disabled {
  opacity: 0.5; }

.ev-dialog .ev-button-cancel {
  display: inline-block;
  cursor: pointer; }

.ev-dialog .ev-row-form-button {
  cursor: pointer;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  float: unset;
  display: block;
  padding: 14px 40px;
  height: auto; }

.ev-dialog .ev-dialog-title-row-desktop {
  min-height: 25px;
  font-size: 32px;
  text-align: center; }

.ev-dialog .ev-dialog-title-row-desktop .ev-title {
  display: inline-block;
  width: 85%;
  line-height: 32px; }

.ev-dialog .ev-dialog-title-row-desktop .ev-button-cancel {
  float: right; }

.ev-dialog .ev-dialog-title-row-desktop .ev-button-cancel img {
  width: 25px;
  height: 25px; }

.ev-dialog .ev-dialog-title-row-mobile {
  width: 100%;
  margin-top: 11px;
  padding: 0 9px 15px 9px;
  border-bottom: 3px solid #f00;
  font-size: 24px;
  text-align: center; }

.ev-dialog .ev-dialog-title-row-mobile .ev-button-cancel {
  float: left;
  font-size: 16px; }

.ev-dialog .ev-dialog-title-row-mobile .ev-button-cancel img {
  width: auto;
  height: 16px;
  margin-top: -3px; }

.ev-dialog .ev-dialog-title-row-mobile .ev-button-cancel span {
  margin-left: 5px; }

.ev-dialog-overlay {
  top: 0;
  left: 0;
  z-index: 10001;
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  overflow: hidden;
  display: none; }

.ev-dialog {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  z-index: 10002;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 750px;
  max-height: 90%;
  background-color: #fff;
  padding: 50px;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-weight: 100;
  /* the header usually lies at z-index 10000, which naturally blocks everything. On mobile, we need to get in front of that. */ }
  @media (max-width: 767px) {
    .ev-dialog {
      z-index: 10002;
      display: none;
      width: 85%;
      padding: 20px; } }

.ev-dialog .ev-dialog-scrollable-area {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px; }
  @media (max-width: 767px) {
    .ev-dialog .ev-dialog-scrollable-area {
      margin-right: 0;
      padding-right: 0;
      margin-left: 0;
      padding-left: 0; } }

@media (max-width: 767px) {
  .b-page .right .ev-dialog .six {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
    margin-right: 0 !important; } }
@media (min-width: 768px) {
  .b-page .right .ev-dialog .six {
    width: 48%;
    margin-right: 4%; }
    .b-page .right .ev-dialog .six.last {
      margin-right: 0; } }
.ev-lightbox-success {
  margin-top: 30px;
  text-align: center;
  padding: 0px; }

.ev-masked-link:hover {
  cursor: pointer; }

input[type="text"][hidden],
input[type="password"][hidden],
input[type="date"][hidden],
input[type="datetime"][hidden],
input[type="datetime-local"][hidden],
input[type="month"][hidden],
input[type="week"][hidden],
input[type="email"][hidden],
input[type="number"][hidden],
input[type="search"][hidden],
input[type="tel"][hidden],
input[type="time"][hidden],
input[type="url"][hidden],
textarea[hidden] {
  display: none; }

.ev-landingpage-header {
  box-sizing: border-box;
  border-bottom: solid 3px #f00; }
  @media (max-width: 767px) {
    .ev-landingpage-header {
      background: #fff url(../images/logito.jpg) center/114px 33px no-repeat; } }
  .ev-landingpage-header .ev-header-content {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 1280px;
    padding: 0px 40px;
    margin: 0 auto;
    height: 110px; }
    @media (max-width: 767px) {
      .ev-landingpage-header .ev-header-content {
        height: 56px; } }

.ev-header-logo {
  display: block;
  position: absolute;
  left: 40px;
  bottom: 12px;
  width: 220px;
  height: 60px;
  background: url(../images/logito.jpg) center/220px 60px no-repeat; }

.ev-header-navigation-top, .ev-header-navigation-bottom {
  position: absolute;
  right: 40px;
  line-height: 36px;
  height: 36px;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 0; }
  @media (max-width: 767px) {
    .ev-header-navigation-top, .ev-header-navigation-bottom {
      display: none; } }
  .ev-header-navigation-top .ev-header-navigation-item, .ev-header-navigation-bottom .ev-header-navigation-item {
    display: inline-block;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 36px;
    height: 36px;
    vertical-align: middle; }
    .ev-header-navigation-top .ev-header-navigation-item:hover, .ev-header-navigation-bottom .ev-header-navigation-item:hover {
      text-decoration: none; }

.ev-header-navigation-top {
  overflow-y: visible;
  color: #c9c9c9;
  font-weight: 300;
  margin-left: -10px;
  margin-right: -10px; }
  .ev-header-navigation-top .ev-dropdown {
    vertical-align: middle; }
    .ev-header-navigation-top .ev-dropdown .ev-dropdown-head {
      font-size: 14px;
      color: #c9c9c9; }
      .ev-header-navigation-top .ev-dropdown .ev-dropdown-head:hover, .ev-header-navigation-top .ev-dropdown .ev-dropdown-head.ev-open {
        color: #444444; }
    .ev-header-navigation-top .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value {
      font-size: 14px; }
    .ev-header-navigation-top .ev-dropdown .ev-dropdown-options .ev-dropdown-options-scrollable-container {
      max-height: 240px; }
  .ev-header-navigation-top .separator {
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    margin: 0 10px;
    width: 1px;
    background-color: #c9c9c9; }
  .ev-header-navigation-top .ev-header-navigation-item {
    font-size: 14px; }
    .ev-header-navigation-top .ev-header-navigation-item:hover {
      color: #000; }
    .ev-header-navigation-top .ev-header-navigation-item .ev-watchlist-link {
      background: url(https://www.engelvoelkers.com/hp/img/icon-star-grey.svg) center left/13px 12px no-repeat;
      padding-left: 20px;
      cursor: pointer;
      display: inline-block; }
      .ev-header-navigation-top .ev-header-navigation-item .ev-watchlist-link:hover {
        background-image: url(https://www.engelvoelkers.com/hp/img/icon-star-black.svg); }
      .ev-header-navigation-top .ev-header-navigation-item .ev-watchlist-link::after {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        z-index: -1;
        content: url(https://www.engelvoelkers.com/hp/img/icon-star-black.svg); }

.ev-header-navigation-bottom {
  bottom: 4px;
  margin-left: -15px;
  margin-right: -15px; }
  .ev-header-navigation-bottom .ev-dropdown .ev-dropdown-head {
    padding: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    font-weight: bold; }
    .ev-header-navigation-bottom .ev-dropdown .ev-dropdown-head.ev-open, .ev-header-navigation-bottom .ev-dropdown .ev-dropdown-head:hover {
      color: #f00; }
  .ev-header-navigation-bottom .ev-dropdown .ev-dropdown-options {
    left: -1px; }
    .ev-header-navigation-bottom .ev-dropdown .ev-dropdown-options .align-right {
      right: -1px; }
  .ev-header-navigation-bottom .ev-header-navigation-item {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 15px;
    vertical-align: baseline; }
    .ev-header-navigation-bottom .ev-header-navigation-item:hover, .ev-header-navigation-bottom .ev-header-navigation-item.active {
      color: #f00; }

.ev-mobile-nav-menu-button {
  position: absolute;
  top: 19px;
  right: 15px;
  width: 26px;
  height: 21px;
  background: url(../images/Icon_Burger_Menu.svg) center/18px 13px no-repeat;
  cursor: pointer; }

.ev-landingpage-header-mobile-spacer {
  height: 59px;
  margin: 0;
  padding: 0; }

#mobile-nav-box.ev-style-new {
  top: 59px;
  background-color: #fff;
  max-width: none;
  width: 100%;
  left: -105%; }
  #mobile-nav-box.ev-style-new .ev-mobile-nav-box-scrollable-area {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
  #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item {
    display: block;
    padding-left: 26px;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
    color: #000;
    text-transform: uppercase;
    border-bottom: solid 1px #c9c9c9;
    text-decoration: none;
    cursor: pointer; }
    #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item:hover, #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.active {
      color: #f00; }
    #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.light {
      font-weight: normal;
      text-transform: none;
      color: #c9c9c9; }
      #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.light:hover {
        color: #000; }
    #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.ev-mobile-nav-box-item-corporate-header {
      cursor: default; }
      #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.ev-mobile-nav-box-item-corporate-header:hover, #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.ev-mobile-nav-box-item-corporate-header.active {
        color: #000; }
    #mobile-nav-box.ev-style-new .ev-mobile-nave-box-item.ev-mobile-nav-box-item-corporate {
      padding-left: 46px; }

.ev-footer {
  width: 100%; }
  .ev-footer a:hover {
    text-decoration: none;
    color: #f00; }
  .ev-footer .ev-greyline {
    width: 100%;
    height: 1px;
    background-color: #c9c9c9; }
    .ev-footer .ev-greyline.big-bottom-margin {
      margin-bottom: 24px; }
  .ev-footer .ev-footer-top-spacer {
    width: 100%;
    height: 36px; }
    @media (max-width: 767px) {
      .ev-footer .ev-footer-top-spacer {
        height: 11px; } }
  .ev-footer .ev-footer-row {
    max-width: 1280px;
    left: 0;
    right: 0;
    margin: auto; }
    .ev-footer .ev-footer-row .ev-footer-links-container {
      width: 100%;
      box-sizing: border-box;
      font-size: 0;
      line-height: 0;
      display: flex;
      justify-content: space-between;
      padding-left: 40px;
      padding-right: 40px; }
      .ev-footer .ev-footer-row .ev-footer-links-container .ev-footer-link-tower {
        vertical-align: top;
        display: inline-block; }
        .ev-footer .ev-footer-row .ev-footer-links-container .ev-footer-link-tower .ev-footer-link-tower-headline {
          line-height: 20px;
          font-family: Helvetica, Verdana, Arial, sans-serif;
          font-size: 14px;
          font-weight: bold;
          text-align: left;
          color: #444444;
          margin-bottom: 10px;
          overflow: hidden;
          white-space: nowrap;
          margin-right: 20px; }
        .ev-footer .ev-footer-row .ev-footer-links-container .ev-footer-link-tower .ev-footer-link-tower-links-container {
          display: inline-block;
          overflow-x: hidden;
          text-overflow: ellipsis;
          vertical-align: top;
          white-space: nowrap;
          margin-right: 80px; }
          @media (min-width: 768px) and (max-width: 924px) {
            .ev-footer .ev-footer-row .ev-footer-links-container .ev-footer-link-tower .ev-footer-link-tower-links-container {
              margin-right: 20px; } }
          .ev-footer .ev-footer-row .ev-footer-links-container .ev-footer-link-tower .ev-footer-link-tower-links-container:last-child {
            margin-right: 20px; }
          .ev-footer .ev-footer-row .ev-footer-links-container .ev-footer-link-tower .ev-footer-link-tower-links-container .ev-footer-link-tower-link {
            display: inline-block;
            font-family: Helvetica, Verdana, Arial, sans-serif;
            font-size: 14px;
            line-height: 21px;
            text-align: left; }
    .ev-footer .ev-footer-row .ev-footer-contact-container {
      position: relative;
      box-sizing: border-box;
      font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: 300;
      line-height: 21px;
      color: #444444;
      display: inline-block; }
      .ev-footer .ev-footer-row .ev-footer-contact-container .ev-footer-contact-headline {
        line-height: 20px;
        font-family: Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        text-align: left;
        color: #444444;
        margin-bottom: 8px;
        overflow: hidden;
        white-space: nowrap; }
      .ev-footer .ev-footer-row .ev-footer-contact-container .ev-footer-contact-redline {
        height: 1px;
        width: 40px;
        background-color: #f00;
        margin: 8px 0; }
      .ev-footer .ev-footer-row .ev-footer-contact-container .ev-footer-contact-row {
        padding-left: 26px; }
        .ev-footer .ev-footer-row .ev-footer-contact-container .ev-footer-contact-row.ev-social-media {
          margin-top: 10px;
          line-height: 0;
          font-size: 0;
          display: flex;
          justify-content: space-between; }
      .ev-footer .ev-footer-row .ev-footer-contact-container .ev-footer-contact-social-media {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 10px; }
        .ev-footer .ev-footer-row .ev-footer-contact-container .ev-footer-contact-social-media:last-child {
          margin-right: 0; }
    .ev-footer .ev-footer-row.ev-footer-logos {
      margin-top: 40px;
      margin-bottom: 12px;
      font-size: 0;
      padding-left: 40px;
      padding-right: 40px;
      box-sizing: border-box;
      display: flex;
      justify-content: space-between; }
      .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container {
        margin: 0;
        padding: 0;
        display: inline-block;
        text-align: center; }
        .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container .ev-footer-logo {
          display: inline-block;
          width: 96px;
          height: 31px; }
          .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container .ev-footer-logo.ev-gg {
            width: 49px; }
          @media (min-width: 850px) and (max-width: 1024px) {
            .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container .ev-footer-logo {
              width: 78px; }
              .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container .ev-footer-logo.ev-gg {
                width: 40px; } }
          @media (min-width: 768px) and (max-width: 849px) {
            .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container .ev-footer-logo {
              width: 70px; }
              .ev-footer .ev-footer-row.ev-footer-logos .ev-footer-logo-container .ev-footer-logo.ev-gg {
                width: 36px; } }
  .ev-footer .ev-footer-contact-social-media.facebook {
    background: url(https://www.engelvoelkers.com/hp/img/social/Facebook.svg) 0/20px no-repeat; }
    .ev-footer .ev-footer-contact-social-media.facebook:hover {
      background: url(https://www.engelvoelkers.com/hp/img/social/Facebook_active.svg) 0/20px no-repeat; }
  .ev-footer .ev-footer-contact-social-media.googleplus {
    background: url(https://www.engelvoelkers.com/hp/img/social/GooglePlus.svg) 0/20px no-repeat; }
    .ev-footer .ev-footer-contact-social-media.googleplus:hover {
      background: url(https://www.engelvoelkers.com/hp/img/social/GooglePlus_active.svg) 0/20px no-repeat; }
  .ev-footer .ev-footer-contact-social-media.linkedin {
    background: url(https://www.engelvoelkers.com/hp/img/social/Linkedin.svg) 0/20px no-repeat; }
    .ev-footer .ev-footer-contact-social-media.linkedin:hover {
      background: url(https://www.engelvoelkers.com/hp/img/social/Linkedin_active.svg) 0/20px no-repeat; }
  .ev-footer .ev-footer-contact-social-media.instagram {
    background: url(https://www.engelvoelkers.com/hp/img/social/Instagram.svg) 0/20px no-repeat; }
    .ev-footer .ev-footer-contact-social-media.instagram:hover {
      background: url(https://www.engelvoelkers.com/hp/img/social/Instagram_active.svg) 0/20px no-repeat; }
  .ev-footer .ev-footer-contact-social-media.youtube {
    background: url(https://www.engelvoelkers.com/hp/img/social/Youtube.svg) 0/20px no-repeat; }
    .ev-footer .ev-footer-contact-social-media.youtube:hover {
      background: url(https://www.engelvoelkers.com/hp/img/social/Youtube_active.svg) 0/20px no-repeat; }
  .ev-footer .ev-load-facebook-active-icon {
    background-image: url("https://www.engelvoelkers.com/hp/img/social/Facebook_active.svg"); }
  .ev-footer .ev-load-googleplus-active-icon {
    background-image: url("https://www.engelvoelkers.com/hp/img/social/GooglePlus_active.svg"); }
  .ev-footer .ev-load-linkedin-active-icon {
    background-image: url("https://www.engelvoelkers.com/hp/img/social/Linkedin_active.svg"); }
  .ev-footer .ev-load-instagram-active-icon {
    background-image: url("https://www.engelvoelkers.com/hp/img/social/Instagram_active.svg"); }
  .ev-footer .ev-load-youtube-active-icon {
    background-image: url("https://www.engelvoelkers.com/hp/img/social/Youtube_active.svg"); }
  .ev-footer .ev-footer-contact-row {
    padding-left: 26px; }
    .ev-footer .ev-footer-contact-row.icon-phone {
      background: url(https://www.engelvoelkers.com/hp/img/Icon_Phone.svg) 0 center/15px 15px no-repeat; }
    .ev-footer .ev-footer-contact-row.icon-fax {
      background: url(https://www.engelvoelkers.com/hp/img/Icon_Fax.svg) 0 center/15px 15px no-repeat; }
    .ev-footer .ev-footer-contact-row.icon-mail {
      background: url(https://www.engelvoelkers.com/hp/img/Icon_Email.svg) 0 center/15px 15px no-repeat; }
  .ev-footer .ev-footer-logo.ev-euv {
    background: url(../images/logito.jpg) center 0/96px 28px no-repeat; }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-euv {
        background-size: 70px 20px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-euv {
        background-size: 78px 23px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-commercial {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-commercial {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-yachting {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-yachting {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-resorts {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-resorts {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-charity {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-charity {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-capital {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-capital {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-development {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-development {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-poloschool {
        background-size: 70px 17px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-poloschool {
        background-size: 78px 19px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-academy {
        background-size: 70px 16px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-academy {
        background-size: 78px 18px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-aviation {
        background-size: 70px 16px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-aviation {
        background-size: 78px 18px; } }
    @media (min-width: 768px) and (max-width: 849px) {
      .ev-footer .ev-footer-logo.ev-gg {
        background-size: 36px 23px; } }
    @media (min-width: 850px) and (max-width: 1024px) {
      .ev-footer .ev-footer-logo.ev-gg {
        background-size: 40px 25px; } }
  .ev-footer .ev-footer-mobile-content {
    padding: 10px 16px 0 16px; }
    .ev-footer .ev-footer-mobile-content .ev-footer-mobile-link-row {
      box-sizing: border-box;
      position: relative;
      height: 54px;
      padding: 19px 0; }
         .ev-footer .ev-footer-mobile-content .ev-footer-mobile-link-row .ev-footer-mobile-link.left {
          left: 0; }
        .ev-footer .ev-footer-mobile-content .ev-footer-mobile-link-row .ev-footer-mobile-link.right {
          right: 0; }
    .ev-footer .ev-footer-mobile-content .ev-footer-contact-container {
      font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: 300;
      line-height: 21px;
      color: #444444;
      text-align: center; }
      .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-headline {
        line-height: 20px;
        font-family: Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #444444;
        margin-top: 20px; }
      .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-redline {
        height: 1px;
        width: 40px;
        background-color: #f00;
        margin: 10px auto;
        left: 0;
        right: 0; }
      .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-row-container {
        text-align: center; }
        .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-row-container .ev-footer-contact-row {
          display: inline-block;
          line-height: 20px;
          padding-left: 29px; }
          .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-row-container .ev-footer-contact-row.ev-social-media {
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 0; }
        .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-row-container .ev-footer-contact-social-media {
          display: inline-block;
          width: 20px;
          height: 20px;
          margin-right: 20px; }
          .ev-footer .ev-footer-mobile-content .ev-footer-contact-container .ev-footer-contact-row-container .ev-footer-contact-social-media:last-child {
            margin-right: 0; }
    .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light {
      text-align: center;
      border-bottom: none; }
      .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light .ev-accordeon-head-container {
        background-color: #fff;
        position: relative; }
        .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light .ev-accordeon-head-container .ev-accordeon-head {
          display: inline-block;
          padding-left: 0;
          padding-right: 18px;
          color: #444444;
          line-height: 56px;
          height: 56px; }
          .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light .ev-accordeon-head-container .ev-accordeon-head:hover {
            color: #f00; }
          .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light .ev-accordeon-head-container .ev-accordeon-head .ev-accordeon-arrow {
            height: 56px;
            right: 0;
            background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down.svg) right center/8px no-repeat; }
          .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light .ev-accordeon-head-container .ev-accordeon-head.ev-open .ev-accordeon-arrow {
            background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up.svg); }
      .ev-footer .ev-footer-mobile-content .ev-accordeon.ev-light .ev-accordeon-options {
        margin-bottom: 15px; }
    .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container {
      text-align: center; }
      .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container .ev-footer-link-tower-headline {
        display: inline-block;
        line-height: 26px;
        font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #444444;
        margin-top: 30px; }
      .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container .ev-footer-link-tower-link {
        display: inline-block;
        font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        line-height: 26px; }
      .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container:first-child .ev-footer-link-tower-headline {
        margin-top: 10px; }
    .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row {
      height: 54px;
      padding: 8px;
      position: relative; }
      .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-footer-logo {
        position: absolute;
        display: block;
        width: 96px;
        height: 31px; }
        .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-footer-logo.left {
          left: 0; }
        .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-footer-logo.right {
          right: 0; }
      .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-accordeon-options {
        margin-bottom: 15px; }
    .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container {
      text-align: center; }
      .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container .ev-footer-link-tower-headline {
        display: inline-block;
        line-height: 26px;
        font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #444444;
        margin-top: 30px; }
      .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container .ev-footer-link-tower-link {
        display: inline-block;
        font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        line-height: 26px; }
      .ev-footer .ev-footer-mobile-content .ev-footer-link-tower-link-container:first-child .ev-footer-link-tower-headline {
        margin-top: 10px; }
    .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row {
      box-sizing: border-box;
      height: 54px;
      padding: 8px;
      position: relative; }
      .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-footer-logo {
        position: absolute;
        display: block;
        width: 96px;
        height: 31px; }
        .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-footer-logo.left {
          left: 0; }
        .ev-footer .ev-footer-mobile-content .ev-footer-mobile-logos-row .ev-footer-logo.right {
          right: 0; }
  .ev-footer .ev-footer-bottom-logo {
    font-family: Helvetica, Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 42px;
    color: #000;
    text-align: center; }
    .ev-footer .ev-footer-bottom-logo .red {
      color: #f00; }
  .ev-footer .ev-footer-last-spacer {
    height: 104px; }

@media (min-width: 768px) and (max-width: 1023px) {
  .ev-corporate-header.ev-landingpage-header.header-optionally-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff url(../images/logito.jpg) center/114px 33px no-repeat; }
  .ev-corporate-header .ev-header-content {
    height: 56px; }
  .ev-corporate-header#mobile-nav-box {
    display: block; } }
@media (max-width: 1023px) {
  .show-lt-1024 {
    display: block !important; } }

@media (max-width: 1023px) {
  .hide-lt-1024 {
    display: none !important; } }

@media (min-width: 1024px) {
  .show-ge-1024 {
    display: block !important; } }

@media (min-width: 1024px) {
  .hide-ge-1024 {
    display: none !important; } }

.ev-page-container {
  max-width: 768px;
  margin: 10px auto;
  background-color: #fff;
  box-shadow: 0px 4px 6px #555; }

.ev-search-form {
  border: 1px solid #919191; }

.ev-search-form input {
  width: 80%;
  height: 30px;
  padding: 0 0 0 10px;
  font-size: 1.3em; }

.ev-search-form button {
  width: 17.5%;
  height: 34px;
  font-size: 1.3em; }

@media (max-width: 767px) {
  .mobile-dialog-view .ev-search-preview-results {
    display: block; } }

.clear {
  clear: both; }

.ev-search-preview-spacer {
  border-bottom: 1px solid #919191;
  margin: 0px -5px 10px -5px;
  padding-top: 5px; }

.ev-preview-label {
  float: left;
  width: 25%;
  text-align: right;
  font-size: 1.1em;
  text-transform: uppercase; }

.ev-search-preview {
  border-top: solid 1px #c9c9c9;
  background-color: #fff;
  position: relative; }
  @media (max-width: 767px) {
    .ev-search-preview {
      display: none; } }

.ev-search-preview-results {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 278px; }
  .ev-search-preview-results .ev-search-item-link {
    display: block;
    width: auto; }
  .ev-search-preview-results .ev-preview-content-header {
    font-size: 13px;
    color: #444444;
    text-align: left;
    margin: 26px 0 9px 16px;
    text-transform: uppercase; }
  .ev-search-preview-results .ev-preview-content-item {
    height: 50px;
    line-height: 50px; }
  .ev-search-preview-results .ev-preview-content-item:hover,
  .ev-search-preview-results .ev-preview-content-item.ev-preview-item-selected {
    background-color: #f0f0f0; }
  .ev-search-preview-results .ev-preview-item-icon {
    height: 100%;
    line-height: 100%;
    width: 70px;
    float: left;
    position: relative; }
    .ev-search-preview-results .ev-preview-item-icon .ev-preview-location-icon {
      background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Pin.svg);
      width: 24px;
      height: 22px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
  .ev-search-preview-results .ev-preview-item-icon.icon-property {
    background-size: 50px 40px;
    background-repeat: no-repeat;
    background-position: center center; }
    @media (max-width: 767px) {
      .ev-search-preview-results .ev-preview-item-icon.icon-property {
        background-size: 40px 40px; } }
  .ev-search-preview-results .ev-preview-item-icon.icon-location {
    background: url(https://www.engelvoelkers.com/hp/img/Icon_Pin.svg) center/16px 22px no-repeat; }
  .ev-search-preview-results .ev-preview-item-icon.icon-fulltext {
    background: url(https://www.engelvoelkers.com/hp/img/Icon_Search_c9c9c9.svg) center/22px 22px no-repeat; }
  .ev-search-preview-results .ev-preview-item-text {
    font-size: 16px;
    text-align: left;
    color: #c9c9c9;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: 50px; }
    .ev-search-preview-results .ev-preview-item-text .ev-preview-item-text-emphasize {
      color: #444444; }
    @media (max-width: 767px) {
      .ev-search-preview-results .ev-preview-item-text {
        padding-left: 10px; } }

.mobile-dialog-view.ev-search-preview-results {
  max-height: none;
  border-top: none; }
  .mobile-dialog-view.ev-search-preview-results .ev-search-item-link {
    margin-left: 17px;
    border-bottom: solid 1px #c9c9c9; }
    .mobile-dialog-view.ev-search-preview-results .ev-search-item-link .ev-preview-item-icon {
      width: 53px; }

.ev-search-preview-results a {
  text-decoration: none;
  width: 100%;
  background-color: #fff; }

.ev-actions {
  float: right;
  display: inline-block; }

.ev-actions .fa {
  color: #919191;
  font-size: 1.2em;
  padding: 1px 0px 0px 0px;
  margin-left: 15px; }

.ev-actions .fa:hover {
  color: #F00;
  cursor: pointer;
  text-decoration: none; }

.ev-preview-image img {
  width: 75px;
  float: left;
  margin-top: 2px;
  max-height: 56px; }

.ev-preview-property-data {
  min-height: 60px; }

.ev-avg-price {
  margin-right: 10px; }

.ev-avg-prices {
  text-align: right; }

#us-filter {
  border-top: 1px solid #919191;
  padding: 5px; }

.us-filter-item {
  width: 33%;
  display: inline-block;
  text-align: center; }

.us-filter-item input {
  width: 50px; }

.us-filter-item label {
  font-size: 1.2em; }

/* =============================================
 * Image Gallery Main Stuff
 * ============================================= */
.ev-carousel-outer-frame {
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px; }

.ev-carousel-frame {
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  position: relative;
  margin-top: 0;
  margin-bottom: 0; }

.ev-carousel {
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none; }
  .ev-carousel::-webkit-scrollbar {
    display: none; }

.ev-carousel.ev-center-one-element {
  text-align: center; }

.ev-carousel.ev-view-single-element {
  overflow-x: hidden; }

.ev-carousel.ev-view-single-element .ev-carousel-element {
  display: inline-block;
  text-align: center;
  overflow-x: hidden; }
  @media (max-width: 767px) {
    .ev-carousel.ev-view-single-element .ev-carousel-element {
      width: 100%; } }

.ev-carousel .ev-carousel-element:last-of-type {
  margin-right: 1px; }

.ev-carousel .ev-carousel-element {
  display: inline-block; }

.ev-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 50px;
  cursor: pointer; }

.ev-carousel-nav.left {
  display: none;
  background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_left.svg) no-repeat; }
  @media (min-width: 1260px) {
    .ev-carousel-nav.left {
      left: -124px; } }
  @media (min-width: 992px) and (max-width: 1259px) {
    .ev-carousel-nav.left {
      left: -75px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .ev-carousel-nav.left {
      left: -75px; } }

.ev-carousel-nav.right {
  display: none;
  background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_right.svg) no-repeat; }
  @media (min-width: 1260px) {
    .ev-carousel-nav.right {
      right: -124px; } }
  @media (min-width: 992px) and (max-width: 1259px) {
    .ev-carousel-nav.right {
      right: -75px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .ev-carousel-nav.right {
      right: -75px; } }

.ev-image-gallery-image, .single .post .ev-image-gallery-image {
  padding: 0px;
  width: auto;
  max-width: none; }
  @media (min-width: 768px) {
    .ev-image-gallery-image, .single .post .ev-image-gallery-image {
      height: 250px; } }
  @media (max-width: 767px) {
    .ev-image-gallery-image, .single .post .ev-image-gallery-image {
      height: auto; }
      .ev-image-gallery-image.ev-stretch-image, .single .post .ev-image-gallery-image.ev-stretch-image {
        width: 100vw;
        height: 75vw; } }

.ev-image-gallery-image-link:hover {
  text-decoration: none; }

.ev-image-gallery-counter-frame {
  position: absolute;
  right: 20px;
  bottom: 25px;
  width: 92px;
  height: 60px;
  z-index: 42;
  background-color: rgba(0, 0, 0, 0.7); }
  .ev-image-gallery-counter-frame a:hover {
    text-decoration: none; }
  .ev-image-gallery-counter-frame .ev-image-gallery-counter {
    width: 100%;
    height: 100%;
    padding: 21px 20px;
    font-size: 20px;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    font-weight: 100;
    color: #fff;
    line-height: 1;
    box-sizing: border-box; }
    .ev-image-gallery-counter-frame .ev-image-gallery-counter img {
      display: inline-block;
      margin-right: 14px;
      width: 15px;
      height: 15px;
      vertical-align: top;
      margin-top: 1px;
      padding: 0; }

.ev-carousel-arrow-container {
  display: none;
  position: absolute;
  width: 60px;
  height: 100%; }

.ev-carousel-arrow-left {
  left: 0px;
  background: url(../img/image-gallery-prev.png) 20px 50% no-repeat; }

.ev-carousel-arrow-right {
  right: 0px;
  background: url(../img/image-gallery-next.png) 0px 50% no-repeat; }

@media only screen and (max-width: 767px) {
  .ev-carousel-frame {
    height: 227.5px;
    margin: 25px 0px; }

  .ev-image-gallery-image, .single .post .ev-image-gallery-image {
    padding: 0px;
    height: 227.5px;
    width: auto; } }
/* =============================================
 * Image Gallery Lightbox
 * ============================================= */
/* Preload images */
body:after {
  content: url(../images/close.png) url(../images/loading.gif) url(../img/image-gallery-prev.png) url(../img/image-gallery-next.png);
  display: none; }

body.lb-disable-scrolling {
  overflow: hidden; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: fixed;
  width: 900px;
  height: 670px;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  background-color: white; }

@media only screen and (max-width: 767px) {
  .lightbox {
    width: 100%;
    height: 100%; } }
.lb-imageContainer {
  position: absolute;
  vertical-align: top;
  background-color: #ffffff;
  top: 0; }

@media only screen and (max-width: 767px) {
  .lb-imageContainer {
    background-color: #000000; } }
.lightbox .lb-image {
  max-width: 870px;
  max-height: 653px;
  position: absolute;
  z-index: 2; }

@media only screen and (max-width: 767px) {
  .lightbox .lb-image {
    max-width: 100%;
    max-height: 100%; } }
.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 100%;
  height: 653px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden;
  box-sizing: border-box; }

@media only screen and (max-width: 767px) {
  .lb-outerContainer {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0;
    top: 0;
    position: fixed;
    background-color: black;
    width: 100%;
    height: 100%;
    z-index: -1; } }
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  overflow: hidden;
  padding: 0;
  position: relative;
  /* default width and height - resizing happens automatically in javascript on resize */
  width: 870px;
  height: 570px; }

@media only screen and (max-width: 767px) {
  .lb-container {
    padding: 0;
    /* default width and height - resizing happens automatically in javascript on resize */
    width: 100%;
    height: 100%; } }
.lb-loader {
  height: 100%;
  width: 100%;
  background: url(../images/loading.gif) 50% 50% no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-prev-arrow {
  position: absolute;
  left: 25px;
  width: 40px;
  height: 100%;
  background: url(../img/image-gallery-prev.png) 0 50% no-repeat; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-next-arrow {
  position: absolute;
  right: 25px;
  width: 40px;
  height: 100%;
  background: url(../img/image-gallery-next.png) right 50% no-repeat; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  background-color: white;
  margin: 0 auto;
  *zoom: 1;
  width: 100%; }

.dataContainerTopBackground {
  display: none; }

@media only screen and (max-width: 767px) {
  .lb-dataContainer {
    background: none; }

  .lb-dataContainerTopBackground {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 44px;
    background-color: black;
    opacity: 0.5;
    filter: alpha(opacity=50);
    /* For IE8 and earlier */ } }
.lb-dataContainerTop {
  padding: 14px 0px 15px 0px; }

@media only screen and (max-width: 767px) {
  .lb-dataContainerTop {
    position: fixed; } }
.lb-dataContainerBottom {
  padding: 10px 0px 20px 0px; }

@media only screen and (max-width: 767px) {
  .lb-dataContainerBottom {
    position: fixed;
    bottom: 0; } }
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 15px 0 15px;
  color: #ccc; }

.lb-data .lb-details {
  line-height: 1em;
  font: 19px Verdana, Arial, Helvetica, sans-serif;
  color: #444; }

@media only screen and (max-width: 767px) {
  .lb-data .lb-details {
    display: none; } }
.lb-detailsMobile {
  display: none; }

@media only screen and (max-width: 767px) {
  .lb-detailsMobile {
    display: block; } }
.lb-detailsTop {
  padding-top: 2px; }

.lb-detailsSmall {
  font: 13px Verdana, Arial, Helvetica, sans-serif;
  color: #444; }

@media only screen and (max-width: 767px) {
  .lb-detailsSmall {
    display: none; } }
.lb-detailsLeft {
  float: left;
  width: 90%;
  text-align: left; }

.lb-detailsRight {
  float: right;
  text-align: right; }

.lb-data .lb-caption {
  font-size: 13px;
  line-height: 1em; }

.lb-data .lb-number {
  display: block;
  clear: left;
  font: 19px Verdana, Arial, Helvetica, sans-serif;
  color: #444;
  margin-top: -4px;
  margin-bottom: -3px; }

.lb-data .lb-numberMobile {
  font: 14px Verdana, Arial, Helvetica, sans-serif;
  color: #fff;
  margin-top: -2px; }

.lb-closeContainer {
  display: block;
  float: right;
  width: 25px;
  height: 25px;
  text-align: right;
  outline: none;
  cursor: pointer; }

.lb-close {
  display: block;
  width: 25px;
  height: 25px; }

.lb-closeMobile {
  top: 14px;
  left: 14px;
  width: 14px;
  height: 14px;
  display: none;
  position: absolute; }

@media only screen and (max-width: 767px) {
  .lb-data .lb-close {
    display: none; }

  .lb-closeContainer {
    position: fixed;
    width: 44px;
    height: 44px;
    top: 0px;
    right: 0px; }

  .lb-closeMobile {
    display: block; } }
/* full width page */
@media (min-width: 992px) {
  .twelve > #content .ev-property-carousel {
    width: 804px; }
    .twelve > #content .ev-property-carousel .ev-carousel-element {
      width: 50%; } }
@media (min-width: 768px) and (max-width: 991px) {
  .twelve > #content .ev-property-carousel {
    width: 500px; } }

/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

Put Variable and overall Style-Definitions here!

*******************************************************************/
/*********************
COLORS
*********************/
/*********************
FONTS
*********************/
/**
 * Dedicated vertical spacings
 * ===========================
 * Bootstrap relies on components that ensure that vertical spacings are set.
 * As we have several scenarios where we can neither use bootstrap components nor
 * use native mark up such as paragraphs, dedicated classes/mixins are invented.
 *
 * Note that the variables used are introduced and filled by bootstrap.
 * They are reused to ensure that the vertical rhythm is consistent through out
 * bootstrap and our codes.
 *
 * Note that space is created from top towards bottom. This provides opportunities
 * to use the classes/mixins in components that might be top-aligned in some scenarios.
 */
/*********************
BORDER RADIUS
*********************/
/*********************
TRANISTION
*********************/
/*********************
BOX SHADOWS
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* Verwendung z.B.: @include css-gradient(#dfdfdf,#f1f1f1); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
TRANSLATE
*********************/
/* @include translate-x(translate-x); */
/* @include translate-x(translate-x); */
/*********************
MIRROR AND TRANSLATE
*********************/
/* @include mirror-and-translate(translate-x); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
SIZES
**********************/
/* copy from ev-bootstrap-config.json
    "@screen-xs": "480px", // phone
    "@screen-sm": "768px", // tablet
    "@screen-md": "992px", // desktop
    "@screen-lg": "1260px", // large-desktop
 */
/* greater than tablet */
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

Put Variable and overall Style-Definitions here!

*******************************************************************/
/*********************
COLORS
*********************/
/*********************
FONTS
*********************/
/**
 * Dedicated vertical spacings
 * ===========================
 * Bootstrap relies on components that ensure that vertical spacings are set.
 * As we have several scenarios where we can neither use bootstrap components nor
 * use native mark up such as paragraphs, dedicated classes/mixins are invented.
 *
 * Note that the variables used are introduced and filled by bootstrap.
 * They are reused to ensure that the vertical rhythm is consistent through out
 * bootstrap and our codes.
 *
 * Note that space is created from top towards bottom. This provides opportunities
 * to use the classes/mixins in components that might be top-aligned in some scenarios.
 */
/*********************
BORDER RADIUS
*********************/
/*********************
TRANISTION
*********************/
/*********************
BOX SHADOWS
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* Verwendung z.B.: @include css-gradient(#dfdfdf,#f1f1f1); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
TRANSLATE
*********************/
/* @include translate-x(translate-x); */
/* @include translate-x(translate-x); */
/*********************
MIRROR AND TRANSLATE
*********************/
/* @include mirror-and-translate(translate-x); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
SIZES
**********************/
/* copy from ev-bootstrap-config.json
    "@screen-xs": "480px", // phone
    "@screen-sm": "768px", // tablet
    "@screen-md": "992px", // desktop
    "@screen-lg": "1260px", // large-desktop
 */
/* greater than tablet */
/*?*/
/*?*/
/* used for narrow tablet containers */
h3.ev-property-carousel-title {
  font-size: 34px;
  font-weight: 300;
  line-height: 42px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444444;
  text-align: center;
  margin-bottom: 46px;
  margin-top: 0; }
  @media (max-width: 767px) {
    h3.ev-property-carousel-title {
      margin-bottom: 40px; } }

.ev-property-container, .ev-only-deleted-objects-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid #c9c9c9;
  color: #666666;
  white-space: normal;
  text-align: left;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-weight: 100;
  line-height: 1.42857143;
  /* Deleted Objects Teaser of Property Carousel with mode "Last visisted" */ }
  @media (min-width: 768px) {
    .ev-property-container, .ev-only-deleted-objects-container {
      width: 360px; } }
  @media (max-width: 767px) {
    .ev-property-container, .ev-only-deleted-objects-container {
      width: 90%; } }
  .ev-property-container:hover, .ev-property-container:focus, .ev-only-deleted-objects-container:hover, .ev-only-deleted-objects-container:focus {
    text-decoration: none;
    color: #444444; }
  .ev-property-container.ev-banner-widget, .ev-only-deleted-objects-container.ev-banner-widget {
    border: 1px solid #444444; }
  .ev-property-container .ev-teaser-header, .ev-only-deleted-objects-container .ev-teaser-header {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.7);
    background: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.7));
    background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.7));
    background: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.7));
    background: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.7));
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#B2000000');
    /*For IE7-8-9*/ }
  .ev-property-container .ev-teaser-icons-container, .ev-only-deleted-objects-container .ev-teaser-icons-container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 17px;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    height: 20px;
    z-index: 12; }
    .ev-property-container .ev-teaser-icons-container .ev-teaser-icon, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon {
      width: 20px;
      height: 20px;
      display: inline-block;
      cursor: pointer; }
      .ev-property-container .ev-teaser-icons-container .ev-teaser-icon.ev-virtual-tour-video-icon, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon.ev-virtual-tour-video-icon {
        background: url("https://www.engelvoelkers.com/hp/img/Icon_Video.svg") no-repeat; }
      .ev-property-container .ev-teaser-icons-container .ev-teaser-icon.ev-virtual-tour-vr-icon, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon.ev-virtual-tour-vr-icon {
        width: 38px;
        background: url("https://www.engelvoelkers.com/hp/img/Icon_VirtualReality.svg") no-repeat; }
      .ev-property-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon {
        float: right; }
        .ev-property-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon.inactive, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon.inactive {
          background: url("https://www.engelvoelkers.com/hp/img/Icon_Star_inactive.svg") no-repeat; }
        .ev-property-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon.active, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon.active {
          background: url("https://www.engelvoelkers.com/hp/img/Icon_Star_active.svg") no-repeat; }
        .ev-property-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon.initial-hide, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-teaser-icon.ev-watchlist-icon.initial-hide {
          display: none; }
    .ev-property-container .ev-teaser-icons-container .ev-watchlist-teaser-icon-container, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-watchlist-teaser-icon-container {
      width: 20px;
      height: 20px;
      display: inline-block;
      position: relative;
      float: right; }
      .ev-property-container .ev-teaser-icons-container .ev-watchlist-teaser-icon-container .ev-teaser-icon.ev-watchlist-icon, .ev-only-deleted-objects-container .ev-teaser-icons-container .ev-watchlist-teaser-icon-container .ev-teaser-icon.ev-watchlist-icon {
        position: absolute;
        left: 0; }
  .ev-property-container .ev-teaser-image, .ev-only-deleted-objects-container .ev-teaser-image {
    position: relative;
    width: 100%;
    min-height: 246px;
    overflow: hidden;
    /* workaround for small phone screens to omit white whitespace between image and headline*/ }
    .ev-property-container .ev-teaser-image img, .ev-only-deleted-objects-container .ev-teaser-image img {
      width: 100%;
      position: absolute;
      top: -100%;
      left: 0;
      right: 0;
      bottom: -100%;
      margin: auto;
      height: auto;
      padding: 0; }
    .ev-property-container .ev-teaser-image.ev-dummy, .ev-only-deleted-objects-container .ev-teaser-image.ev-dummy {
      border-bottom: 1px solid #c9c9c9; }
      .ev-property-container .ev-teaser-image.ev-dummy img, .ev-only-deleted-objects-container .ev-teaser-image.ev-dummy img {
        width: 32px;
        height: 32px; }
    @media (min-width: 768px) {
      .ev-property-container .ev-teaser-image, .ev-only-deleted-objects-container .ev-teaser-image {
        height: 246px;
        max-height: 246px; } }
    @media (max-width: 400px) {
      .ev-property-container .ev-teaser-image, .ev-only-deleted-objects-container .ev-teaser-image {
        min-height: 63vw; } }
  .ev-property-container .ev-watchlist-hint, .ev-only-deleted-objects-container .ev-watchlist-hint {
    display: none;
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px; }
    .ev-property-container .ev-watchlist-hint .ev-watchlist-hint-content, .ev-only-deleted-objects-container .ev-watchlist-hint .ev-watchlist-hint-content {
      position: relative;
      width: 190px;
      height: 90px;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%); }
      .ev-property-container .ev-watchlist-hint .ev-watchlist-hint-content .ev-watchlist-hint-icon-add, .ev-only-deleted-objects-container .ev-watchlist-hint .ev-watchlist-hint-content .ev-watchlist-hint-icon-add {
        position: absolute;
        width: 50px;
        height: 50px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: url("https://www.engelvoelkers.com/hp/img/Icon_Star_active.svg") center no-repeat; }
      .ev-property-container .ev-watchlist-hint .ev-watchlist-hint-content .ev-watchlist-hint-icon-remove, .ev-only-deleted-objects-container .ev-watchlist-hint .ev-watchlist-hint-content .ev-watchlist-hint-icon-remove {
        position: absolute;
        width: 50px;
        height: 50px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: url("https://www.engelvoelkers.com/hp/img/Icon_Star_inactive.svg") center no-repeat; }
      .ev-property-container .ev-watchlist-hint .ev-watchlist-hint-content .ev-watchlist-hint-text, .ev-only-deleted-objects-container .ev-watchlist-hint .ev-watchlist-hint-content .ev-watchlist-hint-text {
        bottom: 0;
        position: absolute;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 16px; }
  .ev-property-container .ev-new-profile, .ev-only-deleted-objects-container .ev-new-profile {
    position: absolute;
    z-index: 10;
    background: url(../img/rote_ecke.png) left no-repeat;
    width: 100px;
    height: 100px;
    top: 0; }
    .ev-property-container .ev-new-profile div, .ev-only-deleted-objects-container .ev-new-profile div {
      -moz-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      margin-top: 31px;
      margin-right: 18px;
      font-weight: bold;
      color: #fff;
      font-size: 13px;
      text-align: center; }
  .ev-property-container .ev-teaser-content-wrapper, .ev-only-deleted-objects-container .ev-teaser-content-wrapper {
    padding: 15px 15px 8px 15px; }
  .ev-property-container .ev-teaser-content, .ev-only-deleted-objects-container .ev-teaser-content {
    position: relative; }
    .ev-property-container .ev-teaser-content .ev-teaser-title, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-title {
      height: 2.7em;
      margin-bottom: 7px;
      font-size: 16px;
      overflow: hidden; }
      .ev-property-container .ev-teaser-content .ev-teaser-title.ev-dummy, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-title.ev-dummy {
        width: 92.12%;
        height: 18px;
        background-color: #d9d9d9;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-bottom: 30px; }
    .ev-property-container .ev-teaser-content .ev-teaser-subtitle, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-subtitle {
      height: 1.3em;
      margin-bottom: 17px;
      font-size: 11px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
      .ev-property-container .ev-teaser-content .ev-teaser-subtitle.ev-dummy, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-subtitle.ev-dummy {
        width: 63.63%;
        height: 14px;
        background-color: #eaeaea;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-bottom: 15px; }
    .ev-property-container .ev-teaser-content .ev-teaser-attributes, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes {
      margin-top: 10px;
      margin-bottom: 3px;
      width: 100%;
      min-height: 32px;
      overflow: hidden; }
      .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute {
        display: inline-block;
        font-size: 11px;
        margin-right: 14px;
        margin-bottom: 10px; }
        .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy {
          position: absolute;
          width: 26.67%;
          height: 14px;
          background-color: #eaeaea;
          border: 1px solid #fff;
          border-radius: 5px;
          margin-right: 0; }
          .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy.ev-left, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy.ev-left {
            left: 0; }
          .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy.ev-right, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy.ev-right {
            right: 0; }
          .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy.ev-center, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute.ev-dummy.ev-center {
            left: 0;
            right: 0;
            margin-left: auto;
            margin-right: auto; }
        .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute .ev-teaser-attribute-icon, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute .ev-teaser-attribute-icon {
          display: inline-block;
          width: 22px;
          height: 22px;
          margin-right: 7px; }
        .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute:last-child, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute:last-child {
          margin-right: 0; }
        .ev-property-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute img, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-attributes .ev-teaser-attribute img {
          padding: 0; }
    .ev-property-container .ev-teaser-content .ev-teaser-price, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price {
      width: 100%;
      font-size: 16px; }
      .ev-property-container .ev-teaser-content .ev-teaser-price .ev-label, .ev-property-container .ev-teaser-content .ev-teaser-price .ev-value, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price .ev-label, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price .ev-value {
        display: inline-block; }
        .ev-property-container .ev-teaser-content .ev-teaser-price .ev-label.ev-dummy, .ev-property-container .ev-teaser-content .ev-teaser-price .ev-value.ev-dummy, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price .ev-label.ev-dummy, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price .ev-value.ev-dummy {
          width: 26.67%;
          height: 18px;
          background-color: #d9d9d9;
          border: 1px solid #fff;
          border-radius: 5px; }
      .ev-property-container .ev-teaser-content .ev-teaser-price .ev-label, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price .ev-label {
        text-align: left; }
      .ev-property-container .ev-teaser-content .ev-teaser-price .ev-value, .ev-only-deleted-objects-container .ev-teaser-content .ev-teaser-price .ev-value {
        position: absolute;
        right: 0px;
        text-align: right; }
    .ev-property-container .ev-teaser-content .ev-utilities-text, .ev-only-deleted-objects-container .ev-teaser-content .ev-utilities-text {
      font-size: 11px;
      text-align: right;
      min-height: 15px; }
  @media (max-width: 767px) {
    .ev-property-container, .ev-only-deleted-objects-container {
      margin-bottom: 0; } }
  .ev-property-container .ev-property-container-close, .ev-only-deleted-objects-container .ev-property-container-close {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 20px;
    right: 20px;
    background: url(../img/close.png) center center/25px 25px no-repeat;
    cursor: pointer; }
  .ev-property-container .ev-img-galgen, .ev-only-deleted-objects-container .ev-img-galgen {
    display: block;
    margin: 20px auto 30px auto; }
  .ev-property-container .ev-deleted-objects-teaser-title, .ev-property-container .ev-deleted-objects-teaser-text, .ev-only-deleted-objects-container .ev-deleted-objects-teaser-title, .ev-only-deleted-objects-container .ev-deleted-objects-teaser-text {
    font-family: Helvetica, Verdana, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #444444;
    margin-left: 10px;
    margin-right: 10px; }
  .ev-property-container .ev-deleted-objects-teaser-title, .ev-only-deleted-objects-container .ev-deleted-objects-teaser-title {
    font-size: 20px;
    height: 76px; }
  .ev-property-container .ev-deleted-objects-teaser-text, .ev-only-deleted-objects-container .ev-deleted-objects-teaser-text {
    font-size: 16px;
    height: 58px; }

.ev-only-deleted-objects-container {
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  overflow: visible;
  display: block;
  border: none; }
  .ev-only-deleted-objects-container .ev-cta-button {
    margin-bottom: 0; }
  .ev-only-deleted-objects-container .ev-img-galgen {
    margin-top: 0;
    width: 183px; }

.ev-property-container .ev-img-galgen {
  width: 143px; }

/* page with widgets */
@media (min-width: 1260px) {
  .nine > #content .ev-property-carousel {
    width: 740px; }
    .nine > #content .ev-property-carousel .ev-property-container {
      width: 320px; }
    .nine > #content .ev-property-carousel .ev-carousel-nav.left {
      left: -60px; }
    .nine > #content .ev-property-carousel .ev-carousel-nav.right {
      right: -60px; }
    .nine > #content .ev-property-carousel .ev-carousel-element {
      width: 50%; }
    .nine > #content .ev-property-carousel .ev-teaser-image {
      position: relative;
      width: 100%;
      min-height: 240px;
      height: 240px;
      max-height: 240px; } }
@media (min-width: 992px) and (max-width: 1259px) {
  .nine > #content .ev-property-carousel {
    width: 400px; }
    .nine > #content .ev-property-carousel .ev-carousel-nav.left {
      left: -100px; }
    .nine > #content .ev-property-carousel .ev-carousel-nav.right {
      right: -100px; }
    .nine > #content .ev-property-carousel .ev-carousel-element {
      width: 100%; } }
@media (min-width: 768px) and (max-width: 991px) {
  .nine > #content .ev-property-carousel {
    width: 400px; }
    .nine > #content .ev-property-carousel .ev-property-container {
      width: 340px; }
    .nine > #content .ev-property-carousel .ev-carousel-nav.left {
      left: -50px; }
    .nine > #content .ev-property-carousel .ev-carousel-nav.right {
      right: -50px; }
    .nine > #content .ev-property-carousel .ev-carousel-element {
      width: 100%; } }

.ev-property-carousel {
  font-size: 0;
  margin-left: auto;
  margin-right: auto; }
  .ev-property-carousel .ev-placeholder {
    position: absolute;
    width: 100%; }
  @media (min-width: 768px) and (max-width: 991px) {
    .ev-property-carousel .ev-carousel-element {
      width: 100%; } }
  @media (max-width: 767px) {
    .ev-property-carousel .ev-carousel-element {
      width: 100%; } }
  .ev-property-carousel .ev-carousel-frame {
    cursor: default; }
  .ev-property-carousel .ev-property-container.ev-image-not-loaded .ev-teaser-image img {
    background: url(../img/loading.gif) center/32px no-repeat; }

/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

Put Variable and overall Style-Definitions here!

*******************************************************************/
/*********************
COLORS
*********************/
/*********************
FONTS
*********************/
/**
 * Dedicated vertical spacings
 * ===========================
 * Bootstrap relies on components that ensure that vertical spacings are set.
 * As we have several scenarios where we can neither use bootstrap components nor
 * use native mark up such as paragraphs, dedicated classes/mixins are invented.
 *
 * Note that the variables used are introduced and filled by bootstrap.
 * They are reused to ensure that the vertical rhythm is consistent through out
 * bootstrap and our codes.
 *
 * Note that space is created from top towards bottom. This provides opportunities
 * to use the classes/mixins in components that might be top-aligned in some scenarios.
 */
/*********************
BORDER RADIUS
*********************/
/*********************
TRANISTION
*********************/
/*********************
BOX SHADOWS
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* Verwendung z.B.: @include css-gradient(#dfdfdf,#f1f1f1); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
TRANSLATE
*********************/
/* @include translate-x(translate-x); */
/* @include translate-x(translate-x); */
/*********************
MIRROR AND TRANSLATE
*********************/
/* @include mirror-and-translate(translate-x); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
SIZES
**********************/
/* copy from ev-bootstrap-config.json
    "@screen-xs": "480px", // phone
    "@screen-sm": "768px", // tablet
    "@screen-md": "992px", // desktop
    "@screen-lg": "1260px", // large-desktop
 */
/* greater than tablet */
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

Put Variable and overall Style-Definitions here!

*******************************************************************/
/*********************
COLORS
*********************/
/*********************
FONTS
*********************/
/**
 * Dedicated vertical spacings
 * ===========================
 * Bootstrap relies on components that ensure that vertical spacings are set.
 * As we have several scenarios where we can neither use bootstrap components nor
 * use native mark up such as paragraphs, dedicated classes/mixins are invented.
 *
 * Note that the variables used are introduced and filled by bootstrap.
 * They are reused to ensure that the vertical rhythm is consistent through out
 * bootstrap and our codes.
 *
 * Note that space is created from top towards bottom. This provides opportunities
 * to use the classes/mixins in components that might be top-aligned in some scenarios.
 */
/*********************
BORDER RADIUS
*********************/
/*********************
TRANISTION
*********************/
/*********************
BOX SHADOWS
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* Verwendung z.B.: @include css-gradient(#dfdfdf,#f1f1f1); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
TRANSLATE
*********************/
/* @include translate-x(translate-x); */
/* @include translate-x(translate-x); */
/*********************
MIRROR AND TRANSLATE
*********************/
/* @include mirror-and-translate(translate-x); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
SIZES
**********************/
/* copy from ev-bootstrap-config.json
    "@screen-xs": "480px", // phone
    "@screen-sm": "768px", // tablet
    "@screen-md": "992px", // desktop
    "@screen-lg": "1260px", // large-desktop
 */
/* greater than tablet */
.ev-blogpost-carousel-title {
  font-size: 34px;
  font-weight: 300;
  line-height: 42px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444444;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 0; }
  @media (max-width: 767px) {
    .ev-blogpost-carousel-title {
      margin-bottom: 40px; } }

.ev-blogpost-carousel-description {
  margin-bottom: 25px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  max-width: 550px; }
  @media (max-width: 767px) {
    .ev-blogpost-carousel-description {
      margin-bottom: 40px; } }
  .ev-blogpost-carousel-description p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.44;
    color: #666666;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0; }

.ev-blogpost-carousel-wrapper {
  clear: both;
  display: inline-block;
  width: 100%;
  box-sizing: border-box; }
  .ev-blogpost-carousel-wrapper .ev-carousel-frame {
    height: auto; }
  @media (max-width: 767px) {
    .ev-blogpost-carousel-wrapper {
      display: block; }
      .ev-blogpost-carousel-wrapper .ev-carousel-frame {
        margin: 0; }
      .ev-blogpost-carousel-wrapper .ev-carousel-outer-frame {
        margin: 0; } }
  @media (min-width: 768px) {
    .ev-blogpost-carousel-wrapper {
      margin-bottom: -20px; }
      .ev-blogpost-carousel-wrapper .ev-blogpost-container-shadow {
        margin-bottom: 20px; } }
  .ev-blogpost-carousel-wrapper .ev-blogpost-container-shadow {
    float: left; }
  .ev-blogpost-carousel-wrapper .ev-carousel-center-desktop {
    text-align: center; }
    @media (min-width: 992px) {
      .ev-blogpost-carousel-wrapper .ev-carousel-center-desktop .ev-blogpost-container-shadow {
        float: none;
        display: inline-block; } }
  .ev-blogpost-carousel-wrapper .ev-carousel-center-tablet {
    text-align: center; }
    @media (min-width: 768px) and (max-width: 991px) {
      .ev-blogpost-carousel-wrapper .ev-carousel-center-tablet .ev-blogpost-container-shadow {
        float: none;
        display: inline-block; } }

.ev-carousel-more-button.ev-freecontent-item {
  margin-top: 21px; }

#content .ev-blogpost-carousel {
  width: 86%; }
  #content .ev-blogpost-carousel .ev-carousel-element {
    box-sizing: border-box; }
  #content .ev-blogpost-carousel .ev-carousel-nav.left {
    left: -7%; }
  #content .ev-blogpost-carousel .ev-carousel-nav.right {
    right: -7%; }
  #content .ev-blogpost-carousel .ev-blogpost-container-shadow {
    width: 100%; }
  @media (min-width: 1260px) {
    #content .ev-blogpost-carousel .ev-carousel-element {
      width: 33.33333%; } }
  @media (min-width: 992px) and (max-width: 1259px) {
    #content .ev-blogpost-carousel .ev-carousel-element {
      width: 33.33333%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #content .ev-blogpost-carousel .ev-carousel-element {
      width: 50%; } }
  @media (max-width: 767px) {
    #content .ev-blogpost-carousel {
      width: 100%; }
      #content .ev-blogpost-carousel .ev-carousel-element {
        width: 100%;
        padding: 0; } }
  #content .ev-blogpost-carousel .ev-carousel-mobile-right-arrow {
    position: absolute;
    bottom: 141px;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none; }
    #content .ev-blogpost-carousel .ev-carousel-mobile-right-arrow .ev-carousel-arrow-right-internal {
      z-index: 1;
      width: 100%;
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      background-position: 97%; }

.ev-blogpost-carousel {
  font-size: 0;
  margin-left: auto;
  margin-right: auto; }

.ev-blogpost-container-shadow {
  padding: 15px 15px 12px;
  transition: box-shadow 0.2s ease-in-out;
  box-sizing: border-box;
  width: 33.33333%; }
  @media (min-width: 768px) and (max-width: 991px) {
    .ev-blogpost-container-shadow {
      width: 50%; } }
  @media (max-width: 767px) {
    .ev-blogpost-container-shadow {
      width: 100%;
      padding: 0; } }
  .ev-blogpost-container-shadow:hover, .ev-blogpost-container-shadow:focus {
    text-decoration: none;
    color: #444444; }
    @media (min-width: 768px) {
      .ev-blogpost-container-shadow:hover, .ev-blogpost-container-shadow:focus {
        box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.14); } }

.ev-blogpost-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #666666;
  white-space: normal;
  text-align: center;
  line-height: 1.42857143;
  width: 100%; }
  @media (max-width: 767px) {
    .ev-blogpost-container {
      width: 100%;
      margin: 0; } }
  .ev-blogpost-container:hover, .ev-blogpost-container:focus {
    text-decoration: none;
    color: #444444; }
  .ev-blogpost-container .ev-blogpost-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 75%; }
    .ev-blogpost-container .ev-blogpost-image img {
      width: 100%;
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      padding: 0; }
  .ev-blogpost-container .ev-blogpost-content-wrapper {
    padding: 24px 2.5px 0 2.5px; }
  .ev-blogpost-container .ev-blogpost-content {
    position: relative;
    height: 117px; }
    .ev-blogpost-container .ev-blogpost-content .ev-blogpost-title {
      height: auto;
      margin-bottom: 14px;
      color: #444444;
      overflow: hidden;
      font-size: 24px;
      line-height: 28px;
      font-weight: 300; }
    .ev-blogpost-container .ev-blogpost-content .ev-blogpost-subcategory {
      color: #c9c9c9;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      text-transform: uppercase;
      font-size: 16px;
      line-height: 19px;
      margin-bottom: 0;
      margin-left: 7px;
      margin-right: 7px; }

.ev-blogpost-seo {
  margin: 0 auto;
  padding: 0 40px 15px;
  font-weight: 300; }
  @media (max-width: 767px) {
    .ev-blogpost-seo {
      padding: 0px 5px 5px; } }

.ev-blog-subcategory-page {
  margin-bottom: 80px; }

.ev-exposee-detail #breadcrumbs {
  font-weight: bold; }
.ev-exposee-detail .ev-blogpost-page {
  margin: 25px auto -35px;
  max-width: 1000px; }
  @media (max-width: 767px) {
    .ev-exposee-detail .ev-blogpost-page {
      margin: 40px -8px 0; } }
  .ev-exposee-detail .ev-blogpost-page:after {
    clear: both;
    content: " ";
    display: table; }
  .ev-exposee-detail .ev-blogpost-page:before {
    content: " ";
    display: table; }
  .ev-exposee-detail .ev-blogpost-page .ev-blogpost-page-container {
    padding: 0;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .ev-exposee-detail .ev-blogpost-page .ev-blogpost-page-container {
        margin-bottom: 50px; }
        .ev-exposee-detail .ev-blogpost-page .ev-blogpost-page-container:last-of-type {
          margin-bottom: 0; } }
  .ev-exposee-detail .ev-blogpost-page .ev-blogpost-container-shadow {
    width: auto; }

.ev-exposee-detail-spacer {
  margin: 80px auto; }

.ev-pager {
  margin-bottom: 0;
  margin-top: 40px; }

.ev-exposee-text {
  max-width: 670px;
  font-weight: 300; }
  @media (max-width: 767px) {
    .ev-exposee-text {
      padding-left: 5px;
      padding-right: 5px; } }

.ev-dropdown {
  color: #444444;
  display: inline-block;
  position: relative; }
  .ev-dropdown .ev-dropdown-head {
    position: relative;
    border: none;
    border-style: none;
    font-size: 16px;
    line-height: 36px;
    height: 36px;
    padding: 0 10px;
    cursor: pointer; }
    .ev-dropdown .ev-dropdown-head.with-arrow {
      padding-right: 36px; }
    .ev-dropdown .ev-dropdown-head .ev-arrow-down {
      right: 10px;
      position: absolute;
      width: 17px;
      height: 100%;
      top: 0;
      background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down_grey.svg) center/17px 10px no-repeat; }
      .ev-dropdown .ev-dropdown-head .ev-arrow-down.white {
        background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down_white.svg); }
    .ev-dropdown .ev-dropdown-head.ev-open .ev-arrow-down {
      background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up_red.svg); }
      .ev-dropdown .ev-dropdown-head.ev-open .ev-arrow-down.white {
        background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up_white.svg); }
  .ev-dropdown .ev-dropdown-options {
    position: absolute;
    top: 35px;
    left: -6px;
    z-index: 1000;
    display: none;
    border: none;
    overflow-y: hidden;
    padding: 0;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2); }
    .ev-dropdown .ev-dropdown-options.no-min-width {
      min-width: 100%; }
      .ev-dropdown .ev-dropdown-options.no-min-width .ev-dropdown-option .ev-dropdown-value {
        min-width: unset;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 40px;
        padding-top: 0;
        padding-bottom: 0; }
    .ev-dropdown .ev-dropdown-options.align-right {
      left: unset;
      right: -6px; }
      .ev-dropdown .ev-dropdown-options.align-right .ev-dropdown-option .ev-dropdown-value {
        text-align: right; }
    .ev-dropdown .ev-dropdown-options .ev-dropdown-close {
      position: absolute;
      top: 0;
      right: 0;
      width: 42px;
      height: 51px;
      background: #fff url("../img/close.png") 13px 13px/18px no-repeat;
      cursor: pointer;
      z-index: 1001; }
    .ev-dropdown .ev-dropdown-options .ev-dropdown-option {
      background-color: #fff;
      overflow: hidden;
      line-height: 0; }
      .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 16px;
        display: inline-block;
        line-height: 40px;
        max-width: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #444444;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
        text-decoration: none; }
        .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value:hover {
          background-color: #f0f0f0; }
        .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value .ev-dropdown-secondary-text {
          color: #c9c9c9; }
      .ev-dropdown .ev-dropdown-options .ev-dropdown-option.ev-selected .ev-dropdown-value {
        background-color: #fff;
        color: #f00; }
        .ev-dropdown .ev-dropdown-options .ev-dropdown-option.ev-selected .ev-dropdown-value:hover {
          background-color: #f0f0f0; }
    .ev-dropdown .ev-dropdown-options .ev-dropdown-options-scrollable-container {
      padding-left: 0;
      padding-right: 0;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 228px;
      font-size: 0; }

.ev-dropdown-scroll {
  color: #000;
  width: 100%;
  height: 28px;
  position: absolute;
  z-index: 1000; }
  .ev-dropdown-scroll.down {
    display: none;
    bottom: 0;
    background: #fff url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down_grey.svg) center/15px 7.5px no-repeat; }
  .ev-dropdown-scroll.up {
    display: none;
    background: #fff url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up_grey.svg) center/15px 7.5px no-repeat; }

.ev-advanced-search-dialog .ev-dialog-title-row-mobile .ev-button-cancel {
  z-index: 2; }
.ev-advanced-search-dialog .ev-dialog-title-row-mobile .ev-filter-options-mobile-title {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  line-height: 56px;
  font-size: 16px; }
.ev-advanced-search-dialog .ev-mobile-dropdown-dialog-options .ev-dropdown-option {
  line-height: 50px;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer; }
  .ev-advanced-search-dialog .ev-mobile-dropdown-dialog-options .ev-dropdown-option .ev-dropdown-value {
    margin-left: 57px;
    border-bottom: 1px solid #c9c9c9; }
    .ev-advanced-search-dialog .ev-mobile-dropdown-dialog-options .ev-dropdown-option .ev-dropdown-value .ev-dropdown-secondary-text {
      color: #c9c9c9; }
  .ev-advanced-search-dialog .ev-mobile-dropdown-dialog-options .ev-dropdown-option.ev-selected {
    background: url("https://www.engelvoelkers.com/hp/img/Icon_Checkmark_red.svg") 13px 18px/24px no-repeat; }

.ev-accordeon {
  border-bottom: solid 1px #c9c9c9;
  overflow-y: hidden; }
  .ev-accordeon .ev-accordeon-head {
    position: relative;
    display: block;
    height: 50px;
    padding-left: 26px;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
    color: #000;
    background-color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    z-index: 1; }
    .ev-accordeon .ev-accordeon-head .ev-accordeon-arrow {
      right: 26px;
      position: absolute;
      width: 15px;
      height: 50px;
      top: 0;
      background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down_grey.svg) 0 center/15px 7.5px no-repeat; }
    .ev-accordeon .ev-accordeon-head:hover {
      color: #f00; }
    .ev-accordeon .ev-accordeon-head.ev-open {
      color: #f00; }
      .ev-accordeon .ev-accordeon-head.ev-open .ev-accordeon-arrow {
        background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up_red.svg); }
  .ev-accordeon .ev-accordeon-options, .ev-accordeon .ev-accordeon-content {
    display: none; }
    .ev-accordeon .ev-accordeon-options .ev-accordeon-option, .ev-accordeon .ev-accordeon-content .ev-accordeon-option {
      background-color: #fff;
      line-height: 0; }
      .ev-accordeon .ev-accordeon-options .ev-accordeon-option .ev-accordeon-value, .ev-accordeon .ev-accordeon-content .ev-accordeon-option .ev-accordeon-value {
        display: block;
        background-color: #fff;
        line-height: 50px;
        font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
        font-size: 14px;
        color: #444444;
        padding: 0 26px 0 46px;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden; }
        .ev-accordeon .ev-accordeon-options .ev-accordeon-option .ev-accordeon-value:hover, .ev-accordeon .ev-accordeon-content .ev-accordeon-option .ev-accordeon-value:hover {
          background-color: #f0f0f0; }
        .ev-accordeon .ev-accordeon-options .ev-accordeon-option .ev-accordeon-value .ev-accordeon-secondary-text, .ev-accordeon .ev-accordeon-content .ev-accordeon-option .ev-accordeon-value .ev-accordeon-secondary-text {
          color: #c9c9c9; }
  .ev-accordeon.ev-open .ev-accordeon-options, .ev-accordeon.ev-open .ev-accordeon-content {
    display: block; }
  .ev-accordeon.ev-light .ev-accordeon-head {
    font-weight: normal;
    color: #c9c9c9;
    text-transform: none; }
    .ev-accordeon.ev-light .ev-accordeon-head:hover {
      color: #000; }
    .ev-accordeon.ev-light .ev-accordeon-head.ev-open {
      color: #000; }
      .ev-accordeon.ev-light .ev-accordeon-head.ev-open .ev-accordeon-arrow {
        background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up_grey.svg); }
  .ev-accordeon.ev-light .ev-accordeon-options .ev-accordeon-option .ev-accordeon-value {
    color: #c9c9c9; }
    .ev-accordeon.ev-light .ev-accordeon-options .ev-accordeon-option .ev-accordeon-value:hover {
      background-color: #fff;
      color: #000; }

.ev-advanced-search-dialog {
  z-index: 10000;
  /* careful: this needs to be larger than 9999 to be in front of the header on mobile, but locationSuggest has 10030 and needs to be in front of dialog */
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 750px;
  height: 710px;
  max-height: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 20px;
  text-align: left;
  font-family: Helvetica,Verdana,Arial,sans-serif;
  line-height: 1.42857143;
  font-weight: 100;
  color: #444;
  /* to be used in combination with hide-phone from _helper.scss */
  /* to be used in combination with hide-none-phone from _helper.scss */
  /* this needs a fixed height to work properly! This is set by Javascript on open and resize */
  /* a few standard elements that should be embedded in a row-column context in dialogs */
 /*
* customizations of jquery-ui.css
*/ }
  .ev-advanced-search-dialog, .ev-advanced-search-dialog * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
  .ev-advanced-search-dialog td {
    vertical-align: middle; }
  @media (max-width: 767px) {
    .ev-advanced-search-dialog {
      width: 100%;
      height: 100%;
      right: auto;
      bottom: auto;
      padding: 0px; } }
  .ev-advanced-search-dialog .row {
    margin: 0 -25px;
    width: inherit;
    padding: inherit;
    overflow: visible;
    /* required styles from bootstrap */ }
    .ev-advanced-search-dialog .row::before {
      content: " ";
      display: table; }
    .ev-advanced-search-dialog .row::after {
      clear: both;
      content: " ";
      display: table; }
    .ev-advanced-search-dialog .row .col-xs-12 {
      width: 100%; }
    .ev-advanced-search-dialog .row .col-xs-3 {
      width: 25%; }
    .ev-advanced-search-dialog .row .col-xs-6 {
      width: 50%; }
    @media (min-width: 768px) {
      .ev-advanced-search-dialog .row .col-sm-3 {
        width: 25%; }
      .ev-advanced-search-dialog .row .col-sm-6 {
        width: 50%; }
      .ev-advanced-search-dialog .row .col-sm-12 {
        width: 100%; } }
    @media (min-width: 992px) {
      .ev-advanced-search-dialog .row .col-md-3 {
        width: 25%; }
      .ev-advanced-search-dialog .row .col-md-6 {
        width: 50%; }
      .ev-advanced-search-dialog .row .col-md-12 {
        width: 100%; } }
    @media (min-width: 1260px) {
      .ev-advanced-search-dialog .row .col-lg-3 {
        width: 25%; }
      .ev-advanced-search-dialog .row .col-lg-6 {
        width: 50%; }
      .ev-advanced-search-dialog .row .col-lg-12 {
        width: 100%; } }
    .ev-advanced-search-dialog .row .col-xs-1, .ev-advanced-search-dialog .row .col-xs-2, .ev-advanced-search-dialog .row .col-xs-3, .ev-advanced-search-dialog .row .col-xs-4, .ev-advanced-search-dialog .row .col-xs-5, .ev-advanced-search-dialog .row .col-xs-6, .ev-advanced-search-dialog .row .col-xs-7, .ev-advanced-search-dialog .row .col-xs-8, .ev-advanced-search-dialog .row .col-xs-9, .ev-advanced-search-dialog .row .col-xs-10, .ev-advanced-search-dialog .row .col-xs-11, .ev-advanced-search-dialog .row .col-xs-12,
    .ev-advanced-search-dialog .row .col-sm-1, .ev-advanced-search-dialog .row .col-sm-2, .ev-advanced-search-dialog .row .col-sm-3, .ev-advanced-search-dialog .row .col-sm-4, .ev-advanced-search-dialog .row .col-sm-5, .ev-advanced-search-dialog .row .col-sm-6, .ev-advanced-search-dialog .row .col-sm-7, .ev-advanced-search-dialog .row .col-sm-8, .ev-advanced-search-dialog .row .col-sm-9, .ev-advanced-search-dialog .row .col-sm-10, .ev-advanced-search-dialog .row .col-sm-11, .ev-advanced-search-dialog .row .col-sm-12,
    .ev-advanced-search-dialog .row .col-md-1, .ev-advanced-search-dialog .row .col-md-2, .ev-advanced-search-dialog .row .col-md-3, .ev-advanced-search-dialog .row .col-md-4, .ev-advanced-search-dialog .row .col-md-5, .ev-advanced-search-dialog .row .col-md-6, .ev-advanced-search-dialog .row .col-md-7, .ev-advanced-search-dialog .row .col-md-8, .ev-advanced-search-dialog .row .col-md-9, .ev-advanced-search-dialog .row .col-md-10, .ev-advanced-search-dialog .row .col-md-11, .ev-advanced-search-dialog .row .col-md-12,
    .ev-advanced-search-dialog .row .col-lg-1, .ev-advanced-search-dialog .row .col-lg-2, .ev-advanced-search-dialog .row .col-lg-3, .ev-advanced-search-dialog .row .col-lg-4, .ev-advanced-search-dialog .row .col-lg-5, .ev-advanced-search-dialog .row .col-lg-6, .ev-advanced-search-dialog .row .col-lg-7, .ev-advanced-search-dialog .row .col-lg-8, .ev-advanced-search-dialog .row .col-lg-9, .ev-advanced-search-dialog .row .col-lg-10, .ev-advanced-search-dialog .row .col-lg-11, .ev-advanced-search-dialog .row .col-lg-12 {
      float: left; }
    .ev-advanced-search-dialog .row .col-xs-1, .ev-advanced-search-dialog .row .col-sm-1, .ev-advanced-search-dialog .row .col-md-1, .ev-advanced-search-dialog .row .col-lg-1, .ev-advanced-search-dialog .row .col-xs-2, .ev-advanced-search-dialog .row .col-sm-2, .ev-advanced-search-dialog .row .col-md-2, .ev-advanced-search-dialog .row .col-lg-2, .ev-advanced-search-dialog .row .col-xs-3, .ev-advanced-search-dialog .row .col-sm-3, .ev-advanced-search-dialog .row .col-md-3, .ev-advanced-search-dialog .row .col-lg-3, .ev-advanced-search-dialog .row .col-xs-4, .ev-advanced-search-dialog .row .col-sm-4, .ev-advanced-search-dialog .row .col-md-4, .ev-advanced-search-dialog .row .col-lg-4, .ev-advanced-search-dialog .row .col-xs-5, .ev-advanced-search-dialog .row .col-sm-5, .ev-advanced-search-dialog .row .col-md-5, .ev-advanced-search-dialog .row .col-lg-5, .ev-advanced-search-dialog .row .col-xs-6, .ev-advanced-search-dialog .row .col-sm-6, .ev-advanced-search-dialog .row .col-md-6, .ev-advanced-search-dialog .row .col-lg-6, .ev-advanced-search-dialog .row .col-xs-7, .ev-advanced-search-dialog .row .col-sm-7, .ev-advanced-search-dialog .row .col-md-7, .ev-advanced-search-dialog .row .col-lg-7, .ev-advanced-search-dialog .row .col-xs-8, .ev-advanced-search-dialog .row .col-sm-8, .ev-advanced-search-dialog .row .col-md-8, .ev-advanced-search-dialog .row .col-lg-8, .ev-advanced-search-dialog .row .col-xs-9, .ev-advanced-search-dialog .row .col-sm-9, .ev-advanced-search-dialog .row .col-md-9, .ev-advanced-search-dialog .row .col-lg-9, .ev-advanced-search-dialog .row .col-xs-10, .ev-advanced-search-dialog .row .col-sm-10, .ev-advanced-search-dialog .row .col-md-10, .ev-advanced-search-dialog .row .col-lg-10, .ev-advanced-search-dialog .row .col-xs-11, .ev-advanced-search-dialog .row .col-sm-11, .ev-advanced-search-dialog .row .col-md-11, .ev-advanced-search-dialog .row .col-lg-11, .ev-advanced-search-dialog .row .col-xs-12, .ev-advanced-search-dialog .row .col-sm-12, .ev-advanced-search-dialog .row .col-md-12, .ev-advanced-search-dialog .row .col-lg-12 {
      position: relative;
      min-height: 1px;
      padding-left: 25px;
      padding-right: 25px; }
  .ev-advanced-search-dialog .row.row-narrow {
    margin: 0 -7.5px; }
    .ev-advanced-search-dialog .row.row-narrow .col-xs-1, .ev-advanced-search-dialog .row.row-narrow .col-sm-1, .ev-advanced-search-dialog .row.row-narrow .col-md-1, .ev-advanced-search-dialog .row.row-narrow .col-lg-1,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-2, .ev-advanced-search-dialog .row.row-narrow .col-sm-2, .ev-advanced-search-dialog .row.row-narrow .col-md-2, .ev-advanced-search-dialog .row.row-narrow .col-lg-2,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-3, .ev-advanced-search-dialog .row.row-narrow .col-sm-3, .ev-advanced-search-dialog .row.row-narrow .col-md-3, .ev-advanced-search-dialog .row.row-narrow .col-lg-3,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-4, .ev-advanced-search-dialog .row.row-narrow .col-sm-4, .ev-advanced-search-dialog .row.row-narrow .col-md-4, .ev-advanced-search-dialog .row.row-narrow .col-lg-4,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-5, .ev-advanced-search-dialog .row.row-narrow .col-sm-5, .ev-advanced-search-dialog .row.row-narrow .col-md-5, .ev-advanced-search-dialog .row.row-narrow .col-lg-5,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-6, .ev-advanced-search-dialog .row.row-narrow .col-sm-6, .ev-advanced-search-dialog .row.row-narrow .col-md-6, .ev-advanced-search-dialog .row.row-narrow .col-lg-6,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-7, .ev-advanced-search-dialog .row.row-narrow .col-sm-7, .ev-advanced-search-dialog .row.row-narrow .col-md-7, .ev-advanced-search-dialog .row.row-narrow .col-lg-7,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-8, .ev-advanced-search-dialog .row.row-narrow .col-sm-8, .ev-advanced-search-dialog .row.row-narrow .col-md-8, .ev-advanced-search-dialog .row.row-narrow .col-lg-8,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-9, .ev-advanced-search-dialog .row.row-narrow .col-sm-9, .ev-advanced-search-dialog .row.row-narrow .col-md-9, .ev-advanced-search-dialog .row.row-narrow .col-lg-9,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-10, .ev-advanced-search-dialog .row.row-narrow .col-sm-10, .ev-advanced-search-dialog .row.row-narrow .col-md-10, .ev-advanced-search-dialog .row.row-narrow .col-lg-10,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-11, .ev-advanced-search-dialog .row.row-narrow .col-sm-11, .ev-advanced-search-dialog .row.row-narrow .col-md-11, .ev-advanced-search-dialog .row.row-narrow .col-lg-11,
    .ev-advanced-search-dialog .row.row-narrow .col-xs-12, .ev-advanced-search-dialog .row.row-narrow .col-sm-12, .ev-advanced-search-dialog .row.row-narrow .col-md-12, .ev-advanced-search-dialog .row.row-narrow .col-lg-12 {
      padding-left: 7.5px;
      padding-right: 7.5px;
      margin-bottom: 15px; }
      @media (max-width: 767px) {
        .ev-advanced-search-dialog .row.row-narrow .col-xs-1, .ev-advanced-search-dialog .row.row-narrow .col-sm-1, .ev-advanced-search-dialog .row.row-narrow .col-md-1, .ev-advanced-search-dialog .row.row-narrow .col-lg-1,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-2, .ev-advanced-search-dialog .row.row-narrow .col-sm-2, .ev-advanced-search-dialog .row.row-narrow .col-md-2, .ev-advanced-search-dialog .row.row-narrow .col-lg-2,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-3, .ev-advanced-search-dialog .row.row-narrow .col-sm-3, .ev-advanced-search-dialog .row.row-narrow .col-md-3, .ev-advanced-search-dialog .row.row-narrow .col-lg-3,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-4, .ev-advanced-search-dialog .row.row-narrow .col-sm-4, .ev-advanced-search-dialog .row.row-narrow .col-md-4, .ev-advanced-search-dialog .row.row-narrow .col-lg-4,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-5, .ev-advanced-search-dialog .row.row-narrow .col-sm-5, .ev-advanced-search-dialog .row.row-narrow .col-md-5, .ev-advanced-search-dialog .row.row-narrow .col-lg-5,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-6, .ev-advanced-search-dialog .row.row-narrow .col-sm-6, .ev-advanced-search-dialog .row.row-narrow .col-md-6, .ev-advanced-search-dialog .row.row-narrow .col-lg-6,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-7, .ev-advanced-search-dialog .row.row-narrow .col-sm-7, .ev-advanced-search-dialog .row.row-narrow .col-md-7, .ev-advanced-search-dialog .row.row-narrow .col-lg-7,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-8, .ev-advanced-search-dialog .row.row-narrow .col-sm-8, .ev-advanced-search-dialog .row.row-narrow .col-md-8, .ev-advanced-search-dialog .row.row-narrow .col-lg-8,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-9, .ev-advanced-search-dialog .row.row-narrow .col-sm-9, .ev-advanced-search-dialog .row.row-narrow .col-md-9, .ev-advanced-search-dialog .row.row-narrow .col-lg-9,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-10, .ev-advanced-search-dialog .row.row-narrow .col-sm-10, .ev-advanced-search-dialog .row.row-narrow .col-md-10, .ev-advanced-search-dialog .row.row-narrow .col-lg-10,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-11, .ev-advanced-search-dialog .row.row-narrow .col-sm-11, .ev-advanced-search-dialog .row.row-narrow .col-md-11, .ev-advanced-search-dialog .row.row-narrow .col-lg-11,
        .ev-advanced-search-dialog .row.row-narrow .col-xs-12, .ev-advanced-search-dialog .row.row-narrow .col-sm-12, .ev-advanced-search-dialog .row.row-narrow .col-md-12, .ev-advanced-search-dialog .row.row-narrow .col-lg-12 {
          margin-bottom: 12.5px; } }
  .ev-advanced-search-dialog .col-xs-1, .ev-advanced-search-dialog .col-sm-1, .ev-advanced-search-dialog .col-md-1, .ev-advanced-search-dialog .col-lg-1,
  .ev-advanced-search-dialog .col-xs-2, .ev-advanced-search-dialog .col-sm-2, .ev-advanced-search-dialog .col-md-2, .ev-advanced-search-dialog .col-lg-2,
  .ev-advanced-search-dialog .col-xs-3, .ev-advanced-search-dialog .col-sm-3, .ev-advanced-search-dialog .col-md-3, .ev-advanced-search-dialog .col-lg-3,
  .ev-advanced-search-dialog .col-xs-4, .ev-advanced-search-dialog .col-sm-4, .ev-advanced-search-dialog .col-md-4, .ev-advanced-search-dialog .col-lg-4,
  .ev-advanced-search-dialog .col-xs-5, .ev-advanced-search-dialog .col-sm-5, .ev-advanced-search-dialog .col-md-5, .ev-advanced-search-dialog .col-lg-5,
  .ev-advanced-search-dialog .col-xs-6, .ev-advanced-search-dialog .col-sm-6, .ev-advanced-search-dialog .col-md-6, .ev-advanced-search-dialog .col-lg-6,
  .ev-advanced-search-dialog .col-xs-7, .ev-advanced-search-dialog .col-sm-7, .ev-advanced-search-dialog .col-md-7, .ev-advanced-search-dialog .col-lg-7,
  .ev-advanced-search-dialog .col-xs-8, .ev-advanced-search-dialog .col-sm-8, .ev-advanced-search-dialog .col-md-8, .ev-advanced-search-dialog .col-lg-8,
  .ev-advanced-search-dialog .col-xs-9, .ev-advanced-search-dialog .col-sm-9, .ev-advanced-search-dialog .col-md-9, .ev-advanced-search-dialog .col-lg-9,
  .ev-advanced-search-dialog .col-xs-10, .ev-advanced-search-dialog .col-sm-10, .ev-advanced-search-dialog .col-md-10, .ev-advanced-search-dialog .col-lg-10,
  .ev-advanced-search-dialog .col-xs-11, .ev-advanced-search-dialog .col-sm-11, .ev-advanced-search-dialog .col-md-11, .ev-advanced-search-dialog .col-lg-11,
  .ev-advanced-search-dialog .col-xs-12, .ev-advanced-search-dialog .col-sm-12, .ev-advanced-search-dialog .col-md-12, .ev-advanced-search-dialog .col-lg-12 {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 20px; }
  .ev-advanced-search-dialog .ev-button-cancel {
    display: inline-block;
    cursor: pointer; }
  .ev-advanced-search-dialog .ev-icon-close {
    background: url(../img/close.png) 0/25px;
    width: 25px;
    height: 25px; }
  .ev-advanced-search-dialog .ev-icon-arrow-left {
    background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_left.svg) 0/9px 16px no-repeat;
    width: 9px;
    height: 16px;
    display: inline-block;
    vertical-align: text-top; }
  .ev-advanced-search-dialog .ev-dialog-title-row-desktop {
    min-height: 40px;
    font-size: 24px; }
    .ev-advanced-search-dialog .ev-dialog-title-row-desktop .ev-title {
      display: inline-block;
      font-size: 24px;
      width: 90%;
      line-height: 1; }
    .ev-advanced-search-dialog .ev-dialog-title-row-desktop .ev-button-cancel {
      float: right; }
      .ev-advanced-search-dialog .ev-dialog-title-row-desktop .ev-button-cancel img {
        width: 25px;
        height: 25px; }
  .ev-advanced-search-dialog .ev-dialog-title-row-mobile {
    box-sizing: border-box;
    position: relative;
    height: 59px;
    padding: 0 15px;
    margin-top: 0;
    border-bottom: 3px solid #f00; }
    .ev-advanced-search-dialog .ev-dialog-title-row-mobile.ev-dialog-fullscreen-search-input-mobile-header {
      background: #fff url(../images/logito.jpg) center/114px 33px no-repeat; }
    .ev-advanced-search-dialog .ev-dialog-title-row-mobile .ev-title {
      line-height: 56px;
      font-size: 16px; }
    .ev-advanced-search-dialog .ev-dialog-title-row-mobile .ev-button-cancel {
      line-height: 56px;
      font-size: 16px;
      position: absolute;
      display: block; }
      .ev-advanced-search-dialog .ev-dialog-title-row-mobile .ev-button-cancel .ev-icon-arrow-left {
        background-size: 9px 20px;
        height: 20px;
        vertical-align: text-bottom; }
      .ev-advanced-search-dialog .ev-dialog-title-row-mobile .ev-button-cancel span {
        margin-left: 5px; }
  .ev-advanced-search-dialog .ev-dialog-scrollable-area {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-right: -20px;
    padding-right: 20px;
    margin-left: -20px;
    padding-left: 20px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-dialog-scrollable-area {
        margin-right: 0;
        padding-right: 0;
        margin-left: 0;
        padding-left: 0; } }
    @media (min-width: 768px) {
      .ev-advanced-search-dialog .ev-dialog-scrollable-area .ev-dialog-scrollable-area-bottom-spacer {
        height: 50px; } }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-dialog-scrollable-area .ev-dialog-scrollable-area-bottom-spacer {
        height: 70px; } }
  .ev-advanced-search-dialog .ev-dropdown-simple {
    width: 100%; }
    .ev-advanced-search-dialog .ev-dropdown-simple .ev-dropdown-options {
      right: -1px;
      /* make sure that the dropdown-options are as wide as the head */ }
      .ev-advanced-search-dialog .ev-dropdown-simple .ev-dropdown-options .ev-dropdown-option {
        height: 28px;
        /* (henning) this is a hack to fix the height, on my browser these were 5px too large and I could not find out where these 5px came from */ }
  .ev-advanced-search-dialog input {
    width: 100%;
    background-color: #fff;
    /* font-family: $fontFamily; */
    font-size: 13px;
    height: 30px;
    border: 1px solid #c9c9c9;
    color: #444444;
    display: block;
    padding: 0.5em;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: inherit;
    /* used for IE9 support of placeholders */ }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog input {
        font-size: 20px;
        height: 45px; } }
    .ev-advanced-search-dialog input:focus {
      background: #fff;
      border-color: #8b8b8b;
      outline: none;
      outline-style: none;
      outline-color: transparent;
      -webkit-box-shadow: 0 0 5px #919191;
      -moz-box-shadow: 0 0 5px #919191;
      box-shadow: 0 0 5px #919191; }
    .ev-advanced-search-dialog input.ev-placeholder {
      color: #919191; }
  .ev-advanced-search-dialog .ev-button-submit {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    left: 5px;
    right: 5px;
    bottom: 5px;
    height: 45px;
    z-index: 5;
    font-size: 16px;
    cursor: pointer; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-button-submit {
        position: fixed;
        height: 65px;
        font-size: 16px; } }
    .ev-advanced-search-dialog .ev-button-submit.ev-disabled {
      cursor: default;
      opacity: .65; }
    .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container {
      display: inline-block; }
      .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container .ev-button-submit-label {
        height: 45px;
        display: table-cell;
        vertical-align: middle; }
        @media (max-width: 767px) {
          .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container .ev-button-submit-label {
            height: 65px; } }
      .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container .ev-button-submit-icon {
        height: 45px;
        display: table-cell;
        vertical-align: middle; }
        .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container .ev-button-submit-icon .ev-icon-eye {
          background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Eye.svg); }
          @media (min-width: 768px) {
            .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container .ev-button-submit-icon .ev-icon-eye {
              height: 12px;
              width: 22px;
              margin-right: 20px;
              background-size: 22px 12px; } }
          @media (max-width: 767px) {
            .ev-advanced-search-dialog .ev-button-submit .ev-button-submit-label-container .ev-button-submit-icon .ev-icon-eye {
              height: 13px;
              width: 24px;
              margin-right: 15px;
              background-size: 24px 13px; } }
  .ev-advanced-search-dialog .ev-search-dialog-loading-overlay {
    position: absolute;
    width: 100%;
    left: 0;
    top: 45px;
    bottom: 0;
    z-index: 5;
    display: none; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-search-dialog-loading-overlay {
        top: 66px; } }
  .ev-advanced-search-dialog .ui-slider {
    position: relative;
    background: #c9c9c9;
    border: 0; }
    .ev-advanced-search-dialog .ui-slider .ui-slider-range {
      position: absolute;
      z-index: 1;
      border: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .ev-advanced-search-dialog .ui-slider .ui-slider-handle {
      position: absolute;
      z-index: 2;
      width: 20px;
      height: 20px;
      cursor: default;
      border: 1px solid #c9c9c9;
      background-color: #fff;
      border-radius: 10px; }
      @media (max-width: 767px) {
        .ev-advanced-search-dialog .ui-slider .ui-slider-handle {
          width: 26px;
          height: 26px;
          border-radius: 13px; } }
      .ev-advanced-search-dialog .ui-slider .ui-slider-handle:focus {
        outline: none;
        outline-style: none;
        outline-color: transparent; }
  .ev-advanced-search-dialog .ui-slider-horizontal {
    height: 1px; }
    .ev-advanced-search-dialog .ui-slider-horizontal .ui-slider-handle {
      top: -10px;
      margin-left: -10px; }
      @media (max-width: 767px) {
        .ev-advanced-search-dialog .ui-slider-horizontal .ui-slider-handle {
          top: -13px;
          margin-left: -13px; } }
  .ev-advanced-search-dialog .ev-slider-name {
    line-height: 1; }
    .ev-advanced-search-dialog .ev-slider-name.ev-disabled {
      color: #c9c9c9; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-slider-name {
        font-size: 20px; } }
  .ev-advanced-search-dialog .ev-slider-container {
    width: 100%;
    height: 1px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-slider-container {
        width: auto;
        margin-left: 25px;
        margin-right: 37.5px; } }
    .ev-advanced-search-dialog .ev-slider-container .ev-enabled .ui-slider .ui-slider-range {
      background-color: #f00; }
    .ev-advanced-search-dialog .ev-slider-container .ev-disabled .ui-slider .ui-slider-range {
      background-color: #c9c9c9; }
    .ev-advanced-search-dialog .ev-slider-container .ev-inner-slider-container {
      margin-left: 10px;
      margin-right: 10px; }
      @media (max-width: 767px) {
        .ev-advanced-search-dialog .ev-slider-container .ev-inner-slider-container {
          margin-left: 13px;
          margin-right: 13px; } }
  .ev-advanced-search-dialog .ev-slider-label-container {
    line-height: 1;
    position: relative;
    width: 100%;
    height: 40px;
    padding-top: 11px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-slider-label-container {
        font-size: 20px;
        padding-top: 18px;
        height: 59px;
        width: auto;
        margin-left: 25px;
        margin-right: 37.5px; } }
    .ev-advanced-search-dialog .ev-slider-label-container .ev-slider-label {
      position: absolute;
      display: inline-block;
      white-space: nowrap; }
      .ev-advanced-search-dialog .ev-slider-label-container .ev-slider-label.ev-disabled {
        color: #c9c9c9; }
  .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head {
    border: 1px #fff;
    border-style: solid solid none solid;
    padding-top: 5px;
    font-size: 13px;
    line-height: 1.42857143;
    height: 29px;
    /* plus top-border gives a total height of 30px */
    -webkit-transition: border-color 150ms;
    -moz-transition: border-color 150ms;
    -o-transition: border-color 150ms;
    transition: border-color 150ms; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head .ev-dropdown-head-label-filter-bar {
      display: inline-block;
      max-width: 114px;
      white-space: nowrap;
      overflow-x: hidden;
      text-overflow: ellipsis;
      margin-bottom: 10px; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head .ev-arrow-down {
      top: 10px;
      background: #fff url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down.svg) right center/15px 8px no-repeat;
      width: 15px;
      height: 8px;
      opacity: 0.8;
      -webkit-transition: background-image 150ms;
      -moz-transition: background-image 150ms;
      -o-transition: background-image 150ms;
      transition: background-image 150ms; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head.ev-open {
      border-color: #c9c9c9; }
      .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head.ev-open .ev-arrow-down {
        background: #fff url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up_red.svg) right center no-repeat; }
  .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options-top-border-overwriter {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    z-index: 1001;
    display: none; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options-top-border-overwriter.ev-open {
      display: block; }
  .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options {
    top: initial;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #fff;
    border: 1px solid #c9c9c9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value {
      display: inline-block;
      width: 100%;
      font-size: 13px;
      line-height: 1.42857143;
      min-width: 240px;
      max-width: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding: 11px 10px 11px 9px; }
      .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value.ev-disabled {
        color: #c9c9c9;
        cursor: default; }
        .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value.ev-disabled:hover {
          background: none; }
      .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value .ev-loading-count {
        vertical-align: top;
        padding-left: 7px;
        height: 16px; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option.ev-selected .ev-dropdown-value {
      background-color: #f00;
      color: #fff; }
    .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options.ev-open {
      display: block; }
  .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple {
    border: 1px solid #c9c9c9; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple {
        border: none; } }
    @media (min-width: 768px) {
      .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-head {
        height: 28px;
        /* plus top- and bottom-border gives a total height of 30px */
        padding-right: 30px; } }
    .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-head.ev-open {
      border-color: #fff; }
    .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-head.ev-deactivated {
      color: #c9c9c9; }
    .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-options-top-border-overwriter {
      width: 10px; }
      @media (max-width: 767px) {
        .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-options-top-border-overwriter {
          display: none; } }
    .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-options {
      left: -1px;
      /* adjustment for border on sort-order */ }
      @media (min-width: 768px) {
        .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-options .ev-dropdown-option {
          display: block; } }
      .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value {
        width: 100%;
        min-width: initial;
        padding: 5px 10px;
        text-overflow: ellipsis;
        overflow-x: hidden; }
        @media (max-width: 767px) {
          .ev-advanced-search-dialog .ev-dropdown.ev-dropdown-simple .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value {
            min-width: 0;
            padding: 15px 0 13px 0; } }
  @media (max-width: 767px) {
    .ev-advanced-search-dialog .ev-dropdown {
      display: block;
      position: static; }
      .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head {
        height: auto;
        position: static;
        border: 1px #c9c9c9;
        border-style: none none solid none;
        font-size: 20px;
        padding: 22px 22px 24px 12.5px;
        line-height: 1;
        cursor: pointer; }
        .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head .ev-arrow-down {
          background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down.svg) right center no-repeat;
          position: static;
          float: right;
          margin-top: 5px; }
        .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head.ev-open {
          background-color: #c9c9c9; }
          .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-head.ev-open .ev-arrow-down {
            background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up.svg) right center no-repeat; }
      .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options-top-border-overwriter {
        display: none; }
      .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options {
        position: static;
        padding-left: 0;
        padding-right: 0;
        border: none;
        overflow-y: hidden; }
        .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option {
          padding-left: 40px; }
          .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option .ev-dropdown-value {
            display: block;
            font-size: 20px;
            color: #c9c9c9;
            padding: 15px 0 13px 0;
            min-width: 0;
            border-bottom: 1px solid #c9c9c9; }
          .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option.ev-selected {
            background: url("https://www.engelvoelkers.com/hp/img/Icon_Checkmark.svg") left no-repeat;
            background-size: 15px 11px;
            background-position: 14px 25px;
            color: #444444; }
            .ev-advanced-search-dialog .ev-dropdown .ev-dropdown-options .ev-dropdown-option.ev-selected .ev-dropdown-value {
              background-color: #fff;
              color: #444444; } }

.ev-dialog-overlay {
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5; }

.ev-search-dialog-reset-facets-img {
  width: 8px;
  height: 8px; }
  @media (min-width: 768px) {
    .ev-search-dialog-reset-facets-img {
      margin-right: 10px;
      vertical-align: baseline; } }
  @media (max-width: 767px) {
    .ev-search-dialog-reset-facets-img {
      margin-left: 10px;
      width: 12px;
      height: 15px;
      padding-bottom: 3px; } }

.ev-icon-x-small-red {
  background: url(https://www.engelvoelkers.com/hp/img/X_small_red.svg) 0/8px;
  display: inline-block; }

.ev-delete-all-filters-mobile .ev-icon-x-small-red {
  background: url(https://www.engelvoelkers.com/hp/img/X_small_red.svg) 0 3px/12px no-repeat; }

/* used in filter bar and refine search dialog and thus defined independently of these classes */
.ev-search-input-container {
  display: inline-block;
  position: relative;
  width: 265px;
  margin-right: 20px;
  /* only set fixes height for more than one col layout */ }
  @media (min-width: 768px) and (max-width: 991px) {
    .ev-search-input-container {
      width: 100%; } }
  .ev-search-input-container .ev-search-input {
    width: 100%;
    padding-right: 30px; }
  .ev-search-input-container .ev-search-icon {
    position: absolute;
    right: 10px;
    top: 5px;
    width: 19px;
    height: 19px;
    background-image: url(https://www.engelvoelkers.com/hp/img/Icon_Search.svg); }

.ev-location-suggest-row {
  background-color: #f0f0f0;
  height: 51px;
  padding-top: 7px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #c9c9c9; }
  .ev-location-suggest-row .ev-location-suggest-table {
    width: 100%; }
    .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-input-cell, .ev-location-suggest-row .ev-location-suggest-table .ev-property-alert-input-cell {
      width: 100%; }
      .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-input-cell .ev-search-input-container, .ev-location-suggest-row .ev-location-suggest-table .ev-property-alert-input-cell .ev-search-input-container {
        width: 100%; }
        .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-input-cell .ev-search-input-container .ev-search-input, .ev-location-suggest-row .ev-location-suggest-table .ev-property-alert-input-cell .ev-search-input-container .ev-search-input {
          color: #f00;
          text-shadow: 0 0 0 #444444;
          -webkit-text-fill-color: transparent;
          border: none;
          padding-right: 0;
          padding-left: 40px;
          font-size: 16px;
          height: 35px;
          margin-right: 0; }
          .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-input-cell .ev-search-input-container .ev-search-input::-webkit-input-placeholder, .ev-location-suggest-row .ev-location-suggest-table .ev-property-alert-input-cell .ev-search-input-container .ev-search-input::-webkit-input-placeholder {
            color: #c9c9c9;
            text-shadow: none;
            -webkit-text-fill-color: initial; }
        .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-input-cell .ev-search-input-container .ev-search-icon, .ev-location-suggest-row .ev-location-suggest-table .ev-property-alert-input-cell .ev-search-input-container .ev-search-icon {
          position: absolute;
          left: 10px;
          top: 7px;
          width: 21px;
          height: 21px; }
    .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-cancel {
      width: auto;
      padding-left: 20px;
      font-size: 16px; }
      .ev-location-suggest-row .ev-location-suggest-table .ev-location-suggest-cancel span {
        cursor: pointer; }

.ev-advanced-search-dialog .ev-refine-search-container {
  font-size: 13px;
  /* manual pixel and layout corrections for mobile */ }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-search-dialog-reset-facets-container {
    height: 30px;
    padding-top: 6px; }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-search-input-container {
    width: 100%; }
  @media (max-width: 767px) {
    .ev-advanced-search-dialog .ev-refine-search-container .row.ev-search-dialog-slider-row {
      margin-left: -2.5px; }
      .ev-advanced-search-dialog .ev-refine-search-container .row.ev-search-dialog-slider-row .col-xs-12 {
        border-bottom: 1px solid #c9c9c9; }
    .ev-advanced-search-dialog .ev-refine-search-container .row.ev-no-margin-bottom-phone .col-xs-12 {
      margin-bottom: 0; }
    .ev-advanced-search-dialog .ev-refine-search-container .row.ev-shift-left-slider {
      margin-left: -2.5px; }
      .ev-advanced-search-dialog .ev-refine-search-container .row.ev-shift-left-slider .col-xs-12 {
        padding-left: 2.5px; }
    .ev-advanced-search-dialog .ev-refine-search-container .row.ev-shift-left-equipment {
      margin: 0 2.5px 0 -10px; } }
  .ev-advanced-search-dialog .ev-refine-search-container ul.ev-search-dialog-geography-list {
    font-size: 20px; }
    .ev-advanced-search-dialog .ev-refine-search-container ul.ev-search-dialog-geography-list .ev-search-dialog-geography-item {
      padding-left: 40px;
      color: #c9c9c9; }
      .ev-advanced-search-dialog .ev-refine-search-container ul.ev-search-dialog-geography-list .ev-search-dialog-geography-item.selected {
        color: #444444;
        background: url("https://www.engelvoelkers.com/hp/img/Icon_Checkmark.svg") left no-repeat;
        background-size: 15px 11px;
        background-position: 14px 25px; }
      .ev-advanced-search-dialog .ev-refine-search-container ul.ev-search-dialog-geography-list .ev-search-dialog-geography-item .ev-search-dialog-geography-item-label {
        padding-top: 15px;
        padding-bottom: 13px;
        border-bottom: 1px solid #c9c9c9;
        cursor: pointer; }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-dropdown.ev-search-dialog-morefilter {
    width: 100%; }
    .ev-advanced-search-dialog .ev-refine-search-container .ev-dropdown.ev-search-dialog-morefilter .ev-more-filter-dropdown-options {
      overflow: hidden; }
      @media (max-width: 767px) {
        .ev-advanced-search-dialog .ev-refine-search-container .ev-dropdown.ev-search-dialog-morefilter .ev-more-filter-dropdown-options .ev-more-filter-options {
          margin-left: 10px;
          padding-left: 2.5px;
          display: none; }
          .ev-advanced-search-dialog .ev-refine-search-container .ev-dropdown.ev-search-dialog-morefilter .ev-more-filter-dropdown-options .ev-more-filter-options.ev-open {
            display: block; } }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-slider-spacer-top {
    height: 0px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-refine-search-container .ev-slider-spacer-top {
        height: 18px; } }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-slider-spacer-bottom {
    height: 10px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-refine-search-container .ev-slider-spacer-bottom {
        height: 28px; } }
  @media (max-width: 767px) {
    .ev-advanced-search-dialog .ev-refine-search-container .ev-search-dialog-equipment-row {
      margin: 0 2.5px 0 -10px; } }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-select-button-container {
    position: relative;
    display: none;
    border-bottom: 1px solid #c9c9c9;
    padding: 15px 12.5px 10px 12.5px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-refine-search-container .ev-select-button-container {
        display: block; } }
    .ev-advanced-search-dialog .ev-refine-search-container .ev-select-button-container .ev-select-button-table {
      width: 100%;
      table-layout: fixed;
      text-align: center;
      border-collapse: separate; }
      .ev-advanced-search-dialog .ev-refine-search-container .ev-select-button-container .ev-select-button-table .ev-select-button-option {
        height: 35px;
        font-size: 16px;
        border-top: 1px solid #444444;
        border-right: 1px solid #444444;
        border-bottom: 1px solid #444444;
        cursor: pointer;
        vertical-align: middle; }
        .ev-advanced-search-dialog .ev-refine-search-container .ev-select-button-container .ev-select-button-table .ev-select-button-option.ev-selected {
          background-color: #444444;
          color: #fff; }
        .ev-advanced-search-dialog .ev-refine-search-container .ev-select-button-container .ev-select-button-table .ev-select-button-option:first-child {
          border-left: 1px solid #444444; }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button {
    width: 100%;
    height: 50px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    text-align: center; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button {
        height: 62.5px;
        width: 100%; } }
    .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button .ev-toggle-button-label-container {
      display: inline-block; }
      .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button .ev-toggle-button-label-container .ev-toggle-button-label {
        display: table-cell;
        vertical-align: middle;
        height: 48px;
        font-size: 14px; }
        @media (max-width: 767px) {
          .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button .ev-toggle-button-label-container .ev-toggle-button-label {
            height: 60.5px;
            font-size: 20px; } }
        .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button .ev-toggle-button-label-container .ev-toggle-button-label.ev-disabled {
          color: #c9c9c9; }
    .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button.selected {
      background: #444444;
      border-color: #444444; }
      .ev-advanced-search-dialog .ev-refine-search-container .ev-toggle-button.selected span {
        color: #fff; }
  .ev-advanced-search-dialog .ev-refine-search-container .ev-search-dialog-equipment {
    display: none;
    margin-top: 30px;
    margin-bottom: 17px;
    line-height: 1;
    font-size: 20px; }
    @media (max-width: 767px) {
      .ev-advanced-search-dialog .ev-refine-search-container .ev-search-dialog-equipment {
        display: block; } }
  .ev-advanced-search-dialog .ev-refine-search-container ul.ev-multi-value-list {
    width: 100%;
    border: 1px solid #c9c9c9;
    height: 70px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
    .ev-advanced-search-dialog .ev-refine-search-container ul.ev-multi-value-list li {
      width: 100%;
      min-width: initial;
      padding: 2px 10px;
      text-overflow: ellipsis;
      overflow-x: hidden;
      white-space: nowrap;
      cursor: pointer; }
      .ev-advanced-search-dialog .ev-refine-search-container ul.ev-multi-value-list li.ev-selected {
        background-color: #f00;
        color: #fff; }
    .ev-advanced-search-dialog .ev-refine-search-container ul.ev-multi-value-list.ev-deactivated li {
      background-color: #c9c9c9;
      cursor: default; }

.ev-search-facets-dialog {
  padding-bottom: 40px; }
  @media (max-width: 767px) {
    .ev-search-facets-dialog {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 100px; } }
  .ev-search-facets-dialog .ev-dialog-title-row-mobile .ev-title {
    text-align: right; }
    .ev-search-facets-dialog .ev-dialog-title-row-mobile .ev-title .ev-delete-all-filters-mobile {
      cursor: pointer; }
  .ev-search-facets-dialog .ev-dialog-main {
    margin-top: 15px; }
    @media (max-width: 767px) {
      .ev-search-facets-dialog .ev-dialog-main {
        margin-top: 0; } }

.ev-locationSuggest-results {
  background-color: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  z-index: 10030;
  display: none;
  overflow: hidden;
  font-size: 13px;
  width: 337px;
  -moz-box-shadow-bottom: 0 2px 10px #444444;
  -webkit-box-shadow: 0 2px 10px #444444;
  -ms-box-shadow: 0 2px 10px #444444;
  box-shadow: 0 2px 10px #444444; }
  .ev-locationSuggest-results ul {
    clear: left; }
  .ev-locationSuggest-results li {
    line-height: 17px;
    padding: 10px;
    color: #8b8b8b;
    text-align: left;
    border-bottom: solid 1px #f0f0f0; }
  .ev-locationSuggest-results li:last-child {
    border-bottom: solid 1px #8b8b8b; }
  .ev-locationSuggest-results li:hover {
    cursor: pointer;
    box-shadow: inset 0px 8px 8px -10px #8b8b8b, inset 0px -8px 8px -10px #8b8b8b; }

.ev-locationSuggest-over {
  cursor: pointer;
  box-shadow: inset 0px 8px 8px -10px #8b8b8b, inset 0px -8px 8px -10px #8b8b8b; }

.ev-locationSuggest-match {
  font-weight: bold;
  color: #f00; }

#ev-dialog-advanced-search .ev-location-suggest-row {
  display: none; }
#ev-dialog-advanced-search .ev-accordeon {
  border-bottom: none;
  overflow-y: auto; }
  #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-content {
    overflow: hidden; }
  @media (min-width: 768px) {
    #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-content {
      display: block; } }
  @media (max-width: 767px) {
    #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-content .ev-more-filter-options {
      margin-left: 10px;
      padding-left: 2.5px; } }
  @media (max-width: 767px) {
    #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-head {
      height: auto;
      position: relative;
      display: block;
      border: 1px #c9c9c9;
      border-style: none none solid none;
      font-size: 20px;
      font-weight: 100;
      padding: 22px 22px 24px 12.5px;
      line-height: 1;
      cursor: pointer;
      z-index: 1;
      color: #444444;
      text-transform: none; }
      #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-head .ev-arrow-down {
        right: 22px;
        top: 22px;
        width: 15px;
        height: 8px;
        margin-top: 5px;
        opacity: 0.8;
        -webkit-transition: background-image 150ms;
        -moz-transition: background-image 150ms;
        -o-transition: background-image 150ms;
        transition: background-image 150ms;
        background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_down.svg) right center no-repeat;
        position: absolute; }
      #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-head.ev-open {
        background-color: #c9c9c9; }
        #ev-dialog-advanced-search .ev-accordeon .ev-accordeon-head.ev-open .ev-arrow-down {
          background: url(https://www.engelvoelkers.com/hp/img/Icon_Arrow_up.svg) right center no-repeat; } }

.ev-key-visual.keyvisual .ev-carousel-frame {
  margin-top: 0; }

@media (max-width: 767px) {
  .ev-new-header-style #cookieText {
    transform: translateY(59px);
    -ms-transform: translateY(59px);
    /* IE 9 */
    -webkit-transform: translateY(59px);
    /* Safari */ } }
.ev-new-header-style .ev-key-visual.keyvisual {
  margin-top: 0; }
  .ev-new-header-style .ev-key-visual.keyvisual .ev-carousel-frame {
    margin-top: 0; }
.ev-new-header-style .keyvisual {
  max-width: 1280px; }
  .ev-new-header-style .keyvisual.ev-key-visual {
    max-width: 100%; }
@media (max-width: 767px) {
  .ev-new-header-style .keyvisual.listing-search .keyvisual-wrapper .keyvisual-slider img {
    margin-top: 0; }
  .ev-new-header-style .keyVisualLead {
    margin-top: 0; }
    .ev-new-header-style .keyVisualLead .keyvisual {
      margin-top: 0; } }

.ev-key-visual {
  width: 1280px;
  height: 375px;
  position: relative;
  text-align: center;
  margin: auto;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  z-index: 0; }
  .ev-key-visual .ev-carousel-outer-frame {
    margin: 0; }
  .ev-key-visual .ev-carousel-frame {
    height: 375px; }
  @media (min-width: 768px) {
    .ev-key-visual .ev-image-gallery-image {
      height: 375px; } }
  @media (max-width: 767px) {
    .ev-key-visual {
      padding: 0;
      width: 100%;
      height: auto; }
      .ev-key-visual .ev-carousel-frame {
        height: auto;
        margin-bottom: 0; } }

.ev-key-visual-wrapper {
  display: block;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  transform: translateX(-50%); }

.ev-inline-block-wrapper {
  display: inline-block; }

.ev-key-visual-blurred-image {
  height: auto;
  min-height: 375px;
  width: 600px;
  /* $ev-key-visual-image-width + 20% */
  max-width: 600px;
  vertical-align: top;
  position: relative;
  top: 187.5px;
  filter: blur(18px);
  -webkit-filter: blur(18px);
  /* Chrome, Safari, Opera */
  z-index: -1; }
  @media (max-width: 767px) {
    .ev-key-visual-blurred-image {
      display: none; } }
  .ev-key-visual-blurred-image.left {
    -moz-transform: translateX(36px) translateY(-50%);
    -o-transform: translateX(36px) translateY(-50%);
    -webkit-transform: translateX(36px) translateY(-50%);
    -ms-transform: translateX(36px) translateY(-50%);
    /* IE 9 */
    transform: translateX(36px) translateY(-50%); }
  .ev-key-visual-blurred-image.right {
    -moz-transform: translateX(-36px) translateY(-50%);
    -o-transform: translateX(-36px) translateY(-50%);
    -webkit-transform: translateX(-36px) translateY(-50%);
    -ms-transform: translateX(-36px) translateY(-50%);
    /* IE 9 */
    transform: translateX(-36px) translateY(-50%); }

.ev-carousel-outer-frame.ev-key-visual-blogpost-gallery {
  font-size: initial; }

.ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element {
  width: auto;
  display: inline-block;
  text-align: center;
  height: 375px; }
  @media (max-width: 767px) {
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element {
      height: auto; } }
  @media (max-width: 767px) {
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element {
      width: 100%; } }
  .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper {
    position: relative; }
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper img {
      height: 375px;
      max-width: none; }
      @media (max-width: 767px) {
        .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper img {
          width: 100vw;
          height: 75vw; } }
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.2);
      overflow: hidden; }
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-content {
      margin: 117px 40px 0; }
      @media (max-width: 767px) {
        .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-content {
          margin: 16.66667% 14px 0; } }
      .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-content .ev-blogpost-gallery-element-title {
        position: relative;
        overflow: hidden; }
        .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-content .ev-blogpost-gallery-element-title p {
          font-size: 34px;
          line-height: 41px;
          font-weight: 300;
          text-transform: uppercase;
          margin: 0;
          color: white;
          white-space: normal;
          overflow: hidden; }
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-category {
      font-weight: 300;
      font-size: 16px;
      line-height: 19px;
      height: 19px;
      color: white;
      text-transform: uppercase; }
    .ev-key-visual-blogpost-gallery .ev-blogpost-gallery-element .ev-blogpost-gallery-element-wrapper .ev-blog-gallery-element-divider {
      height: 0;
      width: 150px;
      border-bottom: solid 1px #f00;
      margin: 6px auto 14px auto; }
.ev-key-visual-blogpost-gallery .ev-carousel-mobile-right-arrow {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 0; }
  .ev-key-visual-blogpost-gallery .ev-carousel-mobile-right-arrow .ev-carousel-arrow-right-internal {
    right: 0;
    position: absolute;
    height: 100%;
    width: 100%; }

@media (max-width: 767px) {
  .row.keyVisualLead > .six {
    padding-left: 0;
    padding-right: 0; } }
@media (max-width: 479px) {
  .row.keyVisualLead > .six.left {
    display: none; } }

@media (max-width: 767px) {
  .row.ev-tabs > .four.ev-tab {
    padding-left: 0;
    padding-right: 0;
    width: 33.33%; } }

.ev-newsletter-element-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .ev-newsletter-element-image {
      padding-top: 27px;
      width: 635px;
      height: auto; } }
  @media (max-width: 767px) {
    .ev-newsletter-element-image {
      padding-top: 19px;
      width: 375px;
      height: auto; } }

.ev-newsletter-message-container {
  position: relative;
  height: 180px;
  transition: height 0.5s ease-in-out; }
  .ev-newsletter-message-container form {
    padding-top: 1px;
    height: 180px; }

.ev-newsletter-element-loading-container {
  height: 180px; }

.ev-newsletter-text,
.ev-newsletter-message-title {
  max-width: 470px; }

.ev-newsletter-message {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }

.ev-newsletter-element-image-loading {
  margin-top: 92px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 32px;
  height: 32px; }

.ev-newsletter-message-icon-container {
  width: 44px;
  height: 34px;
  margin: 10px auto 40px auto;
  display: block; }

.ev-newsletter-message-icon-success, .ev-newsletter-message-icon-error {
  transition: width .5s ease-in-out;
  -webkit-transition: width .5s ease-in-out;
  -moz-transition: width .5s ease-in-out;
  height: 34px; }

.ev-newsletter-message-icon-success {
  background: url(https://www.engelvoelkers.com/hp/img/Icon_Newsletter_Checkmark.svg) 0 0/44px 34px no-repeat; }

.ev-newsletter-message-icon-error {
  background: url(https://www.engelvoelkers.com/hp/img/Icon_Error.svg) 0 0/43px 34px no-repeat; }

.ev-newsletter-message-title {
  width: 90%;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.17;
  color: #444444;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto; }

.ev-newsletter-message-text {
  width: 90%;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.17;
  text-align: center;
  color: #444444; }

.ev-headline {
  width: 90%;
  line-height: 40px;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  text-align: center;
  color: #444444;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block; }

.ev-text {
  width: 90%;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44;
  color: #444444;
  margin-bottom: 40px; }

.ev-center {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.ev-content-container input.ev-input {
  width: 260px;
  height: 40px;
  border: solid 1px #c9c9c9;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding-left: 8px;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
  color: #666666; }
  .ev-content-container input.ev-input:focus {
    border-color: #8b8b8b;
    outline: none;
    outline-style: none;
    outline-color: transparent;
    -webkit-box-shadow: 0 0 5px #919191;
    -moz-box-shadow: 0 0 5px #919191;
    box-shadow: 0 0 5px #919191;
    background-color: #fff; }

.ev-cta-button, input[type="submit"].ev-cta-button {
  box-sizing: border-box;
  width: auto;
  min-width: 170px;
  height: 60px;
  background-color: #f00;
  box-shadow: none;
  color: #fff;
  background-image: none;
  text-shadow: none;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  line-height: 60px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
  -ms-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
  -o-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16), 0 16px 18px 0 rgba(0, 0, 0, 0.13); }
  .ev-cta-button:hover, input[type="submit"].ev-cta-button:hover {
    text-decoration: none; }

input[type="submit"].ev-cta-button {
  display: block; }

.ev-cta-button {
  display: inline-block; }
