.select {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* asterisk */
.asterisk {
  color: red;
  font-weight: 600;
}

/*Login Css */
.inputs {
  width: 21% !important;
  font-size: 33px;
  font-weight: bold;
  margin: 3px;
  padding: 20px;
}

/* datepicker */
.datepicker {
  margin-top: 1px;
  z-index: 9999 !important;
}

.datepicker table {
  width: 100%;
  min-width: 240px;
}

.datepicker table thead .dow {
  width: 14.2857%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.datepicker table thead tr:nth-child(2) {
  border-bottom: 1px solid #eee;
}

.datepicker table thead .prev,
.datepicker table thead .next {
  font-size: 1em;
  padding: 5px 10px 0;
}

.datepicker table tbody {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #eee;
}

.datepicker table tbody .day {
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #eee;
  font-size: 1em;
}

.datepicker table tbody .day.old,
.datepicker table tbody .day.new {
  background: #f2f2f2;
  color: #bbb;
}

.datepicker table tbody tr .day:last-child {
  border-right: none;
}

.datepicker table tbody tr:last-child .day {
  border-bottom: none;
}

.datepicker table .td.active,
.datepicker table .td.active:hover {
  background: #fcf3d0;
  color: #222222;
  text-shadow: none;
}

.datepicker table td.day:hover,
.datepicker table tr td.day:hover,
.datepicker table tr:first-child th:hover {
  border-color: #eee !important;
  background-color: #2487c9;
  color: #fff;
}

.datepicker table tr td.today,
.datepicker table tr td.today.disabled {
  background: #fcf3d0 !important;
  border-color: #eee !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td.today :hover,
.datepicker table tr td.today.disabled :hover {
  filter: none;
  text-shadow: none;
  background: #2487c9 !important;
  border-color: #eee !important;
  color: #fff !important;
}

.datepicker,
.datepicker table tr td,
.datepicker table tr th,
.datepicker table tr td span {
  -webkit-border-radius: 0.5;
  -moz-border-radius: 0.5;
  -o-border-radius: 0.5;
  -ms-border-radius: 0.5;
  border-radius: 0.5;
}

.datepicker.dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 4px;
}

.datepicker .datepicker-months tbody,
.datepicker .datepicker-years tbody {
  border: none;
}

.datepicker-inline {
  width: 250px;
  border: 1px solid #ddd;
}

.datepicker-inline table tbody .day {
  background: #ffffff;
}

/* End DatePicker */

/* loader */
/* Absolute Center CSS Spinner */
.loader { position: fixed; z-index: 100000; width: 100%; height: 100%; display:none; }
.loader_overlay { background: black; display: block; width: 100%; height: 100%; position: fixed; opacity: 0.4; }
.loader_img { 
  margin: auto; display: block; position: relative; top: 31%; 
  width: 170px !important;
  -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotatey(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotatey(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotatey(360deg); transform:rotatey(360deg); } }

/* End loader */

/* text-message for loader select2 option */
.text-message-select2 {
  background: green;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  padding: 0px 3px 0px 3px;
}

/* Password information */
.passInfo {
  margin-top: 10px;
  width: 95%;
  position: relative;
  padding: 10px;
  background: #fff;
  font-size: 2em;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px #ccc;
  box-shadow: 0 1px 3px #ccc;
  border: 1px solid #ddd;
  display: none;
  z-index: 1;
  color: #000;
}

.passInfo::before {
  content: "\25B2";
  position: absolute;
  top: -13px;
  left: 50%;
  font-size: 14px;
  line-height: 14px;
  color: #ddd;
  text-shadow: none;
  display: block;
}

.passInfo h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: normal;
  font-size: 15px !important;
}

.passInfo ul {
  padding-left: 0px;
}

.passInfo li {
  list-style: none !important;
}

.invalid {
  background: url(../../img/invalid.png) no-repeat 0 55%;
  background-size: 10px;
  padding-left: 22px;
  line-height: 24px;
  color: #ec3f41;
  font-size: 12px;
}

.valid {
  background: url(../../img/valid.png) no-repeat 0 55%;
  background-size: 10px;
  padding-left: 22px;
  line-height: 24px;
  color: #3a7d34;
  font-size: 12px;
}

/* Select2 Css */
.input-group>.select2-container--bootstrap {
  width: auto !important;
  flex: 1 1 auto !important;
}

.input-group>.select2-container--bootstrap .select2-selection--single {
  height: 100% !important;
  line-height: inherit !important;
  padding: 0.5rem 1rem !important;
}

/* inputerror */
.inputerror {
  border: 2px solid;
  border-color: rgb(220, 53, 69) !important;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  border-radius: 8px;
}

.input-validation-error~.select2 .select2-selection__rendered {
  border: 1px solid red;
}

.cursor-pointer {
  cursor: pointer;
}

.select2-container--open {
  z-index: 9999999
}

.select2-results__options>.select2-results__option[aria-disabled="true"] {
  background-color: rgb(226 232 240);
  border-color: rgb(229 231 235);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border-width: 1.5px;
  opacity: 0.5;
  cursor: not-allowed;
  font-weight: 500;
  color: #000;
}

.chzn-drop-up {
  bottom: 100%;
  top: 0px;
}

.group_hightlight_tr td {
  background-color: rgb(229 231 235);
  font-weight: 600;
}

.sub_group_hightlight_tr td {
  background-color: rgb(243 244 246);
  font-weight: 600;
}

.finalsum td {
  background-color: rgb(229 231 235);
}

.finalsumsub td {
  background-color: rgb(243 244 246);
}

.l1row {
  color: red;
  font-weight: bold;
}

.l2row {
  color: green;
  font-weight: bold;
}

.l3row {
  color: blue;
  font-weight: bold;
}

.finalsumTrialBalance td {
  background: wheat !important;
  font-weight: 600;
  text-align: right;
}

.level1head {
  color: red;
  font-weight: bold;
}

.level2head {
  color: green;
  font-weight: bold;
}

.level3head {
  color: blue;
  font-weight: bold;
}

.item-row-th th {
  padding: 3px;
}

.item-row-td td {
  padding: 3px;
  line-height: 1rem;
}

.hightlight_tr td {
  border     : none !important;
  background : rgb(79, 156, 98) !important;
  color      : white;
}

.finalsum td {
  background: wheat !important;
  border    : none;
}

.select2-selection--multiple .select2-search__field {
  border: none !important;
}

.fieldbackground{
  background-color: gainsboro !important;
}

.highlightedtallied_row td {
  --tw-bg-opacity: 1;
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #fff !important;
}
.btn-primary-group {
  background-color: blue !important;
  color: white !important;
}
.info-button {
  font-size: 0.7rem;
  font-weight: normal;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  padding: 0;
}

.popover-header {
  background-color: #f97316;
  border: 2px solid #f97316;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

#datatable_example thead th {
  position: sticky;
  top     : 0;
}

.dropdown-menu {
  max-height: 300px; /* Adjust the height as needed */
  overflow-y: auto; /* Allows scrolling */
}