/* 
стилі для інпутів - поля вводу, радіокнопки, селекти і т.д.
*/

/* -- інпути калькулятора -- */
.calculator__input > p {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark);
}

.calc-radio {
  display: flex;
  align-items: center;
  background-color: var(--olive);
  padding: 6px;
  border-radius: 8px;
}
.calc-radio input {
  display: none;
}
.calc-radio label {
  width: 100%;
  padding: 12px;
  color: var(--text_beige);
  background-color: var(--olive);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease-out;
}
.calc-radio label:hover {
  background-color: var(--olive_hover);
  color: var(--text_beige);
}
.calc-radio input:checked + label {
  background-color: white;
  color: var(--black);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.calc-radio__custom-count {
  width: 64px;
  padding: 8px 10px;
  margin-left: 6px;
  border: none;
  border-radius: 4px;
  background-color: white;
  color: var(--black);
  font-size: inherit;
  font-family: inherit;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  outline: none;
  -moz-appearance: textfield;
}
.calc-radio__custom-count::-webkit-inner-spin-button,
.calc-radio__custom-count::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-radio__custom-count:focus {
  outline: 2px solid var(--olive);
}

.calc-select {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  position: relative;
  appearance: none;
  outline: none;
  background-color: white;
  box-shadow: 0 5px 15px 0 rgba(58, 51, 46, 0.15);
}

.select-with-arrow {
  position: relative;
}
.select-with-arrow > img {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.office-area-input {
  width: 80px;
  padding: 8px 10px;
  margin: 10px 0;
  border: 1px solid #d4c8c0;
  border-radius: 4px;
  background-color: white;
  color: var(--black);
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  text-align: right;
  box-shadow: 0 2px 4px 0 rgba(58, 51, 46, 0.1);
  outline: none;
  -moz-appearance: textfield;
  transition: all .2s ease-out;
}
.office-area-input::-webkit-inner-spin-button,
.office-area-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.office-area-input:hover {
  border-color: #c4b8b0;
  box-shadow: 0 2px 6px 0 rgba(58, 51, 46, 0.15);
}
.office-area-input:focus {
  border-color: var(--olive);
  box-shadow: 0 2px 8px 0 rgba(128, 117, 100, 0.2);
}

