div#showInfo
{
    visibility: hidden;
    position: fixed;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 2rem;
}
div#showInfo > p
{
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
    font-size: calc(var(--smallFontSize) + 0.25rem);
    background-color: limegreen;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    max-width: 250px;
    border-radius: 4px;
    background-image: url(../svg/success.svg);
    background-size: 60px auto;
    background-repeat: no-repeat;
    background-position: center 20px;
    padding-top: 90px;
}

div#showInfo > p.error
{
    background-color: red;
    background-image: url(../svg/exclamation.svg);
}

div#showInfo.show
{
    visibility: visible;
}
