:root {
  --primary: rgb(229, 27, 36);
  --primary-dark: rgb(96, 96, 98);
  --primary-70: rgba(96, 96, 98, 0.7);
  --primary-50: rgba(96, 96, 98, 0.5);
  --primary-30: rgba(96, 96, 98, 0.3);
  --primary-10: rgba(96, 96, 98, 0.1);
  --logo: #ffffff;
  --sidebar-icon: #e51b24;
}

.bg-grad-sidebar {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(229, 27, 36)),
    to(#3c4655)
  );

  background-image: linear-gradient(
    0deg,
    rgb(150, 150, 150),
    rgb(96, 96, 98)
  );
}

.py-6 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}


