.enova-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;
    line-height: 100px;
    font-size: 24px;
    color: #333;
    text-align: center;
    display: block;
    border-radius: 50%;
    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:hover {
    background-color: #333;
    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%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -webkit-animation: rippleOne 3s infinite;
    -moz-animation: rippleOne 3s infinite;
    -ms-animation: rippleOne 3s infinite;
    -o-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

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

.dl-vb-2 .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    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: #333;
    z-index: 2;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    -webkit-animation: btn-anim 1s linear infinite;
    animation: btn-anim 1s linear infinite;
    -webkit-transition: all .5s linear;
    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: #333;
    fill: #fff;
    -webkit-transition: all .5s linear;
    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: #5333f2;
    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:hover {
    background-color: #000018;
    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: #5333f2;
}

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

.dl-style-4 .vb-desc {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #696e77;
}

@media (max-width: 600px) {

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