@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Fredoka";
  font-weight: 400;
  src: url("../fonts/Fredoka-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Fredoka";
  font-weight: 500;
  src: url("../fonts/Fredoka-Medium.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  position: relative;
}

body {
  overflow: hidden;
}

a {
  color: unset;
}

a:hover {
  color: unset;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
}

.body {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 70px);
}

.left-bar {
  height: calc(100vh - 70px);
  position: relative;
  z-index: 99;
  transition: 0.3s;
}

.left-bar,
.logo-container {
  width: 280px;
}

.menu-close .left-bar,
.menu-close .logo-container {
  width: 78px;
}

.side-menu {
  height: -webkit-fill-available;
}

.side-menu,
.logo-container {
  background: #E9F6FC;
  border-right: 1px solid #CCCCCC;
  -webkit-clip-path: inset(0 -100vh 0 0);
          clip-path: inset(0 -100vh 0 0);
}

.right-bar {
  width: calc(100% - 280px);
  transition: 0.3s;
}

.menu-close .right-bar {
  width: calc(100% - 78px);
}

.header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-clip-path: inset(0 0 -100vh 0);
          clip-path: inset(0 0 -100vh 0);
  background: #FBFBFB;
  position: relative;
  z-index: 999;
}

.body-wrapper {
  background-color: #ffffff;
  height: calc(100vh - 70px);
  overflow-y: auto;
  padding: 8px 18px 0 20px;
}

.view-area {
  margin-bottom: 20px;
  min-height: 83vh;
  position: relative;
}

.footer {
  height: 60px;
  padding: 20px 30px;
  text-align: center;
  background-color: #F6F6F6;
  transition: 0.3s;
}

.menu-close .footer {
  left: 78px;
}

.lbl-footer {
  color: #5F5E5E;
  font-weight: 500;
}

.nav-logo {
  margin-left: -8px;
  width: 150px;
}

.menu-close .nav-logo {
  display: none;
}

.header-logo {
  display: none;
  flex-shrink: 0;
  margin-left: 15px;
  width: 150px;
  transform: translateY(-6px);
}

.menu-close .header-logo {
  display: block;
}

.nav-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  height: 28px;
  width: 28px;
  z-index: 999;
  margin-right: 30px;
  flex-shrink: 0;
}

.toggler-icon-top,
.toggler-icon-middle,
.toggler-icon-bottom {
  position: absolute;
  background: #1271A6;
  height: 3px;
  width: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.toggler-icon-top {
  transform: rotate(45deg);
  animation: icon-top-close 0.3s;
}

.toggler-icon-middle {
  opacity: 0;
  top: 15px;
}

.toggler-icon-bottom {
  transform: rotate(-45deg);
  animation: icon-bottom-close 0.3s;
}

.menu-close .toggler-icon-top,
.hover-menu-open .toggler-icon-top {
  transform: none;
  top: 7px;
  animation: icon-top-open 0.3s;
}

.menu-close .toggler-icon-middle,
.hover-menu-open .toggler-icon-middle {
  top: 15px;
  opacity: 1;
}

.menu-close .toggler-icon-bottom,
.hover-menu-open .toggler-icon-bottom {
  transform: none;
  top: 23px;
  animation: icon-bottom-open 0.3s;
}

@keyframes icon-top-open {
  from {
    top: 13px;
    transform: rotate(45deg);
  }
  to {
    top: 7px;
    transform: rotate(0deg);
  }
}
@keyframes icon-top-close {
  from {
    top: 7px;
    transform: rotate(0deg);
  }
  to {
    top: 13px;
    transform: rotate(45deg);
  }
}
@keyframes icon-bottom-open {
  from {
    top: 13px;
    transform: rotate(-45deg);
  }
  to {
    top: 23px;
    transform: rotate(0deg);
  }
}
@keyframes icon-bottom-close {
  from {
    top: 23px;
    transform: rotate(0deg);
  }
  to {
    top: 13px;
    transform: rotate(-45deg);
  }
}
.greetings-container {
  display: flex;
  justify-content: space-between;
  width: 74%;
  align-items: center;
  padding: 4px 30px 4px 0;
  margin: 0 0 0 21px;
}

.lbl-greetings,
.greetings-role {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: #525252;
}

.lbl-date-time {
  color: #156AAA;
  font-weight: 500;
}

.lbl-date-time {
  font-size: 16px;
  letter-spacing: 1.28px;
}

.toolbar-container {
  display: flex;
  align-items: center;
}

.toolbar-item {
  margin-right: 28px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  content: unset;
}

.flatpickr-months {
  background: #8dcff4;
  border-radius: 6px 6px 0 0;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar-item .dropdown-menu,
.flatpickr-calendar {
  border-radius: 6px !important;
  border: 0px solid rgba(216, 216, 216, 0) !important;
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922) !important;
  -webkit-backdrop-filter: blur(21px) !important;
          backdrop-filter: blur(21px) !important;
  background-color: unset !important;
}

.toolbar-item .dropdown-item:active,
.toolbar-item .dropdown-item:hover {
  background-color: #eaf7ff;
}

.side-menu-header {
  height: 77px;
  padding: 20px 30px;
}

.side-menu ul {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.side-menu-body {
  height: -webkit-fill-available;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  font-family: "Fredoka";
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e5e5e5;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #cacaca;
}

::-webkit-scrollbar-thumb:hover ::-webkit-scrollbar {
  width: 10px;
}

.side-menu-body::-webkit-scrollbar {
  display: none;
}

.nav-header {
  padding: 10px 20px 0;
  cursor: default;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #1277AF;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.menu-close .nav-header {
  opacity: 0;
  pointer-events: none;
}

.nav-item {
  margin: 24px 16px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}

.nav-link {
  display: flex !important;
  align-items: center;
  color: #6A6A6A !important;
  font-size: 18px;
  font-weight: 500 !important;
  border-radius: 9px;
  padding: 0 11px !important;
  height: 38px;
  transition: 0.3s !important;
}

.sub-menu-link {
  color: #6A6A6A !important;
  font-weight: 400 !important;
}

.nav-link::after,
.sub-menu-link::after {
  content: "";
  height: 38px;
  width: 6px;
  border-radius: 4px 0 0 4px;
  background-color: #0283CB;
  position: absolute;
  right: 0;
  opacity: 0;
  pointer-events: none;
}

.link-active .nav-link::after,
.link-active .sub-menu-link::after {
  opacity: 1;
}

.nav-item:hover .nav-link {
  color: #006FAD !important;
}

.sub-menu-active .nav-link,
.link-active .nav-link {
  color: #006FAD !important;
}

.link-active .sub-menu-link {
  color: #006FAD !important;
}

.sub-menu-container {
  display: none;
  height: 0;
  pointer-events: none;
  transition: 0.3s;
}

.sub-menu-active .sub-menu-container {
  display: block;
  height: auto;
  pointer-events: auto;
}

.menu-close .sub-menu-container {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.sub-menu-item {
  font-weight: 400;
  margin: 8px 0;
}

.sub-menu-item a {
  text-decoration: none;
}

.sub-menu-link {
  margin: 0 0 0 17px;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.sub-menu-link:hover {
  color: #8a8a8a;
}

.logo-container {
  height: inherit;
  padding-left: 25px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.breadcrumb-container {
  margin: 15px 0 0 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  display: flex;
  align-items: center;
  color: #8D8D8D;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: capitalize;
}

.breadcrumb-item:hover a {
  color: #6A6A6A;
}

.breadcrumb-item.active {
  color: #6A6A6A;
  font-size: 18px;
  letter-spacing: 1.143px;
  cursor: default;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "❯");
}

.body-area {
  border-radius: 6px;
  min-height: 85vh;
  background-color: #ffffff;
}

.body-area-header {
  padding: 15px 23px;
}

.body-area-tittle {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #005381;
}

.dashboard-container {
  padding: 70px 30px;
  text-align: center;
  font-family: "Inter";
}

.img-dashboard {
  width: 470px;
  margin-bottom: 80px;
}

.badge {
  border-radius: 8px;
  padding: 24px;
  font-family: "Inter";
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.badge-primary {
  font-weight: 600;
  font-size: 48px;
  color: #0E79B5;
  background: #DCDCDC;
  margin-bottom: 56px;
}

.badge-secondary {
  font-weight: 600;
  font-size: 38px;
  line-height: 46px;
  color: #FFFFFF;
  background: #A6A6A6;
  margin-bottom: 70px;
}

.badge-highlight {
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #EAEAEA;
  background: #007D94;
}

.nav-tabs {
  margin-top: 14px;
  margin-bottom: 14px;
  border-bottom: none;
}

.nav-tabs .nav-item {
  margin: 4px;
}

.nav-tabs .nav-item a {
  margin: 0px;
  height: 30px;
  font-size: 14px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  color: #006BA7 !important;
  background-color: #fff;
  border-radius: 20px;
  background: #E9E9E9;
  color: #006BA7;
}

.nav-tabs .nav-link.active {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.user-table-container {
  padding: 0 24px;
  height: 70vh;
  overflow-y: auto;
}

.user-table-container-sm {
  height: 50vh;
}

.user-table-view,
.user-table-view-2 {
  width: 100%;
  font-size: 14px;
  border-radius: 10px;
}

.user-table-view th,
.user-table-view td {
  padding: 15px 22px;
  font-family: "Inter";
}

.user-table-view-2 td {
  width: 50%;
  padding: 15px 22px;
  font-size: 16px;
}

.user-table-view-2 tr:nth-child(odd) td:first-child {
  background: #ceeaff;
}

.user-table-view-2 tr:nth-child(odd) td:last-child {
  background: #f4f4f4;
}

.user-table-view-2 tr:nth-child(even) td:first-child {
  background: #e4f4ff;
}

.user-table-view-2 tr:nth-child(even) td:last-child {
  background: #fbfbfb;
}

.user-table-view th:first-child {
  border-radius: 10px 0 0 0;
}

.user-table-view th:last-child {
  border-radius: 0 10px 0 0;
}

.user-table-view tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.user-table-view tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.user-table-view tr:last-child {
  border-bottom: none !important;
}

.user-table-view-2 tr:first-child td:first-child {
  border-radius: 10px 0 0 0;
}

.user-table-view-2 tr:first-child td:last-child {
  border-radius: 0 10px 0 0;
}

.user-table-view-2 tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.user-table-view-2 tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.table-report-details {
  width: 100%;
}

.table-report-details tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0901960784);
}

.table-report-details th,
.table-report-details td {
  text-align: center;
}

.table-report-details th {
  font-weight: 400;
  padding: 10px 0;
}

.table-report-details td {
  padding: 20px 0;
}

.status-wrapper {
  display: flex;
  align-items: flex-start;
  height: 9vh;
  min-height: 80px;
  margin-top: 5vh !important;
  margin-bottom: 5vh !important;
  width: 100%;
}

.flex-grow {
  flex-grow: 1;
}

.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lbl-nowrap {
  white-space: nowrap;
}

.lbl-ellipsis {
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.lbl-medium {
  font-weight: 500 !important;
}

.no-shrink {
  flex-shrink: 0;
}

.lbl-short-value {
  width: 100px;
}

@media print {
  body {
    visibility: hidden;
  }
  .section-to-print {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
  }
  @page {
    size: 200mm 170mm;
  }
  .d-print-none {
    display: none !important;
  }
}
.d-screen-block {
  display: block;
}

.asset-code-container {
  display: flex;
  flex-wrap: wrap;
}

.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
  margin-bottom: 0 !important;
}

.knob {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 40px;
  margin-right: 0 !important;
  height: 18px;
  width: 34px;
}

input:checked + .knob {
  background-color: #00CC9B;
}

.switch input:checked + .knob {
  animation: colorChange 0.2s linear forwards;
}

.switch input[type=checkbox] {
  display: none;
}

.knob:before {
  position: absolute;
  background-color: #fff;
  content: "";
  left: 4px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.switch input + .knob:before {
  animation: turnOFF 0.2s linear forwards;
}

input:checked + .knob:before {
  left: -10px;
}

.switch input:checked + .knob:before {
  animation: turnON 0.2s linear forwards;
}

@keyframes colorChange {
  from {
    background-color: #ccc;
  }
  50% {
    background-color: #6cc4af;
  }
  to {
    background-color: #00CC9B;
  }
}
@keyframes turnON {
  from {
    transform: translateX(17px);
  }
  to {
    transform: translateX(30.4px);
  }
}
@keyframes turnOFF {
  from {
    transform: translateX(10px);
  }
  to {
    transform: translateX(0px);
  }
}
.table-user-details .input-group-text,
.form-control,
.filter-select {
  font-size: 14px;
  font-weight: 500;
}

.form-filter {
  max-width: 665px;
  width: 100%;
  margin-left: auto;
}

.btn-logout {
  width: 44px;
  height: 44px;
  background: #FFE8E8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-user {
  width: 44px;
  height: 44px;
  background: #E8F0FF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* icon starts */
.icon-common,
.select-selected:after {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  display: inline-block;
  /* background-color: #000; */
  vertical-align: middle;
  text-align: center;
  flex-shrink: 0;
}

.icon-topbar,
.icon-action-dropdown,
.icon-tooltip {
  height: 20px;
  width: 20px;
  background-color: #8D8D8D;
}

.btn-logout .icon-topbar {
  height: 28px;
  width: 28px;
  background-color: #CB0000;
}

.btn-user .icon-topbar {
  height: 28px;
  width: 28px;
  background-color: #008EDD;
}

.toolbar-link:hover .icon-topbar,
.show .icon-topbar {
  background-color: #03517c;
}

.modal-max {
  max-width: 90%;
}

.icon-nav {
  height: 24px;
  width: 24px;
}

.icon-sidemenu,
.icon-toolbar {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.icon-submenu {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  background-color: #6A6A6A;
  cursor: pointer;
}

.icon-sidemenu {
  background-color: #6A6A6A !important;
}

.icon-toolbar {
  background-color: #8D8D8D;
}

.icon-sidemenu.icon-chevron,
.icon-toolbar.icon-chevron,
.select-selected:after {
  margin-left: auto;
  margin-right: 0;
}

.icon-breadcrumb {
  height: 18px;
  width: 18px;
  background-color: #8D8D8D;
  margin-right: 7px;
}

.breadcrumb-item.active .icon-breadcrumb {
  background-color: #6A6A6A;
}

.breadcrumb-item:hover .icon-breadcrumb {
  background-color: #6A6A6A;
}

.sub-menu-active .icon-sidemenu,
.link-active .icon-sidemenu,
.nav-link:hover .icon-sidemenu,
.link-active .icon-submenu {
  background-color: #006FAD !important;
}

.icon-action {
  height: 20px;
  width: 20px;
  background-color: #ffffff;
}

.icon-home {
  mask-image: url(../icons/home.svg);
  -webkit-mask-image: url(../icons/home.svg);
}

.icon-management {
  mask-image: url(../icons/management.svg);
  -webkit-mask-image: url(../icons/management.svg);
}

.icon-plc-management {
  mask-image: url(../icons/plc-management.svg);
  -webkit-mask-image: url(../icons/plc-management.svg);
}

.icon-plc-master {
  mask-image: url(../icons/plc-master.svg);
  -webkit-mask-image: url(../icons/plc-master.svg);
}

.icon-privacy-policy {
  mask-image: url(../icons/privacy-policy.svg);
  -webkit-mask-image: url(../icons/privacy-policy.svg);
}

.icon-historical {
  mask-image: url(../icons/historical.svg);
  -webkit-mask-image: url(../icons/historical.svg);
}

.icon-real-time {
  mask-image: url(../icons/real-time.svg);
  -webkit-mask-image: url(../icons/real-time.svg);
}

.icon-user-management {
  mask-image: url(../icons/user-management.svg);
  -webkit-mask-image: url(../icons/user-management.svg);
}

.icon-chevron {
  mask-image: url(../icons/chevron-down.svg);
  -webkit-mask-image: url(../icons/chevron-down.svg);
}

.icon-user {
  mask-image: url(../icons/icon-user.svg);
  -webkit-mask-image: url(../icons/icon-user.svg);
}

.icon-logout {
  mask-image: url(../icons/logout.svg);
  -webkit-mask-image: url(../icons/logout.svg);
}

.icon-edit {
  mask-image: url(../icons/edit.svg);
  -webkit-mask-image: url(../icons/edit.svg);
}

.icon-add {
  mask-image: url(../icons/add.svg);
  -webkit-mask-image: url(../icons/add.svg);
}

.icon-time-bit {
  mask-image: url(../icons/time-bit.svg);
  -webkit-mask-image: url(../icons/time-bit.svg);
}

.icon-clear-bit {
  mask-image: url(../icons/clear-bit.svg);
  -webkit-mask-image: url(../icons/clear-bit.svg);
}

.icon-search {
  mask-image: url(../icons/search.svg);
  -webkit-mask-image: url(../icons/search.svg);
}

.icon-btn-search {
  height: 18px;
  width: 18px;
  background-color: #0283CB;
}

.icon-btn-search:hover {
  height: 18px;
  width: 18px;
  background-color: #0283CB;
}

.icon-btn {
  height: 18px;
  width: 18px;
}

.icon-btn-header,
.icon-btn-lg {
  height: 22px;
  width: 22px;
}

.disabled .icon-btn-lg {
  background-color: #868686 !important;
}

.disabled .btn-action-upload-min .icon-btn-lg {
  background-color: #F0F0F0 !important;
}

.btn-action .icon-btn {
  background-color: #f5f5f5;
  height: 14px;
  width: 14px;
}

.btn-action-edit:hover .icon-btn {
  background-color: #0283CB;
}

.btn-action-add:hover .icon-btn {
  background-color: #00A07A;
}

.icon-modal-header-action {
  height: 30px;
  width: 30px;
  background-color: #000;
}

.icon-x {
  mask-image: url(../icons/x.svg);
  -webkit-mask-image: url(../icons/x.svg);
  background-color: #ACACAC;
}

.btn-close:hover .icon-x {
  background-color: #CA0404;
}

.icon-action.icon-x {
  background-color: #EDEDED;
}

.reset-pass-container .icon-form {
  right: 15px;
  top: 40px;
  background-color: #817F7F;
}

.reset-pass-container .icon-form-before {
  height: 18px;
  width: 18px;
  cursor: pointer;
  position: absolute;
  background-color: #817F7F;
  left: 15px;
  top: 40px;
}

.icon-form {
  height: 18px;
  width: 18px;
  cursor: pointer;
  background-color: #6A6A6A;
  position: absolute;
  right: 15px;
  top: 44px;
}

.icon-lock {
  mask-image: url(../icons/lock.svg);
  -webkit-mask-image: url(../icons/lock.svg);
}

.reset-pass-container .icon-form {
  right: 15px;
  top: 40px;
  background-color: #817F7F;
}

.reset-pass-container .icon-form-before {
  height: 18px;
  width: 18px;
  cursor: pointer;
  position: absolute;
  background-color: #817F7F;
  left: 15px;
  top: 40px;
}

.page-action-container .icon-form {
  background-color: #8A8888;
  left: 15px;
  top: 10px;
  cursor: default;
}

.reg-form .icon-form {
  top: 38px;
  right: 25px;
}

.icon-dropdown {
  margin-right: 8px;
  height: 16px;
  width: 16px;
}

.icon-header-dropdown-items {
  background-color: #03517c;
  height: 20px;
  width: 20px;
  margin-right: 7px;
}

.menu-close .icon-sidemenu.icon-chevron {
  display: none;
}

.sub-menu-active .icon-chevron {
  transform: rotateX(180deg);
}

.icon-event-action.icon-chevron {
  transform: rotate(-90deg);
  height: 24px;
  width: 24px;
  background-color: #014573;
}

.dv-separator {
  height: 1px;
  background-color: #CCCCCC;
}

.btn-round {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-page-action,
.btn-page-action:hover,
.btn-page-action:active,
.btn-page-action:first-child:active,
.btn-page-action:focus-visible,
.btn-page-action.show,
.select-selected {
  display: flex;
  align-items: center;
  background-color: #DFEDF6;
  color: #00457e !important;
  font-weight: 500;
  letter-spacing: 1.92px;
  outline: none;
  box-shadow: none;
  border: none;
  border-radius: 10px;
  height: 40px;
}

.btn-page-action-dropdown {
  min-width: 157px;
}

.show.btn-page-action-dropdown {
  border-radius: 10px 10px 0 0;
}

.btn-apply {
  border-radius: 6px;
  background: #3884BE;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.lbl-btn-info {
  color: #545454;
  font-size: 18px;
  letter-spacing: 0.36px;
  margin-bottom: 14px;
}

.lbl-btn {
  color: #FFF;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.02px;
}

.btn-print,
.btn-search {
  gap: 8px;
  background: #FDFDFD;
  color: #0283CB;
  border: transparent;
}

.btn-print {
  border: 1px solid #0283CB;
  background: #288AE4;
}

.lbl-btn-print {
  color: #F6F6F6;
}

.btn-print:hover .lbl-btn-print {
  color: #0283CB;
}

.btn-search,
.btn-search:active {
  border: 1px solid #0283CB !important;
  background: #288AE4;
}

.btn-print:hover {
  border: 1px solid #0283CB;
  color: #0283CB;
}

.lbl-btn-search {
  color: #0283CB;
}

.btn-search {
  border: 1px solid #0283CB;
  background: #FDFDFD;
}

.btn-search:hover {
  border: 1px solid #0283CB;
}

.btn-transparent .lbl-btn,
.btn-link .lbl-btn {
  color: #0265A8 !important;
}

.btn-link:hover .lbl-btn {
  color: #606263 !important;
}

.topbar .infobar .infobar-icon {
  background-color: transparent;
}

.topbar .infobar .infobar-icon:hover {
  background-color: transparent;
  color: #015B98;
}

.img-profile,
.icon-profile-container,
.icon-notification-container {
  border-radius: 50%;
  height: 34px;
  width: 34px;
  margin-right: 8px;
}

.icon-profile-container,
.icon-notification-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  background: #e6e6e6;
}

.icon-notification-container {
  margin-right: 0;
}

.lbl-primary-text {
  color: #565757;
  line-height: 1.2;
}

.lbl-sub-text {
  font-size: 12px;
  color: #969696;
  line-height: 1;
}

.lbl-header-menu {
  color: #5F5D5D;
}

.lbl-badge-common {
  padding: 4px 13px;
  font-size: 14px;
  line-height: 1;
  /* border-radius: 5px; */
}

.lbl-bold {
  font-weight: 700;
}

.lbl-paid {
  background-color: #A3FCBC;
  color: #067926;
}

.lbl-due {
  background-color: #FFE455;
  color: #816C00;
}

.lbl-warning {
  color: #D29802;
}

.lbl-success {
  color: #008C0E;
}

.lbl-event-muted,
.lbl-muted {
  color: #9F9F9F;
}

.lbl-small {
  font-size: 13px;
}

.lbl-qrcode-name {
  font-size: 10px;
  color: #5e5e5e;
  letter-spacing: 0.3px;
}

.notifybar .dropdown-menu .notification-dropdown-title {
  padding: 15px 14px;
}

.notification-details-container {
  top: 23px !important;
  left: -60px !important;
}

.profile-details-container {
  top: 14px !important;
  left: -13px !important;
}

.notification-view-icon-container,
.lbl-notification-details {
  margin: 18px 0;
  text-align: center;
}

.lbl-user-reg-primary {
  color: #0060A9;
  font-weight: 700;
  font-size: 32px;
}

.lbl-user-reg-secondary {
  font-size: 28px;
}

.lbl-user-reg-header,
.lbl-user-reg-sub-header {
  color: #004381;
  font-size: 30px;
  letter-spacing: 1.8px;
}

.lbl-user-reg-header {
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 30px;
  line-height: 1;
}

.link-name,
.submenu-link-label {
  margin-left: 18px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.link-name {
  font-weight: normal;
}

.menu-close .link-name {
  display: none;
}

.btn-primary {
  background-color: #0265A8;
  border-color: #0265A8;
}

.btn-transparent {
  background-color: transparent;
  border: 2px solid #0265A8 !important;
}

.btn-link {
  background-color: transparent;
  border: none !important;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: #2592DC;
  border-color: #2592DC;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  background-color: transparent;
  border: none !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(37, 147, 220, 0.3882352941);
}

.btn-icon,
.status-icon-wrapper {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-form-action {
  min-width: 130px;
  height: 40px;
  font-weight: 500;
}

.btn-form-action:hover {
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.1294117647);
}

.btn-icon.btn {
  padding: 14px;
}

.btn-add {
  background: #00CC9B;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}

.btn-reset {
  background-color: #FAE0C2;
  color: #925713;
}

.btn-submit,
.btn-cancel {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 10px;
  height: 48px;
}

.btn-submit {
  background-color: rgba(50, 151, 72, 0.231372549);
  border: 2px solid #329748;
  color: #082c10;
  max-width: 276px;
  width: 45%;
}

.btn-submit:hover {
  background-color: #329748;
  border: 2px solid #329748;
  color: #fff;
}

.btn-cancel {
  background-color: rgba(126, 3, 3, 0.231372549);
  border: 2px solid #7E0303;
  color: #7E0303;
  max-width: 182px;
  width: 40%;
}

.btn-cancel:hover {
  background-color: #9b1515;
  border: 2px solid #7E0303;
  color: #fefefe;
}

table {
  width: 100%;
}

.master-add-form,
.master-edit-form,
.user-details-wrapper {
  height: 73vh;
}

.user-details-wrapper {
  background: #fefefe;
}

.user-details {
  height: calc(73vh - 70px);
  overflow-y: auto;
  overflow-x: auto;
  background: #fefefe;
  position: relative;
}

.user-details-footer {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-head-primary {
  background-color: #D6ECF5;
  color: #145772;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 9;
}

.table-head-primary th {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #145772;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  background-color: #D6ECF5 !important;
  border-bottom: none !important;
  text-align: left;
  vertical-align: top;
}

.user-details table th,
.user-details table td {
  padding: 18px;
}

.table-lg th {
  font-size: 16px !important;
  white-space: nowrap;
}

.table-lg th,
.table-lg td {
  padding: 16px 5px !important;
}

.table-lg th:first-child,
.table-lg td:first-child {
  padding-left: 10px !important;
}

.table-lg th:last-child,
.table-lg td:last-child {
  padding-right: 10px !important;
}

.table-lg th div:not(:last-child) {
  margin-bottom: 10px;
}

.user-details table td {
  font-size: 14px;
  letter-spacing: 0.14px;
  text-align: center;
}

.user-details table tr:nth-child(even),
.user-table-container table tr:nth-child(even) {
  background: #efefef;
}

.user-details table tr:nth-child(odd):not(.table-head-primary),
.user-table-container table tr:nth-child(odd):not(.table-head-primary) {
  background: #f5f5f5;
}

.action-container {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-container:not(.table-lg .action-container) {
  display: flex;
  margin-left: 30%;
}

.action-container .btn-action:not(:last-child) {
  margin-right: 8px;
}

.btn-action-header,
.btn-action {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  padding: 8px 10px;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.btn-action-modal {
  gap: 8px;
  border-radius: 6px;
  color: #F6F6F6;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
}

.disabled .btn-action {
  pointer-events: none;
  background-color: #E7E7E7 !important;
  color: #868686;
  border-color: #E7E7E7 !important;
}

.btn-action-edit {
  background: #1277AF;
}

.btn-action-edit:hover {
  border: 1px solid #1277AF;
  background: transparent;
}

.table-striped tbody tr:nth-of-type(odd),
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #F8FAFB !important;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #F0F0F0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.overflow-x-auto {
  overflow-x: auto;
}

.user-role-container,
.input-status-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.input-header {
  margin-right: 10px;
}

.input-header label {
  font-weight: 500;
}

.input-value-container {
  margin-left: 10px;
}

.input-caption {
  margin-right: 10px;
  font-size: 14px;
  margin-bottom: 0;
}

.input-value {
  margin-right: 6px;
}

.input-container {
  margin-right: 35px;
}

.custom-file-label {
  border: 1px solid #c2c2c2;
  line-height: 1.5;
}

.reset-pass-form .form-label {
  color: #303030;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
}

.breadcrumbbar .breadcrumb {
  align-items: center;
}

.reset-pass-container .form-control {
  padding: 0.375rem 0.75rem 0.375rem 2.75rem;
  border-radius: 5px;
  border: 1px solid #949494;
  background-color: #fff !important;
  font-size: 14px;
}

.card {
  background-color: #F8FAFB;
}

.card-header:first-child {
  padding: 25px 25px 15px;
}

.card-body {
  padding: 25px;
}

.form-group {
  margin-bottom: 1rem;
}

.reg-form .form-label {
  color: #000;
  font-size: 18px;
  letter-spacing: 0.18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline;
}

.reset-pass-form .form-label {
  color: #303030;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
}

input:-internal-autofill-selected {
  background: #FBFBFB !important;
}

.reset-pass-container .form-control {
  padding: 0.375rem 0.75rem 0.375rem 2.75rem;
  border-radius: 5px;
  border: 1px solid #949494;
  background-color: #fff !important;
  font-size: 14px;
}

.word-break {
  word-break: break-all;
  line-break: anywhere;
}

.modal-content {
  border-radius: 4px;
  border: none;
  background-color: #F8F8F8;
}

.modal-header {
  border-bottom: unset;
}

.modal-header,
.modal-body {
  padding: 20px 30px;
}

.modal-footer {
  padding: 20px 0;
}

.modal-footer {
  border-top: unset;
}

.modal-title {
  color: #013F73;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}

.modal label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.84px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.modal .form-control {
  border-radius: 5px;
  border: 1px solid #828282;
  background: #F8F8F8;
}

.modal .btn-close {
  background: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal .btn-close:focus,
.modal .btn-close:hover {
  box-shadow: none;
}

.btn-modal-action,
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm,
button.swal2-cancel.swal2-styled {
  min-width: 106px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 4px !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.btn-success,
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm,
button.swal2-confirm.btn.btn-primary {
  background-color: #007D49 !important;
  border: 1px solid #007D49 !important;
  box-shadow: none !important;
}

.btn-success:hover,
.btn-success:focus {
  background-color: transparent;
  border: 1px solid #007D49;
  color: #EEE;
}

.btn-primary {
  background-color: #0775B2 !important;
  border: 1px solid #0775B2 !important;
  box-shadow: none !important;
}

.btn-success:hover,
.btn-success:focus {
  background-color: transparent;
  border: 1px solid #0775B2;
  color: #EEE;
}

.btn-secondary,
button.swal2-cancel.swal2-styled {
  background-color: #FAFAFA !important;
  border: 1px solid #FAFAFA !important;
  color: #4E4D4D !important;
  font-weight: 400;
}

.btn-secondary:hover,
.btn-secondary:focus,
button.swal2-cancel.swal2-styled:hover {
  background-color: rgba(168, 168, 168, 0.3960784314) !important;
  border-color: rgba(168, 168, 168, 0.3960784314) !important;
  color: #EEE;
}

.dataTables_wrapper:not(.modal .dataTables_wrapper) {
  overflow-x: auto;
  min-height: 76vh;
}

div.dt-buttons > .dt-button:focus:not(.disabled),
div.dt-buttons > div.dt-button-split .dt-button:focus:not(.disabled) {
  outline: none !important;
}

div.dt-button-background {
  display: none !important;
}

.buttons-collection,
.dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
  border-radius: 4px !important;
  border: 1px solid #DFDFDF !important;
  background: #FDFEFF !important;
}

.dataTables_wrapper .dataTables_filter input {
  height: 28px;
}

.dataTables_wrapper .dataTables_filter input:focus-visible {
  outline-offset: 0 !important;
  outline: none !important;
}

.dataTables_filter label {
  color: #636363;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.84px;
}

.dt-button-down-arrow {
  visibility: hidden;
  display: none;
}

.dt-button-collection {
  width: 100px !important;
  border: 1px solid #DFDFDF !important;
  border-radius: 4px !important;
  box-shadow: unset !important;
}

div.dt-buttons > .dt-button,
div.dt-buttons > div.dt-button-split .dt-button {
  padding: 0.13em 1em !important;
}

.dataTables_length {
  margin-right: 10px;
}

.dataTables_length label:last-child {
  color: #03467E !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  text-transform: capitalize;
}

.dataTables_length label:last-child,
.dataTables_info {
  color: #636363 !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.84px;
  text-transform: lowercase;
}

.lbl-dropdown {
  color: #8D8D8D;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: capitalize;
}

.dataTables_paginate span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dataTables_paginate span .paginate_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  padding: 6px !important;
  width: 27px !important;
  height: 27px !important;
  color: #808080 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: normal !important;
  letter-spacing: 1.226px !important;
  text-transform: capitalize;
  background: transparent;
  border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #808080 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.paginate_button.previous):not(.next):not(.current) {
  background: #d0e6ff !important;
  color: #494949 !important;
}

.dataTables_paginate span .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #5B96DB !important;
  color: #F1EFEF !important;
  font-size: 18px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
  background: transparent !important;
  color: #000 !important;
  border: 1px solid transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled:hover {
  background: transparent !important;
  color: #808080 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  box-shadow: none !important;
}

@media (min-width: 1400px) {
  .greetings-container {
    width: 82%;
  }
}
@media (max-width: 1399px) {
  .badge-primary {
    font-size: 38px;
    margin-bottom: 45px;
  }
  .badge-secondary {
    font-size: 28px;
    margin-bottom: 60px;
    line-height: normal;
  }
  .badge-highlight {
    font-size: 24px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .badge {
    padding: 20px;
    letter-spacing: 0.02em;
  }
  .badge-primary {
    font-size: 32px;
    margin-bottom: 38px;
  }
  .badge-secondary {
    font-size: 24px;
    margin-bottom: 50px;
    line-height: normal;
  }
  .badge-highlight {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .img-dashboard {
    width: 350px;
    margin-bottom: 60px;
  }
  .dashboard-container {
    padding: 70px 0;
  }
  .badge {
    padding: 18px;
    letter-spacing: 0.02em;
  }
  .badge-primary {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .badge-secondary {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .badge-highlight {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .left-bar,
  .logo-container {
    position: absolute;
  }
  .right-bar {
    width: calc(100% - 78px);
    margin-left: 78px;
  }
  .menu-close .header-logo {
    margin-left: 100px;
  }
  .dashboard-container {
    padding: 70px 20px;
  }
  .img-dashboard {
    width: 230px;
    margin-bottom: 60px;
  }
  .brand-name {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  .brand-info {
    font-size: 22px;
    line-height: 28px;
  }
  .icon-page-action-button:first-child {
    margin-right: 0;
  }
  .lbl-page-action-button:not(.btn-page-action-dropdown .lbl-page-action-button) {
    display: none;
  }
  .page-action-container .page-action-start-container {
    margin-left: 20px;
  }
  .page-action-container .page-action-end-container {
    margin-right: 20px;
  }
  .greetings-container {
    margin: 0;
    padding: 0;
    width: 42%;
  }
  .profile-name-container {
    display: none;
  }
  .toolbar-link,
  .toolbar-link:hover {
    display: unset;
  }
  .lbl-rsp-sm {
    font-size: 14px;
    font-weight: 400;
  }
}
@media (max-width: 576px) {
  .menu-close .logo-container {
    background: unset;
    box-shadow: none;
    border-right: none;
  }
  .logo-container {
    display: none !important;
    width: 0 !important;
  }
  .header-logo {
    transform: none !important;
    display: block;
    margin-left: 20px;
  }
  .menu-close .header-logo {
    margin-left: 20px;
  }
  .left-bar {
    position: absolute;
    bottom: 0;
    width: 100% !important;
    height: 80px;
    background-color: transparent;
    z-index: 9999;
    pointer-events: all !important;
  }
  .right-bar {
    width: 100%;
    margin-left: unset;
  }
  .body-wrapper {
    height: calc(100vh - 150px);
  }
  .from-rsp-sm > .form-control {
    font-size: 12px;
    font-weight: 400 !important;
  }
  .breadcrumb-container {
    display: none;
  }
  .nav-menu-container {
    display: flex;
    justify-content: space-around;
  }
  .nav-header {
    display: none;
  }
  .nav-item {
    margin: 18px 0;
  }
  .nav-link {
    flex-direction: column;
    padding: 0 8px !important;
  }
  .nav-link .icon-chevron {
    display: none;
  }
  .link-name {
    margin-left: 0;
    display: block !important;
    font-size: 12px;
  }
  .nav-link::after,
  .sub-menu-link::after {
    content: unset;
  }
  .side-menu-header,
  .footer {
    display: none;
  }
  .menu-close .left-bar {
    width: 0;
    pointer-events: none;
  }
  .right-bar,
  .menu-close .right-bar {
    width: 100%;
  }
  .body-wrapper {
    padding: 8px 10px;
  }
  .lbl-rsp-sm {
    font-size: 12px;
    font-weight: 400;
  }
  .toolbar-container {
    display: flex;
    align-items: center;
  }
  .toolbar-item {
    margin-right: 18px;
  }
  .profile-details-container {
    transform: translate3d(-104px, 38px, 0px) !important;
  }
  .notification-details-container {
    transform: translate3d(-20px, 24px, 0px) !important;
  }
  .lbl-header-menu {
    font-size: 12px;
  }
  .logo-container {
    position: absolute;
    z-index: 9;
  }
  .header-logo {
    transform: translate(60px, 0px);
  }
  .nav-logo,
  .header-logo {
    width: 126px;
  }
  .user-table-view-2 td {
    padding: 10px 15px;
    font-size: 14px;
  }
  .badge {
    padding: 16px;
    letter-spacing: 0.015em;
  }
  .badge-primary {
    font-size: 16px;
    margin-bottom: 26px;
  }
  .badge-secondary {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .badge-highlight {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .badge-primary {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .badge-secondary {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .badge-highlight {
    font-size: 12px;
  }
}
@media (max-width: 280px) {
  .header-logo {
    display: none !important;
  }
}
.spinner-wrapper {
  position: absolute;
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  background-color: rgba(0, 0, 0, 0.0745098039);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

.spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
}

.spinner .dot {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.spinner .dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgb(12, 180, 231);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spinner .dot {
  animation: spin 2s infinite;
}

.spinner .dot:nth-child(2) {
  animation-delay: 100ms;
}

.spinner .dot:nth-child(3) {
  animation-delay: 200ms;
}

.spinner .dot:nth-child(4) {
  animation-delay: 300ms;
}

.spinner .dot:nth-child(5) {
  animation-delay: 400ms;
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  min-width: 180px;
}

.select-int {
  min-width: 80px;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  border: 1px solid rgba(56, 132, 190, 0.4196078431);
  border-bottom: none;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  content: "";
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active {
  border-radius: 10px 10px 0 0;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  padding: 12px 14px;
  color: #002039;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.68px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fefefe;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(56, 132, 190, 0.4196078431);
  border-top: none;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:last-child {
  border-radius: 0 0 10px 10px;
}

.select-items div:not(:last-child) {
  border-bottom: 1px solid #3884BE;
}

.select-items div:hover,
.same-as-selected {
  background-color: #e2f3ff;
}

.pagination {
  flex-wrap: wrap;
  margin-bottom: 0;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  border-radius: 10px !important;
}

.active > .page-link,
.page-link.active {
  background-color: #2F80ED;
  border-color: #2F80ED;
}

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4431372549);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 999;
}

.preloader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 50px;
  transform-origin: center center;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
.status-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.green-dot {
  background-color: green;
}

.red-dot {
  background-color: red;
}

.status-text-green {
  color: green;
}

.status-text-red {
  color: red;
}/*# sourceMappingURL=site.css.map */