*, body {
  font-family: "Poppins", sans-serif;
}

header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
header .logo img {
  height: 48px;
}
header .menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media all and (max-width: 640px) {
  header .menu {
    display: none;
  }
}
header .menu p {
  font-weight: 600;
  font-size: 14px;
}
header .burger {
  display: none;
}
@media all and (max-width: 640px) {
  header .burger {
    display: block;
  }
  header .burger .lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  header .burger .lines .line {
    height: 1px;
    width: 32px;
    background-color: #000;
  }
}

@keyframes loader-01 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .loader-wrapper {
  display: none;
}
main .loader-wrapper.active {
  display: block;
}
main .loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60dvh;
  border-radius: 3px;
  font-size: 30px;
  padding: 1em;
  position: relative;
  margin-bottom: 0.25em;
  vertical-align: top;
  transition: 0.3s color, 0.3s border, 0.3s transform, 0.3s opacity;
}
main .loader .loader-01 {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
  border: 0.2em dotted #872878;
  border-radius: 50%;
  animation: 2s loader-01 linear infinite;
}
main .wrapper {
  max-width: 512px;
  width: 100%;
  display: none;
  padding-bottom: 20dvh;
  padding-top: 10dvh;
}
main .wrapper.step-2, main .wrapper.step-3, main .wrapper.step-4, main .wrapper.step-5, main .wrapper.step-6, main .wrapper.step-7 {
  padding-top: 2dvh;
  padding-bottom: 18dvh;
}
main .wrapper.active {
  display: block;
}
main .wrapper .image img {
  width: 100%;
}
main .wrapper .breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
}
main .wrapper .breadcrumb .item {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3803921569);
}
main .wrapper .breadcrumb .item.passed {
  color: #000;
}
main .wrapper .breadcrumb .item.active {
  color: #000;
  font-weight: 600;
}
main .wrapper .breadcrumb .divider {
  color: rgba(0, 0, 0, 0.3803921569);
  font-size: 12px;
}
main .wrapper h1 {
  font-size: 40px;
  font-weight: 600;
}
main .wrapper h3 {
  font-size: 20px;
  font-weight: 600;
}
main .wrapper .sub-title {
  font-size: 14px;
  margin-bottom: 20px;
}
main .wrapper .succes img {
  width: 60%;
  margin: 0 20%;
}
main .wrapper form .form-element {
  margin-bottom: 20px;
  width: 100%;
}
main .wrapper form .form-element label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
main .wrapper form .form-element input, main .wrapper form .form-element select {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  padding-left: 16px;
}
main .wrapper form .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
main .wrapper form .price h1 {
  font-size: 20px;
  margin-bottom: 0;
}
main .wrapper form .price h1 span {
  color: #872878;
}
main .wrapper form .price .sub-title {
  color: rgba(0, 0, 0, 0.3803921569);
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 40px;
}
main .wrapper form input[type=submit] {
  background-color: #872878;
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  border: 0px;
  color: white;
  font-weight: 600;
}
main .wrapper form .card-informations {
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
main .wrapper form .card-informations .logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
main .wrapper form .card-informations .logos img {
  height: 25px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 22px 0px;
}
@media all and (max-width: 640px) {
  footer {
    align-items: start;
    gap: 12px;
  }
}
footer img {
  height: 48px;
}
footer .gdpr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
@media all and (max-width: 640px) {
  footer .gdpr {
    flex-direction: column;
  }
}
footer .gdpr p {
  font-size: 12px;
  margin: 0;
}
footer p {
  font-size: 12px;
  margin: 0;
}/*# sourceMappingURL=main.css.map */