:root {
  font-family: "Source Sans Pro", system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-feature-settings:
    "liga" off,
    "clig" off;
  line-height: 1.5;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --Main: #0077c0;
  --White: #fff;
  --Secondary-Grey-100: #f5f5f5;
  --Neutrals-300: #dee2e6;
  --Text-Default: #343a40;
  --Text---Secondary: rgba(1, 16, 18, 0.7);
  --Text---Primary: rgba(1, 16, 18, 0.9);
  --Secondary-Button: #f4f5f5;
  --Light-Background-Paper: #fff;
  --Light-Text-Secondary: rgba(1, 16, 18, 0.6);
  --Light-Text-Disabled: rgba(1, 16, 18, 0.38);
  --Neutrals-300: #dee2e6;
  --Common-Grey-400: #bdbdbd;
}

body {
  margin: 0px;
  padding: 0px;

  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.15px;
}

h2 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Source Sans Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.25px;
}

h3 {
  font-family: "Source Sans Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px;
}

p {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Source Sans Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* max-width: 1440px; */
  margin: 0px auto;
}

header {
  display: flex;
  padding: 0px 24px 0px 40px;
  align-items: center;
  background: var(--Main);
}

@media only screen and (max-width: 600px) {
  header {
    padding: 0px 16px 0px 8px;
  }
}

header .logo {
  /* display: flex; */
  width: 187px;
  height: 79px;
  padding: 11.98px 7.857px 11.552px 0px;
  align-items: center;
  gap: 8.539px;
  flex-shrink: 0;
}

.sidebar-background {
  transition: opacity 0.5s linear;
}

aside.sidebar {
  z-index: 999;
  height: 100vh;
  /* width: 224px; */
  left: 0;
  background-color: var(--Main);
  box-sizing: content-box;
  transition: width 0.5s ease-in-out;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
}

aside.sidebar ul {
  margin: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

aside.sidebar ul li {
}

aside.sidebar ul li a {
  display: flex;
  height: 40px;
  padding: 0px 2px 0px 14px;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  align-self: stretch;
  text-decoration: none;
  color: var(--White);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.15px;
}

aside.sidebar ul li:hover {
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.1);
  font-weight: 600;
  line-height: 175%;
}

aside.sidebar ul li a.active {
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.1);
  font-weight: 600;
  line-height: 175%;
}

aside.sidebar ul li a:active {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 99px;
}

aside.sidebar ul li a.inactive i svg path {
  fill: var(--White) !important;
  opacity: 0.7;
}

aside.sidebar ul li a.active i svg path {
  fill: var(--White) !important;
  opacity: 1;
}

img {
  box-sizing: content-box;
}
