@charset "utf-8";

.Columns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin-top: 20px;
}

.LeftColumn {
    -webkit-flex: 1;
    flex: 1;
    width: 0;
    min-width: 0;
    margin-right: 20px;
    //background-color: #9BD239;
}

.RightColumn {
    width: 350px;
    //background-color: #7674C5;
}

.Video {
	white-space: nowrap;
	overflow: auto;
	font-size: 0;
	text-align: center;
	margin: 0;
	margin-bottom: 10px;
	box-sizing: border-box;
	display: block;

	width: 347px;
	height: 260px;
}

.Images {
	box-sizing: border-box;
}

.Images img {
	margin-bottom: 6px;
    width: 347px;
    height: auto;
}

/* was 850 */
@media (max-width: 730px){
	.Columns {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		max-width: 100vw;
	}

	.LeftColumn {
		-webkit-order: 2;
		order: 2;
		display: block;
		margin: 0;
		width: auto;
		-webkit-flex: 1;
		flex: 1;
		min-width: 0;
	}

	.RightColumn {
		-webkit-order: 1;
		order: 1;
		display: block;
		margin: 0;
		width: auto;
	}
	
	.Video {
		width: 100%;
		position: relative;
		padding-bottom: 56.25%;
		text-align: center;
	}
	.Video iframe {
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		right: 0;
	}
	
	.Images {
		white-space: nowrap;
		overflow: auto;
		font-size: 0;
		text-align: center;
		margin: 0;
		margin-right: 0px;
		box-sizing: border-box;
		display: block;
	}
	
	.Images img {
		display: inline-block;
		margin: 0;
		height: 200px;
		white-space: nowrap;
		font-size: 0;
		text-align: center;
        width: auto !important;
        height: 200px !important;
	}
	
}
