/* Start custom CSS */#pe-imgc-content {
    position: relative;
}

#pe-imgc-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    max-height: 40vh;
    object-fit: cover;
}

#pe-imgc-content img.active {
    opacity: 1;
    z-index: 1;
}
#pe-imgc-controls div {
    cursor: pointer;
    border: 2px solid var(--trans);
}
#pe-imgc-controls div.active {
    border: 2px solid var(--c1);
}/* End custom CSS */