.qr-code-page{
    margin: 10% auto;
    display: flex;
    justify-content: center;
}

.generte-qrcode-button{
    background: rgb(97, 0, 255);
    font-size: 16px;
    border-radius: 32px;
    border: none;
    height: 65px;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 24px;
    cursor: pointer;
}

.generte-qrcode-button:hover{
    background: rgb(37, 0, 97);
}
.hidden {
    display: none;
}

#popup {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #651bd3;

}

.ida-qr{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 80%;
    min-width: 262px;
    max-width: 400px;
    height: 480px;
    background-color: #e9e9f1;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
}

#popup-header {
    position: relative;
    padding: 1rem 2rem;
}

#close-popup-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}

#popup-content {
    height: calc(100% - 61px);
    display: flex;
    justify-content: center;
}
  
#loader{
    width: 150px;
    margin: 0 auto;
}

.loader-image{
    width: inherit;
}

.d-flex{
    display: flex;
}

.alignText-center{
    text-align: center;
}

