:root {
    --rz-primary: #006225;
    --rz-secondary: #bb892d;
    --rz-success: #00b344;
}

.help-text ul {
    list-style: disc;
    padding-left: 1em;
    margin-left: 1em;
    padding-right: 1em;
    margin-right: 1em;
}

/* Styling the element (e.g., a notification dot) */
.pulse-element {

    background-color: #de5448; /* A red color */

    animation: pulse 2s infinite ease-in-out; /* Apply the animation */
}

/* Defining the animation using keyframes */
@keyframes pulse {
    0% {

        box-shadow: 0 0 0 0 rgba(187, 137, 45, 0.7);
    }

    70% {

        box-shadow: 0 0 0 10px rgba(187, 137, 45, 0);
    }

    100% {

        box-shadow: 0 0 0 0 rgba(187, 137, 45, 0);
    }
}