
/* Per emulare bootstrap 5 */

	.img-fluid{
		margin: 0 auto;
	}
	
	.float-start {
	    float: left!important;
	}
	.float-end {
	    float: right!important;
	}
	
	.ratio-16x9 {
    	--bs-aspect-ratio: 56.25%;
	}
	.ratio-4x3 {
    	--bs-aspect-ratio: 75%;
	}
	.ratio {
	    position: relative;
	    width: 100%;
	}
	.ratio::before {
	    display: block;
	    padding-top: var(--bs-aspect-ratio);
	    content: "";
	}
	.ratio>* {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	}
