/* ACF "repeat-horizontal" class, display repeaters in horizontal columns */
.repeat-horizontal .acf-repeater tbody {
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}
.repeat-horizontal .acf-repeater tr.acf-row:not(.acf-clone) {
    flex: 0 0 25%;
    min-width: 240px;
    padding: 1rem;
    box-sizing: border-box;
}
.repeat-horizontal .acf-repeater tr.acf-row:not(.acf-clone) td.acf-fields {
    width: 100% !important; /* important is necessary because it gets overwritten on drag&drop  */
}





/****** RESPONSIVE VIDEO *******/


.embed-container .canvas-media{ 
    position: relative ; 
    padding-bottom: 56.25%;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
} 

.embed-container .canvas-media iframe,
.embed-container .canvas-media object,
.embed-container .canvas-media embed { 
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
