/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/style.scss to edit this template
*/
/*
    Created on : 19.07.2023, 21:08:51
    Author     : Sammy Guergachi <sguergachi at gmail.com>
*/
html,
body {
  width: 100%;
  height: 100%;
  background: #f9fafc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1em;
  padding: 0;
  margin: 0;
  color: #3c4858; }

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  outline: none; }

::-webkit-scrollbar {
  display: none; }

*,
::after,
::before {
  box-sizing: border-box; }

textarea {
  resize: none; }

h1,
h2,
h3 {
  margin: 0; }

a {
  color: #3c4858;
  text-decoration: none; }

label {
  display: block;
  margin: 0 0 5px 0; }

.flex {
  display: flex !important; }
  .flex.ai-stretch {
    align-items: stretch; }
  .flex.ai-top {
    align-items: top; }
  .flex.ai-center {
    align-items: center; }
  .flex.ai-bottom {
    align-items: end; }
  .flex.jc-center {
    justify-content: center; }
  .flex.jc-left {
    justify-content: left; }
  .flex.jc-right {
    justify-content: right; }
  .flex.jc-space-around {
    justify-content: space-around; }
  .flex.jc-space-between {
    justify-content: space-between; }
  .flex.flex-wrap {
    flex-wrap: wrap; }
  .flex.spacer-10 {
    gap: 10px; }
  .flex.spacer-15 {
    gap: 15px; }
  .flex.spacer-20 {
    gap: 20px; }
  .flex.spacer-25 {
    gap: 25px; }
  .flex.spacer-30 {
    gap: 30px; }
  .flex.flex-1 {
    flex: 1; }

form {
  margin: 0; }

p {
  margin: 0; }
  p.title {
    background-color: #f9fafb;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 18px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #d8d9db; }

.hidden {
  position: absolute;
  top: -99999;
  left: -99999; }

.p-10 {
  padding: 10px; }

.p-20 {
  padding: 20px; }

.input {
  margin-bottom: 15px; }

.w-10 {
  width: 10%; }

.w-25 {
  width: 25%; }

.w-30 {
  width: 30%; }

.w-40 {
    width:40%;
}

.w-50 {
  width: 50%; }

.w-75 {
  width: 75%; }

.w-100 {
  width: 100%; }

.d-block {
  display: block; }

.mb-0 {
  margin-bottom: 0 !important; }

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

input,
select,
textarea {
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d8d9db;
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none; }
  input[readonly],
  select[readonly],
  textarea[readonly] {
    cursor: default;
    color: #3c4858;
    background: #eee; }

textarea {
  height: 300px; }

table.datatable {
  width: 100%;
  border-spacing: 0;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
  border-collapse: collapse;
  overflow: hidden; }
  table.datatable.options-1 > thead > tr > th:last-child,
  table.datatable.options-1 > tbody > tr > td:last-child {
    width: 75px; }
  table.datatable.options-2 > tbody > tr > td:last-child {
    width: 120px;
    height: 100%;
    border-left: 1px solid transparent;
    display: flex;
    padding: 10px 12px; }
    table.datatable.options-2 > tbody > tr > td:last-child > a,
    table.datatable.options-2 > tbody > tr > td:last-child .link {
      padding: 17px;
      border-radius: 6px; }
      table.datatable.options-2 > tbody > tr > td:last-child > a:hover,
      table.datatable.options-2 > tbody > tr > td:last-child .link:hover {
        background-color: #f9fafb; }
      table.datatable.options-2 > tbody > tr > td:last-child > a > i,
      table.datatable.options-2 > tbody > tr > td:last-child .link > i {
        font-size: 17px; }
        table.datatable.options-2 > tbody > tr > td:last-child > a > i.fa-trash-alt,
        table.datatable.options-2 > tbody > tr > td:last-child .link > i.fa-trash-alt {
          color: #ff6249; }
          table.datatable.options-2 > tbody > tr > td:last-child > a > i.fa-trash-alt:hover,
          table.datatable.options-2 > tbody > tr > td:last-child .link > i.fa-trash-alt:hover {
            color: #c62c14; }
  table.datatable.sortable > thead > tr > th {
    cursor: pointer;
    transition: all 0.1s linear; }
    table.datatable.sortable > thead > tr > th:hover {
      color: #0084ff; }
    table.datatable.sortable > thead > tr > th > span {
      margin-right: 5px; }
  table.datatable > thead {
    background-color: #f9fafb;
    font-weight: 600; }
    table.datatable > thead > tr {
      justify-content: stretch; }
      table.datatable > thead > tr > th {
        padding: 16px 12px;
        font-weight: 600; }
        table.datatable > thead > tr > th:first-child {
          padding: 16px 12px 16px 24px; }
        table.datatable > thead > tr > th:last-child {
          width: 120px; }
  table.datatable > tbody > tr {
    border-top: 1px solid #d1d5db;
    cursor: pointer;
    justify-content: stretch; }
    table.datatable > tbody > tr:hover {
      background-color: #f8fafc; }
      table.datatable > tbody > tr:hover > td:last-child {
        background: #fff;
        border-color: #e0e6ed; }
    table.datatable > tbody > tr > td:first-child {
      font-weight: 600; }
      table.datatable > tbody > tr > td:first-child > a {
        padding: 16px 12px 16px 24px; }
    table.datatable > tbody > tr > td > a {
      padding: 16px 12px;
      text-decoration: none;
      color: #3c4858;
      display: block; }
    table.datatable > tbody > tr > td img.icon {
      height: 16px; }
  table.datatable > tfoot > tr {
    padding: 10px 0;
    text-align: center; }
    table.datatable > tfoot > tr > td > .next-page {
      min-width: 120px;
      border: 0;
      font-weight: 600;
      border-radius: 6px;
      padding: 10px 20px;
      margin: 20px 0;
      cursor: pointer;
      text-decoration: none;
      font-size: 14px;
      border: 1px solid #d8d9db;
      transition: all 0.1s linear;
      display: inline-block; }
      table.datatable > tfoot > tr > td > .next-page:hover {
        background-color: #f9fafb;
        border-color: #c8c8c8; }

button, .button {
  background-color: #fff;
  color: #3c4858;
  border: 0;
  margin: 0 0 0 auto;
  font-weight: 600;
  border-radius: 6px;
  padding: 9px 19px;
  cursor: pointer;
  border: 1px solid #c8c8c8;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  transition: all 0.1s linear;
  display: inline-block; }
  button:hover, .button:hover {
    background-color: #f9fafb;
    border-color: #5a677d; }
  button.primary, .button.primary {
    background-color: #0084ff;
    border-color: #0084ff;
    color: white; }
    button.primary:hover, .button.primary:hover {
      background-color: #0063bf;
      border-color: #0063bf; }
  button.new, .button.new {
    background-color: #0bcb6b;
    border-color: #0bcb6b;
    color: white; }
    button.new:hover, .button.new:hover {
      background-color: #17d777;
      border-color: #17d777; }
  button.delete, .button.delete {
    background-color: #ff6249;
    border-color: #ff6249;
    color: white; }
    button.delete:hover, .button.delete:hover {
      background-color: #c62c14;
      border-color: #c62c14; }
  button.remove, .button.remove {
    color: #ff6249; }
    button.remove:hover, .button.remove:hover {
      color: #c62c14;
      border-color: #c62c14; }
  button.download, .button.download {
    color: #0084ff; }
    button.download:hover, .button.download:hover {
      color: #0063bf;
      border-color: #0063bf; }
  button > svg,
  button div,
  button span, .button > svg,
  .button div,
  .button span {
    display: inline-block;
    vertical-align: middle; }
  button > svg, .button > svg {
    margin-right: 5px; }

#app {
  height: 100%;
  display: flex; }
  #app > aside {
    width: 230px;
    height: 100%;
    z-index: 1;
    position: relative;
    transition: all 0.5s linear; }
    #app > aside > p {
      padding: 20px 10px;
      font-weight: bold; }
    #app > aside > ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      #app > aside > ul > li.active > a {
        background-color: #fff;
        color: #0084ff;
        font-weight: 500; }
        #app > aside > ul > li.active > a:hover {
          background-color: #fff; }
      #app > aside > ul > li > a {
        padding: 20px 10px;
        width: 100%;
        cursor: pointer;
        font-size: 14px;
        display: flex;
        align-items: center;
        transition: all 0.1s linear; }
        #app > aside > ul > li > a:hover {
          background-color: #eee; }
        #app > aside > ul > li > a > .image {
          background-color: #eee;
          background-size: 40px 40px;
          width: 40px;
          height: 40px;
          min-width: 40px;
          border-radius: 20px;
          display: flex;
          align-items: center;
          justify-content: center; }
        #app > aside > ul > li > a > span {
          margin-left: 10px; }
  #app > main {
    width: calc(100% - 230px);
    height: 100%;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s linear; }
    #app > main > header {
      width: 100%;
      padding: 15px 30px;
      border-bottom: 1px solid #d8d9db; }
      #app > main > header > h1 {
        font-size: 22px;
        font-weight: 500; }
    #app > main > section.content {
      height: calc(100% - 58px);
      overflow-y: scroll;
      padding: 30px; }
      #app > main > section.content .box {
        width: 100%;
        background-color: #fff;
        border-radius: 10px;
        margin-bottom: 30px;
        border: 1px solid #d8d9db; }
        #app > main > section.content .box > .title {
          background-color: #f9fafb;
          padding: 15px 20px;
          font-weight: 500;
          font-size: 18px;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
          border-bottom: 1px solid #d8d9db; }
          #app > main > section.content .box > .title > span {
            padding: 8px 0; }

.modal {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  display: none; }
  .modal.active {
    display: block; }
  .modal > .overlay {
    background: linear-gradient(135deg, #3b5daa 0%, rgba(130, 218, 245, 0.5) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99999999; }
  .modal > .box {
    max-width: 800px;
    max-height: calc(100% - 100px);
    margin: 50px auto;
    display: block;
    z-index: 999999999; }
    .modal > .box > i {
      font-size: 38px;
      color: #fff;
      top: 0;
      right: -40px;
      cursor: pointer;
      position: absolute; }
    .modal > .box > .content {
      width: 100%;
      padding: 20px;
      flex: 0 1 auto; }

.box {
  width: 100%;
  background: #fff;
  margin: 0 0 30px 0;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #dfe7ee;
  position: relative; }
  .box > .value {
    font-size: 26px;
    font-weight: 600;
    margin: 7px 0 0; }

/*# sourceMappingURL=styles.css.map */
