Stretch videos to the full height on mobile

Add this code to the Custom CSS field on the Advanced tab of your Slider widget’s settings:

@media (max-width: 500px) {
	.eapp-slider-slide-background {
		width: auto !important;
		height: 100% !important;
		aspect-ratio: 16/9 !important;
		
		left: calc((100% - 1245px) / 2) !important;
	}
}