@font-face{
	font-family: Finland;
	src: url("../TiposLetras/Finland Rounded Thin.ttf");
}
@font-face {
  font-family: 'fontello';
  src: url('../TiposLetras/fontello.eot?27169031');
  src: url('../TiposLetras/fontello.eot?27169031#iefix') format('embedded-opentype'),
       url('../TiposLetras/fontello.woff2?27169031') format('woff2'),
       url('../TiposLetras/fontello.woff?27169031') format('woff'),
       url('../TiposLetras/fontello.ttf?27169031') format('truetype'),
       url('../TiposLetras/fontello.svg?27169031#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  color: black;
  font-size: 25px;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-cancel:before { content: '\e802';} /* '' */
.icon-menu:before { content: '\e801';} /* '' */
.boton-menu{
		display: block;
		padding: 10px 0px 0px 12px;
		height: 60px;
		z-index: 1000;
		width: 60px;
		color: white;
	}
.boton-menu span{
	color: white;
	font-size: 25px;
	cursor: pointer;
	z-index: 1000;
}
.navegacion{
	width: 100%;
	z-index: 1500;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
}
.navegacion nav{
	position: absolute;
	top: 60px;
	left: -100%;
	width: 100%;
	height: calc(100% - 60px);
	margin: 0px;
	padding-left: 0px;
	display: flex;
	align-items: center;
	background-color: white;
	z-index: 1500;
}
.menu-celular{
	list-style: none;
	width: 100%;
	height: 100%;
	padding-left: 0px;
	z-index: 1500;
}
.accordion{
	height: 100%;
	width: 100%;
}
.card-header{
	padding: 0px;
	margin: 0px;
	border: 1px solid white;
}
.card-header a{
	height: 50px;
	background-color: white;
	color: black;
	font-size: 25px;
	padding: 10px;
	text-decoration: none;
	font-weight: bold;
	font-family: Finland;
}
.card-body{
	width: 100%;
}
.card-body ul li{
	font-size: 30px;
	color: black;
	height: 50px;
	width: 100%;
	list-style: none;
}
.card-body ul li a{
	text-decoration: none;
	color: black;
	padding-left: 40px;
	font-size: 18px;
}
.Derecha{
	animation: moverDer;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
.Salir{
	animation: moverSalir;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
@keyframes moverDer {
    0% { left: -100%; }
    100% { left: 0px; }
}
@keyframes moverSalir {
    0% { left: 0px; }
    100% { left: -100%;}
}