.admin-avatar {
    background-image: url("../backend/static/avatars/000m.jpg") !important ;
}

.logout {
    display: none;
}

.authentication {
    z-index: 10;
}

.web-index {
    z-index: 0;
}

.minimal-msg {
    padding: 10px;
}

.mail-header {
    display: inline-block;
}

.web-cookies {
    bottom: 30px;
    left: 20px;
}

.web-nav-top {
    top: -2rem;
    right: 3rem;
    z-index: -1;
}

.web-nav-bottom {
    bottom: -2rem;
    right: -2rem;
    z-index: -1;
}

.web-nav-bottom-3 {
    top: 3rem;
    right: -3rem;
    z-index: -1;
}

.web-nav-bottom-2 {
    bottom: 2.5rem;
    left: -4.5rem;
    z-index: -1;
}

/* g-recaptcha */
.recaptcha {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 87px;
}

/* Register */
a:hover {
    cursor: pointer;
}

.rtl-justify-between {
    justify-content: flex-end;
}

/* Datatable response */
div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 2px;
}

div.table-responsive > div.dataTables_wrapper > div.row:last-child {
    margin-top: 50px;
}

/* QR Code Download */
.scanme {
    position: relative;
    top: 0;
    left: 0;
    max-width: 350px;
}

.qrcode {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    width: 280px;
    height: 280px;
}

/* iPhones */
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .qrcode {
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        width: 170px;
        height: 160px;
    }
}

/* ----------- Non-Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .qrcode {
        position: absolute;
        top: 41.2%;
        left: 50.2%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        width: 300px;
        height: 300px;
    }
}

/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    .qrcode {
        position: absolute;
        top: 41.2%;
        left: 50.2%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        width: 300px;
        height: 300px;
    }
}

/* User plan page */
.display-line {
    display: inline;
}

/* Download QR */
.download-qr {
    justify-content: center;
    display: flex;
}

/* Regenerate Barcode */
#regenerate_barcode {
    margin-top: 2rem;
    overflow-x: scroll;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none;
}

#regenerate_barcode::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/* Disable container */
.container-disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Custom Logo */
.custom-logo {
    height: 3rem !important;
}


/*----------------------- Preloader -----------------------*/
body.preloader-site {
    overflow: hidden;
}

.preloader-wrapper {
    height: 100%;
    width: 100%;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}

.preloader-wrapper .preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}