#play-pause {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: rgba(255,255,255,0.7);
	border: none;
	border-radius: 4px;
	padding: 10px;
	z-index: 20;
	cursor: pointer;
}

#mute-unmute {
	position: absolute;
	bottom: 8px;
	left: 56px;
	background: rgba(255,255,255,0.7);
	border: none;
	border-radius: 4px;
	padding: 10px;
	z-index: 20;
	cursor: pointer;
}

.imagemensaje {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	display: table;
}

.mensaje {
	background: rgba(255,255,255,0.5);
	padding: 30px;
	margin: auto;
	vertical-align: middle;
	display: table-cell;
}

.videomensaje {
  position: relative;
	margin: 0px;
	padding: 0px;
  }
  
  .fila
  {
	display: flex;
	margin: 0px;
	padding: 0px;
  }

.cont_img_vid
{
	margin: 0px;
	padding: 0px;
	width: 90%;
}

#video {
	width: 100%;
	height: 100%;
}

.textodescriptivo {
	color: rgba(20,20,20,0.6);
	font-weight: bold;
	font-size: 18pt;
}

/* Responsive mobil */
@media screen and (max-width: 768px) {
	.fila {
		flex-direction: column;
	}

	.col-md-6 {
		width: 100% !important;
		flex: 0 0 100%;
	}

	.imagemensaje {
		margin-bottom: 10px;
	}

	.mensaje {
		padding: 15px;
	}

	.textodescriptivo {
		font-size: 14pt;
	}

	.cont_img_vid h1 {
		font-size: 1.2rem !important;
		margin-left: 20px !important;
		margin-right: 20px !important;
		top: -20px !important;
	}

	#play-pause, #mute-unmute {
		left: 10px;
	}
}