@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}

a {
    text-decoration: none;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -o-transition: all .5s linear;
    -ms-transition: all .5s linear;
}

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

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}

.test_style {
    text-align: right;
}

.normal {
    font-weight: normal !important;
}

.header_img {
    width: 33%;
    height: 35px;
    display: inline-block;
    justify-content: center;
    text-align: right;
    overflow: hidden;
    float: left;
}

.header_img img {
    width: auto;
    height: 100%;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s;
    font-size: 14px;
}

.nav_link:hover {
    color: var(--white-color)
}

.classpassgreen>span {
    background-color: #15824B !important;
    color: #fff !important;
    text-align: center !important;
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px;
}

@font-face {
    font-family: 'ArabicFont';
    src: url('path/to/arabic-font.woff2') format('woff2'), url('path/to/arabic-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.arabic-text {
    font-family: 'ArabicFont', sans-serif;
}

.arabic-text {
    direction: rtl;
}

.classpassred>span {
    background-color: red !important;
    color: #fff !important;
    text-align: center !important;
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px;
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 35px;
}

.height-100 {
    height: auto;
    padding-top: 25px;
}


/* product */

.addproduct {
    text-align: right;
}

.addproduct>a {
    display: inline-block;
    color: #fff;
    background-color: #136acd;
    border: 1px solid transparent;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 28px;
}

.addproduct>a:hover {
    background-color: #0f529f;
}

.border_right {
    border-right: 1px solid #d2d2d2;
}

label {
    font-weight: bold;
}

.select2-container .select2-selection--single {
    height: 38px !important;
}


/* tab code */

.badge {
    background-color: #a9a9a9;
    border-radius: 1.2rem;
}

.successapprove {
    background-color: #0f529f !important;
}

.additem>span {
    color: #0f529f;
    font-weight: bolder;
    cursor: pointer;
}

.textright {
    text-align: right;
}


/* tab code */

.visibility {
    visibility: hidden;
}


/* popup */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
}


/* The Close Button */

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.recordpayment {
    max-width: 680px;
}

.closebutton {
    padding: 0;
    border: none;
    background-color: white;
}


/* popup */


/* tool tips */


/* tool tips */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.dropdown-content ul li {
    text-decoration: none;
    display: inline-block;
    padding: 12px 7px 12px 7px;
    width: 100%;
}

.dropdown-content ul li:nth-child(1) {
    border-bottom: 1px solid #ebebeb;
}

.dropdown-content ul li:hover {
    background-color: #136acd;
    color: #fff;
}

.dropdown-content ul li:hover a {
    color: #fff;
    display: inline-block;
}

.dropdown>span {
    color: #fff;
    background-color: #136acd;
    border: 1px solid transparent;
    font-size: 18px;
    padding: 5px 22px;
    border-radius: 28px;
}


/* upload data */

.file-upload {
    background-color: #ffffff;
    width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    border: 4px dashed #1FB264;
    position: relative;
    width: 40%;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #1FB264;
    border: 4px dashed #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

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

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 15px 10px 7px 15px;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: 200%;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

.w3-badge,
.w3-tag {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}

.w3-blue,
.w3-hover-blue:hover {
    color: #fff!important;
    background-color: #2196F3!important;
}


/* upload data */


/* setting */

.setting_links {
    display: inline-block;
    padding: 0;
    margin-top: 20px;
    width: 100%;
}

.setting_links li {
    display: inline-block;
    background-color: #f4f4f4;
    width: 100%;
    border-left: 2px solid;
    padding: 11px 12px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}


/* setting */


/* on of togel */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* on of togel */

.dashboardcard {
    animation-name: fadeInUp;
    position: relative;
    animation-duration: .6s;
    animation-fill-mode: both;
    animation-delay: .8s;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    margin: 8px;
    width: 100%;
    -webkit-flex-basis: 200px;
    flex-basis: 200px;
    padding: 24px;
    text-align: center;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #b2c2cd;
    background-color: #fff;
    transition: all 0.25s;
}

.dashboardcard:hover:not(.is-disabled) {
    cursor: pointer;
    box-shadow: 0 8px 32px rgb(77 101 117 / 35%);
    border-color: transparent;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

.import {
    border: 1px solid #136acd !important;
    color: #000 !important;
    background-color: transparent !important;
}

.import:hover {
    background-color: #136acd !important;
    color: #fff !important;
    border: none !important;
}

.border-income {
    padding: 17px 0px;
    border-radius: 3px;
    background-color: #ecf0f3;
}

.main_banckimg {
    height: 90vh;
    background-image: url(../img/asasPicture2.png);
    background-size: 89% 100%;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }
    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }
    .header_img {
        width: 33%;
        height: 40px
    }
    .header_img img {
        width: auto;
        height: 100%;
    }
    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }
    .show {
        width: calc(var(--nav-width) + 156px)
    }
    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }
}


/* pagination */

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination>li {
    display: inline;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.ng-scope>a:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.ng-scope>a {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.ng-scope>a:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.ng-isolate-scope {
    text-align: center !important;
    display: inline-block;
}

.input.ng-invalid.ng-touched {
    border: 2px solid red;
}

.errortext {
    color: red;
}

.was-validated input.form-control:invalid,
input.form-control.is-invalid {
    padding: 6px 10px;
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    border-color: #dc3545;
}

.was-validated input.form-control:valid,
input.form-control.is-valid {
    padding: 6px 10px;
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    border-color: #198754 !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-valid,
.was-validated .form-control:valid,
.ng-not-empty {
    border-color: #198754 !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.ng-not-empty:focus {
    box-shadow: 0 0 0 0.2rem rgb(40 167 69 / 25%) !important;
}

#qrcode img {
    display: inline-block !important;
}

.table>:not(:last-child)>:last-child>* {
    font-size: 13px;
}

.invoicetabact {
    border-bottom: 2px solid #136acd;
    color: #136acd;
    font-weight: 700;
}

.badbackcolor {
    background-color: #136acd;
}

.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgb(103 77 205 / 42%), rgb(106 65 117 / 45%));
    background: -webkit-radial-gradient(rgb(103 77 205 / 42%), rgb(106 65 117 / 45%));
}

.loading:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 21px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.button {
    font-size: 17px;
    padding: 10 px;
}

#qrcodee {
    width: 100%;
    float: left;
}

#qrcodee img {
    display: inline-block !important;
}

.fa-bars:before {
    content: "\f0c9" !important;
}


/* .color {
    background-color: #fff;
    color: #000;
    font-size: 45px !important;
}

.font_size {
    font-size: 45px;
}

.lineitem td {
    font-size: 30px !important;
    background-color: none !important;
}

.lineitem td {
    background-color: none !important;
}

@media print {
    body {
        font-size: 45px;
        color: #000;
    }
    @page {
        margin: 0;
        bleed: 2mm;
        marks: crop cross;
        font-size: 40px;
        scale: 80;
    }
    @page: left {
        margin-left: 2mm;
        margin-right: 2mm;
    }
    @page: right {
        margin-left: 2mm;
        margin-right: 2mm;
    }
    .font_size th {
        font-size: 35px !important;
    }
    .lineitem td {
        font-size: 40px !important;
    }
    .font_size h5 {
        font-size: 35px !important;
    }
    @page {
        size: A3;
        margin: 1cm;
    }
    .font_fize tr td:nth-child(1) {
        width: 80% !important;
    }
} */


/* @media print {
    body {
        font-size: 18px;
        color: #000;
    }
    @page {
        size: 297mm 420mm;
        margin: 2mm 2mm;
        bleed: 6mm;
        marks: crop cross;
        font-size: 12px;
    }
    @page: left {
        margin-left: 5mm;
        margin-right: 5mm;
    }
    @page: right {
        margin-left: 5mm;
        margin-right: 5mm;
    }
    @page {
        size: A3;
        margin: 1cm;
    }
} */

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

.nokiaPaginationWrap a {
    font-size: 20px !important;
}
  