.jqrcode-output-popup{
    min-width: 400px;
    min-height: 280px;
    width: auto;
    height: auto;
    display: flex;
    background: #353535;
    position: absolute;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
    border: 1px #979797 solid;
    box-shadow: 0px 0px 10px black;
    border-radius: 5px;
    justify-content: space-evenly;
}

.jqrcode-output-popup .jqrcode-top-area{
    width: 100%;
    height: 60px;
    display: flex;
    border-bottom: 1px #979797 solid;
    background: #4d4d4d;
    flex: none;
}

.jqrcode-output-popup .jqrcode-middle-area{
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex: 1;
    padding: 10px;
}


.jqrcode-output-popup .jqrcode-bottom-area{
    width: 100%;
    height: 60px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px #979797 solid;
    background: #4d4d4d;
}
.jqrcode-output-popup .jqrcode-bottom-area .jqrcode-popup-btn{
    width: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
    cursor: pointer;
}

.jqrcode-output-popup .jqrcode-bottom-area .jqrcode-popup-btn:hover{
    background: #3d3d3d;
}

.jqrcode-output-popup .jqrcode-top-area .jqrcode-popup-btn{
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
    cursor: pointer;
}

.jqrcode-output-popup .jqrcode-top-area .jqrcode-popup-btn:hover{
    background: #3d3d3d;
}

.jqrcode-output-popup .jqrcode-top-area .jqrcode-popup-btn.active{
    color: #1f87e5;
    font-weight: 600;
}

.jqrcode-output-popup .jqrcode-middle-area .jqrcode-middle-item{
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 50px;
    max-width: 200px;
    width: 100%;
    text-align: center;
}

.jqrcode-input-style{
    color: white;
    width: 50%;
    background: #4d4d4d;
    border: none;
    height: 100%;
    min-height: 30px;
    border-radius: 5px;
    text-align: center;
    outline: 0;
}

.jqrcode-input-style:focus{
    box-shadow: 0px 0px 5px white;
}

#jqrcode-background-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#qrcode-zone{
    width: 120px;
    height: 160px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    font-size: 8px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    color: black;
    text-align: center;
}

.off-btn{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 30px;
    font-weight: 900;
}

.jqrcode-btn-style{
    background: rgb(255, 255, 255);
    color: #4d4d4d;
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
    align-content: center;
    display: flex;
    padding: 2px 8px;
    font-size: 20px;
    font-weight: 600;
}
