.FinancingCalculator {
  body {
    margin: 0;
  }
  .loader {
    margin: 0 auto;
    border: 5px solid #f7f7f7;
    border-top: 5px solid #81d23f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .mortgage-container .slider-wrap > div {
    width: 100%;
  }
  .mortgage-container .m-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mortgage-container .m-input label {
    padding-right: 5px;
    flex-grow: 1;
  }
  .mortgage-container h1 {
    position: absolute;
    margin: 0;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
  }
  .mortgage-container h1 svg {
    margin-right: 10px;
  }
  .mortgage-container .svg-color {
    fill: #81d23f;
    margin-bottom: 5px;
  }
  .mortgage-container .svg-squre-wrapper {
    padding: 0 !important;
    background: #f3fbec;
    display: inline-flex;
    width: 140px !important;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
  }
  .mortgage-container .svg-squre-wrapper svg {
    width: 45px;
    height: 45px;
  }
  .mortgage-container .svg-squre-wrapper svg rect.svg-color {
    fill: transparent !important;
  }
  .mortgage-container .logo {
    width: 140px;
  }
  .mortgage-container .f-wrapper {
    position: relative;
    display: flex;
    min-height: 340px;
  }
  .mortgage-container .f-wrapper .fs,
  .mortgage-container .f-wrapper .ss {
    width: 100%;
    text-align: center;
  }
  .mortgage-container .f-wrapper .back {
    position: absolute;
    left: 25px;
    top: 20px;
    cursor: pointer;
    background: #f7f7f7;
    border-radius: 8px;
    width: 25px;
    height: 25px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    font-family: monospace;
    display: none;
  }
  .mortgage-container .f-wrapper .back:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border: solid #333333;
    border-width: 2px 0 0 2px;
    padding: 2px;
  }
  .mortgage-container .f-wrapper .back:hover {
    background: #dedede;
  }
  .mortgage-container .f-wrapper form + div {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #ffffff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 2px solid #eeeeee;
    border-left: none;
    text-align: center;
  }
  .mortgage-container .f-wrapper form + div > div {
    /* padding-top: 45px; */
    width: 100%;
  }
  .mortgage-container .f-wrapper form + div a,
  .mortgage-container .f-wrapper form + div input {
    display: inline-block;
    background: #81d23f;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    min-width: 140px;
    box-sizing: border-box;
  }
  .mortgage-container .f-wrapper form + div a:hover {
    background: #68b42a;
  }
  .mortgage-container .f-wrapper form + div .title {
    margin-bottom: 5px;
    font-size: 17px;
  }
  .mortgage-container .f-wrapper form + div .price {
    text-align: center;
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 19px;
    color: #81d23f;
  }
  .mortgage-container .f-wrapper form + div .price-up {
    position: absolute;
    right: -13px;
    top: 5px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .mortgage-container .f-wrapper form + div .price-up:hover {
    border-color: #81d23f;
    cursor: pointer;
  }
  .mortgage-container .f-wrapper form + div .price-down {
    position: absolute;
    right: -13px;
    top: 11px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .mortgage-container .f-wrapper form + div .price-down:hover {
    border-color: #81d23f;
    cursor: pointer;
  }
  .mortgage-container .f-wrapper form + div .note {
    font-size: 12px;
  }
  .mortgage-container .f-wrapper .r-block {
    width: 30%;
    box-sizing: border-box;
  }
  @media (min-width: 640px) {
    .mortgage-container.chart-active .f-wrapper .r-block .r-block-buttons {
      display: none !important;
    }
  }
  .mortgage-container input[type='text'],
  .mortgage-container select {
    background: transparent;
    border: 1px solid transparent;
    text-align: center;
    border-radius: 3px;
    padding: 7px;
    font-size: 15px;
    outline: none;
    flex-grow: 2;
    box-sizing: border-box;
    max-width: 100%;
  }
  .mortgage-container input[type='text']:hover,
  .mortgage-container select:hover,
  .mortgage-container input[type='text']:focus,
  .mortgage-container select:focus {
    border: 1px solid #81d23f;
  }
  .mortgage-container input[type='text'].error,
  .mortgage-container select.error {
    border: 1px solid red;
  }
  .mortgage-container input[type='checkbox'].error + label {
    border: 1px solid red;
  }
  .mortgage-container .error-description {
    display: block;
    color: red;
    font-size: 11px;
    /* padding-left: 104px; */
    margin-top: 3px;
  }
  @media (max-width: 380px) {
    .mortgage-container .error-description {
      padding-left: 0;
    }
  }
  .mortgage-container .firstStep input,
  .mortgage-container .firstStep select {
    width: 100%;
  }
  .mortgage-container .firstStep select {
    text-align-last: center;
  }
  .mortgage-container .firstStep input[type='checkbox'] {
    width: auto;
  }
  .mortgage-container .firstStep .m-input label {
    width: 250px;
    max-width: 100% !important;
  }
  .mortgage-container .firstStep > .slider-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mortgage-container .firstStep .error-description {
    padding-left: 164px;
  }
  @media (max-width: 380px) {
    .mortgage-container .firstStep .error-description {
      padding-left: 0;
    }
  }
  .mortgage-container .noUi-horizontal {
    height: 5px;
  }
  .mortgage-container .noUi-horizontal .noUi-handle {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    top: -9px;
    outline: none;
    border: 3px solid #81d23f;
    cursor: grab;
  }
  .mortgage-container .noUi-horizontal .noUi-handle.noUi-active {
    cursor: grabbing;
  }
  .mortgage-container [disabled] .noUi-handle {
    border: 3px solid #b8b8b8;
    cursor: not-allowed;
  }
  .mortgage-container .noUi-handle:after,
  .mortgage-container .noUi-handle:before {
    display: none;
  }
  .mortgage-container .noUi-horizontal .noUi-tooltip {
    display: none !important;
    background: #ffffff;
    border-radius: 8px;
    padding: 7px 14px;
    bottom: 133%;
    font-size: 12px;
  }
  .mortgage-container form {
    flex-grow: 2;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 64px;
    padding-top: 118px;
    display: flex;
    align-items: center;
    width: 70%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .mortgage-container form > div {
    display: block !important;
    width: 100%;
  }
  .mortgage-container form > div .firstStep {
    width: 100%;
  }
  .mortgage-container form > div .secondStep {
    width: 100%;
  }
  .mortgage-container form > div .secondStep > div {
    margin-bottom: 5px;
  }
  .mortgage-container form > div .secondStep label {
    width: 100px;
    display: inline-block;
  }
  .mortgage-container form > div .secondStep input[type='text'] {
    text-align: left;
  }
  .mortgage-container form .agreement-text {
    font-size: 12px;
  }
  .mortgage-container form .agreement-text a {
    color: #81d23f;
  }
  .mortgage-container a.disabled {
    pointer-events: none;
    cursor: default !important;
    background: #bfbfbf !important;
  }
  .mortgage-container .l-cb {
    width: calc(100% - 30px) !important;
    font-size: 12px;
    padding-left: 10px;
  }
  .mortgage-container .noUi-connect {
    background: #81d23f;
  }
  .mortgage-container .noUi-target {
    border: none;
  }
  .mortgage-container.refinancing .f-wrapper {
    min-height: 345px;
  }
  .mortgage-container.refinancing input[type='text']:hover,
  .mortgage-container.refinancing input[type='text']:focus {
    border-color: #3fb8af;
  }
  .mortgage-container.refinancing .noUi-connect {
    background: #3fb8af;
  }
  .mortgage-container.refinancing .noUi-horizontal .noUi-handle {
    border-color: #3fb8af;
  }
  .mortgage-container.refinancing .f-wrapper form + div .price {
    color: #3fb8af;
  }
  .mortgage-container.refinancing .f-wrapper form + div a {
    background: #3fb8af;
  }
  .mortgage-container.refinancing .f-wrapper form + div a:hover {
    background: #32928b;
  }
  .mortgage-container.refinancing .svg-color {
    fill: #3fb8af;
  }
  .mortgage-container.refinancing .svg-squre-wrapper {
    padding: 0 !important;
    background: #ecf8f7;
  }
  @media (max-width: 650px) {
    .mortgage-container .f-wrapper form {
      width: 65%;
    }
    .mortgage-container .f-wrapper .r-block {
      width: 35%;
    }
  }
  @media (max-width: 590px) {
    .mortgage-container .f-wrapper {
      flex-direction: column;
      overflow: hidden;
    }
    .mortgage-container .f-wrapper form {
      border-bottom-left-radius: 0;
      border-top-right-radius: 8px;
      width: 100%;
      box-sizing: border-box;
    }
    .mortgage-container .f-wrapper .m-input input {
      width: 100%;
    }
    .mortgage-container .f-wrapper .r-block {
      width: 100%;
      border-top-right-radius: 0;
      border-bottom-left-radius: 8px;
      border-top: 0;
      border-left: 2px solid #eeeeee;
    }
    .mortgage-container .f-wrapper .note {
      margin-bottom: 5px;
    }
  }
  @media (max-width: 380px) {
    .mortgage-container .f-wrapper .m-input {
      flex-direction: column;
      align-items: baseline;
    }
    .mortgage-container .f-wrapper .m-input input {
      width: 100%;
      text-align: left;
    }
    .mortgage-container .f-wrapper .firstStep .slider-wrap {
      margin-top: 30px;
      flex-direction: column;
      align-items: baseline;
    }
    .mortgage-container .f-wrapper .firstStep .slider-wrap > span {
      margin-bottom: 49px;
    }
  }
  .mortgage-container .mt-50 {
    margin-top: 50px;
  }
  .mortgage-container .mt-10 {
    margin-top: 10px;
  }
  .mortgage-container .mt-15 {
    margin-top: 15px;
  }
  .mortgage-container .mt-20 {
    margin-top: 20px;
  }
  .mortgage-container .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    right: 0;
    bottom: 0;
    z-index: 5;
    opacity: 0.5;
    border-radius: 8px;
  }
  .mortgage-container .modal-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mortgage-container .modal-wrapper .modal-content {
    position: relative;
    background: #ffffff;
    padding: 35px;
    border: 2px solid #eeeeee;
    border-radius: 8px;
    text-align: center;
  }
  .mortgage-container .modal-wrapper .modal-content .modal-close {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
  }
  .chart-container .button-container {
    text-align: center;
  }
  @media (max-width: 590px) {
    .chart-container .button-container {
      display: none !important;
    }
  }
  .chart-container .button-container a,
  .chart-container .button-container input {
    margin: 0 auto;
    display: inline-block;
    background: #81d23f;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    min-width: 140px;
    box-sizing: border-box;
    text-align: center;
  }
  .chart-container .button-container a:hover,
  .chart-container .button-container input:hover {
    background: #68b42a;
  }
  .f-wrapper.chart-initialized .r-block {
    border-bottom-right-radius: 0;
  }
  .f-wrapper.chart-initialized form {
    border-bottom-left-radius: 0;
  }
  .chart-container {
    overflow: hidden;
    max-height: 0;
    transition:
      max-height 2s ease-in-out,
      padding-bottom 2s ease-in-out;
    padding: 0 2rem;
    padding-top: 1.2rem;
    border-color: #eeeeee;
  }
  .chart-container.initialized {
    display: block;
    padding: 2rem;
    padding-top: 1.2rem;
    border: 2px solid #eeeeee;
    border-top: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 400px;
  }
  .mortgage-container .chart-container {
    overflow: hidden;
    max-height: 0;
    transition:
      max-height 2s ease-in-out,
      padding-bottom 2s ease-in-out;
    padding: 0 2rem;
    padding-top: 1.2rem;
    border-color: #eeeeee;
  }
  .mortgage-container .chart-container.initialized {
    display: block;
    padding: 2rem;
    padding-top: 1.2rem;
    border: 2px solid #eeeeee;
    border-top: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 400px;
  }
  .mortgage-container .chart-container .chart-heading {
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .mortgage-container .chart-container .chart-wrapper {
    position: relative;
    padding-left: 30px;
    margin-top: 6px;
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line {
    position: absolute;
    width: calc(100% - 30px);
    height: 1px;
    background: #eeeeee;
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:before {
    content: attr(title);
    font-size: 10px;
    position: absolute;
    left: -30px;
    height: 20px;
    width: 20px;
    top: -5px;
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(1) {
    top: calc(0 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(2) {
    top: calc(1 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(3) {
    top: calc(2 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(4) {
    top: calc(3 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(5) {
    top: calc(4 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(6) {
    top: calc(5 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart-line:nth-child(7) {
    top: calc(6 / 2 * 100% / 3);
  }
  .mortgage-container .chart-container .chart-wrapper .chart {
    padding: 0;
    display: flex;
    justify-content: space-between;
    table-layout: fixed;
    width: 100%;
    margin: 0 auto;
  }
  .mortgage-container .chart-container .chart-wrapper .chart li {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    vertical-align: bottom;
    text-align: center;
    width: 100%;
    height: 200px;
  }
  .mortgage-container .chart-container .chart-wrapper .chart li.err + .err {
    display: none;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(1)
    span {
    background: #89d54b;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(1)
    span:hover:not(.error-bar) {
    background: #6fc02d;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(2)
    span {
    background: #91d858;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(2)
    span:hover:not(.error-bar) {
    background: #76cd30;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(3)
    span {
    background: #99db64;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(3)
    span:hover:not(.error-bar) {
    background: #7ed13b;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(4)
    span {
    background: #a2de71;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(4)
    span:hover:not(.error-bar) {
    background: #86d447;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(5)
    span {
    background: #aae17d;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(5)
    span:hover:not(.error-bar) {
    background: #8fd754;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(6)
    span {
    background: #b2e389;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(6)
    span:hover:not(.error-bar) {
    background: #97da60;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(7)
    span {
    background: #bae696;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(7)
    span:hover:not(.error-bar) {
    background: #9fdd6c;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(8)
    span {
    background: #c2e9a2;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(8)
    span:hover:not(.error-bar) {
    background: #a7e079;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(9)
    span {
    background: #caecaf;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(9)
    span:hover:not(.error-bar) {
    background: #afe285;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(10)
    span {
    background: #d2efbb;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(10)
    span:hover:not(.error-bar) {
    background: #b7e592;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(11)
    span {
    background: #daf2c7;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(11)
    span:hover:not(.error-bar) {
    background: #bfe89e;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(12)
    span {
    background: #e3f5d4;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(12)
    span:hover:not(.error-bar) {
    background: #c7ebaa;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(13)
    span {
    background: #ebf8e0;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(13)
    span:hover:not(.error-bar) {
    background: #d0eeb7;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(14)
    span {
    background: #f3fbed;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(14)
    span:hover:not(.error-bar) {
    background: #d8f1c3;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(15)
    span {
    background: #fbfef9;
  }
  .mortgage-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(15)
    span:hover:not(.error-bar) {
    background: #e0f4d0;
  }
  .mortgage-container .chart-container .chart-wrapper .chart li span {
    margin: 0 auto;
    display: block;
    max-width: 40px;
    transition: height 1s ease-in-out;
    color: #ffffff;
    font-size: 12px;
    padding-top: 10px;
    box-sizing: border-box;
  }
  @media (min-width: 640px) {
    .mortgage-container .chart-container .chart-wrapper .chart li span {
      width: 100% !important;
    }
  }
  .mortgage-container .chart-container .chart-wrapper .chart li span.error-bar {
    background: none;
    color: #565656;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    max-width: none;
  }
  .mortgage-container .chart-container .chart-wrapper .chart li span:before {
    color: #565656;
    font-size: 10px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 5px;
    display: block;
    text-align: center;
    content: attr(title);
    word-wrap: break-word;
  }
  @media (max-width: 590px) {
    .mortgage-container .chart-container.initialized {
      max-height: 800px;
    }
    .mortgage-container .chart-container .chart-heading {
      margin: 0;
      padding-bottom: 20px;
    }
    .mortgage-container .chart-container .chart-wrapper {
      padding-left: 0;
      margin-left: 50px;
      margin-top: 20px;
    }
    .mortgage-container .chart-container .chart-wrapper .chart-line {
      position: absolute;
      height: 100%;
      width: 1px;
      top: 0;
    }
    .mortgage-container .chart-container .chart-wrapper .chart-line:before {
      left: -11px;
      top: -15px;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(1) {
      left: calc(100% - (0 * 100% / 3));
      top: 0;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(2) {
      left: calc(100% - (0.5 * 100% / 3));
      top: 0;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(3) {
      left: calc(100% - (1 * 100% / 3));
      top: 0;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(4) {
      left: calc(100% - (1.5 * 100% / 3));
      top: 0;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(5) {
      left: calc(100% - (2 * 100% / 3));
      top: 0;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(6) {
      left: calc(100% - (2.5 * 100% / 3));
      top: 0;
    }
    .mortgage-container
      .chart-container
      .chart-wrapper
      .chart-line:nth-child(7) {
      left: calc(100% - (3 * 100% / 3));
      top: 0;
    }
    .mortgage-container .chart-container .chart-wrapper .chart {
      height: auto;
      flex-direction: column;
      justify-content: space-around;
    }
    .mortgage-container .chart-container .chart-wrapper .chart li {
      flex-direction: column;
      height: 100%;
      align-items: flex-start;
      max-height: 35px;
      padding: 5px 0;
    }
    .mortgage-container .chart-container .chart-wrapper .chart li span {
      margin: auto 0;
      height: 35px !important;
      max-width: none;
      padding: 0;
      padding-right: 10px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      transition: width 1s ease-in-out;
    }
    .mortgage-container .chart-container .chart-wrapper .chart li span:before {
      left: -50px;
      right: auto;
      top: calc(50% - 11px);
      width: 45px;
      text-align: left;
    }
  }
  @media (max-width: 370px) {
    .mortgage-container .chart-container .chart-wrapper .chart-line:before {
      display: none;
    }
  }
  @keyframes draw {
    0% {
      height: 0;
    }
  }
  @media (max-height: 740px) {
    .mortgage-container .chart-container.initialized {
      padding-bottom: 1.2rem;
    }
    .mortgage-container .chart-container .chart-wrapper .chart li {
      height: 150px;
    }
  }
  @media (max-height: 680px) {
    .mortgage-container .f-wrapper {
      min-height: 330px;
    }
    .mortgage-container .chart-container.initialized {
      padding-bottom: 1rem;
      padding-top: 1rem;
    }
    .mortgage-container .chart-container .chart-wrapper .chart li {
      height: 120px;
    }
  }
  @media (max-height: 650px) {
    .mortgage-container .chart-container .chart-wrapper .chart li {
      height: 100px;
    }
  }
  .refinancing-container .chart-container.initialized {
    padding-bottom: 1.2rem;
  }
  .refinancing-container .chart-container .chart-wrapper {
    position: relative;
    margin-top: 0px;
    display: flex;
  }
  .refinancing-container .chart-container .chart-wrapper .chart-description {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 14px;
  }
  .refinancing-container .chart-container .chart-wrapper .chart {
    padding: 0;
    display: flex;
    justify-content: space-between;
    table-layout: fixed;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .refinancing-container .chart-container .chart-wrapper .chart li {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    vertical-align: bottom;
    text-align: center;
    width: 100%;
    height: 140px;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(1)
    span {
    background: #46c0b7;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(1)
    span:hover:not(.error-bar) {
    background: #369d96;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(2)
    span {
    background: #52c4bb;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(2)
    span:hover:not(.error-bar) {
    background: #3aa9a1;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(3)
    span {
    background: #5dc8c0;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(3)
    span:hover:not(.error-bar) {
    background: #3eb4ab;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(4)
    span {
    background: #69ccc4;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(4)
    span:hover:not(.error-bar) {
    background: #43bfb5;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(5)
    span {
    background: #74cfc9;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(5)
    span:hover:not(.error-bar) {
    background: #4ec2ba;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(6)
    span {
    background: #7fd3cd;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(6)
    span:hover:not(.error-bar) {
    background: #59c6be;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(7)
    span {
    background: #8bd7d2;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(7)
    span:hover:not(.error-bar) {
    background: #65cac3;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(8)
    span {
    background: #96dbd6;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(8)
    span:hover:not(.error-bar) {
    background: #70cec7;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(9)
    span {
    background: #a2dfda;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(9)
    span:hover:not(.error-bar) {
    background: #7cd2cc;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(10)
    span {
    background: #ade3df;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(10)
    span:hover:not(.error-bar) {
    background: #87d6d0;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(11)
    span {
    background: #b8e7e3;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(11)
    span:hover:not(.error-bar) {
    background: #92dad5;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(12)
    span {
    background: #c4ebe8;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(12)
    span:hover:not(.error-bar) {
    background: #9eded9;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(13)
    span {
    background: #cfefec;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(13)
    span:hover:not(.error-bar) {
    background: #a9e2dd;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(14)
    span {
    background: #dbf3f1;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(14)
    span:hover:not(.error-bar) {
    background: #b5e6e2;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(15)
    span {
    background: #e6f6f5;
  }
  .refinancing-container
    .chart-container
    .chart-wrapper
    .chart
    li:nth-child(15)
    span:hover:not(.error-bar) {
    background: #c0e9e6;
  }
  .refinancing-container .chart-container .chart-wrapper .chart li span {
    margin: 0 auto;
    display: block;
    max-width: 70px;
    transition: height 1s ease-in-out;
    color: #ffffff;
    font-size: 12px;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
  }
  @media (min-width: 768px) {
    .refinancing-container .chart-container .chart-wrapper .chart li span {
      width: 100% !important;
    }
  }
  @media (max-width: 310px) {
    .refinancing-container .chart-container .chart-wrapper .chart li span {
      max-width: 50px;
      font-size: 9px;
    }
  }
  .refinancing-container .chart-container .chart-wrapper .chart li span em {
    font-style: normal;
  }
  .refinancing-container .chart-container .chart-wrapper .chart li span:before {
    color: #565656;
    font-size: 10px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 5px;
    display: block;
    text-align: center;
    content: attr(title);
    word-wrap: break-word;
  }
  .refinancing-container .chart-container .separator {
    height: 1px;
    background: #eeeeee;
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .refinancing-container .chart-container .button-container {
    padding-top: 15px;
    display: flex;
    align-items: center;
  }
  .refinancing-container .chart-container .button-container div {
    width: 100%;
  }
  .refinancing-container .chart-container .button-container div .fs,
  .refinancing-container .chart-container .button-container div .ss {
    width: 160px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin: 0 auto;
  }
  .refinancing-container .chart-container .button-container a,
  .refinancing-container .chart-container .button-container input {
    background: #3fb8af;
  }
  .refinancing-container .chart-container .button-container a:hover,
  .refinancing-container .chart-container .button-container input:hover {
    background: #32928b;
  }
  @media (max-width: 590px) {
    .refinancing-container .chart-container.initialized .chart-wrapper {
      flex-direction: column;
    }
    .refinancing-container
      .chart-container.initialized
      .chart-wrapper
      .separator {
      display: none;
    }
    .refinancing-container
      .chart-container.initialized
      .chart-wrapper
      .chart-description {
      width: 100%;
      text-align: center;
    }
    .refinancing-container
      .chart-container.initialized
      .chart-wrapper
      .chart-description
      span {
      padding: 5px 0;
    }
    .refinancing-container .chart-container.initialized .chart-wrapper .chart {
      width: 100%;
    }
  }
  @media (max-height: 700px) {
    .refinancing-container .chart-container.initialized {
      padding-bottom: 1rem;
      padding-top: 1rem;
    }
  }
  @media (max-height: 670px) {
    .refinancing-container
      .chart-container.initialized
      .chart-wrapper
      .chart
      li {
      height: 120px;
    }
  }
  .m-input-radio {
    display: flex;
    justify-content: space-between;
  }
  .m-input-radio input {
    display: none;
    width: auto;
  }
  .m-input-radio input + label {
    cursor: pointer;
    display: flex;
  }
  .m-input-radio input + label:before {
    cursor: pointer;
    content: '';
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    border: 3px solid #81d23f;
    box-sizing: border-box;
  }
  .m-input-radio input:checked + label:before {
    background: #81d23f;
  }
  .m-input-radio div > div {
    margin-bottom: 10px;
  }
  @media (max-width: 380px) {
    .m-input-radio {
      flex-direction: column;
    }
    .m-input-radio label {
      display: block;
      margin-bottom: 10px;
    }
  }
  .consumerloan-container input + label:before {
    border-color: #3fb8af;
  }
  .consumerloan-container input:checked + label:before {
    background-color: #3fb8af;
  }
  @media (max-width: 590px) {
    .children-savings .chart-container > .d-flex {
      display: block;
    }
    .children-savings .chart-container .chart-wrapper {
      margin-left: 0;
    }
    .children-savings .chart-container .charttext3 {
      margin-top: 10px;
      margin-bottom: 10px;
    }
    .children-savings .chart-container .chart-w-wrapper {
      padding-top: 10px;
    }
    .children-savings .chart-container.initialized {
      padding-left: 3rem;
      padding-right: 3rem;
    }
  }
  @media (min-width: 640px) {
    .children-savings .charttext1 {
      margin-bottom: 20px;
    }
    .children-savings .chart-container.initialized {
      padding-top: 30px;
    }
    .children-savings .chart-description {
      width: 40%;
      padding-right: 10px;
    }
    .children-savings .chart-w-wrapper {
      width: 60%;
      padding: 25px 10px;
      border: 1px solid #eeeeee;
    }
    .children-savings .chart-container .chart-wrapper {
      padding-left: 55px;
      width: 100%;
      box-sizing: border-box;
    }
    .children-savings .chart-container .chart-wrapper .chart-line {
      width: calc(100% - 55px);
    }
    .children-savings .chart-container .chart-wrapper .chart-line:before {
      left: -55px;
      height: auto;
      display: inline-block;
      width: 50px;
      text-align: right;
    }
  }
  @media (min-width: 640px) {
    .children-savings .chart-container .chart-wrapper .chart li span {
      max-width: 100px;
      position: relative;
    }
    .children-savings .chart-container .chart-wrapper .chart li span div {
      padding: 0;
      background: none !important;
      position: absolute;
      top: -30px;
      color: black;
      left: 0;
      right: 0;
    }
  }
  .children-savings .chart-container .chart-wrapper .chart li.bank-1 {
    justify-content: flex-end;
    padding-right: 15px;
  }
  .children-savings .chart-container .chart-wrapper .chart li.bank-1 span {
    margin: 0;
    background-color: #81d23f;
  }
  .children-savings
    .chart-container
    .chart-wrapper
    .chart
    li.bank-1
    span:hover {
    background-color: #68b42a !important;
  }
  .children-savings .chart-container .chart-wrapper .chart li.bank-2 {
    justify-content: flex-start;
  }
  .children-savings .chart-container .chart-wrapper .chart li.bank-2 span {
    margin: 0;
    background-color: #68b42a;
  }
  .children-savings
    .chart-container
    .chart-wrapper
    .chart
    li.bank-2
    span:hover {
    background-color: #508b20 !important;
  }
  .reality-container form > .logo,
  .reality-container form > svg {
    position: absolute;
    width: 150px;
    right: 10px;
    top: 10px;
    height: auto;
  }
  .reality-container .firstStep .m-input label {
    min-width: 140px !important;
    max-width: 140px !important;
  }
  .reality-container .firstStep .m-input label#mapyLabel {
    width: 100% !important;
    max-width: 100% !important;
  }
  @media (max-width: 380px) {
    .reality-container .firstStep .m-input label {
      min-width: 100% !important;
      max-width: 100% !important;
    }
  }
  .reality-container .firstStep .m-input > div {
    flex-grow: 2;
  }
  @media (max-width: 380px) {
    .reality-container .firstStep .m-input > div {
      width: 100% !important;
    }
  }
  .reality-container .firstStep > .d-block {
    margin-bottom: 15px;
  }
  .reality-container .checkbox-list .m-input div > div {
    display: inline-block;
    min-width: 50% !important;
    width: 50% !important;
    max-width: 100% !important;
  }
  @media (max-width: 460px) {
    .reality-container .checkbox-list .m-input div > div {
      min-width: 100% !important;
      width: 100% !important;
    }
  }
  .reality-container .checkbox-list .m-input div label {
    min-width: auto !important;
    width: auto !important;
    max-width: 100% !important;
    display: inline-flex;
    box-sizing: border-box;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
  }
  .reality-container .checkbox-list .m-input div label input[type='checkbox'] {
    width: auto !important;
    display: none;
  }
  .reality-container
    .checkbox-list
    .m-input
    div
    label
    input[type='checkbox']
    + span:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    left: 0;
    border: 1px solid #81d23f;
    border-radius: 4px;
  }
  .reality-container
    .checkbox-list
    .m-input
    div
    label
    input[type='checkbox']:checked
    + span:before,
  .reality-container
    .checkbox-list
    .m-input
    div
    label
    input[type='checkbox']:hover
    + span:before {
    background: #81d23f;
  }
  .reality-container
    .checkbox-list
    .m-input
    div
    label
    input[type='checkbox']:checked
    + span:after {
    top: 0;
    content: '\2713';
    display: block;
    text-align: center;
    color: #ffffff;
    position: absolute;
    left: 3px;
    font-size: 13px;
    font-weight: bold;
  }
  .reality-container .checkbox-list .m-input div.error {
    border: 1px solid red;
  }
  .reality-container .button-container a,
  .reality-container .button-container input {
    margin: 0 auto;
    display: inline-block;
    background: #81d23f;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    max-width: 140px;
    box-sizing: border-box;
    text-align: center;
  }
  .reality-container .button-container a:hover,
  .reality-container .button-container input:hover {
    background: #68b42a;
  }
  .reality-container .forceHidden {
    display: none !important;
  }
  .reality-container .r-block {
    justify-content: space-between !important;
  }
  .hidden {
    display: none;
  }
  #svgmapy .filled {
    fill: #81d23f;
  }
  @media (max-width: 380px) {
    .americanmortgage-container .f-wrapper form {
      padding-top: 90px;
    }
  }
  .pension .r-block {
    justify-content: center !important;
  }
  .pension .r-block .info-block {
    transition: height 1s ease-in-out;
    height: 0;
    overflow: hidden;
    padding-top: 20px;
  }
  .pension .r-block .info-block .text1,
  .pension .r-block .info-block .text2,
  .pension .r-block .info-block .text3 {
    font-size: 12px;
  }
  .pension .r-block .info-block .text1,
  .pension .r-block .info-block .text2,
  .pension .r-block .info-block .text3,
  .pension .r-block .info-block .text4 {
    margin: 5px 0;
  }
  .pension .r-block .info-block .text4 {
    margin-bottom: 5px;
    font-size: 17px;
  }
  .pension .r-block .info-block .price1,
  .pension .r-block .info-block .price2 {
    font-weight: bold;
  }
  /*# sourceMappingURL=style.css.map */

  .loader {
    border-top-color: #008000 !important;
  }
  .mortgage-container input[type='text']:hover,
  .mortgage-container input[type='text']:focus,
  .mortgage-container select:hover,
  .mortgage-container select:focus {
    border-color: #008000 !important;
  }
  .mortgage-container .noUi-connect {
    background: #def17f !important;
  }
  .mortgage-container .noUi-touch-area {
    background: #def17f !important;
    border-radius: 100%;
  }
  .mortgage-container .noUi-horizontal .noUi-handle {
    border-color: #008000 !important;
  }
  .mortgage-container .f-wrapper form + div .price {
    color: #008000 !important;
  }
  .mortgage-container form .agreement-text a {
    color: #008000 !important;
  }
  .mortgage-container .f-wrapper form + div a {
    background: #008000 !important;
  }
  .mortgage-container .f-wrapper form + div a:hover {
    background: #007400 !important;
  }
  .mortgage-container .svg-color {
    fill: #008000 !important;
  }
  .mortgage-container .svg-color-contrast {
    fill: #ffffff !important;
  }
  .mortgage-container .svg-squre-wrapper {
    background: #e6f3e6 !important;
  }

  .mortgage-container .f-wrapper form + div a,
  .chart-container .button-container a {
    color: #ffffff !important;
  }
  .mortgage-container .f-wrapper .m-input-radio input + label:before {
    border: 3px solid #008000 !important;
  }

  .mortgage-container #svgmapy .filled {
    fill: #008000 !important;
  }

  .mortgage-container
    .f-wrapper
    .checkbox-list
    label
    input[type='checkbox']
    + span:before {
    border: 1px solid #008000 !important;
  }
  .mortgage-container
    .f-wrapper
    .checkbox-list
    label
    input[type='checkbox']:checked
    + span:before,
  .mortgage-container
    .f-wrapper
    .checkbox-list
    label
    input[type='checkbox']:hover
    + span:before {
    background: #008000 !important;
  }

  .mortgage-container .f-wrapper .m-input-radio input:checked + label:before {
    background-color: #008000 !important;
  }
  .chart-container .button-container a,
  .chart-container .button-container input {
    background: #008000 !important;
  }
  .chart-container .button-container a:hover,
  .chart-container .button-container input:hover {
    background: #007400 !important;
  }

  .chart-container .chart-wrapper .chart li:nth-child(1) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(1)
    span:not(.error-bar):hover {
    background: #187f18 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(2) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(2)
    span:not(.error-bar):hover {
    background: #2d8a2d !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(3) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(3)
    span:not(.error-bar):hover {
    background: #3f943f !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(4) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(4)
    span:not(.error-bar):hover {
    background: #519d51 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(5) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(5)
    span:not(.error-bar):hover {
    background: #60a560 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(6) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(6)
    span:not(.error-bar):hover {
    background: #6dac6d !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(7) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(7)
    span:not(.error-bar):hover {
    background: #7ab37a !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(8) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(8)
    span:not(.error-bar):hover {
    background: #85b885 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(9) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(9)
    span:not(.error-bar):hover {
    background: #8fbd8f !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(10) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(10)
    span:not(.error-bar):hover {
    background: #98c298 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(11) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(11)
    span:not(.error-bar):hover {
    background: #a0c6a0 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(12) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(12)
    span:not(.error-bar):hover {
    background: #a7c9a7 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(13) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(13)
    span:not(.error-bar):hover {
    background: #adcdad !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(14) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(14)
    span:not(.error-bar):hover {
    background: #b4cfb4 !important;
  }
  .chart-container .chart-wrapper .chart li:nth-child(15) span:not(.error-bar) {
    background: var(--color-green) !important;
  }
  .chart-container
    .chart-wrapper
    .chart
    li:nth-child(15)
    span:not(.error-bar):hover {
    background: #b9d2b9 !important;
  }
  .children-savings .chart-container .chart-wrapper .chart li.bank-1 span {
    background: #008000 !important;
  }
  .children-savings
    .chart-container
    .chart-wrapper
    .chart
    li.bank-1
    span:hover {
    background: #007400 !important;
  }

  .children-savings .chart-container .chart-wrapper .chart li.bank-2 span {
    background: #006700 !important;
  }
  .children-savings
    .chart-container
    .chart-wrapper
    .chart
    li.bank-2
    span:hover {
    background: #005a00 !important;
  }
  @media (max-width: 590px) {
    .chart-container .chart-wrapper .chart li span {
      color: #ffffff !important;
    }
  }

  /*! nouislider - 14.6.2 - 9/16/2020 */
  .noUi-target,
  .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .noUi-target {
    position: relative;
  }
  .noUi-base,
  .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .noUi-connects {
    overflow: hidden;
    z-index: 0;
  }
  .noUi-connect,
  .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
  }
  .noUi-connect {
    height: 100%;
    width: 100%;
  }
  .noUi-origin {
    height: 10%;
    width: 10%;
  }
  .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto;
  }
  .noUi-vertical .noUi-origin {
    width: 0;
  }
  .noUi-horizontal .noUi-origin {
    height: 0;
  }
  .noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
  }
  .noUi-touch-area {
    height: 100%;
    width: 100%;
  }
  .noUi-state-tap .noUi-connect,
  .noUi-state-tap .noUi-origin {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
  }
  .noUi-state-drag * {
    cursor: inherit !important;
  }
  .noUi-horizontal {
    height: 18px;
  }
  .noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    right: -17px;
    top: -6px;
  }
  .noUi-vertical {
    width: 18px;
  }
  .noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    top: -17px;
  }
  .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto;
  }
  .noUi-target {
    background: #fafafa;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    box-shadow:
      inset 0 1px 1px #f0f0f0,
      0 3px 6px -5px #bbb;
  }
  .noUi-connects {
    border-radius: 3px;
  }
  .noUi-connect {
    background: #3fb8af;
  }
  .noUi-draggable {
    cursor: ew-resize;
  }
  .noUi-vertical .noUi-draggable {
    cursor: ns-resize;
  }
  .noUi-handle {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    cursor: default;
    box-shadow:
      inset 0 0 1px #fff,
      inset 0 1px 7px #ebebeb,
      0 3px 6px -3px #bbb;
  }
  .noUi-active {
    box-shadow:
      inset 0 0 1px #fff,
      inset 0 1px 7px #ddd,
      0 3px 6px -3px #bbb;
  }
  .noUi-handle:after,
  .noUi-handle:before {
    content: '';
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #e8e7e6;
    left: 14px;
    top: 6px;
  }
  .noUi-handle:after {
    left: 17px;
  }
  .noUi-vertical .noUi-handle:after,
  .noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
  }
  .noUi-vertical .noUi-handle:after {
    top: 17px;
  }
  [disabled] .noUi-connect {
    background: #b8b8b8;
  }
  [disabled] .noUi-handle,
  [disabled].noUi-handle,
  [disabled].noUi-target {
    cursor: not-allowed;
  }
  .noUi-pips,
  .noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .noUi-pips {
    position: absolute;
    color: #999;
  }
  .noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
  }
  .noUi-value-sub {
    color: #ccc;
    font-size: 10px;
  }
  .noUi-marker {
    position: absolute;
    background: #ccc;
  }
  .noUi-marker-sub {
    background: #aaa;
  }
  .noUi-marker-large {
    background: #aaa;
  }
  .noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  .noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
  }
  .noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
  }
  .noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
  }
  .noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
  }
  .noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
  }
  .noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 25px;
  }
  .noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  .noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
  }
  .noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
  }
  .noUi-marker-vertical.noUi-marker-large {
    width: 15px;
  }
  .noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
  }
  .noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
  }
  .noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
  }
  .noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
  }
  .noUi-vertical .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(0, -18px);
    transform: translate(0, -18px);
    top: auto;
    right: 28px;
  }
}
