#go-to-download{
    position: fixed;
    bottom: 10px;
    right: 10px;
    position: fixed;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius-normal);
    background: var(--blue);
    height: 50px;
    z-index: 999999999999;
  }
  
  #go-to-download p{
    padding: 0 12px;
    color: white;
    margin: 0;
  }
  #go-to-download:hover {
    animation: icon 1s ease-in-out
  }
  
  @-webkit-keyframes icon {
    0%{
        bottom: 8px
    }
    25%{
        bottom: 15px   
    }
    50% {
        bottom: 8px
    }
    75%{
        bottom: 15px   
    }
    100% {
        bottom: 8px
    }
  }
  @keyframes icon {
    0%{
        bottom: 8px
    }
    25%{
        bottom: 15px   
    }
    50% {
        bottom: 8px
    }
    75%{
        bottom: 15px   
    }
    100% {
        bottom: 8px
    }
  }