.innova-animated-link a {
    text-decoration: none;
    position: relative;
    padding-left: 0px;
    transition: padding-left 0.2s cubic-bezier(0,0.5,0,1);
    font-weight: normal;
    font-size: 1em;
}

.innova-animated-link a:hover{
    padding-left: 13px !important;
    transition: padding-left 0.4s cubic-bezier(0,0.5,0,1);
}

.innova-animated-link .dot {
    height: 0.6em;
    width: 0.6em;
    background-color: #FF5100;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.innova-animated-link span.dot::before {
    content:"";
    border-radius: 2px;
    border-top: .2em solid #FF5100;
    position: absolute;
    left: 0px;
    bottom: 0.43em;
    width: 0px;
    transition:
            width 0.2s cubic-bezier(0,0.5,0,1),
            left 0.2s cubic-bezier(0,0.5,0,1);
}

.innova-animated-link a:hover span.dot::before {
    width: 15px;
    left: 0px;
    transition:
            width 0.4s cubic-bezier(0,0.5,0,1),
            left 0.4s cubic-bezier(0,0.5,0,1);
}

ul.innova-taglist {
    display: flex;
    list-style: none;
    padding: 0px;
}

ul.innova-taglist li {
    padding: 0px 5px 0px 5px;
    margin-right: 5px;
    border-radius: 20px;
    background-color: #F5F7F7;
    font-size: 0.8rem;
}

a.innova-button {
    appearance: none;
    border: none;
    font-size: 16px;
    height: 36px;
    border-radius: 32px;
    padding-left: 40px; /* Space for the circle on the left */
    padding-right: 25px; /* Space for the circle on the right */
    background: var(--e-global-color-accent);
    color: white;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    text-decoration: none !important;
    overflow: hidden; /* Prevents overflow issues */
  }
  
  a.innova-button:hover {
      font-size: 16px;
      font-weight: 400;
      color: white;
  }
  
  a.innova-button::before {
    content: "";
    position: absolute;
    left: 15px; /* Position the circle relative to the right edge */
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    transition: left 0.3s ease;
  }
  
  a.innova-button:hover::before {
    left: calc(100% - 30px); /* Move the circle to the left on hover */
  }
  
  a.innova-button span {
    transition: transform 0.3s ease;
    color: white;
  }
  
  a.innova-button:hover span {
    transform: translateX(-15px); /* Move the text to the left to make space for the circle */
  }
