*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

:host {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  display: block;
}

.duet-step {
  padding: 20px !important;
  font-family: "localtapiola-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 600;
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 6px 0 rgba(0, 41, 77, 0.07), 0 -1px 0 0 rgba(0, 0, 0, 0.09), -1px 0 0 0 rgba(0, 0, 0, 0.07), 1px 0 0 0 rgba(0, 0, 0, 0.07), 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.duet-step.duet-theme-turva {
  font-family: "turva-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  box-shadow: 0 2px 6px 0 rgba(117, 117, 117, 0.13), 0 -1px 0 0 rgba(0, 0, 0, 0.09), -1px 0 0 0 rgba(0, 0, 0, 0.07), 1px 0 0 0 rgba(0, 0, 0, 0.07), 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.duet-step.rounded-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.duet-step.rounded-bottom {
  margin-bottom: 20px !important;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
@media (min-width: 36em) {
  .duet-step.rounded-bottom {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 36em) {
  .duet-step {
    padding: 0 20px 0 0 !important;
    margin: 0 !important;
    font-size: 1.25rem;
    box-shadow: none !important;
  }
}

.duet-step-heading {
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.duet-step-heading:focus {
  outline: 0;
}
:host(.user-is-tabbing) .duet-step-heading:focus {
  outline: 2px solid;
  outline-offset: 2px;
  outline-color: rgba(0, 119, 179, 0.8);
}
.duet-theme-turva :host(.user-is-tabbing) .duet-step-heading:focus, :host(.user-is-tabbing) .duet-step-heading:focus.duet-theme-turva, .duet-theme-turva2 :host(.user-is-tabbing) .duet-step-heading:focus, :host(.user-is-tabbing) .duet-step-heading:focus.duet-theme-turva2 {
  outline-color: rgba(53, 79, 101, 0.8);
}
.duet-step-heading[aria-disabled=false] {
  cursor: pointer;
}
.duet-step-heading:active {
  opacity: 0.75;
}
.is-complete .duet-step-heading:hover .duet-step-counter, .is-disabled .duet-step-heading:hover .duet-step-counter {
  background-color: #005f8f;
}
.duet-theme-turva.is-complete .duet-step-heading:hover .duet-step-counter, .duet-theme-turva.is-disabled .duet-step-heading:hover .duet-step-counter {
  background-color: #9e0a26;
}
.is-current .duet-step-heading {
  margin-bottom: 20px;
}
@media (min-width: 36em) {
  .duet-step-heading {
    margin-top: 8px;
    margin-bottom: 8px !important;
  }
  :host(:first-of-type) .duet-step-heading {
    margin-top: 0;
  }
  :host(:last-of-type) .duet-step-heading {
    margin-bottom: 0 !important;
  }
}

.duet-step-counter {
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 50%;
  transition: background-color 300ms ease;
}
@media (min-width: 36em) {
  .duet-step-counter {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.is-complete .duet-step-counter, .is-current .duet-step-counter, .is-disabled .duet-step-counter {
  background-color: rgb(0, 119, 179);
}
.duet-theme-turva.is-complete .duet-step-counter, .duet-theme-turva.is-current .duet-step-counter, .duet-theme-turva.is-disabled .duet-step-counter {
  background-color: rgb(198, 12, 48);
}
.is-incomplete .duet-step-counter {
  background-color: rgb(98, 121, 138);
}
.duet-theme-turva.is-incomplete .duet-step-counter {
  background-color: rgb(143, 147, 158);
}

.duet-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
@media (min-width: 36em) {
  .duet-step-icon {
    width: 20px;
    height: 20px;
  }
}
.duet-step-icon duet-icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 36em) {
  .duet-step-icon duet-icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 36em) {
  .duet-step-content-wrapper {
    min-height: 20px;
    padding-left: 40px;
    margin-left: 19px;
    border-left: 2px solid rgb(212, 223, 229);
  }
  .duet-theme-turva .duet-step-content-wrapper {
    border-color: rgb(222, 224, 228);
  }
  :host(:last-of-type) .duet-step-content-wrapper {
    min-height: 0;
    border: transparent;
  }
}

.duet-step-content {
  display: none;
  padding-bottom: 16px;
}
@media (min-width: 36em) {
  .duet-step-content {
    padding-bottom: 28px;
  }
}
.is-current .duet-step-content {
  display: block;
}

.duet-step-heading-slot {
  display: none;
  margin-top: 2px;
}
@media (min-width: 48em) {
  .duet-step-heading-slot {
    display: block;
  }
}

:host(.duet-theme-turva2) .duet-theme-turva.is-complete .duet-step-counter,
:host(.duet-theme-turva2) .duet-theme-turva.is-current .duet-step-counter,
:host(.duet-theme-turva2) .duet-theme-turva.is-disabled .duet-step-counter {
  background-color: rgb(230, 23, 64);
}
:host(.duet-theme-turva2) .duet-theme-turva.is-complete .duet-step-heading:hover .duet-step-counter,
:host(.duet-theme-turva2) .duet-theme-turva.is-disabled .duet-step-heading:hover .duet-step-counter {
  background-color: #b81233;
}
:host(.duet-theme-turva2) .duet-theme-turva .duet-step-content-wrapper {
  border-color: rgb(251, 225, 209);
}