html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: var(--army-black) url("/assets/ns/images/background-texture.png") no-repeat fixed center;
}

#main-body {
  padding: 2rem 1rem;
  width: 100%;
  flex: 1 0 auto;
}
#main-body .container {
  background-color: var(--white);
  padding: 0;
}
#main-body .container > div {
  padding: 2rem;
}
#main-body .container > div.alert-banner {
  font-weight: 700;
  text-align: center;
}
#main-body .container > div.alert-banner.error {
  color: var(--white);
  background-color: var(--army-alert);
}
#main-body .container > div.alert-banner.success {
  color: var(--white);
  background-color: var(--army-info);
}
#main-body .container > div.alert-banner.warning {
  color: var(--black);
  background-color: var(--army-gold);
}
#main-body .tabs {
  display: flex;
  flex-direction: row;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 1140px;
}
#main-body .tabs > div {
  color: var(--white);
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
}
#main-body .tabs > div a {
  color: var(--white);
  text-decoration: none;
  font-weight: normal;
}
#main-body .tabs > div a:hover {
  color: var(--army-gold);
}
#main-body .tabs > div.active {
  color: var(--army-black);
  background-color: var(--white);
}
#main-body .tabs > div.active a {
  color: var(--army-black);
  font-weight: bold;
}
#main-body .tabs > div.active > span {
  font-weight: 700;
  border-bottom: 4px solid var(--army-gold);
}

ul.icam-list {
  padding: 0 0 0.5rem 0;
  margin-bottom: 2rem;
  list-style: none;
  border-bottom: 1px solid gray;
  display: flex;
  flex-direction: row;
}
ul.icam-list li:not(:last-child) {
  margin-right: 1rem;
}

button,
.btn {
  width: 345px;
  height: 50px;
  border: 0;
  border-radius: 0;
  text-align: center;
  text-decoration-line: none;
}
@media (max-width: 575.98px) {
  button,
  .btn {
    width: 100%;
  }
}
button:hover,
.btn:hover {
  background-color: var(--army-gold);
}
button.btn-primary,
.btn.btn-primary {
  background-color: var(--army-gold);
  color: var(--medium-camo);
  border: 0;
  border-radius: 0;
  justify-content: center;
}
button.btn-primary:hover,
.btn.btn-primary:hover {
  background-color: var(--medium-camo);
  color: var(--white);
}
button.btn-submit, button.btn-cancel,
.btn.btn-submit,
.btn.btn-cancel {
  margin-top: 1rem;
}
@media (max-width: 767.98px) {
  button.btn-submit, button.btn-cancel,
  .btn.btn-submit,
  .btn.btn-cancel {
    margin-top: 2rem;
  }
}
button.btn-secondary,
.btn.btn-secondary {
  background-color: var(--army-black);
  color: var(--white);
  justify-content: center;
}
button.btn-secondary:hover,
.btn.btn-secondary:hover {
  background-color: var(--medium-camo);
  color: var(--white);
}
button.btn-xl,
.btn.btn-xl {
  width: 450px;
}
button.btn-md,
.btn.btn-md {
  width: 240px;
}
button.btn-sm,
.btn.btn-sm {
  width: 120px;
}
button.btn-text,
.btn.btn-text {
  padding: 0;
  line-height: normal;
  margin: 0 auto;
  text-decoration: underline;
  font-style: normal;
  background: transparent;
  color: var(--army-black);
  width: auto !important;
  max-width: 150px;
}
button.btn-text > span,
.btn.btn-text > span {
  padding: 0 0.25rem;
}
button.btn-ghost,
.btn.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: var(--white);
  border: 1px solid var(--white);
  background-color: transparent;
  border-radius: 0;
}
button.btn-cancel,
.btn.btn-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-camo);
  width: 200px;
}
button.btn-cancel:hover,
.btn.btn-cancel:hover {
  background-color: var(--medium-camo);
  color: var(--white);
}

@media (min-width: 768px) {
  input,
  select {
    font-size: 1rem;
  }
  label.larger {
    font-size: 1.5rem;
  }
}
:root {
  --white: #ffffff;
  --black: #000000;
  --gray-2: #4f4f4f;
  --gray-3: #aaaaaa;
  --gray-4: #eeeeee;
  --army-black: #231f20;
  --army-gold: #ffcb00;
  --light-camo: #bfb8a6;
  --medium-camo: #727365;
  --dark-camo: #333c33;
  --army-alert: #ba0000;
  --army-alert-focus: #fcf2f2;
  --yellow: #ffe992;
  --army-info: #528b09;
}

.yubikey-form input[type=text],
.yubikey-form textarea,
.yubikey-form select {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid var(--medium-camo);
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  padding: 0.375rem 0.75rem;
}
.yubikey-form input[type=text].required,
.yubikey-form textarea.required,
.yubikey-form select.required {
  color: var(--army-alert);
  border-color: var(--army-alert);
}
.yubikey-form input[type=text].invalid,
.yubikey-form textarea.invalid,
.yubikey-form select.invalid {
  border-color: var(--army-alert);
}
.yubikey-form input[type=text].valid,
.yubikey-form textarea.valid,
.yubikey-form select.valid {
  border-color: var(--army-info);
}
.yubikey-form input[type=text][readonly],
.yubikey-form textarea[readonly],
.yubikey-form select[readonly] {
  background-color: var(--yellow);
  border: 0;
}
.yubikey-form textarea {
  padding: 0.75rem;
}
.yubikey-form textarea.lg {
  height: 8rem;
}
.yubikey-form div.required {
  color: var(--army-alert);
  padding-top: 0.25rem;
}
.yubikey-form label {
  color: var(--gray-2);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 1rem 0 0;
  justify-self: end;
}
.yubikey-form label.form-check-label {
  font-weight: 300;
}
.yubikey-form label > span {
  font-weight: 300;
  padding-left: 0.25rem;
}
.yubikey-form label.larger {
  font-size: 2.5rem;
}
.yubikey-form label.invalid {
  font-weight: bold;
  color: var(--army-alert);
}
.yubikey-form label.valid {
  color: var(--army-info);
}
.yubikey-form .form-control {
  width: 100%;
}
.yubikey-form .cell {
  padding-top: 0.25rem;
}

.yubikey-form-row {
  margin-bottom: 1.5rem;
}

.form-content {
  padding: 1rem;
}

.form-group {
  margin-bottom: 3rem;
}
.form-group h3 {
  border-bottom: 1px solid var(--gray-4);
  padding-bottom: 0.5rem;
  margin: 1rem 0;
}
.form-group .detail-row {
  margin-bottom: 0.5rem;
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-group .detail-row label {
  color: var(--gray-2);
  font-weight: 700;
  margin: 0;
  justify-self: end;
  padding-right: 1rem;
}

.button-row {
  margin: 1rem auto;
}
.button-row input,
.button-row button {
  margin: 0 auto;
}

header {
  display: grid !important;
  grid-template-columns: 140px fit-content(30%) fit-content(30%) auto;
  background-color: transparent;
  height: 140px;
  padding: 1rem 3rem;
}
header img {
  display: flex;
  align-items: center;
}
header .sidekick {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 0 1rem;
  margin: 0;
}
header .sidekick > div {
  display: flex;
  flex-direction: column;
}
header .sidekick h1 {
  font-size: 3rem;
  line-height: 2.75rem;
  margin: 0;
  padding: 0;
}
header .sidekick .smaller {
  font-size: 1.25rem;
  color: var(--white);
  display: none;
}
@media (min-width: 576px) {
  header .sidekick .smaller {
    display: block;
  }
}
header .sidekick a {
  color: var(--white);
  text-decoration: none;
}
header .user-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-self: right;
  color: var(--white) !important;
}
header .user-info .user {
  text-align: right;
}
header .user-info .logout {
  padding: 0 1rem;
}

section.nav-menu {
  border-top: 3px solid var(--light-camo);
  background-color: var(--dark-camo);
  color: var(--white);
  padding: 0.5rem;
  margin-bottom: 1rem;
}
section.nav-menu a {
  color: var(--army-gold);
}

footer {
  background-color: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  min-height: 10rem;
  padding: 2rem;
  margin-top: 2rem;
  width: 100%;
  flex-shrink: 0;
  bottom: 0;
}
footer .footer-cols {
  display: flex;
  flex-direction: row;
}
footer .footer-cols div.column {
  width: 49%;
}

.security-banner {
  padding: 0.25rem;
  text-align: center;
  font-weight: bold;
}

a {
  color: var(--army-black);
  font-weight: bold;
  text-decoration-line: underline;
}
a:hover {
  color: var(--army-gold);
}
a.caps {
  letter-spacing: 1px;
  text-decoration-line: underline;
}
a.small {
  font-size: 0.875rem;
}

.list .title {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.list .headers {
  font-weight: 700;
  background-color: transparent !important;
  border-bottom: 1px solid var(--gray-3) !important;
}
.list .list-row {
  border-bottom: 1px solid var(--gray-3);
  display: grid;
  grid-template-columns: 5fr 5fr 80px;
}
.list .list-row:last-child {
  border-bottom: 0;
}
.list .list-row > span {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray-3);
  padding: 1rem;
  font-size: 0.85rem;
}
.list .list-row > span:last-child {
  border-right: 0;
}
.list .list-row > span.links {
  display: flex;
  flex-direction: column;
}
.list .list-row > span a {
  color: var(--army-black);
  text-decoration: underline;
}
.list .list-row > span.actions, .list .list-row td.actions {
  justify-self: end;
}
.list .list-row > span.actions span.more-img, .list .list-row td.actions span.more-img {
  position: relative;
}
.list .list-row > span.actions span.more-img img, .list .list-row td.actions span.more-img img {
  height: 23px;
  width: 48px;
  cursor: pointer;
  position: relative;
}
.list .list-row > span.actions span.more-img .popup, .list .list-row td.actions span.more-img .popup {
  z-index: 90;
  box-shadow: 0.25rem 0.25rem 0.25rem var(--light-camo);
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: none;
  width: 200px;
  border: 1px solid #aaa;
  background: var(--white);
  padding: 1rem;
  font-size: 0.85rem;
}
.list .list-row > span.actions span.more-img .popup.open, .list .list-row td.actions span.more-img .popup.open {
  display: flex;
  flex-direction: column;
}
.list .list-row > span.actions span.more-img .popup img, .list .list-row td.actions span.more-img .popup img {
  position: absolute;
  top: 7px;
  right: 7px;
}
.list .list-row:nth-child(odd) {
  background-color: var(--gray-4);
}

body {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  font-weight: normal;
  color: var(--army-black);
  font-size: 0.875rem;
  line-height: 22px;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 24px;
  }
}

h1,
.header {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 2.125rem;
  line-height: 1.625rem;
  margin-bottom: 2rem;
  color: var(--army-black);
}
h1.hero,
.header.hero {
  font-size: 4.25rem;
}
h1.edit-request,
.header.edit-request {
  align-items: baseline;
}
h1 div.status,
.header div.status {
  font-size: 1.25rem;
  padding-left: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2,
.subhead {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 2rem;
  color: var(--army-black);
}

h3 {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.625rem;
  text-transform: capitalize;
  color: var(--army-black);
}

h4 {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.625rem;
}

button,
.btn {
  font-family: Overpass, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.875rem !important;
  line-height: 1.25rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--army-black);
}

.welcome-button {
  padding: 2rem 0;
}
.welcome-button input, .welcome-button button {
  margin: 0 auto;
}

.welcome-links {
  flex-direction: column;
  text-align: center;
  margin-top: 10px;
}

.register-welcome-links {
  flex-direction: column;
  margin-top: 10px;
}

.left-detail-row {
  margin-bottom: 0.5rem;
  display: flex !important;
  grid-template-columns: 3fr 7fr;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.left-detail-row label {
  color: var(--gray-2);
  font-weight: 700;
  margin: 0;
  justify-self: end;
  padding-right: 1rem;
}

.status-content-list-item {
  font-family: "Overpass";
  font-weight: 300;
  margin: 1em 0 1em 0;
}

.status-content-list-item-indent {
  font-family: "Overpass";
  font-weight: 300;
  margin: 1em 0 1em 20px;
}

.status-content-list-item img {
  width: 14px;
  height: 12px;
  margin-right: 10px;
}

#top-container-img {
  position: absolute;
  right: 2vw;
  top: 3em;
  width: 40.5vw;
  height: 40vw;
}

.search-form {
  padding-top: 1rem;
}
.search-form .search-row {
  display: grid;
  grid-template-columns: 7.5fr 2.5fr;
  grid-gap: 0.5rem;
}
.search-form .search-row-advanced {
  display: grid;
  grid-template-columns: 2.5fr 5fr 2.5fr;
  grid-gap: 0.5rem;
}
.search-form .clear {
  font-size: 0.75rem;
  text-transform: uppercase;
}/*# sourceMappingURL=application.css.map */