/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
b, u, i, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

body {
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
  color: #555555;
  background-color:#f5f5f5;
  font-weight: 300;
}

/* For modern browsers */
.cf:before,
.cf:after {
    content:"";
    display:table;
}

.cf:after {
    clear:both;
}


/* For IE 6/7 (triggers hasLayout) */
.cf {
    *zoom:1;
}

/* -------------------------------- 

xBasic style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html * {
}

html {
  font-size: 62.5%;
}



a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

input, textarea, select {
  font-size: 1em;
  color:#555;background-color: #fff;
}

header {
  position: fixed;
  height: 50px;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
header nav {
  display: inline-block;
}



/* -------------------------------- 

Header style and nav

-------------------------------- */

.cd-logo {
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.cd-logo img {
  margin:10px 0 0 0;
}

.cd-main-nav li {
    position: relative;
}

.cd-nav-trigger {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  transition:all .25s ease-in-out;
}

.filters-are-visible .cd-nav-trigger {
  opacity:0;
  visibility:hidden;}

.message-notification-wrapper {
    background: #cb4745;
    border-radius: 20px;
    color: white;
    font-size: 10px;
    font-weight: 400;
    padding: 3px 6px;
    position: absolute;
    right: 30px;
    top: 3px;
    transition: all 0.25s ease;
    z-index: 5;
}

div.message-notification-wrapper {
    right: 0px;
}


.opened-once .message-notification-wrapper {
    opacity: 0;
    visibility: hidden;
}


.cd-main-nav li .message-notification-wrapper {
    right: 10px;
    top: 20px;
    opacity: 1;
    visibility: visible;
}


.cd-nav-trigger span {
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  -webkit-transition: background-color 0.3s 0.3s;
  -moz-transition: background-color 0.3s 0.3s;
  transition: background-color 0.3s 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger span::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}


.cd-main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 50px 20px;
  text-align: left;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-main-nav li a {
  display: block;
  font-size: 1.8rem;
  padding: 1em 0;
 
  border-bottom : 1px solid #4799D0;
}
.cd-main-nav li:first-of-type a {
  border-top-width: 1px;
}


.nav-is-visible .cd-nav-trigger span::before {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.nav-is-visible .cd-nav-trigger span::after {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.nav-is-visible .cd-main-nav {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/* -------------------------------- 

Main container and section

-------------------------------- */

main {
  width: 100%;
  background-color: #f5f5f5;
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 0 20px;
  position: fixed;
  overflow-y: auto;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}

main.home {
width:95%;
  background-color:transparent;

}

main > h1 {
  text-align: center;
  margin: 1em 0;
}


section {
}
section:after {
  content: "";
  display: table;
  clear: both;
}


/* -------------------------------- 

Box container 

-------------------------------- */


.cd-box {
  /* this is the container of various design elements - i.e. the 2 logo of the branding section */
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  padding: 6px;
}

.cd-box-full {
  /* this is the container of various design elements - i.e. the 2 logo of the branding section */
  border: 1px solid #e6e6e6;
  border-radius: 0px;
  background: #ffffff;
  padding: 6px;
  width:100%;
  line-height:35px;
}
.cd-box-full:last-child {
  /* this is the container of various design elements - i.e. the 2 logo of the branding section */
  border: 1px solid #e6e6e6;
  border-radius: 0px;
  background: #ffffff;
  padding: 6px;
  width:100%;
  line-height:35px;
}

.cd-box-trans {
  /* this is the container of various design elements - i.e. the 2 logo of the branding section */
  border: 0px solid #e6e6e6;
  border-radius: 0px;
  background: transparent;
  padding: 6px;
  margin:1%;
}


/* -------------------------------- 
xNavigation 
-------------------------------- */
header {
  background-color: #2574a9;
    z-index: 3003;
}

.cd-logo {
  /* logo box style */
  background-color: transparent;
  width: 140px;
}

.cd-main-nav {
  /* main navigation background color - full screen on small devices */
  background: #2574a9;}

.cd-main-nav li a {
  color: #ffffff;
  
}

.cd-nav-trigger span {
  /* hamburger menu */
  background-color: #ffffff;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* upper and lower lines */
  background-color: #ffffff;
}

.nav-is-visible .cd-nav-trigger span {
  /* hide line in the center on mobile when nav is visible */
  background-color: rgba(255, 255, 255, 0);
}
.nav-is-visible .cd-nav-trigger span::before, .nav-is-visible .cd-nav-trigger span::after {
  /* preserve visibility of upper and lower lines - close icon */
  background-color: white;
}


/* -------------------------------- 

xPage title 

-------------------------------- */
main > h1 {
  color: #19191a;
}

/* -------------------------------- 

xTypography 

-------------------------------- */
h1, h2 {
}

h1 {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,.45);
  margin: 0.5em 0 .4em;
}
h2 {
  font-weight: bold;
  margin: 0.2em 0 0;
}
h3{
  color: #fff;font-weight: 200;
  text-shadow: 1px 1px 0 rgba(0,0,0,.45);
}


p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #58585b;
}
p a {
  color: #5f8ee4;
  text-decoration: underline;
}



/* -------------------------------- 

Buttons 

-------------------------------- */
.btn {
  border: none;
  font-size: 16px;
  color: #ffffff;
  padding: 0;
  cursor: pointer;
  background: #5f8ee4;
  height: 40px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  transition: background .25s ease-in-out;
}
.btn:focus {
  outline: none;
}
.no-touch .btn:hover {
  background: #759de8;
}
.btn.btn-success {
  background: #6fce72;
}
.btn.btn-post {
  background: #00b16a;
}
.btn.btn-search {
    background: #f76426;
    height: 50px;
    line-height: 50px;
    width: 100%;
}
.btn-large {
  min-width: 100%;;
}
.btn-half {
    min-width: 50%;
    float: left;
    border-radius: 0;
}
.cancel-filters {
  background:#cdcdcd !important;
  color:#555555;}

.btn-hme{
padding: .8em 1.4em;
min-width: 47%;
}

.no-touch .btn.btn-post:hover {
  background: #00c260;
}
.no-touch .btn.btn-search:hover {
  background: #F27935;
}
.no-touch .btn.btn-success:hover {
  background: #82d485;
}
.btn.btn-alert {
  background: #e4655f;
}
.no-touch .btn.btn-alert:hover {
  background: #e87a75;
}
.btn.btn-outline {
  color: #2574a9;
  background: transparent;
  box-shadow: inset 0 0 0 1px #2574a9;
}
.no-touch .btn.btn-outline:hover {
  color: #ffffff;
  background: #2574a9;
}


.cd-buttons .cd-box:nth-of-type(2) span {
  /* CSS class name color */
  color: #5f8ee4;
}

/* -------------------------------- 

Icons 

-------------------------------- */
.cd-icons li {
  /* icons size */
  width: 32px;
  height: 32px;
}

/* -------------------------------- 

FORM ELEMENTS UI

-------------------------------- */
input[type=text], select , input[type=password], input[type=tel], input[type=password], textarea{

}
input[type=text]:focus, select:focus, , input[type=password]:focus, input[type=tel]:focus, textarea:focus {
  outline: none;
}



input[type=radio],
input[type=checkbox] {position: absolute;left: 0;top: 0;margin: 0;padding: 0;opacity: 0;height:40px;}

.radio-label,.checkbox-label  {padding-left: 24px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;font-size: 0.9em;}
.input-label {float:left;margin-left: 5px;padding-top:1%;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}


.radio-label::before, .radio-label::after,
.checkbox-label::before,
.checkbox-label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.radio-label::before,
.checkbox-label::before {
  left: 0;
  border: 1px solid #e6e6e6;
  box-shadow: inset 1px 1px rgba(0, 0, 0, 0.03);background-color: #fff;
}
.radio-label::after,.checkbox-label::after {left: 3px;background: url("../assets/form/icon-check.svg") no-repeat center center;display: none;
}

.radio-label::before {border-radius: 50%;}
.checkbox-label::before {border-radius: 3px;}

input[type=radio]:checked + label::before,
input[type=checkbox]:checked + label::before {background-color: #19191a;border: none;box-shadow: none;}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {display: block;}

.cd-select::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 4%;
  top: 62%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../assets/form/icon-select.svg") no-repeat center center;
  pointer-events: none;
}


.input-email {background-image: url("../img/field_icons.svg");background-position: right -30px;}
.input-password {background-image: url("../img/field_icons.svg");background-position: right -73px;}


/* xTypography section - basic style */
.cd-typography .cd-box,
.cd-buttons .cd-box,
.cd-icons .cd-box,
.cd-form .cd-box {
  padding: 1em;
}

.cd-typography h1::before {
  content: 'Aa - ';
  color: #5f8ee4;
}

.cd-buttons .cd-box:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cd-buttons .cd-box:last-of-type {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.cd-buttons button {
  margin: .4em;
}


.visually-hidden {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

/* xIcons section - basic style */
.main-sprite.location-pin {
display: block;
width: 20px;
height: 27px;
float: left;
margin-right: 5px;
top: -4px;
position: relative;
background-position: -1px -328px;
}
.main-sprite.couple {
background-position: -1px -306px;
display: block;
width: 20px;
height: 18px;
float: left;
margin-right: 5px;
}

.flatmate-icon {
display: block;
float: left;
height: 16px;
margin: 0 6px 0 0;
width: 16px;
background: no-repeat url(./img/2-users.svg);
}
.main-sprite {
background-image: url(../img/main-sprite.svg);
}
.profile-sprite {
width: 18px;
height: 18px;
display: block;
float: left;
margin-right: 5px;
margin-top: -3px;
background-repeat: no-repeat;
background-image: url(../img/profile-sprite.svg);
}

.loc_icon {
width: 16px;
height: 16px;
float:left;
margin-top:4px;
display: block;
background: no-repeat url(./img/mark.svg);
}
.profile-sprite.calendar {
background-position: 0 0;
}
.profile-sprite.gender {
background-position: 0 -18px;
}

.profile-sprite.premium--inactive {
background-position: 0 -36px;
}
.profile-sprite.premium--active {
background-position: 0 -54px;
}



.filter-button-wrapper {
    position: fixed;
    right: 0;
    top:0;
    background: #2574a9;
    height: 50px;
    width: 50px;
    z-index: 3001;
    transition:all .25s ease-in-out;
    box-sizing:border-box;
    display:block;
}

.nav-is-visible .filter-button-wrapper {
    opacity: 0;
    visibility: hidden;
}

.filter-button-wrapper.filters-are-visible, .filter-button-wrapper.filters-wrapper-hidden  {
}

.filter-icon {
  position:absolute;
  background-repeat: no-repeat;
  background-image: url(img/filters-white.svg);
  height: 16px;
  width: 16px;
  margin: -8px 0 0 0;
  transition: all 0.25s ease-in-out;
  top:50%;
  left:20px;
}

.filters-are-visible .filter-icon {
  background-image: url(img/filter-close.svg);
 }

.filter_link {
  color:#fff !important;
  font-weight:400;
  display:table-cell;
  vertical-align:middle;
  padding: 0 !important;
 font-size: 16px !important;
 }

.filter-caption {
  position:relative;
  left:-20px;
  }


.filter-icon-x {
    height: 2px;
    position: absolute;
    margin: -1px 0 0 -7px;
    top:50%;
    left:10px;
    width: 15px;
    -webkit-transition: background-color 0.25s ease-in-out;
    -moz-transition: background-color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out;
}
.filter-icon-x::before, .filter-icon-x::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -moz-transition: -moz-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
}
.filter-icon-x::before {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}
.filter-icon-x::after {
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}

.cd-main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 20px 0px 20px;
    text-align: left;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -moz-transition: -moz-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    margin: 50px 0 0 0;
    bottom:0;
}

.top-of-the-filter {
    position: absolute;
    top: 0;
    left: 0;
}

.filters-are-visible .filter-icon-x::before {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}
.filters-are-visible .filter-icon-x::after {
    -webkit-transform: translateY(0) rotate(45deg);
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    -o-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}
.filters-are-visible .filter-icon {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}



.filter_link {
    cursor: pointer;
}

/* xForm section - basic style */
.cd-form input[type=text], .cd-form input[type=password],
{
  margin: 0.1em 0 0.3em 0;

}

.cd-form .cd-input-wrapper {
  margin: 0 0 2% 0;
  background-color: transparent;
}
.cd-form .cd-input-wrapper {
  position: relative;
  display: inline-block;
}
.cd-form select::-ms-expand {
  display: none;
}

@-moz-document url-prefix() {
  /* hide custom arrow on Firefox */
  .cd-select::after {
    display: none;
  }
}
.no-csstransitions .cd-select::after {
  display: none;
}

/* homepage */
#h_wrap{ 
 background: url('../img/HP-helping-you-find-a-place.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.section-2{
background: #d2dce6;
width:100%;
}

footer {
color: #555;
background: #d2dce6;
font-size: 15px;
min-height:40px;
width:100%;
bottom:0px;
position:fixed;
padding:10px 5px 0 5px;
}

footer a {
color: #555;
text-decoration: none;
font-weight: 200;
text-align: left;
padding:0 1em 0 1em;
line-height: 1em;
}

.HP-posting-form {
width: 100%;
background: rgba(255,255,255,.8);
border-radius: 2px;
left: 0;
margin: 5% 0 0 0;
padding: 15px 0px 25px 5px;
position: relative;
-webkit-transform: translate3d(0px,0,0);
transform: translate3d(0px,0,0);
}

.form-group {
margin: 0 0 10px;
position: relative;
}


/* listing page */

.listing__image .listing__price_01 {
    border-radius: 2px 0 2px 0;
    color: #ffffff;
    left: 0;
    line-height: 18px;
    padding: 5px 10px 2px 10px;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    text-align: left;
}

.home_wrapper {
    position: absolute;
    perspective: 2000px;
    height: 100%;
    width: 100%;
    display: table;
}

.view-buttons-wrapper {
    height: 50px;
    display: table;
    width: 80px;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 50;
    bottom: 10px;
    right: 10px;
    border-radius:25px;
    box-shadow:0 0 10px 2px rgba(0,0,0,.5);
    overflow:hidden;
}

  
.filter-title-wrapper {
  position:relative;
  top:-2px;
  }

.view-buttons-wrapper .view-button {
    position: absolute;
    height: 50px;
    width: 80px;
    margin: 0 0 0 -50%;
    box-sizing: border-box;
    background: #2574a9;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    transition: all .25s ease-in-out;
    z-index: 51;
    right: 0;
	border-radius:25px;
}

.view-buttons-wrapper .view-button.active-button {
  z-index:50
  }

.view-buttons-wrapper .view-button .ico {
  height:16px;
  width:100%;
  display:block;
  margin:10px 0 2px 0;
  background-repeat:no-repeat;
  background-position:center center;
  }

.view-buttons-wrapper .view-button.button-list .ico {
  background-image:url(img/list-view-ico.svg);
  }

.view-buttons-wrapper .view-button.map-list .ico {
  background-image:url(img/mark-white.svg);
  }



section#summary_listing {
    backface-visibility: hidden;
    -webkit-backface-visibility:hidden;
    background-color: #f5f5f5;
    transform-style: preserve-3d;
    transition: all .3s ease-in-out;
    transform: rotateY(0deg);
    margin: 10px 0 0 0;
    padding: 0 5px 80px 5px;
}

section#summary_listing.flipped {
    transform: rotateY(-180deg);
}

section#map_listing {
    backface-visibility: hidden;
    -webkit-backface-visibility:hidden;
    background-color: #999999;
    background-image:url(img/big-map.jpg);
    transform-style: preserve-3d;
    transition: all .3s ease-in-out;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    backface-visibility:hidden;
}

section#map_listing #listings_results {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.zoom-controls {
  position:fixed;
  top:10px;
  left:10px;
  width:40px;
  z-index:50;
}

.zoom-button {
  height:40px;
  width:40px;
  margin:0 0 10px 0;
  display:block;
  box-sizing:border-box;
  border:1px solid #999999;
  border-radius:100%;
  background:#ffffff;
  position:relative;
}

.zoom-button .ico {
  height:20px;
  width:20px;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  margin:-10px 0 0 -10px;
}

.zoom-button .ico:before {
  height:2px;
  width:100%;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  margin:-1px 0 0 -50%;
  background:#999999;
  content:'';
}

.zoom-button.zoom-in .ico:after {
  height:100%;
  width:2px;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  margin:-50% 0 0 -1px;
  background:#999999;
  content:'';
}

.search-here {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px;
  font-size: 14px;
  color: #555555;
  background: rgba(255,255,255,0.85);
  border: 1px solid #999999;
  border-radius: 4px;
  font-weight: 400;
}

.fake-pin {
  height:32px;
  width:24px;
  display:block;
  position:fixed;
  top:170px;
  left:200px;
  background:url(img/map-blue-pin.svg) center center no-repeat;
  transition:all .25s ease-in-out;
  }

.fake-pin.active-pin {
  background:url(img/map-orange-pin.svg) center center no-repeat !important;
  transform:scale(1.1);
  }

.fake-pin.visited-pin {
  background:url(img/map-gray-pin.svg) center center no-repeat;
  }

.fake-pin.pin-1 {
  top:140px;
  left:253px;
}

.fake-pin.pin-2 {
  top:10px;
  left:33px;
}

.fake-pin.pin-3 {
  top:86px;
  left:130px;
}

.fake-pin.pin-5 {
  top:166px;
  left:84px;
}

.fake-pin.pin-6 {
  top:100px;
  left:59px;
}

.fake-pin.pin-7 {
  top:47px;
  left:91px;
}

.fake-pin.pin-8 {
  top:57px;
  left:93px;
}

.fake-pin.pin-9 {
  top:500px;
  left:300px;
}

.fake-pin.pin-10 {
  top:420px;
  left:160px;
}

.fake-pin.pin-11 {
  top:420px;
  left:160px;
}

.fake-pin.pin-12 {
  top:267px;
  left:37px;
}

.fake-pin.pin-13 {
  top:420px;
  left:200px;
}

.fake-pin.pin-14 {
  top:535px;
  left:283px;
}

.fake-pin.pin-15 {
  top:386px;
  left:172px;
}

.fake-pin.pin-16 {
  top:93px;
  left:282px;
}

.fake-pin.pin-17 {
  top:396px;
  left:287px;
}

.fake-pin.pin-18 {
  top:394px;
  left:354px;
}

.fake-pin.pin-19 {
  top:342px;
  left:173px;
}

.fake-pin.pin-20 {
  top:478px;
  left:397px;
}


section#map_listing.flipped {
    transform: rotateY(180deg);
}

#listings_results.map-snippet {
    position: fixed;
    bottom: 5px;
    left: 5px;
    right: 5px;
    transition: all .25s ease-in-out;
    z-index: 55;
}

#listings_results.map-snippet .listing {
    margin: 0;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.7);
    -moz-box-shadow:    0px 0px 4px 0px rgba(0, 0, 0, 0.7);
    box-shadow:         0px 0px 4px 0px rgba(0, 0, 0, 0.7);

}

#listings_results.map-snippet.hidden {
  transform: translate3d(0, 110%,0);
  -webkit-transform: translate3d(0, 110%,0);
}


.lightbox-fade {
    background: #000;
    bottom: 0;
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 2;
    transition: all .25s ease-out;
}

.lightbox-fade.visible {
    opacity: .84;
    visibility: visible;
}

.filter-title-wrapper{
    background: #f5f5f5;
    position: fixed;
    margin:52px 0 0 0;
    width: 100%;
    padding:5px;
    box-sizing:border-box;
    z-index:50;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:    0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow:         0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    transition:all .25s ease-in-out;
}

.filter-title-wrapper.hidden {
  transform:translateY(-120%);
  box-shadow:none;}

.filter-title-wrapper input{
  height:40px;
  box-sizing:border-box;
  border-radius:2px;
  position:relative;
  background:url(img/my-position-ico.svg) no-repeat right center }

.filter-title-wrapper:before{
  height:40px;
  line-height:40px;
  content:'15';
  display:block;
  top:5px;
  right:45px;
  color:#999999;
  position:absolute;
  z-index:9999;
}

.listing__image img, .listing__profile img {
    margin: 0 0 -2px;
    border-radius: 2px 0 0 2px;
}

.fade-bottom {
    height: 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 0 0 30%;
    display: block;
    background: repeat-x url("./img/fade-bottom.png");
    z-index: 2;
}

.fade-right {
    width: 20px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    background: repeat-y url("./img/fade-right.png");
    z-index: 2;
}


#listings_results .listing {
position: relative;
list-style-type: none;
width: 100%;
border: 1px solid #dce0e0;
border-radius: 2px;
background: #fff;
overflow: hidden;
cursor: pointer;
box-shadow: 0 1px 0 0 #dce0e0;
}

li.listing{background-color: #fff;margin-bottom:20px;}


#listings_results .listing>a {
display: block;
}

#listings_results .listing .listing__image {
float: left;
width: 30%;
overflow: hidden;
position: relative;
text-align: center;
border-radius: 2px 0 0 2px;
}
#listings_results .listing .listing__profile {
float: left;
width: 200px;
}

.listing__location img, .listing__profile img {
vertical-align: middle;
padding-bottom:2px;padding-right:2px;
}


#listings_results .listing .listing__information {
position: absolute;
margin: 0 0 0 30%;
padding: 10px 0 0 10px ;
width: 70%;
}

#listings_results .listing .listing__information .listing__name {
font-weight: 300;
color:#2574a9;
    margin: 0 0 20px;
    font-size: 22px;
}

.listing__text {
    color: #555;
    font-size: 0.8em;
    height: 1.1em;
    margin: 5px 0 0;
    overflow: hidden;
    display: none;
}

#listings_results .listing .listing__location {
color: #555555;
font-weight: 400;
margin-bottom: 9px;
padding-top:10px;
}

.date_available.date_available_listing {
margin-top: 20px !important;
margin-bottom: 5px;
text-align: left;
}

.date_available {
color: #999999;
font-size: 12px;
font-weight: 400;
text-align: center;

}
.listing__price_01{
    color:#555;
    clear:both;
    font-size: 30px;
    font-weight: 300;
}

.listing__price_01 span{font-size:50%;}


/* Version old phone max 500px */
@media (max-width: 340px) {

    #listings_results .listing .listing__information .listing__name {
        margin: 0 0 10px;
    }

li.listing{margin-bottom:10px;}


#listings_results .listing .listing__information {
font-size: 0.8em;
}


.listing__image img, .listing__profile img{width: 100%;}

    .listing__image {
}
.listing__profile{
}
.clip-circle {
  clip-path: circle(35px at center);
  -webkit-clip-path: circle(35px at center);
}

#listings_results .listing .listing__information .listing__name {
    font-size: 0.9em;
    font-weight: 400 !important;
    height: 16px !important;
    margin: 0 0 8px !important;
}

.loc_icon {
    background-image: url("./img/mark.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 12px;
    margin: 1px 3px 0 0;
    width: 12px;
}

#listings_results .listing .listing__location {
clear:both;
color: #555555;
font-size: 0.8em;
font-weight: 300;
margin-bottom: 0px;
 white-space: nowrap;
   text-overflow: ellipsis; /* will make [...] at the end */
    width: 100%; /* change to your preferences */
    overflow:hidden; /* older browsers */

}
#listings_results .listing__information .date_available {
display:none;
}

.listing__price_01{font-weight:400;color:#555;clear:both;font-size:1em;float:left;}
}

li.listing{margin-bottom:10px;}



.listing__image .listing__price_01, .listing__image .listing__name {
    display: none;
}




/* Version phone max 768px */
@media (max-width: 768px) {

    #listings_results .listing .listing__information .listing__name {
        margin: 0 0 10px;
    }

#listings_results .listing .listing__information {
font-size: 1.0em;
padding: 15px;
margin: 0 0 0 40%;

}

.fade-bottom {
    margin: 0 0 0 40%;
}


.listing__image img, .listing__profile img{width: 100%;}
.listing__image {
}


#listings_results .listing .listing__image {
    width: 40%;
}

#listings_results .listing .listing__information {
    width: 60%;
}

.clip-circle {
  clip-path: circle(55px at center);
  -webkit-clip-path: circle(55px at center);
  
}

.listing__price_01 {
    font-size: 18px;
    font-weight: 400;
}

#listings_results .listing .listing__information .listing__name {
    font-weight: 300;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
#listings_results .listing .listing__location {
color: #555555;
font-size: 1em;
font-weight: 300;
margin-bottom: 0px;
 white-space: nowrap;
   text-overflow: ellipsis; 
    width: 100%; 
    overflow:hidden; 

}

#listings_results .listing__information .date_available {
margin-top: 10px !important;
}
.listing__price{
    left:0px;
    position:relative;
    color:#fff;
    background-color:#000;
    font-size:1em;
    opacity:0.8;
    padding-top:5px;
    text-align:center;
}


}

/*TABLETS and FULL SCREEN*/

@media only screen and (min-width: 768px) {



li.listing{margin-bottom:20px;}

.listing__price{margin-top:-20px;position:relative;color:#fff;background-color:#000;font-size:1em;opacity:0.8;padding:1px;text-align:center;}
.listing__text, a.listing__text {
    display:block;
    font-size:1em;
    color:#555;
    height: 100%}
.listing__image img, .listing__profile img{width: 100%;}
.listing__image {
}
.listing__profile{
}
.clip-circle {
  clip-path: circle(145px at center);
  -webkit-clip-path: circle(145px at center);
}
#listings_results .listing .listing__information {
padding: 20px 0 20px 20px;
}


}


/* table for specialization */
.pill {
border: 1px solid #dadde2;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
margin-bottom: 5px;
}
.pill table {
width: 98%;
border-collapse: collapse;
border-spacing: 0;
border-color: gray;
}
table td.pill__section {
border-right: 1px solid #dadde2;
color: #999999;
padding: 7px 14px;
text-align: center;
}
table td.pill__section .pill__section__figure {
font-size: 15px;
}
.pill table td.pill__section .pill__section__figure, .pill table td.pill__section .pill__section__caption {
font-weight: 400;
font-weight: normal;
line-height: 1.18;
}
.pill table td.pill__section:last-child {
border-right: 0;
}

.btn-next{float:right;width:120px;margin-top:20px;font-weight: 300;}
.btn-prev{float:left;width:120px;margin-top:20px;font-weight: 300;}

.btn-prev:active,.btn-next:active {
    color: #ffffff;
    background: #2574A9;
    margin-top:20px
}



    /*MORPHING LABELS*/


.input-wrapper {
    height:40px;
    width:100%;
    position:relative;
    margin:0 0 20px 0;
    box-sizing:border-box;
    border-radius: 4px;
}

.input-wrapper.half-size {
    width: 47.5%;
}

.half-size.left-one {
    float: left;
}

.half-size.right-one {
    float: right;
}

.input-wrapper select {
    border: 0 none;
    height: 100%;
    margin: 2px 0 0;
    padding: 0 9px;
    width: 100%;
    background: none;
}

.input-wrapper.contains-select {
    border:1px solid #cdcdcd;
    border-radius:2px;
    background: #ffffff;
}

.select-wrapper {
    overflow: hidden;
    height: 100%;
}

label {
    transition:all .20s ease;
    border-radius: 4px;
    left: 6px;
    padding: 2px 5px;
    position: absolute;
    top: 9px;
}

.morphed label {
    background:#ffffff;
    transform: translate3d(-13px, -20px,0)scale(0.93);
    -webkit-transform: translate3d(-13px, -20px,0)scale(0.93);
}

.contains-select.morphed label {
    transform: translate3d(-17px, -20px,0)scale(0.93);
    -webkit-transform: translate3d(-17px, -20px,0)scale(0.93);
}

input {
    width:100%;
    height:100%;
    padding:0 15px;
    border-radius:2px;
    border:1px solid #cdcdcd;
    box-sizing:border-box;
    transition:all .20s ease;
}

select {
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}


.fixed-wrapper.visually-hidden {
    transform: translate3d(100%, 0,0);
    -webkit-transform: translate3d(100%, 0,0);
    z-index: -1;
}

.fixed-wrapper {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    height: 100%;
    z-index: 3000;
    transition: all .35s ease-in-out;
}

.form-wrapper {
    background-color: #ffffff;
    display: table;
    padding: 10px 10px 100px 10px;
    width: 100%;
    float:right;
    z-index: 3;
    transition: all 0.3s ease-out;
    transform: translate(0,0);
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
    -webkit-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.5);
}

.the-page {
  transition:.5s all ease-in-out;}

.the-page:before {
  display:block;
  content:'';
  background:rgba(0,0,0,.5);
  position:fixed;
  z-index:2;
  left:0;
  right:0;
  top:50px;
  bottom:0;
  opacity:0;
  visibility:hidden;
}

.the-page.faded:before {
  visibility:visible;
  opacity:1;
}

.input-check-wrapper {
    display: block;
    height: 20px;
    margin: 0 0 15px;
    position: relative;
}

.search-form__checkbox {
    position: relative;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
.ui-checkbox {
    display: none;
}

.ui-checkbox-label--blue:before {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #cdcdcd;
}
.ui-checkbox-label:before {
    border-radius: 2px;
    content: "";
    display: block;
    height: 20px;
    left: 0;
    outline: 0 none;
    position: absolute;
    width: 20px;
}
.ui-checkbox-label {
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 100%;
    left: 0;
    top: 0;
    line-height: 20px;
    margin: 0;
    padding: 0 0 0 35px;
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;

}

.ui-checkbox:checked + .ui-checkbox-label--blue:before {
    background-color: #d2dce6;
    background-position: -1px 0;
    border: 1px solid #2574a9;
    color: #2574a9;
}
.ui-checkbox:checked + label:before {
    background-image: url("http://static.erm-assets.com/r1-15-334-6/assets/Desktop/img/Global/tick-sprite.svg");
    background-position: -1px -20px;
    background-repeat: no-repeat;
    text-align: center;
}
.ui-checkbox-label--blue:before {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #cdcdcd;
}


.snippet-shadow {
    box-shadow: 0 1px 0 0 #dce0e0;
}

button:focus, input:focus, select:focus, textarea:focus {
    outline: 0;
}

.focus, .focus label, .focus input, .focus select  {
    color: #2574A9 !important;
}

.focus input, .focus.input-wrapper.select-wrapper, .focus.input-wrapper.contains-select {
    border: 1px solid #2574A9;
}

.filled, .filled label, .filled input, .filled select {
    color: #555;
}

.filled input, .filled.input-wrapper.select-wrapper, .filled.input-wrapper.contains-select {
    border: 1px solid #555;
}

.invalid input,.invalid label, .invalid input, .invalid select  {
    color: #cb4745 !important;
}

.invalid input, .invalid.input-wrapper.contains-select {
    border: 1px solid #cb4745;
}


input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


/*RADIO BUTTONS*/



.ff-container {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    margin: 0px 0 20px 0;
    padding-top: 1px;
    display:table;
    position:relative;
}

.ff-container input {
    display: none;
}

.ff-container input[type=radio], .ff-container input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    height: 40px;
}

.ff-container label.ff-label-type-1 {
    border-radius: 2px 0 0 2px;
    left: 0;
    position: absolute;
    top: 0;
    border-top:    1px solid #cdcdcd;
    border-left:  1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
}

.ff-container label.ff-label-type-2 {
    border-radius: 0 2px 2px 0;
    left: 0;
    margin: 0 0 0 50%;
    position: absolute;
    top: 0;
    border-top:    1px solid #cdcdcd;
    border-right:  1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
}

.ff-container.group-of-four label.ff-label-type-1 {
    border-radius: 2px 0 0 2px;
    left: 0;
    position: absolute;
    top: 0;
    border:    1px solid #cdcdcd;
}

.ff-container.group-of-four label.ff-label-type-2 {
    border-radius: 0;
    left: -1px;
    margin: 0 0 0 25%;
    position: absolute;
    top: 0;
    border:    1px solid #cdcdcd;
}

.ff-container.group-of-four label.ff-label-type-3 {
    border-radius: 0;
    left: -2px;
    margin: 0 0 0 50%;
    position: absolute;
    top: 0;
    border: 1px solid #cdcdcd;
}

.ff-container.group-of-four label.ff-label-type-4 {
    border-radius: 0 2px 2px 0;
    left: -3px;
    margin: 0 0 0 75%;
    position: absolute;
    top: 0;
    border:    1px solid #cdcdcd;
}

.ff-container label {
    width: 50%;
    height: 40px;
    cursor: pointer;
    color: #555555;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
    line-height: 40px;
    font-size: 15px;
    padding: 0;
    background: #ffffff;
    float: left;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.ff-container.group-of-four label {
    width: 25%;
}

.ff-container input.ff-selector-type-all:checked ~ label.ff-label-type-all, .ff-container input.ff-selector-type-1:checked ~ label.ff-label-type-1, .ff-container input.ff-selector-type-2:checked ~ label.ff-label-type-2, .ff-container input.ff-selector-type-3:checked ~ label.ff-label-type-3 {
    background: #dfeaf2;
    color: #2574a9;
    text-shadow: 0px 1px 1px rgba(255,255,255,0.3);
    border: 1px solid #2574a9;
    z-index: 7;
}

.submitFilterButton.closed {
}

.submitFilterButton {
    bottom: 0;
    opacity: 1;
    visibility: visible;
    position: fixed;
    width: 100%;
    right:0;
    z-index: 99999;
    transition:all .5s ease-in-out;
    -webkit-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow:    0px -3px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow:         0px -3px 5px 0px rgba(0, 0, 0, 0.5);
}

.submitFilterButton.hidden {
}





/*RADIO BUTTONS*/


/*MORPHING LABELS*/




/*The loading animation*/



.loader-wrapper {
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity=0);
    z-index: -1;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.25s ease;
}

.loading.loader-wrapper {
    opacity: 1;
    visibility: visible;
    filter: alpha(opacity=100);
    z-index: 9999999999;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .loading.loader-wrapper .loader {
        margin: -27px auto 0 !important; } 
}

.loading.loader-wrapper .loader:before, .loading.loader-wrapper .loader:after, .loading.loader-wrapper .loader {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    top: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load 1.8s infinite ease-in-out;
    animation: load 1.8s infinite ease-in-out; }
.loading.loader-wrapper .loader {
    margin: -34px auto 0;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    -webkit-animation-delay: 0.16s;
    animation-delay: 0.16s; }
.loading.loader-wrapper .loader:before {
    left: -20px; }
.loading.loader-wrapper .loader:after {
    left: 20px;
    -webkit-animation-delay: 0.32s;
    animation-delay: 0.32s; }
.loading.loader-wrapper .loader:before, .loading.loader-wrapper .loader:after {
    content: '';
    position: absolute;
    top: 0; }

@-webkit-keyframes load {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em #2574a9; }

    40% {
        box-shadow: 0 2.5em 0 0 #2574a9; } }

@keyframes load {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em #2574a9; }

    40% {
        box-shadow: 0 2.5em 0 0 #2574a9; }
}



/*The loading animation*/




.toggle-view{
    float: right;
    height: 50px;
    width: 50px;
    color: #ffffff;
    font-size: 40px;
    text-align: center;
    margin: 0 50px 0 0 ;
    cursor: pointer;
    transition: all .25s ease;
    display: none;
    position: relative;
}

.toggled.toggle-view {
    color: #f76426;
}

.nav-ico {
    display: block;
    height: 20px;
    width: 20px;
    margin: 15px;
    transition: all .25s ease;
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.stacked-ico {
    background: url("img/stacked-ico.svg") no-repeat center center;
    opacity: 1;
    visibility: visible;
}
.listed-ico{
    background: url("img/list-ico.svg") no-repeat center center;
    opacity: 0;
    visibility: hidden;
}

.toggled .stacked-ico{
    opacity: 0;
    visibility: hidden;
}
.toggled .listed-ico {
    opacity: 1;
    visibility: visible;
}



.profile-image-parent{
    position: relative;
    width: 50%;		/* desired width */
}
.profile-image-parent:before{
    content: "";
    display: block;
    padding-top: 100%; 	/* initial ratio of 1:1*/
}

.profile-image-wrapper{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: -1px;
    right: -1px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dce0e0;
    z-index: 1;
}

.profile-image-wrapper img{
    height: 100% !important;
    left: 50% !important;
    margin: 0 0 0 -67%;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    transform: scale(1.2);
    width: auto !important;
}

.profile-listing #listings_results .listing .listing__image {
    width: 24%;
}


.profile-listing #listings_results .listing {
    background: none;
    cursor: pointer;
    list-style-type: none;
    overflow: visible;
    position: relative;
    width: 100%;
    border: none;
    box-shadow: none;
}

.profile-listing #listings_results .listing .listing__information {
    border: 1px solid #dce0e0;
    background: #fff;
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 1px 0 0 #dce0e0;
    width: 88%;
    overflow: hidden;
}
.profile-listing #listings_results .listing .listing__information {
    font-size: 1em;
    margin: 0 0 0 12%;
    padding: 10px 0 0 14%;
}

.profile-listing #listings_results .listing .listing__image {
    overflow: visible;
}

/*GENERIC MOBILES*/

@media only screen
and (max-width : 480px) {



    .profile-listing #listings_results .listing .listing__image {
        width: 32%;
    }

    .profile-listing #listings_results .listing .listing__information {
        margin: 0 0 0 16%;
        padding: 10px 0 0 19%;
        width: 84%;
    }

    .stacked .listing__price_01 {
        display: none;
    }

    .stacked #listings_results .listing .listing__image {
        width: 100%;
    }


    .stacked .listing__name {
        display: block !important;
        width: 100%;
        height: 60px;
        line-height: 87px;
        background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0.9) 82%, rgba(0,0,0,0.9) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(1%,rgba(0,0,0,0)), color-stop(82%,rgba(0,0,0,0.9)), color-stop(100%,rgba(0,0,0,0.9))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0.9) 82%,rgba(0,0,0,0.9) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0.9) 82%,rgba(0,0,0,0.9) 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0.9) 82%,rgba(0,0,0,0.9) 100%); /* IE10+ */
        background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0.9) 82%,rgba(0,0,0,0.9) 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00333333', endColorstr='#e6333333',GradientType=0 ); /* IE6-9 */
        position: absolute;
        left: 0;
        bottom: 0;
        color: #ffffff;
        text-align: left;
        border-radius: 0 0 2px 2px;
    }

    .stacked .location-name {
        font-size: 18px !important;
        margin: 0 0 0 27px;
       font-weight:400;

    }


    .stacked .loc_icon {
        background-image: url("./img/mark-white.svg");
        background-repeat: no-repeat;
        background-size: cover;
        height: 14px;
        left: 10px;
        margin: 16px 5px 0 0;
        position: absolute;
        width: 12px;
        bottom:10px;
    }


    .stacked .listing__image .listing__price_01 {
        display: block ;
        font-size: 25px;
    }

    .stacked .listing__image .listing__price_01 span {
      font-weight:300;
    }

    .stacked .listing__location {
        display: none;
    }

    .stacked #listings_results .listing .listing__image {
        border-radius: 2px;
        width: 100%;
    }

    .stacked .listing__image img{
        border-radius: 2px;
    }

    .stacked #listings_results .listing .listing__information {
        margin: 0 ;
        padding: 10px;
        position: relative;
        overflow: hidden;
        width: 100%;
        display: none;
    }

    .stacked .fade-bottom {
        display: none ;
    }


    .toggle-view{
        display: block;
    }


}

/*GENERIC MOBILES ENDS HERE*/




.bm-badge {
  padding:3px 5px ;
  color:#ffffff;
  border-radius:4px;
  position:absolute;
  top:5px;
  right: inherit;
  left:5px;
  font-size:12px ;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow:    0px 0px 2px 1px rgba(0, 0, 0, 0.5);
  box-shadow:         0px 0px 2px 1px rgba(0, 0, 0, 0.5);
  }

.stacked .bm-badge {
  padding:5px 7px !important;
  font-size:14px !important;
  right:5px;
  left:inherit;
}



.bm-badge.bm-badge-early {
  background: #00b16a;
  }

.bm-badge.bm-badge-free-blue {
  background: #2574a9;
  }

.bm-badge.bm-badge-free-gray {
  background: #aaaaaa;
  }

.bm-badge-early span {
  display: block;
  float: left;
  height: 12px;
  margin: 0 5px 0 0;
  width: 12px;
  background-image: url(img/early-bird-ico.svg);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center
  }
  
.stacked .bm-badge-early span {
  height: 15px;
  margin: 0 5px 0 0;
  width: 15px;
  }
  
span.avaliable-date {
  display:block;}