*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box; }
  @media screen and (max-width: 56.25em) {
    body {
      padding: 0; } }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: none;
  background-color: #007cc3;
  border: 0;
  border-radius: 0.2rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 1.2rem 2.4rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover, button:focus,
  [type="button"]:hover,
  [type="button"]:focus,
  [type="reset"]:hover,
  [type="reset"]:focus,
  [type="submit"]:hover,
  [type="submit"]:focus {
    background-color: rgba(0, 124, 195, 0.7);
    color: #fff; }
  button:disabled,
  [type="button"]:disabled,
  [type="reset"]:disabled,
  [type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.5; }
    button:disabled:hover,
    [type="button"]:disabled:hover,
    [type="reset"]:disabled:hover,
    [type="submit"]:disabled:hover {
      background-color: #007cc3; }

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  font-weight: 600;
  margin-bottom: 0.6rem;
  padding: 0; }

label {
  display: block;
  font-weight: normal;
  margin-bottom: 0.6rem; }

input,
select,
textarea {
  display: block;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.6rem; }

[type="color"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
input:not([type]),
textarea {
  appearance: none;
  background-color: #fff;
  border: 1px solid #f7f7f7;
  border-radius: 0.2rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  transition: border-color 150ms ease;
  width: 100%; }
  [type="color"]:hover,
  [type="date"]:hover,
  [type="datetime"]:hover,
  [type="datetime-local"]:hover,
  [type="email"]:hover,
  [type="month"]:hover,
  [type="number"]:hover,
  [type="password"]:hover,
  [type="search"]:hover,
  [type="tel"]:hover,
  [type="text"]:hover,
  [type="time"]:hover,
  [type="url"]:hover,
  [type="week"]:hover,
  input:not([type]):hover,
  textarea:hover {
    border-color: #c4c4c4; }
  [type="color"]:focus,
  [type="date"]:focus,
  [type="datetime"]:focus,
  [type="datetime-local"]:focus,
  [type="email"]:focus,
  [type="month"]:focus,
  [type="number"]:focus,
  [type="password"]:focus,
  [type="search"]:focus,
  [type="tel"]:focus,
  [type="text"]:focus,
  [type="time"]:focus,
  [type="url"]:focus,
  [type="week"]:focus,
  input:not([type]):focus,
  textarea:focus {
    border-color: #007cc3;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 124, 195, 0.7);
    outline: none; }
  [type="color"]:disabled,
  [type="date"]:disabled,
  [type="datetime"]:disabled,
  [type="datetime-local"]:disabled,
  [type="email"]:disabled,
  [type="month"]:disabled,
  [type="number"]:disabled,
  [type="password"]:disabled,
  [type="search"]:disabled,
  [type="tel"]:disabled,
  [type="text"]:disabled,
  [type="time"]:disabled,
  [type="url"]:disabled,
  [type="week"]:disabled,
  input:not([type]):disabled,
  textarea:disabled {
    background-color: #f7f7f7;
    cursor: not-allowed; }
    [type="color"]:disabled:hover,
    [type="date"]:disabled:hover,
    [type="datetime"]:disabled:hover,
    [type="datetime-local"]:disabled:hover,
    [type="email"]:disabled:hover,
    [type="month"]:disabled:hover,
    [type="number"]:disabled:hover,
    [type="password"]:disabled:hover,
    [type="search"]:disabled:hover,
    [type="tel"]:disabled:hover,
    [type="text"]:disabled:hover,
    [type="time"]:disabled:hover,
    [type="url"]:disabled:hover,
    [type="week"]:disabled:hover,
    input:not([type]):disabled:hover,
    textarea:disabled:hover {
      border: 1px solid #f7f7f7; }
  [type="color"]::placeholder,
  [type="date"]::placeholder,
  [type="datetime"]::placeholder,
  [type="datetime-local"]::placeholder,
  [type="email"]::placeholder,
  [type="month"]::placeholder,
  [type="number"]::placeholder,
  [type="password"]::placeholder,
  [type="search"]::placeholder,
  [type="tel"]::placeholder,
  [type="text"]::placeholder,
  [type="time"]::placeholder,
  [type="url"]::placeholder,
  [type="week"]::placeholder,
  input:not([type])::placeholder,
  textarea::placeholder {
    color: #999; }

textarea {
  resize: vertical; }

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.6rem; }

[type="file"] {
  margin-bottom: 1.2rem;
  width: 100%; }

select {
  margin-bottom: 2.4rem;
  max-width: 100%;
  width: auto; }

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
  outline: 0.3rem solid rgba(0, 124, 195, 0.4);
  outline-offset: 0.2rem; }

input[type="search"] {
  box-sizing: border-box; }

/* ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; } */

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

figure {
  margin: 0; }

img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  margin: 2.4rem 0;
  text-align: left;
  width: 100%; }

thead {
  line-height: 1.3;
  vertical-align: bottom; }

tbody {
  vertical-align: top; }

tr {
  border-bottom: 1px solid #f7f7f7; }

th {
  font-weight: 600; }

th,
td {
  padding: 1.2rem 1.2rem 1.2rem 0; }

body {
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 1.2rem; }

h1 {
  font-size: 3.52rem; }

h2 {
  font-size: 2.88rem; }

h3 {
  font-size: 2.24rem; }

h4 {
  font-size: 1.92rem; }

h5 {
  font-size: 1.76rem; }

p {
  margin: 0 0 2rem; }

blockquote {
  padding: 0 4rem 1.2rem; }

/* a {
  color: #184265;
  text-decoration: none;
  transition: color 150ms ease;
  font-weight: 700; }
  a:active, a:focus, a:hover {
    color: #496085; } */

hr {
  border-bottom: 1px solid #f7f7f7;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 2.4rem 0; }

pre,
code,
tt {
  font: 1em "andale mono", "lucida console", monospace;
  line-height: 1.5; }

pre {
  background-color: #efefef;
  display: block;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #aaaaaa; }

abbr {
  border-bottom: 1px dotted #666666;
  cursor: help;
  white-space: nowrap; }

.gotoworkflow {
  position: fixed;
  right: 2rem;
  top: 10rem;
  background-color: #ffb900;
  border-radius: 1rem;
  padding: 1rem 1.3rem;
  z-index: 5;
  box-shadow: 1px 1px 2px #e2e2e2; }

.pending_alert {
  position: fixed;
  bottom: 0;
  right: 3rem;
  z-index: 9999; }
  .pending_alert p {
    padding: 1rem 2rem;
    margin: 0;
    background-color: orangered;
    border-radius: 1rem 1rem 0 0; }
  .pending_alert a {
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px black; }
    .pending_alert a:hover, .pending_alert a:focus {
      color: white;
      opacity: 0.9; }
