a.active{
	color: #4a90e2 !important;
}

.mi-lista{
	 list-style-type: circle;
	 padding-left: 20px;
}

/* Botón Scroll Whatsapp */

#whatsapp{
    position: fixed;
    right: 20px;
    bottom: 60px;
    z-index: 999999;
}


.btn-whatsapp {
  position: relative;
  width: 60px;
  height: 60px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  -moz-transition: ease all 0.55s;
  -o-transition: ease all 0.55s;
  -webkit-transition: ease all 0.55s;
  transition: ease all 0.55s;
  z-index: 1;
  border: none;
}

@keyframes pulse-border {
  0% {
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.btn-whatsapp:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.btn-whatsapp.whatsapp {
   background: linear-gradient(120deg, #54c7b5 0%, #4b9739 100%) !important;
}
.btn-whatsapp.whatsapp:after {
   background: linear-gradient(120deg, #54c7b5 0%, #4b9739 100%) !important;
}

#whatsapp a i{
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}