#qrcode {
    display: block;
    width: 100%;
    margin: 0px auto;
    overflow-x: hidden;
    background-color: white;

    * {
        transition: none;
        animation: none;
        font-family: var(--font-family);
        transition: all 0.5s ease-in-out;
    }
    
    .mdi {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        width: 50px;
        height: 50px;
        text-decoration: none;
        color: black;
        background-color: var(--sky-100);
        border-radius: 50%;
        cursor: pointer;
        border: 1px solid var(--darker-20);
        box-shadow: var(--box-shadow-M);
    }

    .mdi:hover {
        color: white;
        background-color: var(--blue-400);
        box-shadow: var(--box-shadow-S);
    }

    article {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: stretch;
        align-items: stretch;
        gap: var(--gap) !important;
        width: 100%;
        max-width: 360px !important;
        margin: 0 auto;

        .qr-code1,
        .qr-code2 {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0;
            margin: var(--gap) auto;
            text-align: center !important;
        }

        .qr-code1 > img {
            width: 360px;
            height: 360px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
        }

        .infos-container {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 2px;
            min-height: fit-content;
            width: calc(100% - 40px);
            margin: 0 auto;

            .infos {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                gap: var(--gap);
                align-items: flex-start;
                justify-content: flex-start;
                width: 100%;
                padding: 5px !important;

                .info {
                    display: flex;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    align-items: flex-start;
                    justify-content: flex-start;

                    .label {
                        font-size: 10px;
                        font-weight: 200;
                        line-height: 20px;
                        text-align: left;
                    }

                    .value {
                        font-size: 14px;
                        font-weight: 400;
                        text-align: left;
                    }
                }
            }
        }

        .buttons {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: var(--gap) !important;
            width: 100%;
            padding: var(--gap) !important;
            margin: 0 auto;
            text-align: center !important;

            .button {
                color: var(--zinc-200);
                background-color: var(--blue-400);
                padding: var(--gap) !important;
                width: 100%;
                height: 80px;
                border: 1px solid var(--darker-20);
                box-shadow: var(--box-shadow-M);
            }

            .button:hover {
                color: white;
                background-color: var(--blue-600);
                border: 1px solid var(--darker-20);
                box-shadow: var(--box-shadow-S);
            }
        }

        .icons {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;
            gap: calc(var(--gap) * 2);
            width: 100%;
            text-align: center;
        }

        .qr-code2 > img {
            width: 240px;
            height: 240px;
            margin: 0 auto;
        }
    }
}
