/*!***********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/block-css/video-modal.css ***!
  \***********************************************************************************************************************************************************************************/
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal-content {
    position: relative;
}

.close-video-modal {
    cursor: pointer;
    padding: 10px;
    color: white;
}

.post-type-archive-video,
.search-results {
    .archive-image::after,
    .type-video .wp-block-post-featured-image::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.7019607843) 100%);
        top: 0;
        pointer-events: none;
    }

    .play-icon {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 1;
        border: 1px solid white;
        border-radius: 50%;
        padding: 0.5rem;
        cursor: pointer;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        animation: pulse 1.5s infinite;
        pointer-events: none;
    }

    .play-icon path {
        fill: white;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


/*# sourceMappingURL=front.css.map*/