
/*  firstLook  */

.catalog .firstLook .breadcrumb {
    background-color: var(--banner-bg-color);
}

.catalog .firstLook .photo {
    position:relative;
}
.catalog .firstLook .photo:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, black 100%);
}

.catalog .firstLook .photoMargin {
    background-color: black;
}

@media (max-width: 991px) {
    .catalog .firstLook .photo:before {
        background: linear-gradient(0deg, rgba(0,0,0,0) 0%, black 100%) !important;
    }
    .catalog .firstLook .photoMargin {
        min-height: 25vh;
    }
    
}

.catalog .firstLook .summery {
    position:absolute;
    top: 0px;
    right: 0px;
    width:auto;
    z-index: 999;
}


/*  featuresPhoto  */

.catalog .featuresPhoto .carousel-indicators .thumbnail {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 250px;
}

.catalog .featuresPhoto .carousel-indicators .thumbnail:not(.active) {
    opacity: 0.7;
}

.catalog .featuresPhoto .carousel-indicators {
    position: static;
    display: block;
    text-align: center;
}


.tiled-gallery img {
    max-height: 250px;
    flex-grow: 1;
    /*object-fit: cover;*/
    margin: 2px;
    max-width: 250px;
}