*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

@media only screen and (max-width: 90em) {
  html {
    box-sizing: border-box;
    font-size: 50.5%;
  }
}
@media only screen and (max-width: 25em) {
  html {
    box-sizing: border-box;
    font-size: 48%;
  }
}

input,
button {
  cursor: pointer;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  color: hsl(229, 24%, 87%);
  background-color: hsl(231, 100%, 99%);
}

.container {
  display: grid;
  height: 82vh;
  border-radius: 10px;
  max-width: 85rem;
  margin: 5vh auto;
  padding: 0.8rem;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  grid-template-columns: [sidebar-start] minmax(15rem, 28vw) [sidebar-end first-gap-start] minmax(1rem, 4rem) [first-gap-end content-start] minmax(35rem, 50vw) [content-end last-gap-start] minmax(0.5rem, 2rem) [last-gap-end];
}
@media only screen and (max-width: 25em) {
  .container {
    grid-template-columns: [content-start] minmax(40rem, 100vw) [content-end];
    grid-template-rows: [sidebar-start] 35vw [sidebar-end content-start] 1fr [content-end];
    padding: 0;
    margin: 0;
    justify-content: center;
    height: auto;
  }
}

.sidebar {
  background-image: url(/assets/images/bg-sidebar-desktop.svg);
  background-size: cover;
  background-position: bottom;
  grid-column: sidebar-start/sidebar-end;
  max-height: 99.9%;
  border-radius: 10px;
  padding: 3rem;
  list-style: none;
  border: 0;
  display: grid;
  grid-gap: 2rem;
  align-content: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 25em) {
  .sidebar {
    background-image: url(/assets/images/bg-sidebar-mobile.svg);
    background-position: center;
    grid-column: content-start/content-end;
    border-radius: 0;
    grid-row: sidebar-start/sidebar-end;
    grid-gap: 1.5rem;
    justify-content: center;
    padding: 3rem 0 0 0;
    grid-template-columns: repeat(4, min-content);
  }
}
.sidebar__item {
  display: grid;
  grid-template-columns: minmax(min-content, max-content) minmax(min-content, 1fr);
  grid-gap: 2rem;
  align-items: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 25em) {
  .sidebar__item {
    grid-gap: 1rem;
  }
}
.sidebar__item .sidebar__item-number {
  padding: 1rem 1.35rem;
  border-radius: 50%;
  border: 1px solid hsl(0, 0%, 100%);
  font-weight: 700;
}
@media only screen and (max-width: 25em) {
  .sidebar__item .sidebar__item-number {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .sidebar__item-text {
    display: none;
  }
}
.sidebar__item-text > * {
  margin-bottom: 0.5rem;
}
.sidebar__item-text h2 {
  margin-top: -2px;
  color: hsl(217, 100%, 97%);
  letter-spacing: 1px;
  font-weight: 700;
}
.sidebar__item-text h4 {
  font-size: 1.2rem;
  font-weight: 300;
}
.sidebar .sidebar__item--unfinished .sidebar__item-number {
  background-color: transparent;
}
.sidebar .sidebar__item--active .sidebar__item-number {
  color: hsl(243, 100%, 62%);
  background-color: hsl(217, 100%, 97%) !important;
}
.sidebar .sidebar__item--completed .sidebar__item-number {
  color: hsl(243, 100%, 62%);
  background-color: hsl(228, 100%, 84%) !important;
}

.form {
  grid-column: content-start/content-end;
  place-content: center;
}
@media only screen and (max-width: 25em) {
  .form {
    grid-column: 1/-1;
    grid-row: content-start/content-end;
    background-color: hsl(217, 100%, 97%);
  }
}

.form-step {
  display: grid;
  grid-template-rows: minmax(min-content, max-content) minmax(0, 1fr) minmax(min-content, max-content);
  padding: 2rem clamp(1rem, 7vw + 1rem, 2rem);
  row-gap: 1rem;
}
@media only screen and (max-width: 25em) {
  .form-step {
    padding: 0;
  }
}
.form-step__container {
  grid-row: 1/1;
  padding: 2rem 0;
  display: grid;
  row-gap: 2rem;
}
@media only screen and (max-width: 25em) {
  .form-step__container {
    max-width: 40rem;
    padding: 3rem;
    margin: auto;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    grid-row: 1/2;
    margin-top: -15%;
  }
}
.form-step__heading-2 {
  font-size: 2.7rem;
  color: hsl(213, 96%, 18%);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-step__heading p {
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(231, 11%, 63%);
}
.form-step__content {
  align-items: center;
}
.form-step__btns {
  grid-row: 4/4;
  width: 100%;
  background-color: hsl(0, 0%, 100%);
  display: grid;
  grid-template-columns: minmax(min-content, max-content) minmax(5rem, 1fr) minmax(min-content, max-content);
}

.btn {
  padding: 1.5rem 2.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 4px;
  border: 0;
}
@media only screen and (max-width: 25em) {
  .btn {
    margin: 2rem;
  }
}
.btn__prev {
  grid-column: 1/1;
  background-color: hsl(0, 0%, 100%);
  color: hsl(231, 11%, 63%);
}
.btn__prev:hover {
  color: hsl(213, 96%, 18%);
}
.btn__nxt {
  grid-column: 3/3;
  background-color: hsl(213, 96%, 18%);
  color: hsl(0, 0%, 100%);
}
.btn__nxt:hover {
  background-color: hsl(243, 100%, 62%);
}

.hidden {
  display: none;
}

.selected {
  background-color: hsl(217, 100%, 97%);
}

.disselected {
  background-color: transparent;
}

.info__group {
  margin-block-end: 1rem;
}
.info__group > * {
  display: block;
  padding-block: 1rem;
}
.info__group label {
  font-size: 1.3rem;
  color: hsl(213, 96%, 18%);
  font-weight: 700;
}
.info__input {
  padding: 1rem 2rem 1rem 1rem;
  width: 100%;
  border-radius: 5px;
}
.info__input--invalid {
  border: 1px solid hsl(354, 84%, 57%);
  border-radius: 4px;
}

.price-card__plan {
  max-width: 100%;
  display: flex;
  grid-gap: 1.5rem;
  justify-content: stretch;
}
@media only screen and (max-width: 25em) {
  .price-card__plan {
    flex-direction: column;
  }
}
.price-card__plan--hidden {
  display: none;
}
.price-card__item {
  position: relative;
  height: 18rem;
  width: 100%;
}
.price-card__item-contents {
  border-radius: 10px;
  border: 1px solid hsl(229, 24%, 87%);
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: grid;
  align-content: space-between;
  cursor: pointer;
}
.price-card__item-contents:hover, .price-card__item-contents:active {
  border: 1px solid hsl(243, 100%, 62%);
}
@media only screen and (max-width: 25em) {
  .price-card__item-contents {
    width: 100%;
    max-height: 15rem;
    align-content: center;
    grid-gap: 2rem;
    grid-template-columns: repeat(2, max-content);
  }
}
.price-card__checkbox {
  display: none;
}
.price-card__checkbox:checked ~ .price-card__item-contents {
  background-color: hsl(217, 100%, 97%);
}
.price-card__price-text > * {
  margin-bottom: 0.5rem;
}
.price-card__price-text h2 {
  color: hsl(213, 96%, 18%);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw + 1rem, 1.5rem);
}
.price-card__price-text h4 {
  font-size: 1.5rem;
  color: hsl(231, 11%, 63%);
  font-weight: 500;
}
@media only screen and (max-width: 25em) {
  .price-card__price-text h4 {
    font-size: 2.3rem;
  }
}
.price-card__price-text p {
  display: none;
}
@media only screen and (max-width: 25em) {
  .price-card__price-text p {
    font-size: 1.5rem;
    color: hsl(213, 96%, 18%);
    font-weight: 700;
    display: inline-block;
  }
}
.price-card__label-box {
  background-color: hsl(231, 100%, 99%);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-block: 1rem;
  border-radius: 0.7rem;
  margin-top: 1.5rem;
}
.price-card__label-box {
  width: 100%;
  align-items: center;
}
.price-card__label-box p {
  font-size: 1.5rem;
  font-weight: 700;
}
.price-card__switch {
  position: relative;
  display: inline-block;
  width: 5.3rem;
  height: 2.8rem;
}
.price-card__input {
  opacity: 0;
  width: 0;
  height: 0;
}
.price-card__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 3.4rem;
  background-color: hsl(213, 96%, 18%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.price-card__slider::before {
  position: absolute;
  content: "";
  height: 2rem;
  width: 2rem;
  left: 0.4rem;
  bottom: 0.4rem;
  border-radius: 50%;
  background-color: hsl(0, 0%, 100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.price-card__input:checked + .price-card__slider {
  background-color: hsl(213, 96%, 18%);
}
.price-card__input:focus + .price-card__slider {
  box-shadow: 0 0 0.1rem hsl(243, 100%, 62%);
}
.price-card__input:checked + .price-card__slider::before {
  -moz-transform: translateX(2.6rem);
  -webkit-transform: translateX(2.6rem);
  -ms-transform: translateX(2.6rem);
  transform: translateX(2.6rem);
}

.add-ons__plan {
  position: relative;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 1.5rem;
  justify-content: stretch;
}
.add-ons__plan--hidden {
  display: none;
}
.add-ons__item {
  border-radius: 10px;
  border: 1px solid hsl(229, 24%, 87%);
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.add-ons__item:hover, .add-ons__item:focus {
  border: 1px solid hsl(243, 100%, 62%);
}
@media only screen and (max-width: 25em) {
  .add-ons__item {
    width: 100%;
    max-height: 15rem;
    align-content: center;
    grid-gap: 2rem;
  }
}
.add-ons__item h2 {
  color: hsl(243, 100%, 62%);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw + 1rem, 1.5rem);
}
.add-ons__item-service {
  display: flex;
  gap: 2rem;
}
.add-ons__price-text > * {
  margin-bottom: 0.5rem;
}
.add-ons__price-text h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(213, 96%, 18%);
}
.add-ons__price-text p {
  font-weight: 500;
  color: hsl(231, 11%, 63%);
  font-size: 1.4rem;
  display: inline-block;
}

.finishing-up__plan {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 1.5rem;
  justify-content: stretch;
}
.finishing-up__plan--hidden {
  display: none;
}
.finishing-up__price-text {
  transition: all 0.8s ease-in-out;
}
.finishing-up__price-text > a {
  display: none;
}
.finishing-up__price-text:hover a {
  display: inline-block;
}
@media only screen and (max-width: 25em) {
  .finishing-up__price-text > a {
    display: inline-block;
  }
}
.finishing-up__summary {
  background-color: hsl(231, 100%, 99%);
  padding: 1rem;
  border-radius: 5px;
}
.finishing-up h4 {
  color: hsl(231, 11%, 63%);
  font-weight: 500;
  font-size: 1.4rem;
}
.finishing-up__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
}
.finishing-up__item:hover, .finishing-up__item:active, .finishing-up__item:focus {
  border-bottom: 1px solid hsl(229, 24%, 87%);
}
@media only screen and (max-width: 25em) {
  .finishing-up__item {
    width: 100%;
    max-height: 15rem;
    align-content: center;
    grid-gap: 2rem;
  }
}
.finishing-up__item h2 {
  color: hsl(213, 96%, 18%);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw + 1rem, 1.5rem);
}
.finishing-up__item-total {
  padding: 1.5rem 3rem;
}
.finishing-up__item-total h2 {
  color: hsl(243, 100%, 62%);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw + 1rem, 2rem);
}

.thanks {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 25em) {
  .thanks {
    justify-content: stretch;
    align-content: stretch;
  }
}
.thanks__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 25em) {
  .thanks__heading {
    margin-top: 7rem;
  }
}
.thanks__heading > *:not(:last-child) {
  margin-bottom: 2rem;
}
.thanks__heading img {
  width: 5rem;
  height: auto;
}
.thanks__heading h1 {
  font-size: 3rem;
  color: hsl(213, 96%, 18%);
  font-weight: 700;
}
.thanks__content {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  color: hsl(231, 11%, 63%);
}
@media only screen and (max-width: 25em) {
  .thanks__content {
    margin-bottom: 7rem;
  }
}

.hidden {
  display: none;
}

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