@charset "UTF-8";
/* ----------↓-↓-↓-↓-↓-↓---------- Shortcut ----------↓-↓-↓-↓-↓-↓---------- */
.status {
  font-size: smaller;
  padding: 5px 8px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
}

.stat-success {
  color: #40c4b5;
  background-color: rgba(49, 195, 100, 0.15);
}
.stat-success:hover {
  color: #18655c;
}

.stat-danger {
  color: #e00000;
  background-color: rgba(195, 49, 88, 0.15);
}
.stat-danger:hover {
  color: #9a0000;
}

.stat-expired {
  color: #7a7a7a;
  background-color: rgba(159, 159, 159, 0.15);
}

.stat-warning {
  color: #b9880e;
  background-color: rgba(232, 170, 0, 0.15);
}

.stat-info {
  color: #2569fc;
  background-color: rgba(86, 171, 255, 0.15);
}

.stat-feedback {
  color: #691c77;
  background-color: rgba(210, 112, 227, 0.15);
}

/* ----------↓-↓-↓-↓-↓-↓---------- Overall ----------↓-↓-↓-↓-↓-↓---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: #f9f9fc !important;
  display: grid;
  grid-template-columns: 264px auto;
}

hr {
  color: #dcdee3 !important;
  opacity: unset !important;
}

/* ----------↓-↓-↓-↓-↓-↓---------- Login Page ----------↓-↓-↓-↓-↓-↓---------- */
#login {
  display: unset;
  grid-template-columns: unset;
}
#login .container {
  margin-top: 100px;
}
#login .container .card {
  width: 40%;
}

/* ----------↓-↓-↓-↓-↓-↓---------- Header ----------↓-↓-↓-↓-↓-↓---------- */
#header {
  width: calc(100% - 300px);
  margin-left: 300px;
  position: relative;
}
#header .header-section {
  background-color: #fff;
  padding: 5px 30px;
  box-shadow: 0 4px 6px -6px #222;
}
#header .header-section .profile {
  display: flex;
  justify-content: right;
  align-items: center;
}
#header .header-section .profile .fa-bell {
  font-size: 25px;
  margin-right: 20px;
}
#header .header-section .profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px rgb(48, 48, 48);
}
#header .header-section .profile .dropdown-toggle {
  border: none;
}
#header .header-section .profile .dropdown-menu {
  padding: 5px 5px;
  --bs-dropdown-link-active-bg: lightgrey;
  --bs-dropdown-link-hover-bg: lightgrey;
}
#header .header-section .profile .dropdown-menu a {
  padding-left: 20px;
}
#header .header-section .profile .dropdown-menu i {
  padding-right: 15px;
}

/* ----------↓-↓-↓-↓-↓-↓---------- Side Navgation ----------↓-↓-↓-↓-↓-↓---------- */
#side-nav {
  background-color: rgb(255, 255, 255);
  width: 264px;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  z-index: 50;
  border-right: 1px solid #dcdee3;
}
#side-nav .logo {
  display: flex;
  height: 80px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
}
#side-nav .logo a {
  display: flex;
  gap: 12px;
  align-items: center;
}
#side-nav .logo img {
  width: 32px;
}
#side-nav .logo span {
  font-size: 16px;
  font-weight: 600;
  color: #0c0d0f;
  line-height: 32px;
}
#side-nav .nav-title {
  padding: 12px;
}
#side-nav .nav-title li {
  list-style: none;
  height: 40px;
  border-radius: 10px;
  transition: 0.3s ease;
  margin: 12px 0;
  display: flex;
  align-items: center;
  padding: 8px 18px;
}
#side-nav .nav-title li:hover {
  background-color: #4675d1;
  cursor: pointer;
}
#side-nav .nav-title li:hover i,
#side-nav .nav-title li:hover a {
  color: #fff;
}
#side-nav .nav-title li a {
  text-decoration: none;
  height: 40px;
  width: 240px;
  color: #292d32;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.005em;
  text-align: left;
  display: flex;
  align-items: center;
}
#side-nav .nav-title li i {
  color: #292d32;
  width: 24px;
  height: 24px;
  font-size: 20px;
  margin-right: 8px;
  justify-content: center;
  display: flex;
  align-items: center;
}
#side-nav .nav-title li:first-child {
  margin-top: 0;
}
#side-nav .nav-title li:last-child {
  margin-bottom: 0;
}
#side-nav .logout {
  position: absolute;
  bottom: 0;
}
#side-nav .logout li {
  list-style: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
#side-nav .logout li:hover {
  background-color: #c4404f;
  cursor: pointer;
}
#side-nav .logout li:hover i,
#side-nav .logout li:hover a {
  color: #fff;
}
#side-nav .logout li a {
  text-decoration: none;
  height: 60px;
  width: 300px;
  color: #292d32;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.005em;
  text-align: left;
  display: flex;
  align-items: center;
}
#side-nav .logout li i {
  color: #292d32;
  width: 24px;
  height: 24px;
  font-size: 20px;
  margin-right: 8px;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* ----------↓-↓-↓-↓-↓-↓---------- Main Content (Overall) ----------↓-↓-↓-↓-↓-↓---------- */
main {
  margin: 5px 0;
  height: auto;
  padding-bottom: 70px;
  font-size: 14px;
  overflow: hidden;
}
main .page-title {
  border-bottom: 1px solid #dcdee3;
  padding: 16px;
}
main .page-title a {
  text-align: center;
  background-color: #ededed;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #0c0d0f;
  margin-right: 12px;
  transition: 0.2s ease;
}
main .page-title a:hover {
  background-color: #cacaca;
}
main .page-title span {
  color: #0c0d0f;
  font-size: 18px;
  font-weight: 600;
}
main .page-title .add-button {
  position: absolute;
  top: 12px;
  right: 3px;
  background-color: #d1a346;
  color: white;
}
main .page-title .add-button:hover {
  background-color: #b48931;
}
main button,
main .button {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  float: right;
  transition: 0.2s ease;
  text-decoration: none;
  color: black;
}
main button i,
main .button i {
  margin-right: 6px;
}
main article {
  padding: 24px;
}
main article .tab-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
main article .tab-container .tabs {
  border: 1px solid #dcdee3;
  padding: 4px;
  border-radius: 10px;
}
main article .tab-container .tabs .tab-button {
  padding: 5px 12px;
  border-radius: 8px;
  background: transparent;
  color: #292d32;
  font-weight: 500;
}
main article .tab-container .tabs .purple-tab.active {
  background: #f5ebfc;
  color: #a346d1;
  font-weight: 700;
}
main article .tab-container .tabs .pink-tab.active {
  background-color: #fae9f1;
  color: #df5589;
  font-weight: 700;
}
main article .tab-container .tabs .view-tab.active {
  background: #e0ecf9;
  color: #375dbe;
  font-weight: 700;
}
main article .tab-container span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  width: 65px;
  text-align: center;
}
main article .tab-container .passport {
  color: #7c319a;
}
main article .tab-container .permit {
  color: #b1254f;
}
main article .tab-content {
  display: none;
}
main article .tab-content.active {
  display: block;
}
main article .form-container {
  border: 1px solid #dcdee3;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 4px 30px 0px rgba(77, 84, 100, 0.0509803922);
  box-sizing: border-box;
}
main article .form-container .form-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
main article #add-btn {
  text-transform: uppercase;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.3s ease;
}
main article #add-btn:hover {
  background-color: rgb(29, 29, 255);
  border-radius: 25px;
}
main article #add-btn i {
  font-size: 18px;
  margin-left: 15px;
}
main article .form-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dcdee3;
  height: auto;
  padding: 16px 24px;
  z-index: 10;
}
main article .save-button {
  background: #46bad1;
  color: white;
  margin-left: 15px;
}
main article .save-button:hover {
  background: #4695d1;
}
main article .cancel-button {
  background: #ededed;
  color: #292d32;
}
main article .cancel-button:hover {
  background: #cacaca;
}
main article .edit-button {
  background-color: #d1a346;
  color: white;
}
main article .edit-button:hover {
  background-color: #b48931;
}
main form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  line-height: 20px;
}
main form label .required {
  color: red;
}
main form .flex-fill {
  width: 100%;
}
main form input,
main form textarea,
main form select {
  border-color: rgba(220, 222, 227, 0.8039215686) !important;
}
main form select {
  color: rgba(0, 0, 0, 0.25) !important;
}
main form select:valid {
  color: black !important;
}
main form .radio-input {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 5px;
}
main form .radio-input input {
  margin-top: 0;
  width: 18px;
  height: 18px;
}
main form input::-moz-placeholder {
  opacity: 25% !important;
}
main form input::placeholder {
  opacity: 25% !important;
}
main .dataTables_wrapper .dataTables_filter {
  margin: 5px;
}
main .dataTables_wrapper .dataTables_filter input {
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
main .dataTables_wrapper .dataTables_paginate {
  margin: 5px 0 !important;
}
main .dataTables_wrapper .dataTables_paginate li {
  margin: 0 4px;
  border-radius: 10px;
}
main .dataTables_wrapper .dataTables_paginate li .page-link {
  border-radius: 10px;
  color: #292d32;
  text-align: center;
}
main .dataTables_wrapper .dataTables_paginate .page-item.active .page-link {
  background-color: #4675d1;
  color: white;
}
main .dataTables_wrapper .dataTables_paginate .page-item.previous .page-link,
main .dataTables_wrapper .dataTables_paginate .page-item.next .page-link {
  color: #4675d1;
  border-color: #4675d1;
  transition: 0.2s ease;
}
main .dataTables_wrapper .dataTables_paginate .page-item.previous .page-link:hover,
main .dataTables_wrapper .dataTables_paginate .page-item.next .page-link:hover {
  background-color: #4675d1;
  color: white;
}
main .dataTables_wrapper .dataTables_paginate .page-item.previous.disabled .page-link,
main .dataTables_wrapper .dataTables_paginate .page-item.next.disabled .page-link {
  color: #e5e6e8;
  border-color: #e5e6e8;
}
main .col-sm-12 {
  overflow-x: auto;
}
main table {
  border-collapse: collapse;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 10px;
  width: 100%;
  white-space: nowrap;
  margin: 0 2px;
  background-color: white;
}
main table thead {
  height: 50px;
}
main table tbody > tr:last-child {
  border-bottom: transparent;
}
main table th,
main table tr {
  vertical-align: middle;
}
main table tr {
  height: 40px;
}
main table th,
main table td {
  border-right: 1px solid #ebebeb;
}
main table th:last-child,
main table td:last-child {
  border-right: none;
}
main table a {
  text-decoration: none;
  font-weight: 400;
  text-align: left !important;
}
main table a:hover {
  font-size: normal;
  font-weight: 500;
  transition: 0.2s ease;
}
main table .action a {
  background-color: transparent;
  padding: 0 8px;
}

/* ----------↓-↓-↓-↓-↓-↓---------- Dashboard ----------↓-↓-↓-↓-↓-↓---------- */
#home-pg .values {
  display: flex;
  margin: 24px;
}
#home-pg .values .val-box {
  background-color: #fff;
  width: 264px;
  height: 152px;
  border-radius: 16px;
  border: 1px solid #dcdee3;
  text-decoration: none;
  color: #292d32;
}
#home-pg .values .val-box:hover {
  cursor: pointer;
}
#home-pg .values .val-box .val-box-content {
  padding: 16px 20px;
  display: flex;
}
#home-pg .values .val-box .val-box-content .val-value {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 184px;
}
#home-pg .values .val-box .val-box-content .val-value .val-title {
  font-size: 16px;
  color: #727a90;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}
#home-pg .values .val-box .val-box-content .val-value .val-number {
  font-size: 24px;
  color: #0c0d0f;
  font-weight: 600;
  line-height: 32px;
}
#home-pg .values .val-box .val-box-content .val-icon {
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  padding: 8px;
  background-color: #f1f6fd;
}
#home-pg .values .val-box .see-more {
  height: auto;
  padding: 16px 20px;
  border-top: 1px solid #dcdee3;
  color: #351e99;
  display: flex;
  align-items: center;
}
#home-pg .values .val-box .see-more span {
  width: 208px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}/*# sourceMappingURL=style.css.map */