.scan-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;
    margin: auto;
    gap: 1rem;
}

.scan-preview {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
    border-radius: 1rem;
}

#selectCamera {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f44336;
    color: #FFF;
    width: 32px;
    height: 25px;
    font-size: 18px;
    border-radius: 0 0 0 1rem;
    cursor: pointer;
    z-index: 1;
}

#selectCamera.active,#selectCamera:hover {
    background: #009688;
}

#camerasList {
    position: absolute;
    display: none;
    top: 35px;
    right: 5px;
    background: #009688;
    color: #FFF;
    border: 1px solid;
    z-index: 1;
}

.camera {
    position: relative;
    padding: 4px 8px;
    border-bottom: 1px solid;
    padding-right: 32px;
}

.camera:last-child {
    border: 0
}

.camera.active::after {
    position: absolute;
    right: 6px;
    font-family: bootstrap-icons !important;
    content: "\F269"
}

.scan-preview-area {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
}

.scan-result {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
