/* FLEX_LP-custom.css */

/* interactive content tiles (v1.0)*/
.content-tile[data-interactive="true"] {
	cursor: pointer;
}
.content-tile[data-interactive="true"] .content-tile-image {
    padding-top: 74%;
    background-size: cover;
    background-position: top center;
   /* transition: ease all 0.3s; */
}
.content-tile[data-interactive="true"].active .content-tile-image {
    padding-top: 15px;
}
.content-tile[data-interactive="true"] .content-tile-panel {
    max-height: 0px;
    height: 0px;
    overflow: hidden;
    transition: ease all 0.8s;
    position: relative;
}
.content-tile[data-interactive="true"].active .content-tile-panel {
    height: 100%;
    max-height: 100%; 
}

/* slider content tiles (v2.0) */
.slider-close {
    border: 1px solid #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    font-weight: bold;
    position: absolute;
    right: -17px;
    top: -33px;
    background: white;
    cursor: pointer;
}
.content-tile[data-slider="true"] .content-tile-image {
    padding-top: 74%;
    background-size: cover;
    background-position: top center;
}
.content-tile[data-slider="true"].active .content-tile-image {
    padding-top: 15px;
}
.content-tile[data-slider="true"] .content-tile-panel {
    max-height: 0px;
    height: 0px;
    overflow: visible;
    transition: ease all 0.8s;
    position: relative;
}
.content-tile[data-slider="true"].active .content-tile-panel {
    height: 100%;
    max-height: 100%; 
}