#roi-calculator {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #eee;
  padding: 20px 40px 40px;
  font: 18px "Neue Haas Grotesk Display Pro", Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
}
#roi-calculator .buttons {
  display: flex;
  justify-content: center;
}
#roi-calculator .buttons button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  margin: 3px;
}
#roi-calculator .buttons button:disabled {
  opacity: 0.5;
}
#roi-calculator .question-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media (max-width: 550px) {
  #roi-calculator .question-wrapper {
    height: 400px;
  }
}
#roi-calculator h2 {
  text-align: center;
  font-size: 2em;
}
#roi-calculator .question {
  position: absolute;
  top: 0;
  right: -101%;
  width: 100%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
#roi-calculator .question.active {
  right: 0;
  opacity: 1;
}
#roi-calculator .question.answered {
  right: 101%;
}
#roi-calculator .question p {
  text-align: center;
  font-size: 1.5em;
  margin-top: 1em;
  line-height: 1.25em;
}
@media (max-width: 650px) {
  #roi-calculator .question p {
    font-size: 1.1em;
    margin-top: 0.5em;
  }
}
#roi-calculator .question .answers {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  justify-content: space-between;
  font-size: 1.2em;
}
#roi-calculator .question .answers label {
  padding: 8px 12px 8px 6px;
  border-radius: 8px;
  background: #f5f5f5;
  margin: 0 3px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
}
@media (max-width: 550px) {
  #roi-calculator .question .answers {
    flex-direction: column;
  }
  #roi-calculator .question .answers label {
    margin: 5px 0;
  }
}
#roi-calculator button {
  background: #35538f;
  color: #fff;
  margin-bottom: 8px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  padding: 5px 10px;
}
#roi-calculator #calculate {
  display: none;
  margin: 20px auto 0;
  color: #8ddbff;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 25px;
  cursor: pointer;
}
#roi-calculator #savingsEstimate {
  display: none;
  background: #52b8e847;
  padding: 14px 30px;
  border-radius: 8px;
  max-width: 510px;
  margin: 30px auto 0;
  font-size: 1.7em;
}
#roi-calculator #savingsEstimate span {
  color: #35538f;
  font-weight: bold;
}
#roi-calculator progress::-moz-progress-bar {
  background: #52b8e8;
}
#roi-calculator progress::-webkit-progress-value {
  background: #52b8e8;
}
#roi-calculator progress {
  color: #52b8e8;
}
#roi-calculator .option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
#roi-calculator .option-input:hover {
  background: #9faab7;
}
#roi-calculator .option-input:checked {
  background: #57c4c9;
}
#roi-calculator .option-input:checked::before {
  width: 40px;
  height: 40px;
  display: flex;
  content: url("checkmark-24.png");
  position: absolute;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
#roi-calculator .option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #57c4c9;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}
#roi-calculator .option-input.radio {
  border-radius: 50%;
}
#roi-calculator .option-input.radio::after {
  border-radius: 50%;
}
@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 100px;
    width: 100px;
    margin-left: -30px;
    margin-top: -30px;
    opacity: 0;
  }
}
