button {
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}

.link {
  font-weight: 700;
  /*===============nastavenie farieb pre linky=================*/
  /* funkcia colors: colors(bezna farba, farba pri nadbehnuti mysou,
     farba pri kliknuti, farba vypnuteho linku*, farba navstiveneho linku)
     *link je vypnuty ak obsahuje class "disabled" */
  color: #07B8DA;
  /*=============================================================*/
}

.link:hover {
  color: #008BAD;
}

.link:active {
  color: #008BAD;
}

.link:visited {
  color: #a050c5;
}

.link.disabled {
  color: #d8c1e5;
}

.link:active {
  font-weight: 700;
}

.link.disabled:active {
  font-weight: 700;
}

.link-background {
  /*====nastavenie farieb textu pre linky na farebnom pozadi=====*/
  color: white;
  /*=============================================================*/
}

.link-background:hover {
  color: white;
}

.link-background:active {
  color: white;
}

.link-background:visited {
  color: rgba(255, 255, 255, 0.5);
}

.link-background.disabled {
  color: rgba(255, 255, 255, 0.5);
}

.button {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 0.33rem;
  border-width: 0;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  margin: 0.1rem 0.2rem;
}

.button:active {
  margin: 0;
  padding: 1.1rem 3.2rem;
  transform: translate(-0.05rem, -0.1rem);
}

.button.disabled:active {
  padding: 1rem 3rem;
  transform: initial;
  margin: 0.1rem 0.2rem;
}

@media (max-width: 560px) {
  .button {
    font-size: 2rem;
    padding: 1.335rem 3rem;
  }
  .button:active {
    margin: 0.5rem 0.2rem;
    padding: 1.335rem 3rem;
  }
}

.disabled {
  cursor: not-allowed;
}

.button-background {
  border: 1px solid white;
  margin: 1px;
  /*====nastavenie farieb textu pre tlacidla na farebnom pozadi===*/
  color: white;
  /*=============================================================*/
}

.button-background:hover {
  color: white;
}

.button-background:active {
  color: white;
}

.button-background:visited {
  color: white;
}

.button-background.disabled {
  color: rgba(255, 255, 255, 0.5);
}

.button-background:hover {
  margin: 0px;
  border-width: 2px;
}

.button-background:active {
  transform: scale(1.01);
  margin: 0;
}

.button-background.disabled {
  border-color: rgba(255, 255, 255, 0.5);
}

.button-background.disabled:active {
  transform: scale(1.01);
  margin: 0;
}

.button-background.disabled:hover {
  margin: 1px;
  border-width: 1px;
  border-width: 1px;
}

.button-primary {
  /*====nastavenie farieb textu pre tlacidla na farebnom pozadi===*/
  color: white;
  background-color: #B99B50;
  font-size: 14px;
  font-weight: 500;
  border-radius: 1em;
  /*=============================================================*/
}

.button-primary:hover {
  color: white;
}

.button-primary:active {
  color: white;
}

.button-primary:visited {
  color: white;
}

.button-primary.disabled {
  color: white;
}

.button-primary:hover {
  background-color: #B99B50
}

.button-primary:active {
  background-color: #B99B50
}

.button-primary.disabled {
  background-color: #A3CFDF;
}

.button-primary:active {
  transform: scale(1.01);
  margin: 0;
}

@media (max-width: 560px) {
  .button-primary:active {
    margin-bottom: 0.2rem;
  }
}

.button-primary.disabled {
  border-color: rgba(255, 255, 255, 0.5);
}

.button-primary.disabled:active {
  transform: scale(1.01);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.bg-color-2 {
  background-color: #F4F5F9;
}

#calculator h2 {
  flex: 0 0 100%;
  margin-top: 5px;
  text-align: center;
  padding-bottom: 50px;
}

@media (max-width: 767.99px) {
  h2 {
    font-size: 2.2rem;
  }
}

.bubble-tip {
  width: 97px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 1199px) {
  .bubble-tip {
    width: 60px;
  }
}

@media (max-width: 600px) {
  .bubble-tip {
    margin: 0 auto;
    margin-top: 5px;
    display: block;
  }
}

.tip-close {
  width: 9px;
  height: 10px;
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
}

.tip-close svg {
  width: 9px;
  height: 10px;
}

#calculator .if-tooltip p {
  padding-right: 15px;
}

.d-xsmobile {
  display: initial;
}

.d-mobile {
  display: initial;
}

.d-desktop {
  display: none;
}

@media (min-width: 401px) {
  .d-xsmobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .d-desktop {
    display: initial;
  }
  .d-mobile {
    display: none;
  }
}

/* BUBBLE ANIMATIONS */
.animation {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.animation .opacity {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.animation.delay-0-5 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.animation.already-visible,
.animation.come-in {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animation.already-visible .opacity,
.animation.come-in .opacity {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animate-icon .opacity {
  -webkit-animation-name: fadeInIcon;
  animation-name: fadeInIcon;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInIcon {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInIcon {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* END BUBBLE ANIMATIONS */
/*flex and directions*/
.row {
  display: flex;
  flex-direction: row;
}

.row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.col {
  display: flex;
  flex-direction: column;
}

.col-rev {
  display: flex;
  flex-direction: column-reverse;
}

/*align items*/
.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-base {
  align-items: baseline;
}

.align-between {
  align-content: space-between;
}

.align-around {
  align-content: space-around;
}

.align-stretch {
  align-items: stretch;
}

/*justify content*/
.just-start {
  justify-content: flex-start;
}

.just-center {
  justify-content: center;
}

.just-end {
  justify-content: flex-end;
}

.just-between {
  justify-content: space-between;
}

.just-around {
  justify-content: space-around;
}

/*align self*/
.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.self-baseline {
  align-self: baseline;
}

/*wrap*/
.wrap {
  flex-wrap: wrap;
}

.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.flex-5 {
  flex: 5;
}

#calculator .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  #calculator .row {
    align-items: center;
  }
}

@media (max-width: 450px) {
  #calculator h2 {
    margin-bottom: 10px;
  }
}

#calculator h2 span {
  font-weight: 400;
}

#calculator clearfix:before,
#calculator .clearfix:after,
#calculator .container:before,
#calculator .container:after {
  display: table;
  content: " ";
}

#calculator .clearfix:after,
#calculator .container:after {
  clear: both;
}

#calculator *,
#calculator :after,
#calculator :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#calculator br.desktop {
  display: none;
}

@media (min-width: 451px) {
  #calculator br.desktop {
    display: block;
  }
}

#calculator br.mobile {
  display: block;
}

@media (min-width: 451px) {
  #calculator br.mobile {
    display: none;
  }
}

#calculator .noUi-target .noUi-base span[data-text] {
  position: absolute;
  top: 100%;
  color: #58585A;
  font-size: 15px;
  display: block;
  white-space: nowrap;
  margin-top: 10px;
}

#calculator .noUi-target .noUi-base span[data-text="min"] {
  left: 0;
}

#calculator .noUi-target .noUi-base span[data-text="max"] {
  right: 0;
}

#calculator .noUi-target .noUi-origin {
  background-color: transparent;
}

.calculator-wrapper {
  background: #ffffff;
  box-shadow: 0 12px 12px 0 rgba(192, 199, 218, 0.54);
  border-radius: 12px;
  position: relative;
  margin-bottom: -26px;
  margin-top: -24px;
  padding: 50px 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  z-index: 45;
}

.serious-fantom {
  height: 50px;
  width: 50px;
  vertical-align: text-bottom;
}

/* slider styles */
#calculator .r-slider {
  margin-top: 0;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

#calculator .r-slider#monthly_payment_wrapper {
  padding-bottom: 00px;
}

@media (min-width: 768px) {
  #calculator .r-slider#fixation_wrapper {
    margin-bottom: 0px;
  }
}

#calculator .r-slider .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 34px;
}

@media (max-width: 450px) {
  #calculator .r-slider .input-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

#calculator .r-slider .range-wrap {
  width: 100%;
  padding-top: 20px;
}

#calculator .r-slider .input-wrap .label {
  display: block;
  max-width: 100%;
  width: 100%;
  font-weight: 700;
  /* possibly remove */
  width: 58%;
  flex-shrink: 0;
  font-size: 18px;
  vertical-align: middle;
  margin-bottom: 0;
  padding-right: 5px;
}

#calculator .r-slider .input-wrap .label span {
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 991px) {
  #calculator .r-slider .input-wrap .label {
    width: 50%;
  }
}

@media (max-width: 450px) {
  #calculator .r-slider .input-wrap .label {
    width: 100%;
    font-size: 18px;
    margin-bottom: 15px;
  }
}

#calculator .input-wrapper {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
  position: relative;
}

#calculator .r-slider .input-wrap input {
  width: 100%;
  display: block;
  height: 34px;
  border: none;
  padding: 2px 35px 0 0;
  line-height: 32px;
  border-radius: 4px;
  text-align: right;
  font-size: 18px;
  color: #58585A;
  font-weight: bold;
  vertical-align: middle;
  border: 1px solid #c0c7da;
  -webkit-appearance: none;
}

#calculator .r-slider .input-wrap input[disabled] {
  background-color: #F4F5F9;
}

@media all and (-ms-high-contrast: none) {
  #calculator .r-slider .input-wrap input {
    padding-top: 1px;
  }
}

@media (max-width: 450px) {
  #calculator .r-slider .input-wrap input {
    padding-left: 20px;
  }
}

#calculator .r-slider .input-wrap .curr {
  position: absolute;
  right: 18px;
  bottom: 0px;
  display: inline-block;
  height: 34px;
  padding: 8px 0 0 0;
  line-height: 1;
  border-radius: 4px;
  font-size: 18px;
  color: #58585A;
  font-weight: bold;
  vertical-align: middle;
  border: 1px solid transparent;
  color: #58585A;
  font-weight: bold;
}

#calculator .input-wrap .label {
  color: #B99B50;
  margin-bottom: 5px;
}

#calculator #payment_term_wrapper .input-wrap input {
  padding-right: 15px;
}

#calculator #payment_term_wrapper .input-wrap input:disabled {
  background: #ffffff;
}

#calculator #payment_term_wrapper .input-wrap .curr {
  width: 48px;
}

.noUi-tooltip,
.noUi-value {
  text-align: center;
}

.noUi-target {
  position: relative;
  direction: ltr;
  border-radius: 4px;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  background-color: #C0C7DA;
}

.noUi-connect {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 4px;
  background-color: #B99B50;
}

.noUi-origin {
  position: absolute;
  height: 0;
  width: 0;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  -o-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

div.noUi-base > div.noUi-origin > div {
  cursor: pointer;
}

.noUi-horizontal {
  height: 9px;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  left: -10px;
  top: -6px;
  outline: none;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

.noUi-connect {
  background: #B99B50;
  -webkit-transition: background 450ms;
  -o-transition: background 450ms;
  transition: background 450ms;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: #fbe7c7;
  cursor: default;
  border: 6px solid #B99B50;
}

.noUi-marker,
.noUi-pips,
.noUi-tooltip,
.noUi-value {
  position: absolute;
}

.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 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  color: #999;
}

.noUi-value {
  white-space: nowrap;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  background: #ccc;
}

.noUi-marker-large,
.noUi-marker-sub {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  font-size: 15px;
  color: #58585A;
  top: 15px;
}

.noUi-value.noUi-value-horizontal.noUi-value-large {
  margin-left: -10px;
}

.noUi-value.noUi-value-horizontal:nth-of-type(2) {
  margin-left: 0;
}

.noUi-value.noUi-value-horizontal:last-of-type {
  margin-left: 0;
}

.noUi-value-horizontal:last-child {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
  display: none;
}

.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: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  padding-left: 25px;
}

.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;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #58585A;
  color: #000;
  padding: 5px;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

#calculator .noUi-target .noUi-base span[data-text] {
  position: absolute;
  top: 100%;
  color: #58585A;
  font-size: 15px;
  display: block;
  white-space: nowrap;
  margin-top: 15px;
}

#calculator .payment_term_wrapper .noUi-target .noUi-base span[data-text="min"] {
  display: none;
}

#calculator .payment_term_wrapper .noUi-target .noUi-base span[data-text="max"] {
  display: none;
}

#calculator .noUi-target .noUi-origin {
  background-color: transparent;
}

/* end slider styles */
#calculator .green-bubble {
  text-align: left;
  padding: 4px 40px;
  padding-left: 60px;
  margin: -10px 0 0px;
  background: #07B8DA;
  border-radius: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  position: relative;
  margin-bottom: -15px;
  z-index: 46;
}

#calculator .green-bubble h2 {
  margin: 20px 0;
}

#calculator .green-bubble::before {
  background: url(../img/arrow-down-green.svg) no-repeat;
  content: "";
  width: 45px;
  height: 50px;
  position: absolute;
  bottom: -45px;
  left: 20%;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  z-index: -9;
}

#calculator {
  padding: 80px 0;
}

#calculator .left-col {
  width: 45%;
  padding-right: 50px;
}

@media (max-width: 991px) {
  #calculator .left-col {
    padding-right: 20px;
  }
}

#calculator .right-col {
  width: 55%;
  padding-left: 50px;
  display: flex;
}

.transparent-bg {
  border-radius: 12px;
  background: #edf1f5;
  border: 0.5px solid #C0C7DA;
  width: 100%;
  position: relative;
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transparent-bg .row {
  width: 100%;
}

.transparent-bg .purple {
  position: absolute;
  top: -20px;
  right: -8%;
  width: 100%;
  max-width: 140px;
}

.transparent-bg .green {
  position: absolute;
  top: 80px;
  right: -8%;
  width: 100%;
  max-width: 140px;
}

.transparent-bg .purple div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  line-height: 1.1;
  text-align: center;
}

.transparent-bg .purple div span {
  display: inline-block;
  color: #fff;
}

.transparent-bg .green div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  line-height: 1.1;
  text-align: center;
}

.transparent-bg .green div span {
  display: inline-block;
  color: #fff;
}

.hint {
  color: white;
  width: 100%;
  text-align: center;
  display: block;
  font-weight: 500;
  font-size: 17px;
}

.payment p {
  color: #B99B50;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  margin: 0;
  margin-top: 15px;
  margin-bottom: 0px;
  text-align: center;
}

@media (max-width: 991px) {
  .payment p {
    font-size: 16px;
  }
}

.payment .tip {
  text-align: center;
  margin-bottom: .7rem;
  line-height: 1.3;
}

.payment span {
  color: #58585A;
  background-color: #fff;
  padding: 6px 40px 0px;
  padding-bottom: 8px;
  border-radius: 5px;
  font-size: 40px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  display: inline-block;
  border-radius: 0;
  background: transparent;
  border-bottom: 2px solid #C0C7DA;
  line-height: 1;
  margin-bottom: 1rem;
}

.payment span small {
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding-top: 13px;
  padding-bottom: 10px;
}

.calculate-button-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 5%;
  padding-right: 5%;
}

@media (min-width: 491px) {
  .calculate-button-wrapper {
    display: none;
  }
}

.calculate-button-wrapper button {
  display: block;
  width: 100%;
}

.result-circle {
  margin: 0 auto 0;
  position: relative;
  text-align: center;
  margin-top: 15px;
  width: 200px;
  height: 200px;
}

@media (max-width: 490px) {
  .result-circle {
    margin-bottom: 10px;
  }
}

.result-circle img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.result-circle .top {
  position: absolute;
  width: 100%;
  left: 0;
  top: 27%;
}

.result-circle .top span, .result-circle .top strong {
  color: #B99B50;
  text-transform: uppercase;
}

.result-circle .bottom {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  padding-top: 10px;
}

.result-circle .bottom span, .result-circle .bottom strong {
  color: #56007D;
  text-transform: uppercase;
}

.result-circle .bottom strong + span {
  font-size: 10px;
}

.result-circle span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
}

.result-circle strong {
  display: block;
  font-weight: 700;
  font-size: 22.5px;
}

.disclaimer {
  clear: both;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 35px;
  padding-bottom: 5px;
  border-top: 2px solid #C0C7DA;
  font-size: 16px;
  line-height: 1;
}

.disclaimer p {
  margin: 0;
  padding: 0;
}

.pay-col > span {
  color: #56007d;
  background-color: #fff;
  width: 260px;
  border-radius: 5px;
  padding: 7px 40px 3px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid white;
}

.pay-col p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
  text-align: center;
}

.interested-wrapper {
  width: 100%;
  text-align: center;
  padding-top: 2.2rem;
}

.interested-wrapper .button {
  display: block;
  width: 100%;
}

.payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 63%;
}

@media (max-width: 767px) {
  .payment {
    width: 50%;
  }
}

.pay-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.calculator-holder {
  width: 100%;
  margin-bottom: 20px;
}

.payment-table {
  border-collapse: collapse;
  width: 100%;
  color: #575756;
  font-size: 22px;
  position: relative;
  z-index: -2;
}

.payment-table tr.orange-row,
.payment-table-mobile tr.orange-row {
  color: #ee7000;
}

.payment-table tr td:first-child {
  width: 28%;
}

.payment-table tr td:not(:first-child) {
  width: 24%;
}

.payment-bubble {
  padding: 310px;
  margin: -18px -36px 0px;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #59255a), color-stop(100, #3f1940));
  background-image: -webkit-linear-gradient(top left, #59255a 0%, #3f1940 100%);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#59255a), to(#3f1940));
  background-image: -o-linear-gradient(top left, #59255a 0%, #3f1940 100%);
  background-image: linear-gradient(to bottom right, #59255a 0%, #3f1940 100%);
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  position: relative;
}

.payment-bubble:before {
  background: url(../img/arrow-down.svg) no-repeat;
  content: "";
  width: 45px;
  height: 50px;
  position: absolute;
  bottom: -45px;
  right: 23.5%;
  z-index: -1;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.payment-table-wrapper {
  border: 1px solid #ee7000;
  border-top: none;
  border-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 35px;
  width: 100%;
  margin-top: 60px;
  color: #575756;
}

.payment-table td {
  padding: 1em 0;
}

.payment-table td:not(:first-child) {
  text-align: center;
}

.payment-table td:not(:last-child) {
  border-right: 1px solid #ee7000;
}

.payment-table tr:not(:last-child) td {
  border-bottom: 1px solid #ee7000;
}

.payment-table-mobile {
  border-collapse: collapse;
  width: 100%;
  position: relative;
  z-index: -2;
}

.payment-table-mobile td {
  padding: 1em 0;
}

.payment-table-mobile td + td {
  text-align: center;
  width: 35%;
}

.payment-table-mobile tr:not(:last-child) td {
  border-bottom: 1px solid #ee7000;
}

.payment-table-mobile td:first-child {
  border-right: 1px solid #ee7000;
}

.payment-table-mobile tr:nth-child(3n):not(:last-child) td {
  border-bottom: 3px solid #ee7000;
}

/* radio buttons */
.add-insurance {
  border: 1px solid #00c6cd;
  color: #00c6cd;
  padding: 13px 20px;
  cursor: pointer;
  display: inline-block;
  min-width: 191px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 5px;
}

.add-insurance:focus,
.add-insurance.active {
  border: 1px solid #10a5b1;
  color: #10a5b1;
}

.add-insurance:active {
  transform: scale(1.03);
}

.add-insurance-wrapper {
  text-align: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 10px;
}

#radios h2 {
  color: #ff4d00;
  font-size: 34px;
}

#radios {
  width: 100%;
  position: relative;
  z-index: 44;
  border-top: 2px solid #C0C7DA;
  padding-top: 20px;
  margin-top: 40px;
}

#radios h3 {
  font-size: 18px;
  color: #B99B50;
  padding: 0;
}

#radios .text {
  color: #585857;
  margin: 0;
}

#radios p.bold {
  font-weight: 700;
}

.radio-wrapper {
  margin: 25px 0;
}

.toggle-button {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.toggle-button label {
  display: inline-block;
  cursor: pointer;
  text-align: left;
}

.toggle-button input {
  display: none;
}

.toggle-button__icon {
  cursor: pointer;
  pointer-events: none;
}

.toggle-button__icon:before,
.toggle-button__icon:after {
  content: "";
  position: absolute;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.toggle-button--tuli {
  display: block;
}

.toggle-button--tuli label {
  height: 20px;
  line-height: 22px;
  font-size: 16px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  padding-left: 30px;
  font-weight: 700;
  color: #585857;
  -webkit-tap-highlight-color: transparent;
}

#calculator .toggle-button label .covers {
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  text-align: left;
  display: block;
  color: #585857;
  letter-spacing: -0.41px;
}

.toggle-button--tuli label:before,
.toggle-button--tuli label:after {
  position: absolute;
  top: 0;
  left: 30px;
  width: 110px;
  -webkit-transition: all 0.2s 0.1s ease-out;
  -o-transition: all 0.2s 0.1s ease-out;
  transition: all 0.2s 0.1s ease-out;
}

.toggle-button--tuli input:checked ~ .toggle-button__icon:after {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-animation: slideLeft 0.2s;
  animation: slideLeft 0.2s;
}

.toggle-button--tuli .toggle-button__icon {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  overflow: hidden;
  border-radius: 50%;
}

.toggle-button--tuli .toggle-button__icon:before,
.toggle-button--tuli .toggle-button__icon:after {
  border-radius: 50%;
}

.toggle-button--tuli .toggle-button__icon:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border: 1px solid #C0C7DA;
}

.toggle-button--tuli .toggle-button__icon:after {
  top: 5px;
  left: 5px;
  width: 50%;
  height: 50%;
  background: #B99B50;
  -webkit-animation: slideRight 0.2s ease-out;
  animation: slideRight 0.2s ease-out;
  -webkit-transform: translate(0, 200%);
  -ms-transform: translate(0, 200%);
  transform: translate(0, 200%);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.toggle-button--tuli:hover input:not(:checked) ~ .toggle-button__icon {
  -webkit-animation: hover 0.2s;
  animation: hover 0.2s;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-200%, 0);
    transform: translate(-200%, 0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-200%, 0);
    transform: translate(-200%, 0);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate(200%, 0);
    transform: translate(200%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translate(200%, 0);
    transform: translate(200%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes hover {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes hover {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* end radio buttons */
#calculator .interested {
  -o-transition-property: all;
  -webkit-transition-property: all;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}

#calculator .interested {
  -moz-border-radius: 10px;
  display: inline-block;
}

#calculator .interested {
  text-align: center;
}

@media (max-width: 767px) {
  #calculator .r-slider .range-wrap {
    padding-top: 20px;
  }
  .calculator-holder .green-bubble h2 {
    text-align: left;
    font-size: 24px;
  }
  .serious-fantom {
    height: 40px;
    width: 40px;
    vertical-align: middle;
  }
  .calculator-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #calculator .left-col {
    width: 100%;
    padding: 0;
  }
  #calculator .right-col {
    width: 100%;
    padding: 0;
  }
  #calculator .r-slider {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .transparent-bg {
    width: 100%;
    margin-top: 0;
    padding: 20px 0 10px;
  }
  .hint {
    font-size: 15px;
  }
  .transparent-bg .green {
    top: -40px;
    right: 5%;
    max-width: 135px;
  }
  .transparent-bg .purple {
    top: -40px;
    left: 5%;
    max-width: 135px;
  }
  .transparent-bg .purple img {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
  }
  .toggle-button--tuli {
    width: 100%;
    margin-bottom: 25px;
  }
  #radios .text {
    padding: 0 20px;
  }
  .radio-wrapper {
    margin: 20px 0;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: initial;
  }
  #calculator .green-bubble {
    padding-left: 0;
  }
}

@media (max-width: 450px) {
  #calculator .r-slider .range-wrap {
    padding-top: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .transparent-bg .purple {
    top: -50px;
    left: 10%;
    max-width: 120px;
  }
  .transparent-bg .purple img {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
  }
  .transparent-bg .green {
    top: -50px;
    right: 10%;
    max-width: 120px;
  }
  .calculator-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }
  .payment {
    width: 70%;
  }
}

@media (max-width: 490px) {
  .payment {
    width: 90%;
  }
}

@media (max-width: 630px) {
  .calculator-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#calculator .r-slider.disabled {
  pointer-events: none;
}

#calculator .r-slider.disabled .input-wrap input {
  border: 0.5px solid rgba(192, 199, 218, 0.5);
  color: #C0C7DA;
}

#calculator .r-slider.disabled .input-wrap .curr {
  color: #C0C7DA;
}

#calculator .r-slider.disabled .noUi-base {
  opacity: 0.5;
}

.insure-benefit {
  background-color: #C0C7DA;
  border-radius: 6px;
  padding: 25px;
  font-weight: bold;
  font-size: 14px;
}

#result-line-insurance {
  font-size: 2rem;
}

.calc-divider {
  background: none;
  border: none;
  border-bottom: 2px solid #C0C7DA;
  margin-top: -10px;
  margin-bottom: 30px;
}

@media (max-width: 450px) {
  .calc-divider {
    margin-top: 0;
    padding-top: 20px;
  }
}

#loan-interest {
  font-style: normal;
}


.circle {
  transform: rotate(12deg);
  color: white;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  padding-top: 25px;
  position: absolute;
  top:100px;
  right: 15px;
  width:145px;
  height:145px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: #AC002D;
  z-index: 999;
}

@media (max-width: 991px) {
  .circle {
    top: 75px;
    right: 0;

  }
}

@media (max-width: 768px) {
  .circle {
   position: relative;
    left: 75%;
    top: -60px;
    margin-bottom: -25px;
  }
}

@media (max-width: 600px) {
  .circle {
    left: 70%;
  }
}

@media (max-width: 480px) {
  .circle {
    left: 50%;
  }
}


.circle span {
  font-weight: normal;
}

.circle span.perc {
  line-height: 32px;
  font-weight: bold;
  font-size: 26px;
}
