:root {
    --base-color: #000;
    --before-zindex: 10;
    --mg-top: 30px;
    --div-ht: 40px;
    --large-from-btn-justify: space-between;
    --icon_rot: 0deg;
    --warning: rgb(255, 125, 19);
    --success: rgb(16, 153, 57);
    --danger: rgb(233, 55, 55);
    --processing: #2463c2;
    --deafult-menu: #105f95;
    --task-color: rgb(233, 55, 55);
    --notice-display: none;
    --response-color: #202120;
    --td-text: #222222;
    --status-color: #5581C2;
}

* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

button,
select,
input[type=date],
input[type=file] {
    cursor: pointer;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.error {
    color: #ff2929;
    font-size: 13px;
    width: 100%;
    padding: 6px 8px 0;
    display: none;
}

.hide {
    display: none;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container .content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #3331;
    box-shadow: 0 0 20px #3332;
    border: 1px solid #3331;
    border-radius: 10px;
    padding: 50px 0px 40px;
}

.tablet,
.mobile {
    display: none !important;
}

.desktop {
    display: inline-block !important;
}

.container .content ul.menu,
.container .content .footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--base-color);
    display: inline-block;
    padding: 10px;
}

.container .content ul.menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--base-color);
    z-index: var(--before-zindex);
}

.container .content .footer {
    top: unset;
    bottom: 0;
    background-color: #efefef;
    height: 40px;
    padding: 0 10px 0 8px;
}

.container .content .footer .company_info {
    width: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 0 10px;
    height: 100%;
    font-size: 12px;
}

.container .content .footer .menu_head {
    width: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 0 10px;
    height: 100%;
}

.container .content .footer .menu_head label {
    font-size: 13px;
    color: #555;
    letter-spacing: .6px;
}

.container .content ul.menu li {
    float: left;
    width: auto;
    height: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--deafult-menu);
    color: #fff;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    column-gap: 5px;
    transition: all linear .3s;
}

.container .content ul.menu li span {
    letter-spacing: .7px;
    font-size: 12px;
    font-weight: 200;
}

.container .content ul.menu li i {
    font-size: 13px;
}

.container .content ul.menu li.sign_out {
    float: right;
    background-color: #ff6629;
    margin-right: 0;
}

.container .content ul.menu li:nth-last-child(2),
.container .content ul.menu li:last-child {
    float: right;
    margin-right: 10px;
}

.container .content ul.menu li:nth-last-child(2) {
    margin-right: 0;
}

.container .content ul.menu li.sign_out:hover {
    color: #ff6629 !important;
}

.container .content ul.menu li:hover {
    background-color: #eee;
    color: #105f95;
}

.default{
    background-color: var(--deafult-menu) !important;
    color: #fff !important;
}

.hold {
    background-color: var(--warning) !important;
    color: #fff !important;
}

.success {
    background-color: var(--success) !important;
    color: #fff !important;
}

.danger {
    background-color: var(--danger) !important;
    color: #fff !important;
}

.hold i,
.success i,
.danger i,
.default i{
    transition: all linear .2s;
}

.hold:hover,
.success:hover,
.danger:hover,
.default:hover {
    background-color: #fff !important;
}

.default:hover {
    color: var(--deafult-menu) !important;
}

.hold:hover {
    color: var(--warning) !important;
}

.success:hover {
    color: var(--success) !important;
}

.danger:hover {
    color: var(--danger) !important;
}

.hold:hover i,
.success:hover i,
.danger:hover i,
.default:hover i{
    transform: scale(1.5);
}

.container .content ul.menu li.active {
    background-color: #fff !important;
    color: #105f95 !important;
}

.container .content ul.menu li i {
    transform: rotate(var(--icon_rot));
}

.container .content ul.menu li ul.sub_menu {
    width: 180px;
    float: left;
    position: absolute;
    height: 0;
    grid-template-columns: 1fr;
    row-gap: 1px;
    background: #e1edff;
    top: 30px;
    left: 0;
    overflow: hidden;
    border-radius: 3px;
    opacity: 0;
    transition: opacity linear .4s;
    z-index: 99999;
}

.container .content ul.menu li.profile ul.sub_menu {
    left: unset;
    right: 0;
}

.container .content ul.menu li ul.sub_menu li {
    margin: 0;
    float: left;
    border-radius: 2px;
    height: 30px;
    margin-bottom: 2px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    column-gap: 10px;
}

.container .content ul.menu li ul.sub_menu li:last-child {
    margin: 0;
}

.container .content ul.menu li ul.sub_menu li:hover {
    background-color: #eee;
    color: #105f95;
}

.container .content ul.menu li:hover ul.sub_menu,
.container .content ul.menu li ul.sub_menu:hover,
.container .content ul.menu li ul.sub_menu li:hover~ul.sub_menu {
    padding: 3px;
    height: auto;
    opacity: 1;
}

.top-large {
    width: 98%;
}

app-root {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: var(--align-items);
    background-color: #fff;
    padding: var(--app-padding);
    row-gap: 20px;
}

/* width */
app-root::-webkit-scrollbar {
    width: 5px;
}

/* Track */
app-root::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
app-root::-webkit-scrollbar-thumb {
    background: var(--base-color);
    border-radius: 10px;
}

/* Handle on hover */
app-root::-webkit-scrollbar-thumb:hover {
    background: #1d1d50;
}

app-root fieldset {
    width: 600px;
    border: none;
    border-radius: 7px;
    box-shadow: 0 0 10px #4443;
    padding: 10px 20px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

app-root fieldset legend {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #3332;
    letter-spacing: .6px;
    color: #105f95;
    text-transform: lowercase;
    cursor: pointer;
    z-index: 10;
    transition: all ease-in-out .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

app-root fieldset legend i {
    transform: rotate(var(--icon_rot));
}

app-root fieldset legend:nth-child(2),
app-root fieldset legend:nth-child(3) {
    position: absolute;
    top: -36px;
    left: 170px;
}

app-root fieldset legend:nth-child(3) {
    right: 20px;
    left: unset;
}

app-root fieldset legend span::first-letter {
    text-transform: uppercase;
}

app-root fieldset legend.active {
    background-color: var(--base-color);
    color: #fff;
    border-color: var(--base-color);
}

app-root fieldset .form,
app-root fieldset #field_content,
app-root fieldset #type_content,
app-root fieldset .form .form-block,
app-root fieldset .form .form-btn {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top-large .form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}

#qr_generate{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 70px;
}

app-root fieldset .form {
    padding: 5px;
}

app-root fieldset .form .form-block {
    margin-bottom: 8px;
    height: auto;
    float: left;
}

app-root fieldset .form .field_2,
app-root fieldset .form .field_3{
    display: none;
}

app-root fieldset .form .line {
    width: 100%;
    padding-left: 42%;
    height: 30px;
    font-size: 14px;
    color: #5581c1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    letter-spacing: .6px;
}

app-root fieldset .form .line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    height: 2px;
    width: 40%;
    border-radius: 2px;
    background-color: #5581c199;
}

app-root fieldset .form .form-block .multiple_inp {
    width: 100%;
    display: grid;
    column-gap: 10px;
    grid-template-columns: var(--col);
}

app-root fieldset .form .form-block label {
    width: 100%;
    float: left;
    height: 22px;
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: left;
    align-items: flex-end;
}

app-root fieldset .form .form-block label span {
    text-transform: lowercase;
    letter-spacing: 1px;
}

app-root fieldset .form .form-block label span i {
    text-transform: uppercase;
    font-style: normal;
    color: #007cd2;
    font-weight: 600;
}

app-root fieldset .form .form-block label span::first-letter {
    text-transform: uppercase;
}

app-root fieldset .form .form-block label span.req {
    color: #f00;
    margin-left: 20px;
}

app-root fieldset .form .form-block input,
app-root fieldset .form .form-block select,
app-root fieldset .form .form-block textarea {
    float: left;
    width: 100%;
    height: 34px;
    border: 1px solid #3334;
    border-radius: 5px;
    outline: none;
    padding: 5px 7px;
    color: #555;
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: .7px;
}

app-root fieldset .form .form-block input:invalid~.error {
    display: block;
}

app-root fieldset .form .form-block textarea {
    resize: none;
    height: 100px;
    padding: 5px 7px;
}

app-root fieldset .form .form-block select {
    font-size: 13px;
    cursor: pointer;
}

app-root fieldset .form .form-block input:read-only {
    background-color: #3331;
}

app-root fieldset .form .form-block input[type=file] {
    background-color: #fff;
    cursor: pointer;
}

app-root fieldset .form .form-btn {
    float: left;
    margin-top: var(--mg-top);
    height: var(--div-ht);
    display: flex;
    justify-content: var(--large-from-btn-justify);
    column-gap: 20px;
}

app-root fieldset .form .form-btn button {
    border: none;
    border-radius: 5px;
    background-color: #4daf74d2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all ease-in-out .4s;
    min-width: 100px;
    height: 100%;
    padding: 0 15px;
}

app-root fieldset .form .form-btn button[type=submit] {
    float: right;
}

app-root fieldset .form .form-btn button[type=submit]:disabled {
    cursor: not-allowed;
}

app-root fieldset .form .form-btn button[type=submit]:not(:disabled):hover {
    background-color: #0b873b;
}

app-root fieldset .form .form-btn button[type=reset] {
    background-color: #ff5151c2;
    float: left;
}

app-root fieldset .form .form-btn button[type=reset]:hover {
    background-color: #dd3a25;
}

app-root .search-result {
    float: left;
    width: 100%;
    height: 200px;
    background-color: #fff;
    margin-top: 50px;
    box-shadow: 0 0 10px #3333;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

app-root .search-result p {
    color: #555;
    font-size: 27px;
    letter-spacing: .7px;
}

app-root .table_con {
    float: left;
    width: 100%;
    overflow: hidden;
    height: auto;
    min-height: 100%;
    border-radius: 10px;
}

app-root table {
    width: calc(100% - 20px);
    border-collapse: collapse;
    border-radius: 5px;
    margin: 0 10px;
}

app-root table .tab_head_div {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 2px 3px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 3px;
}

app-root table .tab_head_div select,
app-root table .tab_head_div input {
    height: calc(100% - 1px);
    width: auto;
    min-width: 140px;
    border: 1px solid #dedede;
    border-radius: 3px;
    outline: none;
    padding: 2px 4px;
}

app-root table .tab_head_div select {
    cursor: pointer;
}

app-root table .tab_head_div input[type=search] {
    margin-right: auto;
    width: 250px;
}

app-root table th,
app-root table td {
    border: 1px solid #3331;
    border-right: 0;
    font-size: 13px;
    font-weight: 300;
    height: 32px;
    text-align: left;
    vertical-align: middle;
    padding: 0 10px;
    letter-spacing: .7px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
}

app-root table thead {
    background-color: #105f95;
    color: #fff;
}

app-root table th:last-child,
app-root table td:last-child {
    border-right: 1px solid #3331;
    text-align: center;
}

app-root table th:first-child,
app-root table td:first-child {
    width: 40px;
    text-align: center;
}

app-root table th.search_con {
    padding: 1px;
    height: 36px;
}

app-root table th.search_con .date_range {
    margin: 0 12px;
    height: 28px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 0 10px;
    border-left: 1px solid #3333;
    border-right: 1px solid #3333;
}

app-root table th.search_con .date_range span {
    color: #333;
}

app-root table td {
    font-size: 12px;
    font-weight: 300;
    color: #555;
}

app-root table td:last-child {
    padding: 0;
}

app-root table td .tr_div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 7px;
    column-gap: 7px;
}

app-root table td .tr_div button {
    padding: 5px 8px;
    border: 0;
    border-radius: 3px;
}

app-root table td .tr_div button.warning {
    background-color: #ff6629 !important;
    color: #fff;
}

app-root table td .tr_div button:last-child {
    background-color: #105f95;
    color: #fff;
}

app-root table.chart thead th.instruction {
    padding: 0;
}

app-root table.chart th.instruction div {
    width: 100%;
    background-color: #fff;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 7px;
    padding: 0 7px;
}

app-root table.chart th.instruction div label {
    font-size: 9px;
    padding: 5px 7px;
    border-radius: 3px;
    pointer-events: none;
}

app-root table.chart th.instruction div label.pending {
    background-color: var(--danger);
}

app-root table.chart th.instruction div label.processing {
    background-color: var(--processing);
}

app-root table.chart tbody tr td {
    text-align: center;
}

app-root table.chart thead tr:nth-child(2) th:not(:nth-child(2)) {
    text-align: center;
}

app-root table.chart tbody tr td:nth-child(2) {
    text-align: left;
}

app-root table.chart td span.dot_border {
    height: 20px;
    width: 20px;
    background-color: #e7eaef;
    float: left;
    border: 5px solid var(--task-color);
    border-radius: 50%;
    margin: 5px calc((100% - 20px) / 2);
    cursor: pointer;
}

/* loader */
.lds-roller {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    inset: calc((100% - 80px) / 2);
    z-index: 9999;

}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #083b5f;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Id wise design */
#terms_con input[type=checkbox] {
    height: 15px;
    width: 15px;
    margin-top: 10px;
}

#terms_con label {
    margin-top: 3px;
    float: left;
    font-size: 12px;
    margin-left: 10px;
    width: auto;
    cursor: pointer;
    letter-spacing: 1px;
    color: #ff3e3e;
}

#terms_con input[type=checkbox]:checked~label {
    color: #0b873b;
}

#content {
    width: 100%;
    height: 0;
    background-color: #dedede55;
    color: var(--response-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    opacity: 0;
    font-weight: 600;
    letter-spacing: .7px;
    transition: opacity linear .4s;
}

.footer {
    font-size: 13px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #efefef;
    z-index: var(--before-zindex);
}

.footer a,
.footer span {
    color: #555;
    letter-spacing: .6px;
    font-weight: 600;
    font-size: 12px;
}

.footer a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 5px;
}

.footer a img {
    height: 25px;
}

.footer a:nth-child(3) {
    color: #105f95;
    text-decoration: underline;
}

.login {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: var(--align-items);
    inset: 0;
    background-color: #fff;
    z-index: 9999;
    overflow-y: var(--scroll);
    padding: var(--form-pad);
}

.login .logo {
    width: 600px;
    position: absolute;
    top: -150px;
    left: 0;
    display: flex;
    justify-content: center;
}

.login .logo img {
    max-height: 70px;
}

.login button.toggle {
    width: calc(100% - 10px);
    margin-top: 15px;
    height: 35px;
    border: 0;
    border-radius: 5px;
    background-color: #5581c1;
    color: #fff;
    font-size: 15px;
    letter-spacing: .7px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.login ul {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    padding-top: 10px;
    padding-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    font-size: 13px;
    letter-spacing: .7px;
    background-color: #fff;
    box-shadow: 0 0 8px #3331;
}

.login ul li {
    padding: 10px;
    cursor: pointer;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all linear .3s;
}

.login ul li::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    top: calc((100% - 5px) / 2);
    left: 0;
    background-color: #888;
    transition: all linear .3s;
}

.login ul li::before {
    width: 50%;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 20%;
    background-color: #888;
    transition: all linear .3s;
}

.login ul li:hover {
    color: #105f95;
}

.login ul li:hover::after {
    background-color: #105f95;
}

.login ul li:hover::before {
    width: 80%;
    left: 10%;
    background-color: #105f95;
}

input#uname {
    padding-right: 60%;
}

span#uname_ext {
    position: absolute;
    right: 0;
    width: 60%;
    background-color: #fff;
    height: 34px;
    bottom: 0;
    border: 1px solid #3334;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 5px 7px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    color: #5581c1;
}

.notice::after {
    content: attr(data-notice);
    position: absolute;
    top: -7px;
    right: -7px;
    height: 18px;
    width: 18px;
    font-size: 9px;
    background-color: #ff2929;
    color: #fff;
    font-weight: 100;
    display: var(--notice-display);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 100;
}

.notice:hover::after {
    background-color: #fff;
    color: #f00;
}
/* card view design */
.view-card{
    max-width: 400px;
    width: 96%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #3333;
    color: #555;
    overflow: hidden;
}

.view-card h3{
    width: 100%;
    font-size: 20px;
    float: left;
    margin-bottom: 10px;
}

.view-card ul{
    width: 100%;
    float: left;
}

.view-card ul li{
    width: 100%;
    height: 22px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 10px;
    align-items: center;
    font-size: 14px;
}

.qr_images{
    /* min-height: 100%; */
    width: 100%;
    padding: 50px 15px 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

#download_all{
    position: fixed;
    bottom: 50px;
    right: 15px;
    width: auto;
    height: 32px;
    border-radius: 3px;
    background-color: #ffeb38;
    color: #000;
    cursor: pointer;
    column-gap: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 12px;
    border: 0;
    letter-spacing: 1px;
    z-index: -9999;
    opacity: 0;
    font-weight: 600;
}

.qr_images .img{
    width: 250px;
    height: auto;
    overflow: hidden;
    padding: 5px 15px;
    box-shadow: 0 0 5px #3332;
    border-radius: 5px;
}

.qr_images .img .status{
    position: absolute;
    right: 5px;
    top: 5px;
    height: 20px;
    width: 20px;
    background-color: #5555;
    border-radius: 50%;
    z-index: 9;
}

.qr_images .img img{
    max-height: 100%;
    max-width: 100%;
    transform: scale(1.2);
    padding: 10px;
}

.qr_images .img .btn{
    width: 100%;
    height: 30px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 10px;
    margin-top: 10px;
}

.qr_images .img .btn button{
    height: 100%;
    border: 0;
    border-radius: 3px;
    background-color: var(--btn-color);
    color: #fff;
    cursor: pointer;
    column-gap: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 12px;
}

.qr_images .img label{
    height: 30px;
    width: 100%;
    font-size: 13px;
    float: left;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 4px;
}

.table_con tr .tr_img{
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.table_con tr .tr_img img{
    max-width: 100%;
    max-height: 100%;
    transform: scale(1.1);
}

.table_con #dataList td{
    color: var(--td-text);
    font-size: 14px;
}

.remove_all,
.goto_top{
    border: 0;
    height: 50px;
    width: auto;
    padding: 0 20px;
    border-radius: 5px;
    background-color: var(--danger);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    font-size: 16px;
    transition: all linear .4s ;
    align-self: flex-end;
}

.remove_all:hover{
    background-color: #fd5252;
}

.goto_top{
    background-color: var(--deafult-menu);
}

app-root .con_footer{
    width: 100%;
    /* bottom: 0;
    position: absolute;
    left: 0; */
    height: 40px;
    background-color: #3332;
    z-index: 9999;
    padding: 0 40px 0 0;
    display: none;
}

app-root .con_footer .btn{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

app-root .con_footer .btn .button{
    width: var(--btn-width);
    height: 30px;
    font-size: 13px;
    letter-spacing: 1.2px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

app-root .con_footer button.top{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
}

.table_con td.status{
    text-align: center;
}

.table_con td.status span{
    background-color: var(--status-color);
    padding: 3px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
}

.table_con tr:first-child th button,
.table_con tr:first-child th select{
    height: 25px;
    border: 0;
    border-radius: 3px;
    width: 170px;
    background-color: #fff;
    padding: 0 7px;
    cursor: pointer !important;
    outline: unset;
    position: absolute;
    top: 3px;
    right: 120px;
}

.table_con tr:first-child th select{
    letter-spacing: .7px;
}

.table_con tr:first-child th #total_show{
    left: 3px;
    width: 100px;
}

.table_con tr:first-child th #user_id{
    right: unset;
    left: 513px;
    width: 190px;
}

.table_con tr:first-child th button{
    right: 5px;
    width: auto;
    padding: 0 10px;
    background-color: #fd5252;
    color: #fff;
}

.table_con tfoot tr td div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 5px 0 7px;
    height: 50px;
}

.table_con tfoot tr td div button {
    height: 30px;
    width: 30px;
    border: 0;
    border-radius: 50%;
    box-shadow: inset 3px 3px 8px #eee, 3px 3px 8px #eee;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    transition: box-shadow ease-in-out .3s;
}

.table_con tfoot tr td div button.act,
.table_con tfoot tr td div button:hover {
    background-color: var(--deafult-menu);
    box-shadow: 2px 2px 8px #aaa;
    color: #fff;
}

.table_con tfoot tr td div button:first-child,
.table_con tfoot tr td div button.end-btn{
    width: 50px;
    border-radius: 20px;
}

.table_con thead input#instant_search{
    position: absolute;
    left: 107px;
    top: 3px;
    border: 0;
    border-radius: 3px;
    height: 25px;
    padding: 3px 7px;
    outline: unset;
    width: 250px;
    font-size: 12px;
    letter-spacing: .7px;
}

#page_list span{
    position: absolute;
    right: 20px;
    border: 0;
    border-radius: 30px;
    background-color: #105f95;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    transition: box-shadow ease-in-out .3s;
    height: 30px;
    width: auto;
    color: #fff;
    padding: 0 20px;
}

input#month_wise{
    position: absolute;
    left: 361px;
    top: 3px;
    border: 0;
    border-radius: 3px;
    height: 25px;
    padding: 3px 7px;
    outline: unset;
    width: auto;
    font-size: 12px;
    letter-spacing: .7px;
}

.qr-list-grid{
    width: 100%;
    display: grid;
    grid-template-columns: 200px calc(100% - 210px);
    column-gap: 10px;
    grid-template-rows: 100%;
    padding: 10px 17px;
}

.qr-list-grid ul{
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
}

.qr-list-grid ul li{
    width: 100%;
    height: 30px;
    margin-bottom: 7px;
    background-color: #efefef;
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    transition: all ease-in-out .3s;
    font-size: 14px;
    letter-spacing: .7px;
}

.qr-list-grid ul li.active,
.qr-list-grid ul li:hover{
    background-color: #083b5f;
    color: #fff;
    border-radius: 5px;
}

.qr-list-grid ul li:last-child{
    margin-bottom: 0;
}

.qr-list-grid .qr{
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.qr-list-grid .qr label.time_log{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-style: italic;
    font-size: 14px;
}

.qr-list-grid .qr .img-con{
    width: 200px;
    border: 1px solid blanchedalmond;
    border-radius: 3px;
    overflow: hidden;
}

.qr-list-grid .qr img{
    height: 200px;
    width: 200px;
}

.qr-list-grid .qr .img-con label{
    width: 100%;
    height: 30px;
    font-size: 15px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: antiquewhite;
}

.qr-list-grid .qr .img-con .btn-action{
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    align-items: center;
}

.qr-list-grid .qr .img-con .btn-action button{
    height: 28px;
    border: 0;
    padding: 0 10px;
    letter-spacing: .5px;
    font-size: 12px;
    border-radius: 3px;
}

.qr-list-grid .qr .img-con .btn-action button.download{
    background-color: #083b5f;
    color: #fff;
}

.qr-list-grid .qr .img-con .btn-action button.ready-print,
.qr-list-grid .qr .img-con .btn-action button.print-accept,
.qr-list-grid .qr .img-con .btn-action button.print-again,
.qr-list-grid .qr .img-con .btn-action button.ready-to-go{
    background-color: #0b873b;
    color: #fff;
}

.qr-list-grid .qr .img-con .btn-action button.print-cancel{
    background-color: #ff3e3e;
    color: #fff;
}

.qr-list-grid .qr .img-con .btn-action button.ready-to-go{
    width: 100%;
}

button#send_all_data{
    position: fixed;
    bottom: 50px;
    right: 15px;
    height: 28px;
    border: 0;
    padding: 0 10px;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 3px;
    background-color: #ff5200;
    color: #fff;
    box-shadow: -5px -5px 20px -2px #0008;
}

ul.instruction li{
    font-size: 11px;
    letter-spacing: 1px;
    color: #f00;
    padding: 3px 0;
    font-style: italic;
}

table td .card-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
}

table td .card-block .card {
    width: 300px;
    display: grid;
    grid-template-rows: 30px 120px 35px;
    row-gap: 7px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(51, 51, 51, 0.133);
    border-image: initial;
    overflow: hidden;
    border-radius: 6px;
}

table td .card-block .card .card_head, table td .card-block .card .card_foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(8, 59, 95);
    color: rgb(255, 255, 255);
    padding: 0px 7px;
}

table td .card-block .card .card_foot {
    background-color: rgb(239, 239, 239);
    padding: 0px 3px;
}

table td .card-block .card .card_body ul {
    width: 100%;
}

table td .card-block .card .card_body ul li {
    width: 100%;
    height: 20px;
    margin-bottom: 5px;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    font-size: 12px;
    padding: 0px 10px;
}

table td .card-block .card .card_body ul li span {
    text-align: left;
    letter-spacing: 0.7px;
}

table td .card-block .card .card_body ul li span:last-child {
    text-align: right;
}

table td .card-block .card .card_foot {
    background-color: rgb(239, 239, 239);
    padding: 0px 3px;
}

table td .card-block .card .card_foot button {
    height: 28px;
    background-color: rgb(0, 50, 96);
    color: rgb(255, 255, 255);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 5px;
    letter-spacing: 1px;
    padding: 0px 7px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    border-radius: 5px;
}

table td .card-block .card .card_foot .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

table td .card-block .card .card_foot .switch input {
    opacity: 0;
    width: 0px;
    height: 0px;
}

table td .card-block .card .card_foot .slider {
    position: absolute;
    cursor: pointer;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgb(204, 204, 204);
    transition: 0.4s;
}

table td .card-block .card .card_foot .slider.round {
    border-radius: 28px;
}

table td .card-block .card .card_foot input:checked + .slider {
    background-color: rgb(83, 185, 95);
}

table td .card-block .card .card_foot .slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: rgb(216, 55, 55);
    transition: 0.4s;
}

table td .card-block .card .card_foot .slider.round::before {
    border-radius: 50%;
}

table td .card-block .card .card_foot input:checked + .slider::before {
    transform: translateX(32px);
    background-color: rgb(255, 255, 255);
}