/**
 * TFM Video Defer Styles
 */

.tfm-video-placeholder {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tfm-video-placeholder::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.tfm-video-placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.tfm-video-placeholder-content::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border: 3px solid #ddd;
    border-top-color: #666;
    border-radius: 50%;
    animation: tfm-spin 1s linear infinite;
}

@keyframes tfm-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Elementor specific styles */
.elementor-widget-video .tfm-video-placeholder {
    margin: 0;
}

/* Divi specific styles */
.et_pb_video .tfm-video-placeholder {
    margin: 0;
} 