/* Vimeo */
.video-popup-trigger {
    background-size: cover;
	height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}

/* Video Popup */
.video-popup {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.video-popup-overlay {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.video-popup-content {
    position:relative;
    max-width: 90%;
    width: 800px;
    z-index: 10000;
}

.video-popup-content iframe {
    width: 100%;
    height: 450px;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Video Player */
.video-player-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player-wrapper .video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
}


.video-play-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.video-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-btn svg {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.elementor-icon-wrapper {
    display: flex;
}