:root {
  --primary-color: #fe4c02;
  --black-color: #323232;
  --red-color: #8d0000;
  --yellow-color: #e09f2c;
  --dark-black-color: #202020;
  --table-head-bg: #ffe8df;
  --primary-hover-color: #dc4506;
  --table-even-row-bg: #fff9f7;
  --table-row-hover-bg: #fff3ef;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

nav {
  background-color: #fff;
}

main  {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

#content {
  flex: 1;
}

header {
  box-shadow: 0px 0px 10px #00000029;
}

*,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/* ############# UTILITY CLASSES ########### */

.valign-top {
  vertical-align: top;
}

.flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.h-100 {
  height: 100% !important;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.ms-auto {
  margin-left: auto;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-2 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.bold {
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 993px) {
  .container {
    max-width: 1380px;
  }
}

.flex-1 {
  flex: 1;
}

.text-center {
  text-align: center !important;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.h-100 {
  height: 100% !important;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.mt-2 {
  margin-top: 5px;
}
.btn-icon {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  padding-left: 30px;
  background-color: var(--primary-color);
  line-height: normal;
  border: none;
  color: #fff;
  border-radius: 4px;
}

.btn-icon:hover {
  background-color: var(--primary-hover-color);
  color: #fff;
}

#tabledisplay .btn-icon {
  margin: 15px;
}

.btn-icon::before {
  font-family: FontAwesome;
  position: absolute;
  color: #fff;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.btn-icon input {
  width: 100%;
  padding: 8px 12px;
  padding-left: 30px;
  background: none;
  line-height: normal;
  border: none;
  color: #fff;
  position: relative;
  z-index: 1;
}

.btn-icon:has(input) {
  padding: 0;
  padding-left: 0px;
}

.btn-save,
.btn-add,
.btn-search,
.btn-edit,
.btn-print {
  background-color: var(--primary-color);
}

.btn-save:hover,
.btn-add:hover,
.btn-search:hover,
.btn-edit:hover,
.btn-print:hover {
  background-color: var(--primary-hover-color);
}

.btn-cancel,
.btn-remove {
  background-color: #dc3545;
}

.btn-cancel:hover,
.btn-remove:hover {
  background-color: #bb2d3b;
}

.btn-save::before {
  content: "\f00c";
}

.btn-cancel::before {
  content: "\f00d";
}

.btn-remove::before {
  content: "\f068";
}

.btn-add::before {
  content: "\2b";
}

.btn-search::before {
  content: "\f002";
}

.btn-edit::before {
  content: "\f304";
}

.btn-print::before {
  content: "\f02f";
}
.clear {
  clear: both !important;
}
.mandatory {
  color: red;
}

.global-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10444;
  right: 0;
  bottom: 0;
  text-align: center;
}

.global-loading img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  padding: 0 10px;
  width: 160px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}

.error-msg {
  color: red;
  font-size: var(--fs-small);;
  margin-top: 5px;
  display: none;
}

.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary,
.btn-primary.focus,
.btn-primary:focus {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}

body {
  background-color: #f5f5f5;
}
.sub-nav {
  display: flex;
  gap: 5px;
  margin-bottom: 0px;
}

.sub-nav a {
  padding: 10px;
  display: block;
  border-radius: 8px 8px 0px 0px;
  background-color: #e4e4e4;
  color: var(--black-color);
}

.sub-nav a.active,
.sub-nav a:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.boxed {
  background-color: #fff;
  box-shadow: 0px 0px 6px #00000029;
  padding: 10px;
  border-radius: 8px;
}

.sub-header {
  background-color: #000000;
  padding: 10px 0;
  font-size: var(--fs-small);;
}

.sub-header-left {
  color: #fff;
  font-weight: 400;
}

.sub-header-container a {
  color: #fff;
}

.sub-header-container a:hover {
  color: var(--primary-color);
}

.sub-header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.date {
  color: #fff;
}

.timedate {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
  width: 245px;
}

.time,
.date {
  color: #000;
}

.datetime-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.sub-header-container .left {
  position: relative;
}

.sub-header-container .left::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #b5b1b1;
  position: absolute;
  left: 103%;
}

.sub-header-container p {
  font-weight: 400;
}

.sub-header p:hover {
  color: var(--primary-color);
}

.sub-header p {
  padding: 0 10px;
  color: #fff;
  cursor: pointer;
}

.languages {
  position: relative;
  display: none;
}

.languages a:first-child,
.sub-header-container > a {
  border-right: 1px solid rgba(255, 255, 255, 0.336);
}

.languages ul li {
  color: #000;
  display: block;
  cursor: pointer;
  padding: 4px;
}

.languages ul li:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.languages:hover ul {
  display: block;
}

.languages ul {
  display: none;
  position: absolute;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.493);
  top: 150%;
  right: 50%;
  transform: translate(50%, 0);
  background-color: #fff;
  padding: 5px;
}

.languages ul::before {
  content: "";
  border: 8px solid transparent;
  border-bottom: 8px solid rgb(255, 255, 255);
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translate(-50%, 0);
}

.languages ul::after {
  content: "";
  position: absolute;
  background-color: #00000000;
  width: 100%;
  height: 20px;
  top: -30%;
  left: 50%;
  transform: translate(-50%, 0);
}

.text-modifier:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.text-modifier {
  background-color: #fff;
  border-radius: 5px;
  color: #fe4c02;
  margin: 0 2px;
  width: 28px;
  height: 28px;
  padding: 0 !important;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
  padding-left: 5px !important;
  padding-right: 5px !important;
  cursor: pointer;
  border: 1px solid #fe4c02;
  font-size: var(--fs-small);;
}

header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

nav {
  background-color: #ffffffcf;
  width: 100%;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav-items ul {
  list-style: none;
  display: flex;
  margin: 0;
  align-items: center;
  gap: 10px;
}

.nav-items ul li a {
  text-decoration: none;
  font-weight: 400;
  color: var(--black-color);
  font-size: var(--fs-body);;
  padding: 10px;
}

.nav-items ul li a.active {
  background-color: #fff;
  /* Use "background-color" for clarity */
  padding: 10px;
  border-radius: 5px;
  font-size: var(--fs-body);;
  color: var(--primary-color);
  text-decoration: none;
  /* Ensures no underline on hover */
}

.nav-items ul li a:hover {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: var(--fs-body);;
  color: var(--primary-color);
  transition: 0.5 all ease-in-out;
}

.active {
  color: var(--primary-color);
  z-index: 2;
}

.boxed {
  background-color: #fff;
  padding: 15px;
  margin: 15px 0;
}

footer {
  background-color: #8c0201;
  color: #fff;
  width: 100%;
  line-height: 40px;
}

/* footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
} */

footer a {
  color: #fff;
  text-decoration: none;
}

.menu {
  display: none;
}

@media screen and (max-width: 1178px) {
  .menu {
    display: block;
    cursor: pointer;
    margin: 0 10px;
    font-size: 1.8rem;
  }
}

.popup-img img {
  background: #f5f5f5;
  padding: 17px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.popup-img {
  padding: 10px;
  text-align: center;
}

.popup-body p {
  text-align: center;
  color: #323232;
  font-size: 1.3rem;
  line-height: 20px;
  margin: 10px 0;
}

.jquery_popup {
  min-width: auto;
  max-width: 350px;
}

.input_container input {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  border: 1px solid #ccc;
  text-align: center;
}

.input_container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.otp_features div:first-child p {
  text-align: left;
  margin: 3px 0;
}

.otp_features div:last-child p {
  text-align: right;
  margin: 3px 0;
}

.otp_features div:last-child {
  text-align: right;
}

.otp_features {
  display: flex;
  justify-content: flex-end;
  margin: 15px auto;
}

.otp_features input[type="button"] {
  color: var(--primary-color);
  border: none;
  background: none;
}

.w-100 {
  width: 100%;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.popup-body {
  padding-bottom: 20px;
}

#timer1,
#timer {
  color: #0315ff;
  font-weight: 400;
}

.global-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /*opacity: 0.8;*/
  z-index: 10444;
  right: 0;
  bottom: 0;
  text-align: center;
}

.global-loading img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  padding: 0 10px;
  width: 160px;
}

.font-size-btns {
  display: flex;
  align-items: center;
  justify-content: space-pbetween;
  gap: 5px;
}

#scrollToTop {
  position: fixed;
  bottom: 45px;
  left: 20px;
  height: 40px;
  display: none;
}

@media screen and (max-width: 1178px) {
  .menu {
    display: block;
    cursor: pointer;
    margin: 0 10px;
    font-size: 1.8rem;
  }

  .nav-items ul {
    padding: 20px;
    position: absolute;
    right: -100%;
    top: 100%;
    flex-direction: column;
    align-items: start;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.205);
    transition: 0.5s all;
  }

  .nav-items ul li {
    padding: 15px 0;
  }
}

.breadcums-header {
  position: relative;
  padding-top: 145px;
  padding-bottom: 30px;
  background-color: #00000029;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-weight: bold;
  overflow: hidden;
}

.breadcums-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/BG-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: -1;
}

.breadcums-header a {
  color: inherit;
}

.breadcums-header a:hover {
  text-decoration: underline !important;
}

.breadcums-header ul {
  list-style-type: none;
  display: flex;
  align-items: center;
}

.breadcums-header ul li::after {
  content: "\f101";
  font-family: "FontAwesome";
  margin: 0 8px;
}

.breadcums-header ul li:last-child::after {
  content: "";
}

.page-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  padding-top: 0;
}

.sub-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-heading {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-heading::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 8px;
}

hr {
  border-top: 1px solid #ebebeb;
}

@media screen and (max-width:993px) {
  .sub-header-container {
    display: none;
  }
  footer .flex {
    justify-content: center;
  }
}
