@import url("./style.css");

.qrcode-header-cont{
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qrcode-header-cont .left{
    display: flex;
    color: #ccc;
    font-weight: 900;
    display: flex;
    background: #000;
    margin-top: 20px;
    width: 10%;
    height: 50px;
    flex-direction: row;
    border-left: 2px solid var(--y);
}


.qrcode-header-cont .left .qrcodes-options{
    display: flex;
    color: #ccc;
    font-weight: 900;
    display: flex;
    background: #000;
    margin-top: 20px;
    width: 50%;
    height: 50px;
    flex-direction: row;
    border-left: 2px solid var(--y);
}
.qrcode-header-cont .left .qrcodes-count{
    font-weight: 900;
    padding: 5px;

}
.qrcode-header-cont .left .qrcode-icon{
    padding: 10px;
    font-size: 25px;
    border-radius: 5px;
    transform: scale(.65);
    transition: .2s ease;
    cursor: pointer;
    background: rgba(255, 217, 0, 0.286);
    color: var(--y);
} 


.qrcode-header-cont .left ion-icon:focus{
    transform: scale(.85);
    transition: .2s ease;
}

.download-btn{
    color: #0026ff;
    background: rgba(4, 0, 255, 0.4);
}




/* QRCODE TABLE */

.qrcode-main-container {
    position: relative;
    opacity: 10px;
    padding: 10px;
    width: 100%;
    height: auto;
}
.qrcode-main-container table{
    color: #999898;
    border-top: none;
    width: 100%;
    height: auto;
}

.qrcode-main-container table thead th{
    border-bottom: none;
    border-top: none;
    padding-bottom: 12px;
    padding-right: 12px;
    padding-left: 12px;
}

.qrcode-main-container table tbody tr{
    background: var(--dark2);
    width: 100%;
    border-radius: 6px;
}
.qrcode-main-container table tbody tr:hover{
    background: var(--dark3);

}

.qrcode-main-container table tbody tr td{
    padding: 10px;
    
}
.qrcode-main-container table tbody tr td .info{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.qrcode-main-container table tbody tr td .info .text{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    color: #ccc;
}

.qrcode-main-container table tbody tr td .details{
    transform: scale(.75);
    background: var(--light2);
    font-weight: 900;
    visibility: hidden;
} 

.qrcode-main-container table tbody tr:hover > td .details{
    visibility: visible;
}


/* qrcode sidebar */
.qrcode-sidebar{
    position: fixed;
    right: 0px;
    top: 0px;
    width: 0px;
    height: 100vh;
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 0px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #000;
}



.qrcode-sidebar .close-btn{
  color: red;
  padding: 10px;
  border-radius: 50%;
  transform: scale(0.85);
  transition: 0.2s ease;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 10px;
  background: rgba(255, 0, 0, 0.286);
}

.qrcode-sidebar .top{
    padding: 20px;
    position: relative;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    width: 100%;
}

.qrcode-sidebar .top .qrcode-img-cont{
    margin-bottom: 10px;
    width: 200px;
    height: 200px;
}
.qrcode-sidebar .top .action ion-icon{
    transform: scale(.75);
    padding: 10px;
    font-size: 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease;
}
.qrcode-sidebar .top .action ion-icon:hover{
    transform: scale(.95);
    transition: .2s ease;

}

.qrcode-sidebar .body{
    color: var(--light2);
    position: relative;
    top: 30px;
}
.qrcode-sidebar .body p{
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px;
}
.qrcode-sidebar .body span{
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 10px;
    font-size: 14px;
}


