@import url(./fonts.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: dana !important;
  overflow: hidden;
  background-color: #0f172a;
}

.sidebar {
  max-width: 184px;
  padding: 38px 24px 36px 0;
  background-color: #1d2436;
  height: 100vh;
}

.content {
  height: 100vh;
}

#navbarSupportedContent ul li .nav-link {
  color: #a3a3a3;
  font-size: 14px !important;
  margin-bottom: 12px;
}

#navbarSupportedContent ul li .nav-link svg {
  margin-left: 6px;
}

.nav-link.active,
.nav-link:focus,
.nav-link:hover {
  color: #0094da !important;
}

.nav-link.active svg path,
.nav-link:focus svg path,
.nav-link:hover svg path {
  stroke: #0094da;
  transition: all 0.4s ease;
}

#navbarSupportedContent {
  margin-top: 47px;
}

.sidebarNav.active {
  background: linear-gradient(
    to left,
    rgba(56, 189, 248, 0.3) 0%,
    rgba(56, 189, 248, 0.01) 100%
  );
  border-radius: 10px;
  width: 100%;
}

.sidebarNav > svg {
  width: 21px;
  height: 21px;
}

.avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@media (max-width: 600px) {
  .mainContainer .row .sidebar{
  display: none;
}
}