.margo {
  margin: 10px !important;
}

.attention-bounce {
  animation: bounce 0.5s infinite;
  -webkit-animation: bounce 0.5s infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


/* Stop animation when checked */
input[type="checkbox"]:checked.attention-bounce {
  animation: none !important;
}


.btn-arrow svg {
  transition: transform .2s ease;
}
.btn-arrow:hover svg {
  transform: translateX(4px);
}
