/* Start custom CSS */#lga::after, #lga::before {
    content: "";
    width: 26vw;
    height: 100%;
    position: absolute;
    top: 0;
    //left: 74vw;
    right: 0;
    background: linear-gradient(90deg, #ffffff00, #f4f6fb);
    z-index: 99;
}
#lga::before {
    left: 0;
    background: linear-gradient(270deg, #ffffff00, #f4f6fb);
}

#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);
    background: #fff;
}
#pe-imgc-controls div.active {
    //border: 2px solid var(--c1);
    background: var(--c2);
}/* End custom CSS */