:root {
  --marineBlue: #223e20;
  --purplishBlue: #223e20;
  --pastelBlue: hsl(228, 100%, 84%);
  --lightBlue: #fff200;
  --strawberryRed: hsl(354, 84%, 57%);
  --coolGray: hsl(231, 11%, 70%);
  --lightGray: #faf7c3;
  --magnolia: hsl(217, 100%, 97%);
  --alabaster: hsl(231, 100%, 99%);
  --white: hsl(0, 0%, 100%);
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}


input, textarea {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 0px 0;
  width: 100%;
  font-size: 0.8rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
	padding: 12px 15px;
    width: auto;
}


p {
  margin: 0;
  font-size: 16px;
}

.formParentWrapper {
  display: flex;
  flex-direction: row;
  min-width: 65%;
  min-height: 520px;
  border-radius: 14px;
  padding: 12px;
  background-color: var(--white);
  margin-top: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  ;
  /* gap: 24px; */
  gap: 5px;
  width: 30%;
  padding: 28px;
  /* background-image: url(assets/images/bg-sidebar-desktop.svg); */
  /* background-image: url("https://multi-step-form98.netlify.app/assets/bg-sidebar-desktop.e6d2744a.svg"); */
  /* background-image: url("https://img.freepik.com/free-photo/golden-frame-blue-background_53876-92990.jpg?t=st=1719859030~exp=1719862630~hmac=1563c781c982de80eed6e633377f19c55fb7ff5e744e8728eba60cd7c7e86164&w=360"); */
  background: linear-gradient(0deg, rgba(80,109,72,1) 0%, rgba(102,143,91,1) 100%);
  object-fit: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  border-radius: 12px;
  padding-block: 32px;
}

.vertical-progress-bar {
  position: relative;
  width: 5px;
  background-color: #fff;
  margin: 0 13px;
  border-radius: 5px;
  height: 50px;
  overflow: hidden;
}

.vertical-progress-bar-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  /* background-color: #4caf50; */
  /* background-color: var(--lightBlue); */
  background-color: #1A2130;
  transition: height 0.3s ease-in-out;
}

@media all and (max-width: 630px) {



  .formParentWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 520px;
    border-radius: 14px;
    padding: 0;
    margin-top: 0px;
    /* background-color: var(--pastelBlue) !important; */
    background: linear-gradient(135deg, #435463, #6a798f, #91a0b6, #b8c8de, #dfeef8);

  }

  .vertical-progress-bar {
    position: relative;
    height: 5px;
    background-color: #fff;
    margin: 13px 0;
    border-radius: 5px;
    width: 50px;
    overflow: hidden;
  }

  .vertical-progress-bar-fill {
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--lightBlue);
    transition: width 0.3s ease-in-out;
  }

  .steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start !important;
    justify-content: center !important;
    /* gap: 0; */
    gap: 5px;
    width: 100% !important;
    padding-inline: 28px;
   
    background-repeat: repeat-x;
    object-fit: cover;
    -o-object-fit: cover !important;
    background-position: top;
    background-size: cover;
    border-radius: 0;
    min-height: 180px !important;
  }
  
  .stepInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 !important;
  }

  .rightSectionParent {
    position: absolute;
    top: 82px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    align-self: center;
    border-radius: 12px;
    gap: 24px;
  }

  .rightSectionWrapper {
    width: 92% !important;
    align-self: center;
    background-color: var(--white);
    border-radius: 12px;
    padding-block: 32px;
    padding-bottom: 40px;
  }

  .mainForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-inline: 24px;
  }

  .info {
    display: none;
  }

  .btnWrapper {
    width: 100% !important;
    background-color: var(--white);
    padding-bottom: 0 !important;
    padding-inline: 14px;
    padding-block: 16px !important;
  }

  .planParent {
    flex-direction: column !important;
  }

  .plan {
    padding-top: 24px !important;
    flex-direction: row !important;
    gap: 16px !important;
    min-height: 90px !important;
  }

  .checkBoxInfo {
    gap: 16px !important;
  }

  .thankMsg {
    max-width: 375px !important;
    padding-inline: 16px;
  }

  .thankContainer {
    align-items: center !important;
  }

  .label {
    display: none;
  }

}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 1px solid var(--white);
  color: white;
}

.step.active {
  background-color: var(--lightBlue);
  border: 1.875px solid var(--lightBlue);
  color: var(--marineBlue);
}

.stepInfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.lastStep {
  visibility: hidden;
}

.label {
  font-size: 10px;
  color: var(--lightGray);
  font-weight: 400;
}

.info {
  margin-top: 4px;
  color: var(--white);
  font-weight: 550;
  font-size: 12px;
  letter-spacing: 1px;
}

.rightSectionParent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.rightSectionWrapper {
  margin-top: 10px;
  width: 85%;
  align-self: center;
}

.formContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mainForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.personal {
  font-size: 36px;
  font-weight: 700;
  font-variant: normal;
  margin-bottom: 8px;
  color: var(--marineBlue);
}

.personalInfo {
  color: #595b59;
  font-size: 14px;
  font-weight: 450;
	line-height: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fieldParent input {
  width: 100%;
  padding-inline: 8px;
  padding-block: 12px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--marineBlue);
  cursor: pointer;
	height: 45px;
}

.fieldParent input:focus {
  border: 1.5px solid var(--purplishBlue);
}

.fieldParent input::placeholder {
  color: var(--coolGray);
  font-size: 14px;
  font-weight: 550;
}

.fieldParent select {
  width: 100%;
  padding-inline: 8px;
  padding-block: 12px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--marineBlue);
  cursor: pointer;
}


.fieldParent select:focus {
  border: 1.5px solid var(--purplishBlue);
}

.fieldParent select::placeholder {
  color: var(--coolGray);
  font-size: 14px;
  font-weight: 550;
}

.labelErrorParent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  align-items: center;
}

label {
  font-weight: 500;
  font-size: 14px !important;
  color: var(--marineBlue) !important;
}

input[type=number] {
  appearance: textfield;
}

.error {
  display: none;
  color: var(--strawberryRed);
  font-weight: 600;
}

.showError {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.borderError {
  border: 1.875px solid var(--strawberryRed) !important;
}

.hide {
  display: none;
}

.blue {
  color: var(--marineBlue) !important;
  font-size: 12px;
}

.hideBtn {
  visibility: hidden;
}

.showPrice {
  display: block;
}

.btnWrapper {
  width: 85%;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  justify-content: space-between;
  padding-bottom: 16px;
}

.next {
  width: 150px;
  font-size: 14px;
  padding-inline: 4px;
  height: 44px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--marineBlue);
  border: 1px solid var(--marineBlue);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all ease-out 0.2s;
	margin-top:15px;
}

.next:hover {
	background-color: #fff200;
	color:#222;
}
.next.confirm {
  background-color: #fff200;
  border: 1px solid var(--purplishBlue) Im !important;
}

.prev {
  color: var(--coolGray);
  font-weight: 700;
  cursor: pointer;
  transition: all ease-out 0.2s;
}

.prev:hover {
  color: var(--marineBlue);
}

.prev:active {
  transform: translateY(2px);
}

button:active {
  transform: translateY(2px);
}

.planParent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}


/* Check Boxes*/
.checkBoxesParent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkBoxContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  border: 1.875px solid var(--lightGray);
  cursor: pointer;
}

.checkBoxInfo {
  display: flex;
  gap: 24px;
  cursor: pointer;
}

.checkBoxInfo p {
  margin: 0;
  margin-block: 4px;
  align-items: center;
}

.checkBoxContainer.cardBorder {
  border: 1.875px solid var(--purplishBlue);
  background-color: var(--alabaster);
}

.checkBoxInfo input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  vertical-align: middle;
  cursor: pointer;
  accent-color: var(--purplishBlue);
  margin-top: 0px;
  border: 1.875px solid var(--lightGray) !important;
}

.addTitle {
  font-weight: 700;
  color: var(--marineBlue);
}

.addOnPrice {
  color: var(--purplishBlue);
  font-weight: 600;
}



/*Thank you*/
.thankContainer {
  min-height: 300px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}

.thankParent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.thankParent img {
  width: 64px;
  height: 64px;
}

.thankyou {
  font-size: 32px;
  font-weight: 700;
  margin-top: 12px;
}

.thankMsg {
  max-width: 390px;
  text-align: center;
  font-size: 14px;
  color: var(--coolGray);
  font-weight: 450;
  line-height: 20px;
}