.qr-code-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgb(255 255 255 / 79%);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0 0 0 / 9%);
	box-shadow: 2px 8px 13px rgb(0 0 0 / 10%);
	z-index: 999;
}

.qr-code-content svg {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}
/* round the center logo image inside the QR */
.qr-code-content svg #qr-logo image{
    clip-path: inset(0 round 12%);
}

.qr-code-text {
    font-size: 12px;
    text-align: center;
	margin-top: 4px;
    margin-bottom: 4px;
    color: #666;
    font-weight: 500;
}

.desktop-only {
    display: block;
}

@media (max-width: 1000px) {
    .desktop-only {
        display: none !important;
    }
}