.calc {
  background: url("../img/module-calc/bg.jpg") top center;
  height: 517px;
}

.calc-header {
  font-size: 40px;
  color: #d10c64;
  font-family: pf_agora_slab_proregular;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 0 17px 0;
  line-height: 40px;
}

.select-wrapper {
  display: inline-block;
  border: 1px solid #d8d8d8;
  background: url("../img/module-calc/arrow.png") white no-repeat right center;
  cursor: pointer;
}
.select-wrapper,
.select-wrapper select {
  width: 260px;
  height: 36px;
  line-height: 36px;
  font-family: H_Light;
}

.select-wrapper .holder {
  display: block;
  margin: 0 40px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 5;
  border-right: 1px solid rgb(208, 208, 208);
  box-sizing: border-box;
  padding-left: 10px;
  text-align: left;
}

.select-wrapper select {
  margin: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  outline: none;
  opacity: 0;
  /* CSS hacks for older browsers */
  _nofocusline: expression(this.hideFocus=true);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
}

/* Let's Beautify Our Form */
form {
  margin: 20px;
}

.calc input[type="text"] {
  height: 36px;
  line-height: 36px;
  width: 260px;
  border: 1px solid #d8d8d8;
  font-family: H_Light;
  box-sizing: border-box;
  padding-left: 10px;
  outline: none;
  font-size: 16px;
}

input[type="submit"] {
  background: #d8d8d8;
  border: 1px solid #c4c4c4;
  margin-left: 10px;
  padding: 4px 10px;
  cursor: pointer;
  outline: none;
}

input[type="submit"]:hover {
  color: #fff;
  border-color: #1b7aa9;
  background-color: #239fdb;
}

.label-for {
  display: inline-block;
  width: 264px;
  margin-bottom: 10px;
  font-family: H_Light;
  font-size: 18px;
  color: #111111;
  text-align: left;
}

.horizont-line {
  width: 550px;
  height: 1px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
  background: #d8d8d8;
}

.left-part {
  box-sizing: border-box;
  padding-left: 45px;
}

.mobile-block-btn {
  display: flex;
  align-items: center;
}

.right-part {
  box-sizing: border-box;
  padding-left: 12px;
}

.ui-icon-triangle-1-n {
  background: url("../img/module-calc/spin1.png") !important;
  width: 37px;
  height: 17px;
  cursor: pointer;
}

.ui-icon-triangle-1-s {
  background: url("../img/module-calc/spin2.png") !important;
  width: 37px;
  height: 17px;
  border-top: 1px solid #c4c4c4;
  box-sizing: border-box;
  cursor: pointer;
}

.custom-checkbox {
  background: url("../img/module-calc/unchecked.png");
  width: 41px;
  height: 37px;
  cursor: pointer;
  margin-top: 50px;
  display: inline-block;
}

.custom-checkbox.active {
  background: url("../img/module-calc/checked.png");
  width: 41px;
  height: 37px;
}

.calc-descriprion {
  font-family: H_Light;
  font-size: 18px;
  vertical-align: top;
  margin-top: 58px;
  display: inline-block;
  margin-left: 8px;
}

.calc-text {
  font-size: 14px;
  font-family: H_Thin;
  box-sizing: border-box;
  padding-right: 50px;
  margin-top: 12px;
}

.calc .button {
  font-size: 18px;
  text-transform: uppercase;
  font-family: H_Light;
  line-height: 22px;
  width: 290px;
  height: 60px;
  margin-top: 20px;
  box-sizing: border-box;
  background: url("../img/module-calc/btn.png");
  padding-left: 28px;
  padding-top: 8px;
  margin-left: 18px;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  gap: 10px;
}

@media (max-width: 960px) {
  .calc {
    background: #f0f4f7;
    height: auto;
  }
  .calc .container-12 {
    padding: 0 20px;
  }

  .calc .push-4 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .calc .push-4 > div {
    display: flex;
    align-items: center;

    padding: 0px;
  }

  .label-for {
    margin-bottom: 0px;
  }

  .mobile-block-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .calc-text {
    text-align: center;
  }

  .calc .button {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (max-width: 575px) {
  .calc .push-4 {
    width: 100%;
  }

  .calc .push-4 > div {
    flex-direction: column;
    gap: 10px;
  }
  .label-for {
    margin-top: 15px;
  }
}
