body {
  background: #f9fafb;
}
.h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}
.navbar-vertical.navbar-expand-lg {
  box-shadow: none;
  border-right: 1px solid #E5E7EB;
  .navbar-brand {
    padding: 0;
    padding: 24px;
    color: #000;
    font-weight: 400;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
    strong {
      font-weight: 400;
      font-size: 20px;
    }
    small {
      font-size: 14px;
      color: #6b7280;
    }
  }
}

.navbar-nav {
  padding: 16px;
  gap: 4px;
}

.nav-item {
  .nav-link {
    padding: 10px 12px !important;
    border-radius: 10px !important;
    .nav-link-title {
      color: #6b7280;
    }
  }
  &.active {
    &::after {
      content: none !important;
    }
    .nav-link {
      background: #F3F4F6;
      svg {
        path {
          stroke: #111827;
        }
      }
    }
    .nav-link-title {
      color: #111827;
    }
  }
  &:hover {
    .nav-link {
      background: #F3F4F6;
      svg {
        path {
          stroke: #111827;
        }
      }
    }
    .nav-link-title {
      color: #111827;
    }
  }
}

.container-fluid{
  padding: 0 32px;
}
.page-wrapper {
  .page-header {
    margin-top: 32px;
  }
}
.page-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.33333333;
  strong {
    font-size: 24px;
    font-weight: 400;
  }
  small {
    font-size: 16px;
    color: #6b7280;
  }
}

.form-control,
.card {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
}

.original-card-body--top-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  .card-icon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    > div {
      &:nth-child(1) {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #F3F4F6;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      &:nth-child(2) {
        display: flex;
        align-items: center;
        gap: 4px;
        span {
          font-size: 14px;
          color:#059669;
        }
      }
    }
  }
  .h1 {
    margin: 0;
  }
  small {
    font-size: 14px;
    line-height: 1.42857143;
    color: #6b7280;
  }
  em {
    font-style: normal;
    font-size: 14px;
    line-height: 1.42857143;
    color: #059669;
  }
}

.original-card-body--top-card--small-gap {
  gap: 8px;
  position: relative;
  svg {
    position: absolute;
    top: 24px;
    right: 24px;
  }
}

.original-card-body--graph-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  .original-card-body--graph-card--header {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #111827;
  }
}
.original-card-body--list-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  .original-card-body--list-card--header {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #111827;
  }
  .original-card-body--list-card--content {
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      li {
        display: flex;
        flex-direction: column;
        line-height: 1.42857143;
        padding-left: 20px;
        position: relative;
        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 7px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: #059669;
        }
        strong {
          font-size: 16px;
          font-weight: 400;
          color: #111827;
        }
        small {
          font-size: 14px;
          line-height: 1.42857143;
          color: #6b7280;
        }
      }
    }
  }
}
