#length-calculate {
  padding: 4rem;
}

#length-calculate > .eg-container > .eg-wrapper > .heading {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#length-calculate .heading > h2 {
  color: var(--do-purple);
  font-family: "DIN Condensed Regular";
  font-size: var(--font-50);
  font-weight: 400;
  line-height: 1;
}

#length-calculate > .eg-container > .eg-wrapper > .content {
  display: grid;
  grid-template-columns: var(--col-6);
  gap: 1rem;
}

#length-calculate .content > .box:nth-of-type(1) {
  border-radius: 15px;
  display: grid;
  grid-template-columns: var(--col-6);
  gap: 1rem;
  background: var(--do-white-2);
  padding: 1rem;
}

#length-calculate .content > .box:nth-of-type(1) > .left {
  border-radius: 15px;
  background: var(--do-white);
  padding: 1rem;
}

#length-calculate .content > .box:nth-of-type(1) > .left > .percentile-calculator {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

#length-calculate .percentile-calculator > button {
  cursor: pointer;
  background: var(--do-purple);
  color: var(--do-white);
  font-size: var(--font-18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--do-purple);
  height: 60px;
}

#length-calculate .content > .box:nth-of-type(1) > .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  background: var(--do-white);
  border-radius: 10px;
}

#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper > .result {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper > .result > p,
#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper > .result > span {
  color: var(--do-black);
  font-size: var(--font-40);
  font-weight: 500;
}

#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper > .info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper > .info > p {
  color: var(--do-grey-4);
  font-size: var(--font-16);
  font-weight: 400;
}

#length-calculate .content > .box:nth-of-type(1) > .right > .result-wrapper > .info > p > span {
  color: var(--do-purple);
  font-weight: 500;
}

#length-calculate .content > .box:nth-of-type(2) {
  display: grid;
  grid-template-columns: var(--col-6);
  gap: 1rem;
  background: var(--do-white-2);
  padding: 1rem;
  border-radius: 15px;
}

#length-calculate .content > .box:nth-of-type(2) > .left > img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

#length-calculate .content > .box:nth-of-type(2) > .right {
  display: flex;
  align-items: center;
  justify-content: start;
}

#length-calculate .content > .box:nth-of-type(2) > .right > p {
  color: var(--do-black);
  font-size: var(--font-18);
  font-weight: 400;
  line-height: var(--line-26);
}

#length-calculate .content > .box:nth-of-type(2) > .right > p > span {
  color: var(--do-purple);
  font-weight: 500;
}
