@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

:root {
  --bs-primary: #2f6bd7;
  --bs-secondary: #1f1f1f;
  --bs-primary-rgb: 47, 107, 215;
  --bs-secondary-rgb:28, 21, 71;
}

body {
  font-family: "Inter", sans-serif;
  line-height: normal;
  font-size: 0.85rem;
  background-color: var(--bs-primary);
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity)
  );
}

.text-primary {
  color: var(--bs-primary) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-bg-opacity)
  );
}

.btn-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity)
  );
}

a {
  text-decoration: none;
}

.navbar-top .nav-link {
  color: rgba(var(--bs-dark-rgb), 1) !important;
  padding: 3px;
  font-weight: 500;
  margin: 0 2px;
  line-height: normal;
}

.navbar-nav .nav-link {
  padding: 9px 15px 9px 15px !important;
  margin: 0 5px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
  background: rgb(var(--bs-primary-rgb), .06);
}

.brand {
  padding: 15px 0px 15px 0px !important;
}

.dropdown-menu {
  font-size: 12px;
}

.h-100v {
  min-height: calc(100vh - 100px) !important;
}

.badge-msg-n {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #ffffff;
  left: 18px;
  top: 0;
  line-height: normal;
  padding: 3px 6px;
  font-size: 0.6rem;
}

.dropdown-menu[data-bs-popper] {
  right: 0 !important;
  left: initial;
}

.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .05) !important;
}

.sr-icon {
  top: 12px;
  left: 13px;
}

.ps-4-5 {
  padding-left: 35px;
}

.input-search {
  border: 1px solid rgb(217 220 225) !important;
  width: 60px !important;
}

@media (min-width: 992px) {
  .input-search {
    width: 100% !important;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    position: absolute;
    width: 100%;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 60px;
  }
}

.sidebar li {
  width: 100%;
}

.sidebar .nav-link {
  text-decoration: none;
  color: rgb(255 255 255 / 70%) !important;
  font-size: 13px;
  font-weight: 600;
  padding-left: 5px !important;
}

.nav-2 .nav-link {
  color: rgb(255 255 255 / 70%) !important;
  font-size: 13px;
}

.sidebar .nav-item.active,
.sidebar .nav-item:hover,
.sidebar .nav-link:hover {
  background: rgba(250, 252, 255, 0.199);
  border-radius: 5px;
}

.sidebar .nav-link:hover,
.sidebar .nav-item.active a {
  color: #ffffff !important;
}

.sidebar.h-100v {
  min-height: calc(100vh - 110px) !important;
}

.fs-7 {
  font-size: 0.95rem !important;
}

.sticky-bottom-ls {
  bottom: 20px;
  z-index: 1020;
  position: absolute;
  left: 20px;
}

.form-control {
  font-size: 0.85rem;
  background: rgb(250 252 255) !important;
}

.btn-vote {
  font-size: 0.85rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--bs-border-radius-xxl);
  line-height: normal;
}

.p-vote {
  border: 1px solid #dceaff;
  background-color: #e6f0ff;
  color: #0d6efd;
}

.p-vote:hover {
  border: 1px solid #0d6efd;
  background-color: #dceaff;
  color: #0d6efd;
}

.n-vote {
  border: 1px solid var(--bs-danger-bg-subtle);
  background-color: #ffe6e7;
  color: #ce0022;
}

.n-vote:hover {
  border: 1px solid #ce0022;
  background-color: #ffddde;
  color: #ce0022;
}

.dropdown-menu {
  --bs-dropdown-font-size: 0.9rem;
}

.card {
  border: 1px solid #cde3ff !important;
}