.dko-video {
    display: flex;
    flex-direction: column;
    padding: 40px var(--global-lateral-padding) 40px;
}

.dko-video__title {
    font-size: 32px !important;
    line-height: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.dko-video__text {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.dko-video__container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dko-video__video {
    display: flex;
    flex-direction: column;
}

.dko-video__video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.dko-video__poster-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 1;
    z-index: 1;
    pointer-events: all;
    transition: all 400ms ease-in-out;
}
.dko-video__poster-wrapper.hide {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.dko-video__poster-wrapper::before {
    content:'';
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dko-video__poster-wrapper::after {
    content: url("data:image/svg+xml,%3Csvg width='10' height='13' viewBox='0 0 10 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.51687 0.945159L9.02822 5.95273C9.58569 6.32437 9.58569 7.14354 9.02822 7.51519L1.51687 12.5228C0.892903 12.9387 0.0571289 12.4914 0.0571289 11.7415V1.72639C0.0571289 0.976476 0.892903 0.529183 1.51687 0.945159ZM1.93497 9.987L6.81547 6.73364L1.93497 3.48029V9.987Z' fill='%230970E6'/%3E%3C/svg%3E%0A");
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}

.dko-video__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dko-video__video-wrapper iframe {
    display: flex;
    width: inherit;
    height: inherit;
    display: flex;
    aspect-ratio: 590/333 !important;
}

.dko-video__top-wrapper {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 8px;
}

.video-duration-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.dko-video__video-title {
    font-weight: 500;
}

.dko-video__duration {
    color: #9A9A9A;
    margin-left: 10px;
}

.dko-video__video-text {
    font-size: 16px;
    line-height: 26px;
}

@media screen and (min-width: 991px) {
     .dko-video__title {
        font-size: 60px !important;
        line-height: 64px;
        text-align: center;
        max-width: 80%;
        margin: 0 auto 20px;
    }
    
    .dko-video__text {
        font-size: 18px;
        line-height: 32px;
        text-align: center;
        max-width: 80%;
        margin: 0 auto 20px;
    }
    .dko-video__video {
        width: calc(50% - 15px);
    }
    
    .dko-video__video.big {
        width: 80%;
        margin: 0 auto;
    }
    
    .dko-video__poster-wrapper::before {
        content:'';
        width: 60px;
        height: 60px;
        will-change: transform;
        transform: translate(-50%, -50%) scale(1);
        transition: all 400ms ease-in-out;
    }
    
    .dko-video__poster-wrapper:hover:before {
        content:'';
        width: 60px;
        height: 60px;
        transform-origin: center center;
        transform:translate(-50%, -50%)  scale(0.9);
        transition: all 400ms ease-in-out;
    }
    
    .dko-video__top-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .video-duration-wrapper {
        width: inherit;
    }
    
    .dko-video__video-text {
        width: 80%;
    }
}