* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #eeeeee;
    height: 100vh;
    position: relative;
    font-family: "Karla", sans-serif;
    font-style: normal;
    overflow: hidden;
}

.giticon {
    height: 52.5px;
    width: 52.5px;
}

.menuicon {
    height: 52.5px;
    width: 52.5px;
}

nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: baseline;
    padding: 25px 60px;
}

.history {
    width: 400px;
    height: 100vh;
    background-color: white;
    position: absolute;
    top: 0;
    left: -400px;
    border-radius: 10px;
    transition: left .5s ease;
    z-index: 1;
}

.history.showmenu {
    left: 0;
}

.closeicon {
    position: absolute;
    right: 0;
    height: 35px;
    width: 35px;
    padding: 30px;
}

.inputfield {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.cont1 {
    width: 25%;
    height: 80%;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.cont1.active {
    z-index: -1;
}

.cont1.drag {
    border: 3px solid black;
}

.cont2 {
    width: 25%;
    height: 80%;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    flex-direction: column;
    padding: 20px;
    z-index: -1;
}

.cont2.active {
    z-index: 0;
}

.inputfile {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.text {
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.text_2 {
    margin-bottom: 15px;
}

.text.active {
    z-index: -1;
}

.text>img {
    height: 150px;
    width: 150px;
}

.text>p {
    margin-top: 40px;
}

.showdtl {
    width: 400px;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    position: absolute;
    top: 0;
    right: -400px;
    border-radius: 10px;
    transition: right .5s ease;
    overflow-x: scroll;
    scrollbar-width: none;
}

.showdtl.showmenu {
    right: 0;
}

table {
    width: 90%;
    max-width: 90%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 5%;

}

th,
td {
    border: solid .1px rgba(0, 0, 0, 0.05);
    width: 50%;
    max-width: 50%;
    padding: 10px;
    word-wrap: break-word;
}

th:nth-child(2) {
    width: 20%;
}

.removeallbtn,
.uploadbtn {
    width: 90%;
    margin: 5px 5%;
    height: 45px;
    border-radius: 10px;
    outline: none;
    border: none;

}

.sticky {
    position: sticky;
    z-index: 1;
    bottom: 1px;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 5%;
}

.loadingpage {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 2;
    top: -100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: top 1s ease;
}

.pleasewaitpage {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 2;
    top: -100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: top 1s ease;
}

.pleasewaitpage.showloading {
    top: 0px;
}

.loadingpage.showloading {
    top: 0px;
}

.container_temp {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(250px);
    transition: all 1.1s ease;
}

.container_1.active {
    transform: translateY(0px);
}

.container_7 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(250px);
    transition: all 1.1s ease;
}

.container_7.active {
    transform: translateY(0px);
}

.container_3 {
    width: 90%;
    margin: 5%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn_1 {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all .3s ease;
    box-shadow: none;
}

.btn_2 {
    width: 42.5%;
    height: 50px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.btn_3 {
    width: 70%;
    height: 50px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.btn_3>p,
.btn_2>p {
    font-size: 15px;
    font-weight: 600;
}

.btn_1>p {
    font-size: 18px;
}

.btn_1>img {
    position: absolute;
    right: 10%;
}

.btn_1:hover,
.btn_2:hover {
    border: solid rgb(0, 0, 0) 1px;
    box-shadow: 2px 2px black;
}

.table_2 {
    text-align: left;
    margin: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    border: 1px solid black;
    margin-bottom: 10px;
}

.table_2 th {
    background-color: rgba(240, 248, 255, 0.2);
}

.table_3 {
    text-align: left;
    margin: 5%;
    width: 90%;
    max-width: 100%;
    margin-top: 20px;
    border: 1px solid black;
    margin-bottom: 10px;
}

.table_3 th {
    background-color: rgba(240, 248, 255, 0.2);
}

.scroll {
    overflow-y: scroll;
    height: 65vh;
    max-height: 65vh;
    scrollbar-width: none;
}

.scroll_1 {
    overflow-y: scroll;
    height: 50vh;
    max-height: 65vh;
    scrollbar-width: none;
}

.qr {
    height: 150px;
    width: 150px
}

.downloadlink {
    font-size: 13.28px;
}

.text_3 {
    font-size: 14px;
    font-weight: bold;
}

.container_4 {
    width: 25%;
    height: 70%;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-direction: column;

}

.container_6 {
    width: 25%;
    height: 80%;
    padding: 10px 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-direction: column;

}

.code {
    height: 15%;
    width: 90%;
    border-radius: 10px;
    outline: none;
    border: 1px solid black;
    text-align: center;
    font-size: 20px;
    text-transform: lowercase;
    letter-spacing: 20px;
    transition: all .1s ease;
}

.alert {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    top: -50px;
    transition: all .5s ease;
}

.alert.showalert {
    top: 70px;
}

.container_5 {
    background-color: rgb(255, 230, 230);
    padding: 20px 70px;
    border-radius: 10px;
    border: 1px solid black;
}

.line {
    width: 0%;
    height: 5px;
    background-color: rgb(255, 59, 59);
    position: absolute;
    bottom: 1px;
    left: 2px;
    border-radius: 10px;
    transition: all 2s ease;
}

.line.active {
    width: 98%
}

.alertclose {
    height: 20px;
    width: 20px;
}