@charset "UTF-8";

/* edgrid config */
/* fonts */
/* body styles */
/* header styles */
/* nav styles */
/* nav hover styles */
/* home search styles */
/* vehicles styles */
/* featured */
/* footer */
/* global */
/* page header */

/**
  EDgrid es una librería CSS para construir layouts con Responsive Web Design
  Importe este archivo en su proyecto para empezar a usarlo
**/

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

body {
    margin: 0;
    font-family: sans-serif;
}

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

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.container-item {
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.container-item {
    width: 100%;
}

.container-item.container {
    padding-left: 0;
    padding-right: 0;
}

/*
| Mixin para crear cuadriculas
|
| $gridItemSelector: nombre del selector CSS de cada item de la cuadricula
| $listColumns:
|              * lista de numeros de columnas en cada breakpoint (separados por espacios). Ej: 1 2 3 4
|              * el numero de columnas del ultimo breakpoint se hereda a breakpoints superiores
| $gutter: separación entre cada item de la cuadricula (opcional)
|
*/

.button {
    display: inline-block;
    padding: .8em 1.6em;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.s-5,
.container-item.s-5 {
    width: 5%;
}

.s-10,
.container-item.s-10 {
    width: 10%;
}

.s-15,
.container-item.s-15 {
    width: 15%;
}

.s-20,
.container-item.s-20 {
    width: 20%;
}

.s-25,
.container-item.s-25 {
    width: 25%;
}

.s-30,
.container-item.s-30 {
    width: 30%;
}

.s-35,
.container-item.s-35 {
    width: 35%;
}

.s-40,
.container-item.s-40 {
    width: 40%;
}

.s-45,
.container-item.s-45 {
    width: 45%;
}

.s-50,
.container-item.s-50 {
    width: 50%;
}

.s-55,
.container-item.s-55 {
    width: 55%;
}

.s-60,
.container-item.s-60 {
    width: 60%;
}

.s-65,
.container-item.s-65 {
    width: 65%;
}

.s-70,
.container-item.s-70 {
    width: 70%;
}

.s-75,
.container-item.s-75 {
    width: 75%;
}

.s-80,
.container-item.s-80 {
    width: 80%;
}

.s-85,
.container-item.s-85 {
    width: 85%;
}

.s-90,
.container-item.s-90 {
    width: 90%;
}

.s-95,
.container-item.s-95 {
    width: 95%;
}

.s-100,
.container-item.s-100 {
    width: 100%;
}

.s-1-3,
.container-item.s-1-3 {
    width: 33.33333%;
}

.s-2-3,
.container-item.s-2-3 {
    width: 66.66667%;
}

.s-3-3,
.container-item.s-3-3 {
    width: 100%;
}

.s-1-6,
.container-item.s-1-6 {
    width: 16.66667%;
}

.s-2-6,
.container-item.s-2-6 {
    width: 33.33333%;
}

.s-3-6,
.container-item.s-3-6 {
    width: 50%;
}

.s-4-6,
.container-item.s-4-6 {
    width: 66.66667%;
}

.s-5-6,
.container-item.s-5-6 {
    width: 83.33333%;
}

.s-6-6,
.container-item.s-6-6 {
    width: 100%;
}

@media all and (min-width: 640px) {
    .m-5,
    .container-item.m-5 {
        width: 5%;
    }
    .m-10,
    .container-item.m-10 {
        width: 10%;
    }
    .m-15,
    .container-item.m-15 {
        width: 15%;
    }
    .m-20,
    .container-item.m-20 {
        width: 20%;
    }
    .m-25,
    .container-item.m-25 {
        width: 25%;
    }
    .m-30,
    .container-item.m-30 {
        width: 30%;
    }
    .m-35,
    .container-item.m-35 {
        width: 35%;
    }
    .m-40,
    .container-item.m-40 {
        width: 40%;
    }
    .m-45,
    .container-item.m-45 {
        width: 45%;
    }
    .m-50,
    .container-item.m-50 {
        width: 50%;
    }
    .m-55,
    .container-item.m-55 {
        width: 55%;
    }
    .m-60,
    .container-item.m-60 {
        width: 60%;
    }
    .m-65,
    .container-item.m-65 {
        width:

 65%;
    }
    .m-70,
    .container-item.m-70 {
        width: 70%;
    }
    .m-75,
    .container-item.m-75 {
        width: 75%;
    }
    .m-80,
    .container-item.m-80 {
        width: 80%;
    }
    .m-85,
    .container-item.m-85 {
        width: 85%;
    }
    .m-90,
    .container-item.m-90 {
        width: 90%;
    }
    .m-95,
    .container-item.m-95 {
        width: 95%;
    }
    .m-100,
    .container-item.m-100 {
        width: 100%;
    }
    .m-1-3,
    .container-item.m-1-3 {
        width: 33.33333%;
    }
    .m-2-3,
    .container-item.m-2-3 {
        width: 66.66667%;
    }
    .m-3-3,
    .container-item.m-3-3 {
        width: 100%;
    }
    .m-1-6,
    .container-item.m-1-6 {
        width: 16.66667%;
    }
    .m-2-6,
    .container-item.m-2-6 {
        width: 33.33333%;
    }
    .m-3-6,
    .container-item.m-3-6 {
        width: 50%;
    }
    .m-4-6,
    .container-item.m-4-6 {
        width: 66.66667%;
    }
    .m-5-6,
    .container-item.m-5-6 {
        width: 83.33333%;
    }
    .m-6-6,
    .container-item.m-6-6 {
        width: 100%;
    }
}

@media all and (min-width: 1024px) {
    .l-5,
    .container-item.l-5 {
        width: 5%;
    }
    .l-10,
    .container-item.l-10 {
        width: 10%;
    }
    .l-15,
    .container-item.l-15 {
        width: 15%;
    }
    .l-20,
    .container-item.l-20 {
        width: 20%;
    }
    .l-25,
    .container-item.l-25 {
        width: 25%;
    }
    .l-30,
    .container-item.l-30 {
        width: 30%;
    }
    .l-35,
    .container-item.l-35 {
        width: 35%;
    }
    .l-40,
    .container-item.l-40 {
        width: 40%;
    }
    .l-45,
    .container-item.l-45 {
        width: 45%;
    }
    .l-50,
    .container-item.l-50 {
        width: 50%;
    }
    .l-55,
    .container-item.l-55 {
        width: 55%;
    }
    .l-60,
    .container-item.l-60 {
        width: 60%;
    }
    .l-65,
    .container-item.l-65 {
        width: 65%;
    }
    .l-70,
    .container-item.l-70 {
        width: 70%;
    }
    .l-75,
    .container-item.l-75 {
        width: 75%;
    }
    .l-80,
    .container-item.l-80 {
        width: 80%;
    }
    .l-85,
    .container-item.l-85 {
        width: 85%;
    }
    .l-90,
    .container-item.l-90 {
        width: 90%;
    }
    .l-95,
    .container-item.l-95 {
        width: 95%;
    }
    .l-100,
    .container-item.l-100 {
        width: 100%;
    }
    .l-1-3,
    .container-item.l-1-3 {
        width: 33.33333%;
    }
    .l-2-3,
    .container-item.l-2-3 {
        width: 66.66667%;
    }
    .l-3-3,
    .container-item.l-3-3 {
        width: 100%;
    }
    .l-1-6,
    .container-item.l-1-6 {
        width: 16.66667%;
    }
    .l-2-6,
    .container-item.l-2-6 {
        width: 33.33333%;
    }
    .l-3-6,
    .container-item.l-3-6 {
        width: 50%;
    }
    .l-4-6,
    .container-item.l-4-6 {
        width: 66.66667%;
    }
    .l-5-6,
    .container-item.l-5-6 {
        width: 83.33333%;
    }
    .l-6-6,
    .container-item.l-6-6 {
        width: 100%;
    }
}

@media all and (min-width: 1440px) {
    .xl-5,
    .container-item.xl-5 {
        width: 5%;
    }
    .xl-10,
    .container-item.xl-10 {
        width: 10%;
    }
    .xl-15,
    .container-item.xl-15 {
        width: 15%;
    }
    .xl-20,
    .container-item.xl-20 {
        width: 20%;
    }
    .xl-25,
    .container-item.xl-25 {
        width: 25%;
    }
    .xl-30,
    .container-item.xl-30 {
        width: 30%;
    }
    .xl-35,
    .container-item.xl-35 {
        width: 35%;
    }
    .xl-40,
    .container-item.xl-40 {
        width: 40%;
    }
    .xl-45,
    .container-item.xl-45 {
        width: 45%;
    }
    .xl-50,
    .container-item.xl-50 {
        width: 50%;
    }
    .xl-55,
    .container-item.xl-55 {
        width: 55%;
    }
    .xl-60,
    .container-item.xl-60 {
        width: 60%;
    }
    .xl-65,
    .container-item.xl-65 {
        width: 65%;
    }
    .xl-70,
    .container-item.xl-70 {
        width: 70%;
    }
    .xl-75,
    .container-item.xl-75 {
        width: 75%;
    }
    .xl-80,
    .container-item.xl-80 {
        width: 80%;
    }
    .xl-85,
    .container-item.xl-85 {
        width: 85%;
    }
    .xl-90,
    .container-item.xl-90 {
        width: 10%;
    }
    .xl-95,
    .container-item.xl-95 {
        width: 95%;
    }
    .xl-100,
    .container-item.xl-100 {
        width: 100%;
    }
    .xl-1-3,
    .container-item.xl-1-3 {
        width: 33.33333%;
    }
    .xl-2-3,
    .container-item.xl-2-3 {
        width: 66.66667%;
    }
    .xl-3-3,
    .container-item.xl-3-3 {
        width: 100%;
    }
    .xl-1-6,
    .container-item.xl-1-6 {
        width: 16.66667%;
    }
    .xl-2-6,
    .container-item.xl-2-6 {
        width: 33.33333%;
    }
    .xl-3-6,
    .container-item.xl-3-6 {
        width: 50%;
    }
    .xl-4-6,
    .container-item.xl-4-6 {
        width: 66.66667%;
    }
    .xl-5-6,
    .container-item.xl-5-6 {
        width: 83.33333%;
    }
    .xl-6-6,
    .container-item.xl-6-6 {
        width: 100%;
    }
}

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

.to-center.ed-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.to-left {
    float: left;
    width: auto;
    margin-right: 1em;
}

.to-right {
    float: right;
    width: auto;
    margin-left: 1em;
}

.full {
    max-width: 100%;
}

.circle {
    border-radius: 50%;
}

.clearfix:before,
.clearfix:after {
    content: "";
    width: 100%;
    display: table;
    clear: both;
}

.no-padding.container>.container-item {
    padding-left: 0px;
    padding-right: 0px;
}

.no-padding.container-item {
    padding-left: 0px;
    padding-right: 0px;
}

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

.padding-2 {
    padding-left: 20px;
    padding-right: 20px;
}

.padding-3 {
    padding-left: 30px;
    padding-right: 30px;
}

body.sticky-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

body.sticky-footer>footer {
    margin-top: auto;
}

.main-justify {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-distribute {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.main-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.main-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.cross-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.cross-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.cross-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.flex-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.abcenter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.from-s {
    display: none;
}

.to-s {
    display: none;
}

@media screen and (max-width: 639px) {
    .from-m {
        display: none;
    }
}

@media screen and (min-width: 640px) {
    .to-m {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .from-l {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .to-l {
        display: none;
    }
}

@media screen and (max-width: 1439px) {
    .from-xl {
        display: none;
    }
}

@media screen and (min-width: 1440px) {
    .to-xl {
        display: none;
    }
}

.ed-video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.ed-video>iframe,
.ed-video>video,
.ed-video>.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button {
    background: #ddd;
    color: #333;
}

.button:hover {
    background: #d0d0d0;
    text-decoration: none;
}

.button:active {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

body {
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
}

.link-gray {
    color: #606060;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.link--rounded {
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border: 2px solid #e49d2a;
    border-radius: 5px;
    color: #e49d2a;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: color .5s ease-in-out, background .7s ease-in-out;
    transition: color .5s ease-in-out, background .7s ease-in-out;
}

.link--rounded:hover {
    background-color: #e49d2a;
    color: #fff;
    text-decoration: none;
}

.button-search {
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border: 0;
    border-radius: 5px;
    outline: 0;
    background: #d11d26;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.content-title__big {
    display: block;
    position: relative;
    margin-bottom: 50px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 700;
}

.content-title__big::after {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 30px;
    height: 3px;
    margin: 0 auto;
    background-color: #d11d26;
}

.content-title__big h1 {
    font-size: 34px;
}

.content-title__small {
    display: block;
    position: relative;
    margin-bottom: 50px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.content-title__small::after {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 30px;
    height: 3px;
    margin: 0 auto;
    background-color: #d11d26;
}

.content-subtitle__small {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 12px;
    padding-right: 15px;
    padding-left: 15px;
    border-left: 2px solid #d8d8d8;
    background: #f1f1f1;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.content-text {
    margin-bottom: 40px;
}

.content-text p {
    margin: 0;
    padding: 0;
    color: #424242;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2;
}

.ajax-loader {
    padding: 8px;
    padding-top: 30px;
    padding-left: 16px;
}

.vehicles-list-search__item .ajax-loader {
    padding: 13px;
    padding-left: 0;
}

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

.slider-container .back-bar .pointer-label {
    top: -20px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

.home-search__item-price-slider,
.home-search__item--price .slider-container,
.home-search__item--year .slider-container,
.home-search__item--km .slider-container {
    margin: 0 auto;
    margin-top: 30px;
}

.home-search__item-price-slider .pointer-label.high,
.home-search__item--price .slider-container .pointer-label.high,
.home-search__item--year .slider-container .pointer-label.high,
.home-search__item--km .slider-container .pointer-label.high {
    right: 0 !important;
}

.pagination {
    display: inline-block;
    margin-top: 20px;
}

.pagination li {
    display: inline-block;
    margin-right: 6px;
}

.pagination a {
    background-color: #e7e7e7;
    color: #a7a7a7;
    width: 38px;
    height: 35px;
    text-align: center;
    line-height: 1;
    display: table-cell;
    font-size: 14px;
    vertical-align: middle;
    font-weight: 700;
    font-family: Montserrat;
}

.pagination a:hover {
    text-decoration: none;
}

.pagination .active a,
.pagination a:hover {
    background-color: #d11d26;
    color: #fff;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 0 !important;
}

.message {
    display: block;
    padding: 15px 20px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.message--error {
    background-color: #d11d26;
    color: #fff;
}

.message--success {
    background-color: #007414;
    color: #fff;
}

#overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3;
}

.js-close-any {
    overflow: hidden;
}

.js-close-any #overlay {
    display: block;
}

.mobile-sidebar {
    background: #000;
    color: #fff;
    width: 320px;
}

.mobile-sidebar .close {
    text-align: right;
    padding: 10px;
    margin-bottom: 10px;
}

.mobile-sidebar ul {
    margin-bottom: 20px;
}

.mobile-sidebar a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
}

.mobile-sidebar a.active {
    background-color: #191919;
    border-bottom: 1px solid #d11d26;
    border-top: 1px solid #d11d26;
}

.mobile-sidebar__open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (min-width: 1024px) {
    .mobile-sidebar__open {
        display: none;
    }
}

.mobile-sidebar__open i {
    font-size: 27px;
    line-height: 1;
    border-radius: 2px;
    padding: 1px 4px;
    display: block;
    color: #d11d26;
}

.mobile-sidebar__open i::before {
    top: 3px;
}

.mobile-sidebar__open a {
    text-decoration: none;
    color: #000;
}

.mobile-sidebar__open a:hover {
    text-decoration: none;
}

button::-moz-focus-inner {
    border: 0;
    outline: 0;
}

.mobile-sidebar__menu span {
    display: block;
    text-transform: uppercase;
    color: #323232;
    font-size: 10px;
    font-weight: 700;
    padding-left: 10px;
    padding-bottom: 10px;
}

.big-button {
    display: block;
    padding: 25px;
    color: #fff;
    text-decoration: none;
    border-bottom: 4px solid #000;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(59, 0, 0, 0.95)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 0, 0, 0.95) 100%);
    -webkit-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.big-button i {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
    font-size: 50px;
    color: #af8f8f;
}

.big-button span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.big-button:hover {
    text-decoration: none;
}

.big-button:hover i {
    text-decoration: none;
}

.big-button .big-button__title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.big-button .big-button__text {
    font-size: 14px;
    letter-spacing: -.4px;
}

.big-button:hover {
    background: #000;
    border-bottom: 4px solid #d11d26;
}

.table--list__header {
    text-transform: uppercase;
    font-weight: bold;
}

.table--list__header td {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(209, 29, 38, 0.9)), to(rgba(209, 29, 38, 0.95)));
    background: linear-gradient(180deg, rgba(209, 29, 38, 0.9) 0%, rgba(209, 29, 38, 0.95) 100%);
    padding: 10px;
    color: #fff;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.table--list__header td:last-child {
    border-right: 0;
}

.table--list__row {
    font-size: 14px;
}

.table--list__row td {
    padding: 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.table--list__row td a {
    color: #000;
}

.table--list__row td a:hover {
    text-decoration: none;
}

.table--list__row td:last-child {
    border-right: 0;
}

.table--list__row:last-child td {
    border-bottom: 0;
}

.table--list__row:hover td {
    cursor: pointer;
    background: #eaeaea;
}

.table-list {
    border-spacing: 0;
    border: 1px solid #ccc;
    margin-bottom: 40px;
    width: 100%;
}

.table--list__row--title {
    width: 70%;
}

.table--list__row--year,
.table--list__row--price,
.table--list__row--km {
    width: 10%;
}

@font-face {
    font-family: "elceibo-icons";
    src: url("../fonts/elceibo-icons.eot");
    src: url("../fonts/elceibo-icons.eot?#iefix") format("embedded-opentype"), url("../fonts/elceibo-icons.woff") format("woff"), url("../fonts/elceibo-icons.ttf") format("truetype"), url("../fonts/elceibo-icons.svg#elceibo-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}

[data-icon]::before {
    content: attr(data-icon);
    font-family: "elceibo-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-transform: none;
    speak: none;
}

[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: "elceibo-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-transform: none;
    speak: none;
}

.icon {
    position: relative;
}

.icon::before {
    position: relative;
    top: 1px;
}

.icon-phone::before {
    content: "\61";
}

.icon-map::before {
    content: "\62";
}

.icon-search::before {
    content: "\63";
}

.icon-calendar::before {
    content: "\64";
}

.icon-car::before {
    content: "\65";
}

.icon-gear::before {
    content: "\66";
}

.icon-whatsapp::before {
    content: "\67";
}

.icon-facebook::before {
    content: "\68";
}

.icon-twitter::before {
    content: "\69";
}

.icon-instagram::before {
    content: "\6a";
}

.icon-arrow-circle-right::before {
    content: "\6b";
}

.icon-arrow-double-right::before {
    content: "\6c";
}

.icon-arrow-right::before {
    content: "\6d";
}

.icon-arrow-double-down::before {
    content: "\6e";
}

.icon-arrow-down::before {
    content: "\6f";
}

.icon-arrow-double-up::before {
    content: "\70";
}

.icon-arrow-up::before {
    content: "\71";
}

.icon-mail::before {
    content: "\72";
}

.icon-check::before {
    content: "\73";
}

.icon-car,
.icon-gear,
.icon-error {
    top: 1px;
}

.icon-error::before {
    content: "\78";
}

.icon-success::before {
    content: "\79";
}

.icon-menu::before {
    content: "\7a";
}

.header {
    padding-top: 22px;
    padding-bottom: 12px;
    background: #fff;
}

@media screen and (max-width: 1023px) {
    .header {
        padding-top: 8px;
        padding-bottom: 3px;
    }
}

.header__logo img {
    display: inline-block;
    max-width: 180px;
}

@media screen and (max-width: 639px) {
    .header__logo img {
        max-width: 120px;
    }
}

.header__info-item {
    padding-top: 20px;
}

.header__info-item ul {
    display: inline-block;
    float: right;
    width: auto;
    margin-right: 20px;
}

.header__info-item li {
    display: table-cell;
    vertical-align: middle;
}

.header__info-item li.header__info-item-icon {
    padding-right: 10px;
}

.header__info-item li.header__info-item-icon i {
    color: #d9d9d9;
    font-size: 22px;
}

.header__info-label {
    display: block;
    color: #444;
    margin-bottom: -2px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .5px;
}

.header__info-text {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #1c1c1c;
    font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 639px) {
    .footer {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 639px) {
    .footer-item {
        margin-bottom: 30px;
    }
}

.footer-item__title {
    margin-bottom: 20px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.footer-item__title::after {
    display: block;
    content: "";
    width: 15px;
    height: 3px;
    margin-top: 8px;
    background: #d11d26;
}

.footer-item__text {
    color: #a3a3a3;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}

.footer-item__text p {
    padding-right: 40px;
}

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

.footer-item__items i {
    font-size: 15px;
    margin-right: 5px;
    color: #a3a3a3;
    top: 2px;
}

.footer-item__items .icon-arrow-right {
    margin-right: 0;
}

.footer-item__items--nav {
    -webkit-columns: 2;
    columns: 2;
}

.footer-item__items--social li {
    display: inline-block;
    margin-right: 5px;
}

.footer-item__items li,
.footer-item__items a {
    margin-bottom: 8px;
    color: #a3a3a3;
    font-size: 13px;
    text-decoration: none;
}

.footer-item__items li:hover,
.footer-item__items a:hover {
    text-decoration: none;
}

.footer-item__items li:last-child {
    margin-bottom: 0;
}

.footer-item__link {
    display: inline-block;
    text-align: center;
    font-size: 13px;
    color: #fff;
    border-radius: 16px;
    width: 32px;
    height: 32px;
}

.icon__social--facebook {
    padding-top: 6px;
    padding-left: 5px;
    background-color: #263961;
}

.icon__social--facebook i {
    color: #fff;
}

.icon__social--instagram {
    background-color: #fb3958;
    padding-top: 6px;
    padding-left: 5px;
}

.icon__social--instagram i {
    color: #fff;
}

.icon__social--twitter {
    background-color: #0084b4;
    padding-top: 6px;
    padding-left: 5px;
}

.icon__social--twitter i {
    color: #fff;
}

.footer__cp {
    background-color: #000;
    color: #373737;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__cp span {
    position: relative;
    top: 5px;
}

.umadigital {
    display: inline-block;
    max-width: 100px;
}

.nav {
    background-color: #000;
    border-bottom: 1px solid #1b1b1b;
}

.nav ul {
    display: table;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav li {
    display: table-cell;
}

.nav a {
    display: block;
    padding: 12px;
    padding-top: 15px;
    padding-right:6px;
    padding-left: 6px;
    border-bottom: 3px solid transparent;   
    color: #e7e7e7;
    font-size: 0.7em !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.ir-propiedades {
    border-left: 1px solid white;
}

.nav a:hover,
.nav a.active {
    border-bottom: 3px solid #d11d26;
    background-color: #191919;
    text-decoration: none;
}

.mobile-sidebar__contact-info {
    display: table;
    padding-top: 10px;
    padding-left: 10px;
}

.mobile-sidebar__contact-info .header__info-item-icon {
    display: table-cell;
    vertical-align: middle;
    padding-right: 5px;
}

.mobile-sidebar__contact-info .header__info-item-icon i {
    color: #676767;
}

.mobile-sidebar__contact-info li:last-child {
    display: table-cell;
}

.mobile-sidebar__contact-info li:last-child .header__info-label {
    color: #676767;
    padding-bottom: 5px;
}

.mobile-sidebar__contact-info li:last-child .header__info-text {
    color: #fff;
    font-size: 14px;
}

.page {
    margin-bottom: 30px;
}

.page-header {
    position: relative;
    margin-bottom: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: url("../img/page-header.png") no-repeat center top;
    background-size: cover;
    z-index: 2;
}

.page-header::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d11d26', endColorstr='#f2a50016',GradientType=1 );       
    opacity: .95;
    z-index: -1;
}

#home.page-header::before {
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d11d26', endColorstr='#f2d40014',GradientType=1 );
}

.page-header h1 {
    margin-bottom: 5px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.content-error__title {
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-error__title span {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 639px) {
    .content-error__title span {
        max-width: 100%;
    }
}

.content-error__title i {
    font-size: 80px;
    display: block;
    text-align: center;
    color: #d11d26;
}

.contact-sidebar ul {
    display: table;
    margin-bottom: 20px;
}

.contact-sidebar ul .header__info-item-icon {
    display: table-cell;
    vertical-align: middle;
    padding-right: 5px;
}

.contact-sidebar ul .header__info-item-icon i {
    color: #444;
}

#map {
    height: 400px;
}

.home-search {
    position: relative;
    padding-top: 100px;
    background: url("../img/bg-search.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

@media screen and (max-width: 639px) {
    .home-search {
        padding-top: 50px;
    }
}

.home-search select {
    display: none;
}

.home-search::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(59, 0, 0, 0.95)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 0, 0, 0.95) 100%);
}

.home-search h3 {
    display: inline-block;
    position: relative;
    margin-bottom: 35px;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 45px;
    margin-bottom: 60px;
    font-weight: 300;
}

.home-search h3 strong {
    font-weight: 700;
}

.home-search h3::before,
.home-search h3::after {
    display: block;
    position: absolute;
    bottom: -8px;
    left: 50%;
    content: "";
    width: 60px;
    height: 3px;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #d11d26;
}

.home-search h3::after {
    bottom: -15px;
    width: 30px;
}

.home-search p {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.home-search__text {
    text-align: center;
}

.home-search__form {
    position: relative;
    top: 100px;
    margin-bottom: 170px;
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 3px #afafaf;
    box-shadow: 0 4px 3px #afafaf;
}

@media screen and (max-width: 639px) {
    .home-search__form {
        top: 50px;
        margin-bottom: 100px;
    }
}

.home-search__item {
    position: relative;
    padding-right: 0;
    padding-left: 0;
    border: 1px solid #ccc;
    border-right: 0;
}

@media screen and (max-width: 1023px) {
    .home-search__item {
        border-right: 1px solid #ccc;
    }
}

.home-search__item label {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 1px;
    padding-top: 13px;
    padding-bottom: 0;
    padding-left: 17px;
    color: #2f2f2f;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.home-search__item--model .nice-select {
    display: none;
}

.home-search__item--border-right {
    border-right: 1px solid #ccc;
}

.home-search__item-actions {
    padding-top: 30px;
    padding-right: 0;
    text-align: right;
}

@media screen and (max-width: 639px) {
    .home-search__item-actions {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
}

.home-search__item-action {
    display: inline;
    margin-right: 15px;
}

.home-search__item-action:last-child {
    margin-right: 0;
}

.nice-select {
    width: 100%;
    height: auto;
    padding-top: 20px;
    border: 0;
    background-color: transparent;
}

.nice-select .list {
    right: -1px;
    left: -1px;
    width: auto;
    max-height: 300px;
    margin-top: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    overflow-y: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.nice-select .list::-webkit-scrollbar-track {
    background-color: #ccc;
}

.nice-select .list::-webkit-scrollbar {
    width: 7px;
}

.nice-select .list::-webkit-scrollbar-thumb {
    background-color: #848484;
}

.home-search__item-price {
    border-right: 1px solid #ccc;
}

.home-search__item-price .list {
    display: none;
}

.home-search__item-price-slider {
    display: none;
    position: absolute;
    width: 300px !important;
    right: 30px;
    bottom: 22px;
    padding: 30px;
    padding-top: 40px;
    padding-bottom: 30px;
    border: 1px solid #ccc;
    background-color: #fff;
    opacity: 0;
    z-index: 999;
}

.home-search__item-price-slider--open {
    display: block;
    opacity: 1;
}

.content-featured__title {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 80px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.content-featured__title::before,
.content-featured__title::after {
    display: block;
    position: absolute;
    bottom: -8px;
    left: 50%;
    content: "";
    width: 60px;
    height: 3px;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #d11d26;
}

.content-featured__title::after {
    bottom: -15px;
    width: 30px;
}

.vehicle-item {
    padding-bottom: 1em;
    font-family: "Montserrat", sans-serif;
}

.vehicle-item__inner {
    border: 1px solid #f5f5f5;
    border-bottom: 2px solid #ccc;
    background-color: #fff;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.vehicle-item__inner:hover {
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 3px 15px #b3b3b3;
    box-shadow: 0 3px 15px #b3b3b3;
    cursor: pointer;
}

.vehicle-item__image {
    position: relative;
}

.vehicle-item__image-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    opacity: 0;
}

.vehicle-item__image-hover i {
    display: block;
    font-size: 25px;
    line-height: 1;
    text-align: center;
}

.vehicle-item__image-hover span {
    font-size: 13px;
    letter-spacing: 1px;
}

.vehicle-item__image-hover a {
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-item__image-hover a:hover {
    text-decoration: none;
}

.vehicle-item__data {
    padding: 10px;
}

.vehicle-item__title {
    margin-bottom: 11px;
}

.vehicle-item__title a {
    color: #292929;
    font-size: 14px;
    font-weight: 700;
}

.vehicle-item__title a:hover {
    text-decoration: none;
}

.vehicle-item__price {
    margin-bottom: 20px;
    color: #00622c;
    font-size: 14px;
    font-weight: 600;
}

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

.vehicle-item__info li {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vehicle-item__info li i {
    padding-right: 2px;
    font-size: 12px;
    color: #cdcdcd;
}

.vehicle-item__info li span {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.vehicle-item__inner:hover .vehicle-item__image-hover {
    opacity: 1;
}

.vehicles-more {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 60px;
    text-align: center;
}

.items-featured {
    padding-top: 40px;
    padding-bottom: 40px;
    background: url(../img/fondo.png) no-repeat center center fixed;
    background-size: cover;
}

.item-featured {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-right: 1px solid rgba(214, 214, 214, 0.51);
}

.item-featured--no-border {
    border-right: 0;
}

.item-featured__icon {
    margin-bottom: 20px;
}

.item-featured__icon img {
    display: block;
    max-width: 75px;
    margin: 0 auto;
}

.item-featured__text {
    text-align: center;
}

.item-featured__text h4 {
    margin-bottom: 30px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.item-featured__text p {
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.4px;
    line-height: 1.8;
}

.vehicle-single {
    margin-bottom: 40px;
}

.lSPager li {
    position: relative;
}

.lSPager li::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: rgba(235, 235, 235, 0.55);
    cursor: pointer;
}

.lSPager li:hover,
.lSPager .active {
    border-radius: 0;
}

.lSPager .active::before {
    display: none;
}

@media screen and (max-width: 639px) {
    .vehicle-single__gallery {
        padding-bottom: 30px;
    }
}

.vehicle-single__gallery-image {
    width: 100%;
}

.vehicle-single__info .vehicle-single__info-item {
    display: table;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dcdcdc;
}

.vehicle-single__info .vehicle-single__info-name {
    display: table-cell;
    width: 35%;
    color: #717171;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
}

.vehicle-single__info .vehicle-single__info-value {
    display: table-cell;
    width: 65%;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

.vehicle-single__info-list {
    margin-bottom: 40px;
}

.vehicle-single__info-list ul {
    margin: 0;
    padding: 0;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-column-count: 2;
    column-count: 2;
}

.vehicle-single__info-list ul li {
    padding-bottom: 14px;
    color: #2f2f2f;
    font-size: 14px;
}

.vehicle-single__info-list ul .icon {
    position: relative;
    top: 2px;
    color: #00622c;
}

.vehicle-single__contact {
    padding-bottom: 15px;
}

.vehicle-single__contact .link--rounded {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.vehicle-single__share {
    padding-top: 0;
    padding-bottom: 25px;
}

.vehicle-single__price {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

.vehicle-related {
    margin-bottom: 30px;
}

.vehicles-list__items,
.vehicles-list__sidebar {
    padding: 10px;
}

@media screen and (max-width: 639px) {
    .vehicles-list__items,
    .vehicles-list__sidebar {
        padding: 0;
    }
}

@media screen and (max-width: 639px) {
    .vehicles-list__sidebar {
        padding-bottom: 30px;
    }
}

.vehicles-list__items {
    padding-left: 0;
}

.vehicles-list-search__item {
    margin-bottom: 20px;
    border: 0;
}

.vehicles-list-search__item select {
    display: none;
}

.vehicles-list-search__item label {
    position: inherit;
    left: 0;
    padding: 0;
}

.vehicles-list-search__item .nice-select {
    float: none;
    padding-top: 0;
    border: 1px solid #ccc;
    border-radius: 0;
}

.vehicle-item__image-src img {
    width: 100%;
}

.vehicles-list-search__item--submit {
    padding-top: 30px;
}

@media screen and (max-width: 639px) {
    .vehicles-list-search__item--submit {
        padding-top: 10px;
    }
}

.content-title__filters {
    position: relative;
    cursor: pointer;
}

.content-title__filters::before {
    font-family: "elceibo-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-transform: none;
    speak: none;
    position: absolute;
    top: 30%;
    right: 0;
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
    content: "\6f";
    font-size: 14px;
}

.vehicle-single__contact-modal {
    width: 100%;
    max-width: 900px;
    border-radius: 4px;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all .33s;
    transition: all .33s;
}

.vehicle-single__contact-modal .content-title__small {
    margin-bottom: 30px;
}

.label {
    display: block;
    color: #2f2f2f;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 5px;
}

.input__text,
.input__textarea {
    width: 100%;
    outline: 0;
    border: 1px solid #ccc;
    color: #000;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    padding: 12px;
    resize: none;
}

.input__textarea {
    height: 150px;
}

.input__submit {
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border: 0;
    border-radius: 5px;
    outline: 0;
    background: #272727;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.fancybox-slide {
    padding: 10px;
}

.fancybox-slide--current .vehicle-single__contact-modal {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.home-search__action {
    position: relative;
    display: inline-block;
    border: 3px solid #d11d26;
    background-color: #191919;
    padding: 12px;
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    outline: 0;
}

.home-search__action i {
    font-size: 20px;
}

.home-search__action--link {
    color: #e7e7e7;
    text-decoration: none;
    line-height: 1.8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-text_small {
    font-size: 14px;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

#reservar .content-title__small {
    margin-bottom: 20px;
}

.container-whatsapp {
    display: block;
    background: rgba(204, 204, 204, 0.75);
    padding: 8px 20px;
    border-radius: 45px;
    box-shadow: 0 1px 5px #969696;
}

.container-whatsapp img {
    width: 24px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.container-whatsapp span {
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    top: -4px;
    padding-left: 10px;
}

.container-whatsapp:hover {
    text-decoration: none;
}

.container-banner {
    margin-bottom: 30px;
    border: 1px solid #ccc;
    display: block;
}

/* NUEVOS ESTILOS */

.with_frm_style .frm_primary_label {
    text-transform: uppercase  !important;
}

.frm_style_formidable-style.with_frm_style textarea {
    min-height: 148px;
}

.pum-theme-lightbox .pum-title {
    font-weight: 600 !important;
    margin-bottom: 20px;
}