/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 30 2025 | 10:50:02 */
/* 2025.07.31 - Kingsley */
/* Add this CSS to your custom CSS file */

.video-bg-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.video-control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 0; /* Remove any default padding */
    box-sizing: border-box; /* Ensure consistent sizing */
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    color: white; /* Keep icon white on hover */
}

.video-control-btn:active {
    transform: scale(0.95);
    background: rgba(0, 0, 0, 0.9); /* Keep background dark on click */
    color: white; /* Ensure icon stays white */
}

.video-control-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.video-control-btn svg {
    pointer-events: none;
    display: block; /* Ensure proper alignment */
    margin: 0; /* Remove any margin */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-bg-controls {
        top: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .video-control-btn {
        width: 45px;
        height: 45px;
    }
    
    .video-control-btn svg {
        width: 18px;
        height: 18px;
    }
	
	/* bottom right for mobile */
	.video-bg-controls {
		top: auto;
		bottom: 20px;
		right: 20px;
	}
}

/* Alternative positioning options - uncomment the one you prefer */

/* Bottom right positioning */
/* .video-bg-controls {
    top: auto;
    bottom: 20px;
    right: 20px;
} */


/* Bottom left positioning */
/*
.video-bg-controls {
    top: auto;
    bottom: 20px;
    right: auto;
    left: 20px;
}
*/

/* Top left positioning */
/*
.video-bg-controls {
    right: auto;
    left: 20px;
}
*/

/* Center bottom positioning */
/*
.video-bg-controls {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
}
*/