nav .button-collapse , nav .button-collapse:focus{
	background: transparent;
	outline: none;
	border: none;
	box-shadow: none;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}
.add {
	position: absolute;
	top: 25px;
	right: 25px;
}
nav {
	height: 50px;
	background-color: #455F9D;
}
footer.footer {
	background-color: #455F9D;
}
.navbar-fixed {
	height: 50px;
}
/*.side-nav {
	background-color: #455F9D;
}*/
.side-nav li a, .side-nav li a.subheader {
	color: #fff;
}
nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i {
    height: 50px;
    line-height: 50px;
}
body {
	background-color: #e9edf2;
}
.topnope {
	margin-top: 0;
}
.card_title.h1 {
	font-size: 2em;
}
.card_title.h2 {
	font-size: 1.5em;
}
.card_subtitle {
	font-size: 1em;
	color: #9e9e9e;
}
.strong-orange {
	background-color: #cd7f32;
}
.side-nav li.active {
	background-color: rgba(0,0,0,0.1);
}
.pulse::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: inherit;
	border-radius: inherit;
	transition: opacity .3s, -webkit-transform .3s;
	transition: opacity .3s, transform .3s;
	transition: opacity .3s, transform .3s, -webkit-transform .3s;
	-webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) 8;
	animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) 8;
	z-index: -1;
}
/*
 * Efecto dejar arriba y abajo y fade
*/
.top_and_fade {
	position: relative;
	-webkit-animation-name: animatebot;
	-webkit-animation-duration: 0.9s;
	animation-name: animatebot;
	animation-duration: 0.9s
}

/* Animacion viene desde arriba y cae */
@-webkit-keyframes animatebot {
	from {bottom:0; opacity:1}
	to {bottom:-50px; opacity:0}
}
@keyframes animatebot {
	from {bottom:0; opacity:1}
	to {bottom:-50px; opacity:0}
}
.bottom_and_fade {
	position: relative;
	-webkit-animation-name: animatet;
	-webkit-animation-duration: 0.9s;
	animation-name: animatet;
	animation-duration: 0.9s
}
/* Animacion viene desde abajo y sube */
@-webkit-keyframes animatet {
	from {bottom:-50px; opacity:0}
	to {bottom:0; opacity:1}
}
@keyframes animatet {
	from {bottom:-50px; opacity:0}
	to {bottom:0; opacity:1}
}

/****************************************/