.el-lightbox:hover {
    cursor: pointer;
}

.play-btn {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.play-btn .play-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--agrox-primary-color, #C8F31D);
    -webkit-animation: play-btn-ripple 2s linear infinite;
    animation: play-btn-ripple 2s linear infinite;
    transition: all .4s ease-in-out;
}

.play-btn .play-icon svg {
    width: 12px;
}

.play-btn:hover .play-icon {
    background-color: #fff;
    color: var(--agrox-primary-color, #C8F31D);
}

.play-btn small {
    font-size: 13px;
    position: relative;
    color: var(--agrox-grey-color, #747475);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all .4s ease-in-out;
}

.play-btn:hover small {
    color: var(--agrox-primary-color, #C8F31D);
}

@-webkit-keyframes play-btn-ripple {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
        box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
        box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
    }
}

@keyframes play-btn-ripple {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
        box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
        box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
    }
}

/* Video Background */
.dl-video-expand-wrap{
    --dl-m-size: 10%;
    --dl-m-size-2: 90%;
    width: 100%;
    height: 550px;
    position: relative;
    clip-path: polygon(
        var(--dl-m-size) var(--dl-m-size), var(--dl-m-size-2) var(--dl-m-size), var(--dl-m-size-2) var(--dl-m-size-2), var(--dl-m-size) var(--dl-m-size-2));
}

.dl-video-expand-wrap .bg-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.dl-video-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dl-play-btn-link{
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    z-index: 1;
}