.container {
    padding: 2rem;
}

progress {
    height: 2rem;
    background-color: orange;
    color: orange;
}

progress::-webkit-progress-bar {
    background-color: orange;
    color: blue;
}

progress::-webkit-progress-value {
    background-color: green !important;
    color: violet;
}

progress::-webkit-progress-value::after {
    background-color: violet !important;
    color: violet;
}


.horisontal{
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
}

.horisontal-rev {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.2rem;
}

.floating-actions {
    position: fixed;
    width: auto;
    height: 4rem;
    padding: 1rem;
    right: 2rem;
    bottom: 1rem;
    align-items: end;
    margin: 0;
}

.floating {
    width: auto;
    padding: 0;
    margin: 0;
    border-radius: 2.5rem;
    height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    display: grid;
    place-items: center;
}

.fa-plus:before {
    font-size: 2rem;
}

.donation-embed {
    display: grid;
    place-items: center;
    height: 100vh;
}

