@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@import 'classy-nav.min.css';
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    animation: unset !important;
    transition: none !important;
  }
}
/* Variables */
/* Header */
/* Supertop */
/* Footer */
/* Ws botón */
/* Tipografías */
/* Sidenav */
/* Buscador sobre slider */
/* Devices */
/* Generales y Compatibilidad Normilize */
* {
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
}

body {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004) !important;
  text-rendering: optimizeLegibility;
  font-size: calc(10px + 0.4vw);
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  margin: 0;
  letter-spacing: 0rem;
  color: #3b3b3b;
  padding: 0;
}

.offset {
  padding-top: 124px;
}

.offset-none {
  padding-top: 0px;
}

#section-uno,
#section-dos,
#section-tres,
#section-cuatro,
#section-cinco,
#section-seis,
#section-siete {
  position: absolute;
  top: -80px;
}

.img-responsive {
  width: 100%;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn:hover,
.btn:active,
.btn:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

button:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

progress,
sub,
sup {
  vertical-align: baseline;
}

button,
hr,
input {
  overflow: visible;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-shadow: none !important;
}
button:hover, button:active, button:focus, input:hover, input:active, input:focus, optgroup:hover, optgroup:active, optgroup:focus, select:hover, select:active, select:focus, textarea:hover, textarea:active, textarea:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

figcaption,
menu,
article,
aside,
details,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
  font-size: calc(10px + 0.4vw);
}

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

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

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  box-shadow: none !important;
}
button:hover, button:active, button:focus,
input:hover,
input:active,
input:focus,
select:hover,
select:active,
select:focus,
textarea:hover,
textarea:active,
textarea:focus {
  box-shadow: none !important;
}

optgroup {
  font-weight: 700;
}

button,
select {
  text-transform: none;
}
button:active, button:hover, button:focus,
select:active,
select:hover,
select:focus {
  box-shadow: none !important;
  outline: 0 !important;
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: #000 !important;
}

::placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: #000 !important;
}

footer input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 500;
  color: white !important;
}

footer input::placeholder {
  font-size: 14px !important;
  font-weight: 500;
  color: white !important;
}

[type=search]::-moz-placeholder {
  font-size: 16px !important;
  font-weight: 500;
  color: white !important;
}

[type=search]::placeholder {
  font-size: 16px !important;
  font-weight: 500;
  color: white !important;
}

.brightness {
  filter: brightness(1.3);
}

h1 {
  font-size: calc(22px + 0.4vw);
}

h2 {
  font-size: calc(18px + 0.4vw);
}

h3 {
  font-size: calc(12px + 0.4vw);
}

p {
  font-size: calc(10px + 0.4vw);
  letter-spacing: 0rem;
  color: #3b3b3b;
}

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

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

.text-align-center {
  text-align: center !important;
}

.zoom {
  display: block;
  overflow: hidden;
}

.zoom img {
  transform: scale(1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.zoom:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.overlay {
  width: 100vw;
  height: 100vh;
  background: black;
  opacity: 0.4;
  position: absolute;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
}

img {
  min-height: 1px;
  border-style: none;
}

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

a {
  text-decoration: none !important;
  background-color: transparent;
  outline-width: 0;
  box-shadow: none !important;
  outline: none !important;
}
a:focus, a:active, a:hover {
  text-decoration: none !important;
  outline-width: 0;
  outline: none !important;
  box-shadow: none !important;
}

.btn {
  border: none;
  padding: 0.5rem 3rem;
  border: 1px solid transparent;
  margin-bottom: 10px;
  outline: none !important;
  box-shadow: none !important;
  transition: 0.2s all;
}
.btn:active, .btn:hover, .btn:focus {
  outline: none !important;
  transition: 0.2s all;
  box-shadow: none !important;
}

::-moz-selection {
  background-color: #edea9d;
  color: white;
}

::selection {
  background-color: #edea9d;
  color: white;
}

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
  background-repeat: repeat-x;
}

.scroll-to-top { /*<i class="fa fa-chevron-up"></i>*/
  transition: all 0.3s;
  background: #edea9d;
  border-radius: 100%;
  bottom: 10px;
  color: white !important;
  display: block;
  height: 50px;
  opacity: 0.75;
  padding: 6px 0 13px;
  position: fixed;
  right: 10px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  z-index: 999;
  border: solid 2px white;
  font-size: 20px;
}
.scroll-to-top img {
  width: 20px;
}
.scroll-to-top:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

a:hover#scrollToTop,
a:focus#scrollToTop {
  color: #fff !important;
  text-decoration: none !important;
}

.scroll-to-top.visible {
  filter: alpha(opacity=75);
  opacity: 0.75;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 15px !important;
  max-width: 100% !important;
}

section {
  width: 100%;
  overflow: hidden;
  min-height: 550px;
  position: relative;
}
section p {
  font-size: calc(10px + 0.4vw);
  letter-spacing: 0rem;
  color: #3b3b3b;
  line-height: 1.5;
}
section .title p {
  font-size: calc(10px + 0.4vw);
  letter-spacing: 0rem;
  color: #3b3b3b;
}

.small-section {
  padding: 10px 0;
}

.section {
  padding: 20px 0;
}

.big-section {
  padding: 40px 0;
}

.large-section {
  padding: 60px 0;
}

.extralarge-section {
  padding: 80px 0;
}

.ubicacion img {
  width: 100%;
}
.ubicacion iframe {
  width: 100%;
  max-height: 200px;
}

.media-container-row {
  flex-wrap: nowrap;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: start;
}

.col-md-6 {
  float: left;
}

.fa {
  display: inline-block;
}

.parallax {
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Icon-Bar Redes */
.icon-bar-redes {
  position: fixed;
  top: 25%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.icon-bar-redes a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  border: 1px solid white;
  background: rgba(237, 234, 157, 0.8);
}
.icon-bar-redes a:hover, .icon-bar-redes a:active, .icon-bar-redes a:focus {
  background-color: #9e9e9e;
  background: #9e9e9e;
  border: 1px solid #9e9e9e;
}
.icon-bar-redes a .twitter {
  background: #55ACEE;
  color: white;
}
.icon-bar-redes a .google {
  background: #dd4b39;
  color: white;
}
.icon-bar-redes a .linkedin {
  background: #007bb5;
  color: white;
}
.icon-bar-redes a .youtube {
  background: #bb0000;
  color: white;
}
.icon-bar-redes a .feed {
  background: #dedede;
  color: white;
}
.icon-bar-redes a.redondas {
  display: block;
  text-align: center;
  padding: 6px 14px;
  margin: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  border: 1px solid transparent;
  border-radius: 100%;
  background: #3b3b3b;
}
.icon-bar-redes a.redondas:hover, .icon-bar-redes a.redondas:active, .icon-bar-redes a.redondas:focus {
  background-color: black;
  background: black;
  border: 1px solid transparent;
}
.icon-bar-redes .facebook {
  background: #3B5998;
  color: white;
}
.icon-bar-redes .instagram {
  color: #fff;
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.icon-bar-redes .whatsapp {
  background: #25b249;
  color: white;
}

/* ==========================================================================
  $Html Lightbox Galery
========================================================================== */
#html5-watermark {
  display: none !important;
}

.lightboxcontainer {
  width: 100%;
  text-align: left;
}

.lightboxleft {
  width: 40%;
  float: left;
}

.lightboxright {
  width: 60%;
  float: left;
}

.lightboxright iframe {
  min-height: 390px;
}

.divtext {
  margin: 36px;
}

@media (max-width: 800px) {
  .lightboxleft {
    width: 100%;
  }
  .lightboxright {
    width: 100%;
  }
  .divtext {
    margin: 12px;
  }
}
.hidden-xs {
  display: block;
}

.visible-xs {
  display: none;
}

@media (max-width: 568px) {
  .visible-xs {
    display: block;
  }
  .hidden-xs {
    display: none;
  }
}
/* ==========================================================================
  Margenes 
========================================================================== */
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

/* ==========================================================================
  Paddings
========================================================================== */
.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.offset-medio {
  margin-left: 2.333333%;
}

/* ==========================================================================
  Videos
========================================================================== */
video {
  width: 100% !important;
  height: auto !important;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
  Accordion
========================================================================== */
#accordion {
  margin-bottom: 20px;
}
#accordion .panel {
  margin-bottom: 0;
  border-radius: 4px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: #ddd;
}
#accordion .panel .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
  border-bottom: 0;
  padding: 10px 15px;
}
#accordion .panel .panel-heading .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
#accordion .panel .panel-heading .panel-title a {
  color: #3b3b3b;
}
#accordion .panel .panel-heading [data-toggle=collapse].collapsed:after {
  transform: rotate(90deg);
  color: #454444;
}
#accordion .panel .panel-heading [data-toggle=collapse]:after {
  font-family: "fontawesome";
  content: "\f054";
  float: right;
  color: #3ca936;
  font-size: 18px;
  line-height: 22px;
  transform: rotate(-90deg);
}
#accordion .panel .panel-heading .panel-title a,
#accordion .panel .panel-heading .panel-title a:hover,
#accordion .panel .panel-heading .panel-title a:active,
#accordion .panel .panel-heading .panel-title a:focus {
  color: #676D75;
}
#accordion .panel .panel-body {
  font-size: 16px;
  color: #3b3b3b;
  line-height: 24px;
  margin-bottom: 16px;
  border-top-color: #ddd;
  border-top: 1px solid #ddd;
  padding: 15px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 9999;
  height: 100%;
  overflow: hidden;
}

.status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  background-size: cover;
}

/**********************
ICON FONT
***********************/
.ico,
.fa,
.fas,
.fab {
  transition: all 0.3s ease;
}

/* Supertop Movil */
#movil {
  padding: 0;
  background-color: transparent;
  height: auto;
  display: none;
}
#movil .top_nav_left {
  height: 50px;
  line-height: 50px;
  font-size: calc(10px + 0.2vw);
  color: #3b3b3b;
  text-transform: uppercase;
  text-align: center;
}
#movil .top_nav_left a {
  color: #3b3b3b;
}
#movil .top_nav_left a:hover, #movil .top_nav_left a:focus, #movil .top_nav_left a:active {
  color: rgba(237, 234, 157, 0.8);
}
#movil .top_nav_left img {
  max-width: 15px;
  margin-right: 7px;
}
#movil .text-right {
  position: relative;
  width: 100%;
  height: 100%;
}
#movil .text-right .top_nav_right {
  position: relative;
}
#movil .text-right .top_nav_right ul.top_nav_menu {
  margin-bottom: 0px;
  line-height: 1.5;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item {
  /* display: inline-block; */
  display: none;
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  background: transparent;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-toggle::after {
  display: none;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item a {
  display: block;
  color: #3b3b3b;
  font-weight: 400;
  font-size: calc(10px + 0.2vw);
  text-transform: uppercase;
  text-align: center;
  padding: 15px 15px 15px 27px !important;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item a i {
  margin-left: 8px;
  width: 7px;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu {
  margin: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  background: #000;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li a {
  display: block;
  color: white;
  border-bottom: solid 1px white;
  font-size: calc(10px + 0.2vw);
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 15px 15px 15px 27px !important;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li a:hover {
  color: #edea9d;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li a i {
  margin-right: 8px;
  width: 25px;
  margin-left: 8px;
}
#movil .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu.show {
  margin: 0;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes {
  /*  display: none;  */
  display: inline-block;
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  background: transparent;
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  background: #000;
  z-index: 1;
  box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li:last-child a {
  border-bottom: none;
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li a {
  display: block;
  color: white;
  transition: all 0.3s ease;
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li a:hover {
  color: #edea9d;
}
#movil .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li a i {
  margin-right: 0px;
  width: 25px;
  margin-left: 0px;
}
#movil .text-right .top_nav_right ul.top_nav_menu .search {
  display: inline-block;
  /*  display: none; */
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
#movil .text-right .top_nav_right ul.top_nav_menu .search .search-area {
  padding: 10px;
  border-top: 1px solid #dedede;
}
#movil .text-right .top_nav_right ul.top_nav_menu .search .search-area form {
  position: relative;
  z-index: 1;
  height: 30px;
  border-left: 0px solid #dedede;
}
#movil .text-right .top_nav_right ul.top_nav_menu .search .search-area form input {
  border: none;
  background-color: #000;
  width: 200px;
  height: 30px;
  padding: 0 15px 0 60px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition-duration: 500ms !important;
  transition: revert;
}
#movil .text-right .top_nav_right ul.top_nav_menu .search .search-area form input:focus {
  outline: none !important;
  width: 250px;
  transition-duration: 500ms !important;
}
#movil .text-right .top_nav_right ul.top_nav_menu .search .search-area form button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0px;
  background-color: transparent;
  border: none;
  color: black;
  font-size: 14px;
  transform: translateY(-50%);
}
#movil .text-right .top_nav_right ul.top_nav_menu .search .search-area form button i img {
  width: 20px;
  height: 20px;
}
#movil .text-right .top_nav_right ul.top_nav_menu .micarrito {
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
#movil .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area {
  padding: 10px;
  border-top: 1px solid #dedede;
  width: auto;
  display: block;
  height: auto;
}
#movil .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area a {
  position: relative;
  z-index: 1;
  flex: 0 0 90px;
  width: auto;
  display: block;
  text-align: center;
  border-left: 0px solid #dedede;
  height: 100%;
  padding: 3px 0;
}
#movil .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area a span {
  font-size: 14px;
  color: white;
  font-weight: 700;
  position: relative;
  top: -3px;
  background: #edea9d;
  border-radius: 100%;
  padding: 2px 7px;
  right: 2px;
  min-width: 15px;
  min-height: 15px;
}
#movil .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area a img {
  width: 25px;
  height: 25px;
}

#movil2 {
  padding: 0;
  background-color: transparent;
  height: auto;
  display: none;
}
#movil2 .top_nav_left {
  height: 50px;
  line-height: 50px;
  font-size: calc(10px + 0.2vw);
  color: #3b3b3b;
  text-transform: uppercase;
  text-align: center;
}
#movil2 .top_nav_left a {
  color: #3b3b3b;
}
#movil2 .top_nav_left a:hover, #movil2 .top_nav_left a:focus, #movil2 .top_nav_left a:active {
  color: rgba(237, 234, 157, 0.8);
}
#movil2 .top_nav_left img {
  max-width: 15px;
  margin-right: 7px;
}
#movil2 .text-right {
  position: relative;
  width: 100%;
  height: 100%;
}
#movil2 .text-right .top_nav_right {
  position: relative;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu {
  margin-bottom: 0px;
  line-height: 1.5;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item {
  /* display: inline-block; */
  display: none;
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  background: transparent;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-toggle::after {
  display: none;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item a {
  display: block;
  color: #3b3b3b;
  font-weight: 400;
  font-size: calc(10px + 0.2vw);
  text-transform: uppercase;
  text-align: center;
  padding: 15px 15px 15px 27px !important;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item a i {
  margin-left: 8px;
  width: 7px;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu {
  margin: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  background: #000;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li a {
  display: block;
  color: white;
  border-bottom: solid 1px white;
  font-size: calc(10px + 0.2vw);
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 15px 15px 15px 27px !important;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li a:hover {
  color: #edea9d;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu li a i {
  margin-right: 8px;
  width: 25px;
  margin-left: 8px;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .nav-item .dropdown-menu.show {
  margin: 0;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes {
  /*  display: none;  */
  display: inline-block;
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  background: transparent;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  background: #000;
  z-index: 1;
  box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li:last-child a {
  border-bottom: none;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li a {
  display: block;
  color: white;
  transition: all 0.3s ease;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li a:hover {
  color: #edea9d;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .redes .redes_selection li a i {
  margin-right: 0px;
  width: 25px;
  margin-left: 0px;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search {
  display: inline-block;
  /*  display: none; */
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search .search-area {
  padding: 10px;
  border-top: 1px solid #dedede;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search .search-area form {
  position: relative;
  z-index: 1;
  height: 30px;
  border-left: 0px solid #dedede;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search .search-area form input {
  border: none;
  background-color: #000;
  width: 200px;
  height: 30px;
  padding: 0 15px 0 60px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition-duration: 500ms !important;
  transition: revert;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search .search-area form input:focus {
  outline: none !important;
  width: 250px;
  transition-duration: 500ms !important;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search .search-area form button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0px;
  background-color: transparent;
  border: none;
  color: black;
  font-size: 14px;
  transform: translateY(-50%);
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .search .search-area form button i img {
  width: 20px;
  height: 20px;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .micarrito {
  position: relative;
  width: 100%;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area {
  padding: 10px;
  border-top: 1px solid #dedede;
  width: auto;
  display: block;
  height: auto;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area a {
  position: relative;
  z-index: 1;
  flex: 0 0 90px;
  width: auto;
  display: block;
  text-align: center;
  border-left: 0px solid #dedede;
  height: 100%;
  padding: 3px 0;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area a span {
  font-size: 14px;
  color: white;
  font-weight: 700;
  position: relative;
  top: -3px;
  background: #edea9d;
  border-radius: 100%;
  padding: 2px 7px;
  right: 2px;
  min-width: 15px;
  min-height: 15px;
}
#movil2 .text-right .top_nav_right ul.top_nav_menu .micarrito .cart-area a img {
  width: 25px;
  height: 25px;
}

/* ==========================================================================
  Comienza Imagenes
========================================================================== */
.webp .carousel-item#cuno {
  background-image: url(../slideruno/1.webp);
}

.no-webp .carousel-item#cuno {
  background-image: url(../slideruno/1.jpg);
}

.webp .carousel-item#cdos {
  background-image: url(../slideruno/2.webp);
}

.no-webp .carousel-item#cdos {
  background-image: url(../slideruno/2.jpg);
}

.webp .carousel-item#ctres {
  background-image: url(../slideruno/3.webp);
}

.no-webp .carousel-item#ctres {
  background-image: url(../slideruno/3.jpg);
}

.webp .parallax {
  background-image: url(../imagenes/parallax.jpg);
}

.no-webp .parallax {
  background-image: url(../imagenes/parallax.jpg);
}

/* ==========================================================================
  Lista Personalizada
========================================================================== */
.list.personalizada {
  list-style: none;
  padding: 0;
  position: relative;
}
.list.personalizada li {
  font-size: calc(10px + 0.4vw);
  padding-right: 1.3em;
  line-height: 2;
}
.list.personalizada li:before {
  content: "";
  background-image: url(../imagenes/location4.png);
  /* display: inline-block; */
  margin-left: -1.3em;
  width: 1.3em;
  height: 1.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  left: 32px;
  position: relative;
  top: 3px;
  float: right;
}

/**********************
Ofertas Index
***********************/
#ofertas {
  background-color: #f1f1f1;
}
#ofertas .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#ofertas .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#ofertas .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#ofertas .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#ofertas .title p {
  color: white;
  font-weight: 900;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}
#ofertas .shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
#ofertas .shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: rgba(237, 234, 157, 0.8);
  transform: skewX(-45deg);
  z-index: 3;
}
#ofertas .shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: rgba(237, 234, 157, 0.8);
  transform: skewX(-45deg) translateX(-100%);
  z-index: 2;
}
#ofertas .shop .shop-img {
  position: relative;
  background-color: transparent;
  z-index: 1;
}
#ofertas .shop .shop-img img {
  width: 100%;
  transition: 0.2s all;
}
#ofertas .shop:hover .shop-img > img {
  transform: scale(1.1);
}
#ofertas .shop .shop-body {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px;
  z-index: 10;
}
#ofertas .shop .shop-body h3 {
  color: white;
  font-weight: 900;
  font-size: calc(12px + 0.3vw);
  margin: 0;
}
#ofertas .shop .shop-body p {
  color: white;
  font-weight: 400;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}

/**********************
Ofertas Index
***********************/
#oferton {
  background-color: #f1f1f1;
}
#oferton .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#oferton .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#oferton .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#oferton .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#oferton .title p {
  color: white;
  font-weight: 900;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}
#oferton .shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
#oferton .shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: rgba(237, 234, 157, 0.8);
  transform: skewX(-45deg);
  z-index: 3;
}
#oferton .shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: rgba(237, 234, 157, 0.8);
  transform: skewX(-45deg) translateX(-100%);
  z-index: 2;
}
#oferton .shop .shop-img {
  position: relative;
  background-color: transparent;
  z-index: 1;
}
#oferton .shop .shop-img img {
  width: 100%;
  transition: 0.2s all;
}
#oferton .shop:hover .shop-img > img {
  transform: scale(1.1);
}
#oferton .shop .shop-body {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px;
  z-index: 10;
  height: 100%;
}
#oferton .shop .shop-body h3 {
  color: white;
  font-weight: 600;
  font-size: calc(24px + 0.3vw);
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
#oferton .shop .shop-body p {
  color: white;
  font-weight: 400;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}
#oferton .shop .shop-body .cta-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

/**********************
Categorias Index
***********************/
#categorias {
  background-color: white;
}
#categorias .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#categorias .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#categorias .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#categorias .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#categorias .title p {
  color: white;
  font-weight: 900;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}
#categorias .shop-title h2 {
  font-size: calc(24px + 0.4vw);
  text-align: center;
}
#categorias .shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
#categorias .shop .shop-img {
  position: relative;
  background-color: transparent;
  z-index: 1;
}
#categorias .shop .shop-img img {
  width: 100%;
  transition: 0.2s all;
}
#categorias .shop:hover .shop-img > img {
  transform: scale(1.1);
}
#categorias .shop .shop-body {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px;
  z-index: 10;
  height: 100%;
}
#categorias .shop .shop-body h3 {
  color: white;
  font-weight: 900;
  font-size: calc(12px + 0.3vw);
  margin: 0;
}
#categorias .shop .shop-body p {
  color: white;
  font-weight: 400;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}

/**********************
Iconos Index
***********************/
#iconos {
  background-color: #edea9d;
}
#iconos .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#iconos .title h1 {
  color: white;
  position: relative;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#iconos .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: white;
  height: 4px;
}
#iconos .title h3 {
  color: white;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#iconos .grid {
  width: 100%;
  margin: 40px auto;
}
#iconos .grid .media-container-row {
  width: 100%;
  margin: 0 -5px;
}
#iconos .grid .media-container-row .column {
  float: left;
  width: 25%;
  padding: 0px;
}
#iconos .grid .media-container-row .column .card {
  border: solid 1px transparent;
  border-radius: 0;
  text-align: center;
  background-color: transparent;
  padding: 20px 5px;
}
#iconos .grid .media-container-row .column .card:hover, #iconos .grid .media-container-row .column .card:focus {
  border: solid 1px white;
}
#iconos .grid .media-container-row .column .card picture img {
  width: 100%;
  max-width: 100px;
}
#iconos .grid .media-container-row .column .card h3 {
  color: white;
  margin: 15px 0;
  position: relative;
  text-align: center;
}
#iconos .grid .media-container-row .column .card p {
  color: white;
}
#iconos .grid .media-container-row:after {
  content: "";
  display: table;
  clear: both;
}

/**********************
Novedades Index
***********************/
#novedades {
  background-color: #f1f1f1;
}
#novedades .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#novedades .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#novedades .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#novedades .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#novedades .card-deck {
  margin: 40px auto;
}
#novedades .card-deck .card {
  background: transparent;
  border-radius: 0;
  border: none;
  color: white;
  padding: 0;
  margin: 0;
}
#novedades .card-deck .card:hover .card-body .card-img-overlay, #novedades .card-deck .card:focus .card-body .card-img-overlay {
  opacity: 1;
  top: 0vh;
  transition: all 0.2s ease-in-out;
}
#novedades .card-deck .card .card-body {
  padding: 0;
  margin: 0.5rem;
}
#novedades .card-deck .card .card-body:hover .card-visible, #novedades .card-deck .card .card-body:active .card-visible, #novedades .card-deck .card .card-body:focus .card-visible {
  transition: all 0.2s ease-in-out;
  top: -10vh;
  opacity: 0;
}
#novedades .card-deck .card .card-body .card-visible {
  position: absolute;
  margin: 0;
  font-size: calc(12px + 1vw);
  color: #fff;
  width: 100%;
  top: 10vh;
  padding: 3rem;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
#novedades .card-deck .card .card-body .card-img-top {
  border-radius: 0;
}
#novedades .card-deck .card .card-body .card-img-overlay {
  opacity: 0;
  top: 10vh;
  background-color: rgba(237, 234, 157, 0.8);
  padding: 3rem;
  margin: 0.5rem;
  transition: all 0.2s ease-in-out;
}
#novedades .card-deck .card .card-body .card-img-overlay h4.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
}
#novedades .card-deck .card .card-body .card-img-overlay h4.card-title .btn {
  padding: 0.5rem 1rem;
}

/**********************
Novedades Index
***********************/
#novedades-uno {
  background-color: #f1f1f1;
}
#novedades-uno .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#novedades-uno .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#novedades-uno .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#novedades-uno .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#novedades-uno .card-deck {
  margin: 40px auto;
}
#novedades-uno .card-deck .card {
  background: transparent;
  border-radius: 0;
  border: none;
  color: white;
  padding: 0;
  margin: 0;
}
#novedades-uno .card-deck .card:hover .card-body .card-img-overlay, #novedades-uno .card-deck .card:focus .card-body .card-img-overlay {
  opacity: 1;
  top: 0vh;
  transition: all 0.2s ease-in-out;
}
#novedades-uno .card-deck .card .card-body {
  padding: 0;
  margin: 0.5rem;
}
#novedades-uno .card-deck .card .card-body:hover .card-visible, #novedades-uno .card-deck .card .card-body:active .card-visible, #novedades-uno .card-deck .card .card-body:focus .card-visible {
  transition: all 0.2s ease-in-out;
  top: -10vh;
  opacity: 0;
}
#novedades-uno .card-deck .card .card-body .card-visible {
  position: absolute;
  font-size: calc(12px + 1vw);
  color: #fff;
  width: 68%;
  top: calc(50% - 50px);
  padding: 1rem;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  /* background: $ColorTextoAlpha; */
  left: calc(27% - 50px);
}
#novedades-uno .card-deck .card .card-body .card-img-top {
  border-radius: 0;
}
#novedades-uno .card-deck .card .card-body .card-img-overlay {
  opacity: 1;
  top: 0vh;
  background-color: white;
  padding: 3rem;
  margin: 0;
  transition: all 0.2s ease-in-out;
  position: relative;
}
#novedades-uno .card-deck .card .card-body .card-img-overlay h4.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
  color: black;
}
#novedades-uno .card-deck .card .card-body .card-img-overlay h4.card-title .btn {
  padding: 0.5rem 1rem;
}
#novedades-uno .card-deck .card .card-body .card-img-overlay p.card-text {
  font-size: calc(10px + 0.4vw);
  letter-spacing: 0;
  color: black;
  line-height: 1.5;
}
#novedades-uno .card-deck .card .card-body .card-img-overlay .card-precio {
  color: black;
  font-size: calc(20px + 0.4vw);
  position: absolute;
  right: 10px;
  bottom: -10px;
  font-weight: 900;
}

/**********************
Clientes Index
***********************/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-y;
}
.slick-slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list .slick-loading .slick-track {
  visibility: hidden;
}
.slick-slider .slick-list .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list .slick-track:before {
  display: table;
  content: "";
}
.slick-slider .slick-list .slick-track:after {
  display: table;
  content: "";
  clear: both;
}
.slick-slider .slick-list .slick-track .slick-slide {
  margin: 0px 20px;
}
.slick-slider .slick-list .slick-track .slick-slide img {
  width: 100%;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-slide.dragging img {
  pointer-events: none;
}
.slick-slider .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slider .slick-slide img {
  display: block;
}
.slick-slider [dir=rtl] .slick-slide {
  float: right;
}
.slick-slider .slick-slide.slick-loading img {
  display: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**********************
Pie
***********************/
footer {
  background-color: #3b3b3b;
  overflow: hidden;
  width: 100%;
}
footer h3 {
  color: white;
  position: relative;
  margin-bottom: 20px;
}
footer h3:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 20px;
  background: #edea9d;
  height: 2px;
}
footer p {
  color: white;
  font-size: calc(10px + 0.4vw);
}
footer p img {
  max-width: 15px;
  margin-right: 7px;
}
footer p i {
  color: #edea9d;
}
footer p a {
  color: white;
}
footer p a:hover, footer p a:active, footer p a:focus {
  color: #3b3b3b;
}
footer p a i {
  margin-right: 10px;
}
footer p a img {
  max-width: 20px;
}
footer .seguinos p a {
  background: #edea9d;
  border-radius: 50px;
  text-align: center;
  padding: 0px 10px;
  font-size: 18px;
  display: inline-block;
  height: 34px;
  width: 35px;
}
footer .seguinos p a i {
  color: #3b3b3b;
}
footer .redes {
  display: inline-block;
  /* display: inline-block; */
  position: relative;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
footer .redes .redes_selection {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 3;
}
footer .redes .redes_selection li {
  padding-left: 0px;
  padding-right: 5px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
}
footer .redes .redes_selection li:last-child a {
  border-bottom: none;
}
footer .redes .redes_selection li a {
  display: block;
  color: #000;
  transition: all 0.3s ease;
}
footer .redes .redes_selection li a:hover {
  color: #edea9d;
}
footer .redes .redes_selection li a i {
  margin-right: 0;
  width: 32px;
  font-size: 20px;
  margin-left: 0;
  background: #edea9d;
  border-radius: 50px;
  height: 33px;
  padding: 7px 0px;
}
footer .redes .redes_selection li a i:hover, footer .redes .redes_selection li a i:active footer .redes .redes_selection li a i:focus {
  background: white;
  color: #edea9d;
}
footer .copyright {
  background: #5b4931;
  font-size: calc(10px + 0.3vw);
  text-align: center;
  padding-top: 20px;
}
footer .copyright a {
  color: white;
}
footer .copyright .redes-copyright {
  position: relative;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
footer .copyright .redes-copyright .redes_selection {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 1;
}
footer .copyright .redes-copyright .redes_selection li {
  padding-left: 0px;
  padding-right: 10px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
}
footer .copyright .redes-copyright .redes_selection li:last-child a {
  border-bottom: none;
}
footer .copyright .redes-copyright .redes_selection li a {
  display: block;
  color: white;
  transition: all 0.3s ease;
}
footer .copyright .redes-copyright .redes_selection li a:hover {
  color: #edea9d;
}
footer .copyright .redes-copyright .redes_selection li a i {
  margin-right: 0;
  width: auto;
  margin-left: 0;
  font-size: 20px;
  color: black;
  background: white;
  border-radius: 50px;
  padding: 4px 5px;
  min-width: 30px;
}
footer .copyright .redes-copyright .redes_selection li a i:hover, footer .copyright .redes-copyright .redes_selection li a i:active, footer .copyright .redes-copyright .redes_selection li a i:focus {
  background: #3b3b3b;
  color: white;
}
footer #news-pie .input-group-lg > .custom-select,
footer #news-pie .input-group-lg > .form-control,
footer #news-pie .input-group-lg > .input-group-append > .btn,
footer #news-pie .input-group-lg > .input-group-append > .input-group-text,
footer #news-pie .input-group-lg > .input-group-prepend > .btn,
footer #news-pie .input-group-lg > .input-group-prepend > .input-group-text {
  border-radius: 0;
  font-size: calc(10px + 0.3vw);
  border-color: #3b3b3b;
}
footer #news-pie .form-control {
  background: transparent;
}
footer #news-pie button.btn.btn-success {
  background: #3b3b3b;
}
footer .logo img {
  max-width: 100%;
  margin-bottom: 20px;
}

/**********************
Pie
***********************/
footer .dos {
  background-color: #333;
  overflow: hidden;
  width: 100%;
}
footer .dos .logo img {
  width: 100%;
}
footer .dos h3 {
  color: white;
  position: relative;
  margin: 10px 0 40px 0;
}
footer .dos h3:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 30px;
  background: #3b3b3b;
  height: 2px;
}
footer .dos p {
  color: white;
  font-size: calc(9px + 0.4vw);
  letter-spacing: 0;
}
footer .dos p img {
  max-width: 15px;
  margin-right: 7px;
}
footer .dos p a {
  color: white;
}
footer .dos p a img {
  max-width: 28px;
}
footer .dos p a:active, footer .dos p a:hover, footer .dos p a:focus {
  color: #3b3b3b;
}
footer .dos .copyright {
  background: #222224;
  font-size: calc(10px + 0.3vw);
  margin-top: 20px;
  border-top: 1px solid green;
  padding: 20px;
}
footer .dos .copyright a {
  color: white;
}
footer .dos .copyright .align-left {
  text-align: left;
}
footer .dos .copyright .align-right {
  text-align: right;
}
footer .dos form .input-group > .custom-select:not(:last-child),
footer .dos form .input-group > .form-control:not(:last-child) {
  background: transparent !important;
  border-radius: 50px;
  border: 2px solid #3b3b3b;
  color: white;
  font-size: calc(10px + 0.4vw);
}
footer .dos form .input-group > .custom-select:not(:last-child):focus, footer .dos form .input-group > .custom-select:not(:last-child):active, footer .dos form .input-group > .custom-select:not(:last-child):hover,
footer .dos form .input-group > .form-control:not(:last-child):focus,
footer .dos form .input-group > .form-control:not(:last-child):active,
footer .dos form .input-group > .form-control:not(:last-child):hover {
  outline: 0 !important;
  outline-width: 0 !important;
  outline: none !important;
}
footer .dos form .btn {
  background: transparent !important;
  border: 0 !important;
  color: white;
  font-size: calc(10px + 0.4vw) !important;
}
footer .dos form .btn:focus, footer .dos form .btn:active, footer .dos form .btn:hover {
  outline: 0 !important;
  outline-width: 0 !important;
  outline: none !important;
}

/**********************
Internas
***********************/
.banner-interna img {
  width: 100%;
}

/**********************
Ubicacion
***********************/
#ubicacion {
  background-color: white;
}
#ubicacion .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#ubicacion .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#ubicacion .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#ubicacion .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#ubicacion .ubicacion {
  width: 100%;
  margin-top: 30px;
}
#ubicacion .ubicacion iframe {
  height: 407px;
  max-height: 407px;
}

/**********************
Contacto
***********************/
#contacto {
  background-color: white;
}
#contacto .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#contacto .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#contacto .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#contacto .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#contacto .contact_contents {
  padding-right: 20px;
  margin-bottom: 40px;
}
#contacto .contact_contents .title {
  background: transparent;
  margin: 0;
  padding: 0;
  text-align: left;
}
#contacto .contact_contents .title h1 {
  color: #edea9d;
  font-weight: 600;
  padding: 0;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 20px;
  position: relative;
  font-family: "Open Sans", sans-serif;
}
#contacto .contact_contents .title h1:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0px;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#contacto .contact_contents .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
  position: relative;
  margin-bottom: 20px;
}
#contacto .contact_contents .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#contacto .contact_contents .redes {
  font-size: calc(12px + 0.3vw);
  color: white;
  text-transform: uppercase;
  display: inline-block;
  /* display: inline-block; */
  position: relative;
  min-width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
#contacto .contact_contents .redes .redes_selection {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 1;
}
#contacto .contact_contents .redes .redes_selection > div {
  display: inline-block;
  margin-right: 7px;
}
#contacto .contact_contents .redes .redes_selection li {
  padding-left: 10px;
  padding-right: 0px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background: transparent;
}
#contacto .contact_contents .redes .redes_selection li:last-child a {
  border-bottom: none;
}
#contacto .contact_contents .redes .redes_selection li a {
  display: block;
  color: #edea9d;
  transition: all 0.3s ease;
  font-size: 32px;
}
#contacto .contact_contents .redes .redes_selection li a:hover {
  color: #3b3b3b;
}
#contacto .contact_contents .redes .redes_selection li a i {
  margin-right: 0px;
  width: 28px;
  margin-left: 0px;
}
#contacto .get_in_touch_contents form .controls .form-group .form-control {
  margin-bottom: 15px;
  margin-top: 0px;
  display: block;
  width: 100%;
  height: 50px;
  border: solid 1px #eaebed;
  padding-left: 20px;
  border-radius: 0;
}
#contacto .get_in_touch_contents form .controls .form-group .form-control:focus {
  border: solid 1px #000 !important;
  box-shadow: none !important;
}
#contacto .form-group .input-group-addon:first-child {
  border-right: 0;
}
#contacto .form-group .input-group .form-control {
  margin-bottom: 0 !important;
}
#contacto .form-group .input-group .form-control:first-child, #contacto .form-group .input-group-addon:first-child, #contacto .form-group .input-group-btn:first-child > .btn, #contacto .form-group .input-group-btn:first-child > .btn-group > .btn, #contacto .form-group .input-group-btn:first-child > .dropdown-toggle, #contacto .form-group .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), #contacto .form-group .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  width: 40px;
}
#contacto .form-group .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
#contacto .form-group .input-group-addon, #contacto .form-group .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
#contacto .form-group .input-group-addon, #contacto .form-group .input-group-btn, #contacto .form-group .input-group .form-control {
  display: table-cell;
  width: 100%;
}
#contacto .form-group .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.nice-select.wide {
  width: 100%;
  margin-bottom: 1rem;
}
.nice-select.wide span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

/**********************
Listado de Productos
***********************/
#listado picture img {
  width: 100%;
}
#listado .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#listado .title h1 {
  color: #edea9d;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#listado .title p {
  color: #9e9e9e;
  border-left: solid 4px #9e9e9e;
  padding-left: 10px;
}
#listado .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#listado .product_sorting {
  width: 100%;
  padding: 0 15px;
}
#listado .product_sorting .current_page {
  /* Productos */
  color: #3b3b3b;
  font-size: calc(12px + 0.3vw);
  float: left;
}
#listado .product_sorting .sorting {
  float: right;
}
#listado .product_sorting .sorting .item_sorting {
  display: inline-block;
}
#listado .product_sorting .sorting .item_sorting .icon-expand_more2::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-top: 17px;
  float: right;
}
#listado .product_sorting .sorting .item_sorting > li {
  display: inline-block;
  position: relative;
  width: 130px;
  height: 41px;
  line-height: 39px;
  cursor: pointer;
  border: solid 1px #b5b5b5;
  padding-left: 15px;
  padding-right: 17px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #232323;
  margin-bottom: 10px;
}
#listado .product_sorting .sorting .item_sorting > li:last-child {
  margin-right: 0;
}
#listado .product_sorting .sorting .item_sorting > li span:nth-child(2) {
  margin-left: 0px;
}
#listado .product_sorting .sorting .item_sorting > li ul {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: white;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
  transition: all 0.3s ease;
}
#listado .product_sorting .sorting .item_sorting > li ul li {
  display: block;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
#listado .product_sorting .sorting .item_sorting > li ul li span {
  display: block;
  height: 36px;
  line-height: 36px;
  border-bottom: solid 1px #eaebed;
  color: #131a2f;
  text-align: right;
  padding-right: 22px;
  transition: all 0.3s ease;
}
#listado .product_sorting .sorting .item_sorting > li ul li span:hover {
  color: #9e9e9e;
}
#listado .product_sorting .sorting .item_sorting > li ul li span:last-child span {
  border-bottom: none;
}
#listado .product_sorting .sorting .item_sorting > li:hover ul {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 1px);
}
#listado .product_sorting .sorting .item_sorting .num_sorting_text {
  padding-right: 11px;
}
#listado .product_sorting .sorting .item_sorting i {
  float: right;
  line-height: 39px;
  font-size: 16px;
  color: #3b3b3b;
}
#listado .sidebar_left {
  /* Sidebar Left */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 98px;
}
#listado .sidebar_left .sidebar_section {
  width: 100%;
  border: solid 1px #eaebed;
  margin-bottom: 44px;
  transition: all 200ms ease;
}
#listado .sidebar_left .sidebar_section:last-child {
  margin-bottom: 0;
}
#listado .sidebar_left .sidebar_section .sidebar_title {
  height: 52px;
  background: #eaebed;
  line-height: 52px;
  font-size: calc(12px + 0.3vw);
  color: #3b3b3b;
  padding-left: 22px;
  transition: all 200ms ease;
}
#listado .sidebar_left .sidebar_section:hover {
  border: solid 1px #3b3b3b;
}
#listado .sidebar_left .sidebar_section:hover .sidebar_title {
  background: #3b3b3b;
  color: white;
}
#listado .sidebar_left .sidebar_section:hover .sidebar_section_content ul li {
  border-bottom: solid 1px #3b3b3b;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content {
  width: 100%;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li {
  height: 100%;
  padding: 10px 13px 13px 16px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li:last-child {
  border-bottom: none !important;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li a {
  font-size: calc(10px + 0.3vw);
  color: #3b3b3b;
  line-height: 26px;
  width: 100%;
  display: block;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li a:hover, #listado .sidebar_left .sidebar_section .sidebar_section_content ul li a:focus, #listado .sidebar_left .sidebar_section .sidebar_section_content ul li a:active {
  color: #edea9d;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li a span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 15px;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li a .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content ul li .dropdown-container {
  display: none;
  background-color: #eaebed;
  padding-left: 8px;
  position: relative;
  margin-left: -16px;
  margin-right: -13px;
  margin-top: 5px;
  margin-bottom: -13px;
}
#listado .sidebar_left .sidebar_section .sidebar_section_content .dropdown-btn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
#listado .sidebar_left .sidebar_section .sidebar_color_content {
  width: 100%;
  height: 100%;
}
#listado .sidebar_left .sidebar_section .bestsellers_content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 33px;
}
#listado .sidebar_left .sidebar_section .bestsellers_content ul li {
  position: relative;
  height: 100px !important;
  border-bottom: solid 1px #eaebed !important;
  margin-bottom: 0px;
  padding-left: 0 !important;
  padding-right: 0;
}
#listado .sidebar_left .sidebar_section .bestsellers_content ul li:last-child {
  margin-bottom: 0;
}
#listado .sidebar_left .sidebar_section .best_image {
  width: 74px;
  float: left;
  height: 74px !important;
  position: relative;
  overflow: hidden;
}
#listado .sidebar_left .sidebar_section .best_image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  vertical-align: middle;
}
#listado .sidebar_left .sidebar_section .best_image a {
  height: 74px !important;
  text-align: center;
}
#listado .sidebar_left .sidebar_section .best_content {
  padding-left: 83px;
  padding-top: 0px;
}
#listado .sidebar_left .sidebar_section .best_content .best_title a {
  font-size: calc(10px + 0.3vw);
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.5 !important;
  transition: all 200ms ease;
}
#listado .sidebar_left .sidebar_section .best_content .best_title a:hover {
  color: #edea9d;
}
#listado .sidebar_left .sidebar_section .best_content .best_price {
  font-size: calc(20px + 0.3vw);
  font-weight: 600;
  color: #edea9d;
  margin-top: 0px;
}
#listado .sidebar_left .sidebar_section .best_buy {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 23px;
  height: 23px;
  background: #edea9d;
  border: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 21px;
  cursor: pointer;
}
#listado .sidebar_left .sidebar_options .sidebar_option.tarjetas {
  height: auto;
  width: 100%;
  padding-left: 0px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado .sidebar_left .sidebar_options .sidebar_option.tarjetas:last-child {
  border: none !important;
}
#listado .sidebar_left .sidebar_options .sidebar_option.tarjetas img {
  width: 100%;
}
#listado .sidebar_left .sidebar_options .sidebar_option {
  height: 119px;
  width: 100%;
  padding-left: 15px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado .sidebar_left .sidebar_options .sidebar_option:last-child {
  border: none !important;
}
#listado .sidebar_left .sidebar_options .sidebar_option .option_image {
  width: 40px;
  height: 54px;
}
#listado .sidebar_left .sidebar_options .sidebar_option .option_image img {
  max-width: 100%;
}
#listado .sidebar_left .sidebar_options .sidebar_option .option_content {
  margin-left: 19px;
}
#listado .sidebar_left .sidebar_options .sidebar_option .option_content .option_title {
  font-size: calc(12px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
}
#listado .sidebar_left .sidebar_options .sidebar_option .option_content .option_subtitle {
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
}
#listado .sidebar_left .sidebar_options:hover .sidebar_option {
  border-bottom: solid 1px #3b3b3b;
}
#listado .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
#listado .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0px;
  margin: 0;
  display: none !important;
}
#listado .mCSB_scrollTools {
  width: 4px;
  background: #eaebed;
}
#listado .mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
#listado .mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  background: #edea9d;
}
#listado .mCSB_scrollTools .mCSB_dragger {
  width: 3px;
  right: 0;
}
#listado .products_container {
  /* Empieza productos */
  margin: 0 !important;
}
#listado .products_container .product_grid {
  width: 100%;
  margin-left: 0;
  padding: 0px;
}
#listado .products_container .product_grid .product {
  /* width: calc(100% / 3); */
  margin-bottom: 40px;
  float: left;
  padding: 15px;
  overflow: hidden;
  min-height: 400px;
  /* padding-left: 15px;
  padding-right: 15px; */
  border: 1px solid transparent;
}
#listado .products_container .product_grid .product:focus, #listado .products_container .product_grid .product:hover {
  border: 1px solid #dedede;
}
#listado .products_container .product_grid .product .product_image {
  width: 100%;
}
#listado .products_container .product_grid .product .product_image a {
  overflow: hidden;
  display: block;
}
#listado .products_container .product_grid .product .product_image a img {
  max-width: 100% !important;
  transition: 0.2s all;
}
#listado .products_container .product_grid .product .product_image a:hover img {
  transform: scale(1.1);
}
#listado .products_container .product_grid .product .product_image > span {
  position: relative;
  line-height: 20px;
  display: inline-block;
  padding: 0 10px;
  color: #ffffff;
}
#listado .products_container .product_grid .product .product_image > span.light {
  background: #1dc9d2;
}
#listado .products_container .product_grid .product .product_image > span.taac {
  background: #ff3a2e;
}
#listado .products_container .product_grid .product .product_content {
  margin-top: 7px;
  position: relative;
  height: 90px;
}
#listado .products_container .product_grid .product .product_content .product_info {
  float: left;
  width: 100%;
}
#listado .products_container .product_grid .product .product_content .product_info .product_name {
  overflow: hidden;
}
#listado .products_container .product_grid .product .product_content .product_info .product_name a {
  font-size: calc(10px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
  transition: all 200ms ease;
}
#listado .products_container .product_grid .product .product_content .product_info .product_name a:hover {
  color: #edea9d;
}
#listado .products_container .product_grid .product .product_content .product_info .product_price {
  font-size: 24px;
  font-weight: 600;
  color: #3b3b3b;
  margin-top: 0px;
  float: left;
}
#listado .products_container .product_grid .product .product_content .product_options {
  transform: translateY(11px);
  right: 0;
  top: 40px;
  position: absolute;
  top: auto !important;
}
#listado .products_container .product_grid .product .product_content .product_options .product_option {
  width: 37px;
  height: 37px;
  cursor: pointer;
}
#listado .products_container .product_grid .product .product_content .product_options .product_buy {
  display: inline-block;
  background: #edea9d;
  vertical-align: middle;
  margin-right: 4px;
  transition: all 200ms ease;
}
#listado .products_container .product_grid .product .product_content .product_options .product_buy img {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 23px;
  height: 23px;
}
#listado .products_container .product_grid .product .product_content .product_options .product_buy:hover {
  background: #000;
}
#listado .products_container .product_grid .product .product_content .product_options .product_fav {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
  background: #eaebed;
  line-height: 37px;
  text-align: center;
  transition: all 200ms ease;
}
#listado .products_container .product_grid .product .product_content .product_options .product_fav:hover {
  color: white;
  background: #000;
}
#listado .products_container .product_grid .product:nth-child(3n) {
  margin-right: 0px;
}
#listado .page_num_container .page_nums {
  margin-top: 41px;
}
#listado .page_num_container .page_nums li {
  display: inline-block;
  margin-right: 7px;
}
#listado .page_num_container .page_nums li:last-child {
  margin-right: 0;
}
#listado .page_num_container .page_nums li a {
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
}
#listado .page_num_container .page_nums li:hover a {
  color: #edea9d;
  transition: all 200ms ease;
}
#listado .page_num_container .page_nums li.active {
  border-bottom: solid 3px #edea9d;
}
#listado .page_num_container .page_nums li.active a {
  color: #edea9d;
}

/**********************
Listado de Productos Uno
***********************/
#listado-uno picture img {
  width: 100%;
}
#listado-uno .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#listado-uno .title h1 {
  color: #edea9d;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#listado-uno .title p {
  color: #9e9e9e;
  border-left: solid 4px #9e9e9e;
  padding-left: 10px;
}
#listado-uno .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#listado-uno .product_sorting {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#listado-uno .product_sorting .current_page {
  /* Productos */
  color: #3b3b3b;
  font-size: calc(12px + 0.3vw);
  float: left;
}
#listado-uno .product_sorting .title-single-box {
  flex: 1 1 auto;
}
#listado-uno .product_sorting .title-single-box .title-single {
  font-weight: 700;
  text-transform: uppercase;
}
#listado-uno .product_sorting .title-single-box span {
  margin-bottom: 20px;
  display: block;
}
#listado-uno .product_sorting .sorting {
  flex: 1 1 auto;
}
#listado-uno .product_sorting .sorting .item_sorting {
  float: right;
  width: 100%;
}
#listado-uno .product_sorting .sorting .item_sorting .icon-expand_more2::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-top: 17px;
  float: right;
}
#listado-uno .product_sorting .sorting .item_sorting > li {
  float: right;
  position: relative;
  width: calc(50% - 6px);
  height: 41px;
  line-height: 39px;
  cursor: pointer;
  border: solid 1px #b5b5b5;
  padding-left: 15px;
  padding-right: 17px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #232323;
  margin-bottom: 10px;
}
#listado-uno .product_sorting .sorting .item_sorting > li:last-child {
  margin-right: 0;
}
#listado-uno .product_sorting .sorting .item_sorting > li span:nth-child(2) {
  margin-left: 0px;
}
#listado-uno .product_sorting .sorting .item_sorting > li ul {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: white;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
  transition: all 0.3s ease;
}
#listado-uno .product_sorting .sorting .item_sorting > li ul li {
  display: block;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
#listado-uno .product_sorting .sorting .item_sorting > li ul li span {
  display: block;
  height: 36px;
  line-height: 36px;
  border-bottom: solid 1px #eaebed;
  color: #131a2f;
  text-align: left;
  padding-right: 22px;
  transition: all 0.3s ease;
}
#listado-uno .product_sorting .sorting .item_sorting > li ul li span:hover {
  color: #9e9e9e;
}
#listado-uno .product_sorting .sorting .item_sorting > li ul li span:last-child span {
  border-bottom: none;
}
#listado-uno .product_sorting .sorting .item_sorting > li:hover ul {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 1px);
}
#listado-uno .product_sorting .sorting .item_sorting .num_sorting_text {
  padding-right: 11px;
}
#listado-uno .product_sorting .sorting .item_sorting i {
  float: right;
  line-height: 39px;
  font-size: 16px;
  color: #3b3b3b;
}
#listado-uno .sidebar_left {
  /* Sidebar Left */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 98px;
}
#listado-uno .sidebar_left .sidebar_section {
  width: 100%;
  border: solid 1px #eaebed;
  margin-bottom: 44px;
  transition: all 200ms ease;
}
#listado-uno .sidebar_left .sidebar_section:last-child {
  margin-bottom: 0;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_title {
  height: 52px;
  background: #eaebed;
  line-height: 52px;
  font-size: calc(12px + 0.3vw);
  color: #3b3b3b;
  padding-left: 22px;
  transition: all 200ms ease;
}
#listado-uno .sidebar_left .sidebar_section:hover {
  border: solid 1px #3b3b3b;
}
#listado-uno .sidebar_left .sidebar_section:hover .sidebar_title {
  background: #3b3b3b;
  color: white;
}
#listado-uno .sidebar_left .sidebar_section:hover .sidebar_section_content ul li {
  border-bottom: solid 1px #3b3b3b;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content {
  width: 100%;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li {
  height: 100%;
  padding: 10px 13px 13px 16px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li:last-child {
  border-bottom: none !important;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li a {
  font-size: calc(10px + 0.3vw);
  color: #3b3b3b;
  line-height: 26px;
  width: 100%;
  display: block;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li a:hover, #listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li a:focus, #listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li a:active {
  color: #edea9d;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li a span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 15px;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li a .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content ul li .dropdown-container {
  display: none;
  background-color: #eaebed;
  padding-left: 8px;
  position: relative;
  margin-left: -16px;
  margin-right: -13px;
  margin-top: 5px;
  margin-bottom: -13px;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_section_content .dropdown-btn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
#listado-uno .sidebar_left .sidebar_section .sidebar_color_content {
  width: 100%;
  height: 100%;
}
#listado-uno .sidebar_left .sidebar_section .bestsellers_content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 33px;
}
#listado-uno .sidebar_left .sidebar_section .bestsellers_content ul li {
  position: relative;
  height: 100px !important;
  border-bottom: solid 1px #eaebed !important;
  margin-bottom: 0px;
  padding-left: 0 !important;
  padding-right: 0;
}
#listado-uno .sidebar_left .sidebar_section .bestsellers_content ul li:last-child {
  margin-bottom: 0;
}
#listado-uno .sidebar_left .sidebar_section .best_image {
  width: 74px;
  float: left;
  height: 74px !important;
  position: relative;
  overflow: hidden;
}
#listado-uno .sidebar_left .sidebar_section .best_image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  vertical-align: middle;
}
#listado-uno .sidebar_left .sidebar_section .best_image a {
  height: 74px !important;
  text-align: center;
}
#listado-uno .sidebar_left .sidebar_section .best_content {
  padding-left: 83px;
  padding-top: 0px;
}
#listado-uno .sidebar_left .sidebar_section .best_content .best_title a {
  font-size: calc(10px + 0.3vw);
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.5 !important;
  transition: all 200ms ease;
}
#listado-uno .sidebar_left .sidebar_section .best_content .best_title a:hover {
  color: #edea9d;
}
#listado-uno .sidebar_left .sidebar_section .best_content .best_price {
  font-size: calc(20px + 0.3vw);
  font-weight: 600;
  color: #edea9d;
  margin-top: 0px;
}
#listado-uno .sidebar_left .sidebar_section .best_buy {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 23px;
  height: 23px;
  background: #edea9d;
  border: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 21px;
  cursor: pointer;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option.tarjetas {
  height: auto;
  width: 100%;
  padding-left: 0px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option.tarjetas:last-child {
  border: none !important;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option.tarjetas img {
  width: 100%;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option {
  height: 119px;
  width: 100%;
  padding-left: 15px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option:last-child {
  border: none !important;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option .option_image {
  width: 40px;
  height: 54px;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option .option_image img {
  max-width: 100%;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option .option_content {
  margin-left: 19px;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option .option_content .option_title {
  font-size: calc(12px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
}
#listado-uno .sidebar_left .sidebar_options .sidebar_option .option_content .option_subtitle {
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
}
#listado-uno .sidebar_left .sidebar_options:hover .sidebar_option {
  border-bottom: solid 1px #3b3b3b;
}
#listado-uno .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
#listado-uno .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0px;
  margin: 0;
  display: none !important;
}
#listado-uno .mCSB_scrollTools {
  width: 4px;
  background: #eaebed;
}
#listado-uno .mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
#listado-uno .mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  background: #edea9d;
}
#listado-uno .mCSB_scrollTools .mCSB_dragger {
  width: 3px;
  right: 0;
}
#listado-uno .products_container {
  /* Empieza productos */
  margin: 0 !important;
}
#listado-uno .products_container .product_grid {
  width: 100%;
  margin-left: 0;
  padding: 0px;
}
#listado-uno .products_container .product_grid .product {
  /* width: calc(100% / 3); */
  margin-bottom: 40px;
  float: left;
  padding: 15px;
  overflow: hidden;
  min-height: 400px;
  /* padding-left: 15px;
  padding-right: 15px; */
  border: 1px solid transparent;
}
#listado-uno .products_container .product_grid .product:focus, #listado-uno .products_container .product_grid .product:hover {
  border: 1px solid #dedede;
}
#listado-uno .products_container .product_grid .product .product_image {
  width: 100%;
}
#listado-uno .products_container .product_grid .product .product_image a {
  overflow: hidden;
  display: block;
}
#listado-uno .products_container .product_grid .product .product_image a img {
  max-width: 100% !important;
  transition: 0.2s all;
}
#listado-uno .products_container .product_grid .product .product_image a:hover img {
  transform: scale(1.1);
}
#listado-uno .products_container .product_grid .product .product_image > span {
  position: relative;
  line-height: 20px;
  display: inline-block;
  padding: 0 10px;
  color: #ffffff;
}
#listado-uno .products_container .product_grid .product .product_image > span.light {
  background: #1dc9d2;
}
#listado-uno .products_container .product_grid .product .product_image > span.taac {
  background: #ff3a2e;
}
#listado-uno .products_container .product_grid .product .product_content {
  margin-top: 7px;
  position: relative;
  height: 90px;
}
#listado-uno .products_container .product_grid .product .product_content .product_info {
  float: left;
  width: 100%;
}
#listado-uno .products_container .product_grid .product .product_content .product_info .product_name {
  overflow: hidden;
}
#listado-uno .products_container .product_grid .product .product_content .product_info .product_name a {
  font-size: calc(10px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
  transition: all 200ms ease;
}
#listado-uno .products_container .product_grid .product .product_content .product_info .product_name a:hover {
  color: #edea9d;
}
#listado-uno .products_container .product_grid .product .product_content .product_info .product_price {
  font-size: 24px;
  font-weight: 600;
  color: #3b3b3b;
  margin-top: 0px;
  float: left;
}
#listado-uno .products_container .product_grid .product .product_content .product_options {
  transform: translateY(11px);
  right: 0;
  top: 40px;
  position: absolute;
  top: auto !important;
}
#listado-uno .products_container .product_grid .product .product_content .product_options .product_option {
  width: 37px;
  height: 37px;
  cursor: pointer;
}
#listado-uno .products_container .product_grid .product .product_content .product_options .product_buy {
  display: inline-block;
  background: #edea9d;
  vertical-align: middle;
  margin-right: 4px;
  transition: all 200ms ease;
}
#listado-uno .products_container .product_grid .product .product_content .product_options .product_buy img {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 23px;
  height: 23px;
}
#listado-uno .products_container .product_grid .product .product_content .product_options .product_buy:hover {
  background: #000;
}
#listado-uno .products_container .product_grid .product .product_content .product_options .product_fav {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
  background: #eaebed;
  line-height: 37px;
  text-align: center;
  transition: all 200ms ease;
}
#listado-uno .products_container .product_grid .product .product_content .product_options .product_fav:hover {
  color: white;
  background: #000;
}
#listado-uno .products_container .product_grid .product:nth-child(3n) {
  margin-right: 0px;
}
#listado-uno .page_num_container .page_nums {
  margin-top: 41px;
}
#listado-uno .page_num_container .page_nums li {
  display: inline-block;
  margin-right: 7px;
}
#listado-uno .page_num_container .page_nums li:last-child {
  margin-right: 0;
}
#listado-uno .page_num_container .page_nums li a {
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
}
#listado-uno .page_num_container .page_nums li:hover a {
  color: #edea9d;
  transition: all 200ms ease;
}
#listado-uno .page_num_container .page_nums li.active {
  border-bottom: solid 3px #edea9d;
}
#listado-uno .page_num_container .page_nums li.active a {
  color: #edea9d;
}

/**********************
Listado de Productos Dos
***********************/
#listado-tres picture img {
  width: 100%;
}
#listado-tres .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#listado-tres .title h1 {
  color: #edea9d;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#listado-tres .title p {
  color: #9e9e9e;
  border-left: solid 4px #9e9e9e;
  padding-left: 10px;
}
#listado-tres .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#listado-tres .product_sorting {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#listado-tres .product_sorting .current_page {
  /* Productos */
  color: #3b3b3b;
  font-size: calc(12px + 0.3vw);
  float: left;
}
#listado-tres .product_sorting .title-single-box {
  flex: 1 1 auto;
}
#listado-tres .product_sorting .title-single-box .title-single {
  font-weight: 700;
  text-transform: uppercase;
}
#listado-tres .product_sorting .title-single-box span {
  margin-bottom: 20px;
  display: block;
}
#listado-tres .product_sorting .sorting {
  flex: 1 1 auto;
}
#listado-tres .product_sorting .sorting .item_sorting {
  float: right;
  width: 100%;
}
#listado-tres .product_sorting .sorting .item_sorting .icon-expand_more2::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-top: 17px;
  float: right;
}
#listado-tres .product_sorting .sorting .item_sorting > li {
  float: right;
  position: relative;
  width: calc(50% - 6px);
  height: 41px;
  line-height: 39px;
  cursor: pointer;
  border: solid 1px #b5b5b5;
  padding-left: 15px;
  padding-right: 17px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #232323;
  margin-bottom: 10px;
}
#listado-tres .product_sorting .sorting .item_sorting > li:last-child {
  margin-right: 0;
}
#listado-tres .product_sorting .sorting .item_sorting > li span:nth-child(2) {
  margin-left: 0px;
}
#listado-tres .product_sorting .sorting .item_sorting > li ul {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: white;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
  transition: all 0.3s ease;
}
#listado-tres .product_sorting .sorting .item_sorting > li ul li {
  display: block;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
#listado-tres .product_sorting .sorting .item_sorting > li ul li span {
  display: block;
  height: 36px;
  line-height: 36px;
  border-bottom: solid 1px #eaebed;
  color: #131a2f;
  text-align: left;
  padding-right: 22px;
  transition: all 0.3s ease;
}
#listado-tres .product_sorting .sorting .item_sorting > li ul li span:hover {
  color: #9e9e9e;
}
#listado-tres .product_sorting .sorting .item_sorting > li ul li span:last-child span {
  border-bottom: none;
}
#listado-tres .product_sorting .sorting .item_sorting > li:hover ul {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 1px);
}
#listado-tres .product_sorting .sorting .item_sorting .num_sorting_text {
  padding-right: 11px;
}
#listado-tres .product_sorting .sorting .item_sorting i {
  float: right;
  line-height: 39px;
  font-size: 16px;
  color: #3b3b3b;
}
#listado-tres .sidebar_left {
  /* Sidebar Left */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 98px;
}
#listado-tres .sidebar_left .sidebar_section {
  width: 100%;
  border: solid 1px #eaebed;
  margin-bottom: 44px;
  transition: all 200ms ease;
}
#listado-tres .sidebar_left .sidebar_section:last-child {
  margin-bottom: 0;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_title {
  height: 52px;
  background: #eaebed;
  line-height: 52px;
  font-size: calc(12px + 0.3vw);
  color: #3b3b3b;
  padding-left: 22px;
  transition: all 200ms ease;
}
#listado-tres .sidebar_left .sidebar_section:hover {
  border: solid 1px #3b3b3b;
}
#listado-tres .sidebar_left .sidebar_section:hover .sidebar_title {
  background: #3b3b3b;
  color: white;
}
#listado-tres .sidebar_left .sidebar_section:hover .sidebar_section_content ul li {
  border-bottom: solid 1px #3b3b3b;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content {
  width: 100%;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li {
  height: 100%;
  padding: 10px 13px 13px 16px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li:last-child {
  border-bottom: none !important;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li a {
  font-size: calc(10px + 0.3vw);
  color: #3b3b3b;
  line-height: 26px;
  width: 100%;
  display: block;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li a:hover, #listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li a:focus, #listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li a:active {
  color: #edea9d;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li a span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 15px;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li a .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content ul li .dropdown-container {
  display: none;
  background-color: #eaebed;
  padding-left: 8px;
  position: relative;
  margin-left: -16px;
  margin-right: -13px;
  margin-top: 5px;
  margin-bottom: -13px;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_section_content .dropdown-btn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
#listado-tres .sidebar_left .sidebar_section .sidebar_color_content {
  width: 100%;
  height: 100%;
}
#listado-tres .sidebar_left .sidebar_section .bestsellers_content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 33px;
}
#listado-tres .sidebar_left .sidebar_section .bestsellers_content ul li {
  position: relative;
  height: 100px !important;
  border-bottom: solid 1px #eaebed !important;
  margin-bottom: 0px;
  padding-left: 0 !important;
  padding-right: 0;
}
#listado-tres .sidebar_left .sidebar_section .bestsellers_content ul li:last-child {
  margin-bottom: 0;
}
#listado-tres .sidebar_left .sidebar_section .best_image {
  width: 74px;
  float: left;
  height: 74px !important;
  position: relative;
  overflow: hidden;
}
#listado-tres .sidebar_left .sidebar_section .best_image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  vertical-align: middle;
}
#listado-tres .sidebar_left .sidebar_section .best_image a {
  height: 74px !important;
  text-align: center;
}
#listado-tres .sidebar_left .sidebar_section .best_content {
  padding-left: 83px;
  padding-top: 0px;
}
#listado-tres .sidebar_left .sidebar_section .best_content .best_title a {
  font-size: calc(10px + 0.3vw);
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.5 !important;
  transition: all 200ms ease;
}
#listado-tres .sidebar_left .sidebar_section .best_content .best_title a:hover {
  color: #edea9d;
}
#listado-tres .sidebar_left .sidebar_section .best_content .best_price {
  font-size: calc(20px + 0.3vw);
  font-weight: 600;
  color: #edea9d;
  margin-top: 0px;
}
#listado-tres .sidebar_left .sidebar_section .best_buy {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 23px;
  height: 23px;
  background: #edea9d;
  border: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 21px;
  cursor: pointer;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option.tarjetas {
  height: auto;
  width: 100%;
  padding-left: 0px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option.tarjetas:last-child {
  border: none !important;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option.tarjetas img {
  width: 100%;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option {
  height: 119px;
  width: 100%;
  padding-left: 15px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option:last-child {
  border: none !important;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option .option_image {
  width: 40px;
  height: 54px;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option .option_image img {
  max-width: 100%;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option .option_content {
  margin-left: 19px;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option .option_content .option_title {
  font-size: calc(12px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
}
#listado-tres .sidebar_left .sidebar_options .sidebar_option .option_content .option_subtitle {
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
}
#listado-tres .sidebar_left .sidebar_options:hover .sidebar_option {
  border-bottom: solid 1px #3b3b3b;
}
#listado-tres .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
#listado-tres .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0px;
  margin: 0;
  display: none !important;
}
#listado-tres .mCSB_scrollTools {
  width: 4px;
  background: #eaebed;
}
#listado-tres .mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
#listado-tres .mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  background: #edea9d;
}
#listado-tres .mCSB_scrollTools .mCSB_dragger {
  width: 3px;
  right: 0;
}
#listado-tres .products_container {
  /* Empieza productos */
  margin: 0 !important;
}
#listado-tres .products_container .product_grid {
  width: 100%;
  margin-left: 0;
  padding: 0px;
}
#listado-tres .products_container .product_grid .product {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  padding: 15px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid transparent;
}
#listado-tres .products_container .product_grid .product:focus, #listado-tres .products_container .product_grid .product:hover {
  border: 1px solid #dedede;
}
#listado-tres .products_container .product_grid .product .product_image {
  width: 50%;
  flex: 1 1 auto;
  height: auto !important;
  position: relative;
  overflow: hidden;
  max-height: 288px;
}
#listado-tres .products_container .product_grid .product .product_image a {
  overflow: hidden;
  display: block;
}
#listado-tres .products_container .product_grid .product .product_image a img {
  max-width: 100% !important;
  transition: 0.2s all;
}
#listado-tres .products_container .product_grid .product .product_image a:hover img {
  transform: scale(1.1);
}
#listado-tres .products_container .product_grid .product .product_image > span {
  position: relative;
  line-height: 20px;
  display: inline-block;
  padding: 0 10px;
  color: #ffffff;
}
#listado-tres .products_container .product_grid .product .product_image > span.light {
  background: #1dc9d2;
}
#listado-tres .products_container .product_grid .product .product_image > span.taac {
  background: #ff3a2e;
}
#listado-tres .products_container .product_grid .product .product_content {
  margin-top: 0px;
  position: relative;
  height: auto;
  flex: 1 1 auto;
  width: 50%;
  padding: 0px 15px;
}
#listado-tres .products_container .product_grid .product .product_content .product_info {
  float: left;
  width: 100%;
}
#listado-tres .products_container .product_grid .product .product_content .product_info .product_name {
  overflow: hidden;
}
#listado-tres .products_container .product_grid .product .product_content .product_info .product_name a {
  font-size: calc(14px + 0.4vw);
  font-weight: 600;
  color: #3b3b3b;
  transition: all 200ms ease;
}
#listado-tres .products_container .product_grid .product .product_content .product_info .product_name a:hover {
  color: #edea9d;
}
#listado-tres .products_container .product_grid .product .product_content .product_info .product_text {
  color: #3b3b3b;
  font-size: calc(10px + 0.4vw);
  margin: 10px 0;
}
#listado-tres .products_container .product_grid .product .product_content .product_info .product_price {
  font-size: 24px;
  font-weight: 600;
  color: #3b3b3b;
  margin-top: 0px;
  float: left;
}
#listado-tres .products_container .product_grid .product .product_content .product_options {
  transform: translateY(11px);
  right: 0;
  position: absolute;
  bottom: 10px;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_option {
  width: 37px;
  height: 37px;
  cursor: pointer;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_buy {
  display: inline-block;
  background: #edea9d;
  vertical-align: middle;
  margin-right: 4px;
  transition: all 200ms ease;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_buy img {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 23px;
  height: 23px;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_buy i {
  color: white;
  font-size: calc(10px + 0.4vw);
  padding: 10px 8px;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_buy:hover {
  background: #000;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_fav {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
  background: #eaebed;
  line-height: 37px;
  text-align: center;
  transition: all 200ms ease;
}
#listado-tres .products_container .product_grid .product .product_content .product_options .product_fav:hover {
  color: white;
  background: #000;
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor {
  width: 150px;
  position: absolute;
  left: 15px;
  bottom: 10px;
  transform: translateY(11px);
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor {
  width: auto;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product {
  width: auto;
  height: 37px;
  border: 1px solid #e6e6e6;
  border-radius: 0px;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  margin: 0px;
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product .btn-num-product-up,
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product .btn-num-product-down {
  width: 30px;
  height: 100%;
  cursor: pointer;
  color: #555;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: all 0.4s;
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product .btn-num-product-up .zmdi,
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product .btn-num-product-down .zmdi {
  font-size: 18px;
  display: inline-block;
  text-rendering: auto;
  font-weight: 600;
  font-style: normal;
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product input.num-product {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #666;
  width: 30px;
  height: 100%;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  background-color: #f7f7f7;
  text-align: center;
  display: block;
  outline: none;
  border: none;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  margin: 0 !important;
}
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product input::-webkit-outer-spin-button,
#listado-tres .products_container .product_grid .product .product_content .mayormenor .contenedor .wrap-num-product input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#listado-tres .products_container .product_grid .product:nth-child(3n) {
  margin-right: 0px;
}
#listado-tres .page_num_container .page_nums {
  margin-top: 41px;
}
#listado-tres .page_num_container .page_nums li {
  display: inline-block;
  margin-right: 7px;
}
#listado-tres .page_num_container .page_nums li:last-child {
  margin-right: 0;
}
#listado-tres .page_num_container .page_nums li a {
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
}
#listado-tres .page_num_container .page_nums li:hover a {
  color: #edea9d;
  transition: all 200ms ease;
}
#listado-tres .page_num_container .page_nums li.active {
  border-bottom: solid 3px #edea9d;
}
#listado-tres .page_num_container .page_nums li.active a {
  color: #edea9d;
}

/**********************
Ocultando bloques de listado
***********************/
.sidebar_section#categorias {
  display: block;
}

.sidebar_section#color {
  display: block;
}

.sidebar_section#size {
  display: block;
}

.sidebar_section#bestsellers {
  display: block;
}

.sidebar_section#details {
  display: block;
}

/**********************
Ficha de Productos
***********************/
#ficha .single-product-area {
  position: relative;
  z-index: 1;
  width: 100%;
}
#ficha .single-product-area .breadcrumb {
  background-color: transparent;
}
#ficha .single-product-area .breadcrumb .breadcrumb-item {
  font-size: calc(10px + 0.3vw);
  text-transform: uppercase;
}
#ficha .single-product-area .breadcrumb .breadcrumb-item a {
  color: #3b3b3b;
  font-size: calc(10px + 0.3vw);
  text-transform: uppercase;
}
#ficha .single-product-area .breadcrumb .breadcrumb-item a:hover {
  color: #edea9d;
}
#ficha .single-product-area .breadcrumb .breadcrumb-item.active {
  color: #b6b7b9;
}
#ficha .single-product-area .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}
#ficha .single-product-area .single_product_thumb {
  position: relative;
  z-index: 1;
  margin-bottom: 220px;
}
#ficha .single-product-area .single_product_thumb .carousel-control-next,
#ficha .single-product-area .single_product_thumb .carousel-control-prev {
  transition: none;
  background: rgba(0, 0, 0, 0.1);
}
#ficha .single-product-area .single_product_thumb .carousel-indicators {
  margin: 0 7.5px;
  bottom: -165px;
}
#ficha .single-product-area .single_product_thumb .carousel-indicators li {
  width: 25%;
  min-width: 25%;
  height: 140px;
  background-position: center center;
  background-size: cover;
  border: 0px solid transparent;
  cursor: pointer;
  background-repeat: no-repeat;
}
#ficha .single-product-area .single_product_thumb .carousel-indicators li.active {
  border: 2px solid #000;
}
#ficha .single-product-area .single_product_thumb .carousel-item a {
  cursor: zoom-in;
}
#ficha .single-product-area .single_product_desc {
  position: relative;
  z-index: 1;
}
#ficha .single-product-area .single_product_desc .product-meta-data .line {
  width: 80px;
  height: 3px;
  background-color: #edea9d;
  margin-bottom: 15px;
  display: block;
}
#ficha .single-product-area .single_product_desc .product-meta-data .product-price {
  font-size: calc(24px + 0.3vw);
  font-weight: 400;
  color: #edea9d;
  line-height: 1;
  margin-bottom: 10px;
}
#ficha .single-product-area .single_product_desc .product-meta-data .product-price span {
  text-decoration: line-through;
  color: #b6b7b9;
  text-decoration: line-through;
  font-size: calc(16px + 0.3vw);
  position: absolute;
  right: 0;
}
#ficha .single-product-area .single_product_desc .product-meta-data a {
  display: block;
  color: #3b3b3b;
}
#ficha .single-product-area .single_product_desc .product-meta-data a h6 {
  font-size: 30px;
  margin-bottom: 5px;
}
#ficha .single-product-area .single_product_desc .product-meta-data .avaibility {
  margin-bottom: 0;
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
  line-height: 1;
}
#ficha .single-product-area .single_product_desc .product-meta-data .avaibility i {
  background: #3b3b3b;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
}
#ficha .single-product-area .single_product_desc .product-meta-data h5 {
  font-size: calc(18px + 0.3vw);
  margin: 20px 0px 10px;
  color: #3b3b3b;
  border-bottom: solid 1px #eaebed;
  padding-bottom: 10px;
}
#ficha .single-product-area .single_product_desc .product-meta-data p.descargar {
  margin-bottom: 0rem;
}
#ficha .single-product-area .single_product_desc .product-meta-data p.descargar a i {
  background: #3b3b3b;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 10px;
}
#ficha .single-product-area .single_product_desc form.cart p {
  margin-bottom: 0;
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  background-color: #eaebed;
  display: inline-block;
  width: 45%;
  font-size: calc(8px + 0.4vw);
}
#ficha .single-product-area .single_product_desc form.cart input::-webkit-outer-spin-button,
#ficha .single-product-area .single_product_desc form.cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#ficha .single-product-area .single_product_desc form.cart .quantity {
  position: relative;
  z-index: 1;
  float: right;
}
#ficha .single-product-area .single_product_desc form.cart .quantity input {
  text-align: center;
  background-color: #eaebed;
  height: 40px;
  width: 100px;
  border: none;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  color: #9e9e9e;
}
#ficha .single-product-area .single_product_desc form.cart .quantity .qty-plus {
  position: absolute;
  right: 0;
  top: -2px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  height: 20px;
  cursor: pointer;
  color: #9e9e9e;
}
#ficha .single-product-area .single_product_desc form.cart .quantity .qty-plus i {
  height: 10px;
  width: 10px;
  display: inline-block;
}
#ficha .single-product-area .single_product_desc form.cart .quantity .qty-plus i img {
  width: 100%;
  opacity: 0.4;
}
#ficha .single-product-area .single_product_desc form.cart .quantity .qty-minus {
  position: absolute;
  top: 16px;
  right: 0;
  line-height: 1;
  width: 30px;
  height: 25px;
  text-align: center;
  cursor: pointer;
  color: #9e9e9e;
}
#ficha .single-product-area .single_product_desc form.cart .quantity .qty-minus i {
  height: 10px;
  width: 10px;
  display: inline-block;
}
#ficha .single-product-area .single_product_desc form.cart .quantity .qty-minus i img {
  width: 100%;
  opacity: 0.4;
}
#ficha .single-product-area .single_product_desc form.cart .amado-btn {
  display: inline-block;
  height: 50px;
  color: white;
  border: none;
  border-radius: 0;
  padding: 0 7px;
  background-color: #edea9d;
  font-weight: 400;
  margin-top: 10px;
  display: inline-block;
  width: 47%;
  margin-right: 10px;
}
#ficha .single-product-area .single_product_desc form.cart .amado-btn:hover, #ficha .single-product-area .single_product_desc form.cart .amado-btn:focus, #ficha .single-product-area .single_product_desc form.cart .amado-btn:active {
  background-color: #000;
}
#ficha .single-product-area .single_product_desc form.cart .amado-btn span {
  display: inline-block;
  margin-right: 10px;
}
#ficha .single-product-area .single_product_desc form.cart .amado-btn span img {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select {
  margin: 20px 0 0;
  background-color: #eaebed;
  border-radius: 0px;
  border: solid 1px #e0e7ee;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select:hover {
  border-color: #d0dae5;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select:active, #ficha .single-product-area .single_product_desc form.cart .nice-select:focus {
  border-color: #d0dae5;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select:after {
  border-bottom: 2px solid #90a1b5;
  border-right: 2px solid #90a1b5;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .open {
  border-color: #d0dae5;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .open:after {
  transform: rotate(-135deg);
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.disabled {
  border-color: #e7ecf2;
  color: #90a1b5;
  pointer-events: none;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.disabled:after {
  border-color: #cdd5de;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.wide {
  width: 46%;
  float: left;
  margin: 0px 20px 20px 0px;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.right {
  float: right;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.right .list {
  left: auto;
  right: 0;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.small:after {
  height: 4px;
  width: 4px;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .option:hover,
#ficha .single-product-area .single_product_desc form.cart .nice-select .option.focus,
#ficha .single-product-area .single_product_desc form.cart .nice-select .option.selected.focus {
  background-color: #f6f7f9;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .option.selected {
  font-weight: bold;
}
#ficha .single-product-area .single_product_desc form.cart .nice-select .option.disabled {
  background-color: transparent;
  color: #90a1b5;
  cursor: default;
}
#ficha .single-product-area .single_product_desc form.cart .no-csspointerevents .nice-select .list {
  display: none;
}
#ficha .single-product-area .single_product_desc form.cart .no-csspointerevents .nice-select.open .list {
  display: block;
}
#ficha .single-product-area .single_product_desc form.cart code[class*=language-],
#ficha .single-product-area .single_product_desc form.cart pre[class*=language-] {
  border-radius: 2px;
  color: #445870;
  -webkit-hyphens: none;
          hyphens: none;
  line-height: 1.5;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  text-align: left;
  white-space: pre;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  direction: ltr;
  font-family: Inconsolata, monospace;
  font-size: 13px;
  letter-spacing: 0;
}
#ficha .single-product-area .single_product_desc form.cart pre[class*=language-] {
  padding: 18px 24px;
  margin: 0 0 24px;
  overflow: auto;
}
#ficha .single-product-area .single_product_desc form.cart :not(pre) > code[class*=language-],
#ficha .single-product-area .single_product_desc form.cart pre[class*=language-] {
  background: #f6f7f9;
}
#ficha .single-product-area .single_product_desc form.cart :not(pre) > code[class*=language-] {
  padding: 0 2px 1px;
}
#ficha .single-product-area .single_product_desc form.cart .token.comment,
#ficha .single-product-area .single_product_desc form.cart .token.prolog,
#ficha .single-product-area .single_product_desc form.cart .token.doctype,
#ficha .single-product-area .single_product_desc form.cart .token.cdata {
  color: #90a1b5;
}
#ficha .single-product-area .single_product_desc form.cart .token.punctuation {
  color: #999;
}
#ficha .single-product-area .single_product_desc form.cart .namespace {
  opacity: 0.7;
}
#ficha .single-product-area .single_product_desc form.cart .token.property,
#ficha .single-product-area .single_product_desc form.cart .token.tag,
#ficha .single-product-area .single_product_desc form.cart .token.boolean,
#ficha .single-product-area .single_product_desc form.cart .token.number,
#ficha .single-product-area .single_product_desc form.cart .token.constant,
#ficha .single-product-area .single_product_desc form.cart .token.symbol,
#ficha .single-product-area .single_product_desc form.cart .token.deleted {
  color: #ec4444;
}
#ficha .single-product-area .single_product_desc form.cart .token.selector,
#ficha .single-product-area .single_product_desc form.cart .token.attr-name,
#ficha .single-product-area .single_product_desc form.cart .token.string,
#ficha .single-product-area .single_product_desc form.cart .token.char,
#ficha .single-product-area .single_product_desc form.cart .token.builtin,
#ficha .single-product-area .single_product_desc form.cart .token.inserted {
  color: #4abf60;
}
#ficha .single-product-area .single_product_desc form.cart .token.operator,
#ficha .single-product-area .single_product_desc form.cart .token.entity,
#ficha .single-product-area .single_product_desc form.cart .token.url,
#ficha .single-product-area .single_product_desc form.cart .language-css .token.string,
#ficha .single-product-area .single_product_desc form.cart .style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
#ficha .single-product-area .single_product_desc form.cart .token.atrule,
#ficha .single-product-area .single_product_desc form.cart .token.attr-value,
#ficha .single-product-area .single_product_desc form.cart .token.keyword {
  color: #55a1fb;
}
#ficha .single-product-area .single_product_desc form.cart .token.function {
  color: #dd4a68;
}
#ficha .single-product-area .single_product_desc form.cart .token.regex,
#ficha .single-product-area .single_product_desc form.cart .token.important,
#ficha .single-product-area .single_product_desc form.cart .token.variable {
  color: #e90;
}
#ficha .single-product-area .single_product_desc form.cart .token.important,
#ficha .single-product-area .single_product_desc form.cart .token.bold {
  font-weight: bold;
}
#ficha .single-product-area .single_product_desc form.cart .token.italic {
  font-style: italic;
}
#ficha .single-product-area .single_product_desc form.cart .token.entity {
  cursor: help;
}
#ficha .single-product-area .single_product_desc form.cart a:not(.button) {
  color: #55a1fb;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid transparent;
}
#ficha .single-product-area .single_product_desc form.cart a:not(.button):hover,
#ficha .single-product-area .single_product_desc form.cart a:not(.button):focus {
  border-bottom: 1px solid #88bfff;
}
#ficha .single-product-area .single_product_desc form.cart .box {
  background-color: white;
  border-radius: 2px;
  margin-bottom: 30px;
  padding: 0;
  margin-top: 20px;
}
#ficha .single-product-area .single_product_desc form.cart .box .cart-btn {
  background-color: #eaebed;
  width: 46%;
  display: inline-block;
  min-height: 43px;
  margin: 0px 20px 20px 0px;
}
#ficha .single-product-area .single_product_desc form.cart .box:before,
#ficha .single-product-area .single_product_desc form.cart .box:after {
  content: "";
  display: table;
}
#ficha .single-product-area .single_product_desc form.cart .box:after {
  clear: both;
}
#ficha .single-product-area .single_product_desc form.cart label {
  color: #90a1b5;
  font-size: 11px;
  margin: 0 2px 4px;
  text-transform: uppercase;
  float: left;
}
#ficha .single-product-area .single_product_desc form.cart label.right {
  float: right;
}
#ficha .single-product-area .single_product_desc form.cart .button {
  background-color: #55a1fb;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  height: 42px;
  line-height: 42px;
  outline: none;
  padding: 0 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
}
#ficha .single-product-area .single_product_desc form.cart .button:hover,
#ficha .single-product-area .single_product_desc form.cart .button:focus {
  background-color: #4196fb;
}
#ficha .single-product-area .single_product_desc form.cart .button:active,
#ficha .single-product-area .single_product_desc form.cart .button.nice-select.open {
  background-color: #2d8bfa;
}
#ficha .single-product-area .single_product_desc form.cart .button.light {
  background-color: #fff;
  border: 1px solid #e0e7ee;
  color: #55a1fb;
  line-height: 40px;
  margin-left: 24px;
}
#ficha .single-product-area .single_product_desc form.cart .button.light:hover {
  border-color: #d0dae5;
}
#ficha .single-product-area .single_product_desc form.cart .button.light:active,
#ficha .single-product-area .single_product_desc form.cart .button.light.nice-select.open,
#ficha .single-product-area .single_product_desc form.cart .button.light:focus {
  border-color: #88bfff;
}
#ficha .tecnica {
  width: 100%;
}
#ficha .tecnica .tab {
  float: left;
  border: none;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}
#ficha .tecnica .tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}
#ficha .tecnica .tab button:hover, #ficha .tecnica .tab button:active {
  background-color: #edea9d;
  color: white;
}
#ficha .tecnica .tab button.active {
  background-color: #edea9d;
  color: white;
}
#ficha .tecnica .tabcontent {
  float: left;
  padding: 40px;
  border: 1px solid #eaebed;
  width: 70%;
  border-left: none;
  height: 300px;
}

/**********************
Ficha de Productos
***********************/
#ficha-inmobiliaria .single-product-area {
  position: relative;
  z-index: 1;
  width: 100%;
}
#ficha-inmobiliaria .single-product-area .breadcrumb {
  background-color: transparent;
}
#ficha-inmobiliaria .single-product-area .breadcrumb .breadcrumb-item {
  font-size: calc(10px + 0.3vw);
  text-transform: uppercase;
}
#ficha-inmobiliaria .single-product-area .breadcrumb .breadcrumb-item a {
  color: #3b3b3b;
  font-size: calc(10px + 0.3vw);
  text-transform: uppercase;
}
#ficha-inmobiliaria .single-product-area .breadcrumb .breadcrumb-item a:hover {
  color: #edea9d;
}
#ficha-inmobiliaria .single-product-area .breadcrumb .breadcrumb-item.active {
  color: #b6b7b9;
}
#ficha-inmobiliaria .single-product-area .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}
#ficha-inmobiliaria .single-product-area .single_product_thumb {
  position: relative;
  z-index: 1;
  margin-bottom: 220px;
}
#ficha-inmobiliaria .single-product-area .single_product_thumb .carousel-control-next,
#ficha-inmobiliaria .single-product-area .single_product_thumb .carousel-control-prev {
  transition: none;
  background: rgba(0, 0, 0, 0.1);
}
#ficha-inmobiliaria .single-product-area .single_product_thumb .carousel-indicators {
  margin: 0 7.5px;
  bottom: -165px;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}
#ficha-inmobiliaria .single-product-area .single_product_thumb .carousel-indicators li {
  min-height: 130px;
  background-position: center center;
  background-size: cover;
  border: 0px solid transparent;
  cursor: pointer;
  background-repeat: no-repeat;
}
#ficha-inmobiliaria .single-product-area .single_product_thumb .carousel-indicators li.active {
  border: 2px solid #000;
}
#ficha-inmobiliaria .single-product-area .single_product_thumb .carousel-item a {
  cursor: zoom-in;
}
#ficha-inmobiliaria .single-product-area .single_product_desc {
  position: relative;
  z-index: 1;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data .line {
  width: 80px;
  height: 3px;
  background-color: #edea9d;
  margin-bottom: 15px;
  display: block;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data .product-price {
  font-size: calc(24px + 0.3vw);
  font-weight: 400;
  color: #edea9d;
  line-height: 1;
  margin-bottom: 10px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data .product-price span {
  text-decoration: line-through;
  color: #b6b7b9;
  text-decoration: line-through;
  font-size: calc(16px + 0.3vw);
  position: absolute;
  right: 0;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data a {
  display: block;
  color: #3b3b3b;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data a h6 {
  font-size: 30px;
  margin-bottom: 15px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data .avaibility {
  margin-bottom: 0;
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
  line-height: 1;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data .avaibility i {
  background: #3b3b3b;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data h5 {
  font-size: calc(16px + 0.3vw);
  margin: 20px 0px 10px;
  color: #3b3b3b;
  border-bottom: solid 1px #eaebed;
  padding-bottom: 10px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data p.descargar {
  margin-bottom: 0rem;
  color: #b6b7b9;
  font-size: calc(8px + 0.4vw);
  letter-spacing: 0;
  line-height: 2.5;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .product-meta-data p.descargar i {
  color: #3b3b3b;
  font-size: calc(12px + 0.4vw);
  margin-right: 15px;
  display: inline-block;
}
#ficha-inmobiliaria .single-product-area .single_product_desc .short_overview p {
  letter-spacing: 0;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart p {
  margin-bottom: 0;
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  background-color: #eaebed;
  display: inline-block;
  width: 45%;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart input::-webkit-outer-spin-button,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity {
  position: relative;
  z-index: 1;
  float: right;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity input {
  text-align: center;
  background-color: #eaebed;
  height: 40px;
  width: 100px;
  border: none;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  color: #9e9e9e;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity .qty-plus {
  position: absolute;
  right: 0;
  top: -2px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  height: 20px;
  cursor: pointer;
  color: #9e9e9e;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity .qty-plus i {
  height: 10px;
  width: 10px;
  display: inline-block;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity .qty-plus i img {
  width: 100%;
  opacity: 0.4;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity .qty-minus {
  position: absolute;
  top: 16px;
  right: 0;
  line-height: 1;
  width: 30px;
  height: 25px;
  text-align: center;
  cursor: pointer;
  color: #9e9e9e;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity .qty-minus i {
  height: 10px;
  width: 10px;
  display: inline-block;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .quantity .qty-minus i img {
  width: 100%;
  opacity: 0.4;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .amado-btn {
  display: inline-block;
  height: 50px;
  color: white;
  border: none;
  border-radius: 0;
  padding: 0 7px;
  background-color: #edea9d;
  font-weight: 400;
  margin-top: 10px;
  display: inline-block;
  width: 47%;
  margin-right: 10px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .amado-btn:hover, #ficha-inmobiliaria .single-product-area .single_product_desc form.cart .amado-btn:focus, #ficha-inmobiliaria .single-product-area .single_product_desc form.cart .amado-btn:active {
  background-color: #000;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .amado-btn span {
  display: inline-block;
  margin-right: 10px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .amado-btn span img {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select {
  margin: 20px 0 0;
  background-color: #eaebed;
  border-radius: 0px;
  border: solid 1px #e0e7ee;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select:hover {
  border-color: #d0dae5;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select:active, #ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select:focus {
  border-color: #d0dae5;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select:after {
  border-bottom: 2px solid #90a1b5;
  border-right: 2px solid #90a1b5;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .open {
  border-color: #d0dae5;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .open:after {
  transform: rotate(-135deg);
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.disabled {
  border-color: #e7ecf2;
  color: #90a1b5;
  pointer-events: none;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.disabled:after {
  border-color: #cdd5de;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.wide {
  width: 46%;
  float: left;
  margin: 0px 20px 20px 0px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.right {
  float: right;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.right .list {
  left: auto;
  right: 0;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.small:after {
  height: 4px;
  width: 4px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .option:hover,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .option.focus,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .option.selected.focus {
  background-color: #f6f7f9;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .option.selected {
  font-weight: bold;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .nice-select .option.disabled {
  background-color: transparent;
  color: #90a1b5;
  cursor: default;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .no-csspointerevents .nice-select .list {
  display: none;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .no-csspointerevents .nice-select.open .list {
  display: block;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart code[class*=language-],
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart pre[class*=language-] {
  border-radius: 2px;
  color: #445870;
  -webkit-hyphens: none;
          hyphens: none;
  line-height: 1.5;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  text-align: left;
  white-space: pre;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  direction: ltr;
  font-family: Inconsolata, monospace;
  font-size: 13px;
  letter-spacing: 0;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart pre[class*=language-] {
  padding: 18px 24px;
  margin: 0 0 24px;
  overflow: auto;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart :not(pre) > code[class*=language-],
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart pre[class*=language-] {
  background: #f6f7f9;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart :not(pre) > code[class*=language-] {
  padding: 0 2px 1px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.comment,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.prolog,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.doctype,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.cdata {
  color: #90a1b5;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.punctuation {
  color: #999;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .namespace {
  opacity: 0.7;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.property,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.tag,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.boolean,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.number,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.constant,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.symbol,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.deleted {
  color: #ec4444;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.selector,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.attr-name,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.string,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.char,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.builtin,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.inserted {
  color: #4abf60;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.operator,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.entity,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.url,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .language-css .token.string,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.atrule,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.attr-value,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.keyword {
  color: #55a1fb;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.function {
  color: #dd4a68;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.regex,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.important,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.variable {
  color: #e90;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.important,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.bold {
  font-weight: bold;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.italic {
  font-style: italic;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .token.entity {
  cursor: help;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart a:not(.button) {
  color: white;
  line-height: 3;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid transparent;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart a:not(.button):hover,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart a:not(.button):focus {
  border-bottom: 1px solid transparent;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .box {
  background-color: white;
  border-radius: 2px;
  margin-bottom: 30px;
  padding: 0;
  margin-top: 20px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .box .cart-btn {
  background-color: #eaebed;
  width: 46%;
  display: inline-block;
  min-height: 43px;
  margin: 0px 20px 20px 0px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .box:before,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .box:after {
  content: "";
  display: table;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .box:after {
  clear: both;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart label {
  color: #90a1b5;
  font-size: 11px;
  margin: 0 2px 4px;
  text-transform: uppercase;
  float: left;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart label.right {
  float: right;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button {
  background-color: #55a1fb;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  height: 42px;
  line-height: 42px;
  outline: none;
  padding: 0 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button:hover,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button:focus {
  background-color: #4196fb;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button:active,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button.nice-select.open {
  background-color: #2d8bfa;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button.light {
  background-color: #fff;
  border: 1px solid #e0e7ee;
  color: #55a1fb;
  line-height: 40px;
  margin-left: 24px;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button.light:hover {
  border-color: #d0dae5;
}
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button.light:active,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button.light.nice-select.open,
#ficha-inmobiliaria .single-product-area .single_product_desc form.cart .button.light:focus {
  border-color: #88bfff;
}
#ficha-inmobiliaria .tecnica {
  width: 100%;
}
#ficha-inmobiliaria .tecnica .tab {
  float: left;
  border: none;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}
#ficha-inmobiliaria .tecnica .tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}
#ficha-inmobiliaria .tecnica .tab button:hover, #ficha-inmobiliaria .tecnica .tab button:active {
  background-color: #edea9d;
  color: white;
}
#ficha-inmobiliaria .tecnica .tab button.active {
  background-color: #edea9d;
  color: white;
}
#ficha-inmobiliaria .tecnica .tabcontent {
  float: left;
  padding: 40px;
  border: 1px solid #eaebed;
  width: 70%;
  border-left: none;
  height: 300px;
}

/**********************
Ocultando bloques de la ficha
***********************/
#ficha .single-product-area .single_product_desc .product-meta-data .avaibility {
  display: block;
}

/**********************
Ws botón Clasico
***********************/
#chat-ws {
  position: fixed;
  bottom: 20px;
  left: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background-color: #25b249;
}
#chat-ws img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}
#chat-ws i {
  color: white;
  padding: 8px 11px;
  font-size: 44px;
}

#ayuda {
  position: fixed;
  color: white;
  padding: 15px;
  bottom: 20px;
  left: 73px;
  width: auto;
  height: auto;
  background-color: #25b249;
  text-align: center;
  border-radius: 40px;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
}
#ayuda a {
  color: white;
  text-decoration: none;
  font-size: calc(9px + 0.4vw);
  text-align: center;
  display: block;
}

/**********************
Ws botón redondo
***********************/
#chat-ws-redondo {
  position: fixed;
  bottom: 20px;
  left: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #25b249;
  padding: 10px;
}
#chat-ws-redondo img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}

/**********************
Ws botón Cuadrado
***********************/
#chat-ws-square {
  position: fixed;
  bottom: 74px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 0;
  cursor: pointer;
  display: block;
  box-shadow: 0 0 20px 0 rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #25b249;
  padding: 10px;
}
#chat-ws-square img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}

#ayuda-square {
  position: fixed;
  color: white;
  padding: 11px 20px;
  bottom: 74px;
  right: 73px;
  width: auto;
  height: auto;
  background-color: #25b249;
  border-radius: 0px;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
}
#ayuda-square a {
  color: white;
  text-decoration: none;
  font-size: calc(9px + 0.4vw);
}

/**********************
Ws botón redondo con tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
  position: fixed;
  bottom: 20px;
  left: auto;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #25b249;
  padding: 10px;
  opacity: 1;
}
#chat-ws-redondo.ws.tooltip img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}
#chat-ws-redondo.ws.tooltip i {
  font-size: 44px;
  color: white;
}

.ws.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #25b249;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #25b249 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/**********************
Más Vendidos Index
***********************/
#masvendidos .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#masvendidos .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#masvendidos .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#masvendidos .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#masvendidos .MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}
#masvendidos .MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}
#masvendidos .MultiCarousel .MultiCarousel-inner .item > div {
  padding: 0px;
  margin: 15px;
  background: white;
  border: 1px solid #eaebed;
}
#masvendidos .MultiCarousel .leftLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
  left: 10px;
  padding: 4px 10px 6px 9px;
}
#masvendidos .MultiCarousel .leftLst img {
  width: 15px;
}
#masvendidos .MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
  right: 10px;
  padding: 4px 9px 6px 10px;
}
#masvendidos .MultiCarousel .rightLst img {
  width: 15px;
}
#masvendidos .MultiCarousel .leftLst.over {
  pointer-events: none;
  background: #edea9d;
}
#masvendidos .MultiCarousel .rightLst.over {
  pointer-events: none;
  background: #edea9d;
}
#masvendidos .MultiCarousel .btn-primary:hover {
  color: #fff;
  background-color: #edea9d;
  border-color: #edea9d;
}
#masvendidos .MultiCarousel .btn-primary.focus,
#masvendidos .MultiCarousel .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 234, 157, 0.8);
}
#masvendidos .MultiCarousel .btn-primary {
  color: #fff;
  background-color: #edea9d;
  border-color: #edea9d;
}
#masvendidos .products_container {
  margin-top: 15px;
}
#masvendidos .products_container .product_grid {
  margin-left: 0;
  padding: 0px;
}
#masvendidos .products_container .product_grid .product {
  margin-bottom: 40px;
  float: left;
  padding: 0px;
  overflow: hidden;
  /* min-height: 400px; */
}
#masvendidos .products_container .product_grid .product .product_image {
  width: 100%;
  height: 288px !important;
  position: relative;
  overflow: hidden;
}
#masvendidos .products_container .product_grid .product .product_image a {
  overflow: hidden;
  display: block;
}
#masvendidos .products_container .product_grid .product .product_image a img {
  max-width: 100%;
  transition: 0.2s all;
  vertical-align: top;
  max-width: 100% !important;
  max-height: none !important;
}
#masvendidos .products_container .product_grid .product .product_image a:hover img {
  transform: scale(1.1);
}
#masvendidos .products_container .product_grid .product .product_content {
  margin-top: 7px;
  position: relative;
  min-height: 100px;
  padding: 10px;
}
#masvendidos .products_container .product_grid .product .product_content .product_info {
  float: left;
  width: 100%;
}
#masvendidos .products_container .product_grid .product .product_content .product_info .product_name a {
  font-size: calc(10px + 0.4vw);
  font-weight: 600;
  color: #3b3b3b;
  transition: all 200ms ease;
}
#masvendidos .products_container .product_grid .product .product_content .product_info .product_name a:hover {
  color: #edea9d;
}
#masvendidos .products_container .product_grid .product .product_content .product_info .product_price {
  font-size: 24px;
  font-weight: 600;
  color: #3b3b3b;
  margin-top: 0px;
  float: left;
}
#masvendidos .products_container .product_grid .product .product_content .product_options {
  transform: translateY(11px);
  right: -1px;
  bottom: 11px;
  position: absolute;
}
#masvendidos .products_container .product_grid .product .product_content .product_options .product_option {
  width: 37px;
  height: 37px;
  cursor: pointer;
}
#masvendidos .products_container .product_grid .product .product_content .product_options .product_buy {
  display: inline-block;
  background: #edea9d;
  vertical-align: middle;
  margin-right: 4px;
  transition: all 200ms ease;
}
#masvendidos .products_container .product_grid .product .product_content .product_options .product_buy img {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 23px;
  height: 23px;
}
#masvendidos .products_container .product_grid .product .product_content .product_options .product_buy:hover {
  background: #000;
}
#masvendidos .products_container .product_grid .product .product_content .product_options .product_fav {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
  background: #eaebed;
  line-height: 37px;
  text-align: center;
  transition: all 200ms ease;
}
#masvendidos .products_container .product_grid .product .product_content .product_options .product_fav:hover {
  color: white;
  background: #000;
}
#masvendidos .products_container .product_grid .product:nth-child(3n) {
  margin-right: 0px;
}

/**********************
Video
***********************/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  background: black;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**********************
  Pop Up Form
***********************/
#popupform .open-button {
  background-color: #edea9d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
  z-index: 9;
}
#popupform .chat-popup {
  display: none;
  position: fixed;
  bottom: 23px;
  right: 15px;
  border: 1px solid #eaebed;
  z-index: 9;
}
#popupform .chat-popup h1 {
  font-size: calc(12px + 1vw);
  color: #3b3b3b;
  font-weight: 600;
  margin-bottom: 0;
}
#popupform .form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 1px solid #eaebed;
  z-index: 9;
}
#popupform .form-container {
  max-width: 300px;
  padding: 20px 10px;
  background-color: white;
  min-width: 300px;
}
#popupform .form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 0px 0 5px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 150px;
}
#popupform .form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}
#popupform .form-container .btn {
  background-color: #edea9d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
  border-radius: 0;
}
#popupform .form-container .cancel {
  background-color: black;
  color: white;
  border-radius: 0;
}
#popupform .form-container .btn:hover,
#popupform .open-button:hover {
  opacity: 1;
}
#popupform form.form-container p {
  margin-bottom: 0;
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  background-color: #eaebed;
  display: inline-block;
  width: 45%;
}
#popupform form.form-container .nice-select {
  margin: 20px 0 0;
  background-color: white;
  border-radius: 0px;
  border: solid 1px #eaebed;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
}
#popupform form.form-container .nice-select:hover {
  border-color: #d0dae5;
}
#popupform form.form-container .nice-select:active, #popupform form.form-container .nice-select:focus {
  border-color: #d0dae5;
}
#popupform form.form-container .nice-select:after {
  border-bottom: 2px solid #90a1b5;
  border-right: 2px solid #90a1b5;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
#popupform form.form-container .nice-select .open {
  border-color: #d0dae5;
}
#popupform form.form-container .nice-select .open:after {
  transform: rotate(-135deg);
}
#popupform form.form-container .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
#popupform form.form-container .nice-select.disabled {
  border-color: #e7ecf2;
  color: #90a1b5;
  pointer-events: none;
}
#popupform form.form-container .nice-select.disabled:after {
  border-color: #cdd5de;
}
#popupform form.form-container .nice-select.wide {
  width: 100%;
  float: left;
  margin: 0px 20px 20px 0px;
}
#popupform form.form-container .nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
#popupform form.form-container .nice-select.right {
  float: right;
}
#popupform form.form-container .nice-select.right .list {
  left: auto;
  right: 0;
}
#popupform form.form-container .nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
#popupform form.form-container .nice-select.small:after {
  height: 4px;
  width: 4px;
}
#popupform form.form-container .nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
#popupform form.form-container .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
#popupform form.form-container .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
#popupform form.form-container .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
#popupform form.form-container .nice-select .option:hover, #popupform form.form-container .nice-select .option:focus {
  background-color: #f6f7f9;
}
#popupform form.form-container .nice-select .option .selected.focus {
  background-color: #f6f7f9;
}
#popupform form.form-container .nice-select .option.selected {
  font-weight: bold;
}
#popupform form.form-container .nice-select .option.disabled {
  background-color: transparent;
  color: #90a1b5;
  cursor: default;
}
#popupform form.form-container .no-csspointerevents .nice-select .list {
  display: none;
}
#popupform form.form-container .no-csspointerevents .nice-select.open .list {
  display: block;
}
#popupform form.form-container code[class*=language-],
#popupform form.form-container pre[class*=language-] {
  border-radius: 2px;
  color: #445870;
  -webkit-hyphens: none;
          hyphens: none;
  line-height: 1.5;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  text-align: left;
  white-space: pre;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  direction: ltr;
  font-family: Inconsolata, monospace;
  font-size: 13px;
  letter-spacing: 0;
}
#popupform form.form-container pre[class*=language-] {
  padding: 18px 24px;
  margin: 0 0 24px;
  overflow: auto;
}
#popupform form.form-container :not(pre) > code[class*=language-],
#popupform form.form-container pre[class*=language-] {
  background: #f6f7f9;
}
#popupform form.form-container :not(pre) > code[class*=language-] {
  padding: 0 2px 1px;
}
#popupform form.form-container .token.comment,
#popupform form.form-container .token.prolog,
#popupform form.form-container .token.doctype,
#popupform form.form-container .token.cdata {
  color: #90a1b5;
}
#popupform form.form-container .token.punctuation {
  color: #999;
}
#popupform form.form-container .namespace {
  opacity: 0.7;
}
#popupform form.form-container .token.property,
#popupform form.form-container .token.tag,
#popupform form.form-container .token.boolean,
#popupform form.form-container .token.number,
#popupform form.form-container .token.constant,
#popupform form.form-container .token.symbol,
#popupform form.form-container .token.deleted {
  color: #ec4444;
}
#popupform form.form-container .token.selector,
#popupform form.form-container .token.attr-name,
#popupform form.form-container .token.string,
#popupform form.form-container .token.char,
#popupform form.form-container .token.builtin,
#popupform form.form-container .token.inserted {
  color: #4abf60;
}
#popupform form.form-container .token.operator,
#popupform form.form-container .token.entity,
#popupform form.form-container .token.url,
#popupform form.form-container .language-css .token.string,
#popupform form.form-container .style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
#popupform form.form-container .token.atrule,
#popupform form.form-container .token.attr-value,
#popupform form.form-container .token.keyword {
  color: #55a1fb;
}
#popupform form.form-container .token.function {
  color: #dd4a68;
}
#popupform form.form-container .token.regex,
#popupform form.form-container .token.important,
#popupform form.form-container .token.variable {
  color: #e90;
}
#popupform form.form-container .token.important,
#popupform form.form-container .token.bold {
  font-weight: bold;
}
#popupform form.form-container .token.italic {
  font-style: italic;
}
#popupform form.form-container .token.entity {
  cursor: help;
}
#popupform form.form-container a:not(.button) {
  color: #55a1fb;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid transparent;
}
#popupform form.form-container a:not(.button):hover,
#popupform form.form-container a:not(.button):focus {
  border-bottom: 1px solid #88bfff;
}
#popupform form.form-container .box {
  background-color: white;
  border-radius: 2px;
  margin-bottom: 0px;
  padding: 0;
  margin-top: 0px;
}
#popupform form.form-container .box .cart-btn {
  background-color: #eaebed;
  width: 46%;
  display: inline-block;
  min-height: 43px;
  margin: 0px 20px 20px 0px;
}
#popupform form.form-container .box:before {
  content: "";
  display: table;
}
#popupform form.form-container .box:after {
  content: "";
  display: table;
  clear: both;
}
#popupform form.form-container .box .form-group input::-moz-placeholder {
  /* Firefox, Chrome, Opera */
  font-size: 14px !important;
  color: black !important;
}
#popupform form.form-container .box .form-group input::placeholder {
  /* Firefox, Chrome, Opera */
  font-size: 14px !important;
  color: black !important;
}
#popupform form.form-container .box .form-group input {
  width: 100%;
  display: inline-block;
  float: none;
  margin-right: 10px;
  margin: 10px 0;
  background-color: white;
  border-radius: 0;
  border: none;
  clear: both;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: 0;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  border: solid 1px #eaebed;
}
#popupform form.form-container .box:after {
  clear: both;
}
#popupform form.form-container label {
  color: #90a1b5;
  font-size: 11px;
  margin: 0 2px 4px;
  text-transform: uppercase;
  float: left;
}
#popupform form.form-container label.right {
  float: right;
}
#popupform form.form-container .button {
  background-color: #3b3b3b;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  height: 42px;
  line-height: 42px;
  outline: none;
  padding: 0 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
}
#popupform form.form-container .button:hover, #popupform form.form-container .button:focus {
  background-color: #3b3b3b;
}
#popupform form.form-container .button:active,
#popupform form.form-container .button.nice-select.open {
  background-color: #2d8bfa;
}
#popupform form.form-container .button.light {
  background-color: #fff;
  border: 1px solid #e0e7ee;
  color: #55a1fb;
  line-height: 40px;
  margin-left: 24px;
}
#popupform form.form-container .button.light:hover {
  border-color: #d0dae5;
}
#popupform form.form-container .button.light:active,
#popupform form.form-container .button.light.nice-select.open,
#popupform form.form-container .button.light:focus {
  border-color: #88bfff;
}
#popupform #enviar_form.ok {
  background-color: #3b3b3b;
  color: #3b3b3b;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
  border-radius: 0;
}
#popupform .warning {
  padding: 10px;
  border: 1px solid #ffbf4a !important;
  text-align: center;
  color: #f3ac13;
}
#popupform .success {
  padding: 10px 0;
  background-color: #dff0d8 !important;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  color: #3c763d;
}

/**********************
Sidenav
***********************/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #edea9d;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: calc(7px + 1vw);
  color: #fff;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover, .sidenav a:active, .sidenav a:focus {
  color: #edea9d;
  background: rgba(255, 255, 255, 0.8);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
  margin-left: 50px;
  padding-right: 25px;
}

#main {
  position: fixed;
  z-index: 2;
  width: auto;
  top: 34%;
  background: rgba(237, 234, 157, 0.8);
  border: 1px solid white;
  z-index: 2;
}
#main:hover {
  background-color: #9e9e9e;
  border: 1px solid #9e9e9e;
}
#main span {
  cursor: pointer;
  font-size: 20px;
  color: white;
  padding: 16px;
  display: block;
}

/**********************
Mision
***********************/
#mision {
  background: #f1f1f1;
}
#mision .letile h6 {
  font-size: calc(8px + 1vw);
  font-weight: 400;
  color: #3b3b3b;
}
#mision .letile h1 {
  color: #3b3b3b;
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
  display: inline-block;
  font-weight: 600;
}
#mision .letile h1:after {
  content: "";
  background-color: #edea9d;
  position: absolute;
  top: 30px;
  left: -5px;
  z-index: -1;
  width: 60px;
  height: 20px;
}
#mision .letile p {
  color: #9e9e9e;
  text-align: left;
}
#mision .col,
#mision .col-1,
#mision .col-2,
#mision .col-3,
#mision .col-4,
#mision .col-5,
#mision .col-6,
#mision .col-7,
#mision .col-8,
#mision .col-9,
#mision .col-10,
#mision .col-11,
#mision .col-12 {
  float: left;
  background: white;
  padding: 20px;
  margin: 10px;
}
#mision .col h2,
#mision .col-1 h2,
#mision .col-2 h2,
#mision .col-3 h2,
#mision .col-4 h2,
#mision .col-5 h2,
#mision .col-6 h2,
#mision .col-7 h2,
#mision .col-8 h2,
#mision .col-9 h2,
#mision .col-10 h2,
#mision .col-11 h2,
#mision .col-12 h2 {
  font-size: calc(8px + 1vw);
  font-weight: 600;
  color: #3b3b3b;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#mision .col p,
#mision .col-1 p,
#mision .col-2 p,
#mision .col-3 p,
#mision .col-4 p,
#mision .col-5 p,
#mision .col-6 p,
#mision .col-7 p,
#mision .col-8 p,
#mision .col-9 p,
#mision .col-10 p,
#mision .col-11 p,
#mision .col-12 p {
  color: #9e9e9e;
  text-align: left;
  font-size: calc(12px + 0.3vw);
}

/**********************
Index inmobiliaria buscador sobre slider
***********************/
.south-search-area {
  position: relative;
  z-index: 1;
}
.south-search-area .advanced-search-form {
  position: absolute;
  z-index: 1;
  padding: 30px 50px;
  border: 1px solid #e1dddd;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  top: -50px;
  background: white;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form {
    padding: 30px 20px;
  }
}
.south-search-area .advanced-search-form .search-title {
  position: absolute;
  width: 260px;
  height: 45px;
  background-color: #5b4931;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form .search-title {
    width: 210px;
    padding: 0 15px;
  }
}
.south-search-area .advanced-search-form .search-title p {
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
  line-height: 45px;
  font-weight: 600;
}
.south-search-area .advanced-search-form .slider-range {
  flex: 0 0 50%;
  min-width: 50%;
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form .slider-range {
    margin-bottom: 50px;
  }
}
.south-search-area .advanced-search-form .slider-range:first-child {
  padding-right: 15px;
}
.south-search-area .advanced-search-form .slider-range:last-child {
  padding-left: 15px;
}
.south-search-area .advanced-search-form .ui-widget.ui-widget-content {
  border: none;
  height: 4px;
}
.south-search-area .advanced-search-form .ui-widget-content {
  background: #5b4931;
}
.south-search-area .advanced-search-form .ui-slider-horizontal {
  height: 4px;
  background: #5b4931;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-bottom,
.south-search-area .advanced-search-form .ui-corner-right,
.south-search-area .advanced-search-form .ui-corner-br {
  border-bottom-right-radius: 0;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-bottom,
.south-search-area .advanced-search-form .ui-corner-left,
.south-search-area .advanced-search-form .ui-corner-bl {
  border-bottom-left-radius: 0;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-top,
.south-search-area .advanced-search-form .ui-corner-right,
.south-search-area .advanced-search-form .ui-corner-tr {
  border-top-right-radius: 0;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-top,
.south-search-area .advanced-search-form .ui-corner-left,
.south-search-area .advanced-search-form .ui-corner-tl {
  border-top-left-radius: 0;
}
.south-search-area .advanced-search-form .ui-state-default,
.south-search-area .advanced-search-form .ui-widget-content .ui-state-default,
.south-search-area .advanced-search-form .ui-widget-header .ui-state-default,
.south-search-area .advanced-search-form .ui-button,
.south-search-area .advanced-search-form html .ui-button.ui-state-disabled:hover,
.south-search-area .advanced-search-form html .ui-button.ui-state-disabled:active {
  border: none;
  background: #5b4931;
  margin-top: -3px;
}
.south-search-area .advanced-search-form .range {
  font-size: 12px;
  margin-top: 15px;
  font-weight: 600;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form .range {
    font-size: 10px;
  }
}
.south-search-area .advanced-search-form .more-filter a {
  text-transform: uppercase;
  font-size: 12px;
  color: #323232;
}
.south-search-area .advanced-search-form .more-filter a:hover {
  color: #5b4931;
}
.south-search-area .advanced-search-form .search-form-second-steps {
  display: none;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .form-control {
  background-color: transparent;
  width: 100%;
  height: 38px;
  border-radius: 0;
  font-size: 14px;
  color: black;
  margin-bottom: 30px;
  font-weight: 500;
  padding: 0 15px;
  border: 1px solid #e1dddd;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .form-control:hover, .south-search-area .advanced-search-form #advanceSearch .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #e1dddd;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline {
  background-color: transparent;
  width: auto;
  height: 38px;
  border-radius: 0;
  font-size: 14px;
  color: #3b3b3b;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 500;
  padding: 0 0px 0px 15px;
  border: 0px solid #e1dddd;
  /* display:inline; */
  float: left;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline:hover, .south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline:active, .south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline:focus {
  background-color: transparent;
  box-shadow: none;
  border: 0px solid #e1dddd;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  width: 100%;
  height: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.active, .south-search-area .advanced-search-form #advanceSearch .form-group .south-btn:hover, .south-search-area .advanced-search-form #advanceSearch .form-group .south-btn:focus {
  color: white;
  background-color: black;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-2 {
  border: 2px solid #5b4931;
  background-color: transparent;
  color: #5b4931;
  line-height: 46px;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-2:hover, .south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-2:focus {
  color: white;
  background-color: #5b4931;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-3 {
  border: 2px solid black;
  background-color: transparent;
  color: black;
  line-height: 46px;
}
.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-3:hover, .south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-3:focus {
  color: white;
  background-color: black;
}

/**********************
Grid Propiedades Destacadas
***********************/
#intro-single {
  padding-bottom: 6rem;
}
#intro-single .title-single-box {
  padding: 1rem 0 1rem 2rem;
}
#intro-single .title-single-box {
  border-left: 5px solid #3b3b3b;
}
#intro-single .title-single-box .title-single {
  font-weight: 700;
  text-transform: uppercase;
}
#intro-single .breadcrumb-box {
  padding: 1rem 0 0 0.5rem;
}
#intro-single .breadcrumb {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}
#intro-single .grid-option {
  text-align: right;
  margin-bottom: 2rem;
  float: right;
}
#intro-single .grid-option form {
  padding: 1rem 0 1rem 2rem;
}
#intro-single .grid-option form .form-control {
  border-radius: 0;
  width: 200px;
  line-height: 2;
}
#intro-single .grid-option form .form-control:focus, #intro-single .grid-option form .form-control:active, #intro-single .grid-option form .form-control:hover {
  outline: 0 !important;
  box-shadow: none !important;
}
#intro-single .grid-option form .form-control .form-control option {
  outline: 0;
}

#propiedades-destacadas {
  padding-bottom: 40px;
}
#propiedades-destacadas .card-box-a,
#propiedades-destacadas .card-box-b,
#propiedades-destacadas .card-box-d {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}
#propiedades-destacadas .card-box-a .img-box-a .zona,
#propiedades-destacadas .card-box-b .img-box-a .zona,
#propiedades-destacadas .card-box-d .img-box-a .zona {
  position: absolute;
  z-index: 1;
  background: #3b3b3b;
  color: #3b3b3b;
  padding: 5px 10px;
  left: 10px;
  top: 10px;
  font-size: calc(12px + 0.3vw);
}
#propiedades-destacadas .card-box-a .img-a,
#propiedades-destacadas .card-box-a .img-b,
#propiedades-destacadas .card-box-b .img-a,
#propiedades-destacadas .card-box-b .img-b {
  transition: 0.8s all ease-in-out;
}
#propiedades-destacadas .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#propiedades-destacadas .card-shadow {
  backface-visibility: hidden;
  margin-bottom: 2.5rem;
}
#propiedades-destacadas .card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}
#propiedades-destacadas .card-overlay-a-content {
  transition: all 0.5s ease-in;
  position: absolute;
  width: 100%;
  bottom: 0px;
  z-index: 2;
}
#propiedades-destacadas .card-header-a {
  padding: 0 1rem;
}
#propiedades-destacadas .card-header-a .card-title-a {
  color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 0.7rem;
}
#propiedades-destacadas .card-header-a .card-title-a a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}
#propiedades-destacadas .card-body-a {
  z-index: 2;
  transition: all 0.5s ease-in;
  padding: 0rem 1rem 2rem 1rem;
}
#propiedades-destacadas .card-body-a .link-a {
  font-size: 1rem;
  color: white;
}
#propiedades-destacadas .card-body-a .price-box {
  padding-bottom: 0.5rem;
}
#propiedades-destacadas .price-a {
  color: #ffffff;
  padding: 0.6rem 0.8rem;
  border: 2px solid #3b3b3b;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(0, 0, 0, 0.3);
}
#propiedades-destacadas .card-footer-a {
  width: 100%;
  position: absolute;
  z-index: 2;
  background-color: #3b3b3b;
}
#propiedades-destacadas .card-info {
  list-style: none;
  margin-bottom: 0;
  padding: 0.7rem 1rem;
}
#propiedades-destacadas .card-info .card-info-title {
  font-size: 1rem;
  color: #3b3b3b;
}
#propiedades-destacadas .card-info li span {
  color: #ffffff;
  font-size: 0.9rem;
}
#propiedades-destacadas .property-grid .grid-option {
  text-align: right;
  margin-bottom: 2rem;
}
#propiedades-destacadas .property-grid .grid-option .custom-select {
  border-radius: 0;
  width: 200px;
  border-color: #313131;
}
#propiedades-destacadas .property-grid .grid-option .custom-select:hover,
#propiedades-destacadas .property-grid .grid-option .custom-select:active,
#propiedades-destacadas .property-grid .grid-option .custom-select:focus {
  border-color: #313131;
}
#propiedades-destacadas .property-grid .grid-option .custom-select option {
  border-color: #313131;
}

@media (min-width: 768px) {
  #propiedades-destacadas {
    margin: 0;
  }
  #propiedades-destacadas .grid .card-box-a,
  #propiedades-destacadas .grid .card-box-b,
  #propiedades-destacadas .grid .card-box-c,
  #propiedades-destacadas .grid .card-box-d {
    margin-bottom: 2.5rem;
  }
  #propiedades-destacadas .card-box-a:hover .img-a,
  #propiedades-destacadas .card-box-a:hover .img-b,
  #propiedades-destacadas .card-box-b:hover .img-a,
  #propiedades-destacadas .card-box-b:hover .img-b {
    transform: scale(1.2);
  }
  #propiedades-destacadas .card-box-a .price-a,
  #propiedades-destacadas .card-box-b .price-a {
    font-size: 0.9rem;
  }
  #propiedades-destacadas .card-box-a:hover .card-overlay-a-content {
    bottom: 60px;
  }
  #propiedades-destacadas .card-box-a:hover .card-body-a {
    padding-bottom: 1rem;
  }
  #propiedades-destacadas .card-overlay-a-content {
    bottom: -20px;
  }
  #propiedades-destacadas .card-header-a .card-title-a {
    font-size: 1.3rem;
  }
  #propiedades-destacadas .card-info .card-info-title {
    font-size: calc(10px + 0.3vw);
  }
  #propiedades-destacadas .card-info li span {
    font-size: 0.8rem;
  }
  #propiedades-destacadas .card-header-b {
    bottom: 0px;
  }
  #propiedades-destacadas .card-header-b .title-2 {
    font-size: 1rem;
  }
  #propiedades-destacadas .card-header-b .date-b {
    font-size: 0.9rem;
  }
  #propiedades-destacadas .box-comments .list-comments .comment-author {
    font-size: 1.5rem;
  }
  #propiedades-destacadas .title-c {
    font-size: 1.8rem;
  }
  #propiedades-destacadas .card-box-d .card-overlay-hover {
    padding: 5px 15px 5px 10px;
  }
  #propiedades-destacadas .card-box-d .title-d {
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
  #propiedades-destacadas .card-box-d .content-d {
    font-size: 0.8rem;
    margin: 0.5rem 0;
  }
  #propiedades-destacadas .card-box-d .card-body-d p {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }
  #propiedades-destacadas .about-img-box {
    padding-left: 5rem;
  }
  #propiedades-destacadas .sinse-box {
    padding: 1.5rem 3rem;
  }
  #propiedades-destacadas .sinse-box .sinse-title {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  #propiedades-destacadas .card-box-a:hover .card-overlay-a-content {
    bottom: 60px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  #propiedades-destacadas .card-box-a:hover .card-overlay-a-content {
    bottom: 64px;
  }
}
@media (min-width: 992px) {
  #propiedades-destacadas .link-a span {
    font-size: 10px;
    margin-left: 5px;
  }
  #propiedades-destacadas .card-box-a .price-a,
  #propiedades-destacadas .card-box-b .price-a {
    font-size: 1rem;
  }
  #propiedades-destacadas .card-overlay-a-content {
    bottom: 0px;
  }
  #propiedades-destacadas .card-header-a .card-title-a {
    font-size: calc(18px + 0.4vw);
  }
  #propiedades-destacadas .card-info .card-info-title {
    font-size: calc(9px + 0.3vw);
  }
  #propiedades-destacadas .card-info li span {
    font-size: 1rem;
  }
  #propiedades-destacadas .card-header-b {
    bottom: 20px;
  }
  #propiedades-destacadas .card-header-b .title-2 {
    font-size: 1.6rem;
  }
  #propiedades-destacadas .card-header-b .date-b {
    font-size: 1rem;
  }
  #propiedades-destacadas .title-c {
    font-size: 2.5rem;
  }
  #propiedades-destacadas .card-box-d .card-overlay-hover {
    padding: 5px 40px 5px 35px;
  }
  #propiedades-destacadas .card-box-d .title-d {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  #propiedades-destacadas .card-box-d .card-body-d p {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  #propiedades-destacadas .sinse-box {
    padding: 3rem 4.5rem;
  }
  #propiedades-destacadas .sinse-box .sinse-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  #propiedades-destacadas .card-box-d .card-overlay-hover {
    padding: 15px 40px 5px 35px;
  }
  #propiedades-destacadas .card-box-d .title-d {
    font-size: 2rem;
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  #propiedades-destacadas .card-box-a,
  #propiedades-destacadas .card-box-b,
  #propiedades-destacadas .card-box-c,
  #propiedades-destacadas .card-box-d {
    margin-bottom: 2.5rem;
  }
  #propiedades-destacadas .card-box-a .card-overlay-a-content {
    bottom: 65px;
  }
  #propiedades-destacadas .card-box-a .card-body-a {
    padding-bottom: 1rem;
  }
  #propiedades-destacadas .property-agent {
    margin-top: 2.5rem;
  }
  #propiedades-destacadas .card-box-c {
    margin-bottom: 2rem;
  }
  #propiedades-destacadas .card-body-c {
    padding: 0;
  }
}
/**********************
Call to Action
***********************/
.call-to-action {
  background-color: #edea9d;
}
.call-to-action h2 {
  font-weight: 700;
  font-size: calc(26px + 0.4vw);
  position: relative;
}
.call-to-action p {
  color: white;
}

/**********************
Columnas
***********************/
#pricing-section {
  background: #f7f7f7;
  padding-top: 107px;
  padding-bottom: 77px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

#pricing-section .price-block {
  background: #fff;
  border: 1px solid #e6e6e6;
  text-align: center;
  margin-bottom: 36px;
}

.plan-title {
  font: 15px/30px;
  padding: 30px 20px 6px 20px;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.plan-title .fa {
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
}

.plan-price {
  font-size: 30px;
  color: #333;
  padding: 6px 30px 6px 30px;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.plan-price span {
  font-size: 15px;
  color: #999;
  display: block;
  margin-top: 0;
}

ul.features {
  margin: 12px 0 0 0;
  list-style: none;
  padding-bottom: 40px;
}
ul.features li {
  line-height: 39px;
  margin-bottom: 0;
}

.plan-sign-up {
  padding: 24px 15px;
  margin: 0;
  text-align: center;
}
.plan-sign-up .button {
  font: 13px/24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page {
  overflow: hidden;
  background-color: #fff;
  padding: 60px 0;
}

/* block grids
--------------------------------------------------------------------- */
.bgrid-sixths [class*=column] {
  width: 16.66667%;
}

.bgrid-cinco [class*=column] {
  width: 20%;
}

.bgrid-quarters [class*=column] {
  width: 25%;
}

.bgrid-thirds [class*=column] {
  width: 33.33333%;
}

.bgrid-halves [class*=column] {
  width: 50%;
}

[class*=bgrid] [class*=column] + [class*=column]:last-child {
  float: left;
}

/* Left clearing for block grid columns - columns that changes width in
different screen sizes. Allows columns with different heights to align
properly.
--------------------------------------------------------------------- */
.first {
  clear: left;
} /* first column in default screen */
.s-first {
  clear: none;
} /* first column in smaller screens */
/* smaller screens
--------------------------------------------------------------- */
@media only screen and (max-width: 900px) {
  /* block grids on small screens */
  .s-bgrid-sixths [class*=column] {
    width: 16.66667%;
  }
  .bgrid-cinco [class*=column] {
    width: 20%;
  }
  .s-bgrid-quarters [class*=column] {
    width: 25%;
  }
  .s-bgrid-thirds [class*=column] {
    width: 33.33333%;
  }
  .s-bgrid-halves [class*=column] {
    width: 50%;
  }
  /* block grids left clearing */
  .first {
    clear: none;
  }
  .s-first {
    clear: left;
  }
}
.pricing-tables {
  width: 100%;
}

.column,
.columns {
  position: relative;
  padding: 0 18px;
  min-height: 1px;
  float: left;
}

.column.centered,
.columns.centered {
  float: none;
  margin: 0 auto;
}

/* removed gutters */
.row.collapsed > .column,
.row.collapsed > .columns,
.column.collapsed,
.columns.collapsed {
  padding: 0;
}

[class*=column] + [class*=column]:last-child {
  float: right;
}

[class*=column] + [class*=column].end {
  float: right;
}

@media only screen and (max-width: 767px) {
  .column,
  .columns {
    width: auto !important;
    float: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 30px;
  }
  .row .row {
    width: auto;
    max-width: none;
    margin: 0 -30px;
  }
  [class*=column] + [class*=column]:last-child {
    float: none;
  }
  [class*=bgrid] [class*=column] + [class*=column]:last-child {
    float: none;
  }
}
/**********************
Index Triples sobre slider
***********************/
.triplex {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  padding-bottom: 35px;
}
.triplex .box_col {
  margin-top: -59px;
}
.triplex .box_col .working_hours {
  padding-top: 29px;
  padding-right: 60px;
}
.triplex .box_col .working_hours .box_title {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 11px;
}
.triplex .box_col .working_hours .box_text {
  font-size: 14px;
  line-height: 2.14;
  color: #ffffff;
  font-weight: 400;
  margin-top: 23px;
}
.triplex .box_col .box {
  width: 100%;
  height: 287px;
  background: #283290;
  padding-left: 42px;
  padding-top: 29px;
  transition: all 200ms ease;
}

/**********************
Clientes
***********************/
#clientes {
  min-height: auto;
}

/**********************
Institucional Equal Height
***********************/
.institucional .col-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.institucional .col {
  flex: 50%;
  padding: 7vh 4vw;
}
.institucional .col.texto {
  background: black;
}
.institucional .col.texto h2 {
  color: white;
  font-size: calc(24px + 0.4vw);
  text-transform: uppercase;
  text-align: left;
}
.institucional .col.texto p {
  color: white;
  font-size: calc(14px + 0.4vw);
  text-align: left;
}
.institucional .col.texto .btn {
  color: #edea9d;
  font-size: calc(12px + 0.3vw);
  border: 0px solid white;
  border-radius: 50px;
  padding: 21px 15px;
  display: inline-block;
  background: #3b3b3b;
  position: relative;
  margin-top: 15px;
}
.institucional .col.texto .btn:hover, .institucional .col.texto .btn:active, .institucional .col.texto .btn:focus {
  background: #3b3b3b;
  color: white;
}
.institucional .col.texto .btn i {
  width: 0px;
  height: 0px;
}
.institucional .col.texto .btn:hover i, .institucional .col.texto .btn:focus i, .institucional .col.texto .btn:active i {
  width: 30px;
  height: 50px;
}
.institucional .col.image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 600px) {
  .institucional .col {
    display: block;
    width: 100%;
  }
}
/* FAQ */
#faq .accordion-menu {
  width: 100%;
  max-width: 350px;
  margin: 60px auto 20px;
  background: #fff;
  border-radius: 4px;
}
#faq .accordion-menu li.open .dropdownlink {
  color: #CDDC39;
}
#faq .accordion-menu li.open .dropdownlink .fa-chevron-down {
  transform: rotate(180deg);
}
#faq .accordion-menu li:last-child .dropdownlink {
  border-bottom: 0;
}
#faq .dropdownlink {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 45px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  color: #212121;
  position: relative;
  transition: all 0.4s ease-out;
}
#faq .dropdownlink i {
  position: absolute;
  top: 17px;
  left: 16px;
  color: black;
}
#faq .dropdownlink .fa-chevron-down {
  right: 12px;
  left: auto;
}
#faq .submenuItems {
  display: none;
  background: #C8E6C9;
  list-style: none;
  margin: 0;
  padding: 0;
}
#faq .submenuItems li {
  border-bottom: 1px solid #B6B6B6;
}
#faq .submenuItems a {
  display: block;
  color: #727272;
  padding: 12px 12px 12px 45px;
  transition: all 0.4s ease-out;
}
#faq .submenuItems a:hover {
  background-color: #CDDC39;
  color: #fff;
}

/**********************
Testimonials
***********************/
#testimonios .testimonials-slides.owl-carousel {
  position: relative;
  z-index: 1;
  transform: scale(0.8);
}
#testimonios .testimonials-slides.owl-carousel .owl-dots.disabled,
#testimonios .testimonials-slides.owl-carousel .owl-nav.disabled {
  display: block !important;
}
#testimonios .testimonials-slides.owl-carousel .owl-nav button.owl-next i,
#testimonios .testimonials-slides.owl-carousel .owl-nav button.owl-prev i,
#testimonios .testimonials-slides.owl-carousel button.owl-dot i {
  font-size: calc(10px + 0.3vw);
  color: white;
  color: #fff;
  top: 40%;
  position: absolute;
  left: 42%;
}
#testimonios .testimonials-slides.owl-carousel .single-testimonial-slide {
  position: relative;
  z-index: 1;
  transform: scale(0.8);
}
#testimonios .testimonials-slides.owl-carousel .single-testimonial-slide h5 {
  margin-bottom: 60px;
  color: #3b3b3b;
}
#testimonios .testimonials-slides.owl-carousel .single-testimonial-slide p {
  margin-bottom: 0;
  color: #3b3b3b;
  font-size: calc(14px + 0.3vw);
}
#testimonios .testimonials-slides.owl-carousel .single-testimonial-slide p span {
  color: #3b3b3b;
}
#testimonios .testimonials-slides.owl-carousel .testimonial-author-info {
  margin-top: 50px;
}
#testimonios .testimonials-slides.owl-carousel .testimonial-author-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
#testimonios .testimonials-slides.owl-carousel .testimonial-author-info p {
  margin-bottom: 0;
  color: #3b3b3b;
  font-size: calc(12px + 0.3vw);
}
#testimonios .testimonials-slides.owl-carousel .testimonial-author-info p span {
  color: #3b3b3b;
}
#testimonios .testimonials-slides.owl-carousel .center .single-testimonial-slide {
  transform: scale(1);
}
#testimonios .testimonials-slides.owl-carousel .center .single-testimonial-slide h5 {
  color: #000000;
}
#testimonios .testimonials-slides.owl-carousel .owl-prev,
#testimonios .testimonials-slides.owl-carousel .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  left: -19px;
  margin-top: -19px;
  transition-duration: 500ms;
  background-color: #dadada;
  font-size: 12px;
}
#testimonios .testimonials-slides.owl-carousel .owl-prev:hover, #testimonios .testimonials-slides.owl-carousel .owl-prev:active, #testimonios .testimonials-slides.owl-carousel .owl-prev:focus,
#testimonios .testimonials-slides.owl-carousel .owl-next:hover,
#testimonios .testimonials-slides.owl-carousel .owl-next:active,
#testimonios .testimonials-slides.owl-carousel .owl-next:focus {
  background-color: #3b3b3b;
}
#testimonios .testimonials-slides.owl-carousel .owl-next {
  left: auto;
  right: -19px;
}

.south-testimonials-area .south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
  border: 0;
}
.south-testimonials-area .south-btn:hover, .south-testimonials-area .south-btn:active, .south-testimonials-area .south-btn:focus {
  background: #3b3b3b;
  color: white;
  border: 0;
}

/**********************
Cómo comprar
***********************/
#comocomprar .banner-2 {
  position: relative;
  display: block;
  overflow: hidden;
}
#comocomprar .banner-2 img {
  width: 100%;
  transition: all 0.3s ease 0s;
}
#comocomprar .banner-2 .info {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding: 60px 40px 40px 30px;
}
#comocomprar .banner-2 .info .content .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 30px;
  color: #212121;
}
#comocomprar .banner-2 .info .content p {
  margin-bottom: 0;
}

/* blockquote */
blockquote {
  font-size: 1.1em;
  line-height: 1.6em;
  padding: 20px 20px 20px 40px;
  border-left: none;
  position: relative;
  text-indent: -19px;
}

.block_content {
  min-height: 400px;
  padding-top: 40px;
  text-align: left;
}

blockquote p {
  font-size: 1em;
}

blockquote:before,
blockquote:after {
  font-family: Arial, serif;
  font-size: 2.5em;
  vertical-align: middle;
  line-height: 0;
}

blockquote:before {
  content: open-quote;
  margin-right: 4px;
}

blockquote:after {
  content: close-quote;
  margin-left: 3px;
}

blockquote.blockstyle,
blockquote.style2 {
  background: #fff;
  font-style: italic;
}

blockquote.blockstyle p,
blockquote.style2 p {
  display: inline;
}

blockquote.blockstyle {
  border-left: 3px solid #edea9d;
  position: relative;
  font-size: calc(12px + 0.4vw);
}

blockquote.blockstyle > span.triangle:before {
  text-indent: 0;
  content: "\f0da";
  font-family: FontAwesome;
  color: #edea9d;
  position: absolute;
  left: -1px;
  top: 50%;
  margin-top: -11px;
  font-style: normal;
}

blockquote.blockstyle:before,
blockquote.blockstyle:after {
  color: #edea9d;
}

blockquote.blockstyle.border-color-blue {
  border-color: #01b7f2;
}

blockquote.blockstyle.border-color-blue > span.triangle:before {
  color: #01b7f2;
}

blockquote.blockstyle.border-color-yellow {
  border-color: #fdb714;
}

blockquote.blockstyle.border-color-yellow > span.triangle:before {
  color: #fdb714;
}

/**********************
ListGrid
***********************/
#listgrid {
  height: auto;
}
#listgrid .title {
  text-align: right;
  background: transparent;
  margin: 0;
  padding: 0;
}
#listgrid .title h1 {
  color: #edea9d;
  position: relative;
  font-weight: 400;
  font-size: calc(22px + 0.4vw);
  padding: 0;
}
#listgrid .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#listgrid .title p {
  color: white;
  font-weight: 900;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}
#listgrid .shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
#listgrid .shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
#listgrid .shop .shop-img {
  position: relative;
  background-color: transparent;
  z-index: 1;
}
#listgrid .shop .shop-img img {
  width: 100%;
  transition: 0.2s all;
}
#listgrid .shop:hover .shop-img > img {
  transform: scale(1.1);
}
#listgrid .shop .shop-body {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 18vh 1vw;
  z-index: 10;
}
#listgrid .shop .shop-body h3 {
  color: white;
  font-weight: 400;
  font-size: calc(12px + 0.3vw);
  margin: 0;
  margin-bottom: 40px;
}
#listgrid .shop .shop-body p {
  color: white;
  font-weight: 400;
  font-size: calc(16px + 0.3vw);
  margin: 0px 0px 7px;
}
#listgrid .shop .shop-body .cta-btn {
  color: white;
  text-transform: uppercase;
  font-size: calc(12px + 0.3vw);
  border: 1px solid #3b3b3b;
  border-radius: 1rem;
  padding: 5px 15px;
  display: inline-block;
  max-height: 35px;
  background: #3b3b3b;
}
#listgrid .shop .shop-body .cta-btn i {
  width: 0px;
  height: 0px;
}
#listgrid .shop .shop-body .cta-btn:hover i, #listgrid .shop .shop-body .cta-btn:focus i, #listgrid .shop .shop-body .cta-btn:active i {
  width: 30px;
  height: 50px;
}
#listgrid .show {
  display: block !important;
}
#listgrid .filterDiv {
  display: none;
}
#listgrid .btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #f1f1f1;
  cursor: pointer;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  background: transparent;
}
#listgrid .btn:hover {
  background-color: #3b3b3b;
}
#listgrid .btn.active {
  background-color: #3b3b3b;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
}
#listgrid #myBtnContainer {
  margin-bottom: 40px;
}
#listgrid .card-deck .card {
  background: transparent;
  border: 0;
}

/**********************
Listado inmobiliarias dos
***********************/
#listado-dos .sidebar_left {
  /* Sidebar Left */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 98px;
}
#listado-dos .sidebar_left .sidebar_section {
  width: 100%;
  border: solid 1px #eaebed;
  background: white;
  margin-bottom: 44px;
  transition: all 200ms ease;
}
#listado-dos .sidebar_left .sidebar_section:last-child {
  margin-bottom: 0;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_title {
  height: 52px;
  background: #edea9d;
  line-height: 52px;
  font-size: calc(12px + 0.3vw);
  color: white;
  padding-left: 22px;
  transition: all 200ms ease;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_title a {
  color: white;
  text-align: center;
  display: block;
  text-indent: -22px;
}
#listado-dos .sidebar_left .sidebar_section:hover {
  border: solid 1px #3b3b3b;
}
#listado-dos .sidebar_left .sidebar_section:hover .sidebar_title {
  background: #3b3b3b;
  color: white;
}
#listado-dos .sidebar_left .sidebar_section:hover .sidebar_section_content ul li {
  border-bottom: solid 1px #3b3b3b;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content {
  width: 100%;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li {
  height: 100%;
  padding: 10px 13px 13px 16px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
  text-transform: uppercase;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li:last-child {
  border-bottom: none !important;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li a {
  font-size: calc(10px + 0.3vw);
  color: #3b3b3b;
  line-height: 26px;
  width: 100%;
  display: block;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li a:hover, #listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li a:focus, #listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li a:active {
  color: #edea9d;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li a span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 15px;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li a .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content ul li .dropdown-container {
  display: none;
  background-color: #eaebed;
  padding-left: 8px;
  position: relative;
  margin-left: -16px;
  margin-right: -13px;
  margin-top: 5px;
  margin-bottom: -13px;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content .dropdown-btn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content.form button {
  background-color: #edea9d;
  color: white !important;
  display: block;
  width: 100%;
  text-align: center;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_section_content.form button:hover, #listado-dos .sidebar_left .sidebar_section .sidebar_section_content.form button:active, #listado-dos .sidebar_left .sidebar_section .sidebar_section_content.form button:focus {
  color: #3b3b3b;
}
#listado-dos .sidebar_left .sidebar_section .sidebar_color_content {
  width: 100%;
  height: 100%;
}
#listado-dos .sidebar_left .sidebar_section .bestsellers_content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 33px;
}
#listado-dos .sidebar_left .sidebar_section .bestsellers_content ul li {
  position: relative;
  height: 100px !important;
  border-bottom: solid 1px #eaebed !important;
  margin-bottom: 0px;
  padding-left: 0 !important;
  padding-right: 0;
}
#listado-dos .sidebar_left .sidebar_section .bestsellers_content ul li:last-child {
  margin-bottom: 0;
}
#listado-dos .sidebar_left .sidebar_section .best_image {
  width: 74px;
  float: left;
  height: 74px !important;
  position: relative;
  overflow: hidden;
}
#listado-dos .sidebar_left .sidebar_section .best_image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  vertical-align: middle;
}
#listado-dos .sidebar_left .sidebar_section .best_image a {
  height: 74px !important;
  text-align: center;
}
#listado-dos .sidebar_left .sidebar_section .best_content {
  padding-left: 83px;
  padding-top: 0px;
}
#listado-dos .sidebar_left .sidebar_section .best_content .best_title a {
  font-size: calc(10px + 0.3vw);
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.5 !important;
  transition: all 200ms ease;
}
#listado-dos .sidebar_left .sidebar_section .best_content .best_title a:hover {
  color: #edea9d;
}
#listado-dos .sidebar_left .sidebar_section .best_content .best_price {
  font-size: calc(20px + 0.3vw);
  font-weight: 600;
  color: #edea9d;
  margin-top: 0px;
}
#listado-dos .sidebar_left .sidebar_section .best_buy {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 23px;
  height: 23px;
  background: #edea9d;
  border: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 21px;
  cursor: pointer;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option.tarjetas {
  height: auto;
  width: 100%;
  padding-left: 0px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option.tarjetas:last-child {
  border: none !important;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option.tarjetas img {
  width: 100%;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option {
  height: 119px;
  width: 100%;
  padding-left: 15px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option:last-child {
  border: none !important;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option .option_image {
  width: 40px;
  height: 54px;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option .option_image img {
  max-width: 100%;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option .option_content {
  margin-left: 19px;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option .option_content .option_title {
  font-size: calc(12px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
}
#listado-dos .sidebar_left .sidebar_options .sidebar_option .option_content .option_subtitle {
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
}
#listado-dos .sidebar_left .sidebar_options:hover .sidebar_option {
  border-bottom: solid 1px #3b3b3b;
}
#listado-dos .vertical {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
#listado-dos .vertical .single-featured-property .property-thumb,
#listado-dos .vertical .single-featured-property .property-content {
  width: 100%;
}
#listado-dos .horizontal {
  flex: 0 0 100%;
  max-width: 100%;
}
#listado-dos .horizontal .single-featured-property .property-thumb,
#listado-dos .horizontal .single-featured-property .property-content {
  width: 50%;
  float: left;
}

/**********************
Ofertas Index
***********************/
#institucional {
  background-color: white;
}
#institucional .title {
  background: transparent;
  text-align: center;
  margin: 0;
  padding: 0;
}
#institucional .title h1 {
  color: #edea9d;
  font-weight: 600;
  padding: 0;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 20px;
}
#institucional .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
  position: relative;
  margin-bottom: 40px;
}
#institucional .title h3:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 46%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#institucional .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#institucional .shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
#institucional .shop .shop-img {
  position: relative;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
}
#institucional .shop .shop-img img {
  width: 100%;
  transition: 0.2s all;
}
#institucional .shop:hover .shop-img > img {
  transform: scale(1.1);
}
#institucional .shop .shop-body {
  position: relative;
  padding: 30px 0px;
}
#institucional .shop .shop-body h3 {
  color: #edea9d;
  font-weight: 900;
  font-size: calc(20px + 0.3vw);
  margin: 0;
}
#institucional .shop .shop-body p {
  color: #3b3b3b;
  font-weight: 400;
  margin: 0px 0px 7px;
}
#institucional .shop .shop-body .cta-btn {
  color: white;
  text-transform: uppercase;
  font-size: calc(12px + 0.3vw);
  border: 1px solid white;
  border-radius: 1rem;
  padding: 5px 15px;
  display: inline-block;
  max-height: 35px;
}
#institucional .shop .shop-body .cta-btn i {
  width: 0px;
  height: 0px;
}
#institucional .shop .shop-body .cta-btn:hover i, #institucional .shop .shop-body .cta-btn:focus i, #institucional .shop .shop-body .cta-btn:active i {
  width: 30px;
  height: 50px;
}

@media only screen and (max-width: 767px) {
  .single-featured-property .property-content .property-meta-data img {
    margin-right: 0;
  }
}
/* Comienzan estilos del sitio */
/* @import 'css/bootstrap.min.css';
@import 'css/animate.css';
@import 'css/owl.carousel.css';
@import 'css/classy-nav.min.css';
@import 'css/magnific-popup.css';
@import 'css/font-awesome.min.css';
@import 'css/themify-icons.css';
@import 'css/nice-select.css';
@import 'css/jquery-ui.min.css'; */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #323232;
  font-weight: 900;
}

p {
  color: #7d7d7d;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
}

a {
  transition-duration: 500ms;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
}
a:hover, a:focus {
  transition-duration: 500ms;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
}

ul,
ol {
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}

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

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-100 {
  margin-bottom: 100px;
}

.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-transparent {
  background-color: transparent;
}

.bg-transparent-dark {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-transparent-light {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

.height-500 {
  height: 500px !important;
}

.height-600 {
  height: 600px !important;
}

.height-700 {
  height: 700px !important;
}

.height-800 {
  height: 800px !important;
}

.section-padding-100 {
  padding: 100px 0;
}

.section-padding-50 {
  padding: 50px 0;
}

.section-padding-50-0 {
  padding: 50px 0 0 0;
}

.section-padding-100-70 {
  padding: 100px 0 70px;
}

.section-padding-100-50 {
  padding: 100px 0 50px;
}

.section-padding-100-0 {
  padding: 100px 0 0;
}

.section-padding-0-100 {
  padding: 0 0 100px;
}

.section-padding-100-20 {
  padding: 100px 0 20px 0;
}

.bg-fixed {
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.bg-overlay {
  position: relative;
  z-index: 1;
}
.bg-overlay::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5b4931;
  opacity: 0.7;
  content: "";
}

.bg-overlay-black {
  position: relative;
  z-index: 1;
}
.bg-overlay-black::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  content: "";
}

.bg-overlay-white {
  position: relative;
  z-index: -1;
}
.bg-overlay-white::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 241, 255, 0.5);
  content: "";
}

.gradient-background-overlay:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 90%, rgba(0, 0, 0, 0) 100%);
}

.bg-gray {
  background-color: #f5f7f9;
}

.row-reverse {
  flex-direction: row-reverse;
}

.align-items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}

.gradient-background-overlay {
  position: relative;
  z-index: 3;
}

/* :: 4.0 Preloader Area CSS */
#preloader {
  overflow: hidden;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
  background-color: #ffffff;
}

.south-load {
  animation: 1500ms linear 0s normal none infinite running south-load;
  background: transparent;
  border-color: #ffffff;
  border-top-color: #5b4931;
  border-left-color: #5b4931;
  border-right-color: #5b4931;
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  height: 50px;
  left: calc(50% - 25px);
  position: relative;
  top: calc(50% - 25px);
  width: 50px;
  z-index: 9;
}
@keyframes south-load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* :: 5.0 Scroll Up Area CSS */
#scrollUp {
  background-color: #5b4931;
  border-radius: 50%;
  bottom: 40px;
  left: 40px;
  box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  height: 50px;
  text-align: center;
  width: 50px;
  line-height: 46px;
  transition-duration: 500ms;
}
#scrollUp:hover {
  background-color: #000000;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  #scrollUp {
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    line-height: 46px;
  }
}
@media only screen and (max-width:767px) {
  #scrollUp {
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    line-height: 46px;
  }
}

/* :: 6.0 Section Heading Area CSS */
.section-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.section-heading img {
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .section-heading h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width:767px) {
  .section-heading h2 {
    font-size: 24px;
  }
}
.section-heading p {
  color: #3b3b3b;
  font-size: 14px;
  margin-bottom: 0;
}

/* :: 7.0 South Button CSS */
.south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}
.south-btn.active, .south-btn:hover, .south-btn:focus {
  color: #ffffff;
  background-color: #000000;
}
.south-btn.btn-2 {
  border: 2px solid #5b4931;
  background-color: transparent;
  color: #5b4931;
  line-height: 46px;
}
.south-btn.btn-2:hover, .south-btn.btn-2:focus {
  color: #ffffff;
  background-color: #5b4931;
}
.south-btn.btn-3 {
  border: 2px solid #000000;
  background-color: transparent;
  color: #000000;
  line-height: 46px;
}
.south-btn.btn-3:hover, .south-btn.btn-3:focus {
  color: #ffffff;
  background-color: #000000;
}

/* :: 8.0 Header Area CSS */
.dark .classynav ul li .dropdown,
.dark.classy-nav-container,
.dark .classynav ul li .megamenu,
.dark.breakpoint-on .classynav > ul > li > a,
.dark.breakpoint-on .classy-navbar .classy-menu {
  background-color: #5b4931;
}

.classynav ul li ul li a {
  padding: 2px 20px !important;
}

.header-area {
  position: absolute;
  z-index: 10000;
  width: 100%;
  height: auto;
  transition-duration: 500ms;
}

.top-header-area {
  position: relative;
  z-index: 1;
  height: 45px;
  background-color: #3b3b3b;
}
@media only screen and (max-width:767px) {
  .top-header-area {
    height: auto;
  }
}
.top-header-area .redes {
  padding-left: 60px;
  line-height: 1;
}
@media only screen and (max-width:767px) {
  .top-header-area .redes {
    padding: 15px 30px;
  }
}
.top-header-area .redes ul li {
  display: inline-block;
}
.top-header-area .redes ul li a {
  background-color: #edea9d;
  color: #3b3b3b;
  font-size: calc(12px + 0.4vw);
  border-radius: 100px;
  height: 25px;
  width: 26px;
  text-align: center;
  display: block;
  padding: 4px;
}
.top-header-area .redes ul li a:hover, .top-header-area .redes ul li a:active, .top-header-area .redes ul li a:focus {
  background-color: white;
  color: #3b3b3b;
}
.top-header-area .email-address {
  padding-left: 60px;
  line-height: 1;
}
@media only screen and (max-width:767px) {
  .top-header-area .email-address {
    padding: 15px 30px;
  }
}
.top-header-area .email-address a {
  color: #808080;
  font-size: 12px;
  position: relative;
  z-index: 1;
  top: -2px;
}
.top-header-area .email-address a:hover, .top-header-area .email-address a:focus {
  color: #ffffff;
}
.top-header-area .phone-number {
  line-height: 1;
  background-color: #edea9d;
  height: 45px;
  margin-bottom: 0;
}
.top-header-area .phone-number .icon {
  background-color: #ffffff;
  width: 45px;
  height: 45px;
  text-align: center;
  padding: 14px;
}
.top-header-area .phone-number .icon i {
  color: #3b3b3b;
}
.top-header-area .phone-number .number a {
  padding: 0 60px;
  color: #5b4931;
  line-height: 45px;
  font-size: 12px;
}

.main-header-area {
  width: 100%;
  height: 90px;
  position: relative;
  z-index: 1;
  background-color: rgba(91, 73, 49, 0.8);
  transition-duration: 500ms;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .main-header-area {
    height: 70px;
  }
}
@media only screen and (max-width:767px) {
  .main-header-area {
    height: 70px;
  }
}
.main-header-area .classynav ul li.megamenu-item > a:after, .main-header-area .classynav ul li.has-down > a:after {
  color: white !important;
}
.main-header-area .classy-nav-container {
  background-color: transparent;
}
.main-header-area .classy-navbar {
  height: 90px;
  padding: 0.5em 10px;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .main-header-area .classy-navbar {
    height: 70px;
  }
}
@media only screen and (max-width:767px) {
  .main-header-area .classy-navbar {
    height: 70px;
    padding: 0.5em 30px;
  }
}
.main-header-area .classynav ul li a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  height: auto !important;
  line-height: 2 !important;
}
.main-header-area .nav-brand {
  line-height: 1;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .main-header-area .nav-brand {
    margin-right: 0;
  }
}
.main-header-area .classynav ul {
  transition-duration: 500ms;
}
.main-header-area .searchbtn {
  margin-left: 10px;
  height: 90px;
  line-height: 90px;
  background-color: transparent;
  width: 60px;
  text-align: center;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .main-header-area .searchbtn {
    margin-left: 15px;
    width: 50px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .main-header-area .searchbtn {
    margin-left: 0;
    height: 50px;
    width: 100%;
    margin-top: 15px;
    line-height: 50px;
    background-color: #5b4931;
  }
}
@media only screen and (max-width:767px) {
  .main-header-area .searchbtn {
    margin-left: 0;
    height: 50px;
    width: 100%;
    margin-top: 15px;
    line-height: 50px;
    background-color: #5b4931;
  }
}
.main-header-area .searchbtn:hover {
  background-color: #5b4931;
}
.main-header-area .heartbutton {
  margin-left: 10px;
  height: 90px;
  line-height: 90px;
  background-color: transparent;
  width: 60px;
  text-align: center;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .main-header-area .heartbutton {
    margin-left: 15px;
    width: 50px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .main-header-area .heartbutton {
    margin-left: 0;
    height: 50px;
    width: 100%;
    margin-top: 15px;
    line-height: 50px;
    background-color: #5b4931;
  }
}
@media only screen and (max-width:767px) {
  .main-header-area .heartbutton {
    margin-left: 0;
    height: 50px;
    width: 100%;
    margin-top: 15px;
    line-height: 50px;
    background-color: #5b4931;
  }
}
.main-header-area .heartbutton:hover {
  background-color: #5b4931;
}
.main-header-area .south-search-form {
  position: relative;
  z-index: 1;
  display: none;
  transition-duration: 500ms;
}
.main-header-area .south-search-form input {
  width: 650px;
  height: 50px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 100px;
  padding: 0 30px;
  font-size: 14px;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .main-header-area .south-search-form input {
    width: 550px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .main-header-area .south-search-form input {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (max-width:767px) {
  .main-header-area .south-search-form input {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}
.main-header-area .south-search-form button {
  position: absolute;
  top: 0;
  right: 15px;
  height: 50px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  width: 50px;
  outline: none;
  transition-duration: 500ms;
}
.main-header-area .south-search-form button:hover {
  color: #ffffff;
}

.search-close .searchbtn {
  background-color: #5b4931;
}
.search-close .classynav ul {
  display: none;
}
.search-close .south-search-form {
  display: block;
}

.is-sticky .main-header-area {
  width: 100%;
  z-index: 10000 !important;
  height: 90px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(91, 73, 49, 0.8);
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .is-sticky .main-header-area {
    height: 70px;
  }
}
@media only screen and (max-width:767px) {
  .is-sticky .main-header-area {
    height: 70px;
  }
}

/* :: 9.0 Welcome Area CSS */
.single-hero-slide {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 800px;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .single-hero-slide {
    height: 700px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .single-hero-slide {
    height: 650px;
  }
}
@media only screen and (max-width:767px) {
  .single-hero-slide {
    height: 550px;
  }
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #edea9d !important;
  color: #5b4931 !important;
  text-decoration: none;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF !important;
  font-size: 26px !important;
  margin: 5px;
  padding: 1px 7px !important;
  background: #5b4931 !important;
  display: inline-block;
  cursor: pointer;
  border-radius: 0px !important;
}

.hero-slides-content {
  text-align: center;
  padding-top: 30%;
}
.hero-slides-content h2 {
  color: #ffffff;
  font-size: calc(40px + 0.4vw);
  margin-bottom: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .hero-slides-content h2 {
    font-size: calc(24px + 0.4vw);
  }
}
@media only screen and (max-width:767px) {
  .hero-slides-content h2 {
    font-size: calc(22px + 0.4vw);
  }
}
@media only screen and (min-width:480px) and (max-width:767px) {
  .hero-slides-content h2 {
    font-size: calc(22px + 0.4vw);
  }
}
.hero-slides-content h3 {
  color: #ffffff;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .hero-slides-content h3 {
    font-size: calc(20px + 0.4vw);
  }
}
@media only screen and (max-width:767px) {
  .hero-slides-content h3 {
    font-size: calc(18px + 0.4vw);
  }
}
@media only screen and (min-width:480px) and (max-width:767px) {
  .hero-slides-content h3 {
    font-size: calc(18px + 0.4vw);
  }
}
.hero-slides-content h4 {
  color: #ffffff;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  font-weight: 300;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .hero-slides-content h4 {
    font-size: calc(18px + 0.4vw);
  }
}
@media only screen and (max-width:767px) {
  .hero-slides-content h4 {
    font-size: calc(16px + 0.4vw);
  }
}
@media only screen and (min-width:480px) and (max-width:767px) {
  .hero-slides-content h4 {
    font-size: calc(16px + 0.4vw);
  }
}

.hero-area {
  position: relative;
}
.hero-area .hero-flotting {
  position: absolute;
  z-index: 999;
  right: 45px;
  bottom: 85px;
  width: 300px;
  height: 100px;
}
.hero-area .hero-flotting h4 {
  color: white;
  font-size: calc(14px + 0.4vw);
  text-transform: uppercase;
  text-align: right;
}
.hero-area .owl-prev,
.hero-area .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
  left: 70px;
  margin-top: -19px;
  opacity: 0;
  transition-duration: 500ms;
  background-color: #5b4931;
  font-size: 16px;
}
@media only screen and (max-width:767px) {
  .hero-area .owl-prev,
  .hero-area .owl-next {
    left: 30px;
  }
}
.hero-area .owl-prev:hover,
.hero-area .owl-next:hover {
  background-color: #000000;
}
.hero-area .owl-next {
  left: auto;
  right: 70px;
}
@media only screen and (max-width:767px) {
  .hero-area .owl-next {
    left: auto;
    right: 30px;
  }
}
.hero-area:hover .owl-prev, .hero-area:hover .owl-next {
  opacity: 1;
}
.hero-area .owl-dots {
  width: 1110px !important;
  position: absolute !important;
  bottom: 15px !important;
  display: block !important;
  border-radius: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .hero-area .owl-dots {
    width: 94%;
    left: 5%;
    transform: translateX(0%);
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .hero-area .owl-dots {
    width: 94%;
    left: 5%;
    transform: translateX(0%);
  }
}
@media only screen and (max-width:767px) {
  .hero-area .owl-dots {
    width: calc(100% - 30px);
    left: 20px;
    transform: translateX(0%);
  }
}
.hero-area .owl-dot {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  background-color: #5b4931 !important;
  font-size: 12px !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-bottom: 5px !important;
  border-radius: 0 !important;
}
.hero-area .owl-dot.active {
  background-color: #3b3b3b !important;
}

/* :: 10.0 Advanced Search Area */
.form-control {
  background-color: transparent;
  width: 100%;
  height: 38px;
  border-radius: 0;
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 500;
  padding: 0 15px;
  border: 1px solid #e1dddd;
}
.form-control:hover, .form-control:focus {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #e1dddd;
}

.nice-select {
  line-height: 34px;
}
.nice-select .list {
  left: 0 !important;
  right: 0 !important;
  border-radius: 0;
}

.south-search-area {
  position: relative;
  z-index: 1;
}
.south-search-area .advanced-search-form {
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  border: 1px solid #e1dddd;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  overflow: visible;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form {
    padding: 30px 20px;
  }
}
.south-search-area .advanced-search-form .search-title {
  position: absolute;
  width: 260px;
  height: 45px;
  background-color: #5b4931;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form .search-title {
    width: 210px;
    padding: 0 15px;
  }
}
.south-search-area .advanced-search-form .search-title p {
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 45px;
  font-weight: 600;
}
.south-search-area .advanced-search-form .slider-range {
  flex: 0 0 50%;
  min-width: 50%;
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form .slider-range {
    margin-bottom: 50px;
  }
}
.south-search-area .advanced-search-form .slider-range:first-child {
  padding-right: 15px;
}
.south-search-area .advanced-search-form .slider-range:last-child {
  padding-left: 15px;
}
.south-search-area .advanced-search-form .ui-widget.ui-widget-content {
  border: none;
  height: 4px;
}
.south-search-area .advanced-search-form .ui-widget-content {
  background: #5b4931;
}
.south-search-area .advanced-search-form .ui-slider-horizontal {
  height: 4px;
  background: #5b4931;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-bottom,
.south-search-area .advanced-search-form .ui-corner-right,
.south-search-area .advanced-search-form .ui-corner-br {
  border-bottom-right-radius: 0;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-bottom,
.south-search-area .advanced-search-form .ui-corner-left,
.south-search-area .advanced-search-form .ui-corner-bl {
  border-bottom-left-radius: 0;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-top,
.south-search-area .advanced-search-form .ui-corner-right,
.south-search-area .advanced-search-form .ui-corner-tr {
  border-top-right-radius: 0;
}
.south-search-area .advanced-search-form .ui-corner-all,
.south-search-area .advanced-search-form .ui-corner-top,
.south-search-area .advanced-search-form .ui-corner-left,
.south-search-area .advanced-search-form .ui-corner-tl {
  border-top-left-radius: 0;
}
.south-search-area .advanced-search-form .ui-state-default,
.south-search-area .advanced-search-form .ui-widget-content .ui-state-default,
.south-search-area .advanced-search-form .ui-widget-header .ui-state-default,
.south-search-area .advanced-search-form .ui-button,
.south-search-area .advanced-search-form html .ui-button.ui-state-disabled:hover,
.south-search-area .advanced-search-form html .ui-button.ui-state-disabled:active {
  border: none;
  background: #5b4931;
  margin-top: -3px;
}
.south-search-area .advanced-search-form .range {
  font-size: 12px;
  margin-top: 15px;
  font-weight: 600;
}
@media only screen and (max-width:767px) {
  .south-search-area .advanced-search-form .range {
    font-size: 10px;
  }
}
.south-search-area .advanced-search-form .more-filter a {
  text-transform: uppercase;
  font-size: 12px;
  color: #323232;
}
.south-search-area .advanced-search-form .more-filter a:hover {
  color: #5b4931;
}
.south-search-area .advanced-search-form .search-form-second-steps {
  display: none;
}

/* :: 11.0 Single Property Area CSS */
.single-featured-property {
  position: relative;
  z-index: 1;
  transition-duration: 500ms;
  /* overflow: hidden; */
}
.single-featured-property .property-thumb {
  position: relative;
  z-index: 1;
}
.single-featured-property .property-thumb .ribbon.red {
  background: #c1140c 0 0 no-repeat padding-box;
  color: white;
}
.single-featured-property .property-thumb .ribbon.red::before {
  border-top: 5px solid #c1140c;
  border-right: 5px solid #c1140c;
}
.single-featured-property .property-thumb .ribbon {
  position: absolute;
  top: 25px;
  left: -11px;
  width: auto;
  height: 34px;
  background: #f0eb9a 0 0 no-repeat padding-box;
  opacity: 1;
  letter-spacing: 0;
  color: #5b4931;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  border-radius: 0;
  z-index: 2;
  padding: 0 15px;
}
.single-featured-property .property-thumb .ribbon::before {
  top: 34px;
  left: 0;
  position: absolute;
  content: "";
  border-top: 5px solid #f0eb9a;
  border-right: 5px solid #f0eb9a;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
}
.single-featured-property .property-thumb .list-price p {
  background-color: #ffffff;
  padding: 10px 20px;
  color: #5b4931;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 10;
  margin-bottom: 0;
  line-height: 1;
  transition-duration: 500ms;
  display: none;
}
.single-featured-property .property-thumb .list-price span {
  font-size: 12px;
  text-decoration: line-through;
}
.single-featured-property .property-thumb .expensas {
  position: absolute;
  bottom: 5px;
  left: 20px;
  z-index: 10;
  color: #5b4931;
  font-size: 12px;
  padding: 3px 20px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.4);
  display: none;
}
.single-featured-property .property-thumb .tag span {
  height: 35px;
  padding: 0 20px;
  background-color: #5b4931;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  line-height: 35px;
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 10;
  transition-duration: 500ms;
}
.single-featured-property .property-thumb .tag.fav span {
  height: 35px;
  padding: 0 20px;
  background-color: #5b4931;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  line-height: 35px;
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  z-index: 10;
  transition-duration: 500ms;
}
.single-featured-property .property-thumb .tag.share span {
  height: 35px;
  padding: 0 20px;
  background-color: #5b4931;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  line-height: 35px;
  position: absolute;
  top: auto;
  right: 20px;
  left: auto;
  bottom: 30px;
  z-index: 10;
  transition-duration: 500ms;
}
.single-featured-property .property-content {
  padding: 30px;
  border: 1px solid #e1dddd;
  min-height: 410px;
}
.single-featured-property .property-content .precios {
  margin-bottom: 15px;
}
.single-featured-property .property-content .precios .anterior {
  font-size: 12px;
  text-decoration: line-through;
  font-weight: 400;
}
.single-featured-property .property-content .precios h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 0;
}
.single-featured-property .property-content .precios .expensas {
  font-size: 12px;
  font-weight: 400;
}
.single-featured-property .property-content p.titulos {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 0;
}
.single-featured-property .property-content p.titulos span {
  font-weight: 400;
  font-size: 14px;
}
.single-featured-property .property-content p.titulos .teveo {
  text-align: center;
  background: #5b4931;
  padding: 2px 10px;
  color: white;
  display: inline-block;
}
.single-featured-property .property-content p {
  margin-bottom: 30px;
}
.single-featured-property .property-content .location {
  color: #5b4931;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 600;
}
.single-featured-property .property-content .location img {
  margin-right: 10px;
  display: inline-block !important;
  width: auto !important;
}
.single-featured-property .property-content .property-meta-data span {
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
  color: #838383;
}
.single-featured-property .property-content .property-meta-data img {
  margin-right: 10px;
  display: inline-block !important;
  width: 30px !important;
}
@media only screen and (max-width:767px) {
  .single-featured-property .property-content .property-meta-data img {
    margin-right: 0;
  }
}
.single-featured-property .property-content .mas {
  height: 35px;
  padding: 0 20px;
  background-color: #5b4931;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  line-height: 35px;
  position: absolute;
  top: auto;
  right: 0px;
  left: auto;
  bottom: 0px;
  z-index: 10;
  transition-duration: 500ms;
}
.single-featured-property:hover, .single-featured-property:focus {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.single-featured-property:hover .tag span, .single-featured-property:focus .tag span {
  background-color: #000000;
  color: #ffffff;
}
.single-featured-property:hover .list-price p, .single-featured-property:focus .list-price p {
  background-color: #5b4931;
  color: #ffffff;
}

.featured-properties-area .vermas {
  text-align: center;
}
.featured-properties-area .vermas .south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}
.featured-properties-area .sidebar_left {
  /* Sidebar Left */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 98px;
}
.featured-properties-area .sidebar_left .sidebar_section {
  width: 100%;
  border: solid 1px #eaebed;
  background: white;
  margin-bottom: 44px;
  transition: all 200ms ease;
}
.featured-properties-area .sidebar_left .sidebar_section:last-child {
  margin-bottom: 0;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_title {
  height: 52px;
  background: #3b3b3b;
  line-height: 52px;
  font-size: calc(12px + 0.3vw);
  color: white;
  padding-left: 22px;
  transition: all 200ms ease;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_title a {
  color: white;
  text-align: center;
  display: block;
  text-indent: -22px;
}
.featured-properties-area .sidebar_left .sidebar_section:hover {
  border: solid 1px #3b3b3b;
}
.featured-properties-area .sidebar_left .sidebar_section:hover .sidebar_title {
  background: #3b3b3b;
  color: white;
}
.featured-properties-area .sidebar_left .sidebar_section:hover .sidebar_section_content ul li {
  border-bottom: solid 1px #3b3b3b;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content {
  width: 100%;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li {
  height: 100%;
  padding: 10px 13px 13px 16px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
  text-transform: uppercase;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li:last-child {
  border-bottom: none !important;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li a {
  font-size: calc(10px + 0.3vw);
  color: #3b3b3b;
  line-height: 26px;
  width: 100%;
  display: block;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li a:hover, .featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li a:focus, .featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li a:active {
  color: #edea9d;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li a span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 15px;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li a .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content ul li .dropdown-container {
  display: none;
  background-color: #eaebed;
  padding-left: 8px;
  position: relative;
  margin-left: -16px;
  margin-right: -13px;
  margin-top: 5px;
  margin-bottom: -13px;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content .dropdown-btn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content.form button {
  background-color: #3b3b3b;
  color: white !important;
  display: block;
  width: 100%;
  text-align: center;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content.form button:hover, .featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content.form button:active, .featured-properties-area .sidebar_left .sidebar_section .sidebar_section_content.form button:focus {
  color: #3b3b3b;
}
.featured-properties-area .sidebar_left .sidebar_section .sidebar_color_content {
  width: 100%;
  height: 100%;
}
.featured-properties-area .sidebar_left .sidebar_section .bestsellers_content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 33px;
}
.featured-properties-area .sidebar_left .sidebar_section .bestsellers_content ul li {
  position: relative;
  height: 100px !important;
  border-bottom: solid 1px #eaebed !important;
  margin-bottom: 0px;
  padding-left: 0 !important;
  padding-right: 0;
}
.featured-properties-area .sidebar_left .sidebar_section .bestsellers_content ul li:last-child {
  margin-bottom: 0;
}
.featured-properties-area .sidebar_left .sidebar_section .best_image {
  width: 74px;
  float: left;
  height: 74px !important;
  position: relative;
  overflow: hidden;
}
.featured-properties-area .sidebar_left .sidebar_section .best_image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  vertical-align: middle;
}
.featured-properties-area .sidebar_left .sidebar_section .best_image a {
  height: 74px !important;
  text-align: center;
}
.featured-properties-area .sidebar_left .sidebar_section .best_content {
  padding-left: 83px;
  padding-top: 0px;
}
.featured-properties-area .sidebar_left .sidebar_section .best_content .best_title a {
  font-size: calc(10px + 0.3vw);
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.5 !important;
  transition: all 200ms ease;
}
.featured-properties-area .sidebar_left .sidebar_section .best_content .best_title a:hover {
  color: #edea9d;
}
.featured-properties-area .sidebar_left .sidebar_section .best_content .best_price {
  font-size: calc(20px + 0.3vw);
  font-weight: 600;
  color: #edea9d;
  margin-top: 0px;
}
.featured-properties-area .sidebar_left .sidebar_section .best_buy {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 23px;
  height: 23px;
  background: #edea9d;
  border: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 21px;
  cursor: pointer;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option.tarjetas {
  height: auto;
  width: 100%;
  padding-left: 0px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option.tarjetas:last-child {
  border: none !important;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option.tarjetas img {
  width: 100%;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option {
  height: 119px;
  width: 100%;
  padding-left: 15px;
  border-bottom: solid 1px #eaebed;
  transition: all 200ms ease;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option:last-child {
  border: none !important;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option .option_image {
  width: 40px;
  height: 54px;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option .option_image img {
  max-width: 100%;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option .option_content {
  margin-left: 19px;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option .option_content .option_title {
  font-size: calc(12px + 0.3vw);
  font-weight: 600;
  color: #3b3b3b;
}
.featured-properties-area .sidebar_left .sidebar_options .sidebar_option .option_content .option_subtitle {
  font-size: calc(10px + 0.3vw);
  color: #9e9e9e;
}
.featured-properties-area .sidebar_left .sidebar_options:hover .sidebar_option {
  border-bottom: solid 1px #3b3b3b;
}
.featured-properties-area .vertical {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.featured-properties-area .vertical .single-featured-property .property-thumb,
.featured-properties-area .vertical .single-featured-property .property-content {
  width: 100%;
}
.featured-properties-area .horizontal {
  flex: 0 0 100%;
  max-width: 100%;
}
.featured-properties-area .horizontal .single-featured-property .property-thumb,
.featured-properties-area .horizontal .single-featured-property .property-content {
  width: 50%;
  float: left;
}

/* :: 12.0 Testimonials Area CSS */
.testimonials-slides {
  position: relative;
  z-index: 1;
}
.testimonials-slides .single-testimonial-slide {
  position: relative;
  z-index: 1;
  transform: scale(0.8);
}
.testimonials-slides .single-testimonial-slide h5 {
  margin-bottom: 60px;
  color: #7d7d7d;
}
.testimonials-slides .single-testimonial-slide .testimonial-author-info {
  margin-top: 50px;
}
.testimonials-slides .single-testimonial-slide .testimonial-author-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.testimonials-slides .single-testimonial-slide .testimonial-author-info p {
  margin-bottom: 0;
  color: #323232;
}
.testimonials-slides .single-testimonial-slide .testimonial-author-info p span {
  color: #5b4931;
}
.testimonials-slides .center .single-testimonial-slide {
  transform: scale(1);
}
.testimonials-slides .center .single-testimonial-slide h5 {
  color: #000000;
}
.testimonials-slides .owl-prev,
.testimonials-slides .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  left: -19px;
  margin-top: -19px;
  transition-duration: 500ms;
  background-color: #dadada;
  font-size: 12px;
}
.testimonials-slides .owl-prev:hover,
.testimonials-slides .owl-next:hover {
  background-color: #5b4931;
}
@media only screen and (max-width:767px) {
  .testimonials-slides .owl-prev,
  .testimonials-slides .owl-next {
    left: 0;
  }
}
.testimonials-slides .owl-next {
  left: auto;
  right: -19px;
}
@media only screen and (max-width:767px) {
  .testimonials-slides .owl-next {
    left: auto;
    right: 0;
  }
}

/* :: 13.0 Editor Area CSS */
.south-editor-area {
  background-color: #f1f6f8;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .south-editor-area {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:767px) {
  .south-editor-area {
    flex-wrap: wrap;
  }
}
.south-editor-area .editor-content-area,
.south-editor-area .editor-thumbnail {
  flex: 0 0 50%;
  min-width: 50%;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .south-editor-area .editor-content-area,
  .south-editor-area .editor-thumbnail {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .south-editor-area .editor-content-area,
  .south-editor-area .editor-thumbnail {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
.south-editor-area .editor-content-area {
  position: relative;
  z-index: 1;
  padding: 100px 5%;
}
.south-editor-area .editor-content-area .section-heading {
  text-align: left;
  margin-bottom: 40px;
}
.south-editor-area .editor-content-area .address {
  margin-top: 30px;
}
.south-editor-area .editor-content-area .address h6 {
  margin-bottom: 15px;
  font-size: 14px;
}
.south-editor-area .editor-content-area .address h6:last-of-type {
  margin-bottom: 0;
}
.south-editor-area .editor-content-area .address h6 img {
  margin-right: 10px;
}

/* :: 14.0 Call to Action CSS */
.call-to-action-area {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 650px;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .call-to-action-area {
    height: 500px;
  }
}
@media only screen and (max-width:767px) {
  .call-to-action-area {
    height: 500px;
  }
}
.call-to-action-area .cta-content h2 {
  color: #ffffff;
  font-size: calc(40px + 0.4vw);
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .call-to-action-area .cta-content h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .call-to-action-area .cta-content h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width:767px) {
  .call-to-action-area .cta-content h2 {
    font-size: 24px;
  }
}
.call-to-action-area .cta-content h6 {
  color: #fff;
  font-size: calc(28px + 0.4vw);
  font-weight: 300;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .call-to-action-area .cta-content h6 {
    font-size: 24px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .call-to-action-area .cta-content h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width:767px) {
  .call-to-action-area .cta-content h6 {
    font-size: 16px;
  }
}
.call-to-action-area .cta-content .south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
  border: 0;
}
.call-to-action-area .cta-content .south-btn:hover, .call-to-action-area .cta-content .south-btn:active, .call-to-action-area .cta-content .south-btn:focus {
  background: #3b3b3b;
  color: white;
}
.call-to-action-area .cta-content.text-center {
  border: 1px solid white;
  padding: 40px;
}
.call-to-action-area .cta-content.text-center img {
  margin-bottom: 20px;
}

/* :: 15.0 Footer Area CSS */
.footer-area {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
.footer-area .copywrite-text {
  width: 100%;
  height: 60px;
  background-color: #111113;
  padding: 0 15px;
}
.footer-area .copywrite-text p {
  margin-bottom: 0;
  font-size: 12px;
  color: #7d7d7d;
}
.footer-area .copywrite-text p a {
  font-size: 12px;
  color: #7d7d7d;
}

.footer-widget-area .widget-title {
  margin-bottom: 90px;
}
.footer-widget-area .widget-title h6 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  border-bottom: 2px solid;
  border-color: #5b4931;
  line-height: 1.8;
  display: inline-block;
}
.footer-widget-area p {
  color: #7d7d7d;
  margin-bottom: 0;
  font-weight: 400;
}
.footer-widget-area .weekly-office-hours ul li {
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid #7d7d7d;
}
.footer-widget-area .weekly-office-hours ul li span {
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 400;
}
.footer-widget-area .weekly-office-hours ul li:first-of-type {
  padding-top: 0;
}
.footer-widget-area .address {
  margin-top: 40px;
}
.footer-widget-area .address h6 {
  position: relative;
  z-index: 1;
  color: #7d7d7d;
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding-left: 40px;
  line-height: 1.8;
}
.footer-widget-area .address h6 img {
  position: absolute;
  top: 4px;
  z-index: 10;
  left: 0;
}
.footer-widget-area .useful-links-nav {
  flex-wrap: wrap;
}
.footer-widget-area .useful-links-nav li {
  flex: 0 0 50%;
  min-width: 50%;
}
.footer-widget-area .useful-links-nav li a {
  padding: 15px 0;
  display: block;
  color: #7d7d7d;
  font-weight: 400;
}
.footer-widget-area .useful-links-nav li a:first-child, .footer-widget-area .useful-links-nav li a:nth-child(2) {
  padding-top: 0;
}
.footer-widget-area .useful-links-nav li a:hover, .footer-widget-area .useful-links-nav li a:focus {
  color: #5b4931;
}
.footer-widget-area .featured-properties-slides {
  position: relative;
  z-index: 1;
}
.footer-widget-area .featured-properties-slides .owl-prev,
.footer-widget-area .featured-properties-slides .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  left: -19px;
  opacity: 0;
  visibility: hidden;
  margin-top: -19px;
  transition-duration: 500ms;
  background-color: #5b4931;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}
.footer-widget-area .featured-properties-slides .owl-prev:hover,
.footer-widget-area .featured-properties-slides .owl-next:hover {
  background-color: #000000;
}
.footer-widget-area .featured-properties-slides .owl-next {
  left: auto;
  right: -19px;
}
.footer-widget-area .featured-properties-slides:hover .owl-prev, .footer-widget-area .featured-properties-slides:hover .owl-next {
  opacity: 1;
  visibility: visible;
}

/* :: 16.0 Breadcumb Area CSS */
.breadcumb-area {
  width: 100%;
  height: 250px !important;
  min-height: auto !important;
  position: relative;
  z-index: 1;
  padding-top: 130px;
  text-align: center;
}
.breadcumb-area .breadcumb-title {
  color: #ffffff;
  font-size: calc(40px + 0.4vw);
  margin-bottom: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .breadcumb-area .breadcumb-title {
    font-size: calc(24px + 0.4vw);
  }
}
@media only screen and (max-width:767px) {
  .breadcumb-area .breadcumb-title {
    font-size: calc(22px + 0.4vw);
  }
}
@media only screen and (min-width:480px) and (max-width:767px) {
  .breadcumb-area .breadcumb-title {
    font-size: calc(22px + 0.4vw);
  }
}

/* :: 17.0 About Us Area CSS */
.about-content-wrapper {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .about-content-wrapper .about-content {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width:767px) {
  .about-content-wrapper .about-content {
    margin-bottom: 100px;
  }
}
.about-content-wrapper .about-content img {
  margin-bottom: 40px;
}
.about-content-wrapper .featured-properties-slides {
  position: relative;
  z-index: 1;
}
.about-content-wrapper .featured-properties-slides .owl-prev,
.about-content-wrapper .featured-properties-slides .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  left: -19px;
  opacity: 0;
  visibility: hidden;
  margin-top: -19px;
  transition-duration: 500ms;
  background-color: #5b4931;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}
.about-content-wrapper .featured-properties-slides .owl-prev:hover,
.about-content-wrapper .featured-properties-slides .owl-next:hover {
  background-color: #000000;
}
.about-content-wrapper .featured-properties-slides .owl-next {
  left: auto;
  right: -19px;
}
.about-content-wrapper .featured-properties-slides:hover .owl-prev, .about-content-wrapper .featured-properties-slides:hover .owl-next {
  opacity: 1;
  visibility: visible;
}

/* :: 18.0 Team Member Area CSS */
.single-team-member {
  position: relative;
  z-index: 1;
}
.single-team-member .team-member-thumb {
  margin-bottom: 40px;
}
.single-team-member .team-member-thumb img {
  width: 100%;
}
.single-team-member .team-member-info {
  text-align: center;
}
.single-team-member .team-member-info .section-heading {
  margin-bottom: 40px;
}
.single-team-member .team-member-info .address h6 {
  margin-bottom: 15px;
  font-size: 14px;
}
.single-team-member .team-member-info .address h6:last-of-type {
  margin-bottom: 0;
}
.single-team-member .team-member-info .address h6 img {
  margin-right: 10px;
}

/* :: 19.0 Listings Area CSS */
.listings-content-wrapper {
  overflow-x: hidden;
}
.listings-content-wrapper .listings-content .listings-btn-groups {
  display: flex;
  margin-bottom: 40px;
}

.listings-top-meta {
  position: relative;
  z-index: 100;
}
.listings-top-meta .nice-select {
  float: right;
  height: 34px;
  line-height: 34px;
  position: relative;
  z-index: 100;
}
.listings-top-meta .nice-select .list {
  position: absolute;
  z-index: 500;
}
.listings-top-meta .nice-select .option {
  min-height: 34px;
  line-height: 34px;
}
.listings-top-meta span {
  color: #323232;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
@media only screen and (max-width:767px) {
  .listings-top-meta span {
    font-size: 11px;
  }
}
.listings-top-meta .grid_view a {
  color: #323232;
  line-height: 1;
  font-size: 18px;
}
.listings-top-meta .grid_view a.active {
  color: #5b4931;
}
.listings-top-meta .list_view a {
  color: #323232;
  line-height: 1;
  font-size: 18px;
}
.listings-top-meta .list_view a.active {
  color: #5b4931;
}

.single-listings-sliders {
  position: relative;
  z-index: 1;
}
.single-listings-sliders .owl-prev,
.single-listings-sliders .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  left: -19px;
  opacity: 0;
  visibility: hidden;
  margin-top: -19px;
  transition-duration: 500ms;
  background-color: #5b4931;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}
.single-listings-sliders .owl-prev:hover,
.single-listings-sliders .owl-next:hover {
  background-color: #000000;
}
.single-listings-sliders .owl-next {
  left: auto;
  right: -19px;
}
.single-listings-sliders:hover .owl-prev, .single-listings-sliders:hover .owl-next {
  opacity: 1;
  visibility: visible;
}

.listings-content {
  margin-top: 70px;
}
.listings-content .precios {
  margin-bottom: 15px;
}
.listings-content .precios .anterior {
  font-size: 18px;
  text-decoration: line-through;
  font-weight: 400;
}
.listings-content .precios h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.listings-content .precios .expensas {
  font-size: 18px;
  font-weight: 400;
}
.listings-content .list-price p {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  color: #5b4931;
}
.listings-content .list-price p span {
  font-size: 18px;
  margin-right: 20px;
  font-weight: 400;
  text-decoration: line-through;
}
.listings-content h5 {
  font-size: 30px;
  margin-bottom: 10px;
}
@media only screen and (max-width:767px) {
  .listings-content h5 {
    font-size: 20px;
  }
}
.listings-content .location {
  margin-bottom: 40px;
}
.listings-content .location img {
  margin-right: 15px;
}
.listings-content p {
  margin-bottom: 40px;
}
.listings-content p .teveo {
  text-align: center;
  background: #5b4931;
  padding: 2px 10px;
  color: white;
  display: inline-block;
}
.listings-content .property-meta-data div {
  margin-right: 15px;
}
.listings-content .property-meta-data span {
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
  color: #838383;
}
.listings-content .property-meta-data img {
  margin-right: 10px;
  display: inline-block !important;
  width: 30px !important;
}
@media only screen and (max-width:767px) {
  .listings-content .property-meta-data img {
    margin-right: 0;
  }
}
.listings-content .listings-core-features {
  padding: 70px 0;
  flex-wrap: wrap;
}
.listings-content .listings-core-features li {
  flex: 0 0 33.3333333%;
  min-width: 33.3333333%;
  color: #323232;
  font-size: 15px;
  margin-bottom: 25px;
}
.listings-content .listings-core-features li span {
  display: block;
  width: 100%;
  text-indent: 41px;
}
@media only screen and (max-width:767px) {
  .listings-content .listings-core-features li {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
.listings-content .listings-core-features li i {
  width: 27px;
  height: 27px;
  background-color: #5b4931;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
  font-size: 12px;
  margin-right: 10px;
}
.listings-content .listings-btn-groups a:first-child {
  margin-bottom: 15px;
}
.listings-content .listings-btn-groups .south-btn {
  min-width: 285px;
  width: 285px;
  display: block;
}

.contact-realtor-wrapper {
  background-color: #f5f5f5;
  margin-top: 0px;
  position: relative;
  z-index: 1;
}
.contact-realtor-wrapper .realtor-info > img {
  width: 100%;
}
.contact-realtor-wrapper .realtor---info {
  padding: 40px 45px;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .contact-realtor-wrapper .realtor---info {
    padding: 40px 30px;
  }
}
@media only screen and (max-width:767px) {
  .contact-realtor-wrapper .realtor---info {
    padding: 40px 30px;
  }
}
.contact-realtor-wrapper .realtor---info h2 {
  font-size: 24px;
  text-transform: uppercase;
}
.contact-realtor-wrapper .realtor---info p {
  font-style: italic;
  color: #5b4931;
}
.contact-realtor-wrapper .realtor---info h6 {
  font-size: 14px;
}
.contact-realtor-wrapper .realtor---info h6 img {
  margin-right: 15px;
}
.contact-realtor-wrapper .realtor--contact-form {
  padding: 0 45px 40px;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .contact-realtor-wrapper .realtor--contact-form {
    padding: 0 30px 40px;
  }
}
@media only screen and (max-width:767px) {
  .contact-realtor-wrapper .realtor--contact-form {
    padding: 0 30px 40px;
  }
}
.contact-realtor-wrapper .realtor--contact-form .form-group {
  margin-bottom: 15px;
}
.contact-realtor-wrapper .realtor--contact-form .form-control {
  border: 1px solid #e1dddd;
  height: 45px;
  background-color: #ffffff;
  border-radius: 0;
  font-style: italic;
  font-size: 12px;
  margin-bottom: 15px;
}
.contact-realtor-wrapper .realtor--contact-form textarea.form-control {
  height: 100px;
  padding: 15px;
}

.listings-maps {
  position: relative;
  z-index: 1;
}
.listings-maps #googleMap {
  width: 100%;
  margin-bottom: 80px;
}

#carouselficha {
  position: relative;
}
#carouselficha .ribbon.red {
  background: #c1140c 0 0 no-repeat padding-box;
  color: white;
}
#carouselficha .ribbon.red::before {
  border-top: 5px solid #c1140c;
  border-right: 5px solid #c1140c;
}
#carouselficha .ribbon {
  position: absolute;
  top: 25px;
  left: -11px;
  width: auto;
  height: 34px;
  background: #f0eb9a 0 0 no-repeat padding-box;
  opacity: 1;
  letter-spacing: 0;
  color: #5b4931;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  border-radius: 0;
  z-index: 2;
  padding: 0 15px;
}
#carouselficha .ribbon::before {
  top: 34px;
  left: 0;
  position: absolute;
  content: "";
  border-top: 5px solid #f0eb9a;
  border-right: 5px solid #f0eb9a;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
}

/* :: 20.0 Blog Area CSS */
.single-blog-area {
  position: relative;
  z-index: 1;
}
.single-blog-area .blog-post-thumbnail {
  position: relative;
  z-index: 1;
}
.single-blog-area .post-content {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.single-blog-area .post-content .post-date a {
  font-size: 14px;
  color: #5b4931;
  margin-bottom: 10px;
  display: block;
}
.single-blog-area .post-content .headline {
  font-size: 30px;
  color: #323232;
  display: block;
}
.single-blog-area .post-content .post-meta {
  position: relative;
  margin-bottom: 30px;
}
.single-blog-area .post-content .post-meta p {
  color: #aaa8a8;
  font-size: 12px;
}
.single-blog-area .post-content .post-meta p a {
  font-size: 12px;
  color: #aaa8a8;
  display: inline-block;
}
.single-blog-area .post-content p {
  margin-bottom: 50px;
}

.search-widget-area form {
  position: relative;
  z-index: 1;
}
.search-widget-area input[type=search] {
  width: 100%;
  height: 43px;
  border: 1px solid #e1dddd;
  font-size: 12px;
  font-style: italic;
  padding: 0 30px;
}
.search-widget-area button[type=submit] {
  width: 50px;
  height: 43px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: #7e7e7e;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.south-catagories-card h5 {
  margin-bottom: 30px;
  font-size: 16px;
}
.south-catagories-card ul li a {
  display: block;
  padding: 8px 0;
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 400;
}
.south-catagories-card ul li a:hover, .south-catagories-card ul li a:focus {
  color: #5b4931;
}

.south-blog-area {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.blog-sidebar-area .featured-properties-slides {
  position: relative;
  z-index: 1;
}
.blog-sidebar-area .featured-properties-slides .owl-prev,
.blog-sidebar-area .featured-properties-slides .owl-next {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  left: -19px;
  opacity: 0;
  visibility: hidden;
  margin-top: -19px;
  transition-duration: 500ms;
  background-color: #5b4931;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}
.blog-sidebar-area .featured-properties-slides .owl-prev:hover,
.blog-sidebar-area .featured-properties-slides .owl-next:hover {
  background-color: #000000;
}
.blog-sidebar-area .featured-properties-slides .owl-next {
  left: auto;
  right: -19px;
}
.blog-sidebar-area .featured-properties-slides:hover .owl-prev, .blog-sidebar-area .featured-properties-slides:hover .owl-next {
  opacity: 1;
  visibility: visible;
}

.pagination .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #323232;
}
.pagination .page-link {
  padding: 0;
  margin-left: 3px;
  line-height: 20px;
  color: #323232;
  border: none;
  width: 20px;
  height: 20px;
  background-color: #5b4931;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
}
.pagination .page-link.active {
  background-color: #000000;
}
.pagination .page-link:focus, .pagination .page-link:hover {
  color: #ffffff;
  background-color: #000000;
}

.comments-area h5 {
  margin-bottom: 50px;
}

.single_comment_area {
  margin-bottom: 50px;
}
.single_comment_area .comment-wrapper .comment-author {
  flex: 0 0 60px;
  min-width: 60px;
  border-radius: 50%;
  margin-right: 30px;
}
.single_comment_area .comment-wrapper .comment-author img {
  border-radius: 50%;
}
@media only screen and (max-width:767px) {
  .single_comment_area .comment-wrapper .comment-author {
    margin-right: 10px;
  }
}
.single_comment_area .comment-wrapper .comment-content .comment-meta a {
  display: inline-block;
  color: #323232;
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.single_comment_area .comment-wrapper .comment-content .comment-meta a:hover {
  color: #5b4931;
}
.single_comment_area .comment-wrapper .comment-content p {
  font-size: 13px;
  margin-bottom: 0;
}
.single_comment_area .children {
  margin-top: 50px;
  padding-left: 90px;
}
@media only screen and (max-width:767px) {
  .single_comment_area .children {
    padding-left: 30px;
  }
}

.leave-comment-area .comment-form h5,
.leave-comment-area .contact-form h5,
.south-contact-area .comment-form h5,
.south-contact-area .contact-form h5 {
  margin-bottom: 50px;
}
.leave-comment-area .comment-form .form-group,
.leave-comment-area .contact-form .form-group,
.south-contact-area .comment-form .form-group,
.south-contact-area .contact-form .form-group {
  margin-bottom: 10px;
}
.leave-comment-area .comment-form .form-control,
.leave-comment-area .contact-form .form-control,
.south-contact-area .comment-form .form-control,
.south-contact-area .contact-form .form-control {
  width: 100%;
  height: 43px;
  background-color: transparent;
  padding: 15px;
  border: 1px solid #e1dddd;
  font-size: 12px;
  margin-bottom: 0 !important;
}
.leave-comment-area .comment-form textarea.form-control,
.leave-comment-area .contact-form textarea.form-control,
.south-contact-area .comment-form textarea.form-control,
.south-contact-area .contact-form textarea.form-control {
  height: 200px !important;
}
.leave-comment-area .comment-form button[type=submit],
.leave-comment-area .contact-form button[type=submit],
.south-contact-area .comment-form button[type=submit],
.south-contact-area .contact-form button[type=submit] {
  margin-top: 40px;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .leave-comment-area .comment-form,
  .leave-comment-area .contact-form,
  .south-contact-area .comment-form,
  .south-contact-area .contact-form {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width:767px) {
  .leave-comment-area .comment-form,
  .leave-comment-area .contact-form,
  .south-contact-area .comment-form,
  .south-contact-area .contact-form {
    margin-bottom: 100px;
  }
}

/* :: 21.0 Contact Area CSS */
.contact-heading {
  margin-bottom: 90px;
}
.contact-heading h6 {
  border-bottom: 2px solid #5b4931;
  display: inline-block;
  padding: 5px 0;
  text-transform: uppercase;
}

.content-sidebar .weekly-office-hours ul li {
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid #f8f7f7;
}
.content-sidebar .weekly-office-hours ul li span {
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 400;
}
.content-sidebar .weekly-office-hours ul li:first-of-type {
  padding-top: 0;
}
.content-sidebar .address {
  margin-top: 40px;
}
.content-sidebar .address h6 {
  position: relative;
  z-index: 1;
  color: #7d7d7d;
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  padding-left: 0px;
  line-height: 1.8;
}
.content-sidebar .address h6 img {
  position: absolute;
  top: 4px;
  z-index: 10;
  left: 0;
}

.googleMap {
  width: 100%;
  height: 540px;
}

/* :: 22.0 Shortcode Area CSS */
.elements-title h2 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 100px;
}

/* Accordians */
.single-accordion.panel {
  background-color: #ffffff;
  border: 0 solid transparent;
  border-radius: 4px;
  box-shadow: 0 0 0 transparent;
  margin-bottom: 15px;
}
.single-accordion:last-of-type {
  margin-bottom: 0;
}
.single-accordion h6 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.single-accordion h6 a {
  background-color: #5b4931;
  border-radius: 0;
  color: #ffffff;
  display: block;
  margin: 0;
  padding: 15px 60px 15px 15px;
  position: relative;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  border: 2px solid transparent;
}
.single-accordion h6 a span {
  font-size: 10px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 18px;
}
.single-accordion h6 a span.accor-open {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.single-accordion h6 a.collapsed {
  border: 2px solid #5b4931;
  background-color: transparent;
  color: #000000;
}
.single-accordion h6 a.collapsed span.accor-close {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.single-accordion h6 a.collapsed span.accor-open {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.single-accordion .accordion-content {
  border-top: 0 solid transparent;
  box-shadow: none;
}
.single-accordion .accordion-content p {
  padding: 20px 15px 5px;
  margin-bottom: 0;
}

/* Tabs CSS*/
.south-tabs-content {
  position: relative;
  z-index: 1;
}
.south-tabs-content .nav-tabs {
  border-bottom: none;
  margin-bottom: 50px;
}
.south-tabs-content .nav-tabs .nav-link {
  border: 2px solid #5b4931;
  padding: 0 30px;
  height: 45px;
  line-height: 41px;
  color: #000000;
  margin: 0 2px;
  border-radius: 0;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .south-tabs-content .nav-tabs .nav-link {
    padding: 0 10px;
  }
}
.south-tabs-content .nav-tabs .nav-link.active {
  background-color: #5b4931;
  color: #ffffff;
}
.south-tabs-content .tab-content h6 {
  font-size: 18px;
}

/* Loaders CSS */
.single-pie-bar {
  position: relative;
  z-index: 1;
}
.single-pie-bar h5 {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Cool Facts CSS */
.single-cool-fact-area h2 {
  font-size: 60px;
  margin: 15px 0;
  color: #5b4931;
}
.single-cool-fact-area h6 {
  margin-bottom: 0;
  color: #7d7d7d;
}

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

.south-search-area.barrios .advanced-search-form {
  top: 0 !important;
}

/* Comienza pasador de emprendimientos */
.ftco-properties .owl-carousel .owl-stage-outer {
  padding-bottom: 2em;
  position: relative;
}

.properties {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .properties {
    margin-bottom: 30px;
  }
}
.properties .img {
  display: block;
  height: 250px;
}

.properties .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  opacity: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.properties .icon span {
  color: #000000;
}

.properties:hover .icon {
  opacity: 1;
}

.properties .text {
  border: 1px solid #e6e6e6;
  border-top: 1px solid transparent;
  background: #fff;
  position: relative;
}

.properties .text span.status {
  position: absolute;
  top: -30px;
  left: -1px;
  padding: 2px 15px;
  color: #fff;
}

.properties .text span.status.sale {
  background: #26baee;
}

.properties .text span.status.rent {
  background: #ff8f56;
}

.properties .text h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.properties .text h3 a {
  color: #26baee;
}

.properties .text span.listing {
  font-size: 14px;
}

.properties .text .one {
  width: calc(100% - 80px);
}

.properties .text .two {
  width: 80px;
  padding-left: 20px;
}

.properties .text .two .price {
  font-weight: 400;
  font-size: 16px;
  color: #f05d23;
}

.properties .text .two .price small {
  display: block;
  color: #b3b3b3;
}

.properties .text .two .per-price {
  font-size: 20px;
  line-height: 1.4;
}

.properties .text .two .per-price small {
  font-size: 12px;
}

.properties .text .days span {
  font-size: 13px;
  color: black;
}

.properties .text .bottom-area {
  margin-bottom: 0;
}

.properties .text .bottom-area span {
  font-size: 14px;
}

@media (min-width: 768px) {
  .properties .text .bottom-area span:last-child {
    margin-left: 5px;
  }
}
.properties .text .bottom-area span:last-child a {
  background: #252a2b;
  color: #fff;
  border-radius: 4px;
  padding: 3px 5px;
}

.properties .text .bottom-area span:last-child a:hover {
  background: #252a2b;
  color: #fff;
}

.properties-img {
  height: 400px;
  margin-bottom: 2em;
}

.properties-single h2 {
  font-size: 28px;
}

.properties-single .loc {
  margin-right: 10px;
}

.properties-single .loc a {
  color: #999999;
}

.properties-single ul {
  margin: 0;
  padding: 0;
}

.properties-single ul li {
  list-style: none;
  margin-bottom: 10px;
}

/* latin */
@font-face {
  font-family: "Open Sans", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans"), local("OpenSans-Regular"), url(../fonts/tipografia/OpenSans/OpenSans-Regular.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.custom-btn1 {
  background-color: #edea9d;
  color: white;
  border: 1px solid #edea9d;
  display: inline-block;
  padding: 12px 60px;
  text-transform: uppercase;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
}
.custom-btn1:hover, .custom-btn1:active, .custom-btn1:focus {
  background-color: black;
  border: 1px solid black;
  text-decoration: none;
  color: white;
}

.custom-btn2 {
  background-color: white;
  color: #edea9d;
  border: 1px solid white;
  display: inline-block;
  padding: 12px 60px;
  text-transform: uppercase;
  border-radius: 0px;
  text-decoration: none;
}
.custom-btn2:hover, .custom-btn2:active, .custom-btn2:focus {
  background-color: #edea9d;
  border: 1px solid #edea9d;
  text-decoration: none;
  color: white;
}

.custom-btn3 {
  color: white;
  background: transparent;
  border: 1px solid white;
  text-transform: uppercase;
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
  display: block;
  width: 100%;
  border-radius: 0;
  margin-bottom: 10px;
  outline: 0 !important;
  box-shadow: none !important;
  transition: 0.2s all;
}
.custom-btn3:hover, .custom-btn3:active, .custom-btn3:focus {
  color: #edea9d;
  background: white;
  border: 1px solid white;
}

.custom-btn4 {
  transition-duration: 500ms;
  background-color: #edea9d;
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 175px;
  height: 48px;
  color: #ffffff;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 14px;
  line-height: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-btn4:hover,
.custom-btn4:focus {
  font-size: 14px;
  font-weight: 700;
  background-color: #3b3b3b;
  color: #ffffff;
}

.custom-btn4.btn-2 {
  background-color: #3b3b3b;
  color: #ffffff;
}

.custom-btn4.btn-2:hover,
.custom-btn4.btn-2:focus {
  background-color: #edea9d;
  color: #ffffff;
}

.custom-btn4.btn-3 {
  background-color: transparent;
  color: #edea9d;
  border: 2px solid #edea9d;
  line-height: 44px;
}

.custom-btn4.btn-3:hover,
.custom-btn4.btn-3:focus {
  border: 2px solid #edea9d;
  background-color: #edea9d;
  color: #ffffff;
}

.cta-btn {
  color: white;
  text-transform: uppercase;
  font-size: calc(12px + 0.3vw);
  border: 1px solid white;
  border-radius: 1rem;
  padding: 5px 20px;
  display: inline-block;
  max-height: 35px;
}
.cta-btn i {
  font-size: 0;
  margin-left: 5px;
}
.cta-btn:hover i, .cta-btn:focus i, .cta-btn:active i {
  font-size: 18px;
}
.cta-btn:hover, .cta-btn:focus, .cta-btn:active {
  color: white;
}

.cta-btn1 {
  color: white;
  text-transform: uppercase;
  font-size: calc(12px + 0.3vw);
  border: 1px solid #3b3b3b;
  border-radius: 0;
  padding: 10px 20px;
  display: inline-block;
  background-color: #3b3b3b;
}
.cta-btn1 i {
  font-size: 0;
  margin-left: 5px;
}
.cta-btn1:hover i, .cta-btn1:focus i, .cta-btn1:active i {
  font-size: 18px;
}
.cta-btn1:hover, .cta-btn1:focus, .cta-btn1:active {
  color: white;
  background-color: #edea9d;
  border: 1px solid #edea9d;
}

.cta-btn2 {
  color: white;
  font-size: calc(12px + 0.3vw);
  border: 0px solid white;
  border-radius: 50px;
  padding: 21px 15px;
  display: inline-block;
  background: #3b3b3b;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.cta-btn2:hover, .cta-btn2:active, .cta-btn2:focus {
  background: #3b3b3b;
  color: #edea9d;
}
.cta-btn2 i {
  width: 0px;
  height: 0px;
}
.cta-btn2:hover i, .cta-btn2:focus i, .cta-btn2:active i {
  width: 30px;
  height: 50px;
}

.btn-primary {
  color: white;
  background-color: #3b3b3b;
  border-color: #3b3b3b;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  color: white;
  background-color: #edea9d;
  border-color: #edea9d;
}

.btn, .btn.btn-outline-primary.btn-block {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}
.btn:hover, .btn:active, .btn:focus, .btn.btn-outline-primary.btn-block:hover, .btn.btn-outline-primary.btn-block:active, .btn.btn-outline-primary.btn-block:focus {
  color: white;
  background: #3b3b3b;
  border: 1px solid #3b3b3b;
}

.btn-primary-visible {
  color: white;
  background-color: #edea9d;
  border-color: #edea9d;
  border-radius: 15px;
  position: absolute;
  left: 35%;
  top: 60%;
  opacity: 0;
}

.btn-success.disabled,
.btn-success:disabled {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #5b4931;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
  border-color: #5b4931;
  opacity: 1;
}
.btn-success.disabled:hover, .btn-success.disabled:active, .btn-success.disabled:focus,
.btn-success:disabled:hover,
.btn-success:disabled:active,
.btn-success:disabled:focus {
  color: white;
  background: #3b3b3b;
  border: 1px solid #3b3b3b;
  border-color: #3b3b3b;
  opacity: 1;
}

#pagina-uno picture img {
  width: 100%;
}
#pagina-uno img {
  width: 100%;
}
#pagina-uno .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-uno .title h1 {
  color: #edea9d;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#pagina-uno .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#pagina-uno .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}

#pagina-dos picture img {
  width: 100%;
}
#pagina-dos .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-dos .title h1 {
  color: #edea9d;
  position: relative;
  margin-bottom: 40px;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#pagina-dos .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 48%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#pagina-dos .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#pagina-dos p {
  text-align: center;
}

#pagina-tres {
  padding-bottom: 0;
}
#pagina-tres .services {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
#pagina-tres .services .icon {
  width: 30px;
  height: 30px;
  background: white;
  border: 1px solid black;
  text-align: center;
}
#pagina-tres .services .icon span {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
#pagina-tres .services .text {
  width: calc(100% - 100px);
}
#pagina-tres .services .text p {
  font-size: calc(18px + 0.2vw);
  letter-spacing: 0;
  line-height: 1.5;
}
#pagina-tres .services .text p b {
  color: black;
}
#pagina-tres .services .text h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#pagina-cuatro picture img {
  width: 100%;
}
#pagina-cuatro .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-cuatro .title h1 {
  color: #edea9d;
  margin-bottom: 40px;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#pagina-cuatro .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#pagina-cuatro .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}

#pagina-cinco picture img {
  width: 100%;
}
#pagina-cinco .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-cinco .title h1 {
  color: #edea9d;
  margin-bottom: 40px;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#pagina-cinco .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#pagina-cinco .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#pagina-cinco .title-small {
  letter-spacing: 0.8px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
}
#pagina-cinco .title-small span:after {
  content: "";
  position: absolute;
  bottom: -20px;
  height: 3px;
  background: #dedede;
  width: 28px;
  left: 0;
}
#pagina-cinco .content-detail {
  font-weight: 400;
  margin-top: 70px;
  line-height: 30px;
  font-size: 14px;
  letter-spacing: 0.4px;
}
#pagina-cinco .content-right {
  margin-top: 20px;
  padding: 0 20px 0 60px;
}
#pagina-cinco .content-right .listing-item {
  list-style: none;
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
}
#pagina-cinco .content-right .listing-item .col {
  width: 33.3333333333%;
  float: left;
}
#pagina-cinco .content-right .listing-item .col .icon-use {
  margin: 0;
  text-align: left;
  margin-bottom: 20px;
}
#pagina-cinco .content-right .listing-item .col .icon-use img {
  width: 50px;
}
#pagina-cinco .content-right .listing-item .col .head-sm {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
#pagina-cinco .content-right .listing-item .col .text-grey {
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 60px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

#pagina-seis picture img {
  width: 100%;
}
#pagina-seis img {
  width: 100%;
}
#pagina-seis .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-seis .title h1 {
  color: #edea9d;
  font-weight: 600;
  padding: 0;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 20px;
}
#pagina-seis .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
  position: relative;
  margin-bottom: 20px;
}
#pagina-seis .title h3:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#pagina-seis .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#pagina-seis p.black {
  color: black;
  font-weight: 600;
}

#pagina-siete {
  background-color: white;
}
#pagina-siete .title {
  background: transparent;
  text-align: center;
  margin: 0;
  padding: 0;
}
#pagina-siete .title h1 {
  color: #edea9d;
  font-weight: 600;
  padding: 0;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 20px;
}
#pagina-siete .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
  position: relative;
  margin-bottom: 40px;
}
#pagina-siete .title h3:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 46%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#pagina-siete .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#pagina-siete .shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
#pagina-siete .shop .shop-img {
  position: relative;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
}
#pagina-siete .shop .shop-img img {
  width: 100%;
  transition: 0.2s all;
}
#pagina-siete .shop:hover .shop-img > img {
  transform: scale(1.1);
}
#pagina-siete .shop .shop-body {
  position: relative;
  padding: 30px 0px;
}
#pagina-siete .shop .shop-body h3 {
  color: #edea9d;
  font-weight: 900;
  font-size: calc(20px + 0.3vw);
  margin: 0;
}
#pagina-siete .shop .shop-body p {
  color: #3b3b3b;
  font-weight: 400;
  margin: 0px 0px 7px;
}
#pagina-siete .shop .shop-body .cta-btn {
  color: white;
  text-transform: uppercase;
  font-size: calc(12px + 0.3vw);
  border: 1px solid white;
  border-radius: 1rem;
  padding: 5px 15px;
  display: inline-block;
  max-height: 35px;
}
#pagina-siete .shop .shop-body .cta-btn i {
  width: 0px;
  height: 0px;
}
#pagina-siete .shop .shop-body .cta-btn:hover i, #pagina-siete .shop .shop-body .cta-btn:focus i, #pagina-siete .shop .shop-body .cta-btn:active i {
  width: 30px;
  height: 50px;
}

#pagina-ocho picture img {
  width: 100%;
}
#pagina-ocho .title {
  background: transparent;
  text-align: center;
  margin: 0;
  padding: 0;
}
#pagina-ocho .title h1 {
  color: #edea9d;
  font-weight: 600;
  padding: 0;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 20px;
}
#pagina-ocho .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
  position: relative;
  margin-bottom: 40px;
}
#pagina-ocho .title h3:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 46%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#pagina-ocho .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}
#pagina-ocho .title-small {
  letter-spacing: 0.8px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
}
#pagina-ocho .title-small span:after {
  content: "";
  position: absolute;
  bottom: -20px;
  height: 3px;
  background: #dedede;
  width: 28px;
  left: 0;
}
#pagina-ocho .content-detail {
  font-weight: 400;
  margin-top: 70px;
  line-height: 30px;
  font-size: 14px;
  letter-spacing: 0.4px;
}
#pagina-ocho .content-right {
  margin-top: 0px;
  padding: 0px;
}
#pagina-ocho .content-right .listing-item {
  list-style: none;
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
}
#pagina-ocho .content-right .listing-item .col {
  width: 50%;
  float: left;
}
#pagina-ocho .content-right .listing-item .col .icon-use {
  margin: 0;
  text-align: left;
  margin-bottom: 20px;
}
#pagina-ocho .content-right .listing-item .col .icon-use img {
  width: 50px;
}
#pagina-ocho .content-right .listing-item .col .head-sm {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
#pagina-ocho .content-right .listing-item .col .text-grey {
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 60px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

#pagina-nueve {
  background-color: white;
}
#pagina-nueve .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-nueve .title h1 {
  color: white;
  position: relative;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#pagina-nueve .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 30px;
  background: white;
  height: 4px;
}
#pagina-nueve .title h3 {
  color: white;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#pagina-nueve .grid {
  width: 100%;
  margin: 40px auto;
}
#pagina-nueve .grid .media-container-row {
  width: 100%;
  margin: 0 -5px;
}
#pagina-nueve .grid .media-container-row .column {
  float: left;
  width: 25%;
  padding: 0px;
}
#pagina-nueve .grid .media-container-row .column .card {
  border: solid 1px transparent;
  border-radius: 0;
  text-align: center;
  background-color: transparent;
  overflow: hidden;
  padding: 20px 5px;
  min-height: 350px;
}
#pagina-nueve .grid .media-container-row .column .card:hover .custom-btn1, #pagina-nueve .grid .media-container-row .column .card:active .custom-btn1, #pagina-nueve .grid .media-container-row .column .card:focus .custom-btn1 {
  bottom: 10px;
  left: calc(50% - 70px);
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
#pagina-nueve .grid .media-container-row .column .card picture img {
  width: 100%;
  max-width: 100px;
}
#pagina-nueve .grid .media-container-row .column .card picture i {
  font-size: calc(58px + 0.3vw);
  margin-bottom: 20px;
  border: 4px solid #3b3b3b;
  border-radius: 50px;
  padding: 13px 10px;
  width: 100px;
  text-align: center;
  height: 100px;
  color: #3b3b3b;
}
#pagina-nueve .grid .media-container-row .column .card h3 {
  color: #3b3b3b;
  margin: 15px 0;
  position: relative;
  text-align: center;
  font-size: calc(22px + 0.4vw);
}
#pagina-nueve .grid .media-container-row .column .card p {
  color: #3b3b3b;
  font-size: calc(10px + 0.3vw);
}
#pagina-nueve .grid .media-container-row .column .card .custom-btn1 {
  background-color: #edea9d;
  color: #fff;
  border: 1px solid #edea9d;
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  font-size: calc(10px + 0.3vw);
  font-weight: 500;
  width: 140px;
  position: absolute;
  bottom: -150px;
  left: calc(50% - 70px);
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
#pagina-nueve .grid .media-container-row:after {
  content: "";
  display: table;
  clear: both;
}

#pagina-diez picture img {
  width: 100%;
}
#pagina-diez .title {
  background: transparent;
  margin: 0;
  padding: 0;
  text-align: center;
}
#pagina-diez .title h1 {
  color: #3b3b3b;
  font-weight: 400;
  padding: 0;
  font-size: calc(48px + 0.4vw);
  font-family: "Open Sans", sans-serif;
}
#pagina-diez .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(10px + 0.4vw);
  position: relative;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}
#pagina-diez .title p {
  color: #9e9e9e;
}
#pagina-diez p {
  text-align: center;
}
#pagina-diez .insta-img, #pagina-diez .room-img, #pagina-diez .hero-wrap, #pagina-diez .img, #pagina-diez .blog-img, #pagina-diez .user-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#pagina-diez .room {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  #pagina-diez .room {
    margin-bottom: 30px;
  }
}
#pagina-diez .room .img {
  display: block;
  height: 250px;
}
#pagina-diez .room .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  opacity: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#pagina-diez .room .icon span {
  color: #000000;
}
#pagina-diez .room:hover .icon {
  opacity: 1;
}
#pagina-diez .room .text {
  border: 1px solid #e6e6e6;
  border-top: 1px solid transparent;
  background: #fff;
  position: relative;
}
#pagina-diez .room .text h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
#pagina-diez .room .text h3 a {
  color: #000000;
}
#pagina-diez .room .text span.price {
  font-size: 26px;
  color: #000000;
  position: relative;
}
#pagina-diez .room .text span.price:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #d1ba90;
}
#pagina-diez .room .text span.per {
  color: #b3b3b3;
}
#pagina-diez .room .text .btn-custom {
  color: #a2a2a2;
  font-size: calc(10px + 0.4vw);
  font-weight: 300;
}
#pagina-diez .room .text ul.list {
  padding: 0;
}
#pagina-diez .room .text ul.list li {
  list-style: none;
  color: #000000;
  font-size: 14px;
}
#pagina-diez .room .text ul.list li span {
  color: #8d703b;
}
#pagina-diez .room-img {
  height: 400px;
  margin-bottom: 2em;
}
#pagina-diez .room-single h2 {
  font-size: 28px;
}
#pagina-diez .room-single .loc {
  margin-right: 10px;
}
#pagina-diez .room-single .loc a {
  color: #999999;
}
#pagina-diez .room-single ul {
  margin: 0;
  padding: 0;
}
#pagina-diez .room-single ul li {
  list-style: none;
  margin-bottom: 10px;
}

#pagina-once {
  background-color: #f1f1f1;
}
#pagina-once picture img {
  width: 100%;
}
#pagina-once .title {
  text-align: center;
  background: transparent;
  margin: 0;
  padding: 0;
}
#pagina-once .title h1 {
  color: #edea9d;
  position: relative;
  margin-bottom: 40px;
  font-weight: 400;
  padding: 0;
  font-size: calc(22px + 0.4vw);
}
#pagina-once .title h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 48%;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#pagina-once .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
}
#pagina-once p {
  text-align: center;
}
#pagina-once .title-small-center {
  margin: 40px 0;
}
#pagina-once .title-small-center span {
  position: relative;
}
#pagina-once .title-small-center span:after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  height: 3px;
  background: #DEDEDE;
  width: 28px;
  left: 0;
}
#pagina-once .content-details {
  margin-bottom: 40px;
}
#pagina-once .grid {
  margin-top: 60px;
  position: relative;
}
#pagina-once .grid .grid-item {
  width: 33.333%;
  float: left;
  top: 0px;
  left: 0px;
  overflow: hidden;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
}
#pagina-once .grid .grid-item .wrap-article {
  border: 1px solid rgba(129, 129, 129, 0.1);
  background: #ffffff;
  padding: 30px 20px;
}
#pagina-once .grid .grid-item .wrap-article .img-circle {
  width: 133px;
  height: 133px;
  border-radius: 50%;
}
#pagina-once .grid .grid-item .wrap-article img {
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 0;
}
#pagina-once .grid .grid-item .wrap-article .fancy {
  line-height: 1.5;
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
  color: #818181;
}
#pagina-once .grid .grid-item .wrap-article .fancy span {
  display: inline-block;
  position: relative;
}
#pagina-once .grid .grid-item .wrap-article .fancy span:before {
  right: 100%;
  margin-right: 5px;
  content: "";
  margin-top: 11px;
  position: absolute;
  height: 5px;
  border-top: 1px solid #dedede;
  top: 0;
  width: 60%;
}
#pagina-once .grid .grid-item .wrap-article .fancy span:after {
  left: 100%;
  margin-left: 5px;
  content: "";
  margin-top: 11px;
  position: absolute;
  height: 5px;
  border-top: 1px solid #dedede;
  top: 0;
  width: 60%;
}
#pagina-once .grid .grid-item .wrap-article a {
  color: #2f2f2f;
  text-decoration: none;
}
#pagina-once .grid .grid-item .wrap-article a .title {
  font-size: 16px;
  padding: 0 10px 0 10px;
  text-align: center;
  letter-spacing: 0.1;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
}
#pagina-once .grid .grid-item .wrap-article a .title:after {
  content: "";
  display: block;
  margin: 0 auto;
  bottom: -20px;
  height: 1px;
  background: #dedede;
  width: 48px;
  left: 0;
  margin-top: 30px;
}
#pagina-once .grid .grid-item .wrap-article .content-blog {
  margin-top: 30px;
  padding: 0 10px 0 10px;
  text-align: justify;
  color: #5f5f5f;
}

.parallax {
  background-image: url("../imagenes/parallax.jpg");
}
.parallax .parallax-text {
  bottom: 10vh;
  text-align: left;
  padding: 15vh 5vw;
  width: 100%;
  z-index: 1;
}
.parallax .parallax-text h1 {
  color: white;
  font-size: calc(28px + 0.5vw);
  margin-bottom: 20px;
}
.parallax .parallax-text p {
  color: white;
  font-size: calc(16px + 0.5vw);
}

.parallax.doble {
  background-image: url("../imagenes/parallax-dos.jpg");
}
.parallax.doble .parallax-text {
  bottom: 10vh;
  text-align: left;
  padding: 8vh 5vw;
  width: 100%;
  z-index: 1;
}
.parallax.doble .parallax-text h1 {
  color: white;
  font-size: calc(28px + 0.5vw);
  margin-bottom: 20px;
}
.parallax.doble .parallax-text p {
  color: white;
  font-size: calc(12px + 0.5vw);
}
.parallax.doble .parallax-text .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
.parallax.doble .parallax-text .title h1 {
  color: white;
  font-weight: 900;
  padding: 0;
  font-size: calc(34px + 0.4vw);
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.parallax.doble .parallax-text .title h2 {
  color: white;
  margin-top: 20px;
  font-size: calc(14px + 0.4vw);
  text-align: left;
  text-transform: uppercase;
  font-weight: 300;
}

.parallax-window .promo-block-divider {
  padding: 10vh;
}
.parallax-window .promo-block-divider .promo-block-title {
  color: white;
}
.parallax-window .promo-block-divider .promo-block-text {
  color: white;
}

/**********************
Gallery Grid
***********************/
#galeria {
  background: transparent;
}
#galeria .row {
  display: flex;
  flex-wrap: wrap;
  /* padding: 0 4px; */
  padding: 0px;
  margin: 0 !important;
}
#galeria .row .column {
  flex: 25%;
  max-width: 25%;
  /* padding: 0 4px; */
  padding: 0px;
}
#galeria .row .column a {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
#galeria .row .column a .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: black;
}
#galeria .row .column a .overlay .text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#galeria .row .column a .overlay .text img {
  width: 40px;
}
#galeria .row .column a img {
  /* margin-top: 8px; */
  vertical-align: middle;
  width: 100%;
  transition: 0.6s all;
}
#galeria .row .column a:hover .overlay {
  opacity: 0.8;
}
#galeria .row .column a:hover img {
  transform: scale(1.1);
}

/**********************
Gallery
***********************/
.gallery a img {
  float: left;
  width: 25%;
  height: auto;
  border: 2px solid #fff;
  transition: transform 0.15s ease;
  position: relative;
}

/**********************
Portfolio
***********************/
#galeria-tres .title {
  background: transparent;
  margin: 0;
  padding: 0;
}
#galeria-tres .title h1 {
  color: #edea9d;
  font-weight: 600;
  padding: 0;
  font-size: calc(22px + 0.4vw);
  margin-bottom: 20px;
  position: relative;
  font-family: "Open Sans", sans-serif;
}
#galeria-tres .title h1:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0px;
  width: 30px;
  background: #edea9d;
  height: 4px;
}
#galeria-tres .title h3 {
  color: #9e9e9e;
  margin-top: 20px;
  font-size: calc(12px + 0.4vw);
  position: relative;
  margin-bottom: 20px;
}
#galeria-tres .title p {
  color: #9e9e9e;
  border-left: solid 4px #3b3b3b;
  padding-left: 10px;
}

#works {
  margin: 0px auto 50px auto;
  float: none;
}

#balcones {
  float: right;
}

#frentes {
  float: right;
}

#recambio {
  float: right;
}

@media (max-width: 991px) {
  #balcones {
    float: left;
    margin-bottom: 40px;
  }
  #cerramientos {
    margin-top: 40px;
  }
  #frentes {
    float: left;
    margin-bottom: 40px;
  }
  #techos {
    margin-top: 40px;
  }
  #recambio {
    float: left;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  #works {
    margin: 0 auto;
    float: none;
  }
  #works .portfolio_container > div {
    width: 100%;
  }
  #works .portfolio_container > div a {
    width: 100%;
  }
  #works .portfolio_container > div img {
    width: 100%;
  }
}
/* ##### 04 : PORTFOLIO  ##### */
.portfolio .categories-grid span {
  font-size: 30px;
  margin-bottom: 50px;
  display: inline-block;
}

.portfolio .categories-grid .categories ul li {
  list-style: none;
  margin: 20px 0;
  display: inline;
}

.portfolio_filter {
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

.portfolio .categories-grid .categories ul li a {
  display: inline-block;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #898888;
  margin-left: 20px;
  font-size: 18px;
  padding: 0 10px;
}

.portfolio .categories-grid .categories ul li a.active {
  margin-left: 0;
  padding: 0 10px;
  color: #000;
  font-size: 18px;
  margin-left: 20px;
}

.portfolio .categories-grid .categories ul li a.active span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px !important;
}

.portfolio .categories-grid .categories ul li a.active span:after {
  content: "";
  background-color: #edea9d;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: -1;
  width: 40px;
  height: 1px;
}

.portfolio .categories-grid .categories ul li a span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px !important;
}

.portfolio .categories-grid .categories ul li a span:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: -1;
  width: 40px;
  height: 1px;
}

.portfolio .categories-grid .categories ul li a:hover span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px !important;
}

.portfolio .categories-grid .categories ul li a:hover span:after {
  content: "";
  background-color: #edea9d;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: -1;
  width: 40px;
  height: 1px;
}

@media (max-width: 991px) {
  .portfolio .categories-grid span {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
  .portfolio .categories-grid .categories ul li {
    text-align: center;
  }
  .portfolio .categories-grid .categories ul li a {
    margin-left: 0;
  }
}
.portfolio_item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: inline-block;
}

.portfolio_item .portfolio_item_hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.portfolio_item .portfolio_item_hover .item_info {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portfolio_item .portfolio_item_hover .item_info span {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out 0.3s;
  opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
  font-style: normal;
  display: inline-block;
  background-color: #edea9d;
  padding: 5px 10px;
  font-size: 14px;
  color: white;
  margin-top: 5px;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out 0.5s;
  opacity: 0;
}

.portfolio_item:hover .portfolio_item_hover {
  opacity: 1;
  transform: translateY(0);
}

.portfolio_item:hover .item_info em, .portfolio_item:hover .item_info span {
  opacity: 1;
  transform: translateY(0);
}

.portfolio_item img {
  width: 100%;
}

/**********************
Slider Index
***********************/
#carouselExampleIndicators .carousel-indicators .active {
  background-color: #3b3b3b;
}
#carouselExampleIndicators .carousel-item {
  height: 85vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}
#carouselExampleIndicators .carousel-item h3 {
  text-align: left;
  color: white;
  text-transform: uppercase;
  font-size: calc(22px + 0.5vw);
}
#carouselExampleIndicators .carousel-item p.lead {
  text-align: left;
  border-left: 4px solid white;
  padding-left: 15px;
  margin-top: 15px;
}
#carouselExampleIndicators .carousel-item .carousel-caption {
  bottom: 10vh;
  text-align: left;
  padding: 5vh 5vw;
  width: 50%;
  background: rgba(237, 234, 157, 0.8);
}
#carouselExampleIndicators .carousel-item .carousel-caption .btn {
  border: none;
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
}
#carouselExampleIndicators .carousel-item .carousel-caption .btn.uno {
  background: transparent;
  float: right;
}
#carouselExampleIndicators .carousel-item .carousel-caption .btn.uno:hover, #carouselExampleIndicators .carousel-item .carousel-caption .btn.uno:focus {
  border: 1px solid #eaebed;
  background: transparent;
}
#carouselExampleIndicators .carousel-item .carousel-caption .btn.uno img {
  display: inline-block;
  width: 50px;
  margin-left: 15px;
}
#carouselExampleIndicators .fix-im {
  position: relative;
  bottom: 11rem;
}
#carouselExampleIndicators .ugali {
  background: black;
  padding: 6px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}
/**********************
Slider Index Dos
***********************/
#carouselExampleIndicatorsdos {
  position: relative;
  z-index: 1;
  /* background:url(https://i.imgur.com/6axE29k.jpg) center center no-repeat;  */
  background: url(../slider/background.jpg) center center no-repeat;
  background-size: cover;
  min-height: 700px;
}
#carouselExampleIndicatorsdos h2,
#carouselExampleIndicatorsdos p,
#carouselExampleIndicatorsdos a {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}
#carouselExampleIndicatorsdos .carousel_caption h1 {
  color: white;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: calc(17px + 0.5vw);
  background-color: black;
  padding: 10px 20px;
}
#carouselExampleIndicatorsdos .carousel_caption h1 span {
  color: red;
  background-color: #edea9d;
  padding: 10px;
  float: right;
  margin-top: -10px;
  margin-right: -20px;
}
#carouselExampleIndicatorsdos .carousel_caption h2 {
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 200;
  text-transform: uppercase;
}
#carouselExampleIndicatorsdos .carousel_caption p {
  color: #ffffff;
  font-size: calc(14px + 0.5vw);
  color: red;
  background-color: #edea9d;
  padding: 10px;
}
#carouselExampleIndicatorsdos .carousel-item {
  min-height: 500px;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-top: 10vh;
  /* display: none; */
  align-items: center;
  width: 100%;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  perspective: 1000px;
}
#carouselExampleIndicatorsdos .carousel-item h2 {
  animation-name: fadeInLeft;
}
#carouselExampleIndicatorsdos .carousel-item p {
  animation-name: fadeInLeft;
}
#carouselExampleIndicatorsdos .carousel-item a {
  animation-name: fadeInLeft;
}
#carouselExampleIndicatorsdos .carousel-item a img {
  animation-name: fadeInLeft;
}
#carouselExampleIndicatorsdos .mask > .container {
  width: 80%;
  max-width: 80%;
}
#carouselExampleIndicatorsdos .mask img {
  animation-name: slideInRight;
  display: block;
  height: auto;
  max-width: 100%;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}
#carouselExampleIndicatorsdos .carousel-control-next,
#carouselExampleIndicatorsdos .carousel-control-prev {
  height: 40px;
  width: 40px;
  padding: 12px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background-color: #edea9d;
}
#carouselExampleIndicatorsdos .carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-next.carousel-item-left,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-prev.carousel-item-right,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item.active {
  opacity: 1;
}
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-left.active,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-right.active {
  opacity: 0;
}
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-left.active,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-next,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-prev,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item-prev.active,
#carouselExampleIndicatorsdos .carousel-fade .carousel-item.active {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-left.active,
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item-prev.active,
  .carousel-fade .carousel-item.active {
    transform: translate3d(0, 0, 0);
  }
}
.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  transform: translate3d(0, 0, 0);
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

/**********************
Slider Index Inmobiliarias carouseltres
***********************/
#carouselExampleIndicatorstres .carousel-indicators .active {
  background-color: #3b3b3b;
}
#carouselExampleIndicatorstres .carousel-item {
  height: 85vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}
#carouselExampleIndicatorstres .carousel-item h3 {
  text-align: left;
  color: white;
  text-transform: uppercase;
  font-size: calc(22px + 0.5vw);
}
#carouselExampleIndicatorstres .carousel-item p.lead {
  text-align: left;
  border-left: 4px solid white;
  padding-left: 15px;
  margin-top: 15px;
}
#carouselExampleIndicatorstres .carousel-item p {
  text-align: left;
  margin-top: 15px;
  color: white;
  font-size: calc(18px + 0.4vw);
}
#carouselExampleIndicatorstres .carousel-item .carousel-caption {
  top: 40%;
  text-align: left;
  padding: 5vh 5vw;
  width: 50%;
  background: transparent;
}
#carouselExampleIndicatorstres .carousel-item .carousel-caption .btn {
  border: none;
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
}
#carouselExampleIndicatorstres .carousel-item .carousel-caption .btn.uno {
  background: transparent;
  float: right;
}
#carouselExampleIndicatorstres .carousel-item .carousel-caption .btn.uno:hover, #carouselExampleIndicatorstres .carousel-item .carousel-caption .btn.uno:focus {
  border: 1px solid #eaebed;
  background: transparent;
}
#carouselExampleIndicatorstres .carousel-item .carousel-caption .btn.uno img {
  display: inline-block;
  width: 50px;
  margin-left: 15px;
}
#carouselExampleIndicatorstres .fix-im {
  position: relative;
  bottom: 11rem;
}
#carouselExampleIndicatorstres .ugali {
  background: black;
  padding: 6px;
}

/**********************
Carousel 4 imagenes fijas
***********************/
#demo {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#demo .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
}

/**********************
Owl Carousel slider Index
***********************/
#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

/**********************
Owl Carousel 1 slider Index
***********************/
.hero-slider {
  position: relative;
  /* overlay owlcarousel */
}
.hero-slider .hero-text {
  padding: 0 15px;
  text-align: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hero-slider .hero-text h1 {
  color: #fff;
  font-size: calc(88px + 0.4vw);
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}
.hero-slider .hero-text p {
  color: #fff;
  font-size: calc(18px + 0.4vw);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 35px;
}
.hero-slider .slider-btn {
  animation: 1s 0.3s fadeInUp both;
}
.hero-slider .slider-btn .custom-btn1 {
  background-color: #edea9d;
  color: white;
  border: 1px solid #edea9d;
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
}
.hero-slider .slider-btn .custom-btn1:hover, .hero-slider .slider-btn .custom-btn1:active, .hero-slider .slider-btn .custom-btn1:focus {
  background-color: #3b3b3b;
  border: 1px solid #3b3b3b;
  text-decoration: none;
  color: white;
}
.hero-slider .d-table {
  width: 100%;
  height: 100%;
  display: table;
}
.hero-slider .d-tablecell {
  display: table-cell;
  vertical-align: middle;
}
.hero-slider .single-hs-item {
  height: 95vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.hero-slider .single-hs-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.4;
}
.hero-slider .item-bg1 {
  background-image: url(https://techsolutionshere.com/wp-content/uploads/2019/01/s1.jpg);
}
.hero-slider .item-bg2 {
  background-image: url(https://techsolutionshere.com/wp-content/uploads/2019/01/s2.jpg);
}
.hero-slider .item-bg3 {
  background-image: url(https://techsolutionshere.com/wp-content/uploads/2019/01/s3.jpg);
}

.hero-slider.owl-item.active h1 {
  -animation: 1s 0.3s fadeInUp both;
}

.hero-slider.owl-item.active p {
  animation: 1s 0.3s fadeInUp both;
}

.hero-slider.owl-carousel .owl-nav button.owl-prev {
  background-color: black !important;
  position: absolute;
  left: 0;
  top: 50%;
  color: #fff;
  font-size: calc(40px + 0.5vw) !important;
  margin: -40px 0 0;
  border-radius: 0;
  height: 50px;
  width: 50px;
  transition: 0.2s all;
}
.hero-slider.owl-carousel .owl-nav button.owl-prev span {
  position: absolute;
  top: -14px;
  left: 15px;
  color: white;
}

.hero-slider.owl-carousel .owl-nav button.owl-next {
  background-color: black !important;
  position: absolute;
  right: 0;
  top: 50%;
  color: white;
  font-size: calc(40px + 0.5vw) !important;
  margin: -40px 0 0;
  border-radius: 0;
  height: 50px;
  width: 50px;
  transition: 0.2s all;
}
.hero-slider.owl-carousel .owl-nav button.owl-next span {
  position: absolute;
  top: -14px;
  right: 15px;
  color: white;
}

.hero-slider.owl-carousel .owl-nav button.owl-prev:hover, .hero-slider.owl-carousel .owl-nav button.owl-prev:active, .hero-slider.owl-carousel .owl-nav button.owl-prev:focus,
.hero-slider.owl-carousel .owl-nav button.owl-next:hover,
.hero-slider.owl-carousel .owl-nav button.owl-next:active,
.hero-slider.owl-carousel .owl-nav button.owl-next:focus {
  opacity: 0.7;
  transition: 0.2s all;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.hero-slider.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px !important;
}

.hero-slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span,
.hero-slider.owl-theme .owl-dots .owl-dot:hover span {
  background: #edea9d;
}

/**********************
Parallax con background rotativo
***********************/
/*Background Rotating Parallax*/
.cb-slideshow li div h3 {
  padding: 0px;
  text-align: center;
}

.cb-slideshow li div h3 span.text {
  position: relative;
  z-index: 1;
  background-image: none;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: calc(25px + 0.5vw);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cb-slideshow li div p {
  text-align: center;
  margin: 0px;
  color: #fff;
  font-size: calc(14px + 0.4vw);
  font-weight: 300;
  line-height: 1.2;
}
.cb-slideshow li div p b {
  color: #3b3b3b;
  font-weight: 300;
}
.cb-slideshow li div p a {
  margin-top: 20px;
}

.cb-slideshow,
.cb-slideshow:after {
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.cb-slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  backface-visibility: hidden;
  animation: imageAnimation 36s linear infinite 0s;
}

.cb-slideshow li div {
  padding: 12vh 14vw;
  z-index: 1000;
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  text-align: center;
  opacity: 0;
  color: #fff;
  animation: titleAnimation 36s linear infinite 0s;
}

.cb-slideshow li:nth-child(1) span {
  background-image: url(images/1.jpg);
  background-attachment: fixed;
}

.cb-slideshow li:nth-child(2) span {
  background-image: url(images/2.jpg);
  background-attachment: fixed;
  animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
  background-image: url(images/3.jpg);
  background-attachment: fixed;
  animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
  background-image: url(images/4.jpg);
  background-attachment: fixed;
  animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) span {
  background-image: url(images/5.jpg);
  background-attachment: fixed;
  animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) span {
  background-image: url(images/6.jpg);
  background-attachment: fixed;
  animation-delay: 30s;
}

.cb-slideshow li:nth-child(2) div {
  animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) div {
  animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) div {
  animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) div {
  animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) div {
  animation-delay: 30s;
}

/* Animation for the slideshow images */
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* Animation for the title */
@keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  19% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span {
  opacity: 1;
}

@media screen and (max-width: 1140px) {
  .cb-slideshow li div h3 {
    font-size: 140px;
  }
}
@media screen and (max-width: 600px) {
  .cb-slideshow li div h3 {
    font-size: 80px;
  }
}
/**********************
Hero Slider 
***********************/
/* :: 5.0 Hero Area CSS */
.hero-area {
  position: relative;
  z-index: 1;
}

.hero-area .owl-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 100;
  bottom: 30px;
  left: 0;
  right: 0;
}

.hero-area .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: #d2d2d2;
  border-radius: 50%;
  margin: 0 6px;
}

.hero-area .owl-dots .owl-dot.active {
  background-color: #edea9d;
}

.hero-area .owl-prev, .hero-area .owl-next {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  top: 50%;
  margin-top: -23px;
  font-size: 18px;
  color: #fff;
  background-color: #3b3b3b;
  left: 20px;
  text-align: center;
  transition-duration: 500ms;
  line-height: 46px;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .hero-area .owl-prev, .hero-area .owl-next {
    left: 10px;
  }
}
.hero-area .owl-prev:hover, .hero-area .owl-next:hover {
  background-color: #edea9d;
  color: #ffffff;
}

.hero-area .owl-next {
  left: auto;
  right: 20px;
}

@media only screen and (max-width: 767px) {
  .hero-area .owl-next {
    right: 10px;
  }
}
.hero-area:hover .owl-next, .hero-area:hover .owl-prev {
  opacity: 1;
  visibility: visible;
}

.single-slide {
  position: relative;
  z-index: 99;
  width: 100%;
  height: 760px;
  background-color: #fff;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-slide {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slide {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .single-slide {
    height: 600px;
  }
}
.single-slide .slide-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -12;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: slide-bg linear 10000ms infinite;
}

.single-slide .slide-du-indicator {
  position: absolute;
  z-index: 10;
  width: 0;
  height: 2px;
  background-color: #edea9d;
  left: 0;
  bottom: 0;
  animation: slide-du-indicator linear 10000ms infinite;
}

.single-slide .welcome-text {
  position: relative;
  z-index: 1;
}
.single-slide .welcome-text h6 {
  font-size: calc(18px + 0.4vw);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
}
.single-slide .welcome-text h2 {
  font-size: calc(68px + 0.4vw);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.single-slide .welcome-text h2 span {
  color: #edea9d;
}
.single-slide .welcome-text p {
  font-size: calc(18px + 0.4vw);
  color: #ffffff;
}

.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-slide .welcome-text h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slide .welcome-text h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .single-slide .welcome-text h2 {
    font-size: 24px;
  }
}
@keyframes slide-du-indicator {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes slide-bg {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.bg-overlay::after {
  background-color: rgba(0, 0, 0, 0.61);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

/**********************
OwlCarousel3 usa una version vieja hay que cambiar el js owl para usarlo
***********************/
#main-slider {
  overflow: hidden;
}
#main-slider .owl-prev,
#main-slider .owl-next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 30px;
  display: inline-block;
  margin-top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 100px;
  z-index: 5;
  transition: background-color 400ms;
}
#main-slider .owl-prev:hover,
#main-slider .owl-next:hover {
  background-color: #edea9d;
  cursor: pointer;
}
#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
}
#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}
#main-slider .item {
  height: 700px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
#main-slider .item .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main-slider .item .slider-inner h2 {
  margin-top: 247px;
  font-size: 40px;
  line-height: 1;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-align: center;
}
#main-slider .item .slider-inner h2 span {
  color: #45aed6;
}
#main-slider .item .slider-inner p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-align: center;
}
#main-slider .item .slider-inner .btn {
  margin-top: 20px;
  background: transparent;
  border: 3px solid #f26522;
  border-radius: 30px;
}
#main-slider .item .slider-inner .btn.btn-primary {
  padding: 10px 46px;
  font-size: 22px;
}
#main-slider .item .slider-inner .btn.btn-primary:hover, #main-slider .item .slider-inner .btn.btn-primary:active, #main-slider .item .slider-inner .btn.btn-primary:focus {
  background: #f26522;
}

.hero-area .hero-slides .owl-controls .owl-dots {
  display: none !important;
}

/* Buscador en menu */
#main-navbar .navbar-right.colright .top_nav_right .top_nav_menu.list .search [type=search]::-moz-placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3b;
}
#main-navbar .navbar-right.colright .top_nav_right .top_nav_menu.list .search [type=search]::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3b;
}

#carouselExampleIndicatorstres #advanceSearch ::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: white !important;
}

#carouselExampleIndicatorstres #advanceSearch ::placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: white !important;
}

/**********************
Index inmobiliaria buscador sobre slider
***********************/
#buscador-uno.south-search-area {
  position: relative;
  z-index: 1;
}
#buscador-uno.south-search-area .advanced-search-form {
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  border: 1px solid #e1dddd;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  top: auto;
  background: white;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width:767px) {
  #buscador-uno.south-search-area .advanced-search-form {
    padding: 30px 20px;
  }
}
#buscador-uno.south-search-area .advanced-search-form .search-title {
  position: absolute;
  width: 260px;
  height: 45px;
  background-color: #947054;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  #buscador-uno.south-search-area .advanced-search-form .search-title {
    width: 210px;
    padding: 0 15px;
  }
}
#buscador-uno.south-search-area .advanced-search-form .search-title p {
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
  line-height: 45px;
  font-weight: 600;
}
#buscador-uno.south-search-area .advanced-search-form .slider-range {
  flex: 0 0 50%;
  min-width: 50%;
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  #buscador-uno.south-search-area .advanced-search-form .slider-range {
    margin-bottom: 50px;
  }
}
#buscador-uno.south-search-area .advanced-search-form .slider-range:first-child {
  padding-right: 15px;
}
#buscador-uno.south-search-area .advanced-search-form .slider-range:last-child {
  padding-left: 15px;
}
#buscador-uno.south-search-area .advanced-search-form .ui-widget.ui-widget-content {
  border: none;
  height: 4px;
}
#buscador-uno.south-search-area .advanced-search-form .ui-widget-content {
  background: #947054;
}
#buscador-uno.south-search-area .advanced-search-form .ui-slider-horizontal {
  height: 4px;
  background: #947054;
}
#buscador-uno.south-search-area .advanced-search-form .ui-corner-all,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-bottom,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-right,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-br {
  border-bottom-right-radius: 0;
}
#buscador-uno.south-search-area .advanced-search-form .ui-corner-all,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-bottom,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-left,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-bl {
  border-bottom-left-radius: 0;
}
#buscador-uno.south-search-area .advanced-search-form .ui-corner-all,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-top,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-right,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-tr {
  border-top-right-radius: 0;
}
#buscador-uno.south-search-area .advanced-search-form .ui-corner-all,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-top,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-left,
#buscador-uno.south-search-area .advanced-search-form .ui-corner-tl {
  border-top-left-radius: 0;
}
#buscador-uno.south-search-area .advanced-search-form .ui-state-default,
#buscador-uno.south-search-area .advanced-search-form .ui-widget-content .ui-state-default,
#buscador-uno.south-search-area .advanced-search-form .ui-widget-header .ui-state-default,
#buscador-uno.south-search-area .advanced-search-form .ui-button,
#buscador-uno.south-search-area .advanced-search-form html .ui-button.ui-state-disabled:hover,
#buscador-uno.south-search-area .advanced-search-form html .ui-button.ui-state-disabled:active {
  border: none;
  background: #947054;
  margin-top: -3px;
}
#buscador-uno.south-search-area .advanced-search-form .range {
  font-size: 12px;
  margin-top: 15px;
  font-weight: 600;
}
@media only screen and (max-width:767px) {
  #buscador-uno.south-search-area .advanced-search-form .range {
    font-size: 10px;
  }
}
#buscador-uno.south-search-area .advanced-search-form .more-filter a {
  text-transform: uppercase;
  font-size: 12px;
  color: #323232;
}
#buscador-uno.south-search-area .advanced-search-form .more-filter a:hover {
  color: #947054;
}
#buscador-uno.south-search-area .advanced-search-form .search-form-second-steps {
  display: none;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-control {
  background-color: transparent;
  width: 100%;
  height: 38px;
  border-radius: 0;
  font-size: 14px;
  color: black;
  margin-bottom: 30px;
  font-weight: 500;
  padding: 0 15px;
  border: 1px solid #e1dddd;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-control:hover, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #e1dddd;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline {
  background-color: transparent;
  width: auto;
  height: 38px;
  border-radius: 0;
  font-size: 14px;
  color: #3b3b3b;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 500;
  padding: 0 0px 0px 15px;
  border: 0px solid #e1dddd;
  /* display:inline; */
  float: left;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline:hover, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline:active, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .form-check-inline:focus {
  background-color: transparent;
  box-shadow: none;
  border: 0px solid #e1dddd;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  background-color: #947054;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.active, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn:hover, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn:focus {
  color: white;
  background-color: black;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-2 {
  border: 2px solid #947054;
  background-color: transparent;
  color: #947054;
  line-height: 46px;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-2:hover, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-2:focus {
  color: white;
  background-color: #947054;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-3 {
  border: 2px solid black;
  background-color: transparent;
  color: black;
  line-height: 46px;
}
#buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-3:hover, #buscador-uno.south-search-area .advanced-search-form #advanceSearch .form-group .south-btn.btn-3:focus {
  color: white;
  background-color: black;
}

/* contacto */
.help-block.with-errors {
  color: #edea9d;
  margin-top: 5px;
}

.alert-success {
  color: #fff;
  background-color: transparent;
  border-color: #f1f0f5;
}

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: 0;
  right: -10px;
  color: inherit;
  font-weight: 300;
}

.text-muted {
  color: #edea9d;
}

.history-text p.text-muted {
  color: #edea9d;
}

.messages {
  background: black;
  color: white;
}

/* Personalizar Checkbox */
/* The container */
.form-check .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: calc(10px + 0.3vw);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Hide the browser's default checkbox */
.form-check .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.form-check .container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.form-check .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.form-check .container input:checked ~ .checkmark {
  background-color: #2196F3;
}

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

/* Show the checkmark when checked */
.form-check .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-check .container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.get_in_touch_contents form .btn-send {
  background: #000;
  color: white;
  text-transform: uppercase;
  width: 165px;
  border: none;
  height: 46px;
  cursor: pointer;
  font-size: calc(12px + 0.4vw);
}
.get_in_touch_contents form .btn-send:hover, .get_in_touch_contents form .btn-send:focus, .get_in_touch_contents form .btn-send:active {
  background: #edea9d;
}
.get_in_touch_contents form .btn-success {
  background: #edea9d;
  color: white;
  text-transform: uppercase;
  width: 165px;
  border: none;
  height: 46px;
  cursor: pointer;
  font-size: calc(12px + 0.4vw);
}
.get_in_touch_contents form .btn-success:hover, .get_in_touch_contents form .btn-success:focus, .get_in_touch_contents form .btn-success:active {
  background: #000;
}

.cart {
  margin: 30px 0;
}
.cart th {
  color: #222;
  padding: 5px 3px;
  border-bottom: 1px solid #bbb;
  border-top: 1px solid #bbb;
  text-transform: uppercase;
}
.cart td {
  text-align: left;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
.cart .tcant {
  text-align: center !important;
}
.cart .desc {
  text-align: left !important;
}
.cart .ttotal {
  text-align: right !important;
  font-weight: bold;
}
.cart .timporte td {
  background: #f2f2f2;
}
.cart .tdmin {
  width: 1%;
}

.cant {
  width: 40px;
  border: 1px solid #ddd;
  background-color: #f7f7f7;
  text-align: right;
}

.form label {
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

.form label strong {
  display: block;
  margin-bottom: 2px;
  font-weight: normal;
  cursor: default;
}

.form input[type=text],
.form input[type=password],
.form textarea {
  font-family: Arial;
  border: 1px solid #ddd;
  background: #fff;
  color: #777;
  padding: 5px 4px;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: 0;
}

.form input[type=submit],
.submit {
  background: #000;
  border: 0;
  padding: 0 15px;
  cursor: pointer;
  color: #fff !important;
  line-height: 40px;
  display: inline-block;
  height: 40px;
  vertical-align: top;
}

.form input[type=submit]:hover,
.submit:hover {
  background: #6d94df;
  text-decoration: none !important;
  color: #fff !important;
}

.form input[type=button],
.button {
  background: #eaebed;
  border: 0;
  padding: 0 15px;
  cursor: pointer;
  color: #000 !important;
  line-height: 40px;
  display: inline-block;
  height: 40px;
  vertical-align: top;
}

.form input[type=button]:hover,
.button:hover {
  background: #000;
  text-decoration: none !important;
  color: #fff !important;
}

.inputerror {
  background: #fff0f0 !important;
  border: 1px dotted #f3abab !important;
}

span.error {
  display: block;
  padding: 5px 7px 5px 22px;
  color: #555;
  margin: 0 0 0 1px;
  display: none;
  background: rgba(255, 240, 200, 0.8) url(img/error.png) no-repeat 2px center;
  border: 1px solid #eddab1;
  position: absolute;
}

.colset {
  margin: 0 -10px;
}

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

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

.colset .col12,
.colset .col13,
.colset .col14,
.colset .col23,
.colset .col34 {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0 10px;
  float: left;
}

.col12 {
  width: 50%;
}

.col13 {
  width: 33.333%;
}

.col14 {
  width: 25%;
}

.col23 {
  width: 66.667%;
}

.col34 {
  width: 75%;
}

.clear {
  clear: both;
}

@media only screen and (max-width: 767px) {
  .colset .col12,
  .colset .col13,
  .colset .col14,
  .colset .col23,
  .colset .col34 {
    width: auto !important;
    float: none !important;
    clear: both;
  }
}
.grecaptcha-badge {
  bottom: 65px !important;
}

@media (max-width: 991px) {
  .navbar-nav > li > ul {
    display: none;
  }
  .navbar-nav > li {
    position: relative;
  }
  .navbar-nav > li span {
    display: block;
    z-index: 99;
    cursor: pointer;
    width: 100%;
    height: 27px;
    position: absolute;
    top: 8px;
    right: 7px;
    /* background: url(../imagenes/plusminus.png) no-repeat 0 0; */
  }
  .navbar-nav > li span.open {
    background-position: 0 -31px;
  }
}
.listings-content-wrapper .section-heading {
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  section p {
    font-size: calc(12px + 0.4vw);
  }
  .listings-content-wrapper .section-heading {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .listings-content-wrapper .listings-content .listings-btn-groups {
    display: block !important;
  }
  .listings-content-wrapper .section-heading {
    display: block !important;
  }
  .offset {
    padding-top: 71px;
  }
  #intro-single {
    padding-bottom: 0;
  }
  #intro-single .grid-option {
    text-align: left;
    width: 100%;
  }
  #propiedades-destacadas .card-info {
    padding: 0.5rem 1rem;
  }
  /* Iconos */
  #iconos .grid .media-container-row .column {
    float: left;
    width: 50%;
    padding: 0;
  }
  /* Pagina Ocho */
  #pagina-cinco .content-right {
    margin-top: 20px;
    padding: 0 0px;
  }
  /* Slider */
  #carouselExampleIndicators .carousel-caption {
    padding: 5vh 5vw !important;
    width: 70% !important;
  }
  /* Ws botón */
  #ayuda a {
    font-size: calc(11px + 0.5vw);
  }
  /* Global */
  .title {
    margin-top: 20px;
  }
  section p {
    font-size: calc(11px + 0.4vw);
  }
  /* Ficha */
  #ficha .tecnica {
    width: 96%;
    margin: 20px 0;
    float: left;
    padding: 14px;
  }
  /* Listado */
  /* #listado .products_container .product_grid .product {
    min-height: 350px;
  } */
  .triplex {
    padding-top: 95px;
  }
  .triplex .box_col:not(:last-child) {
    margin-bottom: 30px;
  }
  .triplex .box_col {
    margin-top: 0;
  }
  #galeria .row .column {
    flex: 50%;
    max-width: 50%;
  }
  #propiedades-destacadas > .container-fluid > .row > .col-md-3 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .institucional .col {
    flex: 100% !important;
  }
  .institucional .col.image {
    min-height: 450px;
  }
}
@media only screen and (min-width: 578px) and (max-width: 767px) {
  .listings-content-wrapper .listings-content .listings-btn-groups {
    display: block !important;
  }
  .listings-content-wrapper .section-heading {
    display: block !important;
  }
  #listado .products_container .product_grid .product .product_content .product_info .product_name a {
    font-size: calc(16px + 0.4vw);
  }
  /* #listado .products_container .product_grid .product {
    min-height: 650px!important;
  } */
  #propiedades-destacadas .card-info .card-info-title {
    font-size: calc(10px + 0.5vw);
    color: #4c4c4c;
  }
  #propiedades-destacadas .card-info {
    padding: 0.8rem 1rem;
  }
  .list.personalizada li {
    font-size: calc(11px + 0.3vw);
  }
  footer p {
    font-size: calc(12px + 0.3vw);
    margin-bottom: 10px;
  }
  #testimonios .testimonials-slides .owl-prev,
  #testimonios .testimonials-slides .owl-next {
    left: 0;
  }
  #testimonios .testimonials-slides .owl-next {
    left: auto;
    right: 0;
  }
}
@media only screen and (min-width: 380px) and (max-width: 577px) {
  .dark.classy-nav-container a {
    max-width: 130px;
  }
  .listings-content-wrapper .listings-content .listings-btn-groups {
    display: block !important;
  }
  .listings-content-wrapper .section-heading {
    display: block !important;
  }
  #listado-dos .products_container .product_grid .product {
    flex: none;
    display: block;
  }
  #listado-dos .products_container .product_grid .product .product_image {
    width: 100%;
    margin-bottom: 20px;
  }
  #listado-dos .products_container .product_grid .product .product_content {
    width: 100%;
    min-height: 250px;
  }
  #listado-dos .products_container .product_grid .product .product_content .mayormenor {
    width: 150px;
    position: absolute;
    left: 0;
    bottom: 10px;
    margin-top: 20px;
    transform: translateY(11px);
  }
  .extralarge-section {
    padding: 40px 0;
  }
  #mision .col {
    width: 100%;
    flex-basis: auto !important;
  }
  #pagina-cinco .content-right .listing-item .col {
    width: 100%;
    float: left;
  }
  .scroll-to-top img {
    width: 20px;
  }
  .scroll-to-top {
    padding: 11px 0 13px;
  }
  #listado-dos .product_sorting {
    display: block;
  }
  #listado-dos .product_sorting .sorting {
    display: block;
    float: left;
    width: 100%;
  }
  #listado-dos .product_sorting .sorting .item_sorting > li {
    float: left;
    width: 100%;
  }
  #listado-dos .products_container .product_grid .product .product_image {
    max-height: 100%;
  }
  #listado-dos .products_container .product_grid .product .product_content {
    width: 100%;
    min-height: 200px;
  }
  #listado-dos .products_container .product_grid .product .product_content .product_options .product_buy i {
    font-size: calc(14px + 0.4vw);
  }
  #galeria .row .column {
    flex: 100%;
    max-width: 100%;
  }
  #intro-single .grid-option form .form-control {
    width: 90%;
  }
  .single-hs-item {
    height: 550px;
  }
  .hero-slider .hero-text h1 {
    font-size: 30px;
  }
  .hero-slider .hero-text p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .owl-carousel .owl-nav button.owl-next {
    top: auto;
    margin: 0;
    bottom: 0px;
  }
  .owl-carousel .owl-nav button.owl-prev {
    top: auto;
    margin: 0;
    bottom: 0px;
  }
  .owl-dots {
    bottom: 10px;
    left: 50px;
    right: 50px;
  }
  #servicios .titulo {
    font-size: calc(32px + 0.4vw);
  }
  footer p {
    font-size: calc(12px + 0.3vw);
  }
  .offset {
    padding-top: 85px;
  }
  #propiedades-destacadas > .container-fluid > .row > .col-md-3 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  #mision .col {
    width: 100%;
    flex-basis: auto !important;
  }
  /* Iconos */
  #iconos .grid .media-container-row .column {
    float: left;
    width: 100%;
    padding: 0;
  }
  /* Pagina cinco */
  #pagina-cinco .content-right .listing-item .col {
    width: 100%;
    float: left;
  }
  /* Slider */
  #carouselExampleIndicators .carousel-caption {
    padding: 5vh 5vw !important;
    width: 74% !important;
  }
  /* Sidebar */
  .sidenav a {
    font-size: calc(14px + 1vw);
  }
  /* Ws botón */
  #ayuda {
    display: none;
  }
  /* Ofertas */
  .shop-body h3 {
    font-size: calc(12px + 0.3vw) !important;
  }
  /* Global */
  figcaption, menu, article, aside, details, figure, footer, header, main, nav, section, summary {
    display: block;
    font-size: calc(14px + 0.3vw);
  }
  h1 {
    font-size: calc(16px + 3vw);
  }
  h3 {
    font-size: calc(16px + 0.4vw);
  }
  section .title p {
    font-size: calc(12px + 0.8vw);
  }
  section p {
    font-size: calc(12px + 0.4vw);
  }
  footer p {
    font-size: calc(12px + 0.4vw);
  }
  footer .copyright {
    margin-top: 20px;
  }
  /* Listado */
  #listado .products_container .product_grid .product .product_content .product_info .product_name a {
    font-size: calc(14px + 0.3vw);
  }
  /*  #listado .products_container .product_grid .product {
     min-height: 530px!important;
   } */
  /* Ficha */
  #ficha .tecnica {
    width: 96%;
    margin: 20px 0;
    float: left;
    padding: 14px;
  }
  #ficha .tecnica .tab {
    float: left;
    width: 100%;
    height: auto;
  }
  #ficha .tecnica .tab button {
    padding: 15px 15px;
    width: calc(33.3333333333% - 2px);
    display: inline-block;
  }
  #ficha .tecnica .tabcontent {
    width: 100%;
    border-left: 1px solid #eaebed;
    height: auto;
  }
  /*  #listado .products_container .product_grid .product {
    min-height: 450px!important;
  } */
  #ficha .single-product-area .single_product_desc form.cart .box .cart-btn {
    width: 100%;
  }
  #ficha .single-product-area .single_product_desc form.cart p {
    width: 50%;
  }
  #ficha .single-product-area .single_product_desc form.cart .nice-select.wide {
    width: 100%;
  }
  #ficha .single-product-area .single_product_desc form.cart .amado-btn {
    width: 100%;
  }
  #ficha .tecnica {
    width: 100%;
  }
  #propiedades-destacadas .card-info .card-info-title {
    font-size: calc(12px + 0.5vw);
    color: #4c4c4c;
  }
}
@media only screen and (min-width: 320px) and (max-width: 379px) {
  .dark.classy-nav-container a {
    max-width: 130px;
  }
  .listings-content-wrapper .listings-content .listings-btn-groups {
    display: block !important;
  }
  #listado-dos .products_container .product_grid .product .product_content {
    min-height: 250px;
  }
  .listings-content-wrapper .section-heading {
    display: block !important;
  }
}/*# sourceMappingURL=styles.css.map */