body {
    font-family: "Poppins", sans-serif;
    background-color: blanchedalmond;
}

.camera-container {
    text-align: center;
    /* margin: 20px; */
    max-width: 500px;
    margin: 20px auto;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    height: fit-content;
    padding-bottom: 15px;
    position: relative;
    /* justify-content: center; */
}

.camera-preview {
    position: relative;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 1; */
    /* background-image: url('../img/dd.jpg');
    background-size: contain; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

#canvas {
    width: 100%;
}

#wrapCamera {
    width: 100%;
    aspect-ratio: 1;
    /* height: 100%; */
    overflow: hidden;
}
.photoFrmae {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* display: none; */
}

video {
    max-width: calc(100%);
    /* aspect-ratio: 1;
    object-fit: cover;
    max-height: calc(100% - 50px); */
}

.capture-controls {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.capture-controls button {
    display: none;
}
/* 
button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
} */

canvas {
    display: block;
    margin: 0 auto;
    /* border: 1px solid #000; */;
}


#canvas *{
    width: 100% !important;
    aspect-ratio: 1;
    height: 100% !important;
}

.capture-controls button.alignBtnTextIcon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinnerWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background-color: rgba(0, 255, 255, 0.134);
}

.fs-12 {
    font-size: 12px;
}