#pluginAppObj_41_91{
    width: 100%;
    
}

#pluginAppObj_41_91 .icmKG_container{
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* padding-top: calc(300px*0.0666);
    padding-bottom: calc(300px*0.0666); */
}

#pluginAppObj_41_91 .icmKG_box {
    position: relative;
    width: 550px;
    height: 300px;
    transform-style: preserve-3d;
    animation: animate 10s linear infinite;
}

@keyframes animate {
    0%{
        transform: perspective(1000px) rotateY(0deg);
        /* transform: perspective(none) rotateY(0deg); */
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
        /* transform: perspective(none) rotateY(360deg); */
    }
}

#pluginAppObj_41_91 .icmKG_box span{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 90deg)) translateZ(350px);
    -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, transparent, transparent, transparent, #0004);    
}

#pluginAppObj_41_91 icmKG_box span a img:hover{
    -webkit-filter: drop-shadow(0px 0px 10px rgba(250, 250, 250, 0.5));
    filter: drop-shadow(0px 0px 10px rgba(250, 250, 250, 0.5));
}

#pluginAppObj_41_91 .icmKG_box span img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}