.calculation_tool {
  padding: 30px;
  max-width: 600px;
  background-color: #fff;
  border: 1px solid #d9dbdb;
}
.calculation_tool .calculation_tool__form {
  gap: 2em;
  display: flex;
  flex-direction: column;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row {
  gap: 2em;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row.space-between {
  justify-content: space-between;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row.ship2option {
  display: none;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row > label {
  min-width: 170px;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .__form__row_options {
  gap: 2em;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .__form__row_options .__form__row_options_option {
  gap: 10px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .__form__row_options .__form__row_options_option > * {
  cursor: pointer;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row input[type=number] {
  max-width: 500px;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row input[type=number]::placeholder {
  opacity: 0.5;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__reset {
  all: unset;
  cursor: pointer;
  color: #007cba;
  text-decoration: underline;
  transition: all 0.25s ease-in-out;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__reset:hover, .calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__reset:focus {
  opacity: 0.7;
  text-decoration-color: transparent;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__reset:focus {
  outline: 1px solid #007cba;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__calculate {
  border: 0;
  color: #fff;
  padding: 9px 28px;
  transition: all 0.25s ease-in-out;
  background-color: var(--e-global-color-secondary);
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__calculate:hover, .calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__calculate:focus {
  opacity: 0.7;
  scale: 1.05;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .calculation_tool__form__row__calculate:focus {
  outline: 1px solid #007cba;
}
.calculation_tool .calculation_tool__form .calculation_tool__form__row .ship_weight_definition {
  float: left;
  font-weight: bold;
  margin-left: -1.5em;
}
.calculation_tool .calculation_tool__form__row__output_wrapper {
  display: none;
  margin-top: 2em;
  border-top: 1px solid #d9dbdb;
}