@charset "UTF-8";
.calculator {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 2rem;
  padding: 0 1rem;
  min-height: 80vh; /* Чтобы результат прижать к низу*/
}
.calculator h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  text-align: center;
}

/* ======== SELECTS ============== */
.filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.filter {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  min-width: 406px;
}
@media (max-width: 575px) {
  .filter {
    min-width: 100%;
  }
}
.filter label {
  margin-bottom: 0.8rem;
}
.filter select {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  padding: 0.5em 1em;
  border-radius: 0.5rem;
  border: 2px solid #2b2a2c;
  background-color: #e4dcdc;
  transition: border-color 0.2s ease-in-out;
  cursor: pointer;
  outline: none;
}
@media (min-width: 1000px) {
  .filter select:hover {
    border-color: transparent;
  }
}
.filter select::-ms-expand {
  display: none;
}
.filter select option {
  margin-bottom: 1rem;
}
.filter select.unselected {
  background-color: #ff6347;
}
.filter select.selected {
  background-color: #90ee90;
}

.work-category {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 10px;
}
.work-category ul {
  font-size: 2rem;
  list-style: none;
}
@media (max-width: 575px) {
  .work-category ul {
    font-size: 1.8rem;
  }
}
.work-category ul li {
  text-align: left;
  margin-bottom: 1rem;
}
.work-category ul li h4 {
  width: 65%;
  margin-bottom: 1rem;
  font-weight: 400;
}
.work-category ul li > li {
  margin-left: 50px;
}
@media (max-width: 575px) {
  .work-category ul li > li {
    margin-left: 20px;
  }
}

.input-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.hide {
  display: none;
}

.input-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 270px;
  width: 100%;
  text-align: start;
}

.input-left img {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 575px) {
  .input-left img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.input-right {
  display: flex;
  background-color: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4.5rem;
}

.input_value {
  appearance: textfield;
  border: none;
  border-radius: 0.5em;
  text-align: center;
  font-size: 1.7rem;
  background-color: #ffffff;
  color: #2b2a2c;
}

.input_value:focus {
  outline: none;
}

/* remove input arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inp-btn {
  background-color: #ffffff;
  color: #f8d11d;
  font-size: 1.8em;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

#decrement {
  padding: 15px 5px 15px 25px;
  border-radius: 45px 0 0 45px;
}
@media (max-width: 575px) {
  #decrement {
    padding: 10px 5px 10px 20px;
  }
}

#increment {
  padding: 15px 25px 15px 5px;
  border-radius: 0 45px 45px 0;
}
@media (max-width: 575px) {
  #increment {
    padding: 10px 20px 10px 5px;
  }
}

.work-category {
  text-align: center;
}

.calc_result {
  padding: 2rem 0;
  width: 100%;
  font-size: 2rem;
  background-color: #e4dcdc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: auto; /*прижатие к низу*/
}

.result_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6em;
}

.calc_total {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(98, 69, 240);
}

.total_text {
  font-size: 1.4rem;
  max-width: 50rem;
  text-align: justify;
}
/*# sourceMappingURL=calculator.min.css.map */
