.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(--struqta-primary-color, #FE5A0E);
    -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(--struqta-primary-color, #FE5A0E);
}

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

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

@-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);
    }
}

.Struqta-video.embed-responsive {
    border: 1px solid #ddd;
    padding: 5px;
}

/* Video Box */
.dl-video-box-wrap {
    position: relative;
    line-height: 1;
    overflow: hidden;
}

.dl-video-box-wrap img {
    width: 100%;
    display: block;
}

.dl-video-box-wrap .dl-video-box-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.dl-video-box-wrap .dl-video-box-overlay .overlay {
    background-color: #000;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
    z-index: -1;
}

/* Play button 1 */
.dl-vb-1 {
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.dl-vb-1 svg {
    width: 110px;
    height: 110px;
}

.dl-vb-1 .circle {
    stroke: #ffffff;
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0.3;
}

.dl-vb-1 .triangle {
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #ffffff;
    transform: translateY(0);
}

.dl-vb-1:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: #ffffff;
    animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    70% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.dl-vb-1:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1;
}

/* Play button 2 */
.dl-vb-2 {
    background-color: #fff;
    position: relative;
    width: 100px;
    height: 100px;
    font-size: 24px;
    color: var(--struqta-dark-color, #1e2023);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dl-vb-2 svg{
    width: 24px;
}

.dl-vb-2:hover {
    background-color: var(--struqta-bg-dark, #1e2023);
    color: #fff;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dl-vb-2 .ripple, .dl-vb-2 .ripple:before, .dl-vb-2 .ripple:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 98px;
    height: 98px;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    animation: rippleOne 3s infinite;
}

.dl-vb-2 .ripple:before {
    animation-delay: .9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.dl-vb-2 .ripple:after {
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes rippleOne {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes rippleOne {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

/* Play Button 3 */
.dl-vb-3 {
    background-color: #fff;
    cursor: pointer;
    font-size: 24px;
    fill: var(--struqta-dark-color, #1e2023);
    z-index: 2;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: btn-anim 1s linear infinite;
    transition: all .5s linear;
}

.dl-vb-3 svg {
    width: 30px;
    margin-left: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
}

.dl-vb-3:hover {
    background-color: var(--struqta-dark-color, #1e2023);
    fill: #fff;
    transition: all .5s linear;
}

@keyframes btn-anim {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0);
    }
}

/* Style 4 */
.dl-style-4 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.dl-style-4 .dl-style-4-inner {
    width: 100%;
    padding: 40px 50px;
}

.dl-style-4 .dl-vb-play-icon {
    background-color: var(--struqta-bg-primary, #FE5A0E);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.dl-style-4 .dl-vb-play-icon svg{
    fill: currentColor;
    width: 14px;
}

.dl-style-4 .dl-vb-play-icon:hover {
    background-color: var(--struqta-bg-dark, #1e2023);
    color: #fff;
}

.dl-style-4 .dl-vb-play-icon.top-left {
    top: 0;
    left: 0;
}

.dl-style-4 .dl-vb-play-icon.top-right {
    top: 0;
    right: 0;
}

.dl-style-4 .dl-vb-play-icon.bottom-left {
    bottom: 0;
    left: 0;
}

.dl-style-4 .dl-vb-play-icon.bottom-right {
    bottom: 0;
    right: 0;
}

.dl-style-4 .dl-style-4-inner .vb-icon {
    display: inline-block;
    font-size: 40px;
    margin: 0 0 10px;
    color: var(--struqta-primary-color, #FE5A0E);
}

.dl-style-4 .dl-style-4-inner .vb-icon svg{
    fill: currentColor;
    width: 40px;
}

.dl-style-4 .vb-title {
    margin: 0;
    font-family: var(--struqta-primary-font, "Inter");
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1px;
    font-weight: 700;
    color: #000018;
}

.dl-style-4 .vb-desc {
    font-family: var(--struqta-base-font, "DM Sans");
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: var(--struqta-grey-color, #555);
}

@media (max-width: 600px) {

    .dl-style-4 .vb-title br,
    .dl-style-4 .vb-desc br {
        display: none;
    }
}