/* ###ROOT### */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-white: #ffffff;
    --bg-black: #000000;
    --bg-dark-green: #004E4A;
    --bg-light-green: #007D76;
    --bg-light-yellow: #FFF9E3;
    --bg-btn-dull-yellow: #F9E7A1;
    --bg-btn-yellow-dark: #e8cf76;
    --bg-btn-red: #C8271C;
    --bg-btn-red-dark: #8b1108;
    --border-bright-yellow: #FFD21D;
    --parchi-bg-black: #1D1D1D;
    --parchi-text-black: #414141;
    --parchi-dull-white: #F9F9F9;
    --parchi-bg-grey: #C8C8C8;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--bg-light-green);
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 2px;
    background: var(--bg-dark-green);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-moz-selection {
    color: var(--bg-btn-white);
    background: var(--bg-light-green);
}

::selection {
    color: var(--bg-white);
    background: var(--bg-light-green);
}

.gtranslate_wrapper {
    overflow: hidden;
}

.gt_float_switcher .gt_options a:hover {
    background: var(--bg-light-green) !important;
}

#gt_float_wrapper {
    right: 2% !important;
}

/* ###COMMON### */

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

input:active,
input:focus,
select:active,
select:focus,
.accordion-button:focus,
.accordion-button:active,
textarea {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid var(--bg-light-green);
}

.sv-wrapper {
    display: grid;
    grid-template-columns: 5rem 1fr;
    min-height: 100svh;
}

.main-toggled {
    grid-template-columns: 1fr;
}

.custom-container {
    padding: 1rem 2rem;
}

.page-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bg-light-green);
}

.pg-top-name {
    display: flex;
    flex-direction: column;
}

.pg-top-name h5 {
    font-weight: 700;
    margin: 0;
}

.pg-top-name span {
    font-weight: 500;
    font-size: .8rem;
}

.pg-top-options {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.pg-top-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.pg-top-btn img , .pg-top-btn svg{
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.pg-top-btn span {
    font-weight: 500;
    font-size: .6rem;
    color: var(--bg-dark-green);
}

.btn-sv {
    gap: 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: .5rem 1.5rem;
    min-width: fit-content;
    justify-content: center;
    border-radius: 20px;
    transition: background-color .2s ease;
    border: none;
}

.btn-green {
    color: var(--bg-white);
    background-color: var(--bg-light-green);
}

.btn-green img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.btn-green:hover {
    background-color: var(--bg-dark-green);
}

.btn-yellow {
    color: var(--bg-light-green);
    background-color: var(--bg-btn-dull-yellow);
}

.btn-yellow:hover {
    background-color: var(--bg-btn-yellow-dark);
}

.btn-red {
    color: var(--bg-white);
    background-color: var(--bg-btn-red);
}

.btn-red:hover {
    background-color: var(--bg-btn-red-dark);
}

.btn-light-yellow {
    color: var(--bg-dark-green);
    background-color: var(--border-bright-yellow);
}

.btn-light-yellow:hover {
    background-color: var(--bg-btn-dull-yellow);
}

.btn-white{
    color: var(--bg-dark-green);
    background-color: var(--bg-white);
}

.btn-grey {
    color: var(--bg-white);
    background-color: var(--parchi-bg-grey);
}

.btn-black {
    color: var(--bg-white);
    background-color: var(--parchi-bg-black);
}

/* ###TOAST### */

.toast-header {
    display: flex;
    justify-content: space-between;
    align-content: center;
    color: #004E4A;
}

.toastimg {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.toast-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast-text {
    color: #004E4A;
    font-size: .8rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* ###MODAL### */

.modal-fullscreen {
    height: unset;
}

.modal-header,
.modal-footer {
    border: none;
}

.modal-title {
    color: var(--bg-dark-green);
    font-weight: 600;
    font-size: 1.5rem !important;
}

.modal-input {
    width: 100% !important;
}

.modal-input label,
.modal-input input {
    text-wrap: balance;
}
.permissions-container
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem .5rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.confirmation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
}

.confirmation span {
    color: var(--bg-dark-green);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ###LOGIN### */

.loginWrapper {
    background-image: url(../images/login-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-image: fill 0 radial-gradient(#0003, #0000008d);
}

.login-container {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: .95;
    width: 40%;
}

.login-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-head img {
    height: 3.5rem;
    width: 3.5rem;
    object-fit: contain;
}

.login-head span,
.login-mid span {
    color: var(--bg-dark-green);
    font-size: 2.5rem;
    font-weight: 600;
}

.login-mid span {
    font-size: 2rem;
}

.login-mid {
    text-align: center;
    width: 100%;
    margin-top: .5rem;
}

.login-mid p {
    font-weight: 400;
    color: var(--bg-dark-green);
}

.login-bottom {
    width: 80%;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-input {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.login-input label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--bg-dark-green);
    position: relative;
}

.login-input label::after {
    content: '*';
    position: absolute;
    color: var(--bg-btn-red);
    font-size: 1rem;
    font-weight: 600;
}

.login-input input {
    width: 100%;
    border-radius: 50vw;
    padding: .5rem 1.5rem;
    border: 1px solid var(--bg-dark-green);
    color: var(--bg-dark-green);
}

.login-input input::placeholder {
    color: var(--bg-dark-green);
}

.login-input span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.login-input span a {
    font-size: .6rem;
    color: var(--bg-btn-red);
    font-weight: 600;
}

.login-foot {
    margin-top: 2rem;
}

.login-foot span a {
    font-size: .6rem;
    color: var(--bg-dark-green);
    font-weight: 600;
}

.ap-otp-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ap-otp-input{
    border-radius: 50vw;
    padding: .5rem 1.5rem;
    border: 1px solid var(--bg-dark-green);
    color: var(--bg-dark-green);
}

/* ###SIDEBAR### */

.sidebar {
    background-color: var(--bg-dark-green);
    max-height: 100dvh;
    height: 100%;
    position: sticky;
    inset: 0;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition: translate .5s ease;
}

.aside-logo {
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aside-logo a img {
    height: 2.8rem;
    width: 2.8rem;
    object-fit: contain;
}

.aside-options {
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    overflow-y: scroll;
}

.aside-op {
    width: 100%;
    padding: .2rem 0;
    justify-content: center;
    align-items: center;
    display: flex;
}

.aside-op svg {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.aside-option-active {
    background-color: var(--bg-btn-dull-yellow);
}

.aside-option-active > svg path {
    fill: var(--bg-dark-green);
}

.dd-copyright a{
    font-size: .5rem;
    font-weight: 600;
    color: var(--bg-white);
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bg-btn-dull-yellow);
    --bs-tooltip-color: var(--bg-dark-green);
    font-weight: 500;
}

/* ###DASHBOARD### */

.dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dash-top-btns {
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dash-top-btns a {
    width: fit-content;
    flex-grow: 1;
}

.dash-top-btns a span {
    font-size: .8rem;
}
.dash-graph-section {
    justify-content: space-around;
}

.dash-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    border-bottom: dashed 1px var(--bg-light-green);
}

.graph-card {
    padding: 1rem;
}

.stock-card {
    padding: 1rem 0 0;
    border-left: dashed 1px var(--bg-light-green);
    border-right: dashed 1px var(--bg-light-green);
}

.warehouse-card {
    padding: 1rem 0 0;
    border-left: dashed 1px var(--bg-light-green);
    justify-content: start;
}


.qa-card {
    padding: 1rem .5rem;
}

.stock-history {
    padding: 1rem 0 0;
    border: none;
    margin-bottom: 3.5rem;
}

.graph-head h4 {
    color: var(--bg-light-green);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.chart-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#monthStock, #yearStock {
    min-height: 100%;
    min-width: 100%;
    object-fit: contain;
}

.stock-overview {
    background-color: var(--bg-light-yellow);
    padding: 1rem;
    width: 100%;
    color: var(--bg-light-green);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stock-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    width: 100%;
}

.level-key span,
.level-value p {
    font-weight: 600;
    margin: 0;
}

.capacity-wrapper {
    overflow-y: scroll;
    scroll-padding: 10px;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.warehouse-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warehouse-name {
    width: 20%;
}

.warehouse-name p {
    color: var(--bg-light-green);
    font-weight: 600;
    font-size: 1.2rem;
}

.warehouse-capacity {
    width: 80%;
}

.capacity-field {
    border-radius: 50vw;
    width: 100%;
    background-color: var(--bg-btn-dull-yellow);
}

.capacity-progress {
    padding: 0 2rem;
    color: var(--bg-white);
    border-radius: 50vw;
    width: 0;
    background-color: var(--bg-light-green);
    font-size: 1rem;
    transition: width 1s ease-in-out;
}

.capacity-data {
    font-size: .6rem;
    color: var(--bg-light-green);
    font-weight: 500;
}

.tableWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.data-table-overflow {
    overflow-x: scroll;
}

.table-label {
    border-radius: 10px 10px 0 0;
    background-color: var(--bg-light-green);
    color: var(--bg-white);
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-table .table-label {
    width: 100%;
}

.data-table {
    height: 80%;
    margin: 0;
}

.data-table-head tr th,
.data-table-body tr td {
    color: var(--bg-light-green);
    border: none;
    border-left: 1px solid var(--bg-light-green);
    border-right: 1px solid var(--bg-light-green);
    word-break: keep-all;
    white-space: nowrap;
    text-wrap: nowrap;
    text-align: center;
    font-size: .8rem;
    font-weight: 500;
}
.data-table-body tr td a{
    font-weight: 600;
}

.data-table-head tr th {
    font-weight: 600 !important;
    background: var(--bg-light-yellow);
}

.data-table-body tr td a {
    color: var(--bg-light-green);
}

.data-table-body tr td:first-child,
.data-table-head tr th:first-child,
.data-table-body tr td:last-child,
.data-table-head tr th:last-child {
    border-left:none;
    border-right:none;
}

.data-table-body tr:nth-child(even) > * {
    background: var(--bg-light-yellow);
}

.data-table-body tr:nth-child(odd) > * {
    background: var(--bg-white);
}

/* ###STOCK_PAGES### */

.stock-pages {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.stock-form-data {
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stock-form-page-count {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.pg-count {
    color: var(--bg-light-green);
    display: flex;
    flex-direction: column;
    gap: .2rem;
    justify-content: center;
    align-items: center;
    filter: grayscale(1);
    width: 10%;
    text-align: center;
}

.step-bubble {
    background-color: var(--bg-btn-dull-yellow);
    font-weight: 600;
    font-size: .9rem;
    padding: .5rem;
    height: 2rem;
    width: 2rem;
    border-radius: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.step-label {
    font-size: .7rem;
}

.line {
    border: dashed 1px var(--bg-btn-dull-yellow);
    flex-grow: 1;
    margin: 1rem auto;
    filter: grayscale(1);
}

.step-current {
    filter: unset;
}

.step-done {
    background-color: var(--bg-light-green);
    color: var(--bg-white);
    filter: unset;
}

.stock-form {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

#partOne {
    display: flex;
}

.stock-form b {
    color: var(--bg-light-green);
}

.stock-form p {
    color: var(--bg-light-green);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.stock-form hr {
    margin: 0;
}

.stock-form > span {
    font-size: .6rem;
    color: var(--bg-dark-green);
    font-weight: 600;
}

.process-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 30%;
}

.process-checkbox input[type=checkbox],
.process-checkbox input[type=radio] {
    height: 1.8rem;
    width: 1.8rem;
    accent-color: var(--bg-light-green);
    flex-grow: unset;
}

.process-checkbox label {
    word-wrap: unset !important;
    width: fit-content !important;
}

.stock-buttons {
    margin-top: 1rem;
}

.stock-data-table {
    width: 49%;
}

.stock-cost {
    background-color: var(--bg-light-green);
    color: var(--bg-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    font-weight: 600;
}

.total-charges {
    background-color: var(--bg-light-green);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: .5rem 1rem;
}

.charge {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 60%;
    font-size: .9rem;
}

.charge span:first-child {
    width: 60%;
}

.charge span:last-child {
    width: 40%;
    text-align: end;
}

.border-cost {
    border: dotted var(--bg-white) 1px;
    border-left: none;
    border-right: none;
}

.border-last {
    border-radius: 0 0 10px 10px;
}

.stock-warehouse-capacity h5 {
    color: var(--bg-dark-green);
    font-weight: 600;
    margin: 0;
}

.stock-cal {
    flex-grow: 1;
}

.payment {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.additional-details {
    flex-direction: column;
    align-items: start !important;
}

.additional-details textarea {
    border-radius: 5px !important;
    width: 100% !important;
    resize: none;
}

.stock-table-add-btn {
    padding: 0;
    height: 2.5rem;
    width: 2.5rem;
}

.bag-form-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bag-modal-table {
    padding: 0 1rem;
}

.bag-add-btn-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.add-to-table-check {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.pickupinfo {
    background-color: var(--bg-btn-red);
    color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .5rem 2rem;
    border-radius: 5px;
    min-height: 5rem;
}

.pickupinfo p {
    margin: 0;
    font-weight: 500;
}

.stock-table-options {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stock-table-options select {
    flex-grow: 1;
}

/* ###PARCHI### */

.A4 {
    width: 210mm;
    height: 297mm;
    margin: 0 auto;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

.parchi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--parchi-bg-black);
    color: var(--parchi-dull-white);
}

.parchi-body {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem 0;
}

.parchi-body-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--parchi-text-black);
    width: 70%;
    font-size: 1rem;
}

.parchi-information {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
}

.parchi-information span:first-child {
    width: 25%;
}

.parchi-information span:last-child {
    width: 70%;
    flex-grow: 1;
    text-wrap: pretty;
}

.parchi-body-side-heading {
    font-size: .8rem;
    display: flex;
    flex-direction: column;
    width: 25%;
    font-weight: 600;
}

.parchi-body-side-heading-data {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: end;
}

.parchi-table-label {
    background-color: var(--parchi-bg-black);
    color: var(--parchi-dull-white);
}

.parchi-body-table {
    padding: 1rem 0;
}

.parchi-table {
    overflow: hidden;
}

.parchi-data-table-head tr th,
.parchi-data-table-body tr td {
    font-size: .6rem;
    color: var(--parchi-text-black);
    background: var(--parchi-dull-white);
    border-left: 1px solid var(--parchi-bg-grey);
    border-right: 1px solid var(--parchi-bg-grey);
    text-wrap: pretty;
    padding: .2rem;
}

.parchi-data-table-body tr:nth-child(even) > * {
    background: var(--parchi-dull-white);
}

.parchi-data-table-body tr:nth-child(odd) > * {
    background: var(--bg-white);
}

.parchi-cost {
    background-color: var(--parchi-bg-black);
    color: var(--parchi-dull-white);
    border-radius: 0 0 10px 10px;
}

.parchi-body-row {
    padding: 1rem 0;
    width: 100%;
    margin: auto;
}

.parchi-card {
    padding: 1rem;
    border: 1px dashed var(--parchi-text-black);
}

.parchi-card-body {
    display: flex;
    gap: .5rem;
    font-size: .8rem;
    flex-wrap: wrap;
}

.parchi-card-information {
    display: flex;
    align-items: center;
    min-width: 48%;
    gap: 1rem;
}

.parchi-information span {
    text-wrap: balance;
}

.parchi-card-information span:first-child {
    font-weight: 600;
    width: 30%;
    text-wrap: balance;
}

.foot-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
}

.parchi-foot-btns {
    margin-top: 2rem;
}

/* ###ADD_INFORMATION### */

.information-head {
    display: flex;
    padding: 0 0 1rem;
    border-bottom: dotted 1px var(--bg-light-green);
    display: flex;
    align-self: center;
    justify-content: space-between;
    color: var(--bg-dark-green);
}

.information-head h2 {
    font-size: 1.3rem;
    font-weight: 600;
}

.information-head h4 {
    font-size: 1rem;
    font-weight: 500;
}

.information-body {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem auto 2rem;
    justify-content: space-between
}

.information-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 49%;
}

.information-input label,
.information-input > span {
    color: var(--bg-light-green);
    font-weight: 500;
    font-size: 1rem;
    width: 25%;
}

.information-input input,
.information-input select,
.information-input textarea {
    width: 75%;
    flex-grow: 1;
    border-radius: 50vw;
    border: 1px solid var(--border-bright-yellow);
    padding: .5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--bg-light-green);
}

.information-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    width: 100%;
}

.information-address {
    width: 100%;
    margin: 1rem auto;
}

.information-address span {
    color: var(--bg-dark-green);
    font-weight: 600;
    font-size: 1.2rem;
}

/* ###SELECT_SEARCH### */

.select2-container {
    flex-grow: 1;
    width: 75% !important;
}

.select2-dropdown {
    border: 1px solid var(--border-bright-yellow);
}

.select2-container--open .select2-dropdown {
    z-index: 9999;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bg-light-green) !important;
    color: var(--bg-light-yellow) !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--border-bright-yellow);
    border-radius: 50vw;
    padding: .5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: unset;
    right: 2%;
}

.select2-selection__rendered {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bg-dark-green) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0;
    background-color: var(--bg-light-green);
    border-radius: 50vw;
    color: var(--bg-white);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 400;
}

.select2-container--default .select2-selection--multiple {
    background-color: var(--bg-white);
    border: 1px solid var(--border-bright-yellow) !important;
    border-radius: 50vw;
    cursor: text;
    padding: .5rem .8rem;
}

/* ###WAREHOUSE### */

.warehouse-data-pg {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.warehouse-data-pg-head {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 1rem;
}

.warehouse-data-pg-body {
    margin: 1rem auto 0;
    width: 100%;
}

.warehouse-edit-delete-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.warehouse-op-btn {
    background: none;
    border: none;
}

.warehouse-op-btn img {
    height: 1rem;
    width: 1rem;
    object-fit: contain;
}

.warehouse-data-pg-cards {
    width: 100%;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    gap: 1rem;
}

.warehouse-data-pg-card {
    min-width: 25%;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light-green);
    color: var(--bg-white);
    padding: 1rem;
    margin-bottom: .5rem;
    border-radius: 10px;
    gap: 1rem;
}

.warehouse-data-pg-card-head {
    border-bottom: dashed 1px var(--bg-white);
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.warehouse-data-pg-card-head h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.warehouse-data-pg-card-body p {
    font-size: 1rem;
    font-weight: 500;
}

.warehouse-data-pg-capacity-field {
    background-color: var(--bg-btn-dull-yellow);
}

.warehouse-data-pg-capacity-progress {
    color: var(--bg-light-green);
    background-color: var(--bg-light-yellow);
    padding: 0 1rem;
}

.warehouse-data-capacity {
    color: var(--bg-white);
}

.warehouse-data-pg-table {
    margin: 1rem 0;
}

.warehouse-pg-filter-options {
    width: 80%;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: end;
}

.warehouse-pg-filter-options button {
    font-size: .8rem;
}

.warehouse-pg-filter-options button img {
    height: 1rem;
    width: 1rem;
    object-fit: contain;
}

.warehouse-pg-filter-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50vw;
    background-color: var(--bg-white);
    color: #007D76;
    flex-grow: 1;
}

.filter-search input {
    border: none;
    color: var(--bg-light-green);
    padding: .5rem .8rem;
    border-radius: 50vw 0 0 50vw;
    flex-grow: 1;
    font-size: .8rem;
}

.filter-search-btn {
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-search-btn img {
    height: 1.2rem;
    width: 1.2rem;
    object-fit: contain;
}

.filter-date-select {
    flex-grow: 1;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 400;
    color: var(--bg-dark-green);
    background-color: var(--bg-btn-dull-yellow);
    border-radius: 50vw;
}

.filter-date-input {
    flex-grow: 1;
    color: var(--bg-white);
    background-color: var(--bg-light-green);
    border: 1px solid var(--bg-white);
    border-radius: 50vw;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
}

.filter-date-input::placeholder {
    color: var(--bg-white);
}

.tabel-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 1.5rem 0 0;
    justify-content: end;
}

.pagination-btn {
    font-size: .8rem;
    color: var(--bg-light-green);
    font-weight: 600;
    /*min-width: 1.5rem;*/
}

.page-active {
    color: var(--bg-dark-green);
}

/* ###FLATPICKR### */

.flatpickr-calendar {
    color: var(--bg-light-green);
}

.flatpickr-day,
.flatpickr-weekday,
.flatpickr-monthDropdown-months,
.cur-year {
    color: var(--bg-light-green) !important;
}

.prevMonthDay,
.nextMonthDay {
    color: var(--bg-btn-red) !important;
}

.datepicker::placeholder {
    color: var(--bg-white);
}

.flatpickr-day.selected {
    background: var(--bg-btn-dull-yellow);
    color: var(--bg-dark-green) !important;
    border: none;
}

.flatpickr-day:hover {
    border: none;
    background: var(--bg-light-yellow);
}

/* ###ALL_ACCOUNT### */

.account-search {
    border-radius: 50vw;
    background-color: var(--bg-btn-dull-yellow);
    display: flex;
    padding: .2rem .5rem;
    gap: 1rem;
}
.report-search{
    padding: .5rem 1.5rem;
}

.account-search-btn {
    padding: 0;
    background-color: var(--bg-btn-dull-yellow);
}

.account-search-btn img {
    height: 1.8rem;
    width: 1.8rem;
    object-fit: contain;
}

.account-search input {
    width: 100%;
    border: none;
    background-color: var(--bg-btn-dull-yellow);
}

.all_accounts_select {
    flex-grow: unset;
    width: fit-content;
    font-size: 1rem;
    font-weight: 600;
    padding: .5rem 2rem;
    color: var(--bg-light-green);
}

/* ###INDIVIDUAL_ACCOUNT### */

.account_profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bg-dark-green);
}

.account_profile h6 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-light-green);
}

.account-stats-cards {
    justify-content: space-between;
}

.account-stats-card {
    min-width: 35%;
    height: 5rem;
}

.account-stats-head {
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.account-stats-head h4 {
    width: 50%;
}

.account-stats-head h5 {
    width: fit-content;
    text-align: end;
}

.info-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-info-accordion,
.accordion-button:not(.collapsed) {
    color: var(--bg-white);
    background-color: var(--bg-light-green);
    box-shadow: none;
    font-weight: 600;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/accoudion.png);
    background-size: contain;
}

.accordion-info-body {
    margin: 1rem auto;
    padding: 0;
    gap: 2rem 1rem;
}

.account-table-accordion-body {
    padding: 0;
    margin: 0;
}

.account-table-label {
    border-radius: 0;
    justify-content: center;
}

.account-table-label span {
    display: none;
}

.individual-pg-filter-options {
    width: 100%;
    justify-content: end;
}

.booking-modal {
    padding: .5rem;
}

/* ###OPERATORS### */

.op-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.inactive-mark,
.active-mark {
    height: 1rem;
    width: 1rem;
    border-radius: 50vw;
}

.active-mark {
    background-color: var(--bg-light-green);
}

.inactive-mark {
    background-color: var(--bg-btn-red-dark);
}

.op-status span:last-child {
    width: 40%;
}

/* ###SETTINGS### */

.settings {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    flex-direction: column;
    gap: 2rem;
}

.settings > button {
    width: 15rem;
}

/* ###NOTIFICATIONS### */

.notifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.notification-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.notification-mark {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-data {
    flex-grow: 1;
}

.notification-data p {
    margin: 0;
    color: var(--bg-dark-green);
    text-wrap: wrap;
}

.notification-action {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.noti-btn {
    font-size: .8rem;
    padding: .2rem 1rem;
}

.dropdown-menu.show {
    width: 25rem;
    top: 0;
    left: -500%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.noti-dd {
    font-size: .8rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--bg-btn-dull-yellow);
}

.dropdown-menu span {
    width: 100%;
    text-align: center;
}

.dropdown-menu span a {
    font-size: .8rem;
    font-weight: 600;
    color: var(--bg-btn-red);
}

.dropdown-toggle::after {
    display: none;
}

/* ###OUR_STORY### */

.out-story {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.out-story p b {
    color: var(--bg-light-green);
}

.out-story p {
    color: var(--bg-light-green);
    font-weight: 400;
    font-size: .9rem;
    margin: 0;
    text-align: justify;
}

.story-img-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.story-img-container img {
    height: 20rem;
    width: 30rem;
    object-fit: cover;
    flex-grow: 1;
}

/* ###REPORT### */

.report-filter-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.report-filter-date-input {
    background-color: var(--bg-btn-dull-yellow);
    border-radius: 50vw;
    font-size: .8rem;
    font-weight: 400;
}

/* ###ACCOUNTING### */

.accounting-card {
    width: 30%;
}

.entry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ###MOBILE_COMPONENTS### */

.mob-label {
    display: none;
}

@media only screen and (max-width: 767px) and (min-width: 280px){
    /* ###COMMON### */

    .page-top {
        width: 100%;
        background-color: var(--bg-light-green);
        color: var(--bg-white);
        position: fixed;
        z-index: 99;
    }

    .pg-top-btn span {
        display: none;
    }
    .cam-ico path {
        fill: var(--bg-white);
    }

    .pg-top-name {
        width: 60%;
    }

    .pg-top-name h5 {
        font-size: 1rem;
    }

    .custom-container {
        padding: 1rem .5rem;
    }

    .sv-wrapper {
        grid-template-columns: 1fr;
    }

    .mob-green-btn {
        padding: 1rem;
        width: 28% !important;
    }

    .mob-green-btn span {
        display: none;
    }

    .mob-100w {
        width: 100%;
    }

    .mob-50w {
        width: 47%;
    }

    .mob-margin {
        margin-top: 5rem;
    }

    /* ###MODAL### */

    .modal-title {
        font-size: 1.2rem !important;
    }

    /* ###SIDEBAR### */

    .sidebar {
        position: fixed;
        padding: 1rem 0;
        left: 0;
        top: 0;
        width: fit-content;
        z-index: 999;
        overflow-y: scroll;
    }

    .mob-label {
        display: block;
        color: var(--bg-white);
    }

    .aside-op {
        justify-content: unset;
        gap: 1rem;
        padding: .5rem 1rem;
    }

    .aside-options {
        height: fit-content;
    }

    .aside-option-active > .mob-label {
        color: var(--bg-black);
    }

    .aside-logo {
        justify-content: start;
        padding: .5rem 1rem;
    }

    /* ###LOGIN### */

    .loginWrapper {
        align-items: end;
        height: 100vh;
    }

    .login-container {
        padding: 1rem;
        border-radius: 5px 5px 0 0;
        width: 100%;
        gap: 0;
    }

    .login-head {
        align-items: start;
        width: 100%;
    }

    .login-head img {
        height: 2.5rem;
        width: 2.5rem;
        object-fit: contain;
    }

    .login-mid {
        text-align: start;
    }

    .login-head span, .login-mid span {
        font-size: 1.8rem;
    }

    .login-mid p {
        font-size: .8rem;
        width: 100%;
        text-align: start;
    }

    .login-bottom {
        width: 100%;
    }

    /* ###DASHBOARD### */

    .stock-overview,
    .capacity-wrapper,
    .qa-card,
    .stock-history {
        width: 90%;
    }

    .capacity-wrapper {
        padding: 0;
    }

    .warehouse-name p {
        font-size: 1rem;
    }

    .table-label {
        border-radius: 8px 8px 0 0;
    }

    /* ###STOCK_PAGE### */

    .stock-pages {
        flex-direction: column;
    }

    .stock-form-data {
        width: 100%;
    }

    .stock-data-table {
        width: 100%;
        margin-top: 2rem;
    }

    .stock-buttons {
        flex-direction: column;
        justify-content: center;
    }

    /* ###ADD_INFORMATION### */

    .information-input {
        width: 100%;
    }

    .information-input label {
        font-size: .8rem;
        width: 25%;
        text-wrap: balance;
        word-wrap: break-word;
    }

    .information-input input, .information-input select {
        width: 70%;
        font-size: .8rem;
    }

    /* ###SELECT_SEARCH### */

    .select2-container {
        width: 70% !important;
    }

    .select2-selection__rendered {
        font-size: .8rem !important;
    }

    /* ###WAREHOUSER### */

    .warehouse-data-pg-head {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .warehouse-data-pg-cards {
        scroll-snap-type: x mandatory;
    }

    .warehouse-data-pg-card {
        min-width: 100%;
    }

    .account-search {
        padding: .5rem;
    }

    .warehouse-op-btn-expand {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .warehouse-op-btn-expand:focus,
    .warehouse-op-btn-expand:active {
        box-shadow: none;
    }

    .warehouse-op-btn-expand img {
        height: 1.5rem;
        width: 1.5rem;
        object-fit: contain;
        transform: rotate(180deg);
    }

    .warehouse-table-label {
        align-items: center;
    }

    .warehouse-pg-filter-options {
        width: 100%;
        flex-wrap: wrap;
        padding: .5rem 0;
        justify-content: space-between;
    }

    .warehouse-pg-filter-form {
        flex-wrap: wrap;
    }

    .warehouse-pg-filter-options {
        margin-top: 1rem;
    }

    /* ###NOTIFICATION### */

    .dropdown-menu.show {
        width: 20rem;
        left: -50% !important;
        top: 10% !important;
    }

    .notification-data p {
        font-size: .8rem;
    }

    /* ###INDIVIDUAL_ACCOUNT### */

    .account-table-accordion {
        flex-direction: column-reverse;
    }

    .ac-delete-btn span {
        display: none;
    }

    /* ###REPORT### */

    .report-data {
        flex-direction: column-reverse;
        display: flex;
    }

    .report-filters {
        margin-top: 1rem;
    }

    .report-filter-form {
        flex-wrap: wrap;
    }

    /* ###PARCHI### */

    .parchi-head-title h2 {
        font-size: 1rem;
        width: 80%;
    }

    .parchi-head-logo img {
        height: 2.5rem;
        width: 2.5rem;
    }

    .parchi-body {
        flex-direction: column-reverse;
    }

    .parchi-body-side-heading {
        width: 100%;
    }

    .parchi-body-heading {
        width: 100%;
    }

    .parchi-information {
        font-size: .8rem;
        width: 100%;
        gap: unset;
    }

    .parchi-information span:first-child {
        width: 30%;
    }

    .parchi-information span:last-child {
        width: 60%;
    }

    /* ###MISC### */

    .op-status {
        justify-content: unset;
    }

    .op-status span:last-child {
        width: unset;
    }

}
@media only screen and (max-width: 767px) and (min-width: 550px) {
    /* ###COMMON### */

    .custom-container {
        padding: 1rem;
    }

    /* ###DASHBOARD### */

    .dash-top-btns {
        gap: 3rem;
        justify-content: center;
    }

    /* ###WAREHOUSE### */

    .warehouse-data-pg-card {
        min-width: 50%;
    }
}
@media only screen and (max-width: 850px) and (min-width: 768px) {
    /* ###COMMON### */

    .page-top {
        width: 100%;
        background-color: var(--bg-light-green);
        color: var(--bg-white);
        position: fixed;
        z-index: 99;
    }

    .mob-margin {
        margin-top: 5rem;
    }

    .pg-top-btn span {
        color: var(--bg-white);
    }

    .mob-100w {
        width: 100%;
    }

    .mob-50w {
        width: 47%;
    }

    /* ###WAREHOUSE### */

    .warehouse-data-pg-head {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .warehouse-op-btn-expand img {
        height: 1.5rem;
        width: 1.5rem;
        object-fit: contain;
        transform: rotate(180deg);
    }

    .warehouse-pg-filter-options {
        width: 100%;
        flex-wrap: wrap;
        padding: .5rem 0;
        justify-content: space-between;
    }

    .warehouse-pg-filter-form {
        flex-wrap: wrap;
    }

    /* ###INDIVIDUAL_ACCOUNT### */

    .account-table-accordion {
        flex-direction: column-reverse;
    }

    /* ###REPORT### */

    .report-data {
        flex-direction: column-reverse;
        display: flex;
    }

    .report-filters {
        margin-top: 1rem;
    }

    .report-filter-form {
        flex-wrap: wrap;
    }

    /* ###PARCHI### */

    .parchi-body {
        flex-direction: column-reverse;
    }

    .parchi-body-side-heading,
    .parchi-body-heading {
        width: 100%;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
    /* ###COMMON### */

    .page-top {
        width: 100%;
        background-color: var(--bg-light-green);
        color: var(--bg-white);
        position: fixed;
        z-index: 99;
    }
    .cam-ico path {
        fill: var(--bg-white);
    }

    .mob-margin {
        margin-top: 5rem;
    }

    .pg-top-btn span {
        color: var(--bg-white);
    }

    .mob-100w {
        width: 100%;
    }

    .mob-50w {
        width: 47%;
    }

    .sv-wrapper {
        grid-template-columns: 1fr;
    }

    /* ###LOGIN### */

    .login-container {
        width: 60%;
    }

    /* ###SIDEBAR### */

    .sidebar {
        position: fixed;
        padding: 1rem 0;
        left: 0;
        top: 0;
        width: fit-content;
        z-index: 999;
        overflow-y: scroll;
    }

    .mob-label {
        display: block;
        color: var(--bg-white);
    }

    .aside-op {
        justify-content: unset;
        gap: 1rem;
        padding: .5rem 1rem;
    }

    .aside-options {
        height: fit-content;
    }

    .aside-option-active > .mob-label {
        color: var(--bg-black);
    }

    .aside-logo {
        justify-content: start;
        padding: .5rem 1rem;
    }

    /* ###DASHBOARD### */

    .mob-green-btn span {
        display: none;
    }

    .mob-green-btn {
        width: 10% !important;
    }

    .dash-card {
        padding: .5rem 1rem;
    }

    .stock-card {
        border-right: unset;
    }

    .qa-card  {
        border-left: dashed 1px var(--bg-light-green);
    }

    .warehouse-card {
        border-left: unset;
    }

    .stock-overview {
        gap: 2rem;
    }

    .capacity-wrapper {
        gap: 1rem;
    }

    /* ###WAREHOUSE### */

    .warehouse-data-pg-card {
        min-width: 50%;
    }

    .warehouse-op-btn-expand img {
        height: 1.5rem;
        width: 1.5rem;
        object-fit: contain;
        transform: rotate(180deg);
    }

    .warehouse-pg-filter-options {
        margin-top: 1rem;
    }

    .warehouse-pg-filter-options {
        width: 100%;
        flex-wrap: wrap;
        padding: .5rem 0;
        justify-content: space-between;
    }

    .warehouse-pg-filter-form {
        flex-wrap: wrap;
    }

    /* ###INDIVIDUAL_ACCOUNT### */

    .account-table-accordion {
        flex-direction: column-reverse;
    }

    .all_accounts-head-options {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* ###MISC### */

    .op-status {
        justify-content: unset;
    }

    .op-status span:last-child {
        width: unset;
    }

}
@media only screen and (max-width: 1249px) and (min-width: 992px) {

    /* ###COMMON### */

    .sv-wrapper {
        grid-template-columns: 1fr;
    }

    .page-top {
        width: 100%;
        background-color: var(--bg-light-green);
        color: var(--bg-white);
        position: fixed;
        z-index: 99;
    }
    .cam-ico path {
        fill: var(--bg-white);
    }

    .mob-margin {
        margin-top: 5rem;
    }

    .pg-top-btn span {
        color: var(--bg-white);
    }

    /* ###LOGIN### */

    .login-container {
        width: 60%;
    }

    /* ###SIDEBAR### */

    .sidebar {
        position: fixed;
        padding: 1rem 0;
        left: 0;
        top: 0;
        width: fit-content;
        z-index: 999;
        overflow-y: scroll;
    }

    .mob-label {
        display: block;
        color: var(--bg-white);
    }

    .aside-op {
        justify-content: unset;
        gap: 1rem;
        padding: .5rem 1rem;
    }

    .aside-options {
        height: fit-content;
    }

    .aside-option-active > .mob-label {
        color: var(--bg-black);
    }

    .aside-logo {
        justify-content: start;
        padding: .5rem 1rem;
    }

    /* ###DASHBOARD### */

    .mob-green-btn span {
        display: none;
    }

    /* ###WAREHOUSE### */

    .warehouse-data-pg-card {
        min-width: 35%;
    }

    .warehouse-pg-filter-options {
        margin-top: 1rem;
    }

    .all_accounts-head-options {
        flex-wrap: wrap;
    }

    /* ###MISC### */

    .op-status {
        justify-content: unset;
    }

    .op-status span:last-child {
        width: unset;
    }

}
@media only screen and (max-width: 1450px) and (min-width: 1250px) {

    .warehouse-pg-filter-options {
        margin-top: 1rem;
    }
}
@media only screen and (max-width: 1950px) and (min-width: 1851px) {

    .login-container {
        width: 30%;
    }

}
@media only screen and (min-width: 1950px) {

    .login-container {
        width: 20%;
    }
}

.bg-span-tag {
    position: relative;
}

.bg-span-tag span {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content !important;
}
.contact-message
{
    text-wrap: wrap !important;
    text-align: justify;
}

@media print {
   button{
       display: none !important;

   }
    @page {
        margin-top: 0;
        margin-bottom: 0;
    }
    body {
        padding-top: 1rem;
        padding-bottom: 0;
    }

}

/* ###PALLEDARI_SECTION### */

.palledari-stats-card {
    flex-grow: 1;
}

.table-bottom {
    border-radius:  0 0 10px 10px;
    background-color: var(--bg-light-green);
    color: var(--bg-white);
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: end;
}

.acc-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: scroll;
    width: 50%;
    justify-content: end;
}

.acc-options a {
    text-wrap: nowrap;
}

.acc-options::-webkit-scrollbar {
    display: none;
}

#expNarration {
    border-radius: 10px;
}

.pos-container {
    height: calc(100vh - 5rem) !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pos-stock-data {
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pos-stock-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pos-stock-wrapper {
    overflow-y: scroll;
    display: flex;
    align-items: start;
    gap: 1rem;
    flex-wrap: wrap;
}

.pos-stock-card {
    border: 3px solid var(--bg-btn-dull-yellow);
    width: 31%;
    height: 10rem;
    border-radius: 20px;
    padding: 1rem .5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--bg-light-green);
}

.pos-stock-card h4 {
    margin: 0;
    color: var(--bg-dark-green);
    font-size: 1.2rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.pos-stock-card h6 {
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.stock-card-attr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pos-stock-price {
    width: 30%;
    margin: 0;
}

.pos-stock-q {
    width: 70%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-align: end;
    margin: 0;
}

.pos-stock-billing {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
    padding-right: .5rem;
    position: relative;
}

.pos-stock-billing h4 {
    color: var(--bg-light-green);
    font-size: 1rem;
    font-weight: 600;
}

.pos-customer-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pos-cust-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 60%;
}

.pos-cust-info p {
    margin: 0;
    color: var(--bg-light-green);
    font-weight: 500;
    font-size: .8rem;
}

.pos-bill-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 30%;
}

.pos-bill-details p {
    text-align: end;
    margin: 0;
    color: var(--bg-light-green);
    font-weight: 500;
    font-size: .8rem;
}

.pos-product-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pos-table-input input{
    width: 2rem;
    padding: .1rem;
    text-align: center;
}

.pos-billing-sticky {
    height: fit-content;
    position: sticky;
    bottom: 0;
    background: var(--bg-white);
    z-index: 1;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pos-total-discount {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.pos-total-discount input {
    flex-grow: 1;
    border-radius: 50vw;
    border: 1px solid var(--border-bright-yellow);
    padding: .5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--bg-light-green);
}

.pos-bill-total {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    border-bottom: 2px solid var(--bg-light-green);
}

.bill-total-data {
    color: var(--bg-light-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    gap: 1rem;
}

.pos-payment-info {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.pos-operator-info {
    color: var(--bg-light-green);
    font-size: .8rem;
    font-weight: 600;
}

.pos-payment-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pos-payment-options > span {
    color: var(--bg-light-green);
    font-size: 1rem;
    font-weight: 600;
    min-width: fit-content;
    text-wrap: nowrap;
}

.pos-pay-op {
    flex-grow: 1;
}

.pos-pay-op label {
    border: 1px solid var(--border-bright-yellow);
    color: var(--bg-dark-green);
    background: transparent;
    font-size: .8rem;
}

.pos-pay-op input[type=radio]:checked ~ label {
    background: var(--bg-light-green);
    border: 2px solid var(--bg-light-green);
    color: var(--bg-white);
}

.pos-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pos-form-submit button {
    flex-grow: 1;
}

#posTotalPaid {
    border-bottom: 1px solid var(--border-bright-yellow) !important;
    padding: .2rem 0;
    font-size: .8rem;
    border: none;
    margin-left: auto;
}

@media only screen and (max-width: 767px) and (min-width: 280px){
    .acc-options {
        justify-content: start;
        width: 60%;
    }

    .pos-container {
        flex-direction: column;
        height: fit-content !important;
        overflow-x: hidden !important;
    }

    .pos-stock-data {
        width: 100%;
        height: 60vh;
    }

    .pos-stock-wrapper {
        gap: .5rem;
    }

    .pos-stock-card {
        width: 48%;
    }

    .pos-stock-card h4,
    .pos-stock-billing h4 {
        font-size: .8rem;
    }

    .pos-stock-card h6,
    .pos-stock-price,
    .pos-stock-q, .pos-cust-info p,
    .pos-bill-details p,
    .pos-payment-options > span  {
        font-size: .8rem;
    }

    .pos-stock-billing {
        width: 100%;
        padding: 0;
    }

    .pos-payment-options {
        flex-direction: column;
        align-items: unset;
    }

    .pos-pay-op {
        width: 100%;
    }

    .stock-card-attr {
        flex-direction: column;
    }

    .pos-stock-price {
        width: 100%;
    }

    .pos-stock-q {
        width: 100%;
        text-align: start;
    }
}

.amt-to-words-container {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex-grow: 1;
}

.amt-to-words-container input {
    width: 100%;
}

.amt-to-words-span {
    color: var(--bg-dark-green);
    font-size: .8rem;
    font-weight: 500;
}

.headerButton{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transaction-parchi-cost {
    background-color: var(--bg-black);
    font-size: .8rem;
    font-weight: 500;
}

.transaction-parchi-cost:last-child {
    border-radius: 0 0 10px 10px;
}


