#product__calculator__main {
  background-color: #f9f3ef;
  border-radius: 30px;
  padding: 40px;
  max-width: 550px;
}
@media (max-width: 992px) {
  #product__calculator__main {
    padding: 15px;
  }
}
#product__calculator__main > h3 {
  font-weight: bold;
  text-align: center;
  font-size: 30px;
}
@media (max-width: 992px) {
  #product__calculator__main > h3 {
    line-height: 1.2;
  }
}
#product__calculator__main span.heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
#product__calculator__main #main-calc-type {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#product__calculator__main #main-calc-type .type {
  width: 50%;
  display: flex;
  justify-content: center;
}
#product__calculator__main #main-calc-type .type label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fdfdfd;
  width: 100%;
  border-radius: 30px;
  margin: 10px;
  padding: 10px;
  box-shadow: 0 3px 10px #ebe1da;
  position: relative;
}
@media (max-width: 992px) {
  #product__calculator__main #main-calc-type .type label {
    margin: 4px;
    padding: 10px 10px 35px 10px;
  }
}
#product__calculator__main #main-calc-type .type label.active {
  border: 2px solid #2cbc72;
}
#product__calculator__main #main-calc-type .type label input {
  display: none;
}
#product__calculator__main #main-calc-type .type label img {
  width: 130px;
  border-radius: 20px;
}
#product__calculator__main #main-calc-type .type label span {
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
#product__calculator__main #main-calc-type .type:last-child {
  width: 100%;
}
#product__calculator__main #main-calc-type .type:last-child label {
  width: 100%;
}
@media (max-width: 992px) {
  #product__calculator__main #main-calc-type .type:last-child label {
    padding: 0;
  }
}
#product__calculator__main #main-calc-type .type:last-child label img {
  width: 160px;
}
#product__calculator__main input {
  padding: 0.5180469716em;
  padding-right: 0.518047em;
  padding-left: 0.518047em;
  padding-right: 0.7em;
  padding-left: 0.7em;
  border: 1px solid #d2d6dc;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 15px;
}
#product__calculator__main .product__calculator__main {
  margin-bottom: 30px;
}
#product__calculator__main .product__calculator__main .inputs {
  display: flex;
  justify-content: space-between;
}
#product__calculator__main .product__calculator__main .inputs .input-a {
  display: flex;
  flex-direction: column;
  width: 45%;
}
#product__calculator__main .product__calculator__main .inputs .input-a label {
  color: #e74a5a;
  font-weight: bold;
}
#product__calculator__main .product__calculator__main .inputs .input-b {
  display: flex;
  flex-direction: column;
  width: 45%;
}
#product__calculator__main .product__calculator__main .inputs .input-b label {
  color: #e74a5a;
  font-weight: bold;
}
#product__calculator__main .main-calc-inputs {
  margin-bottom: 30px;
}
#product__calculator__main .main-calc-inputs input {
  width: 90%;
}
#product__calculator__main .main-calc-inputs .custom-type-text {
  margin-top: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(94, 94, 94, 0.2);
}
#product__calculator__main .product__calculator__results {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #d4c1b2;
}
#product__calculator__main .product__calculator__results .label {
  font-weight: bold;
}
