/* node_modules/bulma-o-steps/bulma-steps.css */
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.steps:not(:last-child) {
  margin-bottom: 1.5rem;
}
.steps .steps-segment {
  position: relative;
}
.steps .steps-segment:not(:last-child):after {
  content: " ";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .steps:not(.is-horizontal) .steps-segment {
    display: block;
  }
  .steps:not(.is-horizontal) .steps-segment:not(:last-child) {
    min-height: 4em;
  }
  .steps:not(.is-horizontal).is-short .steps-segment {
    flex-grow: 0;
  }
  .steps:not(.is-horizontal).is-short.is-centered {
    justify-content: center;
  }
  .steps:not(.is-horizontal).is-short.is-bottom {
    justify-content: flex-end;
  }
  .steps:not(.is-horizontal):not(.is-short) {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .steps:not(.is-horizontal):not(.is-short) .steps-segment:not(:last-child) {
    flex-grow: 1;
  }
}
.steps.is-vertical .steps-segment {
  display: block;
}
.steps.is-vertical .steps-segment:not(:last-child) {
  min-height: 4em;
}
.steps.is-vertical.is-short .steps-segment {
  flex-grow: 0;
}
.steps.is-vertical.is-short.is-centered {
  justify-content: center;
}
.steps.is-vertical.is-short.is-bottom {
  justify-content: flex-end;
}
.steps.is-vertical:not(.is-short) {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.steps.is-vertical:not(.is-short) .steps-segment:not(:last-child) {
  flex-grow: 1;
}
@media screen and (min-width: 769px), print {
  .steps:not(.is-vertical) {
    display: flex;
  }
  .steps:not(.is-vertical) .steps-segment:not(:last-child) {
    flex-basis: 1rem;
    flex-grow: 1;
    flex-shrink: 1;
  }
  .steps:not(.is-vertical).is-narrow .steps-segment {
    flex-grow: 0;
  }
  .steps:not(.is-vertical).is-narrow .steps-segment:not(:last-child) {
    min-width: 10em;
  }
  .steps:not(.is-vertical).is-narrow.is-centered {
    justify-content: center;
  }
  .steps:not(.is-vertical).is-narrow.is-right {
    justify-content: flex-end;
  }
  .steps:not(.is-vertical).has-content-centered {
    text-align: center;
  }
  .steps:not(.is-vertical).is-balanced .steps-segment:last-child,
  .steps:not(.is-vertical).has-content-centered .steps-segment:last-child {
    flex-basis: 1rem;
    flex-grow: 1;
    flex-shrink: 1;
  }
  .steps:not(.is-vertical).is-narrow.has-content-centered .steps-segment:last-child {
    flex-grow: 0;
    min-width: 10em;
  }
  .steps:not(.is-vertical) .steps-content.is-divider-content {
    text-align: center;
  }
}
.steps.is-horizontal {
  display: flex;
}
.steps.is-horizontal .steps-segment:not(:last-child) {
  flex-basis: 1rem;
  flex-grow: 1;
  flex-shrink: 1;
}
.steps.is-horizontal.is-narrow .steps-segment {
  flex-grow: 0;
}
.steps.is-horizontal.is-narrow .steps-segment:not(:last-child) {
  min-width: 10em;
}
.steps.is-horizontal.is-narrow.is-centered {
  justify-content: center;
}
.steps.is-horizontal.is-narrow.is-right {
  justify-content: flex-end;
}
.steps.is-horizontal.has-content-centered {
  text-align: center;
}
.steps.is-horizontal.is-balanced .steps-segment:last-child,
.steps.is-horizontal.has-content-centered .steps-segment:last-child {
  flex-basis: 1rem;
  flex-grow: 1;
  flex-shrink: 1;
}
.steps.is-horizontal.is-narrow.has-content-centered .steps-segment:last-child {
  flex-grow: 0;
  min-width: 10em;
}
.steps.is-horizontal .steps-content.is-divider-content {
  text-align: center;
}
.steps .steps-marker {
  align-items: center;
  display: flex;
  border-radius: 50%;
  font-weight: 700;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.steps {
  font-size: 1rem;
}
.steps .steps-marker {
  height: 2rem;
  width: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .steps:not(.is-horizontal) {
    display: flex;
    flex-direction: column;
  }
  .steps:not(.is-horizontal) .steps-segment:not(:last-child):after {
    bottom: -0.24rem;
    left: calc(1rem - (0.2em));
    top: 1.76rem;
    width: 0.4em;
  }
  .steps:not(.is-horizontal) .steps-content {
    margin-left: calc(1rem + .5em);
    margin-top: -2rem;
    padding-left: 1em;
    padding-bottom: 1em;
  }
  .steps:not(.is-horizontal) .steps-content.is-divider-content {
    margin-top: 0;
    padding-bottom: 0;
  }
  .steps:not(.is-horizontal).has-content-centered .steps-content {
    padding-top: calc(1rem - .5em);
  }
  .steps:not(.is-horizontal):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps:not(.is-horizontal):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    top: 2.3rem;
    bottom: 0.3rem;
  }
}
.steps.is-vertical {
  display: flex;
  flex-direction: column;
}
.steps.is-vertical .steps-segment:not(:last-child):after {
  bottom: -0.24rem;
  left: calc(1rem - (0.2em));
  top: 1.76rem;
  width: 0.4em;
}
.steps.is-vertical .steps-content {
  margin-left: calc(1rem + .5em);
  margin-top: -2rem;
  padding-left: 1em;
  padding-bottom: 1em;
}
.steps.is-vertical .steps-content.is-divider-content {
  margin-top: 0;
  padding-bottom: 0;
}
.steps.is-vertical.has-content-centered .steps-content {
  padding-top: calc(1rem - .5em);
}
.steps.is-vertical:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-vertical:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  top: 2.3rem;
  bottom: 0.3rem;
}
@media screen and (min-width: 769px), print {
  .steps:not(.is-vertical) .steps-segment:not(:last-child):after {
    height: 0.4em;
    left: 1.76rem;
    right: -0.24rem;
    top: calc(1rem - (0.2em));
  }
  .steps:not(.is-vertical).has-content-above .steps-segment:not(:last-child)::after {
    bottom: calc(1rem - (0.2em));
    top: auto;
  }
  .steps:not(.is-vertical) .extra-data {
    left: calc(50% + 1.3rem);
    right: calc(-50% + 1.3rem);
    bottom: 100%;
    position: absolute;
  }
  .steps:not(.is-vertical) .extra-data.has-overflow-right {
    overflow: visible;
    right: auto;
    white-space: nowrap;
    min-width: calc(100% - 1rem - (0.2em));
  }
  .steps:not(.is-vertical) .extra-data.has-overflow-left {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 1rem - (0.2em));
  }
  .steps:not(.is-vertical) .extra-data.has-overflow-centered {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 1rem - (0.2em));
  }
  .steps:not(.is-vertical).has-content-above .extra-data {
    top: 100%;
    bottom: auto;
  }
  .steps:not(.is-vertical) .steps-content {
    margin-left: 1rem;
  }
  .steps:not(.is-vertical) .steps-content:not(:last-child) {
    margin-right: -1rem;
  }
  .steps:not(.is-vertical) .steps-content.is-divider-content {
    margin-right: -1rem;
    padding-left: 2em;
    padding-right: 2em;
  }
  .steps:not(.is-vertical).has-content-centered .steps-segment:not(:last-child):after {
    left: 50%;
    right: -50%;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .steps:not(.is-vertical).has-content-centered .steps-marker {
    position: absolute;
    left: calc(50% - 1rem);
  }
  .steps:not(.is-vertical).has-content-centered .steps-content {
    margin-top: 2rem;
    margin-left: .5em;
    margin-right: .5em;
    padding-top: .2em;
  }
  .steps:not(.is-vertical).has-content-above.has-content-centered .steps-content {
    margin-bottom: 2rem;
    padding-bottom: .2em;
  }
  .steps:not(.is-vertical):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps:not(.is-vertical):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    left: 2.3rem;
    right: 0.3rem;
  }
  .steps:not(.is-vertical):not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
  .steps:not(.is-vertical):not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
    left: calc(50% + 1.3rem);
    right: calc(-50% + 1.3rem);
  }
}
.steps.is-horizontal .steps-segment:not(:last-child):after {
  height: 0.4em;
  left: 1.76rem;
  right: -0.24rem;
  top: calc(1rem - (0.2em));
}
.steps.is-horizontal.has-content-above .steps-segment:not(:last-child)::after {
  bottom: calc(1rem - (0.2em));
  top: auto;
}
.steps.is-horizontal .extra-data {
  left: calc(50% + 1.3rem);
  right: calc(-50% + 1.3rem);
  bottom: 100%;
  position: absolute;
}
.steps.is-horizontal .extra-data.has-overflow-right {
  overflow: visible;
  right: auto;
  white-space: nowrap;
  min-width: calc(100% - 1rem - (0.2em));
}
.steps.is-horizontal .extra-data.has-overflow-left {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 1rem - (0.2em));
}
.steps.is-horizontal .extra-data.has-overflow-centered {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 1rem - (0.2em));
}
.steps.is-horizontal.has-content-above .extra-data {
  top: 100%;
  bottom: auto;
}
.steps.is-horizontal .steps-content {
  margin-left: 1rem;
}
.steps.is-horizontal .steps-content:not(:last-child) {
  margin-right: -1rem;
}
.steps.is-horizontal .steps-content.is-divider-content {
  margin-right: -1rem;
  padding-left: 2em;
  padding-right: 2em;
}
.steps.is-horizontal.has-content-centered .steps-segment:not(:last-child):after {
  left: 50%;
  right: -50%;
}
.steps.is-horizontal.has-content-centered .steps-marker {
  position: absolute;
  left: calc(50% - 1rem);
}
.steps.is-horizontal.has-content-centered .steps-content {
  margin-top: 2rem;
  margin-left: .5em;
  margin-right: .5em;
  padding-top: .2em;
}
.steps.is-horizontal.has-content-above.has-content-centered .steps-content {
  margin-bottom: 2rem;
  padding-bottom: .2em;
}
.steps.is-horizontal:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-horizontal:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  left: 2.3rem;
  right: 0.3rem;
}
.steps.is-horizontal:not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
.steps.is-horizontal:not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
  left: calc(50% + 1.3rem);
  right: calc(-50% + 1.3rem);
}
.steps.is-small {
  font-size: 0.75rem;
}
.steps.is-small .steps-marker {
  height: 1.5rem;
  width: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .steps.is-small:not(.is-horizontal) {
    display: flex;
    flex-direction: column;
  }
  .steps.is-small:not(.is-horizontal) .steps-segment:not(:last-child):after {
    bottom: -0.24rem;
    left: calc(0.75rem - (0.2em));
    top: 1.26rem;
    width: 0.4em;
  }
  .steps.is-small:not(.is-horizontal) .steps-content {
    margin-left: calc(0.75rem + .5em);
    margin-top: -1.5rem;
    padding-left: 1em;
    padding-bottom: 1em;
  }
  .steps.is-small:not(.is-horizontal) .steps-content.is-divider-content {
    margin-top: 0;
    padding-bottom: 0;
  }
  .steps.is-small:not(.is-horizontal).has-content-centered .steps-content {
    padding-top: calc(0.75rem - .5em);
  }
  .steps.is-small:not(.is-horizontal):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-small:not(.is-horizontal):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    top: 1.8rem;
    bottom: 0.3rem;
  }
}
.steps.is-small.is-vertical {
  display: flex;
  flex-direction: column;
}
.steps.is-small.is-vertical .steps-segment:not(:last-child):after {
  bottom: -0.24rem;
  left: calc(0.75rem - (0.2em));
  top: 1.26rem;
  width: 0.4em;
}
.steps.is-small.is-vertical .steps-content {
  margin-left: calc(0.75rem + .5em);
  margin-top: -1.5rem;
  padding-left: 1em;
  padding-bottom: 1em;
}
.steps.is-small.is-vertical .steps-content.is-divider-content {
  margin-top: 0;
  padding-bottom: 0;
}
.steps.is-small.is-vertical.has-content-centered .steps-content {
  padding-top: calc(0.75rem - .5em);
}
.steps.is-small.is-vertical:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-small.is-vertical:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  top: 1.8rem;
  bottom: 0.3rem;
}
@media screen and (min-width: 769px), print {
  .steps.is-small:not(.is-vertical) .steps-segment:not(:last-child):after {
    height: 0.4em;
    left: 1.26rem;
    right: -0.24rem;
    top: calc(0.75rem - (0.2em));
  }
  .steps.is-small:not(.is-vertical).has-content-above .steps-segment:not(:last-child)::after {
    bottom: calc(0.75rem - (0.2em));
    top: auto;
  }
  .steps.is-small:not(.is-vertical) .extra-data {
    left: calc(50% + 1.05rem);
    right: calc(-50% + 1.05rem);
    bottom: 100%;
    position: absolute;
  }
  .steps.is-small:not(.is-vertical) .extra-data.has-overflow-right {
    overflow: visible;
    right: auto;
    white-space: nowrap;
    min-width: calc(100% - 0.75rem - (0.2em));
  }
  .steps.is-small:not(.is-vertical) .extra-data.has-overflow-left {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 0.75rem - (0.2em));
  }
  .steps.is-small:not(.is-vertical) .extra-data.has-overflow-centered {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 0.75rem - (0.2em));
  }
  .steps.is-small:not(.is-vertical).has-content-above .extra-data {
    top: 100%;
    bottom: auto;
  }
  .steps.is-small:not(.is-vertical) .steps-content {
    margin-left: 0.75rem;
  }
  .steps.is-small:not(.is-vertical) .steps-content:not(:last-child) {
    margin-right: -0.75rem;
  }
  .steps.is-small:not(.is-vertical) .steps-content.is-divider-content {
    margin-right: -0.75rem;
    padding-left: 2em;
    padding-right: 2em;
  }
  .steps.is-small:not(.is-vertical).has-content-centered .steps-segment:not(:last-child):after {
    left: 50%;
    right: -50%;
  }
  .steps.is-small:not(.is-vertical).has-content-centered .steps-marker {
    position: absolute;
    left: calc(50% - 0.75rem);
  }
  .steps.is-small:not(.is-vertical).has-content-centered .steps-content {
    margin-top: 1.5rem;
    margin-left: .5em;
    margin-right: .5em;
    padding-top: .2em;
  }
  .steps.is-small:not(.is-vertical).has-content-above.has-content-centered .steps-content {
    margin-bottom: 1.5rem;
    padding-bottom: .2em;
  }
  .steps.is-small:not(.is-vertical):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-small:not(.is-vertical):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    left: 1.8rem;
    right: 0.3rem;
  }
  .steps.is-small:not(.is-vertical):not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
  .steps.is-small:not(.is-vertical):not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
    left: calc(50% + 1.05rem);
    right: calc(-50% + 1.05rem);
  }
}
.steps.is-small.is-horizontal .steps-segment:not(:last-child):after {
  height: 0.4em;
  left: 1.26rem;
  right: -0.24rem;
  top: calc(0.75rem - (0.2em));
}
.steps.is-small.is-horizontal.has-content-above .steps-segment:not(:last-child)::after {
  bottom: calc(0.75rem - (0.2em));
  top: auto;
}
.steps.is-small.is-horizontal .extra-data {
  left: calc(50% + 1.05rem);
  right: calc(-50% + 1.05rem);
  bottom: 100%;
  position: absolute;
}
.steps.is-small.is-horizontal .extra-data.has-overflow-right {
  overflow: visible;
  right: auto;
  white-space: nowrap;
  min-width: calc(100% - 0.75rem - (0.2em));
}
.steps.is-small.is-horizontal .extra-data.has-overflow-left {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 0.75rem - (0.2em));
}
.steps.is-small.is-horizontal .extra-data.has-overflow-centered {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 0.75rem - (0.2em));
}
.steps.is-small.is-horizontal.has-content-above .extra-data {
  top: 100%;
  bottom: auto;
}
.steps.is-small.is-horizontal .steps-content {
  margin-left: 0.75rem;
}
.steps.is-small.is-horizontal .steps-content:not(:last-child) {
  margin-right: -0.75rem;
}
.steps.is-small.is-horizontal .steps-content.is-divider-content {
  margin-right: -0.75rem;
  padding-left: 2em;
  padding-right: 2em;
}
.steps.is-small.is-horizontal.has-content-centered .steps-segment:not(:last-child):after {
  left: 50%;
  right: -50%;
}
.steps.is-small.is-horizontal.has-content-centered .steps-marker {
  position: absolute;
  left: calc(50% - 0.75rem);
}
.steps.is-small.is-horizontal.has-content-centered .steps-content {
  margin-top: 1.5rem;
  margin-left: .5em;
  margin-right: .5em;
  padding-top: .2em;
}
.steps.is-small.is-horizontal.has-content-above.has-content-centered .steps-content {
  margin-bottom: 1.5rem;
  padding-bottom: .2em;
}
.steps.is-small.is-horizontal:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-small.is-horizontal:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  left: 1.8rem;
  right: 0.3rem;
}
.steps.is-small.is-horizontal:not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
.steps.is-small.is-horizontal:not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
  left: calc(50% + 1.05rem);
  right: calc(-50% + 1.05rem);
}
.steps.is-medium {
  font-size: 1.25rem;
}
.steps.is-medium .steps-marker {
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .steps.is-medium:not(.is-horizontal) {
    display: flex;
    flex-direction: column;
  }
  .steps.is-medium:not(.is-horizontal) .steps-segment:not(:last-child):after {
    bottom: -0.24rem;
    left: calc(1.25rem - (0.2em));
    top: 2.26rem;
    width: 0.4em;
  }
  .steps.is-medium:not(.is-horizontal) .steps-content {
    margin-left: calc(1.25rem + .5em);
    margin-top: -2.5rem;
    padding-left: 1em;
    padding-bottom: 1em;
  }
  .steps.is-medium:not(.is-horizontal) .steps-content.is-divider-content {
    margin-top: 0;
    padding-bottom: 0;
  }
  .steps.is-medium:not(.is-horizontal).has-content-centered .steps-content {
    padding-top: calc(1.25rem - .5em);
  }
  .steps.is-medium:not(.is-horizontal):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-medium:not(.is-horizontal):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    top: 2.8rem;
    bottom: 0.3rem;
  }
}
.steps.is-medium.is-vertical {
  display: flex;
  flex-direction: column;
}
.steps.is-medium.is-vertical .steps-segment:not(:last-child):after {
  bottom: -0.24rem;
  left: calc(1.25rem - (0.2em));
  top: 2.26rem;
  width: 0.4em;
}
.steps.is-medium.is-vertical .steps-content {
  margin-left: calc(1.25rem + .5em);
  margin-top: -2.5rem;
  padding-left: 1em;
  padding-bottom: 1em;
}
.steps.is-medium.is-vertical .steps-content.is-divider-content {
  margin-top: 0;
  padding-bottom: 0;
}
.steps.is-medium.is-vertical.has-content-centered .steps-content {
  padding-top: calc(1.25rem - .5em);
}
.steps.is-medium.is-vertical:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-medium.is-vertical:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  top: 2.8rem;
  bottom: 0.3rem;
}
@media screen and (min-width: 769px), print {
  .steps.is-medium:not(.is-vertical) .steps-segment:not(:last-child):after {
    height: 0.4em;
    left: 2.26rem;
    right: -0.24rem;
    top: calc(1.25rem - (0.2em));
  }
  .steps.is-medium:not(.is-vertical).has-content-above .steps-segment:not(:last-child)::after {
    bottom: calc(1.25rem - (0.2em));
    top: auto;
  }
  .steps.is-medium:not(.is-vertical) .extra-data {
    left: calc(50% + 1.55rem);
    right: calc(-50% + 1.55rem);
    bottom: 100%;
    position: absolute;
  }
  .steps.is-medium:not(.is-vertical) .extra-data.has-overflow-right {
    overflow: visible;
    right: auto;
    white-space: nowrap;
    min-width: calc(100% - 1.25rem - (0.2em));
  }
  .steps.is-medium:not(.is-vertical) .extra-data.has-overflow-left {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 1.25rem - (0.2em));
  }
  .steps.is-medium:not(.is-vertical) .extra-data.has-overflow-centered {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 1.25rem - (0.2em));
  }
  .steps.is-medium:not(.is-vertical).has-content-above .extra-data {
    top: 100%;
    bottom: auto;
  }
  .steps.is-medium:not(.is-vertical) .steps-content {
    margin-left: 1.25rem;
  }
  .steps.is-medium:not(.is-vertical) .steps-content:not(:last-child) {
    margin-right: -1.25rem;
  }
  .steps.is-medium:not(.is-vertical) .steps-content.is-divider-content {
    margin-right: -1.25rem;
    padding-left: 2em;
    padding-right: 2em;
  }
  .steps.is-medium:not(.is-vertical).has-content-centered .steps-segment:not(:last-child):after {
    left: 50%;
    right: -50%;
  }
  .steps.is-medium:not(.is-vertical).has-content-centered .steps-marker {
    position: absolute;
    left: calc(50% - 1.25rem);
  }
  .steps.is-medium:not(.is-vertical).has-content-centered .steps-content {
    margin-top: 2.5rem;
    margin-left: .5em;
    margin-right: .5em;
    padding-top: .2em;
  }
  .steps.is-medium:not(.is-vertical).has-content-above.has-content-centered .steps-content {
    margin-bottom: 2.5rem;
    padding-bottom: .2em;
  }
  .steps.is-medium:not(.is-vertical):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-medium:not(.is-vertical):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    left: 2.8rem;
    right: 0.3rem;
  }
  .steps.is-medium:not(.is-vertical):not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
  .steps.is-medium:not(.is-vertical):not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
    left: calc(50% + 1.55rem);
    right: calc(-50% + 1.55rem);
  }
}
.steps.is-medium.is-horizontal .steps-segment:not(:last-child):after {
  height: 0.4em;
  left: 2.26rem;
  right: -0.24rem;
  top: calc(1.25rem - (0.2em));
}
.steps.is-medium.is-horizontal.has-content-above .steps-segment:not(:last-child)::after {
  bottom: calc(1.25rem - (0.2em));
  top: auto;
}
.steps.is-medium.is-horizontal .extra-data {
  left: calc(50% + 1.55rem);
  right: calc(-50% + 1.55rem);
  bottom: 100%;
  position: absolute;
}
.steps.is-medium.is-horizontal .extra-data.has-overflow-right {
  overflow: visible;
  right: auto;
  white-space: nowrap;
  min-width: calc(100% - 1.25rem - (0.2em));
}
.steps.is-medium.is-horizontal .extra-data.has-overflow-left {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 1.25rem - (0.2em));
}
.steps.is-medium.is-horizontal .extra-data.has-overflow-centered {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 1.25rem - (0.2em));
}
.steps.is-medium.is-horizontal.has-content-above .extra-data {
  top: 100%;
  bottom: auto;
}
.steps.is-medium.is-horizontal .steps-content {
  margin-left: 1.25rem;
}
.steps.is-medium.is-horizontal .steps-content:not(:last-child) {
  margin-right: -1.25rem;
}
.steps.is-medium.is-horizontal .steps-content.is-divider-content {
  margin-right: -1.25rem;
  padding-left: 2em;
  padding-right: 2em;
}
.steps.is-medium.is-horizontal.has-content-centered .steps-segment:not(:last-child):after {
  left: 50%;
  right: -50%;
}
.steps.is-medium.is-horizontal.has-content-centered .steps-marker {
  position: absolute;
  left: calc(50% - 1.25rem);
}
.steps.is-medium.is-horizontal.has-content-centered .steps-content {
  margin-top: 2.5rem;
  margin-left: .5em;
  margin-right: .5em;
  padding-top: .2em;
}
.steps.is-medium.is-horizontal.has-content-above.has-content-centered .steps-content {
  margin-bottom: 2.5rem;
  padding-bottom: .2em;
}
.steps.is-medium.is-horizontal:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-medium.is-horizontal:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  left: 2.8rem;
  right: 0.3rem;
}
.steps.is-medium.is-horizontal:not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
.steps.is-medium.is-horizontal:not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
  left: calc(50% + 1.55rem);
  right: calc(-50% + 1.55rem);
}
.steps.is-large {
  font-size: 1.5rem;
}
.steps.is-large .steps-marker {
  height: 3rem;
  width: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .steps.is-large:not(.is-horizontal) {
    display: flex;
    flex-direction: column;
  }
  .steps.is-large:not(.is-horizontal) .steps-segment:not(:last-child):after {
    bottom: -0.24rem;
    left: calc(1.5rem - (0.2em));
    top: 2.76rem;
    width: 0.4em;
  }
  .steps.is-large:not(.is-horizontal) .steps-content {
    margin-left: calc(1.5rem + .5em);
    margin-top: -3rem;
    padding-left: 1em;
    padding-bottom: 1em;
  }
  .steps.is-large:not(.is-horizontal) .steps-content.is-divider-content {
    margin-top: 0;
    padding-bottom: 0;
  }
  .steps.is-large:not(.is-horizontal).has-content-centered .steps-content {
    padding-top: calc(1.5rem - .5em);
  }
  .steps.is-large:not(.is-horizontal):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-large:not(.is-horizontal):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    top: 3.3rem;
    bottom: 0.3rem;
  }
}
.steps.is-large.is-vertical {
  display: flex;
  flex-direction: column;
}
.steps.is-large.is-vertical .steps-segment:not(:last-child):after {
  bottom: -0.24rem;
  left: calc(1.5rem - (0.2em));
  top: 2.76rem;
  width: 0.4em;
}
.steps.is-large.is-vertical .steps-content {
  margin-left: calc(1.5rem + .5em);
  margin-top: -3rem;
  padding-left: 1em;
  padding-bottom: 1em;
}
.steps.is-large.is-vertical .steps-content.is-divider-content {
  margin-top: 0;
  padding-bottom: 0;
}
.steps.is-large.is-vertical.has-content-centered .steps-content {
  padding-top: calc(1.5rem - .5em);
}
.steps.is-large.is-vertical:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-large.is-vertical:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  top: 3.3rem;
  bottom: 0.3rem;
}
@media screen and (min-width: 769px), print {
  .steps.is-large:not(.is-vertical) .steps-segment:not(:last-child):after {
    height: 0.4em;
    left: 2.76rem;
    right: -0.24rem;
    top: calc(1.5rem - (0.2em));
  }
  .steps.is-large:not(.is-vertical).has-content-above .steps-segment:not(:last-child)::after {
    bottom: calc(1.5rem - (0.2em));
    top: auto;
  }
  .steps.is-large:not(.is-vertical) .extra-data {
    left: calc(50% + 1.8rem);
    right: calc(-50% + 1.8rem);
    bottom: 100%;
    position: absolute;
  }
  .steps.is-large:not(.is-vertical) .extra-data.has-overflow-right {
    overflow: visible;
    right: auto;
    white-space: nowrap;
    min-width: calc(100% - 1.5rem - (0.2em));
  }
  .steps.is-large:not(.is-vertical) .extra-data.has-overflow-left {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 1.5rem - (0.2em));
  }
  .steps.is-large:not(.is-vertical) .extra-data.has-overflow-centered {
    overflow: visible;
    left: auto;
    white-space: nowrap;
    min-width: calc(100% - 1.5rem - (0.2em));
  }
  .steps.is-large:not(.is-vertical).has-content-above .extra-data {
    top: 100%;
    bottom: auto;
  }
  .steps.is-large:not(.is-vertical) .steps-content {
    margin-left: 1.5rem;
  }
  .steps.is-large:not(.is-vertical) .steps-content:not(:last-child) {
    margin-right: -1.5rem;
  }
  .steps.is-large:not(.is-vertical) .steps-content.is-divider-content {
    margin-right: -1.5rem;
    padding-left: 2em;
    padding-right: 2em;
  }
  .steps.is-large:not(.is-vertical).has-content-centered .steps-segment:not(:last-child):after {
    left: 50%;
    right: -50%;
  }
  .steps.is-large:not(.is-vertical).has-content-centered .steps-marker {
    position: absolute;
    left: calc(50% - 1.5rem);
  }
  .steps.is-large:not(.is-vertical).has-content-centered .steps-content {
    margin-top: 3rem;
    margin-left: .5em;
    margin-right: .5em;
    padding-top: .2em;
  }
  .steps.is-large:not(.is-vertical).has-content-above.has-content-centered .steps-content {
    margin-bottom: 3rem;
    padding-bottom: .2em;
  }
  .steps.is-large:not(.is-vertical):not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-large:not(.is-vertical):not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
    left: 3.3rem;
    right: 0.3rem;
  }
  .steps.is-large:not(.is-vertical):not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
  .steps.is-large:not(.is-vertical):not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
    left: calc(50% + 1.8rem);
    right: calc(-50% + 1.8rem);
  }
}
.steps.is-large.is-horizontal .steps-segment:not(:last-child):after {
  height: 0.4em;
  left: 2.76rem;
  right: -0.24rem;
  top: calc(1.5rem - (0.2em));
}
.steps.is-large.is-horizontal.has-content-above .steps-segment:not(:last-child)::after {
  bottom: calc(1.5rem - (0.2em));
  top: auto;
}
.steps.is-large.is-horizontal .extra-data {
  left: calc(50% + 1.8rem);
  right: calc(-50% + 1.8rem);
  bottom: 100%;
  position: absolute;
}
.steps.is-large.is-horizontal .extra-data.has-overflow-right {
  overflow: visible;
  right: auto;
  white-space: nowrap;
  min-width: calc(100% - 1.5rem - (0.2em));
}
.steps.is-large.is-horizontal .extra-data.has-overflow-left {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 1.5rem - (0.2em));
}
.steps.is-large.is-horizontal .extra-data.has-overflow-centered {
  overflow: visible;
  left: auto;
  white-space: nowrap;
  min-width: calc(100% - 1.5rem - (0.2em));
}
.steps.is-large.is-horizontal.has-content-above .extra-data {
  top: 100%;
  bottom: auto;
}
.steps.is-large.is-horizontal .steps-content {
  margin-left: 1.5rem;
}
.steps.is-large.is-horizontal .steps-content:not(:last-child) {
  margin-right: -1.5rem;
}
.steps.is-large.is-horizontal .steps-content.is-divider-content {
  margin-right: -1.5rem;
  padding-left: 2em;
  padding-right: 2em;
}
.steps.is-large.is-horizontal.has-content-centered .steps-segment:not(:last-child):after {
  left: 50%;
  right: -50%;
}
.steps.is-large.is-horizontal.has-content-centered .steps-marker {
  position: absolute;
  left: calc(50% - 1.5rem);
}
.steps.is-large.is-horizontal.has-content-centered .steps-content {
  margin-top: 3rem;
  margin-left: .5em;
  margin-right: .5em;
  padding-top: .2em;
}
.steps.is-large.is-horizontal.has-content-above.has-content-centered .steps-content {
  margin-bottom: 3rem;
  padding-bottom: .2em;
}
.steps.is-large.is-horizontal:not(.is-thin).has-gaps .steps-segment:not(:last-child):after,
.steps.is-large.is-horizontal:not(.is-thin) .steps-segment.has-gaps:not(:last-child):after {
  left: 3.3rem;
  right: 0.3rem;
}
.steps.is-large.is-horizontal:not(.is-thin).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
.steps.is-large.is-horizontal:not(.is-thin).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
  left: calc(50% + 1.8rem);
  right: calc(-50% + 1.8rem);
}
.steps-segment:after {
  background-color: #23d160;
}
.steps-segment.is-active:after {
  background-color: #dbdbdb;
}
.steps-segment.is-active ~ .steps-segment:after {
  background-color: #dbdbdb;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow) {
  background-color: #23d160;
  color: #fff;
}
.steps:not(.is-hollow) .steps-segment.is-active .steps-marker:not(.is-hollow) {
  background-color: #23d160;
  color: #fff;
}
.steps:not(.is-hollow) .steps-segment.is-active ~ .steps-segment .steps-marker:not(.is-hollow) {
  background-color: #dbdbdb;
  color: rgba(0, 0, 0, 0.7);
}
.steps.is-hollow .steps-marker,
.steps-marker.is-hollow {
  border: 0.3em solid #23d160;
}
.steps.is-hollow .is-active .steps-marker,
.steps .is-active .steps-marker.is-hollow {
  border-color: #23d160;
}
.steps.is-hollow .steps-segment.is-active ~ .steps-segment .steps-marker,
.steps-segment.is-active ~ .steps-segment .steps-marker.is-hollow {
  border-color: #dbdbdb;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-white {
  background-color: white !important;
  color: #0a0a0a !important;
}
.steps.is-hollow .steps-marker.is-white,
.steps .steps-marker.is-hollow.is-white {
  border-color: white !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-black {
  background-color: #0a0a0a !important;
  color: white !important;
}
.steps.is-hollow .steps-marker.is-black,
.steps .steps-marker.is-hollow.is-black {
  border-color: #0a0a0a !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-light {
  background-color: whitesmoke !important;
  color: #363636 !important;
}
.steps.is-hollow .steps-marker.is-light,
.steps .steps-marker.is-hollow.is-light {
  border-color: whitesmoke !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-dark {
  background-color: #363636 !important;
  color: whitesmoke !important;
}
.steps.is-hollow .steps-marker.is-dark,
.steps .steps-marker.is-hollow.is-dark {
  border-color: #363636 !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-primary {
  background-color: #00d1b2 !important;
  color: #fff !important;
}
.steps.is-hollow .steps-marker.is-primary,
.steps .steps-marker.is-hollow.is-primary {
  border-color: #00d1b2 !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-link {
  background-color: #3273dc !important;
  color: #fff !important;
}
.steps.is-hollow .steps-marker.is-link,
.steps .steps-marker.is-hollow.is-link {
  border-color: #3273dc !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-info {
  background-color: #209cee !important;
  color: #fff !important;
}
.steps.is-hollow .steps-marker.is-info,
.steps .steps-marker.is-hollow.is-info {
  border-color: #209cee !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-success {
  background-color: #23d160 !important;
  color: #fff !important;
}
.steps.is-hollow .steps-marker.is-success,
.steps .steps-marker.is-hollow.is-success {
  border-color: #23d160 !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-warning {
  background-color: #ffdd57 !important;
  color: rgba(0, 0, 0, 0.7) !important;
}
.steps.is-hollow .steps-marker.is-warning,
.steps .steps-marker.is-hollow.is-warning {
  border-color: #ffdd57 !important;
}
.steps:not(.is-hollow) .steps-marker:not(.is-hollow).is-danger {
  background-color: #ff3860 !important;
  color: #fff !important;
}
.steps.is-hollow .steps-marker.is-danger,
.steps .steps-marker.is-hollow.is-danger {
  border-color: #ff3860 !important;
}
@media screen and (max-width: 768px) {
  .steps:not(.is-horizontal).is-dashed .steps-segment:after,
  .steps:not(.is-horizontal) .steps-segment.is-dashed:after {
    background:
      repeating-linear-gradient(
        0deg,
        #23d160,
        #23d160 5px,
        transparent 5px,
        transparent 10px);
  }
  .steps:not(.is-horizontal).is-dashed .steps-segment.is-active:after,
  .steps:not(.is-horizontal).is-dashed .steps-segment.is-active ~ .steps-segment:after,
  .steps:not(.is-horizontal) .steps-segment.is-active.is-dashed:after,
  .steps:not(.is-horizontal) .steps-segment.is-active ~ .steps-segment.is-dashed:after {
    background:
      repeating-linear-gradient(
        0deg,
        #dbdbdb,
        #dbdbdb 5px,
        transparent 5px,
        transparent 10px);
  }
}
.steps.is-vertical.is-dashed .steps-segment:after,
.steps.is-vertical .steps-segment.is-dashed:after {
  background:
    repeating-linear-gradient(
      0deg,
      #23d160,
      #23d160 5px,
      transparent 5px,
      transparent 10px);
}
.steps.is-vertical.is-dashed .steps-segment.is-active:after,
.steps.is-vertical.is-dashed .steps-segment.is-active ~ .steps-segment:after,
.steps.is-vertical .steps-segment.is-active.is-dashed:after,
.steps.is-vertical .steps-segment.is-active ~ .steps-segment.is-dashed:after {
  background:
    repeating-linear-gradient(
      0deg,
      #dbdbdb,
      #dbdbdb 5px,
      transparent 5px,
      transparent 10px);
}
@media screen and (min-width: 769px), print {
  .steps:not(.is-vertical).is-dashed .steps-segment:after,
  .steps:not(.is-vertical) .steps-segment.is-dashed:after {
    background:
      repeating-linear-gradient(
        90deg,
        #23d160,
        #23d160 10px,
        transparent 10px,
        transparent 20px);
  }
  .steps:not(.is-vertical).is-dashed .steps-segment.is-active:after,
  .steps:not(.is-vertical).is-dashed .steps-segment.is-active ~ .steps-segment:after,
  .steps:not(.is-vertical) .steps-segment.is-active.is-dashed:after,
  .steps:not(.is-vertical) .steps-segment.is-active ~ .steps-segment.is-dashed:after {
    background:
      repeating-linear-gradient(
        90deg,
        #dbdbdb,
        #dbdbdb 10px,
        transparent 10px,
        transparent 20px);
  }
}
.steps.is-horizontal.is-dashed .steps-segment:after,
.steps.is-horizontal .steps-segment.is-dashed:after {
  background:
    repeating-linear-gradient(
      90deg,
      #23d160,
      #23d160 10px,
      transparent 10px,
      transparent 20px);
}
.steps.is-horizontal.is-dashed .steps-segment.is-active:after,
.steps.is-horizontal.is-dashed .steps-segment.is-active ~ .steps-segment:after,
.steps.is-horizontal .steps-segment.is-active.is-dashed:after,
.steps.is-horizontal .steps-segment.is-active ~ .steps-segment.is-dashed:after {
  background:
    repeating-linear-gradient(
      90deg,
      #dbdbdb,
      #dbdbdb 10px,
      transparent 10px,
      transparent 20px);
}
.steps.is-thin .steps-marker {
  width: 0.8em;
  height: 0.8em;
}
.steps.is-thin.is-hollow .steps-marker,
.steps.is-thin .steps-marker.is-hollow {
  border-width: 1px;
  height: calc(0.8em + 1px);
  width: calc(0.8em + 1px);
}
@media screen and (max-width: 768px) {
  .steps.is-thin:not(.is-horizontal) .steps-segment:not(:last-child):after {
    bottom: 0;
    left: calc(0.4em - 0.5px);
    top: 0.8em;
    width: 1px;
  }
  .steps.is-thin:not(.is-horizontal) .steps-content {
    margin-top: -1.2em;
    margin-left: 0.8em;
  }
  .steps.is-thin:not(.is-horizontal).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-thin:not(.is-horizontal) .steps-segment.has-gaps:not(:last-child):after {
    bottom: 0.4em;
    top: 1.2em;
  }
  .steps.is-thin:not(.is-horizontal).has-content-centered .steps-content {
    padding-top: 1.6em;
  }
}
.steps.is-thin.is-vertical .steps-segment:not(:last-child):after {
  bottom: 0;
  left: calc(0.4em - 0.5px);
  top: 0.8em;
  width: 1px;
}
.steps.is-thin.is-vertical .steps-content {
  margin-top: -1.2em;
  margin-left: 0.8em;
}
.steps.is-thin.is-vertical.has-gaps .steps-segment:not(:last-child):after,
.steps.is-thin.is-vertical .steps-segment.has-gaps:not(:last-child):after {
  bottom: 0.4em;
  top: 1.2em;
}
.steps.is-thin.is-vertical.has-content-centered .steps-content {
  padding-top: 1.6em;
}
@media screen and (min-width: 769px), print {
  .steps.is-thin:not(.is-vertical) .steps-segment:not(:last-child):after {
    left: 0.8em;
    right: 0;
    top: calc(0.4em - 0.5px);
    height: 1px;
  }
  .steps.is-thin:not(.is-vertical).has-content-above .steps-segment:not(:last-child)::after {
    bottom: calc(0.4em - 0.5px);
    top: auto;
  }
  .steps.is-thin:not(.is-vertical) .steps-content {
    margin-top: 0.8em;
  }
  .steps.is-thin:not(.is-vertical).has-content-centered .steps-segment:not(:last-child):after {
    left: calc(50% + 0.4em);
    right: calc(-50% + 0.4em);
  }
  .steps.is-thin:not(.is-vertical).has-content-centered .steps-marker {
    position: absolute;
    left: calc(50% - 0.4em);
  }
  .steps.is-thin:not(.is-vertical).has-gaps .steps-segment:not(:last-child):after,
  .steps.is-thin:not(.is-vertical) .steps-segment.has-gaps:not(:last-child):after {
    left: 1.2em;
    right: 0.4em;
  }
  .steps.is-thin:not(.is-vertical).has-content-centered.has-gaps .steps-segment:not(:last-child):after,
  .steps.is-thin:not(.is-vertical).has-content-centered .steps-segment.has-gaps:not(:last-child):after {
    left: calc(50% + 0.8em);
    right: calc(-50% + 0.8em);
  }
}
.steps.is-thin.is-horizontal .steps-segment:not(:last-child):after {
  left: 0.8em;
  right: 0;
  top: calc(0.4em - 0.5px);
  height: 1px;
}
.steps.is-thin.is-horizontal.has-content-above .steps-segment:not(:last-child)::after {
  bottom: calc(0.4em - 0.5px);
  top: auto;
}
.steps.is-thin.is-horizontal .steps-content {
  margin-top: 0.8em;
}
.steps.is-thin.is-horizontal.has-content-centered .steps-segment:not(:last-child):after {
  left: calc(50% + 0.4em);
  right: calc(-50% + 0.4em);
}
.steps.is-thin.is-horizontal.has-content-centered .steps-marker {
  position: absolute;
  left: calc(50% - 0.4em);
}
.steps.is-thin.is-horizontal.has-gaps .steps-segment:not(:last-child):after,
.steps.is-thin.is-horizontal .steps-segment.has-gaps:not(:last-child):after {
  left: 1.2em;
  right: 0.4em;
}
.steps.is-thin.is-horizontal.has-content-centered.has-gaps .steps-segment:not(:last-child):after,
.steps.is-thin.is-horizontal.has-content-centered .steps-segment.has-gaps:not(:last-child):after {
  left: calc(50% + 0.8em);
  right: calc(-50% + 0.8em);
}
.steps:not(.is-vertical).has-content-above .steps-segment {
  display: flex;
  flex-direction: column-reverse;
}
.steps:not(.is-vertical).has-content-above .steps-segment .steps-content {
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column-reverse;
}

/* src/style/app.scss */
:not(p) > a {
  text-decoration: none;
  color: inherit;
}
article {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  max-width: 100%;
}
article.container {
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  article {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  article.container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  article {
    padding-left: 2em;
    padding-right: 2em;
  }
  article.container {
    max-width: 720px;
  }
}
.icon {
  pointer-events: none;
}
[slot][middle] {
  justify-content: center;
}
.box {
  padding: 1.5rem;
  border-radius: 1rem;
}

/* fakecss:/app/src/libs/Article.esbuild-svelte-fake-css */
article.svelte-1l712yk {
  margin-top: 3.5rem;
  height: 100vh;
}

/* fakecss:/app/src/pages/Detailpengumuman.esbuild-svelte-fake-css */
article.svelte-rfs8l0 {
  margin-top: 3.5rem;
  word-spacing: 0.2em;
}
.timestamp.svelte-rfs8l0 {
  color: grey;
}

/* fakecss:/app/src/libs/Hero.esbuild-svelte-fake-css */
.title.svelte-1ql084h {
  color: black;
}
.subtitle.svelte-1ql084h {
  color: black;
}
@media (min-width: 768px) {
  .hero-body.svelte-1ql084h {
    padding-right: 10rem;
    padding-left: 10rem;
  }
  .custom-subtitle.svelte-1ql084h {
    font-size: 1.5rem;
  }
  .custom-title.svelte-1ql084h {
    font-size: 3rem;
  }
}
.hero.svelte-1ql084h {
  background-color: #eff2f6;
  background-image: var(--url);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-body.svelte-1ql084h {
  padding-top: 5rem;
}

/* fakecss:/app/src/modules/Pengumuman.esbuild-svelte-fake-css */
.pengumuman-container.svelte-25j2k3 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.p-pengumuman.svelte-25j2k3 {
  color: rgb(0, 119, 255);
  cursor: pointer;
  transition: padding-left 0.2s;
}
.p-pengumuman.svelte-25j2k3:hover {
  padding-left: 10px;
}
.header-pengumuman.svelte-25j2k3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.parent.svelte-25j2k3 {
  height: 300px;
  overflow: hidden;
}
.child.svelte-25j2k3 {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.box.svelte-25j2k3 {
  display: flex;
  flex-direction: column;
}
@keyframes svelte-25j2k3-moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.image.svelte-25j2k3 {
  animation: svelte-25j2k3-moveUpDown 3s infinite;
}

/* fakecss:/app/src/modules/Totalppm.esbuild-svelte-fake-css */
section.svelte-1kehiwo {
  background-image:
    linear-gradient(
      to bottom left,
      #d3413f,
      #993838);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* fakecss:/app/src/modules/Footer.esbuild-svelte-fake-css */
.copyright.svelte-1eb47uw {
  border-top: 1px solid white;
  padding-top: 10px;
  padding-bottom: 10px;
}
strong.svelte-1eb47uw {
  color: white;
}
.content-header.svelte-1eb47uw {
  margin-bottom: 20px;
}
p.svelte-1eb47uw {
  color: white;
}
.footer.svelte-1eb47uw {
  padding: 2rem;
  color: white;
  background-color: #363636;
}

/* fakecss:/app/src/pages/Login.esbuild-svelte-fake-css */
#errorLoginHandler.svelte-62xoz.svelte-62xoz {
  display: none;
}
article.container.svelte-62xoz.svelte-62xoz {
  padding-top: 10rem;
  text-align: center;
}
div.box.svelte-62xoz.svelte-62xoz {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 300px;
}
div.box.svelte-62xoz div.svelte-62xoz {
  text-align: left;
}
button.svelte-62xoz.svelte-62xoz {
  width: 100%;
}

/* fakecss:/app/src/pages/Logout.esbuild-svelte-fake-css */
article.svelte-1m5k0v3 {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.box.svelte-1m5k0v3 {
  height: auto;
  width: auto;
}

/* fakecss:/app/src/libs/Modal.esbuild-svelte-fake-css */
.close.svelte-az4q15 {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close.svelte-az4q15:hover,
.close.svelte-az4q15:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
b.svelte-az4q15 {
  display: block;
  font-weight: normal;
  z-index: 40;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
}
b.show.svelte-az4q15 {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
}
div.svelte-az4q15 {
  margin-left: 15px;
  margin-right: 15px;
  padding: 1em 1.5em;
  width: 50em;
  background: white;
  border-radius: 10px;
  z-index: 50;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* fakecss:/app/src/libs/Field.esbuild-svelte-fake-css */
p.select.svelte-1oy4l94 select.svelte-1oy4l94 {
  width: 100%;
}
input[type=month].svelte-1oy4l94.svelte-1oy4l94 {
  background-color: #5ca7f1;
  color: #ffffff;
  border: none;
  outline: none;
}
.svelte-1oy4l94.svelte-1oy4l94::-webkit-calendar-picker-indicator {
  background-color: #ffffff;
  padding: 6px;
  cursor: pointer;
  border-radius: 20px;
}
div.svelte-1oy4l94.svelte-1oy4l94 {
  display: grid;
  grid-template-columns: 12rem auto;
  gap: 1rem;
  line-height: 2.5;
}
div.svelte-1oy4l94 + div {
  margin-top: 0.5rem;
}
div.svelte-1oy4l94 > span {
  display: inline-flex;
  align-items: center;
  min-height: 2.375rem;
  column-gap: 0.35rem;
}
div.svelte-1oy4l94 > span * {
  margin: 0;
}
[href].svelte-1oy4l94.svelte-1oy4l94 {
  color: #35f;
}

/* fakecss:/app/src/libs/Fieldview.esbuild-svelte-fake-css */
ol.svelte-faswi.svelte-faswi {
  margin-left: 1.2em;
  margin-top: 1.5em;
}
ul.svelte-faswi.svelte-faswi {
  margin-left: 1.2em;
  margin-top: -1em;
}
ul.svelte-faswi li.svelte-faswi {
  margin-bottom: 4px;
}

/* fakecss:/app/src/pages/Penelitian.esbuild-svelte-fake-css */
article.svelte-1tuqe6w {
  margin-top: 3.5rem;
  word-spacing: 0.1em;
}
.border-bottom.svelte-1tuqe6w {
  border-bottom: 1px solid #cccccc;
}

/* fakecss:/app/src/pages/Pengabdianmasyarakat.esbuild-svelte-fake-css */
article.svelte-1tuqe6w {
  margin-top: 3.5rem;
  word-spacing: 0.1em;
}
.border-bottom.svelte-1tuqe6w {
  border-bottom: 1px solid #cccccc;
}

/* fakecss:/app/src/pages/Profil.esbuild-svelte-fake-css */
article.svelte-b4a7is {
  margin-top: 3.5rem;
  word-spacing: 0.1em;
}

/* fakecss:/app/src/pages/Strukturorganisasi.esbuild-svelte-fake-css */
article.svelte-1jxn14j {
  margin-top: 3.5rem;
  word-spacing: 0.1em;
}
.strukturOrganisasi-cotent.svelte-1jxn14j {
  padding-left: 1.2rem;
}

/* fakecss:/app/src/pages/Tokenexpired.esbuild-svelte-fake-css */
article.svelte-1axbk4p {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.box.svelte-1axbk4p {
  height: auto;
  width: auto;
}
img.svelte-1axbk4p {
  width: 70px;
  margin-bottom: 15px;
}

/* fakecss:/app/src/pages/Visidanmisi.esbuild-svelte-fake-css */
article.svelte-mm8ndj.svelte-mm8ndj {
  margin-top: 3.5rem;
  word-spacing: 0.1em;
}
.visi-container.svelte-mm8ndj.svelte-mm8ndj {
  margin-bottom: 2rem;
}
.visi-content.svelte-mm8ndj.svelte-mm8ndj {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  text-align: justify;
}
.visi-content.svelte-mm8ndj p.svelte-mm8ndj {
  line-height: 2;
}
.misi-content.svelte-mm8ndj.svelte-mm8ndj {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

/* fakecss:/app/src/libs/Modalchecked.esbuild-svelte-fake-css */
b.svelte-14lwwno {
  display: block;
  font-weight: normal;
  z-index: 17;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
}
b.show.svelte-14lwwno {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
}
.cookiesContent.svelte-14lwwno {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
}
img.svelte-14lwwno {
  width: 82px;
  margin-bottom: 15px;
}
p.svelte-14lwwno {
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  font-size: 18px;
}
.loader-wrapper.svelte-14lwwno {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 15px;
}
.loader.is-loading.svelte-14lwwno {
  border: 8px solid rgb(199, 199, 199);
  border-top: 8px solid #0ca170;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: svelte-14lwwno-spin 0.4s linear infinite;
}
@keyframes svelte-14lwwno-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/app/src/libs/Modalerror.esbuild-svelte-fake-css */
b.svelte-l76t32 {
  display: block;
  font-weight: normal;
  z-index: 17;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
}
b.show.svelte-l76t32 {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
}
.cookiesContent.svelte-l76t32 {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
}
img.svelte-l76t32 {
  width: 82px;
  margin-bottom: 15px;
}
p.svelte-l76t32 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 40px;
  font-size: 18px;
}

/* fakecss:/app/src/pages/admin/createuser.esbuild-svelte-fake-css */
.help.svelte-1lhj3n7 {
  margin: -6px 0px 0px 0px;
}

/* fakecss:/app/src/libs/Select.esbuild-svelte-fake-css */
div.svelte-96jy70.svelte-96jy70 {
  position: relative;
  display: inline-flex;
  width: 100%;
}
span.svelte-96jy70.svelte-96jy70 {
  z-index: 10;
  position: absolute;
  display: none;
  right: 0;
  left: 0;
  top: 40px;
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
}
a.svelte-96jy70.svelte-96jy70 {
  position: relative;
  display: block;
  margin: 0;
  padding: 0.25rem 1rem;
  text-decoration: none;
  color: inherit;
}
a.svelte-96jy70.svelte-96jy70:hover {
  background: #f0f6fd;
}
.select a.selected::after {
  content: "\2714";
  position: absolute;
  right: 0.25rem;
}
.focused.svelte-96jy70 + span.svelte-96jy70 {
  display: block;
}

/* fakecss:/app/src/pages/admin/detailppm.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-sov48l.svelte-sov48l {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-sov48l input.svelte-sov48l {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-sov48l.svelte-sov48l {
  margin: -6px 0px 0px 0px;
}
.toggle-button.svelte-sov48l.svelte-sov48l {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/pages/admin/home.esbuild-svelte-fake-css */
.centerText.svelte-g8zc3i {
  text-align: center;
}
.box.cardCounter.svelte-g8zc3i {
  display: flex;
}
.flex-item-left.svelte-g8zc3i {
  flex: 50%;
}
.flex-item-right.svelte-g8zc3i {
  flex: 50%;
}

/* fakecss:/app/src/pages/admin/pengumumanmanagement.esbuild-svelte-fake-css */
.parent.svelte-109deey {
  max-height: 60vh;
  overflow: hidden;
}
.child.svelte-109deey {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.box.svelte-109deey {
  display: flex;
  flex-direction: column;
}

/* fakecss:/app/src/pages/admin/ppmmanagement.esbuild-svelte-fake-css */
.judul.svelte-3ch4ub {
  text-align: justify;
}
.kegiatan.svelte-3ch4ub,
.skema.svelte-3ch4ub,
.status.svelte-3ch4ub,
.review.svelte-3ch4ub {
  text-align: center;
}
.review.svelte-3ch4ub {
  cursor: pointer;
}
.parent.svelte-3ch4ub {
  max-height: 60vh;
  overflow: hidden;
}
.child.svelte-3ch4ub {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.box.svelte-3ch4ub {
  display: flex;
  flex-direction: column;
}

/* fakecss:/app/src/pages/admin/profile.esbuild-svelte-fake-css */
.help.svelte-1lhj3n7 {
  margin: -6px 0px 0px 0px;
}

/* fakecss:/app/src/pages/admin/usersmanagement.esbuild-svelte-fake-css */
[fixed].svelte-ihtg2p {
  text-align: center;
}
.group.svelte-ihtg2p {
  padding: 0 0.5rem;
}
.active.svelte-ihtg2p {
  color: green;
  cursor: pointer;
}
.active.red.svelte-ihtg2p {
  color: orangered;
}
select.svelte-ihtg2p {
  border: none;
  box-shadow: none;
  background: inherit;
}
.parent.svelte-ihtg2p {
  height: 60vh;
  overflow: hidden;
}
.child.svelte-ihtg2p {
  height: 100%;
  margin-right: -20px;
  padding-right: 20px;
  scrollbar-width: thin;
  overflow-y: scroll;
}

/* fakecss:/app/src/modules/E404.esbuild-svelte-fake-css */
article.svelte-w5hzam {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* fakecss:/app/src/pages/dosen/approvalmanagement.esbuild-svelte-fake-css */
.judul.svelte-xyvxfs {
  text-align: justify;
}
.kegiatan.svelte-xyvxfs,
.skema.svelte-xyvxfs,
.status.svelte-xyvxfs,
.review.svelte-xyvxfs {
  text-align: center;
}
.review.svelte-xyvxfs {
  cursor: pointer;
}
.parent.svelte-xyvxfs {
  max-height: 500px;
  overflow: hidden;
}
.child.svelte-xyvxfs {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.box.svelte-xyvxfs {
  display: flex;
  flex-direction: column;
}

/* fakecss:/app/src/pages/dosen/detailapproval.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-nrcntm.svelte-nrcntm {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-nrcntm input.svelte-nrcntm {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-nrcntm.svelte-nrcntm {
  margin: -6px 0px 0px 0px;
}
.toggle-button.svelte-nrcntm.svelte-nrcntm {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/pages/dosen/detailppm.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-13e2x4u.svelte-13e2x4u {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-13e2x4u input.svelte-13e2x4u {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-13e2x4u.svelte-13e2x4u {
  margin: -6px 0px 0px 0px;
}
.toggle-button.svelte-13e2x4u.svelte-13e2x4u {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/pages/dosen/home.esbuild-svelte-fake-css */
.isi.svelte-1fu6z08 {
  text-align: center;
}
.parent.svelte-1fu6z08 {
  max-height: 400px;
  overflow: hidden;
}
.child.svelte-1fu6z08 {
  height: 100%;
  margin-right: -35px;
  padding-right: 25px;
  padding-bottom: 25px;
  scrollbar-width: thin;
  overflow-y: scroll;
}
.box.svelte-1fu6z08 {
  display: flex;
}
.flex-item-left.svelte-1fu6z08 {
  flex: 50%;
}
.flex-item-right.svelte-1fu6z08 {
  flex: 50%;
}

/* fakecss:/app/src/pages/dosen/pendaftaran.esbuild-svelte-fake-css */
.box.svelte-1f0wm8u {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header.svelte-1f0wm8u {
  margin-bottom: 20px;
}
.card-body.svelte-1f0wm8u {
  text-align: justify;
  color: rgb(118, 118, 118);
  margin-bottom: 10px;
}
.card-button.svelte-1f0wm8u {
  margin-top: auto;
  text-align: right;
}

/* fakecss:/app/src/pages/dosen/pendaftaranproposal.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-1iurio9.svelte-1iurio9 {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-1iurio9 input.svelte-1iurio9 {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-1iurio9.svelte-1iurio9 {
  margin: -6px 0px 0px 0px;
}
ul.svelte-1iurio9.svelte-1iurio9 {
  margin-left: 1em;
}
.toggle-button.svelte-1iurio9.svelte-1iurio9 {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/libs/Modalroute.esbuild-svelte-fake-css */
b.svelte-5cn8hs {
  display: block;
  font-weight: normal;
  z-index: 17;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
}
b.show.svelte-5cn8hs {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
}
.cookiesContent.svelte-5cn8hs {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 10px;
  padding: 30px;
}
p.svelte-5cn8hs {
  font-family: "Roboto", sans-serif;
  margin-bottom: 40px;
  font-size: 18px;
}
button.svelte-5cn8hs {
  border: none;
  border-radius: 5px;
  width: 200px;
  padding: 14px;
  font-size: 16px;
  color: white;
}

/* fakecss:/app/src/pages/dosen/ppmmanagement.esbuild-svelte-fake-css */
.judul.svelte-11az9xc {
  text-align: justify;
}
.kegiatan.svelte-11az9xc,
.skema.svelte-11az9xc,
.status.svelte-11az9xc,
.review.svelte-11az9xc {
  text-align: center;
}
.review.svelte-11az9xc {
  cursor: pointer;
}
.parent.svelte-11az9xc {
  max-height: 60vh;
  overflow: hidden;
}
.child.svelte-11az9xc {
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: thin;
}
.box.svelte-11az9xc {
  display: flex;
  flex-direction: column;
}

/* fakecss:/app/src/pages/dosen/profile.esbuild-svelte-fake-css */
.help.svelte-1lhj3n7 {
  margin: -6px 0px 0px 0px;
}

/* fakecss:/app/src/libs/ArticleError.esbuild-svelte-fake-css */
article.svelte-1okqpjj {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* fakecss:/app/src/pages/dosen/proposalhibaheksternal.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-1iurio9.svelte-1iurio9 {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-1iurio9 input.svelte-1iurio9 {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-1iurio9.svelte-1iurio9 {
  margin: -6px 0px 0px 0px;
}
ul.svelte-1iurio9.svelte-1iurio9 {
  margin-left: 1em;
}
.toggle-button.svelte-1iurio9.svelte-1iurio9 {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/pages/dosen/proposalhibahinternal.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-1iurio9.svelte-1iurio9 {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-1iurio9 input.svelte-1iurio9 {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-1iurio9.svelte-1iurio9 {
  margin: -6px 0px 0px 0px;
}
ul.svelte-1iurio9.svelte-1iurio9 {
  margin-left: 1em;
}
.toggle-button.svelte-1iurio9.svelte-1iurio9 {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/pages/dosen/proposalmandiri.esbuild-svelte-fake-css */
.inputf__wrapper.svelte-1iurio9.svelte-1iurio9 {
  position: relative;
  display: flex;
}
.inputf__wrapper.svelte-1iurio9 input.svelte-1iurio9 {
  width: 0;
  height: 0;
  opacity: 0;
}
.help.svelte-1iurio9.svelte-1iurio9 {
  margin: -6px 0px 0px 0px;
}
ul.svelte-1iurio9.svelte-1iurio9 {
  margin-left: 1em;
}
.toggle-button.svelte-1iurio9.svelte-1iurio9 {
  cursor: pointer;
  color: #fc6c78;
  font-size: small;
}

/* fakecss:/app/src/modules/Sidebar.esbuild-svelte-fake-css */
.menu-label.svelte-hu16du.svelte-hu16du {
  color: white;
}
aside.svelte-hu16du.svelte-hu16du {
  padding-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--sb-color);
  background: #434a54;
  width: var(--wide);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
}
.menu-list.svelte-hu16du a.svelte-hu16du {
  color: inherit;
  display: flex;
  align-items: center;
}
.menu-list.svelte-hu16du a .icon.svelte-hu16du {
  margin-right: 0.5em;
}
.menu-list.svelte-hu16du a.svelte-hu16du:hover {
  color: #434a54;
}
a.svelte-hu16du.svelte-hu16du {
  color: white;
}
@media (max-width: 768px) {
  aside.svelte-hu16du.svelte-hu16du {
    width: var(--narrow);
  }
  .menu-label.svelte-hu16du.svelte-hu16du,
  .menu-list.svelte-hu16du a .page-title.svelte-hu16du {
    display: none;
  }
  .menu-list.svelte-hu16du a .icon.svelte-hu16du {
    margin-right: 0;
  }
}

/* fakecss:/app/src/modules/Navbarmenu.esbuild-svelte-fake-css */
@media (min-width: 768px) {
  nav.svelte-1x4em6y.svelte-1x4em6y {
    padding: 0 10rem;
  }
}
header.svelte-1x4em6y.svelte-1x4em6y {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
}
nav.svelte-1x4em6y.svelte-1x4em6y {
  height: inherit;
  box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.295);
}
.navbar-item.svelte-1x4em6y img.svelte-1x4em6y {
  max-height: 3rem;
}

/* fakecss:/app/src/App.esbuild-svelte-fake-css */
aside ~ main {
  margin-left: var(--wide);
}
@media (max-width: 768px) {
  aside ~ main {
    margin-left: 5rem;
  }
}
