@keyframes fade-in {
  from {
    opacity: .5; }
  to {
    opacity: 1; } }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(-360deg); } }

@keyframes fade-in2 {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.bi-home-action {
  display: flex;
  height: 200px;
  flex-direction: column;
  flex-basis: 300px;
  border-radius: 8px !important;
  align-items: center;
  justify-content: center;
  cursor: pointer; }
  .bi-home-action span {
    font-size: 20px;
    font-weight: 300; }
