.lcake-sticky-video {
    position: relative;
    width: 100%;
}

.lcake-sticky-video.is-docked {
    position: fixed;
    bottom: 24px;
    width: 320px;
    z-index: 9999;
    animation: lcake-sticky-video-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        right 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lcake-sticky-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
    transition: border-radius 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lcake-sticky-video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.lcake-sticky-video--bottom-right .lcake-sticky-video.is-docked {
    right: 24px;
}

.lcake-sticky-video--bottom-left .lcake-sticky-video.is-docked {
    left: 24px;
}

.lcake-sticky-video-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease,
        color 0.3s ease,
        width 0.3s ease,
        height 0.3s ease,
        font-size 0.3s ease,
        border-radius 0.3s ease,
        transform 0.2s ease;
}

.lcake-sticky-video-close:active {
    transform: scale(0.9);
}

.lcake-sticky-video.is-docked .lcake-sticky-video-close {
    display: flex;
}

@keyframes lcake-sticky-video-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Remove text decoration for a tags */
.elementor-widget-lcake-kit-sticky-video a,
.lcake-sticky-video a,
.lcake-kit-sticky-video a,
.lc-header-footer-sticky-video a {
    text-decoration: none !important;
}