/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  --bs-body-font-size: 0.85rem;
  --bs-border-color: #b2b2b2;
  color: #444444;
 }

a {
  color: #0A73BA;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.2rem;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 80px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  transition: 0.3s;
  margin: 1px 0px 1px 0px;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
}

.card-title span {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #06456f;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #06456f;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 115px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 85px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #0A73BA;
  /*background-image: linear-gradient(to right top, #0a73ba, #3782cb, #5391dc, #6ba1ed, #82b1ff); */
  padding-left: 20px;
  /* Toggle Sidebar Button */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #FFF;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #FFF;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #FFF;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}



@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 13px !important;
  font-weight: 600;
  color: #606162;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #606162;
}

.sidebar-nav .nav-link.collapsed {
  color: #606162;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #606162;
}

.sidebar-nav .nav-link:hover,  .sidebar-nav .nav-link.active {
  color: #06456f;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #06456f;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #606162;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #FFF;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}


/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #0A73BA;
}


.sales-card {
 background-color: #FBB03C;
}
.revenue-card  {
 background-color: #57B64E;
}
.customers-card  {
 background-color: #7D858C;
}
.recent-sales .card-title, .report-sales .card-title {
  color: #000;
 }
.dashboard .main-title {
  padding-bottom: 10px;
}
 .logo-login img {
  max-height: 140px;
  margin-right: 6px;
}
.login-title {
    padding: 5px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #444444;
}
.form-label {
  margin-bottom: 0.2rem !important;
}
.btn-primary {
   background-color: #0a58ca;
   font-weight: bold;
}
.sales-form {
  padding: 10px;
  min-height: 600px;
  background-image: linear-gradient(to bottom, #fddfb1 0, #fee7c4 100%);
  border: 1px solid #fddfb1;
  border-radius: 10px;
}
.copy-rights-form {
  padding: 10px;
  min-height: 600px;
  background-image: linear-gradient(to bottom, #fddfb1 0, #fee7c4 100%);
  border: 1px solid #fddfb1;
  border-radius: 10px;
}
.submit-wrapper {
  padding: 20px 0px 0px 20px;
  margin-top: 20px;
}

legend {
    font-size: inherit;
    line-height: 30px;
    font-weight: 600;
    color: #444;
    margin-bottom: 0rem!important;
}

input[type="text"] {
    height: 34px;
    color: #666;
}
input[type="radio"] {
    padding: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 0.25em;
}
.sale-items .card-title {
    font-size: 14px;
    color: #000;
}
.sale-items {
  margin-top: 10px;
 }
 .add-sale-item {
  height: 30px;
  padding: 3px 10px 3px 10px;
  margin-top: 10px;
}
.total-text {
  font-size:15px;
  font-weight: bold;
  padding-top: 25px;
}
.submit-sale {
  padding: 7px 30px 7px 30px;
  font-size: 13px;
  margin-right: 10px;
  font-weight: bold;
}
.cancel-sale {
  padding: 7px 30px 7px 30px;
  font-size: 13px;
  margin-right: 10px;
  font-weight: bold;
}
.sales-form label {
  display: block !important;
}
.table tbody td.total-row {
  font-weight: bold;
  background-color: #CCC;
  padding-top: 20px;
}
.spacer {
  padding-left:10px;
}
.lang-switcher {
  padding-right: 30px;
}
.btn-close {
  font-size: 35px;
 }
 .modal-body {
   background-color: #FFFFFF;
 }
 .modal-footer {
     margin-top: 10px;
}
.modal-header {
    background-color: #CCCCCC;
    color: #000;
    padding: 5px 10px 5px 10px;
}
.note-text {
  font-weight: bold;
  margin:10px 0px;
}
#loading-div {
  text-align: center;
}
.payment-type,
 .payment-info {
  margin-bottom: 25px;
  margin-left: 5px;
}
 .payment-type h4 {
  margin: 0;
}
 .payment-type .types {
  margin: 12px 0;
}
 .payment-type .types .type {
  width: 30%;
  position: relative;
  background: #f2f4f7;
  border: 2px solid #e8ebed;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease;
  float: left;
  margin-right: 10px;
}
 .payment-type .types .type:hover {
  border-color: #28333b;
}
 .payment-type .types .type:hover .icon-logo,
 .payment-type .types .type:hover p {
  color: #28333b;
}
 .payment-type .types .type.selected {
  border-color: #40b3ff;
  background: rgba(64,179,255,0.1);
}
 .payment-type .types .type.selected .icon-logo {
  color: #40b3ff;
}
 .payment-type .types .type.selected p {
  color: #28333b;
}
 .payment-type .types .type .icon-logo,
x .payment-type .types .type p {
  transition: all 0.5s ease;
}
.payment-type .types .type .icon-logo {
  font-size: 20px;
  color: #8a959c;
}
.payment-type .types .type p {
  margin-bottom: 0;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #8a959c;
}
.payment-info .column {
  width: calc(50% - 25px);
}
 .payment-info .title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.payment-info .title .num {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 2px solid #40b3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 12px;
  font-size: 12px;
}
.payment-type-label {
  text-align: center;
  font-weight: bold;
}
.btn-secondary {
  font-size:0.8rem !important;
  margin-bottom: 10px;
}

.dropdown-menu hr.dropdown-divider {
  margin-top: 0px!important;
}
.payment-details {
  font-weight: bold;
  text-transform: uppercase;
}

.has-search .form-control {
    padding-left: 2rem;
    font-size: 12px;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #0b5ed7;
}

.filter-form {
  padding: 10px 10px 30px 10px;
  background-color: #e1eef6;
}
.search-label {
  font-size: 18px;
  padding-bottom: 10px;
}
.btn-light {
  background-color: #FFF;
  color: #4154f1;
  height: 30px;
  padding: 3px 20px 3px 20px;
  font-weight: 500;
  font-size: 14px;
  border-color: #4154f1;
}

table.datatable th {
  background-color: #9dc7e3 !important;
  text-transform: uppercase;
}
table.datatable tr{
  border-bottom: 1px solid #CED4DA;
}
.action-butt {
  font-weight: bold;
  font-size: 18px;
}
#components-nav li.active {
  color: #0d6efd;
}

.modal-body.add-item-popup {
   background-color: #FFF !important;
 }

 .frm-sub-heading {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
 }
 .item-details-mg {
   margin-right: 90px;
 }
 .dropdown-menu li{ position: relative; 	}
 .nav-item .submenu{
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover > .submenu{ display: block; }
.arrow {
  border: solid #0A73BA;
    border-width: 0px 2px 2px 0;
    display: inline-block;
    padding: 3px;
    float: right;
    margin: 5px 0px 0px 0px !important;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.nav-link {
    font-weight: 600;
    color: #FFF !important;
    font-size: 16px;
    padding: 0px 16px 0px 16px !important;
}

.bi {
   font-size: 15px !important;
}
.login-wrapper {
  background-image: linear-gradient(to right top, #0a73ba, #3782cb, #5391dc, #6ba1ed, #82b1ff);
}
.dropdown-toggle::after {
  font-size: 20px;
  vertical-align: 0.055em !important;
}
.lamguage-picker {
  font-size: 20px;
}
.marginTop20 {
 margin-top: 20px;
}
.menu-rights-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #0a58ca;
  border-radius: 10px;
}
.menu-rights-heading {
  font-size: 15px;
  font-weight: bold;
}
.mainmenu-class {
  font-size: 14px;
  background-color:#e1eef6;
  font-weight: bold;
  padding: 5px 0px;
  margin: 0px;
}
.submenu-class span{
  padding-left:10px;
  font-size: 14px;
}
.submenu-level2-class span {
  padding-left:30px;
  font-size: 12px;
}
.submenu2-parent {
  background-color: #F1F1F1;
  padding:5px 0px 2px 0px;
  margin-bottom: 20px;
}
.detail-wrapper {
  margin-left:15px;
  margin-right:15px;
  font-weight: bold;
}
.spacer-cls {
  padding-left:10px;
}
.action-icon-text {
  color: #0a73ba;
  font-size: 16px;
  padding-right: 20px;
}
.user-list-data {
padding: 10px;
min-height: 600px;
}
.lang-switch-wrapper {
background-color:#FFF;
color:#0a58ca;
box-sizing: border-box;
line-height: 25px;
width: 100%!important;
margin: 5px 0px 10px 0px;
font-size: 20px;
cursor: pointer;
}
.lang-switch-wrapper span {
padding-right:7px;
}
.login-error {
  color:red;
  font-weight:bold;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex!important;
}
.navbar {
  align-self: end;
  margin-bottom: 10px;
}
.subwrap {
  position:fixed;
  top:85px;
  bottom:0;
  min-height:100px;
  overflow:auto;
  left:100%;
}
 .frm-heading-bold {
   font-weight: bold;
 }
 .aureo-btn-small {
   padding: 3px 20px;
   font-weight: bold;
 }
 .copy-rights-wrapper {
   margin-top: 100px;
 }
.company-info-wrapper {
  font-size: 14px;
  color:#FFF;
}
.company-info-text {
  padding: 10px 20px 10px 20px;
  font-weight:bold;
  text-transform: uppercase;
}
.company-info-text span.langClass {
  font-weight:bold;
  text-transform: uppercase;
}
.company-info-text span {
  padding-left: 10px;
  font-weight:normal;
  text-transform: none;
}
.nav-profile img {
    max-height: 28px;
}
.nav-profile {
    margin-top: 5px;
}
.langswitch-button {
    line-height: 25px;
    margin-top: 5px;
    font-size: 20px;
    cursor: pointer;
    padding-left: 30px;
}
.langswitch-button span {
padding-left:7px;
}
.company-info-wrapper ul {
    list-style:none;
}
table.dataTable tr > th {
    background-color: #2281c0;
    color: #FFF;
}
div.dt-container .dt-paging .dt-paging-button {
  font-size:13px;
  font-weight: bold;
}
div.dt-container .dt-paging .dt-paging-button:hover {
      background: -webkit-linear-gradient(top, #2281c0 0%, #0a73ba 100%)!important;
}
.add-btn {
    padding: 3px 20px 3px 20px;
    font-size: 13px;
    margin-right: 10px;
    font-weight: bold;
}
.btn-secondary {
    --bs-btn-bg: #FCB03C;
    --bs-btn-border-color: #FCB03C;
    --bs-btn-hover-bg: #FCB03C;
    --bs-btn-hover-border-color: #FCB03C;
}
.btn-secondary {
  background-color: #FCB03C!important;
  border-color: #FCB03C!important;
}
.btn-secondary:hover,.btn-secondary:active {
    background-color: #FCB03C!important;
    border-color: #FCB03C!important;
}
.login-content .card-body {
    background-color: #fddfb1;
    color: #444444;
    font-weight: bold;
    border: 1px solid #fddfb1;
    border-radius: 20px;
}
.btn-light {
    --bs-btn-bg: #FFFFFF;
    --bs-btn-border-color: #4154f1;
    --bs-btn-hover-bg: #FFFFFF;
    --bs-btn-hover-border-color: #4154f1;
    --bs-btn-hover-color:#4154f1;
    --bs-btn-active-color:#4154f1;
    --bs-btn-active-bg: #FFFFFF;
}
.menu-rights-container {
  background-color: #2281c0;
  padding: 10px 0px 10px 0px;
  color: #FFFFFF;
  margin: 0px;
}
.frm-btn-container {
  margin:20px 0px;
}
.submit-sale span, .cancel-sale span {
  padding-left: 7px;
}
.alert {
  padding:5px 0px!important;
}
.btn-close {
  height:0.5em!important;
  padding: 5px 0px!important;
}
.login-button-link {
  margin:50px 30px;
}
.login-button-link button {
  padding: 5px 40px!important;
}
.div-clear {
  clear:both;
}
.home-wrapper {
  min-height:500px;
}
.branch-select {
  width:100%;
}
span.user-edit {
 padding-left:10px;
}
#preloader {
  background:#FFF url('../images/circle-loader.gif') no-repeat center center;
  background-size: 15%;
  height:100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}
fieldset.price-code-wrapper {
  border:1px solid #808080!important;
  padding:5px;
}
.price-code-wrapper legend {
  float:none!important;
}
.price-code-list {
  margin-right:10px;
}
.price-code-label {
  padding-left:20px;
}
.price-code-label-last {
  padding-left:40px;
}
label.form-check-label {
 display: inline !important;
}
.frm-section-wrapper {
  margin-top:20px;
}
.right-chkbox-wrapper {
  float:right;
}
.text-right {
  text-align: right;
}
.custom-input-small {
    display: block;
    height: 28px!important;
    padding: .25rem .25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.custom-select-small {
    padding-top: .25rem;
    padding-bottom:.25rem;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.form-check-inline .form-check-input-inline {
    display: inline;
}
.custom-input-height {
    height: 28px!important;
}
.popup-setting-wrapper {
  background-color: #F1F1F1;
}
.padL-10 {
  padding-left:10px;
}
.bold-center {
  font-weight: bold;
  text-align: center;
}
.bold-txt {
  font-weight: bold;
}
.br-radio-options-wrapper {
  margin-top:8px;
}
.br-radio-label {
    padding-right: 20px;
}
.br-defcode-wrapper {
  margin-left:20px;
}
.marRT20 {
  margin-right:20px;
}
.position {
  position: relative;
  left: 9.75rem;
  top: -1.5rem;
}
.margin-0 {
 margin: 0px!important;
}
.position1 {
  position: relative;
  left: 6.75rem;
  top: -1.5rem;
}
.fa-search {
  margin-left: 5px;
}
 table.dataTable td.dt-type-numeric,table.dataTable th.dt-type-numeric {
   text-align: left!important;
 }
#add_general_form .sales-form, #add_prefix_form .sales-form, #add_division_form .sales-form {
  min-height: 300px!important;
}
.copy-cost-center {
  margin-right: 25px;
  padding: 3px 20px 3px 20px!important;
}
.label-heading {
  background-color: #f2ca00;
  font-weight: bold;
  margin-left: 0px;
}
.border-wrapper {
  border: 1px solid #808080 !important;
}
}
.label-bold {
  font-weight: bold;
}
.trn-col1 {
  padding-left: 25px;
}

table.ratetable th {
  background-color: #CCC !important;
  text-transform: uppercase;
}
table.ratetable tr{
  border-bottom: 1px solid #CED4DA;
}
table.ratetable td{
  font-weight:bold;
  text-align: center;
  vertical-align: middle;
}
.cc_desc {
   color: #000;
   font-size: 11px; 
}    