.kcx-scrollshot-widget {
    width: 100%;
}

.kcx-scrollshot-frame {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #111111;
}

.kcx-scrollshot-thumb,
.kcx-scrollshot-main {
    position: absolute;
    inset: 0;
}

.kcx-scrollshot-thumb {
    opacity: 1;
    transition: opacity 200ms ease;
    z-index: 2;
}

.kcx-scrollshot-main {
    opacity: 0;
    transition: opacity 200ms ease;
    z-index: 1;
}

.kcx-scrollshot-widget.no-thumb .kcx-scrollshot-main {
    opacity: 1;
}

.kcx-scrollshot-widget.no-thumb .kcx-scrollshot-thumb {
    display: none;
}

.kcx-scrollshot-widget.is-hover .kcx-scrollshot-thumb {
    opacity: 0;
    pointer-events: none;
}

.kcx-scrollshot-widget.is-hover .kcx-scrollshot-main {
    opacity: 1;
}

.kcx-scrollshot-widget.is-returning .kcx-scrollshot-thumb {
    opacity: 0;
    pointer-events: none;
}

.kcx-scrollshot-widget.is-returning .kcx-scrollshot-main {
    opacity: 1;
}

.kcx-scrollshot-thumb img,
.kcx-scrollshot-main img {
    display: block;
    width: 100%;
    height: auto;
}

.kcx-scrollshot-thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kcx-scrollshot-main img {
    transform: translateY(0px);
    will-change: transform;
}
