.calc {
  font-family: "Open Sans", sans-serif;
  font-weight: 100; }
  .calc_item {
    background: #ccf7c8;
    text-align: center;
    padding-top: 100%;
    position: relative;
    margin-bottom: 30px; }
    .calc_item label {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      margin: 0;
      cursor: pointer; }
      .calc_item label input[type="radio"] {
        visibility: hidden;
        position: absolute;
        width: 0;
        height: 0;
        opacity: 0; }
        .calc_item label input[type="radio"]:checked + .calc_item--img:after {
          background: #fff; }
        .calc_item label input[type="radio"]:checked + .calc_item--img + .calc_item--content {
          color: #000; }
    .calc_item--img {
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0; }
      .calc_item--img:after {
        background: #000;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: .7; }
    .calc_item--content {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      color: #fff;
      -moz-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%); }
    .calc_item--title {
      display: block;
      font-family: 'Comfortaa', sans-serif;
      font-size: 24px;
      margin-bottom: 15px;
      position: relative; }
      @media (max-width: 991px) {
        .calc_item--title {
          font-size: 16px; } }
      @media (max-width: 360px) {
        .calc_item--title {
          font-size: 14px; } }
    .calc_item--price {
      display: block;
      font-size: 16px;
      position: relative; }
      @media (max-width: 991px) {
        .calc_item--price {
          font-size: 14px; } }
  .calc_data {
    margin-bottom: 30px; }
    .calc_data--item {
      margin-bottom: 15px; }
    .calc_data--title {
      font-size: 14px;
      padding-top: 7px; }
    .calc_data--subtotal {
      font-size: 14px;
      line-height: 34px; }
    .calc_data .input {
      position: relative; }
      .calc_data .input input {
        text-align: center; }
      .calc_data .input .minus, .calc_data .input .plus {
        background: #ffa825;
        position: absolute;
        top: 0;
        width: 34px;
        height: 34px;
        text-align: center;
        line-height: 34px;
        font-size: 20px;
        font-weight: 700;
        border-radius: 4px;
        cursor: pointer; }
      .calc_data .input .minus {
        left: 0; }
      .calc_data .input .plus {
        right: 0; }
  .calc_total--title {
    font-size: 20px;
    font-weight: 700; }
  .calc_total--price {
    font-size: 20px;
    font-weight: 700; }
  .calc_order, .calc_plitka, .calc_project, .calc_gazon {
    font-size: 14px; }
    .calc_order .clientOrder, .calc_plitka .clientOrder, .calc_project .clientOrder, .calc_gazon .clientOrder {
      display: none; }
    .calc_order .checkbox label, .calc_plitka .checkbox label, .calc_project .checkbox label, .calc_gazon .checkbox label {
      display: inline-block;
      position: relative;
      padding-left: 30px; }
    .calc_order .checkbox input[type=checkbox], .calc_plitka .checkbox input[type=checkbox], .calc_project .checkbox input[type=checkbox], .calc_gazon .checkbox input[type=checkbox] {
      width: 0;
      height: 0;
      visibility: hidden;
      opacity: 0;
      left: 0;
      top: 0;
      position: absolute; }
      .calc_order .checkbox input[type=checkbox] + .check, .calc_plitka .checkbox input[type=checkbox] + .check, .calc_project .checkbox input[type=checkbox] + .check, .calc_gazon .checkbox input[type=checkbox] + .check {
        background: #fff;
        border: 1px solid #ccc;
        position: absolute;
        width: 22px;
        height: 22px;
        left: 0px;
        top: 1px;
        text-align: center;
        line-height: 22px;
        border-radius: 4px; }
        .calc_order .checkbox input[type=checkbox] + .check:after, .calc_plitka .checkbox input[type=checkbox] + .check:after, .calc_project .checkbox input[type=checkbox] + .check:after, .calc_gazon .checkbox input[type=checkbox] + .check:after {
          border-left: 2px solid #ffa825;
          border-bottom: 2px solid #ffa825;
          content: '';
          position: absolute;
          width: 0px;
          height: 0px;
          left: 50%;
          top: 50%;
          opacity: 0;
          -webkit-transition: 0.2s linear;
          -moz-transition: 0.2s linear;
          -ms-transition: 0.2s linear;
          -o-transition: 0.2s linear;
          transition: 0.2s linear;
          -moz-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
      .calc_order .checkbox input[type=checkbox]:checked + .check:after, .calc_plitka .checkbox input[type=checkbox]:checked + .check:after, .calc_project .checkbox input[type=checkbox]:checked + .check:after, .calc_gazon .checkbox input[type=checkbox]:checked + .check:after {
        width: 14px;
        height: 7px;
        opacity: 1;
        -moz-transform: rotate(-50deg) translate(0px, -8px);
        -o-transform: rotate(-50deg) translate(0px, -8px);
        -ms-transform: rotate(-50deg) translate(0px, -8px);
        -webkit-transform: rotate(-50deg) translate(0px, -8px);
        transform: rotate(-50deg) translate(0px, -8px); }
      .calc_order .checkbox input[type=checkbox][disabled] + .check, .calc_plitka .checkbox input[type=checkbox][disabled] + .check, .calc_project .checkbox input[type=checkbox][disabled] + .check, .calc_gazon .checkbox input[type=checkbox][disabled] + .check {
        opacity: .3; }
        .calc_order .checkbox input[type=checkbox][disabled] + .check + .title, .calc_plitka .checkbox input[type=checkbox][disabled] + .check + .title, .calc_project .checkbox input[type=checkbox][disabled] + .check + .title, .calc_gazon .checkbox input[type=checkbox][disabled] + .check + .title {
          opacity: .5; }

.calc_plitka--total, .calc_project--total, .calc_gazon--total, .calc_zelen--total, .calc_drenaj--total {
  font-size: 20px;
  font-weight: 700;
  text-align: right; 
  color:#3ca630;
}
.calc_total--title
{
  color:#3ca630;
}
.radio label {
  position: relative;
  padding: 3px 0 0 35px;
  font-weight: 100;
  font-size: 13px;
  cursor: pointer; }
  .radio label input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden; }
    .radio label input:checked + .check {
      border-color: #ff5933; }
      .radio label input:checked + .check:before {
        width: 16px;
        height: 16px;
        opacity: 1; }
    .radio label input:disabled + .check {
      opacity: .3; }
    .radio label input:disabled + .check + .checkbox-title {
      opacity: .3; }
  .radio label .check {
    background: #fff;
    border: 2px solid #dfdfdf;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 24px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .radio label .check:before {
      background: #ff5933;
      background-repeat: no-repeat;
      background-position: center;
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 0;
      height: 0;
      opacity: 0;
      border-radius: 16px;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }

.block_list {
  background: #fff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px; }
  .block_list--item {
    display: none; }
    .block_list--item.current {
      display: block; }
    .block_list--item ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .block_list--item ul li {
        margin-top: 10px; }
        .block_list--item ul li:first-child {
          margin-top: 0; }

/*# sourceMappingURL=calc.css.map */