@import url(http://fonts.googleapis.com/css?family=Ropa+Sans);
body, html, #paktayApp {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
div,
summary {
  box-sizing: border-box;
  display: block;
}

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

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

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

img {
  border-style: none;
}

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

input, textarea {
  outline: none;
}

/*** Media Query Ranges ***/
.hide {
  display: none;
}

.visibility-hidden {
  visibility: hidden;
}

@media only screen and (max-width : 769px) {
  .hide-on-small-and-down {
    display: none !important;
  }
}

@media only screen and (max-width : 1023px) {
  .hide-on-medium-down {
    display: none !important;
  }
}

@media only screen and (max-width : 1299px) {
  .hide-on-large-and-down {
    display: none !important;
  }
}

@media only screen and (max-width : 1440px) {
  .hide-on-extra-large-and-down {
    display: none !important;
  }
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.display-none {
  display: none;
}

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

.flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
}

.flex-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-wrap: wrap;
}

@media only screen and (max-width : 769px) {
  .flex-column-small-down {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}

@media only screen and (max-width : 769px) {
  .flex-row-small-down {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
  }
}

@media only screen and (min-width : 770px) {
  .flex-row-reverse-small-and-up {
    display: flex;
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width : 1023px) {
  .flex-column-medium-down {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}

@media only screen and (max-width : 1023px) {
  .flex-row-medium-down {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
  }
}

@media only screen and (min-width : 1024px) {
  .flex-row-medium-up {
    display: flex;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-left {
  -webkit-flex-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex-right {
  -webkit-flex-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.flex-middle {
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-center {
  -webkit-justify-content: center;
  justify-content: center;
}

@media only screen and (max-width : 769px) {
  .flex-middle-small-down {
    -webkit-flex-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }
}

@media only screen and (max-width : 769px) {
  .flex-start-small-down {
    -webkit-flex-align: flex-start !important;
    -ms-flex-align: flex-start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }
}

@media only screen and (max-width : 769px) {
  .flex-end-small-down {
    -webkit-flex-align: flex-end !important;
    -ms-flex-align: flex-end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }
}

@media only screen and (max-width : 769px) {
  .flex-center-small-down {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}

@media only screen and (max-width : 1023px) {
  .flex-center-medium-down {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}

@media only screen and (max-width : 769px) {
  .flex-left-small-down {
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }
}

@media only screen and (max-width : 769px) {
  .flex-left-small-right {
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
  }
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width : 770px) {
  .flex-space-between-small-up {
    display: flex;
    justify-content: space-between;
  }
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  clear: both;
}

.width-100 {
  width: 100%;
}

.width-auto {
  width: auto;
}

.max-width-100 {
  max-width: 100%;
}

.height-100 {
  height: 100%;
  max-height: 100%;
}

.list-flat, .list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-inline li {
  float: left;
}

.content-transition {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media only screen and (max-width : 769px) {
  .wrap-on-small-and-down {
    flex-wrap: wrap;
  }
}

.flex-1 {
  flex: 1;
}

.flex-05 {
  flex: 0.5;
}

.flex-025 {
  flex: 0.25;
}

.flex-075 {
  flex: 0.75;
}

.flex-04 {
  flex: 0.4;
}

.flex-06 {
  flex: 0.6;
}

.p-all {
  padding: 1rem !important;
}

.p-s-all {
  padding: 0.5rem !important;
}

.p-lg-all {
  padding: 2rem !important;
}

.p-l-lg {
  padding-left: 2rem !important;
}

.p-r-lg {
  padding-right: 2rem !important;
}

.p-b-lg {
  padding-bottom: 2rem !important;
}

.p-t-lg {
  padding-top: 2rem !important;
}

.p-l {
  padding-left: 1rem !important;
}

.p-r {
  padding-right: 1rem !important;
}

.p-b {
  padding-bottom: 1rem !important;
}

.p-t {
  padding-top: 1rem !important;
}

.p-l-s {
  padding-left: 0.5rem !important;
}

.p-r-s {
  padding-right: 0.5rem !important;
}

.p-b-s {
  padding-bottom: 0.5rem !important;
}

.p-t-s {
  padding-top: 0.5rem !important;
}

.p-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.p-t-none {
  padding-top: 0 !important;
}

.p-l-none {
  padding-left: 0 !important;
}

.p-r-none {
  padding-right: 0 !important;
}

.p-b-none {
  padding-bottom: 0 !important;
}

.m-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-all {
  margin: 1rem !important;
}

.m-all-s {
  margin: 0.5rem !important;
}

.m-auto {
  margin: auto;
}

.m-l-s {
  margin-left: 0.5rem !important;
}

.m-r-s {
  margin-right: 0.5rem !important;
}

.m-b-s {
  margin-bottom: 0.5rem !important;
}

.m-t-s {
  margin-top: 0.5rem !important;
}

.m-l-lg {
  margin-left: 2rem !important;
}

.m-r-lg {
  margin-right: 2rem !important;
}

.m-b-lg {
  margin-bottom: 2rem !important;
}

.m-t-lg {
  margin-top: 2rem !important;
}

.m-l {
  margin-left: 1rem !important;
}

.m-r {
  margin-right: 1rem !important;
}

.m-b {
  margin-bottom: 1rem !important;
}

.m-t {
  margin-top: 1rem !important;
}

.m-b-none {
  margin-bottom: 0 !important;
}

.m-t-none {
  margin-top: 0 !important;
}

.m-left-none {
  margin-left: 0 !important;
}

.m-l-none {
  margin-left: 0 !important;
}

.m-r-none {
  margin-right: 0 !important;
}

.piso-casa {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
}
@media only screen and (max-width : 1023px) {
  .piso-casa {
    height: auto;
  }
}
.piso-casa h1 {
  font-size: 2rem;
  padding: 2rem 0;
  color: #454545;
  margin-bottom: 1rem;
  border-bottom: 1px solid #EE501C;
}
.piso-casa h2 {
  text-transform: uppercase;
  font-size: 16px;
  margin: 1.5rem 0 1.5rem;
  color: #808080;
}
.piso-casa .boton_contacto {
  position: absolute;
  top: 120px;
  right: 20px;
}
@media only screen and (max-width : 1023px) {
  .piso-casa .boton_contacto {
    top: 100px;
    right: 10px;
  }
  .piso-casa .boton_contacto img {
    width: 150px;
    height: auto;
  }
}
.piso-casa .main-header {
  height: 90px;
  background: url("/templates/pisocasa/images/wood.jpg") center repeat-x;
  background-size: contain;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 99;
}
.piso-casa .main-header .header-nav {
  height: 90px;
}
.piso-casa .main-header .header-nav .responsive-nav {
  display: block;
  width: 50px;
  height: 45px;
}
.piso-casa .main-header .header-nav .responsive-nav span {
  display: block;
  margin-top: 7px;
  width: calc(100% - 20px);
  left: 10px;
  background: #ffffff;
  height: 5px;
  position: relative;
}
@media only screen and (min-width : 770px) {
  .piso-casa .main-header .header-nav .responsive-nav {
    display: none;
  }
}
.piso-casa .main-header .header-nav #horizmenu-surround {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width : 769px) {
  .piso-casa .main-header .header-nav #horizmenu-surround {
    display: none;
    position: fixed;
    width: 100%;
    top: 90px;
    height: calc(100% - 90px);
    background: #ffffff;
    left: 0;
    z-index: 1000;
    overflow-y: auto;
  }
  .piso-casa .main-header .header-nav #horizmenu-surround.active {
    display: block;
  }
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop {
  height: 100%;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width : 769px) {
  .piso-casa .main-header .header-nav #horizmenu-surround .menutop {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop li {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width : 769px) {
  .piso-casa .main-header .header-nav #horizmenu-surround .menutop li {
    min-height: 40px;
    height: auto;
  }
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop li a, .piso-casa .main-header .header-nav #horizmenu-surround .menutop li span {
  background: none transparent;
  height: 100%;
  align-items: center;
  display: flex;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  border-top: 0;
  border-bottom: 0;
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop li.active a {
  background: #EE501C;
  border-color: #EE501C;
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop li.active.parent a {
  background: none;
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop li.active li.active a {
  background: #EE501C;
}
@media only screen and (min-width : 770px) {
  .piso-casa .main-header .header-nav #horizmenu-surround .menutop li:hover {
    background: rgba(50, 50, 50, 0.5);
  }
}
.piso-casa .main-header .header-nav #horizmenu-surround .menutop li .level2 {
  top: 90px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width : 769px) {
  .piso-casa .main-header .header-nav #horizmenu-surround .menutop li .level2 {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    border: 0;
  }
}
.piso-casa .main-content {
  order: 2;
  background: #ffffff;
  color: #454545;
}
@media only screen and (max-width : 1023px) {
  .piso-casa .main-content {
    display: block !important;
  }
}
.piso-casa .main-content .content-area {
  order: 2;
  flex: 1;
}
@media only screen and (max-width : 1023px) {
  .piso-casa .main-content .content-area {
    order: 1;
    width: 100%;
    max-width: 100%;
    display: block !important;
  }
}
@media only screen and (min-width : 1024px) {
  .piso-casa .main-content .content-area {
    margin-bottom: 1rem;
  }
}
.piso-casa .main-content .content-area p {
  margin-bottom: 2rem;
}
.piso-casa .main-content .nav-area {
  order: 1;
}
@media only screen and (max-width : 1023px) {
  .piso-casa .main-content .nav-area {
    order: 2;
    width: 100%;
    max-width: 100%;
    display: block !important;
  }
}
@media only screen and (max-width : 769px) {
  .piso-casa .main-content .nav-area .main-nav-content .link-list {
    justify-content: center;
    padding-bottom: 2rem;
  }
}
.piso-casa .main-content .nav-area .main-nav-content .pd_tt h2 {
  font-size: 18px;
  font-weight: normal;
  color: #454545;
  margin: 0px;
  padding: 1rem 0px;
}
.piso-casa .main-content .nav-area .main-nav-content .nav_pd {
  display: block;
  width: auto;
  height: auto;
  max-width: 121px;
  margin: 0 0.5rem 0 0;
  padding: 0;
  position: relative;
}
.piso-casa .main-content .nav-area .main-nav-content .nav_pd img {
  width: 100%;
  height: auto;
  border: 3px solid #959595;
  box-sizing: border-box;
}
.piso-casa .main-content .nav-area .main-nav-content .nav_pd .tt_pc {
  bottom: 5px;
  color: #FFFFFF;
  display: block;
  font-size: 15px;
  margin: 0 9px 5px;
  padding: 0;
  position: absolute;
  text-align: left;
  width: 100%;
}
.piso-casa .banners-container {
  order: 1;
  flex: 1;
  min-height: 500px;
}
@media only screen and (max-width : 1023px) {
  .piso-casa .banners-container {
    height: 570px;
  }
}
@media only screen and (max-width : 769px) {
  .piso-casa .banners-container {
    height: 340px;
    min-height: 340px;
  }
}
.piso-casa .footer-content {
  order: 3;
  color: #ffffff;
  font-size: 14px;
  background: #232323;
}
@media only screen and (max-width : 769px) {
  .piso-casa .footer-content {
    display: block;
  }
  .piso-casa .footer-content .flex-column {
    display: block !important;
    width: 100% !important;
  }
}
@media only screen and (max-width : 769px) {
  .piso-casa .footer-content .copy-area {
    padding: 1rem 1rem 2rem !important;
  }
}
.piso-casa #supersized {
  opacity: 0;
  top: 90px;
  position: absolute !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width : 1023px) {
  .piso-casa #supersized {
    height: 480px !important;
  }
}
@media only screen and (max-width : 769px) {
  .piso-casa #supersized {
    height: 230px !important;
    min-height: 230px !important;
  }
}
.piso-casa #supersized li {
  position: absolute !important;
}
.piso-casa #progress-back, .piso-casa #controls-wrapper {
  opacity: 0;
  position: absolute !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.piso-casa .content-area-rows {
  height: 50px;
  border-bottom: 1px solid #808080;
  padding-top: 0.5rem;
}
.piso-casa .left-content h3 {
  font-size: 18px;
  color: #808080;
  margin: 0;
}
.piso-casa .left-content.flex-1 .content-area-rows {
  height: auto;
  padding-bottom: 0.5rem;
}
.piso-casa .right-content p {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}
.piso-casa .right-content h4 {
  font-style: 15px;
  margin: 0;
}
.piso-casa .info_auxiliar_contenido {
  margin-top: 90px;
  height: calc(100% - 90px);
  padding: 2rem;
  max-width: 50%;
  width: calc(50% - 1px);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
}
.piso-casa.catalog-page .banners-container {
  height: 760px;
  min-height: 760px;
  margin-top: 90px;
  background: #f1f1f1;
}
@media only screen and (max-width : 1023px) {
  .piso-casa.catalog-page .banners-container {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
  }
}
@media only screen and (max-width : 769px) {
  .piso-casa.catalog-page .banners-container {
    height: 330px;
    min-height: 330px;
    max-height: 330px;
  }
}
.piso-casa.contact-page .banners-container {
  height: 730px;
  min-height: 730px;
  text-align: right;
}
@media only screen and (max-width : 769px) {
  .piso-casa.contact-page .banners-container {
    height: 975px;
    min-height: 975px;
    display: flex;
    flex-direction: column;
  }
}
.piso-casa.contact-page .banners-container form {
  text-align: left;
}
.piso-casa.contact-page .banners-container form fieldset {
  border: 0;
}
.piso-casa.contact-page .banners-container form fieldset .control-group {
  position: relative;
  margin-bottom: 15px;
}
.piso-casa.contact-page .banners-container form fieldset .control-group .mod-rscontact-error {
  position: absolute;
  left: 0;
  bottom: -16px;
  font-size: 12px;
  text-align: right;
  width: 100%;
}
.piso-casa.contact-page .banners-container form fieldset .control-group input {
  width: 100%;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
  margin-top: 5px;
  padding: 0 15px;
  box-sizing: border-box;
  color: #ffffff;
}
.piso-casa.contact-page .banners-container form fieldset .control-group textarea {
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
  margin-top: 5px;
  padding: 15px;
  box-sizing: border-box;
  color: #ffffff;
}
.piso-casa.contact-page .banners-container form fieldset .control-group .checkbox {
  display: inline-block;
  line-height: 28px;
  width: 32%;
  font-size: 15px;
}
.piso-casa.contact-page .banners-container form fieldset .control-group .checkbox input {
  float: left;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.piso-casa.contact-page .center_top_content {
  margin-top: 90px;
  height: calc(100% - 90px);
  max-width: 50%;
  width: calc(50% - 1px);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  float: left;
}
@media only screen and (max-width : 769px) {
  .piso-casa.contact-page .center_top_content {
    width: 100%;
    max-width: 100%;
    height: 250px;
    display: flex;
    float: initial;
    order: 2;
    margin-top: 0;
  }
}
.piso-casa.contact-page .info_auxiliar_contenido {
  float: left;
}
@media only screen and (max-width : 769px) {
  .piso-casa.contact-page .info_auxiliar_contenido {
    width: 100%;
    max-width: 100%;
    display: flex;
    float: initial;
    order: 1;
  }
}
.piso-casa a {
  color: #EE501C;
  text-decoration: none;
}

/*** Media Query Ranges ***/
.hide {
  display: none;
}

.visibility-hidden {
  visibility: hidden;
}

@media only screen and (max-width: 769px) {
  .hide-on-small-and-down {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .hide-on-medium-down {
    display: none !important;
  }
}
@media only screen and (max-width: 1299px) {
  .hide-on-large-and-down {
    display: none !important;
  }
}
@media only screen and (max-width: 1440px) {
  .hide-on-extra-large-and-down {
    display: none !important;
  }
}
.left {
  float: left !important;
}

.right {
  float: right !important;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.display-none {
  display: none;
}

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

.flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
}

.flex-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-wrap: wrap;
}

@media only screen and (max-width: 769px) {
  .flex-column-small-down {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
@media only screen and (max-width: 769px) {
  .flex-row-small-down {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
  }
}
@media only screen and (min-width: 770px) {
  .flex-row-reverse-small-and-up {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 1023px) {
  .flex-column-medium-down {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .flex-row-medium-down {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .flex-row-medium-up {
    display: flex;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-left {
  -webkit-flex-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex-right {
  -webkit-flex-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.flex-middle {
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-center {
  -webkit-justify-content: center;
  justify-content: center;
}

@media only screen and (max-width: 769px) {
  .flex-middle-small-down {
    -webkit-flex-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }
}
@media only screen and (max-width: 769px) {
  .flex-start-small-down {
    -webkit-flex-align: flex-start !important;
    -ms-flex-align: flex-start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }
}
@media only screen and (max-width: 769px) {
  .flex-end-small-down {
    -webkit-flex-align: flex-end !important;
    -ms-flex-align: flex-end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }
}
@media only screen and (max-width: 769px) {
  .flex-center-small-down {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
@media only screen and (max-width: 1023px) {
  .flex-center-medium-down {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
@media only screen and (max-width: 769px) {
  .flex-left-small-down {
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }
}
@media only screen and (max-width: 769px) {
  .flex-left-small-right {
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
  }
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 770px) {
  .flex-space-between-small-up {
    display: flex;
    justify-content: space-between;
  }
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  clear: both;
}

.width-100 {
  width: 100%;
}

.width-auto {
  width: auto;
}

.max-width-100 {
  max-width: 100%;
}

.height-100 {
  height: 100%;
  max-height: 100%;
}

.list-flat, .list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-inline li {
  float: left;
}

@media only screen and (max-width: 769px) {
  .wrap-on-small-and-down {
    flex-wrap: wrap;
  }
}
.flex-1 {
  flex: 1;
}

.flex-05 {
  flex: 0.5;
}

.flex-025 {
  flex: 0.25;
}

.flex-075 {
  flex: 0.75;
}

.flex-04 {
  flex: 0.4;
}

.flex-06 {
  flex: 0.6;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Ropa Sans", sans-serif;
  font-size: 13px;
  min-height: 650px;
}

body, html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: "Ropa Sans", sans-serif;
  font-size: 12px;
  min-height: 650px;
  display: block;
  position: relative;
}

div.clear {
  clear: both;
}

.slogan {
  text-align: right;
  font-size: 17px;
  color: #FFF;
  padding-bottom: 5px;
  vertical-align: bottom;
  padding-top: 12px;
}

.nav_user {
  text-align: right;
}

.resumen_compras_top a, .menu_user_top ul li a {
  font-size: 11px;
  font-weight: bold;
  text-align: right;
  text-decoration: none;
  color: #FFF;
}

.resumen_compras_top a:hover, .menu_user_top ul li a:hover {
  font-size: 11px;
  font-weight: bold;
  text-align: right;
  text-decoration: none;
  color: #666;
}

.resumen_compras_top ul, .menu_user_top ul {
  display: block;
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.resumen_compras_top ul li, .menu_user_top ul li {
  display: block;
  position: relative;
  float: right;
  margin: 0px 0px 10px 0px;
  padding: 0px 7px;
  border-right: 1px solid #FFF;
  list-style: none;
}

.resumen_compras_top {
  padding-right: 5px;
  text-align: right;
}

.area_registro {
  text-align: right;
}

.area_registro a:hover {
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  text-decoration: none;
  color: #666;
}

.area_registro a {
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  text-decoration: none;
  color: #FFF;
}

.redes_vinculos {
  text-align: right;
}

.redes_vinculos a img {
  border: 0px;
}

.area_navegacion {
  height: 38px;
}

.area_menu {
  text-align: left;
}

.area_busqueda {
  text-align: right;
  width: 250px;
}

div.pisocasa_menu {
  display: block;
  margin: 0px;
}

div.pisocasa_buscador {
  display: block;
  margin-right: 5px;
}

.info_foot {
  color: #90979e;
  background: url(../images/piso_foot.gif) repeat;
  height: 45px;
  text-align: center;
  padding: 0px 30px;
}

.ft_sep {
  width: 15px;
}

.mn_ft {
  vertical-align: top;
  text-align: left;
}

.mn_ft ul {
  margin: 0px;
  padding: 0px;
}

.mn_ft ul li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: block;
}

.mn_ft ul li a {
  font-size: 12px;
  font-weight: 300;
  text-align: right;
  text-decoration: none;
  color: #90979e;
}

.mn_ft ul li a:hover {
  font-size: 12px;
  font-weight: 300;
  text-align: right;
  text-decoration: none;
  color: #64a8b1;
}

.mn_ft h3 {
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #90979E;
}

.crt_ft h3 {
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #90979E;
}

div.border_box div.box_skitter.box_skitter_large100 {
  margin-bottom: 0px;
}

div.border_box div.box_skitter.box_skitter_large100 span.info_slide_dots {
  margin-bottom: 0px;
  bottom: 0px;
  width: 160px;
  height: 37px;
  background: url(../images/sl_nav_bg.png) bottom right no-repeat;
  border-radius: 0px;
  padding: 0px 8px 0 0;
}

div.border_box div.box_skitter.box_skitter_large100 span.info_slide_dots span.image_number {
  margin-top: 14px;
  float: right;
}

div.border_box div.box_skitter.box_skitter_large100 a.prev_button, div.border_box div.box_skitter.box_skitter_large100 a.next_button {
  width: 37px;
  height: 150px;
  margin-top: -75px !important;
}

div.border_box div.box_skitter.box_skitter_large100 a.prev_button {
  background: url(../images/fl_l.png) left center no-repeat;
}

div.border_box div.box_skitter.box_skitter_large100 a.next_button {
  background: url(../images/fl_r.png) right center no-repeat;
}

div.border_box div.box_skitter.box_skitter_large100 span.info_slide_dots span.image_number {
  width: 14px;
  height: 14px;
  /*background:#FFF!important;*/
}

div.border_box div.box_skitter.box_skitter_large100 span.info_slide_dots span.image_number.image_number_select {
  width: 14px;
  height: 14px;
  background-image: url(../images/sa.jpg);
}

.bg_h1 {
  background: url(../images/bg_h1.gif) center no-repeat;
}

.bg_h2 {
  background: url(../images/bg_h2.gif) center no-repeat;
}

.bg_h3 {
  background: url(../images/bg_h3.gif) center no-repeat;
}

.bg_h4 {
  background: url(../images/bg_h4.gif) center no-repeat;
}

.tt1 {
  font-weight: bold;
  font-size: 13px;
  color: #ecedec;
}

.cc1 {
  font-weight: 300;
  font-size: 12px;
  color: #90979e;
}

.tt2 {
  font-weight: bold;
  font-size: 13px;
  color: #90979e;
}

.cc2 {
  font-weight: 300;
  font-size: 12px;
  color: #ecedec;
}

.bannerbt {
  padding-top: 20px;
}

.category_description table {
  border: 0px;
  border-collapse: collapse;
  border: 0px;
  margin: 0px;
  padding: 0px;
}

.frt_clz {
  vertical-align: top;
  text-align: left;
  background: url(../images/tt_bg.png) top left no-repeat;
  margin: 0px;
  padding: 0px;
}

.img_tt_clz {
  width: 225px;
  margin: 0px;
  padding: 0px;
}

.sep_tt_clz {
  margin: 0px;
  padding: 0px;
  width: 60PX;
}

.tti_tt_clz {
  font-size: 17px;
  color: #FFF;
  font-weight: 400;
  text-align: right;
  width: 300px;
  vertical-align: middle;
}

.tti_tt_clz h3 {
  font-size: 24px;
  color: #FFF;
  font-weight: 700;
  text-align: right;
  vertical-align: middle;
  margin: 0px;
}

.contenido_area_pr {
  vertical-align: bottom;
  height: 250px;
}

td.contenidos {
  vertical-align: bottom;
}

.modulos_inferiores {
  background: #191919;
  border-top: 2px solid #FFF;
  height: 250px;
}

.contenido_area_pr div.browse-view div.row div.product div.spacer {
  width: 323px;
  height: 250px;
}

.contenido_area_pr div.browse-view div.row div.product h2.tt_list {
  width: 190px;
  height: 50px;
  display: block;
  margin-left: 37px;
  font-weight: 300;
  text-align: center;
}

.contenido_area_pr div.browse-view div.row div.product h2.tt_list a {
  font-weight: 300;
  color: #FFF;
  line-height: 45px;
  text-decoration: none;
}

.contenido_area_pr div.browse-view div.row div.product div.width30 {
  display: block;
  width: 270px;
  height: 130px;
  text-align: right;
  margin-top: 10px;
}

.contenido_area_pr div.browse-view div.row div.product div.width30 img {
  max-width: 100% !important;
}

.contenido_area_pr div.browse-view div.row div.product div.width70 {
  width: 100% !important;
  float: left !important;
  margin-top: 5px !important;
}

.contenido_area_pr div.browse-view div.row div.product div.width70 div.product-price {
  display: none;
}

.contenido_area_pr div.browse-view div.row div.product div.width70 p {
  margin: 0px;
  padding: 0px;
}

.contenido_area_pr div.browse-view div.row div.product div.width70 p a {
  margin-left: 95px;
  background: #63a7b0;
  color: #FFF;
  font-size: 11px;
  border-color: #becfd5;
}

.contenido_area_pr div.browse-view div.horizontal-separator {
  margin: 3px 0px;
  background: none transparent !important;
}

.copy {
  color: #FFF;
  font-size: 11px;
  text-align: left;
  vertical-align: middle;
}

.creacion {
  text-align: right;
  color: #FFF;
  font-size: 11px;
}

.modulo_info {
  width: 40%;
  min-width: 400px !important;
  background: url(../images/contenido_bg.png) left repeat-y #212429;
  border-top: 2px solid #FFF;
}

.modulo_info {
  vertical-align: top;
}

.modulo_info div.blog-featured {
  margin: 0px;
  padding: 0px;
}

.modulo_info div.blog-featured h1 {
  margin: 0px;
  padding: 6px 10px;
  background: #464c5a;
  color: #FFF;
  font-size: 22px;
  font-weight: normal;
}

.modulo_info div.blog-featured div.items-leading {
  display: block;
  /*width:320px;*/
  margin: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: normal;
}

.info_auxiliar {
  text-align: right;
  vertical-align: TOP;
}

.modulo_info div.item-page h2 {
  margin: 0px;
  padding: 6px 10px;
  background: #464c5a;
  color: #FFF;
  font-size: 22px;
  font-weight: normal;
}

.modulo_info div.item-page {
  display: block;
  color: #FFF;
  font-size: 14px;
  font-weight: normal;
}

.modulo_info div.item-page p {
  padding: 0px 10px;
}

.modulo_info div.item-page td.tt_ps_f h1 {
  font-size: 13px;
  margin: 2px;
  padding: 0 10px;
  font-weight: normal;
}

.modulo_info div.item-page table td span {
  display: block;
  padding: 10px 10px 0px 10px;
}

.modulo_info div.item-page .listado_pisos_flotantes table td h2 {
  margin: 2px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: normal;
}

.modulo_info div.item-page .listado_pisos_flotantes table td p {
  margin: 2px 0px;
}

.tt_ps_f {
  vertical-align: top;
  border-bottom: #999 dotted 1px;
}

div.contacto strong {
  font-weight: normal;
  color: #ff8400;
}

.info_auxiliar div.info_auxiliar_contenido {
  float: right;
  margin-top: 50px;
  margin-right: 20px;
}

.info_auxiliar div.boton_contacto {
  float: right;
  margin-top: 35px;
  margin-right: 0px;
  padding: 0px;
  display: block;
}

div.info_auxiliar_contenido div.rsform form fieldset.formFieldset ol.formContainer {
  color: #FFF;
  background: url(../images/background.png);
}

.pp_mn {
  width: 19%;
}

div.rsform fieldset.formFieldset legend {
  background: url("../images/background.png") repeat scroll 0 0 transparent;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 5px;
}

div.gracias_mns {
  background: url("../images/background.png") repeat scroll 0 0 transparent;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  margin-top: 5px;
}

.formFieldset p.formRed {
  display: block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #cfcfcf;
  border-style: solid;
  border-width: 1px;
  behavior: url(PIE.htc);
  background: #900;
  color: #FFF;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 10px;
}

span.formClr span.formError {
  display: block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #cfcfcf;
  border-style: solid;
  border-width: 1px;
  behavior: url(PIE.htc);
  background: #900;
  color: #FFF;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 5px;
}

.boton_contacto .whatsappchat.is-bottom_right {
  bottom: 65px!important;
  right: 5px!important;
}

.boton_contacto .whatsappchat.is-bottom_right img{
  width: initial!important;
}

.boton_contacto .whatsappchat.is-bottom_right .popup-section .help-you-btn {
    padding: 4px 24px!important;
    font-size: 12px!important;
    line-height: 24px!important;
}

.boton_contacto .whatsappchat.is-bottom_right .popup-section .help-you-btn img{
  float: left;
}
/*# sourceMappingURL=template.css.map */

