.message-container
{
    top: 20%;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    position: fixed;
    width: clamp(290px, 60%, 600px);
    border: 2px solid black;

    animation-name: message-animation;
    animation-play-state: paused;
    animation-fill-mode: forwards;
    /*animation-duration: 5000ms;*/
    animation-timing-function: linear;
}

.success
{
    background-color: #2BAE66;
}

.neutral
{
    background-color: white;
}

.fail
{
    background-color: red;
}


.message-label
{
    margin-left: 7px;
    margin-right: 7px;
    font-size: 1.6rem;
}

.message-description
{
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.7);
}

.message-bar
{
    height: 15px;
    width: 10%;
    background-color: black;
    opacity: 30%;

    animation-name: message-bar-animation;
    animation-play-state: paused;
    animation-fill-mode: forwards;
    /*animation-duration: 5000ms;*/
    animation-timing-function: linear;
}

@keyframes message-animation
{
    0%
    {
        opacity: 0%;
    }

    10%
    {
        opacity: 100%;
    }

    90%
    {
        opacity: 100%;
    }

    100%
    {
        opacity: 0%;
    }
}

@keyframes message-bar-animation
{
    0%
    {
        width: 0%;
    }

    90%
    {
        width: 100%;
    }

    100%
    {
        width: 100%;
    }
}