@font-face {
  font-family: NexaText;
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/NexaText-Book.woff") format("woff"),
    url("/assets/fonts/NexaText-Book.woff2") format("woff2"),
    url("/assets/fonts/NexaText-Book.eot") format("eot");
}
@font-face {
  font-family: NexaText;
  font-style: italic;
  font-weight: 300;
  src: url("/assets/fonts/NexaText-BookItalic.woff") format("woff"),
    url("/assets/fonts/NexaText-BookItalic.woff2") format("woff2"),
    url("/assets/fonts/NexaText-BookItalic.eot") format("eot");
}
@font-face {
  font-family: NexaText;
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/NexaText-Regular.woff") format("woff"),
    url("/assets/fonts/NexaText-Regular.woff2") format("woff2"),
    url("/assets/fonts/NexaText-Regular.eot") format("eot");
}
@font-face {
  font-family: NexaText;
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/NexaText-Bold.woff") format("woff"),
    url("/assets/fonts/NexaText-Bold.woff2") format("woff2"),
    url("/assets/fonts/NexaText-Bold.eot") format("eot");
}

.headerColorHex {
  background-color: #2b3b4c;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.alert {
  display: flex;
  padding: 1rem;
  margin-bottom: 1rem;
  align-items: center;
  border-radius: 0.5rem;
  color: #991b1b;
  background-color: #fef2f2;
  position: relative;
}

.alert svg {
  width: 1rem;
  height: 1rem;
}

.alert .text {
  margin-left: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.alert button {
  display: inline-flex;
  padding: 0.375rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
  color: #ef4444;
  background-color: #fef2f2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  margin-right: 10px;
}

.alert button:hover {
  background-color: #fecaca;
}

.alert button svg {
  width: 0.75rem;
  height: 0.75rem;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
.progress-bar-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

#output .pre-scrollable {
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  max-height: 340px;
  overflow-y: scroll;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
}

#output p {
  padding: 0;
  width: 100%;
}

#output kbd {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 10px;
}
