/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11/06/2024, 13:18:54
    Author     : jqueiroz
*/

.fixed-button {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 25;
}

.pulse-link {
    display: inline-block;
    background-color: #00BE21;
    color: white;
    padding: 8px 16px;
    font-size: 24px;
    border-radius: 50px;
    text-decoration: none;
    animation: pulse 1.5s infinite;
    transition: background-color 0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-link:hover {
    color: #00BE21;
    background-color: white;
}