/*
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 !important;
    background-color: white;
}

.ui-dialog-fullscreen .mdl-layout-title {
    margin-left: 30px;
}

#dlgAjaxLoading {
    display: none;
    position: fixed;
    top: 0px;
    left: 50%;
    background-color: white;
    color: #48392E;
    z-index: 99999;
    padding: 10px 20px;
    transform: translate(-50%, 0%);
}

.mdl-button {
    color: white !important;
    background-color: #A5393B !important;
}

.mdl-button:hover {
    background-color: #943335 !important;
}