﻿
.QRComand {
    background: var(--qrBackground);
    border: var(--qrBorder);
    box-shadow: var(--qrShadow);
    border-radius: var(--qrRadius);
    transition: all 0.1s ease-in;
    cursor:pointer;
}

    .QRComand:hover, .QRComand:active {
        box-shadow: 1px 1px 0px 0 rgba( 0, 0, 0, 0.2);
    }


.QrView {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    z-index: 800;
    overflow:hidden;
    border:solid 1px #ffffff;

}

.ReaderChangeWebCam {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 80%;
    height: auto;
    z-index: 999;
    overflow: hidden;
    margin-bottom: 20px;
    border: solid 0px #ffffff;
}

.BoxSede {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    margin-bottom: 10px;
}