.info-root {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--bg-color);
    overflow: hidden;
}

.info-back-button {
    width: 30%;
    min-width: 340px;
    height: 3%;

    color: blue;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;

    margin: 10px;
}

.info-back-button:hover {
    cursor: pointer;
}

.info-panel {
    width: 30%;
    min-width: 340px;
    height: 80%;
    min-height: 480px;

    background-color: var(--fg-color);
    border-radius: 20px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 15px 3px rgb(206, 206, 206);
}

.success-symbol {
    width: 100%;
    height: fit-content;
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.info-row {
    width: 80%;
    height: fit-content;
    font-size: 25px;
    margin: 3px;
}

.info-row-2 {
    width: 80%;
    height: fit-content;
    font-size: 25px;
    margin: 3px;
    text-align:center;
}