@charset "UTF-8";
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  white-space: pre-line;
}

h1 {
  font-size: 2.2rem;
  margin: 1rem 0;
}

h2 {
  margin: 2rem 0 1rem 0;
}

p {
  margin: 1rem 0;
}

app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  padding-bottom: 24px;
  background-color: var(--bgColor, transparent);
}

main {
  flex: 1;
  display: flex;
}

section {
  padding: 48px 24px 48px 24px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
section.align-left {
  text-align: left;
}
section.bg-white {
  background-color: #fff;
}
section.bg-gray {
  background-color: var(--bgColor, #f2f3f1);
}
section.flex-grow {
  flex: 1;
}
section > div {
  margin: 0 17%;
}
section > div > div.extra {
  margin-top: 10px;
}

ul.progress-list {
  list-style: none;
  padding: 0;
  margin: auto;
}
ul.progress-list > li {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  background: #fff;
  padding: 2rem 4rem;
}
ul.progress-list > li.checked {
  color: #545454;
}
ul.progress-list > li.checked figure.icon-blob {
  background-color: #545454;
  position: relative;
}
ul.progress-list > li.checked figure.icon-blob:after {
  content: " ";
  height: 3rem;
  width: 3rem;
  background-color: #10d9c5;
  background-image: url("assets/checkmark.svg");
  background-size: 55%;
  background-position: 55% 55%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 10px #10d9c5;
}
ul.progress-list > li.checked .btn-primary {
  background: none;
  color: #000000;
  border: 1px solid #545454;
}
ul.progress-list > li.checked .btn-primary:hover, ul.progress-list > li.checked .btn-primary.active {
  background-color: #545454;
  color: #fff;
}
ul.progress-list > li:after {
  content: "........................";
  width: 4px;
  height: 4.4rem;
  color: #545454;
  line-height: 7px;
  position: absolute;
  overflow-wrap: break-word;
  left: 50%;
  bottom: -4rem;
}
ul.progress-list > li figure {
  margin: -5rem auto auto;
}
ul.progress-list > li:last-child:after {
  display: none;
}

ul.users-list {
  list-style: none;
  padding: 0;
  margin-left: 4rem;
  display: flex;
  flex-direction: column;
}
ul.users-list li.sub-list {
  padding: 0.25rem 1rem;
  margin: 0.5rem 0;
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
ul.users-list li.sub-list span {
  display: block;
}
ul.users-list li.sub-list span.gray {
  color: #ccc;
}
ul.users-list li button {
  border: 1px solid #545454;
  border-radius: 0.5rem;
  padding: 2rem 2rem 2rem 1rem;
  width: 100%;
  text-align: left;
  margin-bottom: 1rem;
  background: none;
}

ul.items-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
}
ul.items-list li {
  display: flex;
  padding: 0.25rem 1rem;
  margin: 0.5rem 0;
  box-shadow: none;
  border: 1px solid black;
  background-color: rgba(16, 217, 197, 0.3);
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
ul.items-list li.deactivated {
  background-color: lightyellow;
}
ul.items-list li.greyedOut {
  background-color: lightgray;
}
ul.items-list li .description {
  text-align: left;
}
ul.items-list li > a {
  border: 1px solid black;
  padding: 0.25em 1em;
}
ul.items-list li button {
  display: flex;
}

.btn {
  user-select: none;
  border: none;
  padding: 1rem 2rem;
  margin: 1rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.btn.btn-primary, .btn.btn-primary-always {
  background-color: #2900dc;
  color: #fff;
}
.btn.btn-primary:hover, .btn.btn-primary.active, .btn.btn-primary-always:hover, .btn.btn-primary-always.active {
  background-color: rgb(31.4954545455, 0, 169);
}
.btn.btn-primary:focus, .btn.btn-primary-always:focus {
  background-color: rgb(21.9909090909, 0, 118);
}
.btn.btn-primary:disabled, .btn.btn-primary-always:disabled {
  background-color: rgb(185.0272727273, 169, 255);
  cursor: not-allowed;
}
.btn.btn.primary-always:focus {
  cursor: wait;
}
.btn.btn-outline-primary {
  background: #fff none;
  border: 1px solid #2900dc;
  color: #2900dc;
  display: flex;
  align-items: center;
}
.btn.btn-outline-primary:hover {
  background-color: rgb(216.5, 219.4615384615, 213.5384615385);
}
.btn.btn-outline-primary.active {
  background-color: rgb(216.5, 219.4615384615, 213.5384615385);
  text-decoration: underline;
}
.btn.btn-outline-primary.active:hover {
  background-color: rgb(191, 195.9230769231, 186.0769230769);
}
.btn.menu {
  width: 17rem;
}
.btn.btn-secondary, .btn.btn-tertiary {
  background-color: #f2f3f1;
}
.btn.btn-secondary:hover, .btn.btn-tertiary:hover {
  background-color: rgb(216.5, 219.4615384615, 213.5384615385);
}
.btn.btn-tertiary {
  padding: 0.5rem 1rem;
  border: 1px solid black;
}
.btn.btn-tertiary:disabled {
  cursor: wait;
}
.btn.btn-menu-primary {
  background-color: #fff;
  color: #545454;
  border: 1px solid #545454;
  padding: 0.5rem 1rem;
}
.btn.btn-menu-primary:hover, .btn.btn-menu-primary.active {
  background-color: #545454;
  color: #fff;
}
.btn.btn-menu-primary:focus {
  cursor: wait;
}

.btn-collapsible .widebtn {
  width: 50%;
  margin: 0.1rem 0.5rem;
}

.icon {
  height: 2rem;
  width: 2rem;
  margin: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.icon-blob {
  background: #2900dc;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon-chevron {
  margin-top: 0;
  background-image: url("assets/chevron.svg");
}
.icon-agreement {
  background-image: url("assets/agreement.svg");
  background-position: 55% 50%;
}
.icon-password {
  background-image: url("assets/password.svg");
  background-position: 50% 60%;
}
.icon-pin {
  background-image: url("assets/pin.svg");
  background-position: 55% 45%;
}
.icon-authenticator {
  background-image: url("assets/authenticator.svg");
  background-position: 50% 55%;
}
.icon-signout {
  background-image: url("assets/signout.svg");
  background-position: 50% 55%;
  background-size: cover;
  margin-left: 0;
  margin-right: 1rem;
}
.icon-home {
  background-image: url("assets/home.svg");
  background-position: 50% 55%;
  background-size: cover;
  margin-left: 0;
  margin-right: 1rem;
}
.icon-toolbox {
  background-image: url("assets/tool-box.svg");
  background-position: 50% 55%;
}
.icon-envelope {
  background-image: url("assets/envelope.svg");
  background-position: 50% 55%;
  margin-left: 0;
  margin-right: 1rem;
}
.icon-users {
  background-image: url("assets/multiple-neutral.svg");
  background-position: 50% 55%;
  margin-left: 0;
  margin-right: 1rem;
}
.icon-inline {
  margin-right: 5px;
}

.illustration {
  height: 8rem;
  width: 8rem;
  margin: 0.5rem auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.illustration-welcome {
  background-image: url("assets/illustration-welcome.svg");
}
.illustration-success {
  background-image: url("assets/illustration-success.svg");
}

.top-right {
  position: absolute;
  right: 2rem;
  z-index: -10;
}

.top-left {
  position: absolute;
  left: 2rem;
  z-index: -10;
}

[v-cloak] {
  display: none;
}

.cursorLoading {
  cursor: wait !important;
}

.wizard {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wizard section {
  padding: 48px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wizard ul.progress-list {
  width: 100%;
  max-width: 100%;
}
.wizard ul.progress-list > li {
  padding: 2rem 1rem;
}
.wizard ul.progress-list > li:after {
  display: none;
}
.wizard ul.items-list {
  width: 100%;
  margin: 1rem auto;
}
.wizard ul.items-list li.fixed-padding {
  padding: 1rem 1rem;
}
.wizard .collapsible {
  display: none;
}
.wizard .btn-collapsible .widebtn {
  width: 90%;
  margin: 0.5rem 0.5rem;
}

.termstext {
  font-size: 14px;
  font-weight: bold;
  margin: 5% 10%;
  text-align: left;
}

.desktop-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .termstext {
    font-size: 14px;
    font-weight: bold;
    margin: 5%;
    text-align: justify;
    hyphens: auto;
  }
  .termstext ul {
    margin: 0;
    padding: 0 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .wizard .btn-collapsible .widebtn {
    width: 25%;
    margin: 0.5rem 0.5rem;
  }
  .wizard ul.items-list {
    width: 50%;
    margin: 1rem auto;
  }
  .wizard ul.items-list.deactivated {
    width: 100%;
  }
  .wizard ul.progress-list {
    width: 80%;
  }
  .wizard ul.progress-list > li {
    padding: 2rem 4rem;
  }
  .tablet-only {
    display: none;
  }
  .desktop-only {
    display: block;
  }
}
@media only screen and (min-width: 1025px) {
  .top-right {
    position: absolute;
    right: 2rem;
    z-index: 10;
  }
  .top-left {
    position: absolute;
    left: 2rem;
    z-index: 10;
  }
  .device-only {
    display: none;
  }
}
.credential {
  text-align: left;
}

.subtext {
  color: darkgray;
}

.strong {
  font-weight: 700;
}

.footer {
  width: 50%;
  margin: auto;
  text-align: center;
  padding: 20px 0 20px 0;
}
.footer > a {
  font-size: 24px;
}

.flex {
  display: flex;
}

.popovermenu {
  position: absolute;
  z-index: 10;
}

.popovermenu .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #888;
}

.popovermenu .icon-bar + .icon-bar {
  margin-top: 4px;
}

.popovermenu .btn {
  padding: 1em 1em;
}

.popovermenu .btn.btn-outline-primary {
  display: block;
}

figure.client-logo {
  background: var(--clientLogoUrl) no-repeat top left/contain;
  background-color: var(--bgColor, transparent);
  height: 80px;
  margin: 0 20% 0;
  display: var(--clientLogoUrl, none);
}

.hoverToShow {
  position: relative;
  cursor: pointer;
  color: transparent;
  user-select: none;
}
.hoverToShow::before {
  content: "●●●●●●";
  color: black;
  position: absolute;
  left: 0;
  top: 0;
}
.hoverToShow:hover {
  color: black;
}
.hoverToShow:hover::before {
  content: "";
}
.hoverToShow.showText {
  color: black;
}
.hoverToShow.showText::before {
  content: "";
}

.notification {
  display: inline-block;
  margin: 1rem auto;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  font-weight: 400;
  line-height: 1.4;
}
.notification-success {
  background-color: #4CAF50;
  color: #fff;
}
.notification-success strong {
  font-weight: 600;
}
.notification-error {
  background-color: #f44336;
  color: #fff;
}
.notification-error strong {
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .notification {
    max-width: 90%;
    width: auto;
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
