/* Local safety net for development when CDN Bootstrap / Bootstrap Icons are unavailable. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  padding: 0.5rem 0.85rem;
  color: inherit;
  font: inherit;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm {
  padding: 0.38rem 0.72rem;
  font-size: 0.875rem;
}

.form-control {
  display: block;
  width: 100%;
  border: 1px solid rgba(127, 29, 29, 0.16);
  border-radius: 0.75rem;
  padding: 0.72rem 0.95rem;
  font: inherit;
  line-height: 1.45;
  background: #fff;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
}

.bg-transparent {
  background: transparent !important;
}

.border-0 {
  border: 0 !important;
}

.text-white {
  color: #fff !important;
}

.text-danger {
  color: #b91c1c !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }
}

@media (max-width: 991.98px) {
  .d-lg-block {
    display: none !important;
  }

  .navbar-collapse {
    display: none !important;
  }
}
