

/* Start:/local/templates/domoff2025/css/fasad-calc.css?17465348244915*/
/*
 * Colors
 */
/*
 * Scroll
 */
.calc {
  margin-bottom: 50px;
}
.calc__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.calc__inner > * {
  flex-grow: 1;
}
.calc__element-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: #fff5e9;
}
.calc__element-list-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 10px;
}
.calc__element {
  padding: 15px;
}
.calc__element-title {
  text-align: left;
  padding: 0 15px 20px 0;
  font-family: 'SFProDisplay Heavy';
  border-bottom: 1px solid #f3e5d4;
  margin-bottom: 12px;
}

.calc__element-list-title {
  text-align: center;
  position: relative;
  border-bottom: 1px solid #f3e5d4;
  padding: 15px;
  margin: 0 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc__element-list-title span {
  margin-right: 5px;
  cursor: pointer;
  font-family: 'SFProDisplay Heavy';
}
.calc__buttons {
  display: flex;
  padding: 30px 0 15px;
  justify-content: center;
}
.calc__buttons .btn {
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
  text-transform: uppercase;
  margin-right: 20px;
  background-color: #393531;
  color: #ffffff;
  width: 200px;
  line-height: 40px;
  border-radius: 15px;
  transition: all 0.3s;
}
.calc__buttons .btn:last-child{
  margin-right: 0;
}
.calc__buttons .btn:hover{
  background-color: #000000;
}
.calc__element-wrap {
  padding: 10px 10px 0;
  max-width: calc(50% - 20px);
}

.calc__element {
  border: 1px solid #f3e5d4;
  background-color: #fcf7f0;
  border-radius: 18px;
  padding: 15px;
}
.calc__elements-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  max-width: none;
}
.calc__elements-group > * {
  padding-left: 15px;
  padding-right: 15px;
  flex-grow: 1;
}

.calc__input-wrap {
  margin-bottom: 15px;
}
.calc__input-label {
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
  margin-bottom: 10px;
}
.calc__input-input {
  padding: 0 10px;
  line-height: 35px;
  border: 1px solid #f3e5d4;
  border-radius: 10px;
  background-color: #fffefd;
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
  width: 210px;
  max-width: 100%;
  box-sizing: border-box;
}
.calc__input-input:focus, .calc__input-input:focus-visible {
  outline: none;
  border-color: #ffe381;
}
.calc__element-result {
  text-align: center;
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
}
.calc__element-result .calc__input-label{
  margin-bottom: 0px;
}
.calc__element-result-value {
  font-size: 24px;
}
.calc__total-wrap {
  margin-bottom: 30px;
}
.calc__total {
  padding: 15px;
  background-color: #fff5e9;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
}
.calc__total-value {
  font-size: 28px;
}
.calc__element-info {
  position: absolute;
  width: 245px;
  background-color: #fffefd;
  border: 1px solid #fff5e9;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  display: none;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  top: 100%;
  line-height: 20px;
}
.calc__element-info img {
  margin: 0 auto;
  padding: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .calc__element-info {
    left: 100%;
    transform: translate3d(0, 0, 0);
    top: 100%;
  }
}

.calc__element-info-wrap {
  position: static;
}
@media (min-width: 768px) {
  .calc__element-info-wrap {
    position: relative;
  }
}
.calc__element-info-wrap.openned .svg_bd {
  fill: #c2771c;
}
.calc__element-info-wrap.openned .calc__element-info {
  display: block;
}

.calc__element-info-btn {
  width: 24px;
  height: 24px;
  border: none;
  display: block;
  background-color: transparent;
  margin: 0;
  position: relative;
  border-radius: 4px;
  padding: 2px;
}
.calc__element-info-btn svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.calc__note-wrap {
}
.calc__note {
  padding: 15px;
  background-color: #fff5e9;
  border-radius: 20px;
  text-align: center;
  font-family: 'SFProDisplay Medium';
}
.calc__note_title {
  font-family: 'SFProDisplay Bold';
}
.calc__note a{
  border-bottom: 1px solid;
}
.calc__note a:hover{
  border-color: transparent;
}
@media (min-width: 768px) {
  .calc__note {
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media screen and (max-width: 767px) {
  .calc__buttons {
    flex-wrap: wrap;
  }
  .calc__buttons .btn {
    /*width: 95%;*/
    width: calc(100% - 40px);
    display: block;
    margin: 15px 0 0 0;
    line-height: 45px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 450px) {
  .calc__element-wrap {
    padding: 10px 5px 0;
    max-width: calc(50% - 10px);
  }
  .calc__buttons .btn {
    width: calc(100% - 30px);
  }
}

/* End */
/* /local/templates/domoff2025/css/fasad-calc.css?17465348244915 */
