* {
  font-family: "Roboto Condensed", sans-serif;
}

.wrap-calc {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 4px;
  background-color: #dfdfdf;
}

.wrap__output {
  padding: 10px;
  background-color: #d2d2d2;
  border-radius: 10px;
  margin-top: 20px;
}

.heading__calc, .text__radio-first {
  color: #555555;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}

.wrap__first-radio {
  display: flex;
  flex-direction: column;
}

.form__option-wrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.form__services-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.form__option {
  position: relative;
  z-index: 1;
  width: 30%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.form__option-order1 {
  order: 1;
}

.form__option-order2 {
  order: 2;
  top: 5px;
}

.form__option-order3 {
  order: 3;
}

.form__services > * {
  position: relative;
  z-index: 1;
  display: flex;
}

.form__services {
  position: relative;
  outline: 1px solid #555555;
  display: flex;
  margin: 5px;
  border-radius: 980px;
  padding: 11px 11px 11px 11px;
  align-items: center;
  color: #555555;
  transition: 500ms;
}

.form__services:hover {
  transform: scale(1.05);
}

.img__radio {
  width: 250px;
}

.form__option-label, .form__service-label {
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 500ms;
}

.form__option-bg, .form__service-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form__option:hover {
  transform: scale(1.03);
}

.form__option-input:checked ~ .form__option-bg {
  box-shadow: 0 8px 6px -6px #555;
}

.form__service-input:checked ~ .form__service-bg {
  background-color: rgb(88, 88, 88);
  border-radius: 980px;
}

.form__option-input:checked ~ .text__radio-first {
  font-weight: 500;
}

.form__service-input {
  width: 20px;
  height: 20px;
  display: none;
}

.form__service-input:checked ~ .text__checkbox-second {
  color: white;
}

.form__option-input {
  display: none;
}

.title__servises {
  padding-top: 20px;
}

.text__checkbox-second {
  font-size: 14px;
}

.outputs {
  display: flex;
  flex-direction: column;
}

.first__output {
  font-size: 20px;
  text-align: center;
  color: rgb(88, 88, 88);
  padding-bottom: 10px;
}

.second__output {
  text-align: center;
  color: red;
  padding-bottom: 10px;
}

.total__output {
  background-color: rgb(88, 88, 88);
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  font-size: 24px;
  color: white;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

.info__text {
  margin-top: 15px;
  font-size: 12px;
  text-align: center;
}

.form__field-wrap {
  display: flex;
  flex-direction: column;
}

@media (max-width: 479px) {
  .img__radio, .form__option {
    max-width: 80px;
  }
  .text__radio-first, .second__output {
    font-size: 12px;
  }
  .wrap-calc {
    padding: 4px;
  }
  .form__option-wrap {
    justify-content: center;
  }
  .wrap__calc {
    padding: 0;
    overflow: hidden;
  }
  .heading__calc, .first__output {
    font-size: 14px;
    margin: 0;
  }
  .text__checkbox-second {
    font-size: 10px;
  }
  .total__output {
    font-size: 20px;
  }
  .title__servises {
    padding-top: 15px;
    padding-bottom: 5px;
    margin: 0;
  }
  .wrap__output {
    margin-top: 10px;
  }
  .last__heading {
    display: none;
  }
  .form__services {
    margin: 3px;
  }
  .second__output {
    display: none;
  }
  .form__option {
    background: none;
  }
  .form__option-input:checked ~ .form__option-bg {
    box-shadow: 0 8px 6px -6px #883d3d;
  }
  .text__radio-first {
    margin: 0;
  }
  .info__text {
    font-size: 10px;
    margin-top: 0;
    padding: 5px;
  }
}/*# sourceMappingURL=style.css.map */