/* Stylesheets and Google fonts import */
@import url("../../../backend/css/font-awesome.css");
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic&subset=latin,latin-ext);
/* CSS definations for Real Spaces */

/*-------------------------------------------------------------------------------------------*/
/* 0. RESET */
/*-------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
.summernote ul,
.note-editing-area ul {
  list-style-type: disc;
  margin: 10px 20px;
  padding-left: 20px;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
* {
  /* -webkit-box-sizing: border-box; */
  -moz-box-sizing: border-box;
  /* box-sizing: border-box; */
  /* outline:none; */
}
iframe {
  border: 0;
}
.modal-body .form-group {
  display: table;
  width: 100%;
  margin-bottom: 5px;
}

.content.full.flex {
  display: flex;
  flex-direction: column;
  padding-top:0;
}
.content.full.flex .container.list {
  order: -1;
}
.content.full.flex .container.search-form {
  margin-top: 40px;
}

sup {font-size: 11px !important; line-height: 11px !important;}

/*-------------------------------------------------------------------------------------------*/
/* 0.1. SELECT2 */
/*-------------------------------------------------------------------------------------------*/

.select2-container--default .select2-selection--single {
  border-radius: 0;
  height: 47px;
  border: 0;
  border-bottom: 1px solid #ccc;
  transition: 0.4s;
}
.select2-container--default .select2-selection--single:hover {
  background: #e6e6e6;
  border-color: #adadad;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 47px;
  color: #333;
  font-size: 15px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}

/*-------------------------------------------------------------------------------------------*/
/* 0.1. END */
/*-------------------------------------------------------------------------------------------*/

/* Hide the browser's default checkbox */
.custom-checkbox {
  display: flex;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  float: left;
  margin-right: 30px;    
}

#property-form .custom-checkbox { float:none; }

.custom-checkbox label {
  padding-left: 0;
  cursor: pointer;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #f0f0f0;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #232323;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#home-search .custom-checkbox {
  margin-top: 36px;
}

/* ==================================================
 Menu Styles
================================================== */

#lang {
  cursor: pointer;
  padding: 15px 10px 4px 10px;
  position: absolute;
  right: 14px;
  top: 0;
  transition-duration: 0.5s;
  transition-property: background;
  z-index: 123;
  text-align: center;
  max-height: 50px;
  overflow: hidden;
}
#lang i {
  font-weight: bold;
}
#lang:hover {
  background: #ededed;
}
#lang.more-lang {
  background: #ededed;
}
#current-lang img {
  position: relative;
  top: 5px;
}
#lang img {
  display: block;
}
#all-lang img {
  margin: 8px 0;
}

.open > .dropdown-menu {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  border-radius: 0;
}

.dropdown-menu {
  opacity: 0;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1, 0);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  margin: 0;
  border: 0;
  padding: 0;
}
.bs-container.bootstrap-select.input-lg {
  height: auto;
  padding: 0;
  -webkit-transition: 0.25s;
  transition: height 150ms ease 0s, width 150ms ease 0s;
}
.bs-container div.dropdown-menu {
  height: 0;
  width: 0;
  transition: height 15ms ease 0s, width 15ms ease 0s;
  -webkit-transition: 0.15s;
  opacity: 0;
  margin-left: -30px;
}
.bootstrap-select.form-control.open {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.caret-up {
  width: 0;
  height: 0;
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid;

  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
}

/* ==================================================
 Basic Styles
================================================== */

html {
  height: 100%;
}

html,
hmtl a {
  width: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a {
  color: #5e5e5e;
  text-decoration: underline;
  cursor: pointer;

  -webkit-transition: color 0.1s linear 0s;
  -moz-transition: color 0.1s linear 0s;
  -o-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
a:hover {
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  outline: 0;
  color: #666666;
}
a img {
  border: none;
}
a > img {
  vertical-align: middle;
}
.gray-bg {
  background: #bababa;
}
.gray-text {
  color: #bababa;
}
.lgray-bg {
  background: #f8f8f8;
}
.dgray-bg {
  background: #333333;
}
img {
  max-width: 100%;
}
img,
object,
embed,
audio,
video {
  max-width: 100%;
}
img {
  height: auto;
}
strong,
.strong {
  font-weight: 700;
}
p {
  margin: 0 0 20px;
}
i,
em,
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.align-left {
  float: left;
  margin: 0 25px 0 0px !important;
}
.align-right {
  float: right;
  margin: 0 0 0 25px !important;
}
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.color-text {
  color: #ffffff;
}
.through {
  text-decoration: line-through;
}

.stricky {
  position: fixed !important;
  top: 0 !important;
  z-index: 99 !important;
}

.cookiebanner {
  line-height: 28px !important;
}
.cookiebanner-close {
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  line-height: 18px;
  margin: 0 0 0 8px;
  outline: medium none;
  padding: 5px 10px !important;
  text-decoration: none;
  white-space: nowrap;
}

a.imo {
  text-indent: -999999px;
  display: block;
  width: 46px;
  height: 20px;
  background: url(../images/imo.svg) no-repeat;
  float: left;
  margin: 13px 5px 0px;
}
a.imo:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease 0.2s;
  -moz-transition: all 0.2s ease 0.2s;
  -ms-transition: all 0.2s ease 0.2s;
  -o-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.1s;
}

a.policy {
  float: left;
  margin: 15px;
  text-decoration: none;
}

#error404 p {
  font-size: 28px;
  line-height: 38px;
  margin: 100px 0;
  text-align: center;
}

/* ==================================================
 Typography
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  color: #333333;
  font-weight: 400;
  line-height: 1.5em;
  font-family: "Open Sans", sans-serif;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 16px;
  font-weight: 700;
}
h6 {
  font-size: 12px;
}
h1.short,
h2.short,
h3.short,
h4.short,
h5.short,
h6.short,
p.short {
  margin-bottom: 5px;
}
h1.spaced,
h2.spaced,
h3.spaced,
h4.spaced,
h5.spaced,
h6.spaced {
  margin-top: 22px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #333333;
  text-decoration: none;
}
p {
  font-size: 13px;
  line-height: 20px;
  margin: 0 0 15px 0;
}
p.md {
  font-size: 16px;
  line-height: 22px;
}
p.lg {
  font-size: 30px;
  line-height: 1.2em;
}
.big {
  font-size: 200%;
  line-height: 1.5em;
}
.thin {
  font-weight: 300;
}
p.drop-caps:first-child:first-letter {
  float: left;
  margin-top: 5px;
  margin-right: 5px;
  padding: 4px;
  font-size: 75px;
  font-family: Georgia, serif;
  line-height: 60px;
}
p.drop-caps.secondary:first-child:first-letter {
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  color: rgb(255, 255, 255);
}
ul.checks,
ul.angles,
ul.carets,
ul.chevrons {
  margin-bottom: 15px;
  margin-left: 30px;
}
ul.checks > li,
ul.angles > li,
ul.carets > li,
ul.chevrons > li {
  margin: 10px 0;
  list-style: none;
}
ul.checks > li > i,
ul.angles > li > i,
ul.carets > li > i,
ul.chevrons > li > i {
  margin-right: 2px;
}
ul.inline {
  margin: 10px 0;
}
ul.inline > li {
  display: inline-block;
  margin-right: 10px;
}
ul.inline > li i.fa {
  margin-right: 2px;
}
ul.nav-list-primary > li a {
  display: block;
  padding: 8px;
  border-bottom: 1px solid #efefef;
  color: #666666;
  text-decoration: none;
}
ul.nav-list-primary > li a:hover {
  text-decoration: none;
}
ul.unordered {
  margin: 10px 0 10px 20px;
  list-style-type: disc;
}
ol {
  margin: 10px 0 10px 30px;
  list-style-type: decimal;
}
ul.unordered ul,
ol ul {
  margin: 10px 0 10px 20px;
}
ul.unordered ul {
  list-style-type: circle;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* ==================================================
 Margin Bottom Sets
================================================== */

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

.margin-10 {
  margin-bottom: 10px !important;
}

.margin-15 {
  margin-bottom: 15px !important;
}

.margin-20 {
  margin-bottom: 20px !important;
}

.margin-30 {
  margin-bottom: 30px !important;
}

.margin-40 {
  margin-bottom: 40px !important;
}

.margin-50 {
  margin-bottom: 50px !important;
}

.margin-60 {
  margin-bottom: 60px !important;
}

.margin-70 {
  margin-bottom: 70px !important;
}

.margin-80 {
  margin-bottom: 80px !important;
}
.push-top {
  margin-top: 35px;
}

/* ==================================================
 Padding Sets
================================================== */
.padding-b0 {
  padding-bottom: 0 !important;
}
.padding-tb20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.padding-tb30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.padding-tb45 {
  padding-top: 45px;
  padding-bottom: 45px;
}
.padding-tb75 {
  padding-top: 75px;
  padding-bottom: 75px;
}
.padding-tb100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.padding-tb125 {
  padding-top: 125px;
  padding-bottom: 125px;
}
.padding-as25 {
  padding: 25px;
}
/* ==================================================
 Spacers
================================================== */
.spacer-20 {
  height: 30px;
  clear: both;
  width: 100%;
}
.spacer-30 {
  height: 30px;
  clear: both;
  width: 100%;
}
.spacer-40 {
  height: 40px;
  clear: both;
  width: 100%;
}
.spacer-50 {
  height: 50px;
  clear: both;
  width: 100%;
}
.spacer-75 {
  height: 75px;
  clear: both;
  width: 100%;
}
.spacer-100 {
  height: 100px;
  clear: both;
  width: 100%;
}

/* ----------------------------------------------------------------------------------------- */
/* Multi purpose classes */
/* ----------------------------------------------------------------------------------------- */
.overlay-transparent {
  background: rgba(0, 0, 0, 0.6);
}
.btn {
  border-width: 0;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 1px 1px 0 #ccc;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.btn-default {
  border-width: 1px;
  box-shadow: none;
  text-shadow: none;
}
.btn:hover,
.btn:active,
.btn:focus {
  opacity: 0.9;
}
.social-icons a {
  margin: 0 8px;
  text-decoration: none;
}
.next-prev-nav {
  display: inline-block;
}
.next-prev-nav a {
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  line-height: 20px;
  text-decoration: none;
}
.next-prev-nav a:hover {
  color: #fff;
}
.meta-data {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-style: italic;
  color: #999999;
  padding: 0 !important;
  border-bottom-width: 3px !important;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.meta-data a {
  color: #666666;
}
.meta-data a i {
  color: #999999;
}
.meta-data a:hover {
  text-decoration: none;
}
.meta-data > span {
  display: inline-block;
  padding: 10px 20px;
  border-right: 1px solid #efefef;
}
.meta-data i {
  margin-right: 4px;
}
.meta-data > span:last-child {
  border-right: 0;
}
.media-box {
  position: relative;
  display: block;
  max-width: 100%;
}
.media-box .zoom,
.media-box .expand {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff !important;
  font-size: 1.5em;
  z-index: 999;
  left: 0;
  top: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
}
.img-thumbnail img:hover,
.img-thumbnail:hover {
  opacity: 0.9;
}
.media-box:hover .zoom,
.media-box:hover .expand {
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.2s;
  -moz-transition: opacity 0.3s 0.2s;
  -ms-transition: opacity 0.3s 0.2s;
  -o-transition: opacity 0.3s 0.2s;
  transition: opacity 0.3s 0.2s;
}
.selectpicker {
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 5px;
}
.input-lg .selectpicker {
  padding-top: 12px;
  padding-bottom: 11px;
}
.input-lg {
  font-size: 15px;
}
.bootstrap-select.form-control {
  margin-bottom: 20px !important;
}
.bootstrap-select.margin-0 {
  margin-bottom: 0px !important;
}
.bootstrap-select.btn-group .dropdown-menu li.selected a span.text {
  color: #fff;
}
.dropdown-menu > li > a {
  padding: 7px 20px;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default.focus:active,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  border-color: #66afe9;
  outline: 0;
  background: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  color: #999;
}

input.form-control {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  float: left;
  border-left: 0;
  margin-bottom: 20px;
  box-shadow: none;
}
/*-------------------------------------------------------------------------------------------*/
/* SITE STRUCTURE & APPEARANCE */
/*-------------------------------------------------------------------------------------------*/
body {
  background-color: #ffffff;
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 20px;
  background-attachment: fixed;
}
.site-header {
  width: 100%;
}
.header {
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 9;
}
.top-header {
  height: 30px;
}
.middle-header {
  height: 80px;
  position: relative;
  z-index: 8;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.site-header h1.logo {
  position: relative;
  z-index: 1300;
  display: table;
  margin: 0;
  padding: 15px 0 0;
  height: 65px;
  vertical-align: middle;
  line-height: 0;
}
.logo a {
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
}
.contact-info-blocks {
  text-align: right;
}
.contact-info-blocks > div {
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 0 20px;
  border-right: 1px solid #efefef;
  color: #999;
  text-align: left;
}
.contact-info-blocks > div:last-child {
  border-right: 0;
  padding-right: 0;
}
.contact-info-blocks > div > span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #666;
}
.site-header .menu-toggle {
  font-size: 18px;
  margin: 30px 10px 0 0;
  float: right;
}
.site-header .menu-toggle:focus {
  outline: 0;
}
.site-menu {
  display: block;
  position: relative;
  background: #f8f8f8;
  z-index: 7;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.navigation {
  text-align: center;
}
.navigation > ul > li {
  float: left;
  font-size: 15px;
  position: relative;
}
.navigation > ul > li i {
  font-size: 11px;
  margin-left: 5px;
}
.navigation > ul > li > a,
.navigation > ul > li > span {
  padding: 15px 22px;
  display: block;
  text-decoration: none;
}

.navigation ul > li:hover {
  background: #fff;
}

.navigation ul > li:hover > a,
.navigation ul > li:hover > span,
.navigation ul > li.current_menu_item > a,
.navigation ul > li > a.activeHover {
  border-top-width: 2px;
  border-top-style: solid;
  padding: 13px 22px 15px 22px;
  background: #fff;
}
.navigation > ul > li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  display: none;
  min-width: 100%;
  height: auto;
  background: #fff;
  border: 0;
  padding: 0;
  text-align: left;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
.navigation > ul > li:hover ul {
  display: block;
}
.navigation > ul > li > ul li {
  line-height: normal;
  font-size: 14px;
  position: relative;
}
.navigation > ul > li > ul li > a,
.navigation > ul > li > ul li > a.activeHover,
.navigation > ul > li > ul li > span {
  display: block;
  padding: 10px 22px 10px 22px;
  border-bottom: 1px solid #f8f7f3;
  white-space: nowrap;
  text-decoration: none;
  border-top-width: 0;
}
.navigation > ul > li > ul li > a.activeHover {
  background: #e5e5e5;
}
.navigation > ul > li > ul > li:hover > a,
.navigation > ul > li > ul > li > ul > li:hover > a {
  text-decoration: none;
  padding: 10px 22px 10px 22px;
  color: #ffffff;
  border-bottom: 1px solid #f8f7f3;
  border-top-width: 0;
}
@media (max-width: 550px) {
  .navigation > ul > li > ul li > a,
  .navigation > ul > li > ul li > a.activeHover,
  .navigation > ul > li > ul li > span,
  .navigation > ul > li > ul > li:hover > a,
  .navigation > ul > li > ul > li > ul > li:hover > a {
    padding: 14px 22px;
  }
  .navigation ul > li > a.activeHover {
    padding: 20px 22px;
  }
}
.navigation > ul > li > ul li:last-child a {
  border-bottom: 0;
}
.navigation > ul > li > ul li ul {
  left: 100% !important;
  top: 0;
  min-width: inherit;
  border-radius: 0;
  position: absolute;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.navigation > ul > li > ul li:hover ul {
  opacity: 1;
}

.navbar-default {
  background: #f8f8f8;
  border: 0;
  padding: 0;
}

.sticky-wrapper {
  max-height: 50px;
}
/* Site Showcase */
.site-showcase {
  position: relative;
  z-index: 4;
}
/* Hero Slider */
.flexslider {
  margin: 0;
  padding: 0;
  background: url("loader.gif") no-repeat scroll center center;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
.flexslider .slides {
  zoom: 1;
}
.slider-mask {
  width: 100%;
  height: 450px;
  position: absolute;
  z-index: 5;
  display: block;
  display: none;
}
.hero-slider {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  height: 450px;
  width: 100%;
  overflow: hidden;
}
.hero-slider .flex-viewport {
  width: 100%;
}
.hero-slider.flexslider > ul.slides {
  height: 100%;
}
.hero-slider.flexslider ul.slides li {
  height: 450px;
  width: 100%;
  overflow: hidden;
  position: static;
  background-attachment: scroll !important;
}

.slide_text {
  position: absolute;
  top: 20%; 
  max-width: 600px; 
  width: 100%; 
  text-align: center; 
  left: calc(50% - 300px);
}

.flex-caption {
  display: none;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  float: right;
  background: #ffffff;
  position: absolute;
  right: 50%;
  margin-right: -570px;
  padding: 15px;
  border-top: 2px solid #333;
  position: relative;
}
.flex-caption strong.title {
  display: block;
  font-size: 20px;
  font-weight: normal;
  padding: 0 0 15px;
}
.flex-caption strong.title em {
  clear: both;
  color: #999999;
  display: block;
  font-size: 14px;
  font-style: normal;
  width: 100%;
}
.flex-caption .btn {
  margin-top: 10px;
  font-size: 13px;
  border-radius: 0;
}

.flex-caption .btn-primary {
  color: #fff;
}

.flex-caption .fa-caret-down {
  color: #ffffff;
  position: absolute;
  left: -9px;
  top: 0;
  font-size: 30px;
}
.flex-caption .hero-agent-pic {
  border: 3px solid #ffffff;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  position: absolute;
  left: -100px;
  top: -30px;
  z-index: 2;
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3),
    0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3), 0 0 3px rgba(0, 0, 0, 0.3);
}
.flex-caption .hero-agent-contact {
  position: absolute;
  left: -115px;
  top: 20px;
  z-index: 3;
  background: #f8f8f8;
  border: 3px solid #ffffff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 33px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1),
    0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 3px rgba(0, 0, 0, 0.3);
}
.flex-caption .hero-agent-contact:hover {
  background: #efefef;
}
.flexslider .flex-control-nav {
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 111;
  left: 0;
  bottom: 10px;
  padding: 0;
  margin: 0;
}
.hero-slider.flexslider .flex-control-nav {
  bottom: -40px;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
}
.hero-slider.flexslider:hover .flex-control-nav {
  bottom: 10px;
  -webkit-transition: bottom 0.3s 0.2s;
  -moz-transition: bottom 0.3s 0.2s;
  -ms-transition: bottom 0.3s 0.2s;
  -o-transition: bottom 0.3s 0.2s;
  transition: bottom 0.3s 0.2s;
}
.flexslider .flex-control-nav li {
  display: inline;
}
.flexslider .flex-control-nav a {
  width: 25px;
  height: 8px;
  background-color: #ffffff;
  display: inline-block;
  margin: 0 6px;
  text-indent: -9999px;
  text-decoration: none;
}
.flexslider .flex-prev,
.flexslider .flex-next {
  background: rgba(0, 0, 0, 0.6);
  color: #f8f7f3;
  display: block;
  margin-bottom: 10px;
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 14px;
  line-height: 25px;
  width: 25px;
  height: 25px;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  display: none;
  text-align: center;
}
.flexslider .flex-prev {
  left: 10px;
  right: auto;
}
.flexslider .flex-prev:before {
  content: "\f104";
}
.flexslider .flex-next:before {
  content: "\f105";
}
.hero-slider.flexslider .flex-prev,
.hero-slider.flexslider .flex-next {
  width: 40px;
  height: 40px;
  right: -40px;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
  font-size: 20px;
  line-height: 40px;
  display: block;
  margin-top: -20px;
}
.flexslider:hover .flex-prev,
.flexslider:hover .flex-next {
  display: block;
}
.hero-slider.flexslider .flex-prev {
  left: -40px;
}
.hero-slider.flexslider:hover .flex-prev {
  left: 10px;
  -webkit-transition: left 0.3s 0.2s;
  -moz-transition: left 0.3s 0.2s;
  -ms-transition: left 0.3s 0.2s;
  -o-transition: left 0.3s 0.2s;
  transition: left 0.3s 0.2s;
}
.hero-slider.flexslider:hover .flex-next {
  right: 10px;
  -webkit-transition: right 0.3s 0.2s;
  -moz-transition: right 0.3s 0.2s;
  -ms-transition: right 0.3s 0.2s;
  -o-transition: right 0.3s 0.2s;
  transition: right 0.3s 0.2s;
}

.site-search-module {
  position: absolute;
  z-index: 8;
  bottom: -110px;
  left: 0;
  width: 100%;
}
.site-search-module-inside {
  padding: 15px;
  background: #f8f8f8;
  border-top: 2px solid #333;
}

.contact-form.site-search-module-inside {
	padding:0;
	background: transparent;
	border-top:0;
}
.contact-form.site-search-module-inside h4 {font-weight: bold; margin-top:15px;}
.contact-form.site-search-module-inside .g-recaptcha {float: left;}

.btn-primary {
  background-color: #eee;
  color: #222;
}

.btn-primary:hover {
  background: #eee !important;
}

.site-search-module-inside .form-group {
  margin-bottom: 0;
}
.site-search-module-inside .btn {
  padding-top: 14px;
  padding-bottom: 12px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-size: 15px;
  border-radius: 0;
  color: #fff;
}

.site-search-module-inside .btn:hover {
  opacity: 1;
}

.site-search-module-inside .btn.dropdown-toggle {
  color: #333;
}

.site-search-module-inside .btn.dropdown-toggle:hover {
  color: #222 !important;
}
.site-search-module-inside .selectpicker.btn {
  padding-top: 12px;
}

.site-search-module-inside label {
  width: 100%;
  float: left;
  color: #333;
}

#ads-trigger {
  background: #eee none repeat scroll 0 0 !important;
  border-bottom: 0 none;
  box-shadow: 1px 1px 0 #ccc;
  color: #333;
  display: inline-block;
  padding-bottom: 10px;
}

#ads-trigger:hover,
#ads-trigger:focus {
  color: #fff;
}

.mobile_button {
  display: none;
}

#map {
  background: #eee none repeat scroll 0 0 !important;
  border-bottom: 0 none;
  box-shadow: 1px 1px 0 #ccc;
  color: #333;
  display: inline-block;
  font-size: 24px;
  padding: 5px;
}

.main {
  position: relative;
  z-index: 5;
  background: #ffffff;
  -webkit-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
}
.home .main {
  z-index: 5;
}
.content {
  padding: 30px 0;
}

.content.offer {
  padding: 0 0 30px;
}

.sidebar {
  padding-top: 30px;
}

.property-block {
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
  background: #ffffff;
}
.property-block:hover {
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}
.property-featured-image,
.agent-featured-image {
  display: block;
  position: relative;
  text-align: center;
}

.property-featured-image img.lazy {
  max-height: 230px;
}

.nophoto {
  color: #999;
  color: #eeeeee;
  display: table-cell;
  font-size: 100px;
  left: calc(50% - 53px);
  min-height: 215px;
  position: absolute;
}
.nophoto i {
  position: absolute;
  top: calc(50% - 50px);
}
.overlay {
  width: 100%;
  height: 100%;
  line-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
}
.property-featured-image:hover .overlay,
.agent-featured-image:hover .overlay {
  -webkit-transition: opacity 0.3s 0.2s;
  -moz-transition: opacity 0.3s 0.2s;
  -ms-transition: opacity 0.3s 0.2s;
  -o-transition: opacity 0.3s 0.2s;
  transition: opacity 0.3s 0.2s;
  opacity: 1;
}
#featured-properties .overlay {
  line-height: 160px !important;
}
.property-featured-image .badges {
  position: absolute;
  z-index: 0;
  left: 10px;
  top: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  font-weight: 700;
}
.property-info,
.agent-info {
  padding: 15px;
  display: block;
  position: relative;
  border-bottom: 5px solid #fff;
}

.property-info h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.property-amenities {
  background: #eee;
}
.property-amenities > span {
  border-right: 5px solid #fff;
  display: block;
  float: left;
  font-size: 11px;
  padding: 10px;
  text-align: left;
  line-height: 24px;
  text-transform: uppercase;
  width: 33.3%;
  min-height: 44px;
  position: relative;
}
.investments .property-amenities > span.property-price {
  width: 66.6%;
}
.property-amenities > span:last-child {
  border-right: none;
}
.property-amenities > span > strong {
  display: block;
  font-size: 14px;
  max-width: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  right: 13px;
  background: #eeeeee;
  padding-left: 1px;
}
.investments .property-amenities > span > strong {
  position: static;
}
.investments .property-amenities > span.property-price > strong {
  max-width: none;
}
@media (min-width: 491px) and (max-width: 767px) {
  .investments .property-amenities > span > strong {
    width: 100%;
    max-width: none;
  }

  .investments .property-amenities > span.property-price > strong {
    width: auto;
  }
}
.property-info h4,
.agent-info h4 {
  margin-bottom: 0;
}
.property-info .location {
  display: block;
  font-size: 100%;
  padding: 0 0 10px 0;
}
.price:not(.inv),
.counts {
  display: inline-block;
  background: #666;
  margin: 0 2px;
  color: #fff;
  height: 30px;
}
.price strong,
.counts strong {
  background: rgba(0, 0, 0, 0.1);
  padding: 0 7px;
  line-height: 30px;
  height: 30px;
  display: inline-block;
  font-weight: 400;
}
.price span,
.counts span {
  padding: 0 7px;
  line-height: 30px;
  height: 30px;
  font-weight: 700;
}
#latest-properties .property-block {
  margin-bottom: 40px;
}
.block-heading-fw {
  background: #fff;
  padding: 10px 0;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
}
.block-heading-fw h3 {
  margin-bottom: 0;
}
.block-heading-fw .btn-sm {
  margin-top: 5px;
}
.sort-source a {
  text-decoration: none;
}
.block-heading {
  background: #eee;
  height: 50px;
  margin-bottom: 30px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.block-heading div.title {
  line-height: 50px;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  font-size: 16px;
  padding-right: 20px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 15px;
  overflow: hidden;
}
.block-heading h4 {
  line-height: 50px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  padding-right: 20px;
  margin-bottom: 15px;
}
.block-heading div.title span i {
  color: #fff;
}
.block-heading h4 span i {
  color: #fff;
}

.block-heading .heading-icon {
  background: rgba(0, 0, 0, 0.1);
  width: 50px;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
  position: relative;
}
.block-heading .heading-icon .icon-design {
  font-size: 20px;
  position: absolute;
  right: -7px;
  top: 16px;
}
.block-heading .btn-sm {
  margin: 12px 17px 0 0;
}
.bottom-blocks h3 {
  margin-bottom: 30px;
}
.features-list li .icon {
  font-size: 30px;
  line-height: 40px;
  float: left;
  width: 15%;
}
.features-list li .text {
  float: left;
  width: 85%;
}
.features-list li .text h4 {
  margin-bottom: 5px;
}
.popular-agent .img-thumbnail {
  margin-bottom: 15px;
}
.contact-info li {
  margin: 5px 0;
  border-bottom: 0 !important;
  white-space: nowrap;
}
.contact-info li i {
  margin-right: 7px;
}

.site-header .social-icons {
  margin-top: 30px;
}

.flex .container.search-form {
  margin-bottom: 25px;
}

/* Property Listing */
.property-listing > ul > li,
.agents-listing > ul > li {
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -ms-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.1s;
  background: #ffffff;
  margin-bottom: 25px;
  box-shadow: 3px 3px 22px #ccc;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
}
.property-listing > ul > li:hover,
.agents-listing > ul > li:hover {
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}
.property-listing > ul > li:last-child,
.agents-listing > ul > li:last-child {
  margin-bottom: 0;
}
.property-listing .property-info,
.agents-listing .agent-info {
  padding: 0 0 10px 0;
  margin-top: -8px;
  border-bottom: 0;
}

.property-listing .property-info a.print {
  float: right;
  padding: 5px 8px;
  font-size: 18px;
  border: 1px solid #eee;
  color: #999;
}

.property-listing .property-amenities {
  border-bottom: 5px solid #fff;
  width: 100%;
}
.property-listing .property-amenities.down {
  border-bottom: 0;
}
.property-listing .property-amenities strong {
  display: inline-block;
  float: right;
}
.property-listing .property-amenities span.property-details_link {
  text-align: center;
}

.property-listing .property-amenities span.property-details_link a {
  text-decoration: none;
  color: #fff;
  display: block;
}
.property-listing .property-amenities span.property-details_link:hover {
  -webkit-transition: opacity 0.3s 0.2s;
  -moz-transition: opacity 0.3s 0.2s;
  -ms-transition: opacity 0.3s 0.2s;
  -o-transition: opacity 0.3s 0.2s;
  transition: opacity 0.3s 0.2s;
  opacity: 0.7;
}
.agent-contacts li {
  display: inline-block;
  margin: 5px 20px 0 0;
}

.property-listing h3 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}
.property-grid > ul > li {
  margin-bottom: 25px;
}
.toggle-view {
  margin: 15px 20px 0 0;
}
.toggle-view a {
  margin-left: 10px;
  color: #999;
  font-size: 20px;
}
.toggle-view a.active {
  color: #666;
}
.pagination {
  margin: 30px 0;
  float: right;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}
.full-search-form {
  padding: 15px;
  background: #efefef;
}
.full-search-form label {
  margin-top: 0;
  padding-top: 0;
  line-height: normal;
}
.page-header {
  margin: 0;
  position: relative;
  padding: 40px 0;
  border: 0;
  background-color: #666;
}
.page-header h1 {
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1em;
}
.page-header p {
  color: #d8d6d1;
  margin: 0;
}
.single-property .property-amenities {
  border-bottom: 3px solid #efefef;
}
.single-property .property-amenities span {
  font-size: 14px;
  width: 20%;
}
.single-property .property-amenities strong {
  display: inline-block;
  margin-right: 5px;
}
.single-property h2.page-title {
  margin-bottom: 10px;
}
.location {
  font-size: 60%;
  color: #999;
  font-family: "Open Sans", sans-serif !important;
}
.location > i {
  opacity: 0.5;
}
.property-slider {
  margin: 30px 0;
}
.property-slider #property-images {
  position: relative;
  text-align: center;
}
.property-slider #property-images img {
  width: 100%;
  height: auto;
}
.property-slider #property-thumbs {
  position: relative;
  background: #eee;
  padding: 10px;
}
.property-slider #property-thumbs .flex-prev {
  left: 20px;
  margin-top: -10px;
}
.property-slider #property-thumbs .flex-next {
  right: 20px;
  margin-top: -10px;
}
.property-slider #property-thumbs .slides li {
  margin: 0 5px;
}
.property-slider #property-thumbs img {
  cursor: pointer;
  opacity: 0.45;
}
.property-slider #property-thumbs .flex-active-slide img {
  opacity: 1;
}
.property-slider #property-thumbs ul.slides img {
  max-width: 150px;
}
/*======== property details ========*/

.virtual_tour {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  height: calc(100% - 180px);
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 9999;
}

.virtual_tour .in {
  display: block;
}

.virtual_tour img {
  margin: 0 auto;
  display: block;
}
.virtual_tour span {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 13px;
  display: block;
}
.virtual_tour a {
  margin: 25px auto 0;
  text-align: center;
  color: #fff;
  display: table;
  font-size: 13px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 1);
  text-decoration: none;
  transition: 0.5s;
}

.virtual_tour a:hover {
  opacity: 0.8;
}

.virtual_tour_frame {
  display: table;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

#VirtualVisit .modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#VirtualVisit .modal-dialog {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

#VirtualVisit .modal-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  border-radius: 0;
  box-shadow: none;
}

#VirtualVisit .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  padding: 10px;
  border: 0;
}

#VirtualVisit .modal-title {
  color: #fff;
}

#VirtualVisit .close {
  color: #fff;
  opacity: 0.9;
}

#VirtualVisit .modal-body {
  position: absolute;
  top: 50px;
  bottom: 60px;
  width: 100%;
  font-weight: 300;
  overflow: auto;
}

#VirtualVisit .modal-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 0;
}

.top-bar-property {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 10px 0;
  position: relative;
}
.top-bar-property .icons {
  float: right;
  position: relative;
  top: 5px;
}

.top-bar-property a.icon {
  float: left;
  line-height: 24px;
  font-size: 24px;
  margin: 0 5px;
}
.top-bar-property a.map {
  position: absolute;
  right: 60px;
  top: 13px;
  line-height: 24px;
  font-size: 24px;
}
.top-bar-property .price {
  background: #fff;
  font-size: 18px;
  line-height: 18px;
  color: #333;
  padding: 0 15px 0 15px;
}
.investment_details .top-bar-property .price {
  display: inline-block;
}
.top-bar-property .price strong {
  font-weight: bold;
}
.top-bar-property .oldPrice {
  opacity: 0.3;
}
.top-bar-property .price span {
  font-weight: normal;
}
.property-details {
  margin: 30px 0;
  max-height: 370px;
  overflow: hidden;
}

button#more-details {
  margin-bottom: 30px;
}

.property-details .area {
  padding: 10px;
  border-bottom: 1px solid #eee;
  float: left;
  width: 100%;
}

.investment_details .property-details .area {
  width: 100%;
}

.property-details .area:hover {
  background: #eee;
}
.property-details .area strong {
  float: right;
  max-width: 60%;
  text-align: right;
}

.investment_details .property-details .area strong {
  text-transform: none;
}

#description,
#office-description {
  margin-bottom: 30px;
}
#description ul {
  list-style-type: unset;
  margin: 10px 0 10px 30px;
}
#description p b,
#description p strong,
.note-editor b {
  font-weight: bold;
}

.additional-info {
  margin-bottom: 30px;
}
.additional-info span {
  display: inline-block;
  overflow: hidden;
  padding: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
}
.additional-info span i {
  margin-left: 15px;
  width: 16px;
}

.additional-info span i.fa-check {
  color: #00ff87;
}
.additional-info span i.fa-times {
  color: red;
}

#map-canvas {
  margin: 0;
  padding: 0;
  height: 100%;
}

#map-canvas {
  width: 100%;
  height: 480px;
}

.modal-content {
  border-radius: 0;
}

/*
Full screen Modal
*/
.fullscreen-modal .modal-dialog {
  margin: 20px auto;
  width: 90%;
}
@media (min-width: 768px) {
  .fullscreen-modal .modal-dialog {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .fullscreen-modal .modal-dialog {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .fullscreen-modal .modal-dialog {
    width: 90%;
  }
}

.plans {
  margin-bottom: 30px;
  text-align: center;
}
.plans a {
  border: 1px solid #eee;
  display: inline-block;
  height: 220px;
  margin: 10px;
  width: 320px;
}
.plans a img {
  width: 300px;
  height: 200px;
  margin: 10px;
}

.agent {
  margin-bottom: 30px;
}
.agent .center {
  text-align: center;
}
.agent span {
  background: #eee none repeat scroll 0 0;
  display: block;
  margin: 5px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 6px 6px 10px;
}
.agent span i {
  width: 40px;
  text-align: center;
}

.contact-form {
  margin-bottom: 30px;
}
.contact-form .form-group {
  display: inline-block;
  margin-bottom: 0;
  width: 100%;
}
.contact-form .checkbox label {
  font-size: 10px;
  line-height: 14px;
  text-align: justify;
}

.contact-form .checkbox label input {
  margin-top: 1px;
}

.clause-line span {
  display: block;
}

.checkbox.clause-line.submit-form {width:100%; float:left;}

.clause-line span a,
.clause-line a {
  color: #5e5e5e;
  text-decoration: underline !important;
  cursor: pointer;
}

.contact-form .form-group p.clausule {
  font-size: 10px;
  line-height: 14px;
  margin: 20px 0;
  text-align: justify;
}
.contact-form textarea.form-control {
  background-color: #fff;
  border-top: 0 none;
  border-right: 0 none;
  border-left: 0 none;
  margin-bottom: 10px;
  position: relative;
  border-radius: 0;
  resize: vertical;
  transition: box-shadow 0.15s linear 0s;
}
textarea.form-control {
  box-shadow: none;
}
.form-control.error,
input[type=checkbox].error ~ span.checkmark {
  border-color: red;
}
.has-float-label textarea {padding-top: 20px;}
#property-error-msg li {
  border-bottom: 0;
  margin-bottom: 5px;
  padding-bottom: 0;
}

.map-marker {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto 40px;
}
.map-marker a {
  background: url(../images/map.jpg) no-repeat;
  background-size: 100%;
  width: 100%;
  border: 5px solid #fff;
  display: block;
  box-shadow: 1px 1px 1px #ccc;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.map-marker a span {
  transition: all 0.15s linear 0s;
  padding: 10px 20px;
}

.map-marker a:hover span {
  opacity: 0.8;
}

/*======== property details end ========*/

/*======== Newsletter ========*/

.newsletter-form {
  display: block;
}
.newsletter-form input {
  float: none;
}
.newsletter-form button.btn {
  margin-top: 11px;
}

/*======== Newsletter end ========*/

.company-details {
  margin: 0 0 30px;
}
.company-details .area {
  padding: 10px;
  border-bottom: 1px solid #eee;
  float: left;
  width: 100%;
}

.company-details .area:hover {
  background: #eee;
}

.company-details .area i {
  width: 25px;
  text-align: center;
}

.company-details .area strong {
  float: right;
  padding-left: 28px;
}

.error-404 {
  text-align: center;
}
.error-404 h2 {
  font-size: 80px;
}
.image-placeholder {
  background: #eee;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Widgets */
.widget {
  margin-bottom: 40px;
}
.widget ul > li {
  padding: 0 0 12px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #efefef;
}
.widget a {
  text-decoration: none;
}
#back-to-top {
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 50px;
  display: none;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

/*
	  ==============================================================
		   Investment list Start
	  ==============================================================
*/
.offer-filters {
  float: left;
  width: 100%;
}

.filters {
  background: #eee;
  margin: 0 0 10px;
}

.filters label {
  margin-top: 8px;
  font-weight: bold;
}

.filters input {
  border: 1px solid #e4e4e4;
  padding: 4px 15px;
  width: calc(50% - 6px);
  float: left;
  border-radius: 0;
  margin: 0 2px 10px;
  height: 36px;
}

#inv-offers .filters input {
  margin-bottom: 10px;
}

#inv-offers .form-group {
  display: table;
  margin: 0;
}

.svg-icon-options {
  transition: all 0.3s ease 0.1s;
  margin-right: 5px;
}

.btn:hover .svg-icon-options,
.btn:active .svg-icon-options,
.btn:focus .svg-icon-options {
  fill: #fff;
}

#clearFiltres {
  float: right;
  margin: 0 10px 10px;
  cursor: pointer;
  text-decoration: underline;
}
#clearFiltres:hover {
  text-decoration: none;
}

table.sort {
  margin-bottom: 0;
}

table.sort th {
  text-align: center;
}

table.sort th:nth-child(1) {
  width: 7%;
}

table.sort th:nth-child(2) {
  width: 13%;
}

table.sort th:nth-child(3) {
  width: 17%;
}

table.sort th:nth-child(4) {
  width: 13%;
}

table.sort th:nth-child(5) {
  width: 15%;
}

table.sort th:nth-child(6) {
  width: 10%;
}

table.sort th:nth-child(7) {
  width: 20%;
}

table.sort th:nth-child(8) {
  width: 5%;
}
table.sort th i {
  cursor: pointer;
  opacity: 0.5;
}

table.sort th i:hover {
  opacity: 1;
}

table.sort th i.active {
  opacity: 1;
}

table.property-data a {
  font-size: 12px;
}

table.property-data td {
  text-align: center;
}

table.property-data td:nth-child(1) {
  width: 7%;
}

table.property-data td:nth-child(2) {
  width: 13%;
}

table.property-data td:nth-child(3) {
  width: 17%;
}

table.property-data td:nth-child(4) {
  width: 13%;
}

table.property-data td:nth-child(5) {
  width: 15%;
}

table.property-data td:nth-child(6) {
  width: 10%;
}

table.property-data td:nth-child(7) {
  width: 20%;
}

table.property-data td:nth-child(8) {
  width: 5%;
}

#inv-offers .table {
  min-width: 680px;
}

.property-data tbody tr {
  cursor: pointer;
}

/*
	  ==============================================================
		   Investment list End
	  ==============================================================
*/

/* ==================================================
 Alerts
================================================== */

.alert {
	margin-bottom: 20px;
	padding: 15px 15px 15px 15px;
	border: 1px solid #efefef;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background-color: #f8f8f8;
	text-shadow: none;
}

.alert hr {
	margin: 5px 0;
	opacity: .2;
}

.alert .close {
  position: relative;
  top: 0px;
  right: -22px;
  color: #ffffff;
  text-shadow: none;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: opacity 0.1s linear 0s;
  -moz-transition: opacity 0.1s linear 0s;
  -ms-transition: opacity 0.1s linear 0s;
  -o-transition: opacity 0.1s linear 0s;
  transition: opacity 0.1s linear 0s;
}

.alert .close:hover {
  text-decoration: none;
  opacity: 1;
}
.alert-standard {
  border-color: #efefef;
  background-color: #f8f8f8;
}
.alert-standard,
.alert-standard .close {
  color: #666;
}
.alert-success {
  border-color: #d6e9c6;
  background-color: #dff0d8;
}
.alert-success,
.alert-success .close {
  color: #468847;
}
.alert-danger,
.alert-error {
  border-color: #ebccd1;
  background-color: #f2dede;
}
.alert-danger,
.alert-danger .close,
.alert-error,
.alert-error .close {
  color: #b94a48;
}
.alert-info {
  border-color: #bce8f1;
  background-color: #d9edf7;
}
.alert-info,
.alert-info .close {
  color: #3a87ad;
}
.alert-warning {
  border-color: #faebcc;
  background-color: #fcf8e3;
}
.alert-warning,
.alert-warning .close {
  color: #c09853;
}

/*===== Parallax ========*/

.parallax {
  background-attachment: fixed !important;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #eee;
  min-height: 500px;
}
.touch .parallax,
.page-header.parallax {
  background-attachment: scroll !important;
}

.parallax h3 {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  float: right;
  font-size: 28px;
  padding: 20px 40px;
  text-transform: none;
}

/*=====	Oferty specjalne ========*/

.property-box-simple {
  background-color: #fff;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.property-box-simple:hover .property-box-simple-header h3 a,
.property-box-simple:hover .property-box-simple-header h3 {
  color: #fff;
}

.property-box-simple:hover .property-box-simple-header h4 {
  color: #fff;
}

.property-box-simple-meta {
  padding: 16px 30px;
}

.property-box-simple-meta ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.property-box-simple-meta li {
  display: block;
  font-size: 12px;
  line-height: 28px;
  margin: 0 !important;
  overflow: hidden;
  padding: 0 !important;
}

.property-box-simple-meta li i {
  width: 20px;
}

.property-box-simple-meta span {
  color: #333;
}

.property-box-simple-meta strong {
  color: #424242;
  float: right;
}

.property-box-simple-header {
  background-color: #eeeeee;
  padding: 16px 30px;
  position: relative;
  transition: color 0.15s linear;
}

.property-box-simple-header h3,
.property-box-simple-header h4 {
  line-height: 1.4;
  margin: 0px;
  padding: 0px;
}

.property-box-simple-header h3 {
  color: #424242;
  display: block;
  font-size: 18px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s linear;
  white-space: nowrap;
}

.property-box-simple-header h3 a {
  transition: color 0.15s linear;
}

.property-box-simple-header h4 {
  color: #999;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  transition: color 0.15s linear;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.property-box-simple-image-inner img {
  position: relative;
  z-index: 2;
}

.property-badge {
  height: 110px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 9;
  width: 110px;
}
.property-badge .reservation {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 30px;
  left: 40%;
  line-height: 30px;
  margin-left: -100px;
  margin-top: -15px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  top: 40%;
  transform: rotate(-45deg);
  width: 200px;
}
.property-badge .provision {
  background-color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 30px;
  left: 40%;
  line-height: 30px;
  margin-left: -100px;
  margin-top: -15px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  top: 40%;
  transform: rotate(-45deg);
  width: 200px;
}

.property-badge-sticky {
  background-color: #d81b60;
  color: #fff;
  left: auto;
  right: 12px;
}
.property-box-image {
  background-color: #eeeeee;
  overflow: hidden;
  position: relative;
  width: auto;
  min-height: 240px;
}
.item .property-box-image {
  min-height: 175px;
}
.item .property-box-image .nophoto {
  min-height: 175px;
}
.property-box-image .nophoto {
  display: block;
}

.property-box-image > a {
  display: block;
  text-align: center;
  height: 100%;
}
/*=====	Kategorie dynamiczne ========*/

.dynamic-categories {
  padding: 0;
}

.dynamic-categories section {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.dynamic-categories section h2 {
  margin: 0;
}

.dynamic-categories li .cat-hover {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.dynamic-categories li .heading {
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  margin: 0px;
  padding: 0px;
  line-height: 36px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding-left: 20px;
  left: 0px;
  text-transform: uppercase;
  opacity: 0.9;
}
.dynamic-categories .cat-hover {
  padding: 20px;
  padding-top: 80px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.dynamic-categories .cat-hover a.type {
  display: block;
  width: 50%;
  text-decoration: none;
  float: left;
  font-size: 16px;
  margin-top: 25px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

li.col-sm-2-5 a.type {
  margin-top: 0 !important;
}

.dynamic-categories .cat-hover a.biglink {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dynamic-categories .cat-hover a.type:hover {
  opacity: 0.5;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.dynamic-categories li .heading:hover {
  background: #fff;
}
.dynamic-categories li p {
  color: #333;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.dynamic-categories li:hover .cat-hover {
  background: rgba(250, 250, 250, 0.85);
}
.dynamic-categories li:hover .cat-hover p {
  opacity: 1;
}
.dynamic-categories li:hover .icon {
  background: none;
}
.dynamic-categories li:hover .heading {
  background: #fff;
}

.dynamic-categories ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}

/*=====	Footer ========*/

footer {
  float: left;
  padding: 30px 0 0;
  width: 100%;
}
footer .container .footer-contact p {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  width: 100%;
}
footer .container .footer-contact p a {
  text-decoration: none;
  color: #fff;
}
footer .container .footer-contact p a:hover {
  opacity: 0.7;
}
footer .container .footer-contact p i {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  margin-right: 5px;
  text-align: center;
  padding: 10px;
  width: 38px;
}
footer .container span.footer-title {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 16px;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 15px;
}

footer .container .textwidget p {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
}
.copyright {
  display: table;
  margin: 10px auto 0;
  width: 100%;
  background: #222;
}
.copyright small {
  color: #fff;
  float: left;
  padding: 15px 0;
}
.copyright .social {
  margin: 0;
  padding: 10px 0;
}
.social span {
  background-color: #000;
  color: #ffffff;
  float: left;
  font-size: 15px;
  height: 30px;
  line-height: 30px;
  margin-left: 5px;
  position: relative;
  text-align: center;
  width: 30px;
  z-index: 5;
}

.copyright .header_column {
  width: 100%;
}
.copyright .column_four {
  padding-top: 0;
}
.copyright .header_social a {
  float: none;
  margin: 0;
}
.copyright .social span {
  position: inherit;
  background: none;
  margin-top: 5px;
}
.copyright .header_social i {
  border-color: transparent;
  color: #444;
  background-color: #000;
}
.copyright p {
  margin-top: 5px;
}

/*=====	Panel sortowania na listingu ========*/

.sort-by-section {
  padding: 0 15px;
}
.sort-by-section li {
  float: left;
  padding: 9px 5px 0;
}
.sort-by-section h4 {
  float: left;
}
.sort-by-section .sort-bar {
  float: right;
}
.sort-by-section .sort-bar .sort-by-container {
  position: relative;
  display: block;
}
.sort-by-section .sort-bar .sort-by-container > span {
  background: #f5f5f5;
  height: 34px;
  padding: 0 45px 0 15px;
  line-height: 34px;
  display: block;
  color: #9e9e9e;
}
.sort-by-section .sort-bar .sort-by-container > span:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 30px;
  background: #d9d9d9;
  content: "";
}
.sort-by-section .sort-bar .sort-by-container:before,
.sort-by-section .sort-bar .sort-by-container:after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 50%;
  right: 12px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
}
.sort-by-section .sort-bar .sort-by-container:before {
  margin-top: -6px;
  border-bottom: 5px solid #fff;
}
.sort-by-section .sort-bar .sort-by-container:after {
  margin-top: 2px;
  border-top: 5px solid #fff;
}
.sort-by-section .sort-bar .sort-by-size .sort-by-container.desc:before {
  border-bottom: 0;
}
.sort-by-section .sort-bar .sort-by-size .sort-by-container.asc:after {
  border-top: 0;
}
.sort-by-section .sort-bar .sort-by-price .sort-by-container.desc:before {
  border-bottom: 0;
}
.sort-by-section .sort-bar .sort-by-price .sort-by-container.asc:after {
  border-top: 0;
}
.sort-by-section .sort-bar .sort-by-city .sort-by-container.desc:before {
  border-bottom: 0;
}
.sort-by-section .sort-bar .sort-by-city .sort-by-container.asc:after {
  border-top: 0;
}
.sort-by-section .swap-tiles {
  float: right;
  font-size: 33px;
}
.sort-by-section .swap-tiles li > a > i {
  display: block;
  width: 34px;
  line-height: 34px;
  height: 34px;
  background: #f5f5f5;
  color: #d9d9d9;
  text-align: center;
}
.sort-by-section .swap-tiles li:hover > a > i,
.sort-by-section .swap-tiles li.active > a > i {
  background: #01b7f2;
  color: #fff;
}
.sort-by-section .swap-tiles li.swap-list > a > i {
  font-size: 30px;
}
a.sort-by-container {
  text-decoration: none;
}

/**
* Preloader box Styles.
**/
.header_wrapper {
  width: 100%;
  background: #fff;
}
#header_area .logo_area > div {
  position: relative;
  text-align: center;
}

#header_area .logo_area h1 {
  margin: 0 auto;
  display: table;
}

#header_area .logo_area > div a {
  display: table-cell;
  height: 72px;
  line-height: 0;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
.header_top_bar {
  padding: 20px 0;
  float: left;
  -webkit-transition: padding 0.8s linear;
  -moz-transition: padding 0.8s linear;
  -ms-transition: padding 0.8s linear;
  -o-transition: padding 0.8s linear;
  transition: padding 0.8s linear;
  width: 100%;
}
.logo_area img {
  max-height: 93px;
  max-width: 263px;
  margin-bottom: -18px;
  margin-top: -18px;
}
.column_details {
  float: left;
  width: 100%;
}
.column_details span.headline {
  font-family: "Open Sans", sans-serif;
  color: #333;
  font-size: 14px;
  display: block;
  margin: 15px 0 0;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.details_icon i {
  margin-left: 15px;
  font-size: 13px;
  font-style: normal;
}

.column_details {
  float: left;
}

.column_right span.info,
.column_right span.info a {
  font-family: "Open Sans", sans-serif;
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0;
  overflow: hidden;
  text-decoration: none;
}

.column_right span.info {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.column_multi_branches .column_right span.info a {
  display: inline;
}

.column_right span.info a {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.column_right span.info a {
  color: #333;
  text-decoration: none;
}
.column_right span.info a:hover {
  opacity: 0.7;
}
.column_one {
  width: 100%;
}
.column_two {
  width: 100%;
}

.column_three {
  width: 100%;
}
.column_left i {
  float: left;
  font-size: 34px;
  height: 100%;
  margin-right: 10px;
  padding-top: 18px;
}

#multi_branches .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  min-height: 84px;
}

#multi_branches .column_left i {
  margin-right: 0;
}

#multi_branches .item .header_column {
  width: 100%;
}
#multi_branches .item .column_one {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

#multi_branches .owl-carousel .owl-wrapper-outer {
  width: 100% !important;
}

#multi_branches .item .column_one .column_right {
  margin-left: 10px;
}
#multi_branches .item .column_one .column_right span.head-info-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#multi_branches .column_left i {
  padding-top: 0;
}

#multi_branches .owl-carousel {
  margin-left: 0;
}

#multi_br .header_column {
  float: none;
  width: auto;
}
#multi_br .column_four {
  padding-top: 15px;
}
@media only screen and (min-width: 1200px) {
  #multi_branches {
    height: 70px;
    position: relative;
    top: -6px;
  }
}

#multi_br {
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
}

@media only screen and (max-width: 1200px) {
  #multi_branches .owl-carousel {
    margin-left: 0;
    margin-bottom: 20px;
  }

  #multi_br {
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }
  #multi_br .column_four {
    padding: 0;
    margin: 0;
  }
}

@media only screen and (max-width: 600px) {
  #multi_branches .item {
    flex-flow: column nowrap;
  }
  #multi_branches .owl-carousel {
    margin-bottom: 0;
  }
  #home-search .custom-checkbox {
    margin-top: 0;
  }

  .custom-checkbox {
    float: none;
  }
  #home-search #location-street {
    margin-bottom:15px;
  }
}
/*.column_left i.fa-phone-square, .column_left i.fa-phone {
	padding-top:21px;
}*/
.column_right {
  float: left;
  width: 75%;
}
.column_right.top {
  padding-top: 15px;
}

.column_three h3 {
  font-weight: 700;
}
.column_four {
  width: 100%;
  float: right;
  padding-top: 15px;
}
.header_social {
  float: right;
  height: 40px;
  overflow: hidden;
}
.header_social a {
  float: left;
  margin: 5px 1px;
  text-decoration: none;
}
.header_social i {
  border: 1px solid #eee;
  font-size: 18px;
  padding: 7px 0 4px;
  text-align: center;
  width: 28px;
}
.header_social i:hover {
  color: #fff;
  opacity: 0.6;
}

.header_column {
  float: left;
  width: 25%;
}

.no-numbers .header_column {width:33%;}

.film {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
}

.pp_description {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 16px !important;
}
div.pp_default a.pp_arrow_previous,
div.pp_default a.pp_arrow_next {
  display: none;
}
div.pp_default .pp_nav .currentTextHolder {
  left: 30px !important;
}

/*-------------------------------------------------------------------------------------------*/
/* Responsive Classes
/*-------------------------------------------------------------------------------------------*/
@media (min-width: 992px) {
  .header_wrapper.smaller {
    position: fixed;
    top: 0;
    z-index: 999;
  }
  .header_wrapper.smaller {
    height: 122px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media only screen and (min-width: 760px) and (max-width: 1180px) {
  .dynamic-categories .cat-hover {
    padding-top: 40px;
  }
  .dynamic-categories .cat-hover a.type {
    font-size: 12px;
    text-align: center;
  }
}
@media only screen and (min-width: 760px) and (max-width: 980px) {
  .dynamic-categories .cat-hover {
    padding-top: 25px;
  }
  .dynamic-categories .cat-hover a.type {
    margin-top: 0px;
    width: 100%;
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_top_bar {
    padding: 0;
  }
  .logo_area img {
    padding: 0;
    margin: 0;
  }

  .navigation > ul > li > a {
    padding: 15px 16px;
  }
  .navigation ul > li:hover > a,
  .navigation ul > li.current_menu_item > a {
    padding: 12px 16px 15px 16px;
  }
  .flex-caption {
    margin-right: -460px;
    margin-top: 128px;
  }
  #featured-properties .overlay {
    line-height: 150px !important;
  }
  .grid-content .meta-data > span {
    padding: 10px 10px;
  }
  #header_area .logo_area > div {
    position: relative;
    padding: 0;
    background: #fff;
    text-align: center;
  }
  #header_area .logo_area > div:before {
    background: none;
  }

  .logo_area img {
    padding: 0;
    top: 0;
    position: relative;
    max-width: 400px;
    max-height: 86px;
  }
  #header_area .logo_area > div a {
    height: 100px;
  }

  .dynamic-categories .cat-hover a.type {
    margin-top: 0;
  }
}
@media only screen and (max-width: 992px) {
  .site-search-module-inside #ads-trigger {
    margin-top: 15px;
  }
  .slide_text {
    top: inherit;
    max-width: 600px;
    left: 0;
    bottom: 0;
    font-size: 18px !important;
  }
  .no-numbers .header_column {width:100%;}

  #AddFields {
    margin-top: 30px;
    display: none;
  }
  .mobile_button {
    display: block;
    margin-top: 5px;
  }
  .pc_button {
    display: none;
  }
  .site-search-module-inside #location {
    margin-bottom: 16px;
  }

  .navbar-nav {
    margin: 0;
    width: 100%;
  }

  .hero-slider {
    height: auto;
  }
  .hero-slider.flexslider ul.slides li {
    height: auto;
    background-size: 100%;
  }
  .parallax {
    min-height: 200px;
    background-color: #fff;
  }

  .map-marker a {
    padding: 40px 0;
  }
  .nophoto {
    display: none;
  }
  .sticky-wrapper {
    height: auto !important;
  }
  .middle-header {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .main-menu-wrapper {
    height: auto;
    position: absolute;
    width: 100%;
    background: #eee;
    display: none;
    z-index: 9999;
  }
  .navigation > ul > li {
    display: block;
    width: 100%;
    line-height: normal;
    text-align: left;
  }
  .navigation > ul > li > a {
    padding: 10px 25px;
    border-bottom: 1px solid #ccc;
    border-right: 0;
  }

  .navigation > ul > li:hover > a {
    padding: 8px 25px 10px 25px;
  }
  .navigation > ul > li:hover > a.activeHover {
    padding: 10px 25px;
  }
  .navigation > ul > li:first-child a {
    border-left: 0;
  }
  .navigation > ul > li:last-child a {
    border-bottom: 0;
  }
  .navigation > ul > li > ul,
  .navigation > ul > li > ul li ul {
    position: static;
    height: auto !important;
    border-bottom: 1px solid #efefef;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-left: 0;
  }
  .navigation > ul > li > ul:before,
  .navigation > ul > li > ul li ul:before {
    display: none;
  }
  .flex-caption {
    margin-right: -160px;
    margin-top: 10px;
  }

  .site-search-module {
    position: relative;
    height: auto;
    bottom: auto;
    left: auto;
    margin-top: 30px;
  }
  .site-search-module-inside {
    height: auto;
    padding-bottom: 30px;
  }
  .featured-blocks .featured-block {
    margin-bottom: 30px;
  }
  .bottom-blocks .column {
    margin-bottom: 30px;
  }
  .owl-theme .owl-controls .owl-buttons div {
    display: none !important;
  }
  .block-heading h4 {
    display: block;
  }
  .block-heading .btn,
  .block-heading .toggle-view {
    display: none;
  }
  .agent > div > div > img {
    margin-bottom: 30px;
  }
  #featured-properties .overlay {
    line-height: auto !important;
  }
  .property-listing .property-featured-image,
  .agents-listing .agent-featured-image {
    margin-bottom: 30px;
  }
  #header_area .logo_area > div {
    position: relative;
    padding: 10px 0;
    background: #fff;
    text-align: center;
  }
  #header_area .logo_area > div:before {
    background: none;
  }
  .logo_area img {
    padding: 0;
    top: 0;
    position: relative;
    max-width: 400px;
    max-height: 100px;
  }
  #header_area .logo_area > div a {
    height: 100px;
  }

  .header_top_bar {
    padding: 0;
  }

  .stricky {
    position: relative;
  }
  .body {
    margin-top: 0;
  }
}

button#filters {
  display: none;
}

@media only screen and (max-width: 999px) {
  .block-heading.sort-by-section {
    height: 120px;
  }  
}
@media only screen and (min-width: 768px) {
  .dynamic-categories .col-sm-3 section {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .investments
    .property-listing
    .property-amenities
    span:not(.property-price)
    strong {
    max-width: none;
    width: 100%;
  }

  .virtual_tour {
    height: calc(100% - 120px);
  }

  .header_top_bar .header_column:last-child {
    margin-bottom: 15px;
  }
  .cookiebanner-close {
    width: 32%;
    float: none !important;
    padding: 5px 0 !important;
    margin: 5px auto;
    display: inherit;
  }
  .cookiebanner {
    line-height: 20px !important;
  }
  .navigation > ul > li > ul li > a {
    white-space: normal;
  }
  .navigation > ul > li > ul li > a.activeHover {
    white-space: normal;
  }

  .navbar-collapse.in {
    max-height: 400px;
  }

  .content.full.flex {
    display: flex;
    flex-direction: column;
  }

  .flex .container.search-form {
    order: 2;
    margin-bottom: 0;
    margin-top: 25px;
  }

  #inv-offers .filters {
    max-height: 0;
    overflow: hidden;
  }

  button#filters {
    display: block;
    margin-bottom: 20px;
  }

  .page-header h1 {
    font-size: 16px;
  }
  .hero-agent {
    display: none;
  }
  .flex-caption {
    margin-top: 80px;
    margin-right: -110px;
  }
  .flex-caption .fa-caret-down {
    display: none;
  }
  .site-menu {
    background: #fff none repeat scroll 0 0;
    box-shadow: none;
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: auto;
    z-index: 9;
  }
  .logo_area {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
  }
  .header_top_bar {
    padding: 90px 0 0;
  }

  .navbar-toggle {
    margin-right: 0;
  }
  .header_social {
    float: left;
    padding-bottom: 15px;
  }
  .header_column {
    width: 50%;
  }
  .dynamic-categories section {
    margin: 0 auto 10px;
    overflow: hidden;
    position: relative;
    width: 271px;
  }
  .dynamic-categories .cat-hover a.type {
    margin-top: 0;
    display: block;
  }

  .navigation > ul > li > ul,
  .navigation > ul > li > ul li > ul {
    opacity: 1;
  }

  .navigation > ul > li > ul li > ul li {
    padding-left: 40px;
    display: block;
  }
  .navbar-header {
    background: #fff;
  }
  .navbar-header button {
    background: #eee;
    border-radius: 0;
  }
  .navbar-header button span {
    background: #333;
  }

  .navbar-default {
    padding: 0 15px;
  }

  #lang {
    right: 15px;
    top: 45px;
    padding: 13px 14px 4px;
  }
  #header_area .logo_area > div a {
    height: 72px;
  }
  .logo_area img {
    max-height: 72px;
  }
}

@media only screen and (max-width: 490px) {
  .investments .property-amenities > span.property-price {
    width: 100%;
  }
  .header {padding-bottom:0 !important;}  
  .investments
    .property-listing
    .property-amenities
    span:not(.property-price)
    strong {
    width: auto;
  }

  .header_column {
    width: 100%;
  }
  .hero-slider.flexslider ul.slides li {
    background-size: cover;
  }
  .flex-caption {
    right: 0;
    margin-right: 0;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
    min-width: 60%;
  }
  .flex-caption strong.title {
    padding-bottom: 5px;
    font-size: 16px;
    color: #000;
  }
  .flex-caption strong.title em {
    font-size: 13px;
    color: #333;
  }
  .flex-caption .counts {
    margin: 0 1px 4px;
  }
  .flex-caption .counts span {
    font-size: 12px;
  }
  .block-heading.sort-by-section {
    height: 170px;
  }
  #investment_list_container .block-heading.sort-by-section {
    height: 50px;
  }
  .property-amenities > span {
    width: 100%;
    border-right: 0;
    min-height: auto;
    padding: 8px 10px;
  }
  .property-amenities > span:empty {
    padding: 0 10px;
  }
  .property-listing .property-amenities {
    border-bottom: 0;
  }
  .block-heading h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .property-amenities > span > strong {
    max-width: 160px;
  }

  .top-bar-property .share {
    position: relative;
    right: 0;
  }

  #header_area .logo_area h1 {
    margin: 0 0 0 15px;
  }
  .logo_area img {
    max-width: 250px;
  }
  .g-recaptcha {
    transform: scale(0.68);
    -webkit-transform: scale(0.68);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .g-recaptcha > div {
    width: 235px !important;
  }

  .header_top_bar .column_details {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  .header_top_bar .column_details .column_left {
    display: table-cell;
    vertical-align: middle;
    width: 20%;
    text-align: center;
  }
  .header_top_bar .column_details .column_right {
    width: 80%;
    height: auto;
  }

  .header_top_bar .column_details .column_right span.head-info-cell,
  .header_top_bar .column_details .column_left i {
    padding-top: 0;
  }
  .header_top_bar .column_details .column_left i {
    width: auto;
    float: none;
  }
}

/** possible **/
.twitter-typeahead {
  width: 100%;
}
.tt-menu {
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.tt-suggestion {
  padding: 3px 20px;
  font-size: 12px;
  line-height: 24px;
}
.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}
.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;
}
.tt-suggestion p {
  margin: 0;
}

.g-recaptcha {
  transform: scale(0.88);
  -webkit-transform: scale(0.88);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.tooltip .tooltip-inner {
  max-width: 300px;
}
.icon .tooltip .tooltip-inner {
  max-width: 300px;
  white-space: nowrap;
}

#description,
.description {
  text-align: justify;
}
#description a {
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
  word-break: break-all;
}

.ppt[style] {
  display: none !important;
}
.clause,
.clause a {
  font-size: 10px;
  color: #999;
}
.clause a {
  display: inherit !important;
}

@media (min-width: 768px) {
  .col-sm-2-5 {
    width: 20%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.head-info-table {
  display: flex;
  display: -webkit-flex;
  height: 52px;
  align-items: center;
  -webkit-align-items: center;
}
.column_right span.head-info-cell {
  padding-top: 18px;
}

.agent-name img {
  max-height: 80px;
  max-width: 90px;
  border-radius: 2%;
  margin-right: 5px;
}

.calc-result {
  border-bottom: 1px lightgray solid;
}

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}

.input-group-addon {
  border-top: 0px;
  border-right: 0px;
  border-radius: 0px;
  background: transparent;
}

.help-block {
  font-size: 11px;
}

.calculator-title {
  font-size: 18px;
  margin: 11px 0px;
}

.clausule a {
  color: #5e5e5e;
  text-decoration: underline;
}
#section-text #description {
  margin-bottom: 0px;
}

.property-amenities span.property-price {
  position: relative;
}

.property-amenities > span > strong.oldprice {
  text-decoration: line-through;
}

.property-amenities > span > span.newprice {
  position: absolute;
  background: red;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(5deg);
  right: 5px;
  top: -15px;
  display: block;
  padding: 2px 5px;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #999;
}

.property-box-simple-meta ul li:first-child {
  position: relative;
  overflow: visible;
}
.property-box-simple-meta ul li:first-child strong.oldprice {
  text-decoration: line-through;
}

.property-box-simple-meta ul li:first-child span.newprice {
  position: absolute;
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(5deg);
  right: 0px;
  top: -12px;
  display: block;
  padding: 0px 5px;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #999;
  line-height: 20px;
}

.nav-tabs > li > a {
  text-decoration: none;
}
.nav-tabs > li.active > a,
.nav-tabs > li:hover > a {
  color: #ffffff;
}

.banner-popup .modal-body {
  padding: 0;
}

.banner-popup .modal-body img {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: max-content;
    max-width: 800px;
  }
  #calculatorModal .modal-dialog,
  #creditCalculatorModal .modal-dialog {
    max-width: 460px;
  }
}
#creditCalculatorModal .modal-header {font-weight: bold;}
#creditCalculatorModal .calculator-title {margin: 15px 0;}

#calculatorModal label {margin-top:5px; margin-bottom: 0;}
#calculatorModal .form-group.calc-result label {margin-top:0; margin-bottom: 5px;}
#card-popup button.close {
  opacity: 0.8;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-shadow: none;
}

#card-popup .modal-header {
  border-bottom: 0;
  padding: 6px 0;
}

#card-popup .modal-content {
  background-color: transparent;
  border: 0;
  box-shadow: none !important;
}

.top-bar-property {
  display: table;
  width: 100%;
}

@media (max-width: 767px) {
  .investment_details .top-bar-property {
    display: table;
  }
  .investment_details .top-bar-property .icons {
    float: none;
    position: relative;
    top: 5px;
    margin: 5px auto;
    display: table;
  }
}

#description hr {
  margin: 0;
}

#blueimp-gallery {
  z-index: 9999 !important;
}

.newsletter-clause label.form-check-label {
  font-weight: normal;
  font-size: 12px;
}
.newsletter-clause input.form-check-input {
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.no-transform,
.no-transform strong {
  text-transform: none !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  height: 47px;
  border: 0;
  border-bottom: 1px solid #ccc;
  transition: 0.4s;
}

.select2-container--default .select2-selection--single:hover {
  background: #e6e6e6;
  border-color: #adadad;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 47px;
  color: #333;
  font-size: 15px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}
@media screen and (max-width: 480px) {
  .select2-search--dropdown {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
#investment_list_container .pagination {
  margin-bottom: 0;
}

.contact-form-link-alt,
.contact-form-link-alt:link,
.contact-form-link-alt:visited,
.contact-form-link-alt:hover,
.contact-form-link-alt:active,
.contact-form-link-alt:focus {
  color: inherit;
  text-decoration: inherit;
}

.property-amenities .contact-form-link-alt {
  text-align: center;
  display: block;
}

#pictureModal .modal-dialog {
	width: 100% !important;
	max-width: 800px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.stand {
  font-size: 14px;
  line-height: 50px;
  float: right;
}
.agent-center {
  text-align: center;
}

.agent-image {
  width: 200px;
  height: 200px;
  display: block;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: -45px;
  border-radius: 100%;
  border: 5px solid #fff;
}
h2.office {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.data-contact {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
  font-size: 18px;
  margin-top: -30px;
}

.all-offer {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.agent-show p {
  margin-bottom: 50px;
}
.agent-show a {
  text-decoration: none;
}

.data-contact span {text-align: center;}

@media screen and (max-width: 780px) {
  .agent-image {top: -20px;}
  .data-contact {margin-top:-5px;}
  .agent-show .data-contact {flex-direction: column;}
}

.textLink {
  display: block;
  width: 100%;
  height: 100%;
}


.sold {
  color:red;
}
.reserved {
  color:orange;
}
.available {
  color:green;
}

.blueimp-gallery.zoom > .slides > .slide > .slide-content {
  max-height: none;
  cursor: grab;
}

.blueimp-gallery > .icon {
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0 40px 0 0;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-shadow: 0 0 2px #000;
  opacity: 0.8;
}
.blueimp-gallery > .icon {
  padding: 15px 0;
  right: 15px;
  left: auto;
  margin: -15px;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;
}

.blueimp-gallery > .icon:hover {
  color:#fff;
  opacity: 1;
}

.blueimp-gallery > .icon.print-img {
  right: 70px;
  font-size: 18px;
}
.blueimp-gallery > .icon.zoom {
  right: 120px;
  font-size: 18px;
}
.blueimp-gallery > .icon.download {  
  right: 95px;
  font-size: 18px;
}

.blueimp-gallery > .title {
  margin: 0 130px 0 0 !important;
}

@media (max-width: 767px) { 
  .blueimp-gallery > .icon.zoom {
    display: none;
  }
}

@media (max-width: 500px) {
  .plans a {
    margin:10px 0;
  }
}

@media screen and (max-width: 780px) {
  .block-heading.agent-name {
    height: auto;
  }
  .block-heading.agent-name div.title {
    white-space: normal;
    padding-right: 0;
    text-align: center;
    line-height: normal;
    padding: 15px 0;
  }

  .block-heading.agent-name .heading-icon {
    display: none;
  }

  .block-heading.agent-name .stand {
    float: left;
    width: 100%;
    white-space: normal !important;
    line-height: 20px;
    margin: 0 !important;
    font-size: 11px;
    padding: 0 !important;
  }
}

.additional-info span {
	width: 33%;
	display: flex;
	text-overflow: inherit;
	white-space: inherit;
	padding: 10px 0;
}

.additional-info {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
	
.additional-info span i {
	margin-left:5px;
	margin-right: 5px;
  margin-top: 4px;
}
	
@media screen and (max-width: 1200px) {
	.additional-info span {width: 50%;}
}
	
@media screen and (max-width: 400px) {
	.additional-info span {width: 100%;}
}

@media screen and (min-width: 1200px) {
  .video-slide video {
    position: absolute;
    top:-50%;
  }
}

a.oblicz-rate {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 6px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  a.oblicz-rate {
    display: block;
    text-align: center;
    margin: 10px auto;
    max-width: 90%;
  }
}
a.oblicz-rate:hover {
  opacity: 0.8;
}