/* PRIMARY COLOR: #26b780 */
/* Heading Color: #0b5036 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.wrapper__calc {
  width: 650px;
  background-color: #26b780;
  margin: 20px auto;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.input__container--calc {
  padding: 20px;
}
.section__calc {
  display: block;
  width: 100%;
}
.header__calc {
  display: block;
  margin-bottom: 10px;
}
.header__info {
  color: #0c6242;
  font-size: 14px;
  display: block;
  font-weight: bold;
  text-align: center;
  width: 90%;
  margin: 10px auto;
}
.logo__img {
  width: 100px;
  display: block;
  margin: 10px auto;
}
.logo__img img {
  display: block;
  width: 100%;
}
.heading__primary--calc {
  color: #0b5036;
  font-size: 38px;
  display: block;
  text-align: center;
}
.row__calc {
  display: block;
  width: 60%;
  margin: 15px auto;
}
.label__calc,
.inp__val {
  display: block;
  font-size: 18px;
  color: #0b5036;
  text-align: center;
  font-weight: bold;
}
.combined__calc {
  margin: 10px auto;
  position: relative;
}
.error__calc {
  color: #c0392b;
  font-size: 16px;
  display: block;
  font-weight: bold;
  text-align: center;
  display: none;
}
.input__calc {
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  display: block;
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}
.input__calc:focus {
  outline: 1px solid #167d56;
}
/* 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;
}
.unit__calc {
  position: absolute;
  top: 11px;
  right: 10px;
  color: #adadad;
}
.btn__row--calc {
  width: 100%;
  display: block;
}
.btn__calc {
  /* width: 400px; */
  padding: 10px 60px;
  border-radius: 5px;
  color: #fff;
  background-color: #0b5036;
  border: 0px;
  display: block;
  font-size: 18px;
  margin: 20px auto;
}
.btn__calc:hover {
  background-color: #063322;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.result__row--calc {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0b5036;
  font-size: 20px;
}
.result__label {
  display: block;
  font-weight: bold;
}
.result__value,
.result__value--also {
  display: block;
  font-weight: bold;
}
/* COTS */
.row_calc {
  margin: 10px;
  margin-bottom: 0px;
}
.row_calc-flex {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding: 10px;
  padding-bottom: 0px;
  padding-top: 0px;
}
.sp {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  text-align: center;
  align-items: center;
  padding: 10px;
  padding-bottom: 0px;
  padding-top: 0px;
}
.row_calc-flex .label__calc {
  text-align: left;
}

.start_value {
  font-size: 14px;
  color: #0b5036;
  padding-top: 0px;
  padding-bottom: 10px;
}

.slider {
  z-index: -4;
  -webkit-appearance: none;
  padding: 0px !important;
  width: 100%;
  height: 7px;
  border-radius: 5px;
  background: #fff;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #0b5036;
  cursor: pointer;
  border: 2px solid #fff;
}

.slider::-moz-range-thumb {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0b5036;
  cursor: pointer;
}
@media only screen and (max-width: 650px) {
  .wrapper__calc {
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .row__calc {
    width: 80%;
  }
  .result__row--calc {
    flex-direction: column;
    width: 100%;
  }
  .result__label {
    font-weight: 400;
  }
  .result__value {
    margin: 10px 0px;
  }
}
@media only screen and (max-width: 500px) {
  .sp {
    display: block;
  }
}
@media only screen and (max-width: 450px) {
  .row__calc {
    width: 100%;
  }
  .input__container--calc {
    padding: 10px;
  }
  .heading__primary--calc {
    font-size: 30px;
  }

  .btn__calc {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .result__value--also,
  .result__value {
    font-size: 18px !important;
  }
}
