#propertyImageViewArea {
    aspect-ratio: 16/9;
    transition: all 0.3s ease;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#propertyImageViewArea:hover,
#propertyImageViewArea:active,
#propertyImageViewArea:focus {
    box-shadow: var(--dark-shadow-hover);
}

#zoomInImage {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--color-secondary);
    opacity: .6;
}

.view-this-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    background-color: var(--white);
    border: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
}

#fullscreenCarouselModal .carousel-control-next-icon,
#fullscreenCarouselModal .carousel-control-prev-icon {
    background-color: var(--highlight);
    border-radius: var(--btn-border-radius);
}

/* Full screen modal */
#fullscreenCarouselModal .modal-dialog {
    max-width: 100%;
    height: 100%;
    margin: 0;
}

#fullscreenCarouselModal .modal-content {
    height: 100%;
    background-color: var(--dark-overlay);
    border: none;
    border-radius: 0;
}

#fullscreenCarouselModal .carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 100vh;
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    z-index: 9999;
    background: none;
    border: none;
}

.view-this-image.active {
    border: 3px solid var(--highlight);
}

/* Text info */

.highlight-columns [class^="col-"],
.highlight-columns [class*=" col-"] {
    border-left: 1px solid var(--lightgray);
}

.highlight-columns [class^="col-"]:first-of-type,
.highlight-columns [class*=" col-"]:first-of-type {
    border-left: none;
}

.highlight-columns .h5 {
    color: gray;
}

.highlight-columns .h3 {
    margin-bottom: 0;
}

.text-content.h3 {
    line-height: 1.2;
}

.page-template-property-single-template table.table {
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .highlight-columns .h3 {
        margin-bottom: 1rem;
    }

    .highlight-columns [class^="col-"],
    .highlight-columns [class*=" col-"] {
        border-left: none;
    }

    .carousel-buttons-outside-slides .custom-carousel-control .bi {
        font-size: 1rem;
    }

    .carousel-buttons-outside-slides .custom-carousel-control {
        top: 60%;
    }

    #propertyImageViewArea {
        aspect-ratio: 16 / 11;
    }
}