.camera-wrap{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    video{
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        z-index: 1;
    }
    .camera-action-btns{
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        z-index: 2;
        img{
            max-width: 60px;
            border-radius: 50%;
        }
        .screenshot{
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: solid 1px #000;
        }
    }

    .select-image-type{
        position: absolute;
        left: 0;
        width: 100px;
        height: 100vh;
        overflow-y: scroll;
        background: rgb(0,0,0,0.2);
        z-index: 3;
        padding: 10px;
        .image-list{
            margin-top: 15px;
        }
    }
    .custom-primary-button{
        position: absolute;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
    }
    .selected-image{
        position: fixed;
        left: 50%;
        top: 50%;
        width: 100%;
        transform: translate(-50%,-50%);
        z-index: 2;       
        text-align: center;
        display: flex;
        padding: 40px;
        justify-content: center;
    }
}