@font-face {
  font-family: Asap;
  src: url(//solincomp.com/recursos/Asap-BlackItalic.ttf);
}

@keyframes sombra {
  from {
      text-shadow: 0px 0px 2px #fff, 
      0px 0px 4px #fff, 
      0px 0px 6px #fff,       
      0px 0px 8px #fff,
      0px 0px 10px #fff,
      0px 0px 12px #000,
      0px 0px 14px #000,
      0px 4px 16px #000,
      0px 4px 18px #000,
      0px 4px 20px #000;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


* {
  /*font-family: Verdanda, Tahoma, Arial;*/
  /*font-size: 0.9rem;*/
}

.tar-img_cabecera {
  animation: zoom 7s 1;
}

.tar-titulo {
  margin-top: 1rem!Important;
  font-family: Asap, Lucida Sans, Verdana;
  text-shadow: 0px 0px 3px #fff, 0px 2px 2px #000;
  animation: sombra 2s ease-in-out 5;
  /*border: 1px solid black;*/
}
.tar-principal {
  border: 1px solid #646168;
  border-radius: 5px;
  box-shadow: 0px 8px 8px -4px black;
  text-align: justify;
  padding: 0.8rem!important;
  line-height: 1rem;
  font-size: 0.9rem;
}

/*ACORDEON*/
.tar_contenido a{
    text-decoration: underline;
    font-weight: 600;
}
.tar-detalles {
  background-color: rgb(241, 236, 230);
  padding: 0.4rem;
  box-shadow: 2px 2px 3px black;
  border-radius: 10px 0 10px 0;
  margin: 0.7rem!Important;
  width: 95%;
}

.tar-detalles>summary {
  list-style: none;
}

.tar-detalles>summary::before {
  /*content: "✚"; */
  content: "▼";
  padding-right: 7px;
}

.tar-detalles[open] summary {
  font-weight: bold;
  padding-bottom: 5px;
  border-style: outset;
}

.tar-detalles[open] summary::before {
  content: "▲";
  /*content: "⎯";*/
  font-weight:bolder;
  padding-right: 7px;
}

.tar-detalles summary:hover {
  cursor: pointer;
}

.tar-detalles-contenido {
  background-color: white;
  border-style: none;
  padding: 5px;
  margin: 0;
}

/*LISTAS*/
.tar-lista-visto {
  list-style-type: none;
	padding: 0;
}
.tar-lista-visto ol{ margin: 0 0 0 2em;}
.lista-visto li{
	display: flex;
	padding-left: 10px;}
.tar-lista-visto li::before {
  content: "✔︎";
  color: black;
  padding-right: 7px;
}

/*CAJA UBICACION*/
.tar-caja-ubicacion:hover {
    cursor: pointer;
}

/*CAJA SOMBRA*/
.tar-caja-sombra{
    box-shadow: 1px 1px 2px black;
    border-radius: 3px 3px 3px 3px;
	-webkit-box-shadow: 0px 0px 3px #000000;
}