/**
 * Plugin styles
 */

.dynamic-height-wrap {
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moz-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
  /* ancho tabla desde eje izquiero a derecho, mensaje completo, por defecto width: 100%*/
  width: 100%;
}

/* Bottom gradient (optional, but recommended)*/
.dynamic-height-active .dynamic-height-wrap:before {
  background: -moz-linear-gradient(top,  rgba(240,249,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(240,249,255,0)), color-stop(100%,rgba(255,255,255,1)));
  background: -webkit-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f0f9ff', endColorstr='#ffffff',GradientType=0 );
  bottom: 0;
  content:'';
  /* height =cuanto blanco de arriba a abajo*/
  height: 200px;
    /* vinculado con el blanco difuminado, lo que no sea cero desaparece el blanco,por defecto left: 0*/
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.dynamic-height-active .dynamic-show-more {
  display: inline-block;
}
.dynamic-show-more {
  display: none;
}


/**
 * Demo styles
 */

* {
  box-sizing: border-box;
    margin: ; 
  padding: ;
}

body {
    color: #000000;
      /* font-family =tipo de letra para títulos*/
    font-family: TimesNewRoman,'Helvetica Neue','sans-serif', Arial;
    line-height: 1.5em;
       /* HUECO ENTRE ARRIBA Y PRIMERA LINEA al título, si pongo 70 encaja desplegabe y sin desplegar, por defecto margin: 30px auto*/
    margin: 6px auto;
       /* ANCHURA DE TABLA por defecto max-width: 800px*/
    max-width: 600px;
    /* mide la anchura de la tabla incluyendo margen blanco. por defecto margin: padding: 0 20px*/
    padding: 0 0px;
}

a {
        /* Color del títulos principales GALERIA, HERALDICA, ETC. por defecto color:#2980b9 pero también funciona formato rgb(255, 255, 0)*/
  color: ;
}

h1 {
       /* por defecto color: #6c2eb9;*/
  color: #6c2eb9;
  font-weight: normal;
  font-size: 40px;
  font-family: Arial;
  text-transform: uppercase;
}

h1 span {
       /* por defecto color: #b0b0b0;*/
  color: #b0b0b0;
  font-size: .8em;
  font-weight: normal;
}
h2 {
       /* por defecto color: #3c1b66;*/
  color: #3c1b66;
  font-weight: normal;
  font-size: 35px;
  font-family: Arial;
  text-transform: uppercase;
}
h3 {
  color: #443963;
  font-weight: normal;
  font-size: 30px;
  font-family: Arial;
  text-transform: lowercase;
}
h4 {
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  text-transform: uppercase;
}
h5 {
  color: red;
  font-weight: normal;
  font-size: 20px;
  font-family: Arial;
  text-transform: none;
}
h6 {
  color: navy;
  font-weight: normal;
  font-size: 10px;
  font-family: Verdana;
  text-transform: none;
  text-align: center;
}
#erref {
  background-color: skyblue;
  font-size: 10px;
  font-family: Verdana;
  a:hover (color: orange);
  a:active (font-style: italic);
}
p { color: black; font-family: Verdana; text-align: justify;
}

.section {
   /* por defecto margin-bottom: 30px*/
  margin-bottom: 30px;
}
pre {
  /* desconocido.por defecto background: #ecf0f1*/
  background: #ecf0f1;
  border-radius: 4px;
  margin: 10px 0;
  padding: 5px 10px;
}

.button {
   /* color letras del botón después de desplegar. por defecto #fff (blanco) */
  color: #FFFF00;
  /* color borde del botón por defecto: #27ae60*/
  background: #27ae60;
  border: none;
   /* por defecto border-radius: 4px contra mayor más redondo el botón*/
  border-radius: 6px;
   /* por defecto font-size: 15px*/
  font-size: 10px;
  outline: none;
     /* ancho de texto para botón; por defecto padding: 10px 20px*/
  padding: 1px 10px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}
button.button{
  /* color fondo del botón por defecto background:#2980b9*/
  background:rgb(128, 0, 0);
}

li {
  list-style: ;
    /* Desconocido. por defecto margin-top: 20px*/
  margin-top: ;
}

li strong {
  color: ;
}

.dynamic-height-wrap {
    /* Distancia de arriba a abajo entre tabla blanca y el botón. margin-bottom: 20px*/
  margin-bottom: 15px;
}

.buttons-wrap{
  display: flex;
      /* Desconocido. por defecto margin-top: 20px*/
  margin-top: 20px;
}

.button {
  flex: 1;
  text-align:center;
  text-decoration: none;
  vertical-align: center;
}

.button + .button{
      /* Desconocido. por defecto margin-left:10px*/
  margin-left:10px;
}