/*
 * Archivo CSS para las descripciones de YouTube.
 */

.youtube-caption-container {
    margin: 20px 0;
    text-align: center;
}

/* Contenedor para hacer el video responsive */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 (altura / ancho = 9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

p.youtube-caption-text {
	font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
	font-size: 11px !important;
    color: #0066bf !important ;
    margin-top: 5px !important;
    font-style: italic;
	text-align: left;
}

.mce-textbox {
	background: #3a1f04 !important;
}

.mce-window-head {
    background: #3a1f04 !important;
	color: #c6c6c6 !important;
}