

/* Start:/local/components/ts/calc.prometr/templates/seller_calc/style.css?168595336015070*/

.calculator {
    margin-top: 40px;
}

.calculator__title {
    color: #222425;
    font-size: 30px;
    font-weight: bold;
}

@media screen and (max-width: 576px) {
    .calculator__title {
        font-size: 19px;
    }
}
.calculator__firstBlock {
    height:450px;
    min-height: 450px;
    display: flex;
}
.calculator__firstBlock button {
    background: #FFFFFF;
    border: 1px solid #00A591;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #00A591;
    outline: none;
    min-width: 185px;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
    font-size: 18px;
}
.calculator__firstBlock__infoBox {
    max-width: 482px;
    box-sizing: border-box;
    background:#00a591;
    height:100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}
.calculator__firstBlock__infoBox h1, .calculator__firstBlock__infoBox h2 {
    margin:0;
}
.calculator__firstBlock__infoBox h1 {
    color:white;
    font-weight: bold;
    font-size:27px;
}
.calculator__firstBlock__infoBox h2 {
    color:white;
    font-size:20px;
}
.calculator__desc {
    font-size: 19px;
    display: block;
    width: 728px;
    color: #222425;
    width: 100%;
}

@media screen and (max-width: 1200px) {
     .calculator__firstBlock img {
         display: block;
         width: 69%;
     }
}
@media screen and (max-width: 769px) {
    .calculator__firstBlock__infoBox {
        order:2;
        max-width:100%;
        padding:20px;
    }
    .calculator__firstBlock img {
        order:1;
        width:100%;
    }
    .calculator__firstBlock {
        display: flex;
        flex-direction: column;
        height:auto;
    }
}
.calculator__inner, .calculator__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
}

.calculator__calc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    position: relative;
}

@media screen and (max-width: 769px) {
    .calculator__calc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.calculator__calc__block {
    width: 100%;
    min-height: 370px;
    position: relative;
}

@media screen and (max-width: 769px) {
    .calculator__calc__block {
        min-height: auto;
    }
}

.calculator__calc__bgBlock {
    z-index: 1;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 9px 10px rgba(155, 155, 155, 0.1);
    box-shadow: 0px 9px 10px rgba(155, 155, 155, 0.1);
    border-radius: 5px;
    height: 315px;
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
}

@media screen and (max-width: 769px) {
    .calculator__calc__bgBlock {
        height: auto;
    }
}

.calculator__calc__countBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom:30px;
}

.calculator__calc__count {
    min-width: 52px;
    min-height: 26px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #00a591;
    border-radius: 5px;
    color: #ffffff;
    padding: 5px 7px;
    gap: 0 3px;
    font-size: 12px;
}

.calculator__calc__main {
    z-index: 2;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 20px 11px;
}

.calculator__calc__main .housing-rates__row {
    display: none;
}

.calculator__calc__main .housing-rates__row.current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    max-width: 60%;
    min-width: 55%;
}
.calculator__calc__main .housing-rates__row.current .form-group span {
    color:#6a6a6b;
    font-size:16px;
}
@media screen and (max-width: 1200px) {
    .calculator__calc__main .housing-rates__row.current {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        min-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .calculator__calc__main {
        top: inherit;
        left: inherit;
        right: inherit;
        height: calc(100% + 20px);
        width: 100%;
        position: relative;
    }
}

@media screen and (max-width: 769px) {
    .calculator__calc__main {
        min-height: calc(100% + 50px);
        height: 100%;
    }
}

.calculator__calc__btns {
    display: flex;
    gap: 0 30px;
    position: absolute;
    bottom: 20px;
    justify-content: flex-start;
    width: 100%;
}

.calculator__calc__btns button {
    min-width: 150px;
    border: 1px solid #00a591;
    background: transparent;
    border-radius: 5px;
    min-height: 45px;
    line-height: 45px;
    cursor: pointer;
    color:#00a591;
    font-size: 18px;
    padding: 0 35px;
}
@media screen and (max-width:576px) {
    .calculator__calc__btns button {
        padding:0 5px;
    }
}
.calculator__calc__btns button:last-of-type {
    background: #00a591;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .calculator__calc__btns {
        margin-top:50px;
        position: relative;
        bottom: inherit;
    }
}

.calculator__calc .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px 0;
    min-width: calc(50% - 10px);
}

@media screen and (max-width: 991px) {
    .calculator__calc .form-group {
        width: 100%;
    }
}

.calculator__calc .form-group .error-msg {
    color: #D13338!important;
    font-weight: bold;
}

.calculator__calc .form-group .walls.input-checkbox-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: none;
    gap: 10px;
    flex-direction: column;
}

.calculator__calc .form-group .walls .input-checkbox-block__block-line {
    border: 1px solid #d3d3d3 !important;
    height: 45px;
    max-width: max-content;
    border-radius: 5px;
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
}

.calculator__calc .form-group .fake-select__value {
    height: 40px;
    line-height: 40px;
}

.calculator__calc .form-group.fake-select__checkbox-block {
    margin-top: 10px;
}

.calculator__calc .form-group .fake-select__checkbox:not(checked) + label:before {
    left: 0;
}

.calculator__calc .form-group .fake-select__checkbox-label {
    padding: 10px 12px 10px 33px;
}

.calculator__calc .input__block-text {
    background: #FFFFFF;
    position: relative;
    border: 1px solid #D3D3D3;
    border-radius: 6px;
    width: 145px;
}

@media screen and (max-width: 991px) {
    .calculator__calc .input__block-text {
        width: 100%;
    }
}

.calculator__calc .input__block-text input {
    border: none;
    background: transparent;
    padding-right: 30px;
    font-size:18px;
}

.calculator__calc .input__block-text div {
    position: absolute;
    right: 10px;
    top: 7px;
}

@media screen and (max-width: 991px) {
    .calculator__calc .housing-rates__block-numb {
        text-align: left;
    }
}

.calculator__calc .housing-rates__block-numb.usd span {
    color: #00A591;
    font-size: 19px;
    font-weight: bold;
}

.calculator__calc .housing-rates__block-numb.usd .housing-rates__numb {
    font-size: 19px;
    font-weight: bold;
    color: #00A591;
}

.calculator__calc .housing-rates__block-numb .housing-rates__numb {
    font-size: 16px;
    font-weight: normal;
}

.calculator__calc .result-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px 0;
}

.calculator__calc .result-info a {
    margin-top: 50px;
    color:#00a591;
    border: 1px solid #00a591;
    background:transparent;
    border-radius: 6px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-weight: bold;
    font-size: 16px;
    padding:0 20px;
}

.calculator__calc .result-info-calc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.calculator__calc .result-info-calc input[type="button"] {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    background: #00a591;
    border: 1px solid #00a591;
}
.calculator__calc__inner {
    display:flex;
    justify-content: space-between;
}
@media screen and (max-width:991px) {
    .calculator__calc__inner {
        flex-direction:column;
        gap:30px;
    }
}
.calculator__resultBlock__infoText {
    background: #EBF8F7;
    padding: 30px!important;
}
.calculator__notWannaQuestion {
    display:flex;
    flex-direction: column;
    gap:10px;
    background:#EBF8F7;
    padding:50px 20px;
    min-height: 340px;
    max-width: 435px;
}
@media screen and (max-width:1200px) {
    .calculator__notWannaQuestion {
        display:none;
    }
}
.calculator__notWannaQuestion b  {
    font-size:18px;
    color:#191919;
}
.calculator__notWannaQuestion a {
    color:#191919;
    font-weight: bold;
}
.calculator__notWannaQuestion button {
    min-height:46px;
    line-height: 46px;
    background:#00a591;
    border:none;
    text-align: center;
    color:#fff;
    font-size:18px;
    border-radius: 5px;
    margin-top:30px;
}
.input-checkbox-block {
    border-radius: 5px;
    border: solid 1px rgba(34,36,37,0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input-checkbox-block__block-line:first-child {
    border-left: none;
}
.input-checkbox-block__block-line {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    border-left: solid 1px rgba(34,36,37,0.2);
}
.input-checkbox-block__checkbox {
    display: none;
}
.input-checkbox-block__block-line:first-child .input-checkbox-block__checkbox-label, .input-checkbox-block__block-line:first-child .input-checkbox-block__checkbox-label--sm {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.input-checkbox-block__checkbox-label--sm {
    padding: 8px 20px 16px;
    display: inline-block;
    width: 100%;
    text-align: center;
    height: 45px;
    box-sizing: border-box;
    line-height: 25px;
    font-size: 18px;
}

.input__text {
    border: solid 1px rgba(34,36,37,0.2);
    border-radius: 5px;
    height: 48px;
    padding: 0 12px;
    position: relative;
    width: 100%;
    outline: 0;
    z-index: 2;
    background: transparent;
}
.input__text--sm {
    height: 45px;
}

.input-checkbox-block__checkbox-label--sm:hover {
    cursor: pointer;
}

.input-checkbox-block__checkbox:checked+label {
    background-color: rgba(34,36,37,0.03);
    font-weight: bold;
}


.fake-select {
    width: 132px;
    height: 48px;
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #4a4a4a;
    text-align: left;
    position: relative;
    overflow: visible;
}

.housing-rates__subdistrict {
    width: 80%;
    height: 36px;
}


.housing-rates__subdistrict .fake-select__value {
    height: 36px;
    line-height: 36px;
    font-size: 15px;
}

.fake-select__value {
    width: 100%;
    height: 48px;
    line-height: 46px;
    padding: 0 28px 0 15px;
    border-radius: 3px;
    border: solid 1px rgba(34,36,37,0.2);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    cursor: pointer;
    font-size: 19px;
    color: #222425;
    background: #ffffff;
}

.fake-select__value:after {
    content: ' ';
    display: block;
    width: 9px;
    height: 9px;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -7px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.fake-select__value:after {
    -webkit-transform: rotate(-135deg) scale(0.7);
    transform: rotate(-135deg) scale(0.7);
}

.fake-select input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
}

.fake-select__list {
    font-family: inherit;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    overflow: auto;
    height: auto;
    min-width: 100%;
    max-width: 290px;
    max-height: 250px;
    margin: 2px 0 0 0;
    padding: 0;
    -webkit-box-shadow: 0 2px 17px 0 rgba(186,186,186,0.5);
    box-shadow: 0 2px 17px 0 rgba(186,186,186,0.5);
    background: #fff;
    z-index: 11;
    border-radius: 3px;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0;
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}

.fake-select__list li {
    padding: 0;
    display: block;
    height: auto;
}

.housing-rates__subdistrict .fake-select__list label {
    font-size: 15px;
}

.fake-select__list label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    font-size: 19px;
    line-height: 1.2;
    -webkit-transition: all ease-in 0.15s;
    transition: all ease-in 0.15s;
    white-space: nowrap;
}

.fake-select__radio-label {
    padding: 10px 12px;
}
.fake-select.opened .fake-select__list {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}

.fake-select__list label.checked {
    background-color: rgba(34,36,37,0.2);
}

.fake-select__list label:hover {
    background-color: rgba(34,36,37,0.2);
}

.fake-select__checkbox {
    display: none;
}

.fake-select__checkbox:not(checked)+label:before {
    content: "";
    top:7px;
    position: absolute;
    left: 10px;
    width: 25px;
    min-width:25px;
    height: 25px;
    min-height:25px;
    border-radius: 2px;
    background-color: #ffffff;
    border: solid 1px rgba(34,36,37,0.4);
}

.fake-select__checkbox:checked+label:before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAAUVBMVEUAAAAiJCYoKysiJSYiJSYjJCYxMTFAQEAiJCYiJSYjJCYjJSYjJiYjJCcjJiYkJiYiJSYiJSYiJSciJSckJiYjJSckJiYiJiYjJycjKyswMDDAwdNjAAAAG3RSTlMAzBfJrYwKBcO8mnxdU1A8ta6ekHJuZEpBJBCXyJYXAAAAVUlEQVQY05WPORLAIAwDbS4TSCD39f+Hpo1FxXbeGY0s6sf4RqUTzTgEjMWJgM0JmMo3GHHr//SGqHBVKpPMToUu+xTWdcGmBX/amQ+oe6M1zZZMnXwxBQH4Y2MGbgAAAABJRU5ErkJggg==);
    background-position: 50% 50%;
}
/* End */


/* Start:/html/css/blocks/modalForm/modalForm.css?17558608476416*/
﻿.modalForm {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2); }
.modalForm__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
.modalForm__container {
  background: #FFFFFF;
  width: 600px;
  display: flex;
  flex-direction: column;
  overflow-y: auto; }
.modalForm__header {
  position: relative;
  padding: 60px 50px 0px 50px;
  display: flex;
  align-items: center;
  margin-bottom: 20px; }
.modalForm__body {
  padding: 0 50px 40px 50px; }
.modalForm__body div {
  margin-bottom: 10px; }
.modalForm__body div:last-of-type {
  margin-bottom: 0; }
.modalForm__body input[type='text'], .modalForm__body input[type='tel'] {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #FFFFFF;
  border: 1px solid #DAD9E2;
  box-sizing: border-box;
  border-radius: 5px;
  outline: none; }
.modalForm__body input[type='text']:focus {
  border: 1px solid #00A591; }
.modalForm__body input[type='text']::placeholder {
  color: #DAD9E2; }
.modalForm__body .modalFormDropDown {
  position: relative; }
.modalForm__body .modalFormDropDown input[type='text'] {
  cursor: pointer; }
.modalForm__body .modalFormDropDown .icons {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer; }
.modalForm__body .modalFormDropDown .dropDownMenu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  max-height: 142px;
  background: #FFFFFF;
  border: 1px solid #DAD9E2;
  box-sizing: border-box;
  box-shadow: 5px 6px 16px rgba(218, 217, 226, 0.4);
  border-radius: 5px;
  padding: 10px 0;
  overflow: auto; }
.modalForm__body .modalFormDropDown .dropDownMenu__item {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0;
  overflow-wrap: anywhere; }
.modalForm__body .modalFormDropDown .dropDownMenu__item:hover {
  background: rgba(218, 217, 226, 0.5); }
.modalForm__body .modalFormSubTitle {
  font-size: 16px;
  color: #6A6A6B;
  margin-bottom: 10px; }
.modalForm__body .modalFormRadio span {
  width: 81px;
  height: 50px; }
.modalForm__body .modalFormRadio span:first-of-type label {
  border-radius: 5px 0 0 5px; }
.modalForm__body .modalFormRadio span:last-of-type label {
  border-radius: 0 5px 5px 0; }
.modalForm__body .modalFormRadio label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  border: 1px solid #DAD9E2;
  background: #FFFFFF; }
.modalForm__body .modalFormRadio input:checked + label {
  background: #00A591;
  border: 1px solid #00A591;
  color: white; }
.modalForm__body .modalFormRadio input[type="radio"] {
  display: none; }
.modalForm__body .modalFormCheckBoxes input[type='checkbox'] {
  position: absolute;
  z-index: -1;
  opacity: 0; }
.modalForm__body .modalFormCheckBoxes input[type='checkbox']:checked + label::before {
  border-color: #018979;
  background-color: #018979;
  background-image: url("/html/css/blocks/modalForm/../../../img/icons/checked-accept.svg");
  box-shadow: 0px 2px 6px 2px rgba(56, 188, 178, 0.25); }
.modalForm__body .modalFormCheckBoxes input[type='checkbox'] + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  line-break: anywhere; }
.modalForm__body .modalFormCheckBoxes input[type='checkbox'] + label:hover::before {
  border: 1px solid #018979;
  transition: 0.5s all; }
.modalForm__body .modalFormCheckBoxes input[type='checkbox'] + label::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80% 80%;
  transition: 0.5s all; }
.modalForm__body .modalFormCheckBoxes label {
  width: 100%; }
.modalForm__body textarea {
  height: 90px;
  width: 100%;
  padding: 15px;
  border: 1px solid #DAD9E2;
  box-sizing: border-box;
  border-radius: 5px; }
.modalForm__body textarea:focus {
  outline: none;
  border: 1px solid #00A591; }
.modalForm__close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer; }
.modalForm__close:hover {
  opacity: 1; }
.modalForm__close:before {
  position: absolute;
  top: 0;
  left: 15px;
  content: ' ';
  height: 25px;
  width: 3px;
  background-color: #888889; }
.modalForm__close:after {
  position: absolute;
  top: 0;
  left: 15px;
  content: ' ';
  height: 25px;
  width: 3px;
  background-color: #888889; }
.modalForm__close:before {
  transform: rotate(45deg); }
.modalForm__close:after {
  transform: rotate(-45deg); }
.modalForm .loader-container {
  filter: brightness(0.8);
  background-color: lightgrey; }
.modalForm .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  border: 2px solid #fff;
  border-bottom-color: black;
  height: 26px;
  width: 26px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite; }
.modalForm .modalFormError {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px !important; }
.modalForm .modalFormError .modalFormErrorImg {
  width: 60px;
  margin-right: 10px;
  margin-bottom: 0 !important; }
.modalForm .modalFormError .modalFormErrorText {
  width: 100%;
  display: flex;
  flex-direction: column; }
.modalForm .modalFormSuccess {
  padding-bottom: 40px; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@media screen and (max-width: 767px) {
  .modalForm__container {
    width: 100%; } }
@media screen and (max-width: 576px) {
  .modalForm__body {
    padding: 0 20px 20px 20px; }
  .modalForm__body .modalFormRadio span {
    width: 25%; } }


/* End */
/* /local/components/ts/calc.prometr/templates/seller_calc/style.css?168595336015070 */
/* /html/css/blocks/modalForm/modalForm.css?17558608476416 */
