/* src/common/button.css */
.i-button-group {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
  margin-bottom: -15px;
}
.i-button-group--right {
  justify-content: end;
}
.i-button-group .i-button {
  margin-bottom: 15px;
}
@media only screen and (min-width: 480px) {
  .i-button-group {
    flex-direction: row;
  }
  .i-button-group .i-button {
    margin-left: 15px;
  }
  .i-button-group .i-button:first-child {
    margin-left: 0;
  }
}
.i-button {
  align-items: center;
  -webkit-appearance: none;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family:
    "idealo",
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 38px;
  max-width: 569px;
  min-width: 130px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 250ms ease-out,
    border-color 250ms ease-out,
    color 250ms ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  background-color: rgb(7, 113, 208);
  border-color: transparent;
  color: rgb(255, 255, 255);
}
.i-button:disabled,
.i-button[aria-disabled=true] {
  cursor: not-allowed;
}
.i-button:active,
.i-button:focus,
.i-button:hover {
  text-decoration: none;
}
.i-button:disabled,
.i-button[aria-disabled=true] {
  background-color: rgba(6, 101, 187, 0.5) !important;
  border-color: transparent !important;
  color: rgb(255, 255, 255) !important;
}
.i-button:hover,
.i-button:active,
.i-button:focus {
  background-color: rgb(6, 101, 187);
  border-color: transparent;
  color: rgb(255, 255, 255);
}
.i-button--expanded {
  width: 100%;
}
.i-button--ghost {
  background-color: transparent;
  border-color: rgb(7, 113, 208);
  color: rgb(7, 113, 208);
}
.i-button--ghost:disabled,
.i-button--ghost[aria-disabled=true] {
  background-color: transparent !important;
  border-color: rgba(6, 101, 187, 0.5) !important;
  color: rgba(6, 101, 187, 0.5) !important;
}
.i-button--ghost:hover,
.i-button--ghost:active,
.i-button--ghost:focus {
  background-color: rgba(6, 101, 187, 0.1);
  border-color: rgb(6, 101, 187);
  color: rgb(6, 101, 187);
}
.i-button--link {
  background-color: transparent;
  border-color: transparent;
  color: rgb(7, 113, 208);
}
.i-button--link:disabled,
.i-button--link[aria-disabled=true] {
  background-color: transparent !important;
  border-color: transparent !important;
  color: rgba(6, 101, 187, 0.5) !important;
}
.i-button--link:hover,
.i-button--link:active,
.i-button--link:focus {
  background-color: rgba(6, 101, 187, 0.1);
  border-color: transparent;
  color: rgb(6, 101, 187);
}
.i-button--warning {
  background-color: rgb(229, 36, 33);
  border-color: rgb(229, 36, 33);
  color: rgb(255, 255, 255);
}
.i-button--warning:disabled,
.i-button--warning[aria-disabled=true] {
  background-color: rgba(229, 36, 33, 0.5) !important;
  border-color: rgba(229, 36, 33, 0.5) !important;
  color: rgb(255, 255, 255) !important;
}
.i-button--warning:hover,
.i-button--warning:active,
.i-button--warning:focus {
  background-color: #d41c19;
  border-color: #d41c19;
  color: rgb(255, 255, 255);
}

/* src/common/emailList.css */
.email-list {
  contain: strict;
}
.email-list:not([data-length]),
.email-list[data-length="0"],
.email-list:not([data-length]) ~ *,
.email-list[data-length="0"] ~ *,
.email-list[data-length-valid="0"] ~ * {
  display: none;
}
.email-list tr > :first-child {
  width: 90%;
  text-align: left;
}
.email-list tr > :last-child {
  width: auto;
  text-align: center;
}
.email-list caption ul {
  display: table-row;
}
.email-list caption li {
  display: table-cell;
}
.email-list caption svg {
  height: 16px;
  width: 16px;
}
.email-entry .email-status:before {
  border-radius: 4px;
  display: block;
  font-size: 80%;
  line-height: 1;
  padding: 0.5em 0.5em;
  text-transform: uppercase;
  transition: background-color 1s ease-in-out, color 1s ease-in-out;
  white-space: nowrap;
}
.email-entry[data-status=error] .email-status:before {
  background-color: #e52421;
  color: #ffffff;
  content: "error";
}
.email-entry[data-status=invalid] .email-status:before {
  background-color: #fec002;
  color: #2d2d2d;
  content: "Malformed-Email";
}
.email-entry[data-status=pending] .email-status:before {
  background-color: #767676;
  color: #ffffff;
  content: "pending";
}
.email-entry[data-status=success] .email-status:before {
  background-color: #38bf84;
  color: #ffffff;
  content: "success";
}
.email-entry[data-status=valid] .email-status:before {
  background-color: #0771d0;
  color: #ffffff;
  content: "Wellformed-Email";
}
.email-entry svg {
  fill: currentColor;
}

/* src/account/account.css */
body:not(.is-logged-out) .show-for-is-logged-out,
body:not(.is-logged-in) .show-for-is-logged-in {
  display: none;
}

/* src/footer/footer.css */
.footer,
footer {
  background-color: #0a3761;
  color: #ffffff;
  line-height: 1.5;
  padding: 15px 30px;
  text-align: center;
  width: 100%;
}
footer a {
  color: inherit !important;
}
footer a:focus,
footer a:hover {
  text-decoration: underline;
}

/* src/header/header.css */
.header,
header {
  background-color: #0a3761;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  text-align: center;
}
header a > *,
header div > * {
  vertical-align: middle;
}
header a > *:not(:first-child):before,
header [is=account-info] > a:not(:first-child):before {
  content: "|";
  display: inline-block;
  padding: 0 1em;
}
header a {
  color: inherit !important;
  text-decoration: none !important;
}

/* src/information/information.css */
.account-info-item {
  display: flex;
  flex-direction: column;
}
.account-info-item td {
  border-top: 1px solid gray;
}
.account-info-item td:first-child {
  border-top: none;
}
td.not-found {
  background-color: #E6C3C3;
}
.account-info-attribute {
  font-family: monospace, monospace;
  margin: 0;
}

/* src/navigation/navigation.css */
nav.card {
  padding: 0 20px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li {
  border-bottom: 1px solid #e6e6e6;
}
nav.card li {
  margin: 0 -20px;
}
nav li.active {
  background-color: #f5f5f5;
}
nav.card li:last-child {
  border-bottom: 0 none;
}
nav a {
  display: flex;
  flex-flow: column;
  padding: 20px 54px;
  position: relative;
  white-space: nowrap;
}
nav.card a {
  padding-left: 64px;
}
nav a:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}
nav.card a:hover {
  background-color: inherit;
}
nav a img {
  height: 24px;
  left: 24px;
  position: absolute;
}
nav.card a img {
  height: 32px;
  top: 26px;
}
nav a small {
  color: initial;
}

/* src/index.css */
html {
  height: 100%;
  width: 100%;
}
body {
  background: #ffffff;
  color: #2d2d2d;
  line-height: 1.5;
  font-family: sans-serif;
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  visibility: visible;
  width: 100%;
  display: grid;
  grid-template-rows: 56px 1fr 52px;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "top top" "left right" "bot bot";
}
.footer,
footer {
  grid-area: bot;
}
.header,
header {
  grid-area: top;
}
main {
  background-color: #f5f5f5;
  display: flex;
  flex: 1 0 auto;
  grid-area: right;
  padding: 40px 30px 60px;
  position: relative;
}
.nav,
nav {
  grid-area: left;
  min-width: 15rem;
}
.main-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
.center .main-wrapper {
  align-items: center;
  justify-content: center;
}
.center .main-wrapper .ac-card {
  flex-grow: 0;
}
caption {
  text-align: start;
}
code {
  font-family:
    source-code-pro,
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
}
h1,
.h1 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.625rem;
}
h2,
.h2 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.625rem;
}
h3,
.h3 {
  font-size: 1rem;
  line-height: 1.375;
  margin-top: 0;
  margin-bottom: 0.625rem;
}
a {
  line-height: inherit;
  color: #0771d0;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #0665bb;
  text-decoration: underline;
}
label {
  cursor: pointer;
  user-select: none;
}
label input {
  cursor: pointer;
}
.i-button-group label {
  padding: 0 0.5rem 0.5rem 0;
}
.card {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 20px;
}
.input-list {
  list-style: none;
}
.input-list {
}
table {
  border-collapse: collapse;
  margin: 1rem 0;
  width: 100%;
}
td,
th {
  padding: 0.5rem;
}
td.error {
  background-color: rgba(255, 0, 0, 0.2);
}
td.success {
  background-color: rgba(0, 255, 0, 0.2);
}
thead {
  background-color: #e6e6e6;
}
tr {
  padding: 0.5rem 0;
}
.zebra tr:nth-child(2n+1) {
  background-color: #f0f0f0;
}
textarea {
  font-family: inherit;
  font-size: inherit;
  min-height: 10em;
  padding: 0.5rem;
  resize: vertical;
  width: calc(100% - 1rem);
}
input {
  font-family: inherit;
  font-size: inherit;
  min-height: 1em;
  padding: 0.5rem;
  resize: vertical;
  width: calc(100% - 1rem);
}
.error {
  color: #d41c19;
}
.hidden {
  display: none;
}
