/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 21 2026 | 20:09:51 */
.li-margin10 {
	margin-bottom: 10px !important;
}

.align-row-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}


.pulsante{
    display: block;
    box-shadow: 0 0 0 0 rgba(103, 255, 123, 1); /* altere a cor aqui */
    border-radius: 12px; /* altere o arrendondamento da borda aqui */
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
}

.pulsante:hover{
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}

@-webkit-keyframes pulsing{
  to{
    box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
  }
}

@-moz-keyframes pulsing{
  to{
    box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
  }
}

@-ms-keyframes pulsing{
  to{
    box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
  }
}

@keyframes pulsing {
	  to{
		box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
	  }
}

.pulsante{
	animation: pulsar 2s ease-in-out infinite;
}

@keyframes pulsar{
	0%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}

