/* Minification failed. Returning unminified contents.
(322,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(328,15): run-time error CSS1039: Token not allowed after unary operator: '-widthBefore'
(358,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(361,20): run-time error CSS1039: Token not allowed after unary operator: '-state-bg'
 */
/* Minification failed. Returning unminified contents.
(316,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(322,15): run-time error CSS1039: Token not allowed after unary operator: '-widthBefore'
(352,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(355,20): run-time error CSS1039: Token not allowed after unary operator: '-state-bg'
 */
.default-calculator {
  font-size: 16px;
  font-family: system-ui;
  color: rgba(0, 0, 0, 0.82);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.default-calculator * {
  box-sizing: border-box;
}
.default-calculator__overlay {
  padding: 24px;
  border: 1px solid rgba(81, 113, 129, 0.35);
  border-radius: 3px;
}
.default-calculator .ui-state-default {
  background: linear-gradient(260.88deg, #DF005E -37.48%, #F2768F 111.68%);
  border: none;
  outline: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  z-index: 10;
  transition: 0.15s opacity ease-in-out;
}
.default-calculator .ui-state-default::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 6px solid #FEB2BE;
  opacity: 0;
  border-radius: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
  box-sizing: border-box;
}
.default-calculator .ui-state-default:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width : 1200px) {
  .default-calculator .ui-state-default:hover:before {
    opacity: 0.35;
  }
  .default-calculator .ui-state-default:active:before {
    opacity: 0.5;
  }
}
.default-calculator .ui-widget-header {
  background: #DF005E;
}
.default-calculator .ui-slider-horizontal {
  cursor: pointer;
  height: 4px;
  margin: 0 10px 0 10px;
}
.default-calculator .ui-slider-horizontal::before {
  content: "";
  height: 4px;
  width: 15px;
  background: #DF005E;
  left: -9px;
  position: absolute;
  border-radius: 10px;
}
.default-calculator .ui-slider-horizontal::after {
  content: "";
  height: 4px;
  width: 10px;
  background: rgba(254, 186, 197, 0.6);
  right: -9px;
  position: absolute;
  border-radius: 10px;
}
.default-calculator .ui-slider-handle {
  top: 50%;
  transform: translateY(-50%);
}
.default-calculator .ui-widget-content {
  border: 0;
  background: rgba(254, 186, 197, 0.6);
}
.default-calculator__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.default-calculator__box label {
  font-weight: 500;
}
.default-calculator__input-wrapper {
  position: relative;
  display: block;
}
.default-calculator__input {
  max-width: 122px;
  padding: 4px 12px;
  text-align: end;
}
.default-calculator__input--amount {
  padding: 4px 22px 4px 12px;
}
.default-calculator__input-btn {
  padding: 6px 14px;
  background: none;
  border: none;
  cursor: pointer;
}
.default-calculator .sign-ruble {
  position: absolute;
  right: 10px;
  top: 48%;
  transform: translateY(-50%);
  line-height: 100%;
  font-size: 18px;
}
.default-calculator .sign-percent {
  position: absolute;
  right: 10px;
  top: 34%;
  transform: translateY(-50%);
  line-height: 100%;
  font-size: 18px;
}
.default-calculator_main-calculator {
  min-width: 600px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width : 700px) {
  .default-calculator_main-calculator {
    min-width: 0;
    max-width: none;
  }
}
.default-calculator_main-calculator .calculator-list-price {
  display: flex;
}
@media screen and (max-width : 700px) {
  .default-calculator_main-calculator .calculator-list-price {
    flex-direction: column;
  }
}
.default-calculator_main-calculator .calculator-list-price > li {
  display: block;
}
@media screen and (max-width : 700px) {
  .default-calculator_main-calculator .calculator-list-price > li {
    display: flex;
  }
}
.default-calculator_main-calculator .calculator-list-price > li:not(:last-child) {
  margin-right: 32px;
}
.default-calculator_main-calculator .calculator-list-price > li .calculator-list-price__val {
  margin-left: 0;
  margin-top: 4px;
}
@media screen and (max-width : 700px) {
  .default-calculator_main-calculator .calculator-list-price > li .calculator-list-price__val {
    margin-left: 4px;
    margin-top: 0;
  }
}
.default-calculator_sidebar-calculator .calculator-box__info,
.default-calculator_sidebarInfo-calculator .calculator-box__info {
  margin-top: 24px;
}
.default-calculator_sidebar-calculator > input:checked ~ .default-calculator-btn,
.default-calculator_sidebarInfo-calculator > input:checked ~ .default-calculator-btn {
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.3s;
}
.default-calculator_sidebar-calculator > input:checked ~ .default-calculator__overlay,
.default-calculator_sidebarInfo-calculator > input:checked ~ .default-calculator__overlay {
  opacity: 1;
  min-height: 1px;
  max-height: 600px;
  transform: scaleY(1);
  padding: 24px;
}
.default-calculator_sidebar-calculator .default-calculator__overlay,
.default-calculator_sidebarInfo-calculator .default-calculator__overlay {
  padding: 24px;
  border: 1px solid rgba(81, 113, 129, 0.35);
  border-radius: 3px;
}
@media screen and (max-width : 480px) {
  .default-calculator_sidebar-calculator .default-calculator__overlay,
  .default-calculator_sidebarInfo-calculator .default-calculator__overlay {
    opacity: 0;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: opacity 0.8s, max-height 0.2s, transform 0.2s;
    padding: 0;
  }
}
@media screen and (max-width : 480px) {
  .default-calculator_sidebar-calculator .default-calculator-btn,
  .default-calculator_sidebarInfo-calculator .default-calculator-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .default-calculator_sidebar-calculator .default-calculator-btn::after,
  .default-calculator_sidebarInfo-calculator .default-calculator-btn::after {
    width: 20px;
    height: 14px;
    background-color: currentColor;
    content: "";
    -webkit-mask-image: url('/Images/shared/icon/icons/calculator_icon.svg');
    -webkit-mask-repeat: no-repeat;
    margin: 2px 0 0 6px;
  }
}
.default-slider .ui-state-default {
  background: linear-gradient(260.88deg, #DF005E -37.48%, #F2768F 111.68%);
  border: none;
  outline: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  z-index: 10;
  transition: 0.15s opacity ease-in-out;
}
.default-slider .ui-state-default::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 6px solid #FEB2BE;
  opacity: 0;
  border-radius: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
  box-sizing: border-box;
}
.default-slider .ui-state-default:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width : 1200px) {
  .default-slider .ui-state-default:hover:before {
    opacity: 0.35;
  }
  .default-slider .ui-state-default:active:before {
    opacity: 0.5;
  }
}
.default-slider .ui-widget-header {
  background: #DF005E;
}
.default-slider.ui-slider-horizontal {
  cursor: pointer;
  height: 4px;
  margin: 0 10px 0 10px;
}
.default-slider.ui-slider-horizontal::before {
  content: "";
  height: 4px;
  width: 15px;
  background: #DF005E;
  left: -9px;
  position: absolute;
  border-radius: 10px 0 0 10px;
}
.default-slider.ui-slider-horizontal::after {
  content: "";
  height: 4px;
  width: 9px;
  background: rgba(254, 186, 197, 0.6);
  right: -9px;
  position: absolute;
  border-radius: 0 10px 10px 0;
}
.default-slider .ui-slider-handle {
  top: 50%;
  transform: translateY(-50%);
}
.default-slider.ui-widget-content {
  border: 0;
  background: rgba(254, 186, 197, 0.6);
  border-radius: 0;
}
.default-slider_main .ui-slider-range {
  --widthBefore: 100%;
}
.default-slider_main .ui-slider-range::before {
  content: "";
  background: #92CA00;
  border-radius: 9px;
  width: var(--widthBefore);
  height: 100%;
  position: absolute;
  top: 0;
  left: -5px;
  display: block;
}
.default-slider_main.ui-slider-horizontal {
  height: 5px;
  background: #C7D3D9;
  box-shadow: inset 0px 2px 2px #AABBC3;
  margin: 0 5px 0 5px;
}
.default-slider_main.ui-slider-horizontal::before {
  width: 10px;
  height: 5px;
  left: -5px;
  background: #92CA00;
}
.default-slider_main.ui-slider-horizontal::after {
  width: 12px;
  height: 5px;
  right: -5px;
  background: #C7D3D9;
  box-shadow: inset -1px 2px 2px #AABBC3;
}
.default-slider_main .ui-widget-header {
  background: #7AB100;
}
.default-slider_main .ui-state-default {
  --state-bg: #92CA00;
  width: 16px;
  height: 16px;
  background: var(--state-bg);
}
.default-slider_main .ui-state-default::after {
  width: 10.5px;
  height: 10.5px;
}
.default-slider_main .ui-state-default:hover:before,
.default-slider_main .ui-state-default:active:before {
  opacity: 0;
}
.promo-calculator .default-calculator .default-calculator__input {
  max-width: 88px;
  font-size: 16px;
  padding: 4px 8px;
}
.promo-calculator .default-calculator .ui-slider-horizontal {
  height: 6px;
  background: #EDEDED;
  margin: 0 5px 0 5px;
}
.promo-calculator .default-calculator .ui-slider-horizontal::before {
  width: 10px;
  height: 6px;
  left: -5px;
  background: #92CA00;
}
.promo-calculator .default-calculator .ui-slider-horizontal::after {
  width: 12px;
  height: 6px;
  right: -5px;
  background: #EDEDED;
}
.promo-calculator .default-calculator .ui-widget-header {
  background: #92CA00;
}
.promo-calculator .default-calculator .ui-state-default {
  width: 16px;
  height: 16px;
  background: #92CA00;
}
.promo-calculator .default-calculator .ui-state-default::after {
  width: 10.5px;
  height: 10.5px;
}
.promo-calculator .default-calculator .ui-state-default:hover:before,
.promo-calculator .default-calculator .ui-state-default:active:before {
  opacity: 0;
}
.promo-calculator .default-calculator .default-calculator-list li {
  color: rgba(0, 0, 0, 0.4);
  opacity: 0.85;
  line-height: 20px;
  font-weight: 400;
  font-size: 14px;
}
.calculator-box:not(:last-child) {
  margin-bottom: 24px;
}
.calculator-box__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.calculator-box__title {
  font-weight: 500;
  line-height: 130%;
  display: flex;
  align-items: center;
}
.calculator-box__title .tooltip-info__wrap:before {
  left: 10%;
}
.calculator-box__info {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  line-height: 130%;
  margin-top: 16px;
}
.calculator-box__wrap-input {
  display: flex;
  margin-right: -14px;
}
.calculator-list-price > li {
  display: flex;
  line-height: 125%;
}
.calculator-list-price > li:not(:last-child) {
  margin-bottom: 12px;
}
.calculator-list-price > li .calculator-list-price__val__crossout {
  color: rgba(0, 0, 0, 0.64);
  position: relative;
  text-decoration: none;
}
.calculator-list-price > li .calculator-list-price__val__crossout:before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  border-bottom: 2px solid #BC0051;
  transform: rotate(-12.93deg);
}
.calculator-list-price > li .calculator-list-price__val__black {
  color: rgba(0, 0, 0, 0.82);
  font-weight: bold;
}
.calculator-list-price__val {
  margin-left: 8px;
}
.calculator-list-price_profile {
  display: flex;
}
@media screen and (max-width : 480px) {
  .calculator-list-price_profile {
    flex-direction: column;
  }
}
.calculator-list-price_profile > li {
  display: block;
}
@media screen and (max-width : 480px) {
  .calculator-list-price_profile > li {
    display: flex;
  }
}
.calculator-list-price_profile > li:not(:last-child) {
  margin-right: 32px;
}
.calculator-list-price_profile > li .calculator-list-price__val {
  margin-left: 0;
  margin-top: 4px;
}
@media screen and (max-width : 480px) {
  .calculator-list-price_profile > li .calculator-list-price__val {
    margin-left: 4px;
    margin-top: 0;
  }
}
.default-calculator-list {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.64);
}
.default-calculator-btn {
  display: none;
}
.default-calculator-ins-list {
  padding-top: 12px;
}
div.question-sign {
  border: 2px solid #517181;
  box-sizing: border-box;
  border-radius: 15.6522px;
  width: 20px;
  height: 20px;
  text-align: center;
  display: inline-block;
  top: 4px;
  position: relative;
}
.question-sign span {
  top: -3px;
  position: relative;
  color: #517181;
  font-weight: bold;
  cursor: default;
}
.div-life-insurance-detail {
  padding-top: 46px;
  border-bottom: 2px solid #d9e1e4;
  padding-bottom: 10px;
}
.div-life-insurance-detail-link {
  font-size: 16px;
  line-height: 140%;
  text-decoration-line: underline;
  color: #517181;
  cursor: pointer;
}
.tooltip-link {
  font-size: 14px;
  line-height: 140%;
  text-decoration-line: underline;
  color: #517181;
  cursor: pointer;
}
.default-calculator-ins-tooltip {
  cursor: pointer;
}
#insuranceToolTipArea {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  margin-right: 40px;
}
.insuranceToolTip-bottom {
  color: rgba(0, 0, 0, 0.4);
  padding-top: 5px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
}
.class_div___element-Popup__insuranceToolTip {
  min-height: 50px !important;
}
.class_div___component-Popup__insuranceToolTip {
  width: 200px;
  padding: 12px;
}
.class_div___component-Popup__insuranceToolTip .headline-popup {
  display: none;
}
.class_div___component-Popup__insuranceToolTip .close:before {
  background-color: #00000066 !important;
}
.class_div___component-Popup__insuranceToolTip .close:after {
  background-color: #00000066 !important;
}
.class_div___element-Popup__lifeInsuranceBanner {
  max-height: initial;
}
.btn-continue-with-insurance {
  max-width: 100%;
}
.btn-continue-with-insurance .default-btn-loader {
  max-width: 100%;
}
.calc-button-container {
  padding-top: 24px;
}
.esia-error-message {
  font-weight: normal;
  color: #CA1919;
}
.popup-loan-amount-question {
  color: black;
}
.btn-loan-amount-question {
  /* button */
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 328px;
  min-width: 242px;
  height: 40px;
  background: #EEF2F4;
  border: 1px solid rgba(81, 113, 129, 0.45);
  border-radius: 3px;
  margin: 24px 0 30px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.04em;
  font-variant: all-small-caps;
  color: #517181;
}
@media screen and (max-width: 691px) {
  .btn-loan-amount-question {
    width: 320px;
    max-width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .btn-loan-amount-question {
    width: 100%;
    margin: 24px auto 30px auto;
    max-width: 100%;
  }
}
.btn-loan-amount-question-ok {
  font-size: 16px;
  font-family: system-ui;
  text-transform: lowercase;
  font-variant: small-caps;
  font-weight: bold;
  letter-spacing: 0.04em;
  outline: none;
  cursor: pointer;
  line-height: 125%;
  max-width: 320px;
  padding: 7px 24px 14px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-appearance: none;
  border: none;
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: 1px solid transparent;
  width: 174px;
  height: 40px;
  background-color: #E1FC8B;
  color: #486E00;
}

