.calculator label {
  color: #1b9bec;
  display: block;
  margin-top: 20px;
  margin-bottom: 16px;
  font-family: "Gagalin";
  font-size: 18px;
}

.calculator select,
.calculator input {
  width: 100%;
  padding: 12px !important;
  font-size: 16px;
  border-radius: 8px !important;
  border: 1px solid #ccc !important;
  box-sizing: border-box;
  font-family: "Gagalin";
  color: #a8a9ad !important;
  opacity: 1 !important;
}

.calculator button {
  width: 100%;
  border: 2px solid var(--00609-d, #00609d);
  background: var(--1-b-9-bec, #1b9bec);
  box-shadow: 4px 6px 0px 0px #808185;
  margin: 30px 0;
  font-size: 20px !important;
  padding: 15px !important;
  border-radius: 16px !important;
}
.calculator button:hover {
  box-shadow: 0px 0px 0px 0px #808185;
}
.calculator.results {
  margin-top: 30px;
  font-size: 16px;
}

.calculator .results p {
  /*   display: flex;
  justify-content: space-between; */
  margin: 5px 0;
}

.calculator .results h2 {
  text-align: center;
  color: #1898f2;
  font-size: 32px;
  font-weight: bold;
  margin-top: 20px;
}
.calculator {
  background-color: #e9ecef;
  padding: 60px 40px;
}

.calculator__title {
  color: #3d3d3d !important;
  text-align: center;
  margin-bottom: 50px;
}
p.results_item span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.18px;
  color: #3d3d3d;
  font-family: "Gagalin";
}

p.results_item span:last-child {
  color: #1b9bec;
}

p.results_item {
  margin-bottom: 24px !important;
  display: block;
}
h3.result__total {
  text-align: center;
  color: #1b9bec !important;
  margin-top: 50px;
}
.calculator input::placeholder {
  color: #a8a9ad;
}

/*Added By Patrick*/
.calculator #setup-fee,
.calculator p,
.calculator .total-text {
  color: #1b9bec;
  font-family: "Gagalin";
  font-size: 18px;
}
.calculator .total-text span {
  font-size: 26px;
  color: #1b9bec;
}

/* Monthly Calculator */
/* .calculator-container {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 900px;
	margin-top: 20px;
}
.calculator_header {
	text-align: center;
    margin-bottom: 20px;
    color: #1B9BEC !important;
    font-family: 'Gagalin';
}
.progress-bar {
	width: 100%;
	background-color: #ddd;
	border-radius: 5px;
	margin-bottom: 20px;
}
.progress {
	width: 0;
	height: 20px;
	background-color: #1a73e8;
	border-radius: 5px;
	transition: width 0.3s;
}
.step {
	display: none;
}
.step.active {
	display: block;
}
.input-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}
.form-group {
	margin: 0;
}

.navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	gap:50px;
}

.results {
	margin-top: 30px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	display: none;
}
.results.active {
	display: block;
}
.results h2 {
	margin-top: 0;
	color: #1a73e8;
	font-size: 20px;
}
.plan {
	margin-bottom: 15px;
	padding: 10px;
	background: white;
	border-left: 4px solid #1a73e8;
	border-radius: 4px;
}
.plan h3 {
	margin: 0;
	color: #1a73e8;
	font-size: 16px;
}
.plan p {
	margin: 5px 0;
	color: #333;
}
.debug {
	margin-top: 15px;
	padding: 10px;
	background: #e3f2fd;
	border-radius: 4px;
	font-size: 12px;
	color: #333;
}
.error {
	color: #d32f2f;
	margin-top: 10px;
	font-size: 14px;
}
.plan h3 {
    color: #1B9BEC !important;
    font-size: 20px !important;
}
.step h3 {
    font-size: 30px !important;
    color: #FFAF00 !important;
}
.calculator_results p.results_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
span.result__emp span {
    color: #1B9BEC !important;
}
@media (max-width: 600px) {
	.calculator-container {
		padding: 15px;
	}
	.input-grid {
		grid-template-columns: 1fr;
	}
	.navigation {
		flex-direction: column;
		gap: 10px;
	}
} */
