﻿.qr-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
    align-items: center;
}

.qr-modal-box {
    position: relative;
    max-height: 80%;
    max-width: 80%;
    min-width: 70%;
    background-color: #fff;
    padding: 0px 10px 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 0 20px rgb(0 0 0 / 25%);
    animation: fadein 0.3s;
}

.qr-modal-header {
    display: flex;
    justify-content: end;
    align-items: center;
}

.qr-modal-close {
    font-size: 1.4em;
    cursor: pointer;
}

.qr-modal-content {
    overflow-y: auto;
    overflow-x: hidden;
}

.qr-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #00000066;
    z-index: 1;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}