:root {
  --hr-color-dark: #33334f;
  --hr-color-light: #f0f0ff;
  --hr-color-primary: #006a97;
  --hr-color-secondary: #4c96c1;
}

html {
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  color: var(--hr-color-primary) !important;
}

dialog small {
  font-size: .75rem;
}

.btn-xs {
  font-size: .8rem;
  line-height: 1;
  padding: .5rem;
}

.emoji-link {
  text-decoration: none;
  word-spacing: 0;
}

.fw-semi {
  font-weight: 600;
}

.main-wrapper {
  min-height: calc(100vh - 3.5rem);
}

.navbar-brand {
  font-size: 1.5rem;
}

.navbar-brand-logo {
  height: 2rem;
  vertical-align: middle;
}

.w-lg-65,
.w-lg-80,
.w-xl-50,
.w-xl-65 {
  width: 90%;
}

/*
BOOTSTRAP OVERRIDES
*/
.bg-light {
  background-color: var(--hr-color-light) !important;
}

.bg-primary {
  background-color: var(--hr-color-primary) !important;
}

.bg-secondary {
  background-color: var(--hr-color-secondary) !important;
}

.form-control:focus {
  border-color: var(--bs-border-color) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.text-dark {
  color: var(--hr-color-dark) !important;
}

.text-light {
  color: var(--hr-color-light) !important;
}

.text-primary {
  color: var(--hr-color-primary) !important;
}

.text-secondary {
  color: var(--hr-color-secondary) !important;
}

@media (min-width: 1900px) {
  .container {
    max-width: 1600px;
  }
}

/*
MEDIA QUERIES
*/
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }

  .navbar-brand-logo {
    height: 2.25rem;
  }
}

@media (min-width: 1000px) {
  .navbar-brand-logo {
    height: 2.5rem;
  }

  .w-lg-65 {
    width: 65%;
  }

  .w-lg-80 {
    width: 80%;
  }
}

@media (min-width: 1400px) {
  html {
    font-size: 20px;
  }

  .w-xl-50 {
    width: 50%;
  }

  .w-xl-65 {
    width: 65%;
  }

  .btn-xs {
    font-size: .75rem;
    padding: .5em;
  }
}