/*
    vidahogarpropiedades.cl
    estates.css
*/
@charset "utf-8";

/* estates-aside */
.estates-aside {
    background-color: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* estates-widget */
.estates-widget {
    background-color: white;
    padding: 20px 30px;
}

.estates-widget .widget-title {
    color: #666666;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.6em;
    line-height: 1.2em;
}

.estates-widget .widget-title::before {
    display: inline-block;
    background: #df0207 none repeat scroll 0 0;
    content: '';
    height: 0.8em;
    width: 3px;
    margin-right: 10px;
}

/* widget-search */
.widget-search {
    position: relative;
}

.widget-search input {
    border: none;
    width: 100%;
    height: 50px;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 50px;
}

.widget-search button {
    border: none;
    background: transparent none repeat scroll 0 0;
    color: #999;
    font-size: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease 0s;
    width: 50px;
}

.widget-search button:hover {
    color: #df0207;
}

/* estates-options */
.estates-options {
    background-color: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 10px 30px;
    margin-bottom: 30px;
}

.estates-options .showing span {
    color: #999999;
    display: block;
    line-height: 30px;
}

.estates-options select.form-control {
    border: 1px solid #eeeeee;
    color: #999999;
    font-size: 13px;
    height: 30px;
    padding-left: 20px;
    width: auto;
    display: inline;
}

/* widget-categories, widget-locations */
.estates-marks ul, 
.estates-categories ul, 
.estates-locations ul {
    padding: 0;
}

.estates-marks ul li > a,
.estates-categories ul li > a,
.estates-locations ul li > a {
    color: #999999;
    display: inline-block;
    text-transform: capitalize;
}

.estates-marks ul li > a,
.estates-categories ul li > a,
.estates-locations ul li > a {
    font-size: 14px;
    line-height: 30px;
}

.estates-marks ul li,
.estates-categories ul li,
.estates-locations ul li {
    position: relative;
    list-style: none;
}

.estates-marks ul li > a.active,
.estates-locations ul li > a.active,
.estates-categories ul li > a.active {
    color: #df0207;
}

/* widget-actions */
.estates-actions button {
    border: none;
    background: transparent none repeat scroll 0 0;
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease 0s;
    width: 100%;
    height: 50px;
}

.estates-actions button:hover {
    color: #df0207;
}

/* estates-pagination */
.estates-pagination {
    padding: 10px;
}

.estates-pagination > li {
    display: inline-block;
    margin-right: 3px;
}

.estates-pagination > li:last-child {
    margin-right: 0;
}

.estates-pagination > li > a {
    border: 1px solid #eee;
    color: #999999;
    display: block;
    font-family: roboto;
    font-size: 13px;
    font-weight: 400;
    height: 30px;
    line-height: 28px;
    text-align: center;
    width: 30px;
}

.estates-pagination > li > a i {
    line-height: 28px;
}

.estates-pagination > li.active a,
.estates-pagination > li:hover a {
    border-color: #df0207;
    color: #df0207;
}

/* estate-box */
.estate-card {
    position: relative;
    display: block;
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);  
       -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    margin: 15px 0 15px 0;
    padding: 0;
    overflow: visible;
    background-color: white;
}

.estate-card .label-wrap {
    position: absolute;
    left: 1.5rem;
    top: -1.3rem;
    z-index: 9;
}

.estate-card .label-wrap .label {
    display: inline-block;
    position: relative;
    background-color: #e50027;
    color: #fff;
    padding: 5px 5px 5px 10px;
    font-size: 14px;
    line-height: 16px;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

.estate-card .label-wrap .label span {
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    right: -8.5px;
    top: 0;
    border: 0 solid transparent;
    border-bottom-width: 13px;
    border-top-width: 13px;
    border-left: 9px solid #e50027;
}

.estate-card .thumb {
    margin: 0;
    position: relative;
}

.estate-card .overlay {
    background: rgba(251,176,25,0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
            transition: all 0.4s ease-in-out 0s;
}

.estate-card .overlay-contents {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.estate-card .thumb {
    height: 250px;
    overflow: hidden;
}

.estate-card .thumb:hover .overlay {
    opacity: 1;
}

.estate-card .thumb:hover .overlay-contents {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.estate-card .thumb a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.estate-card .thumb .overlay-contents a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem;
    border: 1px solid #fff;
    padding: 1.5rem 2rem;
    line-height: 1.5;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.estate-card .thumb .overlay-contents a:hover {
    color: #fbb019;
    background: #fff;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.estate-card .thumb img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.2s -webkit-transform linear;
    transition: 0.2s -webkit-transform linear;
    transition: 0.2s transform linear;
    transition: 0.2s transform linear, 0.2s -webkit-transform linear;
}

.estate-card .details {
    padding: 2.5rem;
}

.estate-card .details .title {
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.5;
    -webkit-transition: 0.2s all linear;
            transition: 0.2s all linear;
}

.estate-card .details .excerpt {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #808080;
}

.estate-card .meta-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.estate-card .meta-wrap .meta {
    padding: 0 1.5rem 1.5rem 0;
}

.estate-card .meta-wrap .meta .name {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 1rem;
}

.estate-card .meta-wrap .meta .fa {
    color: #b3b3b3;
    font-size: 2.2rem;
}

.estate-card .meta-wrap .meta .figure {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0 0 0 1rem;
}

.estate-card .price .status {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 0.5rem;
}

.estate-card .price .value {
    font-size: 2.2rem;
    color: #e50027;
}

/* estate-list */
.estate-list {
    display: block;
    width: 100%;
    padding: 0;
    margin: 1.3rem auto 1.3rem;
}

@media (min-width: 320px) {
    .estate-list {
        max-width: 35rem;
    }
}

@media (min-width: 768px) {
    .estate-list {
        max-width: 100%;
    }
}

.estate-list .label-wrap {
    left: 0;
}

.estate-list .list-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 15rem;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .estate-list .list-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        min-height: 17rem;
    }
}

@media (min-width: 1280px) {
    .estate-list .list-wrap {
        min-height: 19rem;
    }
}

.estate-list .thumb {
    position: relative;
    margin: 0;
    width: 100%;
}

@media (min-width: 320px) {
    .estate-list .thumb {
        height: 20rem;
    }
}

@media (min-width: 480px) {
    .estate-list .thumb {
        height: 25rem;
    }
}

@media (min-width: 768px) {
    .estate-list .thumb {
        height: initial;
        width: 30%;
    }
}

.estate-list .details-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 2rem 2.5rem;
    background: #fff;
    text-align: left;
}

@media (min-width: 768px) {
    .estate-list .details-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 70%;
    }
}

.estate-list .details {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

@media (min-width: 768px) {
    .estate-list .details {
        width: 65%;
        padding: 0 1.5rem 0 0;
        border-right: 1px solid rgba(128, 128, 128, 0.2);
        border-bottom: none;
    }
}

@media (min-width: 1024px) {
    .estate-list .details {
        padding: 0 1rem 0 0;
    }
}

@media (min-width: 1140px) {
    .estate-list .details {
        padding: 0 2rem 0 0;
    }
}

.estate-list .details .title {
    margin: 0;
    margin-bottom: 1rem;
}

.estate-list .details .title a {
    color: #1a1a1a;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.5;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.estate-list .price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 2rem 0 0 0;
}

@media (min-width: 768px) {
    .estate-list .price {
        width: 35%;
        padding: 0 0 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .estate-list .price {
        padding: 0 0 0 1rem;
    }
}

@media (min-width: 1140px) {
    .estate-list .price {
        padding: 0 0 0 2rem;
    }
}

/* estate top */
#top-wrapper.top-wrapper-estate {
    height: 80vh;
    background-position: center center;
}
    
#top-wrapper.top-wrapper-estate .filter-wrapper {
    top: 15vh;
}

#top-wrapper.top-wrapper-estate .title-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background-image: -webkit-linear-gradient(transparent, #000);
    background-image: linear-gradient(transparent, #000);
}

#top-wrapper.top-wrapper-estate .title-wrapper .estate-title {
    text-align: left;
}

#top-wrapper.top-wrapper-estate .title-wrapper .estate-title .title-h {
    padding: 0 0 1rem;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
    color: white;
}

#top-wrapper.top-wrapper-estate .title-wrapper .estate-title .subtitle-h {
    font-size: 1.5rem;
    line-height: 1.5;
    color: white;
}


#top-wrapper.top-wrapper-estate .title-wrapper .estate-price {
    padding: 0;
    text-align: right;
}

#top-wrapper.top-wrapper-estate .title-wrapper .estate-price .status {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 0.5rem;
    color: white;
}

#top-wrapper.top-wrapper-estate .title-wrapper .estate-price .value {
    font-size: 2.2rem;
    color: #e50027;
}

/* estate-details */
.estate-details {
    font-size: 14px;
}

.estate-details .meta-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.estate-details .meta-wrap .meta {
    padding: 0 1.5rem 1.5rem 0;
}

.estate-details .meta-wrap .meta .name {
    font-size: 1.3em;
    font-weight: 500;
    margin: 0;
    margin-bottom: 1rem;
}

.estate-details .meta-wrap .meta .fa {
    color: #b3b3b3;
    font-size: 2.2em;
}

.estate-details .meta-wrap .meta .figure {
    font-size: 1.3em;
    font-weight: 500;
    padding: 0 0 0 1rem;
}

.estate-details .excerpt {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.2em;
}

/* estate-data */
.estate-data {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    .estate-data {
        -webkit-columns: 2;
           -moz-columns: 2;
                columns: 2;
        -webkit-column-gap: 2em;
           -moz-column-gap: 2em;
                column-gap: 2em;
    }
}

.estate-data ul {
    padding: 0;
}

.estate-data ul li {
    list-style: none;
    -webkit-column-break-inside: avoid;
              page-break-inside: avoid;
                   break-inside: avoid;
    padding: 5px 0;
}

.estate-data ul li a {
    display: block;
    color: #242424;
    font-size: 18px;
    padding: 12px 0;
    position: relative;
}

.estate-data ul li a:after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 1px;
    top: 50%;
    border-bottom: 1px dashed;
    color: #9d9d9d;
    z-index: 1;
}

.estate-data ul li a span.name {
    position: relative;
    z-index: 9;
    padding-right: 10px;
    display: inline-block;
    background-color: #f7f7f7;
}

.estate-data ul li a span.value {
    display: inline-block;
    position: relative;
    z-index: 9;
    padding-left: 10px;
    float: right;
    color: #e50027;
    background-color: #f7f7f7;
}

/* estate-album */
#estate-carousel li > a {
    display: block;
    height: 40vh;
    background-color: #f7f7f7;
    text-align: center;
}

@media (min-width: 992px) {
    #estate-carousel li > a {
        height: 90vh;
    }
}

#estate-carousel li > a > img {
    display: inline-block;
    width: auto;
    height: 100%;
}

.estate-album .lSGallery li {
}

.estate-album .lSGallery li a {
    background-color: #f7f7f7;
    display: inline-block !important;
    height: 10vh !important;
    width: 100% !important;
    text-align: center;
}

.estate-album .lSGallery li img {
    height: 100% !important;
    display: inline-block !important;
}

@media (min-width: 992px) {
    .estate-album .lSGallery li a {
        height: 20vh !important;
    }
}
