* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: nunito, sans-serif;
}
body,*{
    color-adjust:exact !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
}
/* variables */
:root {
    --main-color: #1ABC9C;
    --bg-body: #fafbfe;
    --white: #fff;
    --dark-color: #5e5873;
    --secondary-color: #212b36;
    --light: #f6f7f8;
    --black: #000;
    --primary-color: #7367f0;
    --bs-gray-100: #f0f0f0;
    --gray-300: #555;
    --gray-500: rgb(107, 107, 107);
    --gray-900: rgba(254, 159, 67, .08);
    --bs-gray-500: grey;
    --transition: all .4s ease-in-out;
    --bs-body-color: #212529;
    --bs-light-dark: #212b36;
    --bs-orange-light: rgba(249, 110, 111, .12);
    --bs-background-orange: #1ABC9C;
    --bs-background-orange-hover: #1ea88d;
    --bs-border-color: rgba(145, 158, 171, .32);
}
/* css classes */
.max-container {
    width: 100%;
    padding: 0 20px;
}
.gap-3{
    gap: 20px !important;
}
.left-80{
    left: 80% !important;
}
.left-30{
    left: 30% !important;
}
.left-35{
    left: 35% !important;
}
.left-40{
    left: 40% !important;
}
.left-50{
    left: 50% !important;
}
.top-10-{
    top: -10% !important;
}
.top-10{
    top: 10% !important;
}
.bottom-20{
    bottom: 20% !important;
}
.text-decoration-none {
    text-decoration: none;
}

.outline-none {
    outline: none;
}
.border-bottom-input {
    border: none !important;
    border-bottom: 1px solid rgb(105, 105, 105) !important;
}

.bg-light-yellow {
    background-color: var(--main-color);
}
.text-light-yellow {
    color: var(--main-color);
}
  
/* fonts size */
.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}
.fs-22 {
    font-size: 22px !important;
}
.fs-24 {
    font-size: 24px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-36 {
    font-size: 36px !important;
}

/* font weight  */
.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

/* backgrounds  */
.bg-blue {
    background: var(--primary-color) !important;
}
.bg-green {
    background: #28c76f !important;
}
.bg-crimson {
    background: #ea5455 !important;
}
.bg-gray {
    background: rgb(236, 235, 235) !important;
}
/* colors  */
.color-dark {
    color: var(--dark-color) !important;
}

.color-primary {
    color: var(--primary-color) !important;
}

.color-secondary {
    color: var(--secondary-color) !important;
}

.color-gray-300 {
    color: var(--gray-300) !important;
}

.color-green {
    color: #28c76f !important;
}
.color-crimson {
    color: #ea5455 !important;
}
/* width  */
.w-20{
    width: 20px !important;
}
.w-25{
    width: 25px !important;
}
.w-30{
    width: 30px !important;
}
.w-80{
    width: 90px !important;
}
.w-35{
    width: 35% !important;
}
.w-90{
    width: 90% !important;
}
textarea{
    height: 100px !important;
    resize: none;
}
/* rextarea scroll bar  */
textarea::-webkit-scrollbar {
    width: 5px;
}
textarea::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--transition);
}
textarea::-webkit-scrollbar-thumb:hover {
    background: #000;
}
textarea::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* cursor */
.cursor-pointer {
    cursor: pointer;
}
.cursor-not-allowed {
    cursor:not-allowed;
}
/* radius */
.rounded-50 {
    border-radius: 50%;
}
/* pointer events none */
.pointer-events-none {
    pointer-events: none;
}
/* underline */
.text-underline {
    text-decoration:underline;
}
.user-avator {
    width: 40px;
    height: 40px;
}
.user-avator-small {
    width: 30px;
    height: 30px;
}
.badges{
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    min-width: 80px;
}
.loging-img{
    width: 100px;
}
/* body scroll bar  */
body::-webkit-scrollbar {
    width: 7px;
}
body::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--transition);
}
body::-webkit-scrollbar-thumb:hover {
    background: #000;
}
body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.automate-box{
    overflow-y: auto;
    max-height: 200px;
    min-height: fit-content;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 99;
    width: 100%;
    margin: auto;
}
.automate-box.activate{
    opacity: 1;
    pointer-events: auto;
}
.automate-box.activate li{
    cursor: pointer;
    display: block !important;
    transition: all .4s ease;
}
.automate-box.activate li:hover{
    background-color: #d8d8d8;
}
/* automate-box scroll bar  */
.automate-box::-webkit-scrollbar {
    width: 5px;
}
.automate-box::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--transition);
}
.automate-box::-webkit-scrollbar-thumb:hover {
    background: #000;
}
.automate-box::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* ================================================== wrapper ================================================== */
.wrapper {
    max-width: 100%;
    display: flex;
    background: var(--bg-body);
    overflow-x: hidden !important;
}

/* ======================================= sidebar ======================================= */
.sidebar {
    position: fixed;
    width: 260px;
    left: 0;
    top: 60px;
    height: 100vh;
    background-color: var(--white);
    padding: 18px 0;
    transition: all .4s ease;
    z-index: 8;
    overflow-y: auto;
    padding-bottom: 80px;
}
.sidebar::-webkit-scrollbar {
    width: 7px;
    transition: all .4s ease;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
    transition: var(--bs-transition);
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #1b2950;
}

.sidebar::-webkit-scrollbar-track {
    background: #f6f7f8;
}
.sidebar-overlay {
    display: none;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 60px;
    left: 0;
}

.sidebar.close {
    width: 80px;
}

.sidebar.open {
    width: 260px;
    left: 0;
    top: 60px;
    background-color: var(--white);
    min-height: 100vh;
    padding: 18px 0;
    transition: all .4s ease;
}

.sidebar.close ul .sidebar-text {
    display: none;
}

.sidebar.close ul .collapse {
    display: none;
}

.sidebar.close ul .sidebar-link .arrow-icon {
    display: none !important;
}

.sidebar.close ul .sidebar-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}

.sidebar ul .sidebar-link a {
    background-color: transparent;
    color: var(--gray-500);
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    width: auto;
    padding: 8px 15px;
}

.sidebar ul .sidebar-link a:hover {
    color: var(--main-color);
}

.sidebar ul .sidebar-link a.active {
    background-color: var(--gray-900);
    color: var(--main-color);
}

.sidebar ul .sidebar-link .sidebar-icon {
    width: 25px;
    height: 30px;
    display: flex;
    align-items: center;
}

.sidebar ul .sidebar-link .sidebar-text {
    font-weight: 600;
    letter-spacing: .7px;
}

.sidebar ul .sidebar-link .sidebar-icon i {
    font-weight: 500;
    font-size: 18px;
}

.sidebar ul .submenu li {
    padding-left: 25px;
    position: relative;
}

.sidebar ul .submenu li::before {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    background: var(--gray-500);
    border-radius: 50%;
    top: 40%;
    transition: all .4s ease;
}

.sidebar.close ul .sidebar-link {
    pointer-events: none;
}

.sidebar ul .submenu li:hover::before {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.sidebar ul li .submenu li a.subactive {
    color: var(--main-color);
}

/* ======================================= End sidebar ======================================= */
/* ======================================= main ======================================= */
.main {
    width: calc(100% - 260px);
    position: relative;
    left: 260px;
    transition: all .4s ease;
}

.main.active {
    width: calc(100% - 80px);
    left: 80px;
}

/* ============================ header ============================ */
.main .header {
    position: fixed;
    width: 100vw;
    left: 0;
    top: 0;
    background-color: var(--white);
    height: 60px;
    z-index: 999;
}

.main .header .logo {
    min-width: 260px;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 18px;
    transition: all .4s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.main .logo.show {
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .header .logo.show .small-img {
    display: block !important;
}

.main.active .header .logo.show .logo-img {
    display: none;
}

.logo-img img {
    width: 140px;
}

.main .header .logo .small-img img {
    width: 32px;
}

/* toggle button  */
.toggle-button {
    position: absolute;
    opacity: 1;
    background: var(--main-color);
    right: -13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--white);
    cursor: pointer;
}

.main .header .logo.show .toggle-button {
    display: none;
}

/* smart icons  */
.main .header .smart-icons .smart-icons-icon {
    background: var(--light);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main .header .smart-icons .smart-icons-icon i {
    font-size: 18px;
    color: #67748e;
    transition: all .4s ease;
}

.main .header .smart-icons .smart-icons-icon:hover i {
    color: var(--main-color);
}

.main .header .avator-img {
    width: 40px;
    cursor: pointer;
}

.main .header .smart-icons .user-info span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #1b2950;
    display: flex;
    align-items: center;
}

.main .header .smart-icons .user-info span:last-child {
    display: block;
    color: #67748e;
    font-size: 12px;
}

/* notification box  */
.notification-box {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    left: 61%;
    margin: 0;
    max-width: 300px;
    opacity: 0;
    padding: 0;
    position: absolute;
    transition: all .2s ease-in-out;
    transform: translateY(60px);
    top: 35px;
    visibility: hidden;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.notification-box.show {
    transform: translateY(25px);
    opacity: 1;
    visibility: visible;
}

/* profile box  */
.profile-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    left: 76%;
    margin: 0;
    min-width: 300px;
    opacity: 0;
    padding: 0;
    position: absolute;
    transition: all .2s ease-in-out;
    transform: translateY(100px);
    top: 0px;
    visibility: hidden;
    z-index: 1000;
}

.profile-box.show {
    transform: translateY(60px);
    opacity: 1;
    visibility: visible;
}

.user-info-active {
    background-color: #e9eaeb;
}

.user-info-active i {
    transition: var(--transition);
    transform: rotate(-180deg);
}

.profile-box .profile-link {
    transition: var(--transition);
    cursor: pointer;
}
.profile-link a{
    gap: 5px;
}
.profile-box .profile-link:hover {
    background: #e9eaeb;
}

/* scroll bar  */
.box::-webkit-scrollbar {
    width: 7px;
    transition: all .4s ease;
}

.box::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--bs-transition);
}

.box::-webkit-scrollbar-thumb:hover {
    background: #1b2950;
}

.box::-webkit-scrollbar-track {
    background: #f6f7f8;
}

.actions {
    position: absolute;
    left: -200px;
    top: 30px;
    display: none;
    width: 200px;
}

.actions.show {
    display: block;
}

.actions li {
    padding: 8px 15px;
    transition: var(--transition);
}

.actions li:hover {
    background: #e9eaeb;
}

/* ============================ End header ============================ */
/* ============================ content ============================ */
.main .content {
    padding: 80px 0;
    min-height: 100vh;
}
.page-item.active .page-link{
    z-index: 1 !important;
}
/* ==================== all tables ==================== */
/* #myTable_filter, #generateTable_filter, #income-statement-table_filter, #shares-table_filter, #customePrepaidTable_filter {
    display: none;
} */
.dataTables_info {
    font-size: .9rem;
    font-weight: bold;
}
#myTable_filter{
    margin-top: -26px;
}

#myTable_paginate {
    display: flex;
    justify-content: end !important;
}

.paginate_button .page-link {
    font-weight: bold;
    margin: 0px 1px !important;
}

.tableReport td, .tableReport th{
    padding: 0 !important;
}

.pagination .paginate_button:hover{
    background-color: transparent !important;
}
.pagination .paginate_button a:first-child {
    background: var(--bs-gray-500);
    border: 1px solid var(--bs-gray-500);
    color: var(--light);
    border-color: var(--bs-white) !important;
    border-radius: 3px;
    margin: 0 8px;
}
.pagination .paginate_button a:hover {
    background: var(--bs-background-orange);
}
.pagination .paginate_button.active a {
    background: var(--bs-background-orange) !important;
}
th {
    font-weight: 600;
    color: #212B36;
    padding: 10px;
    white-space: nowrap;
    font-size: 15px;
}
/* upload image  */
.upload-image-box{
    border-radius: 50%;
    border: 6px solid #fff;
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
}
.upload-image-box .img-view{
    width: 100%;
    height: 100%;
}
.upload-image-box .upload-image-icon{
    position: absolute;
    left: 36%;
    bottom: 10%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: var(--bs-background-orange);
}
.upload-image-box .upload-image-icon i{
    position: absolute;
    pointer-events: none;
}
.upload-image-box .upload-image-icon input{
    cursor: pointer;
}
.upload-image-box .upload-image-icon input::-webkit-file-upload-button {
    visibility: hidden;
}
/* end upload image  */
.input-container {
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 5px;
    background-color: #fff;
    padding: auto 10px;
}
.input-container:hover{
    border-color: var(--main-color);
}
.input-container .input {
    width: 80%;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 9px 0;
}
.filter-search {
    width: 41px;
    height: 41px;
    cursor: pointer;
    background: var(--bs-background-orange);
    border-radius: 4px;
    transition: all .3s;
}

.filter-search:hover {
    background: #0a0941;
    transition: all .3s;
}

.table .productImg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.table .productImg img {
    width: 100%;
    height: 100%;
}

.table .productImg~a {
    color: #0a0941;
    transition: all .3s;
}

.table .productImg~a:hover {
    color: var(--bs-background-orange);
    transition: all .3s;
}

.table thead th {
    font-weight: 600;
    color: #212B36;
    padding: 10px;
    white-space: nowrap;
}

.table thead tr {
    background: #fafbfe !important;
}

.table tbody tr td {
    padding: 10px;
    color: #637381 !important;
    font-weight: 600;
    /* border-bottom: 1px solid #E9ECEF; */
    vertical-align: middle;
    white-space: nowrap;
    font-size: 14px;
}

.table-responsive::-webkit-scrollbar {
    width: .5rem;
    height: .3rem;
}

.table-responsive::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background: var(--bs-background-orange);
    /* visibility: hidden; */
}

/* .table-responsive:hover::-webkit-scrollbar-thumb {
    visibility: visible;
} */
/* ==================== end all tables ==================== */

/* ==================== dashboard ==================== */
.h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.h6 {
    color: var(--bs-gray-600);
    font-weight: 600 !important;
}

.btn-orange {
    background-color: var(--bs-background-orange) !important;
}

.btn-orange:hover {
    background-color: var(--bs-background-orange-hover) !important;
}

.form-input {
    border: 1px solid var(--bs-border-color);
    height: 40px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #637381;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
}

.form-input:focus {
    border: 1px solid var(--bs-background-orange);
}

.form-group .textarea {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #637381;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
    border: 1px solid var(--bs-border-color);
}

.form-group .textarea:focus {
    border: 1px solid var(--bs-background-orange);
}

.select {
    padding: 10px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    outline: none !important;
    border: 1px solid var(--bs-border-color);
}

.form-select:focus {
    border: 1px solid var(--bs-background-orange) !important;
}

.dash1 {
    background-color: var(--bs-background-orange);
}

.dash2 {
    background-color: rgba(40, 199, 111, .12);
}

.dash3 {
    background-color: rgba(0, 207, 232, .12);
}

.dash4 {
    background-color: rgba(234, 84, 85, .12);
}

.dash-count.das1 {
    background: var(--bs-background-orange);

}

.dash-count.das2 {
    background: #00cfe8;
}

.dash-count.das3 {
    background: #1b2850;
}

.dash-count.das4 {
    background: #28c76f;
}

.dash-widget {
    background: #fff;
    margin-bottom: 25px;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid #e8ebed;
}

.dash-widget .dash-widgetimg {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.dash-count {
    color: #fff;
    min-height: 98px;
    width: 100%;
    border-radius: 6px;
    margin: 0 0 25px;
    padding: 20px;
}

.dash-count i {
    font-size: 50px;
    transition: all .4s;
}

.dash-count:hover i {
    font-size: 50px;
    transition: all .4s;
    transform: scale(1.2);
}

.hover a {
    background: var(--bs-background-orange) !important;
    border-color: transparent;
    transition: all .5s;
}

.hover a:hover {
    background: #212529 !important;
    transition: all .5s;
}

/* ==================== End dashboard ==================== */
/* =============================    loader style    ====================================== */
.loader-div{
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 48px;
    height: 48px;
    margin: auto;
    position: relative;
  }
  .loader span{
    position: absolute;
    top: 150% !important;
    color: #fff;
    font-size: 18px;
  }
  .loader:before {
      content: '';
      width: 48px;
      height: 5px;
      background: #000;
      opacity: 0.25;
      position: absolute;
      top: 60px;
      left: 0;
      border-radius: 50%;
      animation: shadow 0.5s linear infinite;
    }
    .loader:after {
      content: '';
      width: 100%;
      height: 100%;
      background: #fff;
      animation: bxSpin 0.5s linear infinite;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 4px;
    }
  @keyframes bxSpin {
    17% {
      border-bottom-right-radius: 3px;
    }
    25% {
      transform: translateY(9px) rotate(22.5deg);
    }
    50% {
      transform: translateY(18px) scale(1, .9) rotate(45deg);
      border-bottom-right-radius: 40px;
    }
    75% {
      transform: translateY(9px) rotate(67.5deg);
    }
    100% {
      transform: translateY(0) rotate(90deg);
    }
  }

  @keyframes shadow {
    0%, 100% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1);
    }
  }
 

  /* ===================== mini loader ===================== */
  .lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #000000;
  }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes lds-spinner {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
/* ==================== pos ==================== */
.content .delete {
    background: var(--white);
    box-shadow: 0 4px 14px 0 rgba(199, 199, 199, .2509803922);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
}

.content .owl-carousel .nav-link {
    box-shadow: 0 4px 4px 0 rgba(237, 237, 237, .2509803922);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.content .owl-carousel .nav-link:hover {
    background: var(--primary-color);
}

.content .owl-carousel .nav-link.active {
    background: var(--primary-color);
}

.content .owl-carousel .nav-link:hover h6 {
    color: var(--white) !important;
}

.content .owl-carousel .nav-link h6 {
    color: var(--black) !important;
}

.content .owl-carousel .nav-link.active h6 {
    color: var(--white) !important;
}

.content .owl-carousel .owl-dots {
    display: none;
}

.content .owl-carousel {
    position: relative;
}

.content .pos .owl-carousel .owl-nav {
    position: absolute;
    right: 10px;
    top: -50px;
    display: flex;
}
.content.pd .owl-carousel .owl-nav {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content.pd .owl-carousel .owl-nav button{
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--black);
}
.content .pos .owl-carousel .owl-nav button {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px;
    font-size: 20px;
}

.content.pos .owl-carousel .owl-nav button:hover {
    background-color: var(--primary-color);
}
.content.pd .owl-carousel .owl-nav button:hover {
    background-color: var(--black);
}

.content .owl-carousel .owl-nav button:hover span {
    color: var(--white);
}

.content.pos .owl-carousel .owl-nav button span {
    color: var(--primary-color);
    font-size: 25px !important;
}

.content .card {
    border: 1px solid #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(237, 237, 237, .2509803922);
    background: var(--white);
    transition: var(--transition);
}

.content .card .overlay {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.content .card .overlay .qty {
    position: absolute;
    left: 50%;
    width: 80px;
    position: absolute;
    background: #ff9f43;
    color: #fff;
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    top: 20px;
    right: 20px;
    transform: translatey(-60px);
    transition: var(--transition);
    z-index: 1;
}

.content .card:hover {
    border: 1px solid var(--primary-color) !important;
}

.content .card.selected {
    border: 1px solid var(--primary-color) !important;
}

.content .card:hover .overlay .qty {
    transform: translatey(0px);
}

.content .card .overlay img {
    transition: var(--transition);
}

.content .card:hover .overlay img {
    transform: scale(1.1);
}

.content .card .overlay input[type="checkbox"] {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: none;
}

.content .card.selected .overlay input[type="checkbox"] {
    display: block;
}

/* cart  */
.cart {
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* cart scroll bar  */
.cart::-webkit-scrollbar {
    width: 7px;
}

.cart::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--transition);
}

.cart::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.cart::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* view-actions */
.view-actions {
    font-size: 30px;
}

/* payment methods  */
.payment-method {
    border: 1px solid #e9ecef;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    min-height: 95px;
    border-radius: 5px;
    padding: 10px 20px;
    transition: var(--transition);
    cursor: pointer;
}

.payment-method:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.content .setting {
    position: relative;
}

.more {
    position: absolute;
    left: -150px;
    top: 30px;
    display: none;
    width: 200px;
}

.more.show {
    display: block;
}

.more li {
    padding: 8px 15px;
    transition: var(--transition);
}

.more li:hover {
    background: #e9eaeb;
}

/* ==================== End pos ==================== */

/* ==================== Chat ==================== */
.content .chat-list {
    max-height: 430px;
    overflow-x: hidden;
    overflow-y: auto;
}

.chat-list::-webkit-scrollbar {
    width: 7px;
}

.chat-list::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--transition);
}

.chat-list::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.chat-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.content .chat-list li {
    transition: var(--transition);
}

.content .chat-list li.active {
    background: #e9eaeb;
}

.content .chat-list li:hover {
    background: #e9eaeb;
}
.content .message-body{
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
}
.message-body::-webkit-scrollbar {
    width: 7px;
}

.message-body::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: var(--transition);
}

.message-body::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.message-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.content .message-body .arrow-right {
    position: absolute;
    width: 0;
    height: 0;
    right: -10px;
    top: 0;
    border-top: 0px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #ddd;
}
.content .message-body .arrow-left {
    position: absolute;
    width: 0;
    height: 0;
    left: -10px;
    top: 0;
    border-top: 0px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid var(--main-color);
}
.line {
    border-bottom: 1px solid #bbb;
    position: relative;
}
.line::after{
    content: attr(line-text);
    position: absolute;
    left: 35%;
    background-color: #fff;
    padding: 0 5px;
    top: -3px;
}

/* ==================== End Chat ==================== */

/* ==================== ui interface / tables ==================== */

.dt-buttons{
    position: absolute;
    right: 0;
    top: -3px;
}
.dt-buttons button{
    background-color: transparent;
    margin: 0 5px;
    border: none !important;
    position: relative;
}
.dt-buttons button img{
    width: 25px;
}
#example_filter input{
    outline: none !important;
}
/* tooltip  */
.tooltipText {
    position: relative;
  }
  .tooltipText::before,
  .tooltipText::after {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-in-out;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 15px;
  }
  .tooltipText:hover:before,
  .tooltipText:hover:after{
  opacity: 1;
  visibility: visible;
}
.tooltipText::before {
  content: attr(data-customTooltip);
  z-index: 2;
  width: max-content;
  color: #fff;
  background: rgba(0,0,0, .7);
  border-radius: 5px;
  padding: 5px 8px;
}
.tooltipText::after {
  content: "";
  width: 0;
  height: 0;
  margin-bottom: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(0,0,0, .7);
}
/* ==================== end ui interface / tables ==================== */
/* ==================== pages / login and registration ==================== */
.login {
    width: 100%;
}

.login .img {
    width: 70%;
}

.login .logo-side {
    width: 50%;
    background-color: #1ABC9C;
    height: 100vh;
    position: fixed;
}

.login img {
    width: 100%;
}

.form .input {
    width: 100%;
    padding: 10px 15px;
    outline: none;
    border: 1px solid var(--bs-gray-500);
    border-radius: 4px;
}

.form {
    background-color: #fafbfe;
    height: 100vh;
}

.form .password-input {
    background: var(--bs-white);
    border: 1px solid var(--bs-gray-500) !important;
}

.form .input:focus {
    border: 1px solid var(--bs-background-orange);
}

.form .button input {
    width: 100%;
    padding: 11px;
    background: var(--bs-background-orange);
    outline: none;
    color: var(--bs-white);
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid transparent;
    transition: all .4s;
}

.form .button input:hover {
    background: var(--bs-white);
    border: 1px solid var(--bs-background-orange);
    color: var(--bs-background-orange);
    transition: all .4s;
}

.form .forget-pass a {
    transition: all .4s;
    color: var(--bs-gray-800);
}

.form .forget-pass a:hover {
    color: var(--bs-background-orange);
    transition: all .4s;
}

.google-bg {
    background: rgba(255, 222, 218, 0.31);
}

/* ====== password input ========== */
.password-input {
    width: 100%;
    padding: 10px 15px;
    outline: none;
    border: 1px solid rgba(255, 222, 218, .71);
    border-radius: 4px;
}

.password-input input {
    width: 80%;
    outline: none;
    border: 1px solid transparent !important;
    padding: 0px !important;
}

.password-input i {
    cursor: pointer;
}
/* ========= user profile ============= */
.profile_set .profile_head{
    height: 109px;
    background: linear-gradient(90deg,#EA5455 0%,#FF9F43 100%);
    border-radius:  10px 10px 0  0;
}
.profile_set .profile_top .profile_contentimg{
    margin-top: -40px;
    width: 130px;
    position: relative;
    border: 10px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.2509803922);
}
.profile_set .profile_top .profile_contentimg img{
    height: 110px;
    object-fit: cover;
}
/* ============ checkbox permission ========= */
.material-checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #777777;
    cursor: pointer;
    margin-right: 6px;
}

.material-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.material-checkbox input[type="checkbox"]:checked~.checkmark {
    background-color: var(--bs-white);
    border-color: var(--bs-background-orange);
}

.material-checkbox input[type="checkbox"]:checked~.checkmark:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid var(--bs-background-orange);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.material-checkbox input[type="checkbox"]:disabled~.checkmark {
    opacity: 0.5;
    cursor: not-allowed;
}

.material-checkbox input[type="checkbox"]:disabled~.checkmark:hover {
    border-color: #4d4d4d;
}

/* ====== end of check box permission ====== */
/* toast */
.alertbox{
    position: fixed;
    right: 0 !important;
    top: 80px !important;
    z-index: 99999 !important;
}
/* ====== check box 2 permission ====== */
.switch {
    position: relative;
    height: 1rem;
    width: 2rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 9999px;
    background-color: rgba(100, 116, 139, 0.377);
    transition: all .3s ease;
}

.switch:checked {
    background-color: #28c76f;
}

.switch::before {
    position: absolute;
    content: "";
    left: calc(1rem - 1rem);
    top: calc(1rem - 1rem);
    display: block;
    height: 1rem;
    width: 1rem;
    cursor: pointer;
    border: 1px solid rgba(100, 116, 139, 0.527);
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 3px 10px rgba(100, 116, 139, 0.327);
    transition: all .3s ease;
}

.switch:hover::before {
    box-shadow: 0 0 0px 8px rgba(0, 0, 0, .15)
}

.switch:checked:hover::before {
    box-shadow: 0 0 0px 8px rgba(236, 72, 153, .15)
}

.switch:checked:before {
    transform: translateX(100%);
    border-color: #28c76f;
}

/* ========= uploard file style ======== */
.upload-csv-file {
    background-color: #fff;
    border-radius: 7px;
    padding: 10px .7rem .7rem .7rem;
    text-align: center;
    font-size: 1.125rem;
}

.form-title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 500;
}

.form-paragraph {
    font-size: 0.9375rem;
    color: rgb(105, 105, 105);
}

.drop-container {
    max-width: 100%;
    height: 145px;
    background-color: #fff;
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    /* margin-top: 12px; */
    border-radius: 6px;
    border: 2px dashed var(--bs-background-orange);
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
    background: var(--bs-gray-100);
}

.drop-container:hover .drop-title {
    color: #222;
}

.drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
}

#file-input {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 2px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(8, 8, 8, 0.288);
}

#file-input::file-selector-button {
    margin-right: 20px;
    border: none;
    background: var(--bs-background-orange);
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

#file-input::file-selector-button:hover {
    background: var(--bs-background-orange-hover);
}
/* ==== end of upload file ========== */

/* ==== status style ========== */

.greenStatus {
    width: 80%;
    padding: 5px 10px;
    background-color: #28c76f;
    border-radius: 5px;
    color: var(--bs-white);
    text-align: center;
    display: flex;
    justify-content: center;
}

.redStatus {
    width: 80%;
    padding: 6px 10px;
    background-color: var(--bs-red);
    border-radius: 5px;
    color: var(--bs-white);
    text-align: center;
    display: flex;
    justify-content: center;
}

.orangeStatus {
    width: 80%;
    padding: 6px 10px;
    background-color: var(--bs-background-orange);
    border-radius: 5px;
    color: var(--bs-white);
    text-align: center;
    display: flex;
    justify-content: center;
}

.grayStatus {
    width: 80%;
    padding: 6px 10px;
    background-color: var(--bs-gray-700);
    border-radius: 5px;
    color: var(--bs-white);
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ==== end status style ========== */


/* ================= nav tap style ============= */

.nav .nav-item a {
    background: var(--bs-gray-200);
    color: var(--bs-black-rgb);
    padding: 6px 14px !important;
    font-weight: bold;
}
.nav .nav-item .nav-link .active {
    background: #FF5364;
    color: var(--bs-white);
}
/* ===== product Details ======= */
.bar-code-view {
    width: 282px;
    border: 1px solid #d8d8d8;
    padding: 15px;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
}
/* ===================================== printerr invoice and receipt ===================================== */
/* status payment  */
.status-payment{
    position: absolute;
    right: -50px;
    top: 10px;
    width: 160px;
    text-align: center;
    padding: 5px 0;
    transform: rotate(45deg);
}
/* yourlogo */
.your-logo{
    padding-bottom: 30px;
}
.your-logo img{
    width: 100px;
}

/* receipt paper desing  */
#receipt{
    max-width: 302.36px !important;
    min-width: 302.36px !important;
    background-color: white !important;
    display: none;
}
#receipt table, #receipt .more-information, #receipt .payment-info{
    font-size: 12px;
}
#receipt table, #receipt th, #receipt td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 2px 4px !important;
}
#receipt .comapny-logo-receipt{
    width: 100px !important;
}
/* =================end nav tap style ============= */



/* ====== end of check box 2 permission ====== */
/* ==================== end pages / login and registration ==================== */

/* ============================ End content ============================ */
/* ======================================= End main ======================================= */

/* ==================================================  End wrapper ================================================== */

/* ==================================================  media queries ================================================== */
@media screen and (max-width: 991px) {
    .main .header .logo .toggle-button {
        display: none;
    }
    .main .header .logo {
        border: none !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .main .header .logo .menu i {
        color: var(--main-color);
        font-size: 40px;
        transition: var(--transition);
    }

    .main .header .logo .show-more i {
        color: var(--main-color);
        font-size: 30px;
    }

    .main {
        min-width: 100%;
        left: 0;
    }

    .sidebar {
        position: fixed;
        width: 260px;
        left: -100%;
        bottom: 0;
        z-index: 2;
    }
    .sidebar.show {
        left: 0;
    }

    .sidebar-overlay.opened {
        display: block;
        z-index: 1;
    }
    .content .message-box{
        position: absolute;
        left: -100%;
        transition: var(--transition);
    }
    .content .message-box.show{
        left: 0;
    }
    /* ==== permision side ======== */
    
    .Permission-list ul li .check-list {
        border: none !important;
        font-size: 100px !important;
    }
}

@media screen and (max-width: 767px) {
    #myTable_filter{
        margin-top: 0px;
    }
}

@media screen and (max-width: 574px) {
    .main .header .logo .toggle-button {
        display: none;
    }

    .main .header .logo {
        border: none !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .main .header .logo .menu i {
        color: var(--main-color);
        font-size: 40px;
    }

    .main .header .logo .show-more i {
        color: var(--main-color);
        font-size: 30px;
    }

    .sidebar {
        width: 100%;
    }
    .dt-buttons{
        position: static;
        text-align: right !important;
        margin-bottom: 20px !important;
    }
    .dt-buttons button .button-text-responsive, .dt-buttons a .button-text-responsive{
        display: inline-block !important;
    }
    .dt-buttons button,
    .dt-buttons a{
        padding: 4px 10px;
        border-radius: 3px;
        color: #fff;
    }
    .buttons-csv{
        background: #28c76f !important;
    }
    .buttons-pdf{
        background: #EA5455 !important;
    }
    .buttons-print{
        background: var(--gray-300) !important;
    }
    .dt-buttons a{
        padding: 6px 10px;
        background: var(--primary-color) !important;
    }
    .dt-buttons a:hover{
        color: #fff ;
    }
    .dt-buttons button .toolTipText, .dt-buttons button img ,
     .dt-buttons a .toolTipText, .dt-buttons a img{
        display: none !important;
    }
}

@media(max-width: 450px) {
    #myTable_paginate .pagination {
        margin-top: 3rem;
    }

    /* .dataTables_length {
        bottom: 3.8rem;
    } */
}
@media print {
    body.printing *{
        visibility: hidden;
      }
      #card-receipt {
        visibility:visible !important; 
        position: fixed !important; 
        top:20px !important;
        left:0 !important;
        min-height: 100% !important;
        width: 100% !important;
      }
      #card-receipt *{
        visibility:visible !important; 
      }
      #receipt {
        visibility: visible !important;
        display: inline-block;
        overflow-x: hidden;
        position: fixed !important; 
        top:20px !important;
        left:0 !important;
      }
      #receipt *{
        visibility:visible !important; 
      }
      
}
/* ==================================================  End media queries ================================================== */