@font-face {
  font-family: 'SF-Pro';
  src: url('../fonts/SF-Pro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SF-Pro';
  src: url('../fonts/SF-Pro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --blue: #005da7;
  --light-blue: #ecf1f5;
  --green: #049e66;
  --red: #e74c3c;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

.container {
  max-width: 100%;
}

.bg-blue {
  background-color: var(--blue);
}

.text-blue {
  color: var(--blue);
}

.bg-light {
  background-color: var(--light-blue) !important;
}

.nav-pills .nav-link.active {
  background-color: var(--blue);
}

.nav-link {
  color: var(--blue);
}

.nav-link:hover {
  background: var(--light-blue);
}

.btn-primary {
  --bs-btn-bg: #217cc5;
  --bs-btn-border-color: #227dc5;
}

.btn-outline-primary {
  --bs-btn-color: #227dc5;
  --bs-btn-border-color: #227dc5;
  --bs-btn-hover-bg: #227dc5;
  --bs-btn-hover-border-color: #227dc5;
}

.btn-primary:disabled {
  background: #227dc5;
  border-color: #227dc5;
}

.btn:disabled {
  cursor: not-allowed !important;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn
{
  pointer-events: auto !important;
}

.cursor {
    cursor: pointer;
}

@media (min-width: 1200px) {
  .sidebar {
    width: 300px;
    flex: 0 0 300px;
  }
}
