.half-circle {
  width: 64px;
  height: 64px;
  background-color: #dc2c46;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: calc(290px / 2 - 32px);
  right: 50%;
}

.calculator-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.calculator-container input {
  background-color: white !important;
  border-radius: 10px;
  outline: none;
  border: none;
}

.calculator-container select {
  background-color: white !important;
  border-radius: 10px;
  outline: none;
  border: none;
  /* -webkit-appearance: initial; */
  padding: 10px 15px;
  max-width: 100%;
  height: 44px;
}

@supports (-webkit-touch-callout: none) {
  /* iOS */
  @media not all and (pointer: fine) {
    /* iOS */
    .calculator-container select {
      -webkit-appearance: initial;
    }
  }
}

.value-result {
  font-size: 80px !important;
  color: #e03952 !important;
  font-weight: 800 !important;
  line-height: 85px !important;
  letter-spacing: 1.6px !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
