/* Styles for page GettingStarted */
.getting-started {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: var(--aurelia-ux--getting-started-background, var(--aurelia-ux--design-primary));
  color: var(--aurelia-ux--getting-started-foreground, var(--aurelia-ux--design-primary-foreground)); */
}

.getting-started__slots-container {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.getting-started__steps-container {
  align-self: flex-start;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  /* height: calc(100vh - 130px); this does not work in safari, we then do it from html */
  /* transition: height 100ms ease; Used for if we need to resize the div due to keyboard */
}

.getting-started__step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.getting-started__step > * {
  width: 100%;
}

.getting-started__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  padding: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.getting-started__step--centered {
  justify-content: center;
  padding-top: 0px;
}

.getting-started__step  h1,
.getting-started__step  h2,
.getting-started__step  h3,
.getting-started__step  h4,
.getting-started__step  h5,
.getting-started__step  h6,
.getting-started__step  p
 {
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.getting-started__step .ux-button--large {
  margin-top: 24px;
  margin-bottom: 24px;
  display: block;
}
.getting-started__secondary-buttons-row {
  margin-top: 32px;
  text-align: center;
}
.getting-started__accounts-list {
  width: 100%;
}
.getting-started__accounts-list .ux-list-item {
  cursor: pointer;
}
.getting-started__accounts-list .ux-list-item__secondary-content {
  color: inherit;
  font-size: 0.7rem;
}

.getting-started__language-selector-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  padding: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.getting-started__language-selector {
  border: 1px solid white;
  border-radius: 20px;
  height: 40px;
  min-width: 100px;
  display: flex;
  margin: 16px auto;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 16px;
}
.getting-started__language-selector > ux-icon {
  flex-shrink: 0;
}
.getting-started__language-selector > span {
  width: 100%;
  margin-left: 8px;
  margin-right: 8px;
}

.getting-started__ar-spinner-line {
  --aurelia-ux--ar-spinner-line-primary-color: var(--aurelia-ux--design-primary);
  --aurelia-ux--ar-spinner-line-accent-color: var(--aurelia-ux--design-primary-foreground);
  --aurelia-ux--ar-spinner-line-height: 2px;
}
.getting-started--no-wrap-span > span {
  white-space: nowrap;
}

.getting-started input:-webkit-autofill,
.getting-started input:-webkit-autofill:hover, 
.getting-started input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  font-size: 16px;
}