/* ORDER VIEW */
.qr-table {
    width: 100%;
}

.qr-table-header,
.qr-row {
    display: flex;
    padding: 10px 0;
}

.qr-table-header {
    border-bottom: 1px solid #e4e4e4;
    font-weight: bold;
}

.qr-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-cell p {
    text-align: center;
}

.qr-cell:nth-child(1) {
    width: 150px;
    flex-shrink: 0;
}

.qr-cell:nth-child(2) {
    flex-grow: 1;
}

.qr-cell:nth-child(3) {
    width: 100px;
    flex-shrink: 0;
}

.qr-row:nth-child(odd) {
    background-color: #e4e4e4;
}

.qr-row:hover {
    background-color: #cdcdcd;
}

/* EDIT VIEW */

.qr-wrapper {
    display: flex;
    flex-flow: column;
}

.qr-summary {
    display: flex;
    flex-flow: row;
}

.qr-wrapper .panel-wrap {
    padding: 10px;
}

.qr-wrapper .qr-edit form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.qr-wrapper .qr-edit form label {
    font-weight: 700;
}

.qr-edit .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.qr-edit .row div {
    width: 48%;
}

.qr-preview form {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.qr-data {
    width: 100%;
    margin-left: 30px;
}

.qr-wrapper input {
    border: 1px solid #ECECEC;
    border-radius: 8px;
    width: 100%;

}

.qr-wrapper input[type='password'],
.qr-wrapper input[type='text'],
.qr-wrapper input[type='date'] {
    height: 48px;
}

.qr-wrapper input[type=file]::file-selector-button {
    margin: 20px !important;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.qr-table.files .qr-cell:nth-child(1) {
    width: 320px;
    flex-shrink: 0;
}

.pass-upload {
    display: flex;
    flex-direction: column;
    gap:25px;
}

.password-wrapper {
    display: flex;
    flex-flow: row;
    align-items: center;
}

.password-wrapper a {
    margin-right: 20px;
}

[data-hidden] {
    display: none;
}

@media (max-width:500px) {
    
    .qr-edit .row {
        flex-direction: column;
    }
    .qr-edit .row div {
        width: 100%;
    }
}