@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,600&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.15;
    font-family: 'Poppins', sans-serif;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
}

a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    outline: none;
}

.submit-section a:hover {
    color: #fff;
    background: #29cc6c;
    border-color: #29cc6c;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:hover,
a:focus {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    outline: none;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}

/*---------------START----------------*/
#login {
    float: left;
    width: 100%;
    position: relative;
    background: #00c6ff;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0072ff, #00c6ff);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    height: 100vh;
    background-attachment: fixed;
}

.overlayblack {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.login-outer {
    float: left;
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 150px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.login-outer>img {
    /*height: 100%;*/
}

.login-inner {
    max-width: 480px;
    width: 100%;
    min-height: 320px;
    height: auto;
    margin: auto 0;
}

.login-box {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 30px;
}

.client-logo {
    width: 100%;
    text-align: center;
}

.client-logo img {
    width: 230px;
    margin-bottom:15px;
}

.login-box h1 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

.login-box .form-control {
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
}

.login-box .form-control:focus {
    box-shadow: none;
    border-color: #6d2d02;
}

.login-box .form-floating>.form-control,
.form-floating>label {
    padding: 1rem 0.3rem;
}

.login-box .form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.9rem) translateX(0rem);
}

.login-footer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.login-footer p {
    color: #ececec;
    font-weight: 500;
    font-size: 16px;
    text-shadow: 2px 3px 4px rgb(0 0 0 / 50%), 0px 4px 0px rgb(255 255 255 / 10%);
}

.login-action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.submit-section {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.cardbody-border .submit-section {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 20px;
    margin: 0px;
    bottom: 20px;
}

.btn-primary,
.btn-border {
    width: 130px;
    height: 40px;
    text-align: center;
    border-radius: 100px;
    line-height: 40px;
    padding: 0;
    font-weight: 600;
    font-size: 14px;
    background: #265a8f;
    border: none;
    cursor: pointer;
    position: relative;
    margin-left: 6px;
}

.btn-add {
    width: 130px;
    height: 40px;
    text-align: center;
    border-radius: 100px;
    line-height: 40px;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    background: #666666;
    border: none;
    cursor: pointer;
    position: relative;
    margin-left: 6px;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #3570ad;
    box-shadow: none;
}

.btn-border {
    background: transparent;
    border: 1.5px solid #265a8f;
    color: #265a8f;
    cursor: pointer;
}

/*----------------END-----------------*/
.maincontent {
    float: right;
    width: 100%;
    height: 50px;
    position: relative;
}

.nav-top {
    height: 50px;
    padding: 0px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 15%;
    padding-right: 0px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-brand img {
    height: 44px;
}

.nav-link {
    padding: 0.9rem 1rem;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    color: #fff;
}

.navbar-brand {
    padding-top: 5px;
    float: left;
}

.footer {
    float: left;
    width: 85%;
    position: fixed;
    z-index: 99;
    background: rgb(157, 197, 238);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    bottom: 0px;
    right: 0px;
    min-height: 40px;
    padding: 0px 10px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease 0s;
}

.footerDiv {
    width: 100%;
    transition: all 0.3s ease 0s;
}

.top-right a {
display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
}

.top-right a i {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar {
    float: left;
    width: 100%;
    position: fixed;
    z-index: 99;
    background: rgb(38, 90, 143);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 5px 0;
}

.top-right {
    padding: 11px 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.top-right a {
    color: #fff;
    margin-right: 10px;
}

.top-right a span {
    margin: 10px;
}

.navbar {
    max-width: 15%;
    width: 100%;
    min-height: 100vh;
    height: auto;
    position: fixed;
    padding-top: 0px;
    left: 0;
    transition: all 0.3s ease 0s;
    background-color: #68a4d4 !important;
    /*background: #168e5d !important;*/
}

.hidenav {
    left: -20%;
    transition: all 0.3s ease 0s;
}

.nav-item {
    width: 100%;
}

.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef00;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #fff;
}

/* .input-group-text{
line-height: 45px;
padding: 12px 0.75rem;
height: 45px;
} */
.dropdown-menu {
    border: 0px;
    background: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.dropdown-item {
    line-height: 26px;
    font-size: 14px;
    color: #212529;
    font-weight: 500;
}

.navbar-expand-lg .navbar-collapse {
    width: 100%;
    align-items: flex-start;
    padding: 0px;
    overflow-y: auto;
    max-height: 100vh;
    margin-top: 4px;
}

.navbar-expand-lg {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 56px;
}

.dropdown-item:hover {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: relative;
    background: rgb(131, 184, 226);
}

.dropdown-menu.show {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

/*============================================*/
#company {
    float: left;
    height: 100vh;
    position: relative;
    width: 100%;
}

.mainbody {
float: right;
    width: 85%;
    margin-left: 15%;
    padding: 60px 0 0;
    position: relative;
    /* z-index: 9; */
    transition: all 0.3s ease 0s;
    overflow-y: auto;
    height: 95vh;
}

.maindiv {
    margin-left: 0px;
    width: 100%;
    transition: all 0.3s ease 0s;
}

.maintitle {
    float: left;
    width: 100%;
    font-size: 28px;
    color: #000;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 20px;
}

.cardbody {
    float: left;
    width: 100%;
    margin-bottom: 45px;
}

.cardbody .form-label {
    margin-bottom: 0.2rem;
    font-size: 13px;
    font-weight: 500;
}

td,
th {
    vertical-align: middle;
}

.cardbody .form-control,
.cardbody .form-select {
    height: 38px;
    font-size: 14px;
    border-color: #969696;
}

.cardbody .form-control:focus,
.cardbody .form-select:focus {
    box-shadow: none;
    border-color: #68a4d4;
}

.table-bordered {
    border: 1px solid #000;
}

.form-control {
    font-size: 13px;
    border: 1px solid #959595;
}

.table thead tr th {
    background: #7fb4de;
    font-size: 13px;
}

.table tbody tr td {
    font-size: 13px;
    line-height: 20px;
    padding: 15px 10px;
}

.actionbtns a {
    font-size: 14px;
    color: #000;
    line-height: 20px;
    margin: 0px 5px;
    display: inline-block;
}

.cardbody-border {
    border: 1px solid #000;
    padding: 15px;
    float: left;
    width: 100%;
    position: relative;
    min-height: 500px;
    margin-bottom: 20px;
}

.cardbody-fillcolor {
    background: #C1E1C1;
    /*background: #7fb4de;*/
    border: 1px solid #000;
    float: left;
    width: 100%;
    position: relative;
    min-height: 100px;
    height: auto;
    padding: 20px;
    margin-bottom: 40px;
}

.purchase.cardbody-fillcolor {
    margin-bottom: 20px;
}

fieldset {
    border: 1px groove #ddd !important;
    padding: 10px 10px 0 !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

.form-check {
    margin: 5px 8px 5px 0px;
}

.cardbody-border .form-check {
    margin: 30px 0px 0;
}

.cardbody-border fieldset .form-check {
    margin: 5px 5px;
}

legend {
    width: auto;
    padding: 7px 10px;
    border-bottom: none;
    display: block;
    margin-top: -25px;
    background: #edf3f7;
    font-size: 14px;
    margin-left: 10px;
}

.table>thead {
    vertical-align: bottom;
    background: #eaa5ce;
}

.form-check-input {
    margin-top: 0px;
}

.form-label {
    margin-bottom: 2px;
    font-size: 13px;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 10px;
}

.cardbody-border fieldset {
    margin: 10px 0 0 0 !important;

}

.table-orderentry tfoot tr td label {
    float: right;
    font-size: 14px;
}

.label-field {
    display: flex;
    flex-direction: row;
    min-height: 75px;
    align-items: center;
}

.orderentry .cardbody-border,
.jobSheet .cardbody-border,
.jobSheetpurchase .cardbody-border,
.wholesalejewelpos .cardbody-border,
.pos .cardbody-border {
    min-height: 175px;
    margin-bottom: 10px;
}

.orderentry .cardbody-border .submit-section {
    margin-top: 15px;
}

.btn-small-square {
    height: 35px;
    font-size: 12px;
    line-height: 35px;
    padding: 0px;
    width: 100%;
    border: 0px;
    background: #265a8f;
    color: #fff;
    border-radius: 4px;
}

.upload label {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 0;
    font-family: sans-serif;
    border-radius: 0.3rem;
    cursor: pointer;
    width: 34px;
    height: 35px;
    border: 2px dotted #3570ad;
    color: #3570ad;
    text-align: center;
    font-size: 21px;
    line-height: 32px;
}

.upload label img {
    width: 33px;
    object-fit: cover;
}

.upload {
    margin: 0px 5px;
}

#list-add-item{
    display: flex;
    flex-direction: row-e;
    justify-content: flex-end;
    align-items: center;
}
.entrylisting .nav-link {
    min-width: 240px;
    width: 100%;
    height: 100px;
    display: flex;
    color: #000;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid #000;
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    padding: 12px;
    position: relative;
}

.entrylisting .nav-pills .nav-link {
    border: 1.5px solid #000;
}

.entrylisting .nav-link span {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.entrylisting .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #000;
    background: #0d6efd;
}

.entrylisting .nav-pills .nav-link.active.color-alllisting,
.dashboardcol.color-alllisting {
    background: #e4e4e4;
}

.entrylisting .nav-pills .nav-link.active.color-supplier-rd,
.dashboardcol.color-supplier-rd {
    background: #ffee93;
}

.entrylisting .nav-pills .nav-link.active.color-unassigned,
.dashboardcol.color-unassigned {
    background: #ff9aa2;
}

.entrylisting .nav-pills .nav-link.active.color-wtsupplier,
.dashboardcol.color-wtsupplier {
    background: #b5dfea;
}

.entrylisting .nav-pills .nav-link.active.color-supplier-pd,
.dashboardcol.color-supplier-pd {
    background: #f66672;
}

.entrylisting .nav-pills .nav-link.active.color-delivercus,
.dashboardcol.color-delivercus {
    background: #b5eac4;
}

.btnopen {
    position: absolute;
    bottom: 20px;
    left: 10px;
    transform: rotate(180deg);
}

.table-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.table-action span {
    margin: 0px 5px;
}

.table-action a {
    display: inline-block;
    margin: 0px 3px;
    color: #000;
}

.table-action a i {
    font-size: 16px;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bs-primary);
}

.form-column {
    width: 120px;
    float: left;
    margin-right: 15px;
}

.main-head,
.sign {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sign {
    width: 100%;
    margin-bottom: 0px;
}

fieldset {
    margin-top: 10px !important;
}

.entrylisting .nav-pills .nav-link span {
    width: 100%;
    text-align: right;
}

.filter .input-group-text {
    height: 31px;
    background: #fff;
    position: absolute;
    z-index: 99;
    border: 0px;
    top: 1px;
}

/* .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
} */
.input-group-text img {
    width: 18px;
}

/* .input-group .form-control{
padding-left: 45px;
} */
.tradecost {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.tradecost fieldset {
    margin-right: 15px !important;
}

.submit-outer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.row-new {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.entrylisting .form-label {
    line-height: 35px;
    font-size: 14px;
}

.col-form-label {
    font-size: 14px;
}

.filter {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.form-filter {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.form-filter label {
    margin-right: 15px;
    min-width: 70px;
}

.tab-content {
    float: left;
    width: 100%;
}

.customersign {
    width: 100%;
}

.table-orderentry tfoot tr td .customersign label {
    text-align: left;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
    float: left;
}

.signbox {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    min-height: 70px;
    border-radius: 0.25rem;
}

.visible-values {
    float: left;
    width: 100%;
    display: block;
}

.detailorder label {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.detailorder p {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.advancepay {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.advancedpayment,
.billamount {
    width: 380px;
    height: 70px;
    background: #f1f0c4;
    border: 1px solid #f8f8f8;
    margin-right: 25px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.billamount {
    background: #fcfa91;
}

.advancedpayment label {
    font-size: 16px !important;
    font-weight: 800;
    width: 220px;
}

.advancedpayment .form-control {
    font-size: 32px;
    height: 55px;
    text-align: right;
    font-weight: 800;
    padding: 2px 10px;
}

.billamount label {
    font-size: 16px !important;
    font-weight: 800;
    width: 140px;
}

.billamount p,
.advancedpayment p {
    font-size: 32px;
    text-align: right;
    font-weight: 800;
}

.billamount {
    justify-content: space-between;
}

tfoot tr:last-child td {
    border-top: 1px solid #000 !important;
}

.filter .form-control,
.filter .form-select {
    height: 38px;
    font-size: 14px;
}

.filter .submit-section {
    margin-top: 15px;
}

.modal-title {
    font-weight: 800;
}

.paymode {
    width: auto;
    height: 70px;
    background: #b2f1cf;
    border: 1px solid #f8f8f8;
    margin-right: 25px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.paymode label {
    font-size: 16px !important;
    font-weight: 800;
    width: 220px;
}

.tradecost .paymode p {
    font-size: 32px;
    text-align: right;
    font-weight: 800;
    margin-bottom: 0px;
}

.table> :not(:first-child) {
    border-top: 1px solid currentColor;
}

.popup-btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 1;
    background-color: cyan;
    filter: invert(1);
}

.modal {
    position: fixed;
    top: 2%;
    left: 2%;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-fullscreen {
    width: 96vw;
    height: 96vh;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.dashboardcol {
    /*    min-width: 240px;*/
    width: 100%;
    min-height: 200px;
    height: 100px;
    display: flex;
    color: #000;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    /* border: 2px solid #000; */
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    padding: 25px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.dashboardcol span {
    font-size: 64px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.dashboardcol .btnopen {
    right: 10px;
    left: inherit;
    bottom: 30px;
    transform: rotate(0deg);
}

.subtitle {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

.dashboardcol p {
    font-size: 18px;
}

.box-customer {
    width: 100%;
    min-height: 238px;
    height: 100%;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.box-customer p {
    font-size: 20px;
    line-height: 34px;
    color: #000;
    font-weight: 500;
    margin-bottom: 25px;
}

.box-customer .count-total {
    font-size: 62px;
    line-height: 50px;
    font-weight: 800;
    color: #168e5d;
}

.box-customer img {
    width: 92px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0.9;
}

/*------------Customer Form------------*/
.top-image {
    float: left;
    width: 100%;
    background: url(../images/cusform/img4.jpg) no-repeat;
    min-height: 230px;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(2 48 29 / 89%);
}

.logo {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    min-height: 230px;
    color: #fff;
}

.mainsec {
    float: left;
    width: 100%;
    padding: 30px 0px;
}

.top-image .logo img {
    width: 140px !important;
}

.logo h1 {
    margin-top: 30px;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.formHead {
    margin-bottom: 30px;
}

.mainsec .container {
    max-width: 980px;
}

.mainsec .submit-section {
    justify-content: center;
    padding-bottom: 50px;
}

.mainsec .submit-section .btn-primary,
.mainsec .submit-section .btn-border {
    width: 130px;
    font-size: 14px;
    margin: 0px 10px;
}

.console .cardbody-border {
    min-height: auto;
    margin-bottom: 30px;
}

.table-fix {
    min-height: 230px;
    height: auto;
}

.sticky-bottom {
position: fixed;
    width: 85%;
    bottom: 43px;
    right: 0px;
    padding: 0px;
    background-color: #fff !important;
    padding: 10px 12px !important;
}

.jobSheetpurchase,
.wholesalejewelpos,
.pos {
    height: 100vh;
    position: relative;
}

.sticky-bottom .table tbody tr td {
    font-size: 13px;
    padding: 3px 4px;
}

.sticky-bottom .table tbody tr th {
    font-size: 13px;
    padding: 9px 4px;
    font-weight: 600;
}

.table-fullwidth-scroll {
    width: 100%;
    max-height: 230px;
/*    height: 100%;*/
    overflow-y: auto;
    border: 1px solid #000;
    margin-bottom: 20%;
}

.headertop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.topbtn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 15px;
}

.fixed_header {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.fixed_header tbody {
    display: block;
    width: 100%;
    overflow: auto;
    height: 194px;
}

.fixed_header thead tr {
    display: block;
}

.fixed_header thead {
    background: black;
    color: #000 !important;
}

.fixed_header th,
.fixed_header td {
    padding: 5px;
    text-align: left;
    width: 400px;
}

.posvalue {
    margin-bottom: 20px;
    padding: 20px 20px 0;
    background-color: #C1E1C1;
}

.posvalue .form-lable {
    font-weight: 500;
}

.posvalue .valueTxt {
    font-size: 24px;
    font-weight: 600;
}

.wholesalejewelpos .fixed_header tbody {
    height: 147px;
}

.navbar-toggler {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0px;
    transition-duration: 0.5s;
}

.navbar-toggler .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 24px;
    width: 24px;
    top: 7px;
    right: 0px;
    padding: 0;
    z-index: 999;
}

.navbar-toggler .icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    content: "";
    top: 0;
    right: 0px;
    transform: rotateZ(45deg) scaleX(1) translate(1px, 6px);
}

.navbar-toggler .icon:after {
    transition-duration: 0.5s;
    position: absolute;

    background-color: #ffffff;
    content: "";

    width: 20px;
    height: 2px;
    transform: rotateZ(-45deg) scaleX(1) translate(-11px, -5px)
}

.navbar-toggler.open .icon {
    transition: 0.5s;
}

.navbar-toggler.open .icon:before {
    transform: none;
    width: 20px;
    height: 2px;
}

.navbar-toggler.open .icon:after {
    transform: none;
    width: 12px;
    height: 2px;
    top: 8px;
    right: 0px;
}

.navbar-toggler:hover {
    cursor: pointer;
}

.navbar-expand-lg .navbar-toggler {
    display: inline-block;
}

th.text-align {
    text-align: center;
}

td.font-mono {
    font-family: monospace !important;
}

.recentlogos {
    float: left;
    width: 100%;
    /* margin-top: 20px;
    margin-bottom: 30px;*/
}

.logtable {
    border: 1px solid #000;
    background-color: #fff;
}

.recentlogos .logtable tbody tr td table,
.recentlogos .logtable {
    width: 100%;
}

.recentlogos .logtable tbody tr td table tr td.datetime,
.recentlogos .logtable tbody tr td table tr td.description,
.recentlogos .logtable tbody tr td table tr td.timelog {
    text-align: left;
    padding: 10px 10px;
    vertical-align: top;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

.recentlogos .logtable tbody tr td table tr td.datetime p,
.recentlogos .logtable tbody tr td table tr td.description p,
.recentlogos .logtable tbody tr td table tr td.timelog {
    font-size: 11px;
    margin-bottom: 5px;
}

.recentlogos .logtable tbody tr td table tr td.datetime p bold,
.recentlogos .logtable tbody tr td table tr td.description p bold,
.recentlogos .logtable tbody tr td table tr td.datetime p,
.recentlogos .logtable tbody tr td table tr td.timelog {
    font-weight: 700;
}

.recentlogos .logtable tbody tr td table tr td.datetime span,
.recentlogos .logtable tbody tr td table tr td.description span {
    font-size: 10px;
    line-height: 16px;
    font-weight: 400;
    display: block;
}

.sidetitle {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 20px;
}

.select2-search--dropdown .select2-search__field {
    font-size: 13px;
    height: 30px;
}

[type=search] {
    outline-offset: 0
}

.jobsheet-details-edit {
    max-height: 460px;
    border: 1px solid #000;
}

.catalogue-edit {
    height: 230px;
    border: none;
    margin: 0;
    height: 230px;
}

.direct-purchase-head {
    border: 1px solid #000;
    max-height: 130px;
}

.table-fullwidth-scroll .table {
    border: none;
    margin: 0;
}

.inventory-table {
    border: none !important;
}

.report-class thead tr td,
.report-class tbody tr td {
    padding: 6px 8px;
    font-size: 13px;
}

.report-class tbody tr td {
    background: #fff;
}

.report-class tbody tr.date-report td {
    background: #E1E7EA;
}

.table> :not(caption)>*>* {
    box-shadow: none;
}

.report-class tbody tr.date-report td {
    background: #EEEFEF;
}

.total_summary td {
    padding-bottom: 21px !important;
}

.cata_balance {
    height: 100%;
    max-height: 153px;
}

.cata_balance tr {
    border-bottom: 1px solid #000;
}

.td-category_id.position-relative {
    padding-right: 20px;
}

.td-category_id.position-relative .fa-refresh {
    position:absolute;
    cursor: pointer;
    font-size: 16px;
    background-color: #d4d5d6;
    border: none;
    color: #000;
    padding: 11px 15px;
    border-radius: 10px;
    margin: 0 4px;
}

/*-------------Purchase----------------*/
    .report-select > label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}
.filter-top {
    padding: 0 !important;
    float: left;
    width: 100%;
    background: transparent !important;
}
.filterbody {
    border: 1px solid #ddd;
   padding: 0px 15px 25px;
    background: transparent;
}
.report-select .form-check label {
    font-size: 14px;
}
.report-select .form-check {
    margin: 12px 19px;
}
 .report-select legend{
    font-weight: 600;
}
.filter-top fieldset {
    margin-top: 0 !important;
}
.form-check-label {
    cursor: pointer;
    font-size: 13px;
}
.printbtn {
    -webkit-appearance: none;
    outline: 0px;
    width: 41px;
    height: 36px;
    float: right;
    font-size: 22px;
}
.dashboard-content {
    float: left;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
.dashboard-content img {
    width: 400px;
}
.dashboard-content h1 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    margin: 21px 0px;
    color: #646464;
}
.dashboard-content h2 {
    font-size: 16px;
    line-height: 16px;
}
table thead tr td, table thead tr th {
    font-weight: 600;
} 
.report-overall-total {
    font-size: 18px;
    color: blue;
    font-weight: bold;
    text-align: right;
    padding: 10px 0px;
}
.main-logo {
    width: 100%;
    float: left;
    text-align: center;
    height: 100%;
}

.main-logo img{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    padding: 10px;
    height: 64%;
}

.inner-pages p {
    padding-bottom: 20px;
    font-size: 16px!important;
}

.inner-pages p {
    padding-bottom: 20px;
    font-size: 16px!important;
}

.inner-head h1 {
    font-size: 20px!important;
    padding-top: 20px;
    padding-bottom: 20px;
}
.inner-pages b {
    font-size: 18px!important;
    font-weight: bold;
    padding-bottom: 20px;
    float: left;
    width: 100%;
}

.inner-pages ul, .inner-pages ul li  {
    list-style: disc;
    margin-left: 20px;
}

.inner-pages ul li {
    padding-bottom: 20px;
}

.ul-tag {
    width: 100%;
    float: left;
    padding: 0px!important;
}
@media (min-width: 375px) and (max-width: 769px)  { 

    .ul-tag {
        width: 100%;
        float: left;
        padding: 0px!important;
    }
}

.currency-font{
    font-family: system-ui;
}

ul.navbar-nav>li>a{
    padding: 10px 8px !important;
}
.approve_btn {
    background-color: #00ce83;
    color: #ffffff;
    font-size: 13px;
    padding: 0px 5px;
    top: -1px;
    position: relative;
}
.disapprove_btn {
    background-color: #ff5039;
    color: #ffffff;
    font-size: 13px;
    padding: 0px 5px;
    top: -1px;
    position: relative;
    margin-left: 10px;
}
.dataTables_paginate, .dataTables_info, .dataTables_length{
    font-size: 13px;
}
.wallet-icon {
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background-color: #dee2e6; 
    width: 40px; 
    height: 40px; 
    padding: 5px 10px; 
    border-radius: 20px;
}
.card-heading {
    font-size: 20px; 
    font-weight: 700;
    margin-bottom: 30px;
}
.card-sub-title {
    font-size: 13px; 
    font-weight: normal;
    margin-top: 3px;
}
.card-price {
    font-size: 30px; 
    font-weight: 700;
    text-align: right;
}
.click-to-refresh {
    text-decoration: underline;
    color: #3570ad;
    cursor: pointer;
    padding-bottom: 10px;
    text-align: right;
    font-weight: 500;
    font-size: 12px;
}
.click-to-refresh-disable {
    color: #a1a1a1;
    padding-bottom: 10px;
    text-align: right;
    font-weight: 500;
    font-size: 12px;
}
#low-balance-warning {
    font-size: 14px;
}