@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,200..800;1,200..800&display=swap");
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(206, 94%, 87%);
  font-family: "Ubuntu", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  position: relative;
}
@media (min-width: 48em) {
  body {
    justify-content: center;
  }
}

ul {
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
}

a,
a:visited {
  text-decoration: none;
}

.hidden {
  display: none;
}

.wrap {
  flex-wrap: wrap;
}

.col-d {
  flex-direction: column;
}

.multiSForm {
  display: flex;
  gap: 1.875rem;
  flex-direction: column;
  position: relative;
  width: 100%;
}
@media (min-width: 48em) {
  .multiSForm {
    background-color: hsl(0, 0%, 100%);
    flex-direction: row;
    border-radius: 0.625rem;
    padding: 0.9375rem;
    width: clamp(750px, 85vw, 799px);
    gap: 0.9375rem;
  }
}

.sidebar {
  background-size: cover;
  background-image: url("../../../assets/images/bg-sidebar-mobile.svg");
  min-height: 11.25em;
}
@media (min-width: 48em) {
  .sidebar {
    min-width: 40%;
    border-radius: 0.625rem;
    background-image: url("../../../assets/images/bg-sidebar-desktop.svg");
  }
}
@media (min-width: 64em) {
  .sidebar {
    min-width: 30%;
  }
}
.sidebar__stepsList {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  padding-inline-start: 1.25rem;
  padding-block-start: 1.875rem;
}
@media (min-width: 48em) {
  .sidebar__stepsList {
    flex-direction: column;
    border-radius: 0.625rem;
  }
  .sidebar__stepsList > :not(:last-child) {
    margin-block-end: 0.9375rem;
  }
}
.sidebar__step {
  display: flex;
  gap: 0.625rem;
}
.sidebar__stepNum {
  border: 0.0625rem solid hsl(0, 0%, 100%);
  padding: 0.3125rem;
  border-radius: 50%;
  padding-block: 0.625rem;
  padding-inline: 0.9375rem;
  font-size: 1rem;
  color: hsl(0, 0%, 100%);
}
.sidebar__stepNum.active {
  background-color: hsl(206, 94%, 87%);
}
.sidebar__stepDetails {
  text-transform: uppercase;
  display: none;
}
@media (min-width: 48em) {
  .sidebar__stepDetails {
    display: flex;
    flex-direction: column;
  }
}
.sidebar__stepOrder {
  color: hsl(231, 11%, 63%);
  font-weight: 400;
  font-size: 0.9375rem;
  margin-block-end: 0.3125rem;
}
.sidebar__stepTitle {
  color: hsl(0, 0%, 100%);
  font-size: 1rem;
}

.steps {
  background-color: white;
  margin-inline: 1.25rem;
  border-radius: 0.625rem;
  padding-inline: 0.9375rem;
}
@media (min-width: 48em) {
  .steps {
    flex-grow: 1;
    min-height: 31.25em;
    position: relative;
  }
}
.steps .step {
  /*
  ####### Start step 1 style
  */
  /*
  ####### End Step 2 Style #########
  */
  /*
  #######  Step 3 Style #########
  */
  /*
  #######  End Step 3 Style #########
  */
}
.steps .step__title {
  color: hsl(213, 96%, 18%);
  text-transform: capitalize;
  margin-block-start: 1.25rem;
  margin-block-end: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
}
.steps .step__prag {
  color: hsl(231, 11%, 63%);
  margin-block-end: 1.875rem;
  line-height: 1.4;
}
.steps .step__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.steps .step__form > *:not(:last-child) {
  margin-block-end: 1.25rem;
}
.steps .step__formGroup {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.steps .step__formGroup label {
  color: hsl(213, 96%, 18%);
  display: flex;
  justify-content: space-between;
}
.steps .step__formGroup label .errorMsg {
  color: hsl(354, 84%, 57%);
  display: none;
}
.steps .step__formGroup input {
  padding-inline-start: 0.625rem;
  border: 1px solid hsl(229, 24%, 87%);
  border-radius: 0.625rem;
  padding-block: 0.9375rem;
}
.steps .step__formGroup input:focus {
  color: hsl(213, 96%, 18%);
  outline-color: hsl(243, 100%, 62%);
  outline-style: solid;
  font-weight: 500;
}
.steps .step__formGroup input:invalid {
  outline-color: hsl(354, 84%, 57%);
}
.steps .step__content {
  display: flex;
  gap: 1.25rem;
  margin-block-end: clamp(1.5625rem, 1rem + 6vw, 5rem);
}
.steps .step__cards {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 48em) {
  .steps .step__cards {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.625rem;
    flex-direction: row;
  }
}
@media (min-width: 64em) {
  .steps .step__cards {
    flex-wrap: nowrap;
  }
}
.steps .step__card {
  display: flex;
  padding-inline-start: 1.25rem;
  padding-inline-end: 1.25rem;
  border: 1px solid hsl(229, 24%, 87%);
  cursor: pointer;
  border-radius: 0.625rem;
  gap: 0.9375rem;
  padding-block: clamp(0.425rem, 1rem + 2vw, 4rem);
  align-items: center;
}
.steps .step__card.active {
  border: 1px solid blueviolet;
}
@media (min-width: 48em) {
  .steps .step__card {
    padding-inline-end: 1.25rem;
    align-items: center;
    flex-grow: 1;
    width: 9.375em;
  }
}
@media (min-width: 64em) {
  .steps .step__card {
    width: min(10.9375em, 75%);
    min-height: 12.5em;
    justify-content: space-around;
    flex-direction: column;
    align-items: baseline;
  }
}
.steps .step__card > * {
  pointer-events: none;
}
.steps .step__card img {
  width: 3.125em;
  align-self: flex-start;
}
.steps .step__cardDetails {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  color: hsl(231, 11%, 63%);
}
.steps .step__cardTitle {
  color: hsl(213, 96%, 18%);
}
.steps .step__yearlyDiscount {
  color: hsl(213, 96%, 18%);
  font-weight: 400;
  display: none;
}
.steps .step__yearlyDiscount.activeYearly {
  display: block;
}
.steps .step__toggleInfo {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  background-color: hsl(231, 100%, 99%);
}
@media (max-width: 33.75em) {
  .steps .step__toggleInfo {
    margin-block-end: 1.5625rem;
  }
}
.steps .step__toggleType {
  color: hsl(231, 11%, 63%);
}
.steps .step__toggleType.active {
  color: hsl(213, 96%, 18%);
}
.steps .step__toggleSwitch {
  display: inline-block;
  width: 3.125em;
  height: 1.5625em;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
}
.steps .step #step__toggleCheckbox {
  opacity: 0;
  width: 0;
  height: 0;
}
.steps .step #step__toggleCheckbox:checked + .step__toggleSwitchSlider::before {
  transform: translateX(1.625em);
}
.steps .step__toggleSwitchSlider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border-radius: 2.5rem;
  background-color: hsl(213, 96%, 18%);
  transition: all 0.2s ease-in-out;
}
.steps .step__toggleSwitchSlider::before {
  content: "";
  position: absolute;
  left: 0.3125rem;
  bottom: 0.375rem;
  border-radius: 50%;
  background-color: hsl(0, 0%, 100%);
  width: 0.9375em;
  height: 0.9375em;
}
.steps .step__add-ons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-block: 1.25rem;
  border: 1px solid hsl(229, 24%, 87%);
  padding-inline: 1.25rem;
  border-radius: 0.625rem;
}
.steps .step__add-ons.checked, .steps .step__add-ons:hover {
  border-color: hsl(243, 100%, 62%);
  cursor: pointer;
}
.steps .step__add-ons.checked {
  background-color: hsl(206, 94%, 87%);
}
.steps .step #step__add-onsCheckbox {
  opacity: 0;
  width: 1.25em;
  height: 1.25em;
  position: relative;
  z-index: 2;
  cursor: pointer;
  border-radius: 0.3125rem;
}
.steps .step #step__add-onsCheckbox:checked + .step__checkMark::after {
  display: block;
}
.steps .step #step__add-onsCheckbox:checked + .step__checkMark {
  background: hsl(243, 100%, 62%);
  border: none;
}
.steps .step__checkMark {
  position: absolute;
  content: "";
  border: 1px solid hsl(229, 24%, 87%);
  width: 1.25em;
  height: 1.25em;
  border-radius: 0.3125rem;
}
.steps .step__checkMark::after {
  content: "";
  display: none;
  position: absolute;
  width: 0.375em;
  height: 1.25em;
  right: 0.375rem;
  border-bottom: 3px solid hsl(231, 100%, 99%);
  border-right: 3px solid hsl(231, 100%, 99%);
  bottom: 0.3125rem;
  transform: rotate(40deg);
}
.steps .step__add-onsDetails {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.steps .step__add-onsTitle {
  color: hsl(213, 96%, 18%);
}
.steps .step__add-onsDesc {
  color: hsl(231, 11%, 63%);
  font-size: 0.75rem;
}
.steps .step__add-onsPrice {
  flex-grow: 1;
  text-align: end;
  color: hsl(243, 100%, 62%);
}
.steps .step__choosen {
  background-color: hsl(231, 100%, 99%);
  border-radius: 0.3125rem;
  padding-block: 0.625rem;
  padding-inline: 0.9375rem;
}
.steps .step__finishingInfo {
  display: flex;
  justify-content: space-between;
  margin-block-end: 1.25rem;
  position: relative;
}
.steps .step__finishingInfo h4 {
  display: flex;
  flex-wrap: wrap;
  width: 35%;
  color: hsl(213, 96%, 18%);
  text-transform: capitalize;
  position: relative;
}
@media (min-width: 64em) {
  .steps .step__finishingInfo h4 {
    width: 25%;
  }
}
.steps .step__finishingInfo a {
  text-decoration: underline;
  color: hsl(231, 11%, 63%);
  cursor: pointer;
  margin-block: 5px;
}
.steps .step__finishingInfo a:hover {
  color: hsl(243, 100%, 62%);
}
.steps .step__finishingInfo h5 {
  font-size: 1rem;
  font-weight: 800;
  color: hsl(213, 96%, 18%);
}
.steps .step__finishingInfo::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 10px;
  width: calc(100% - 10px);
  height: 0.0625em;
  background-color: hsl(229, 24%, 87%);
}
.steps .step__selectedAddOns .addWrapper {
  display: flex;
  justify-content: space-between;
  color: hsl(231, 11%, 63%);
}
.steps .step__selectedAddOns .addWrapper h5 {
  font-size: 1rem;
}
.steps .step__selectedAddOns .addWrapper span {
  font-weight: 800;
  color: hsl(213, 96%, 18%);
}
.steps .step__selectedAddOns > * {
  margin-block-end: 0.625rem;
}
.steps .step__total {
  display: flex;
  justify-content: space-between;
}
.steps .step__totalPerM {
  display: flex;
  justify-content: space-between;
  color: hsl(231, 11%, 63%);
}
.steps .step__totalCalc {
  color: hsl(243, 100%, 62%);
  font-weight: 800;
}
.steps .step__thanks {
  align-items: center;
  margin-inline: auto;
  width: 80%;
}
@media (max-width: 33.75em) {
  .steps .step__thanks {
    padding-block: 1.875rem;
  }
}
@media (min-width: 48em) {
  .steps .step__thanks {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.buttons {
  display: flex;
  background-color: hsl(0, 0%, 100%);
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding-inline: 0.9375rem;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
}
@media (min-width: 48em) {
  .buttons {
    bottom: 0;
  }
}
.buttons .button {
  border-radius: 5px;
  border-style: solid;
  cursor: pointer;
  height: fit-content;
}
.buttons .button a {
  display: block;
  font-weight: 600;
  padding-block: 10px;
  padding-inline: 1.25rem;
}
.buttons .button--nextBtn {
  background-color: hsl(213, 96%, 18%);
  transition: opacity 0.3s ease-in-out;
}
.buttons .button--nextBtn.notWorking {
  display: none;
}
.buttons .button--nextBtn a {
  color: hsl(231, 100%, 99%);
}
.buttons .button--goBackBtn {
  opacity: 0;
  visibility: hidden;
  border-width: 0;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.buttons .button--goBackBtn.showing {
  opacity: 1;
  visibility: visible;
}
.buttons .button--goBackBtn a {
  color: hsl(231, 11%, 63%);
}
.buttons .button--goBackBtn a:hover {
  color: hsl(213, 96%, 18%);
}
.buttons .button--confirmBtn {
  display: none;
  background-color: hsl(243, 100%, 62%);
}
.buttons .button--confirmBtn a {
  color: hsl(0, 0%, 100%);
}
.buttons .button--confirmBtn a:hover {
  background-color: hsl(228, 100%, 84%);
}
.buttons .button--confirmBtn.show {
  display: block;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.5);
  z-index: 2;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.overlay.showOverlay {
  opacity: 1;
  visibility: visible;
}

.alertPopUp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: hsl(231, 100%, 99%);
  box-shadow: 0 0 1px black;
  padding: 50px;
  text-align: center;
  z-index: 3;
}
.alertPopUp__content {
  margin-inline: auto;
  color: hsl(243, 100%, 62%);
  font-size: 1rem;
  font-weight: 800;
}
.alertPopUp__close {
  cursor: pointer;
  color: hsl(354, 84%, 57%);
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.attribution {
  font-size: 11px;
  margin-inline: auto;
  text-align: center;
  color: hsl(243, 100%, 62%);
  margin-block-start: 30px;
  position: absolute;
  bottom: 100px;
}
@media (min-width: 48em) {
  .attribution {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.attribution a {
  color: hsl(213, 96%, 18%);
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */