.iw-animated-button {
    display: inline-flex !important;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 10px 30px !important;
    margin: 20px 0 0 !important;

    background-color: #0060A9;

    font-family: 'Noto Sans', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 25px;
    line-height: 34px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0px;

    position: relative;
    z-index: 10;
}

.iw-animated-button::before {
    content: "";

    display: block !important;
    margin: 0 !important;

    position: absolute;
    z-index: -1;

    background: #0060A9;
    animation: AnimacionBoton 2s ease infinite;

    filter: blur(10px);
}










@keyframes AnimacionBoton {
    0%{inset: 2px;}
    50%{inset: -5px;}
    100%{inset: 2px;}
   
}