/* You can add global styles to this file, and also import other style files */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes fadeIn {
    from {opacity:0;}to{opacity:1;}
}
.fadeIn {
    animation-name: fadeIn;
}

/* WhatsApp */
.btn-wsp {
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:30px;
	background:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:35px;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
	z-index:100;
	transition: all 300ms ease;
}
.btn-wsp:hover {
	text-decoration: none;
	color: #25d366;
	background-color:#fff;
}
.icono {
	margin-top:14px;
	margin-left:3px;
}
@media only screen and (min-width:320px) and (max-width:768px) {
    .btn-wsp {
        width:63px;
        height:63px;
    }
}