.el-galeria-imagens-distribuida{
	.itens{
		.linha{
			display: flex;
			flex-wrap: wrap;
			justify-content: flex-start;
			@include desktop {
				flex-wrap: nowrap;
			}
			.item{
				position: relative;
				flex-grow: 1;
				width: 100%;
				@include desktop {
					width: auto;
				}
				img{
					display: block;
					width: 100%;
					height: auto;
					margin: 0 auto;
				}
				.video{
					position: absolute;
					top: 50%;
					left: 50%;
					min-width: 100%;
					min-height: 100%;
					width: 100%;
					height: auto;
					transform: translate(-50%, -50%);
					background-color: #000000;
					overflow: hidden;
				}
				.youtube{
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					background-color: #000000;
					overflow: hidden;
					iframe{
						position: absolute;
						top: 50%;
						left: 50%;
						min-width:100%;
						min-height:100%;
						transform: translate(-50%, -50%);
						border: none;
						margin: 0;
						padding: 0;
					}
					.over{
						position: absolute;
						top: 0;
						right: 0;
						bottom: 0;
						left: 0;
					}
				}
			}
		}
	}
}