/*
Calculator styles
*/
#adsar {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #adsar {
    flex-wrap: wrap;
    width: auto;
    max-width: auto;
  }
}

#adsar > div {
  flex: 1;
  align-self: flex-start;
}

#adsar #mainform {
  flex-basis: 40%;
  padding: 16px;
}

@media (max-width: 767px) {
  #adsar #mainform {
    flex-basis: 100%;
  }
}

#adsar .results {
  flex-basis: 60%;
  background-color: #f0f2fe;
  border-radius: 8px;
  padding: 16px;
}

@media (max-width: 767px) {
  #adsar .results {
    flex-basis: 100%;
    border-radius: 0;
  }
}

#adsar h1,
#adsar .h1 {
  color: var(--article-headings-color);
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 8px;
  margin-top: 0;
}

#adsar h2 {
  color: var(--article-headings-color);
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  margin-top: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

#adsar h3 {
  color: var(--article-headings-color);
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  margin-top: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

#adsar .text-center {
  text-align: center;
}

#adsar .sliderlabelleft,
#adsar .sliderlabelright {
  font-weight: bold;
  margin-bottom: 3px;
  color: #3d403d;
  display: none;
}

#adsar .sliderlabelleft {
  float: left;
  text-align: left;
}

#adsar .sliderlabelright {
  float: right;
  text-align: right;
}

#adsar .calculatetop {
  margin-top: 25px;
}

#adsar .btn.link {
  display: inline-flex;
  align-items: center;
  margin: 24px auto 0;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--cta-primary-background);
  border-color: var(--cta-primary-background);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 24px 82px 24px 16px;
  border-radius: 16px;
  position: relative;
  width: 100%;
}

#adsar .btn.link:after {
  display: block;
  content: '';
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: var(--lilac-200);
  top: calc(50% - 21px);
  right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='23.999999999999996' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath id='svg_1' fill='%23291D4C' d='m11.2929,4.29289c0.3905,-0.39052 1.0237,-0.39052 1.4142,0l7,7.00001c0.3905,0.3905 0.3905,1.0237 0,1.4142l-7,7c-0.3905,0.3905 -1.0237,0.3905 -1.4142,0c-0.3905,-0.3905 -0.3905,-1.0237 0,-1.4142l5.2929,-5.2929l-11.5858,0c-0.55228,0 -1,-0.4477 -1,-1c0,-0.5523 0.44772,-1 1,-1l11.5858,0l-5.2929,-5.29289c-0.3905,-0.39053 -0.3905,-1.02369 0,-1.41422z' clip-rule='evenodd' fill-rule='evenodd'/%3E%3Cpath id='svg_2' fill='%23291D4C' d='m47.52241,4.62076c0.3905,-0.39052 1.0237,-0.39052 1.4142,0l7,7.00001c0.3905,0.3905 0.3905,1.0237 0,1.4142l-7,7c-0.3905,0.3905 -1.0237,0.3905 -1.4142,0c-0.3905,-0.3905 -0.3905,-1.0237 0,-1.4142l5.2929,-5.2929l-11.5858,0c-0.55228,0 -1,-0.4477 -1,-1c0,-0.5523 0.44772,-1 1,-1l11.5858,0l-5.2929,-5.29289c-0.3905,-0.39053 -0.3905,-1.02369 0,-1.41422z' clip-rule='evenodd' fill-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 60px 24px;
  background-position: calc(100% - 10px) 9px;
  transition: background-position 300ms linear;
  position: absolute;
}

#adsar .btn.link:hover:after {
  background-position: calc(100% + 27px) 9px;
}

#adsar .btn.link:hover {
  background-color: var(--purple-500);
  border-color: var(--purple-500);
  outline: 2px solid var(--purple-500);
}

#adsar .btn.link:focus {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  outline: 2px solid #ffffff;
  box-shadow: 0 0 0 4px #2b173f;
}

/*#adsar p {
    font-size: 16px;
    color: #756899;
    line-height: 22px;
    margin: 8px 0;
}*/

#adsar p.assume {
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
  display: none;
}

#adsar .p {
  margin-bottom: 1em;
}

#adsar .resultslinkblock {
  padding-top: 35px;
}

#adsar .error,
#adsar .form_error {
  margin-top: 20px;
}

#adsar .heading {
  margin-top: 32px;
  display: block;
  color: var(--article-headings-color);
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 8px;
}

#adsar .row.form-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #adsar .row.form-group {
    width: 100%;
  }
}

#adsar .row.form-group > div {
  flex: 1;
}

#adsar .row.form-group > div:first-child {
  margin-right: 10px;
}

@media (max-width: 767px) {
  #adsar .row.form-group > div {
    flex-basis: 100%;
    margin-right: 0;
  }

  #adsar .results .row.form-group > div {
    max-width: 100%;
  }
}

#adsar .results .row.form-group {
  display: block;
}

#adsar .info {
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 3.25C7.02944 3.25 3 7.27944 3 12.25C3 17.2206 7.02944 21.25 12 21.25C16.9706 21.25 21 17.2206 21 12.25C21 7.27944 16.9706 3.25 12 3.25ZM1 12.25C1 6.17487 5.92487 1.25 12 1.25C18.0751 1.25 23 6.17487 23 12.25C23 18.3251 18.0751 23.25 12 23.25C5.92487 23.25 1 18.3251 1 12.25ZM11 8.25C11 7.69772 11.4477 7.25 12 7.25H12.01C12.5623 7.25 13.01 7.69772 13.01 8.25C13.01 8.80228 12.5623 9.25 12.01 9.25H12C11.4477 9.25 11 8.80228 11 8.25ZM12 11.25C12.5523 11.25 13 11.6977 13 12.25V16.25C13 16.8023 12.5523 17.25 12 17.25C11.4477 17.25 11 16.8023 11 16.25V12.25C11 11.6977 11.4477 11.25 12 11.25Z' fill='%235B5EBF'/%3E%3C/svg%3E%0A");
  background-size: cover;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
  margin-bottom: -2px;
}

#adsar .info:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 3.25C7.02944 3.25 3 7.27944 3 12.25C3 17.2206 7.02944 21.25 12 21.25C16.9706 21.25 21 17.2206 21 12.25C21 7.27944 16.9706 3.25 12 3.25ZM1 12.25C1 6.17487 5.92487 1.25 12 1.25C18.0751 1.25 23 6.17487 23 12.25C23 18.3251 18.0751 23.25 12 23.25C5.92487 23.25 1 18.3251 1 12.25ZM11 8.25C11 7.69772 11.4477 7.25 12 7.25H12.01C12.5623 7.25 13.01 7.69772 13.01 8.25C13.01 8.80228 12.5623 9.25 12.01 9.25H12C11.4477 9.25 11 8.80228 11 8.25ZM12 11.25C12.5523 11.25 13 11.6977 13 12.25V16.25C13 16.8023 12.5523 17.25 12 17.25C11.4477 17.25 11 16.8023 11 16.25V12.25C11 11.6977 11.4477 11.25 12 11.25Z' fill='%23291D4C'/%3E%3C/svg%3E%0A");
}

#adsar a.info:focus {
  background-color: transparent;
  box-shadow: none;
}

#adsar .row.form-group.info-block {
  display: none;
}

#adsar .info-block p {
  text-align: left;
  margin: 0 0 1em;
  font-size: 14px;
  color: #646664;
  font-weight: 300;
  line-height: 1.4;
}

#adsar .row.form-group.error {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

#adsar .form_error {
  position: relative;
  padding: 2px 20px 2px 60px;
  border-left: 5px solid #e21219;
  background-color: #fde8e9;
  margin-bottom: 20px;
}

#adsar .form_error p {
  padding: 8px;
  color: #e21219;
}

#adsar .form_error strong {
  font-weight: bold;
}

#adsar .form_error .icon {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 14px;
  fill: none;
  background-color: rgba(255, 255, 255, 0);
  stroke: #e21219;
  color: #ffffff;
}

#adsar .error-control input {
  border-color: var(--color-tint-negative);
  color: var(--color-tint-negative);
  background-color: #fde8e9;
}

#adsar .input-group {
  display: inline-table;
  vertical-align: middle;
  width: 100%;
  position: relative;
}

#adsar .input-group-addon {
  box-sizing: border-box;
  background-color: transparent;
  line-height: 1;
  font-size: 24px;
  padding: 9px 13px;
  transition: all 0.2s linear;
  font-weight: 600;

  position: absolute;
  top: calc(50% - 25px);
  left: 1px;
  z-index: 1;
  border: 0;
  box-shadow: none;

  color: #8e82b1;
}

#adsar .input-group .input-group-addon + input {
  padding-left: 36px;
}

#adsar input + .input-group-addon {
  left: inherit;
  right: 4px;
}

#adsar .input-group input {
  padding: 11px 13px 8px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  border-radius: 12px;
  box-sizing: border-box;
  background-color: #fff;
  display: block;
  color: #291d4c;
  transition: all 0.2s ease-in-out;
  margin: 0 0 10px;
  border: 1px solid var(--purple-400);
  box-shadow: none;
  outline: none;
  width: 100%;
}

@media (max-width: 767px) {
  #adsar .input-group input {
    padding: 9px 13px 9px;
  }
}

#adsar .input-group input:focus {
  box-shadow: 0 0 0 1px var(--color-primary);
  border-color: var(--color-primary);
}

.select-wrapper select {
  background-color: transparent;
  padding: 11px 55px 15px 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.1s linear;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  appearance: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #8e82b1;
}

.select-wrapper select:focus {
  outline: none;
}

.select-wrapper {
  height: 47px;
  background-color: #ffffff;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.2s linear;
  overflow: hidden;
  border: 1px solid var(--purple-400);
  width: 100%;
}

.select-wrapper:focus-within {
  border-color: var(--color-primary);
}

.select-wrapper.hidden {
  height: 0;
}

.select-wrapper.selection-complete {
  background-color: #00aeef;
  box-shadow: inset 0 2px 0 0 #0083b3;
}

.select-wrapper:before,
.select-wrapper:after {
  z-index: -1;
  transition: all 0.2s linear;
}

.select-wrapper:before {
  width: 30px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  z-index: 10;
  background-color: #ffffff;
  pointer-events: none;
}

.select-wrapper:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L7 5.58579L12.2929 0.292893C12.6834 -0.0976311 13.3166 -0.0976311 13.7071 0.292893C14.0976 0.683417 14.0976 1.31658 13.7071 1.70711L7.70711 7.70711C7.31658 8.09763 6.68342 8.09763 6.29289 7.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z' fill='%23291D4C'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  height: 16px;
  width: 16px;
  z-index: 11;
  pointer-events: none;
}

.pseudo-select {
  background-color: transparent;
  padding: 16px 55px 15px 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.1s linear;
  display: block;
  margin: 0 0 10px;
  box-shadow: 0 2px 0 0 #d1d5d6;
  border: 0;
}

#adsar .accentcolour {
  font-weight: bold;
  color: var(--color-primary);
}

#adsar .resultsblock {
  display: grid;
  gap: 16px;
  grid-template-areas:
    'payoffyourbalance payoffyourbalance'
    'monthlycost totalamount'
    'interest totalamount'
    'none totalamount';
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  #adsar .resultsblock {
    gap: 8px;
    grid-template-areas:
      'payoffyourbalance payoffyourbalance'
      'monthlycost totalamount'
      'interest totalamount'
      'none totalamount';
  }
}

#adsar .payoffyourbalance {
  grid-area: payoffyourbalance;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23291D4C' fill-rule='evenodd' d='M8 1c.5523 0 1 .4477 1 1v1h6V2c0-.5523.4477-1 1-1s1 .4477 1 1v1.0016c.4755.0033.891.0131 1.2518.0426.5621.046 1.0788.1445 1.5642.3918a4.0002 4.0002 0 0 1 1.748 1.748c.2473.4854.3459 1.002.3918 1.5642C22 7.2894 22 7.9537 22 8.7587v8.4826c0 .805 0 1.4693-.0442 2.0105-.0459.5621-.1445 1.0788-.3918 1.5642a4.0003 4.0003 0 0 1-1.748 1.748c-.4854.2473-1.0021.3459-1.5642.3918C17.7106 23 17.0463 23 16.2413 23H7.7587c-.805 0-1.4693 0-2.0105-.0442-.5621-.0459-1.0788-.1445-1.5642-.3918a4.0002 4.0002 0 0 1-1.748-1.748c-.2473-.4854-.3459-1.0021-.3918-1.5642C2 18.7106 2 18.0463 2 17.2413V8.7587c0-.805 0-1.4693.0442-2.0105.046-.5621.1445-1.0788.3918-1.5642a4 4 0 0 1 1.748-1.748c.4854-.2473 1.002-.3459 1.5642-.3918.3608-.0295.7763-.0393 1.2518-.0426V2c0-.5523.4477-1 1-1ZM7 5.0018c-.4455.003-.7954.0118-1.089.0358-.4384.0358-.6626.1007-.819.1804a2 2 0 0 0-.874.874c-.0797.1564-.1446.3806-.1804.819C4.0008 7.3611 4 7.9434 4 8.8V9h16v-.2c0-.8566-.0008-1.4389-.0376-1.889-.0358-.4384-.1007-.6626-.1804-.819a1.9998 1.9998 0 0 0-.874-.874c-.1564-.0797-.3806-.1446-.819-.1804-.2936-.024-.6435-.0327-1.089-.0358V6c0 .5523-.4477 1-1 1s-1-.4477-1-1V5H9v1c0 .5523-.4477 1-1 1s-1-.4477-1-1v-.9982ZM20 11H4v6.2c0 .8566.0008 1.4389.0376 1.889.0358.4384.1007.6626.1804.819.1917.3763.4977.6823.874.874.1564.0797.3806.1446.819.1804C6.3611 20.9992 6.9434 21 7.8 21h8.4c.8566 0 1.4389-.0008 1.889-.0376.4384-.0358.6626-.1007.819-.1804a1.9996 1.9996 0 0 0 .874-.874c.0797-.1564.1446-.3806.1804-.819.0368-.4501.0376-1.0324.0376-1.889V11Zm-3.7929 1.7929c.3905.3905.3905 1.0237 0 1.4142l-4.5 4.5c-.3905.3905-1.0237.3905-1.4142 0l-2-2c-.3905-.3905-.3905-1.0237 0-1.4142.3905-.3905 1.0237-.3905 1.4142 0L11 16.5858l3.7929-3.7929c.3905-.3905 1.0237-.3905 1.4142 0Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 8px 8px;
  background-size: 24px;
  padding: 8px 8px 8px 48px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}

#adsar .payoffyourbalance > div {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}

#adsar .monthlycost {
  grid-area: monthlycost;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23291D4C' fill-rule='evenodd' d='M12 3c-4.9706 0-9 4.0294-9 9s4.0294 9 9 9 9-4.0294 9-9-4.0294-9-9-9ZM1 12C1 5.9249 5.9249 1 12 1s11 4.9249 11 11-4.9249 11-11 11S1 18.0751 1 12Zm9.8953-3.0442c.0016-.5378.1581-.8378.323-1.0165.1774-.1922.4521-.3373.8255-.4029.8078-.1418 1.6953.1462 2.06.4927.4005.3803 1.0334.364 1.4138-.0364.3804-.4004.3641-1.0334-.0363-1.4137-.8981-.853-2.4586-1.245-3.7834-1.0125-.6928.1217-1.4056.4273-1.9493 1.0164-.5554.6018-.8529 1.4117-.8533 2.3787l.0001.0132c.0129 1.0082.3877 1.701.6622 2.2083l.0176.0327c.055.1017.1052.1955.1502.2842H9c-.5523 0-1 .4477-1 1s.4477 1 1 1h.8979c-.1517.7615-.4534 1.4655-.7736 2.0463a8.8211 8.8211 0 0 1-.6167.965 6.7086 6.7086 0 0 1-.1965.2543 4.0005 4.0005 0 0 1-.0498.0598l-.0099.0116A1 1 0 0 0 9 18.5h5.9999c.5523 0 1-.4477 1-1s-.4477-1-1-1h-4.1177c.4254-.774.8724-1.8141 1.0444-3H14c.5523 0 1-.4477 1-1s-.4477-1-1-1h-2.1315c-.1338-.4958-.3455-.8872-.5179-1.2058a2.9107 2.9107 0 0 1-.0159-.0295c-.2706-.5005-.4317-.818-.4394-1.309Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 8px 8px;
  background-size: 24px;
  padding: 8px 8px 8px 48px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}

#adsar .monthlycost > div {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}

#adsar .interest {
  grid-area: interest;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23291D4C' fill-rule='evenodd' d='M3 2c.5523 0 1 .4477 1 1v14.8c0 .5766.0008.9488.024 1.2322.0221.2716.0598.3723.085.4218a1 1 0 0 0 .437.437c.0495.0252.1502.0629.4218.0851.2834.0231.6556.0239 1.2322.0239H21c.5523 0 1 .4477 1 1s-.4477 1-1 1H6.1614c-.5271 0-.9819 0-1.3564-.0306-.3954-.0323-.7886-.1036-1.167-.2964a2.9998 2.9998 0 0 1-1.311-1.311c-.1928-.3784-.2641-.7716-.2964-1.167C2 18.8205 2 18.3657 2 17.8385V3c0-.5523.4477-1 1-1Zm17.5 2.5c.5523 0 1 .4477 1 1v12c0 .5523-.4477 1-1 1s-1-.4477-1-1v-12c0-.5523.4477-1 1-1Zm-4.5 3c.5523 0 1 .4477 1 1v9c0 .5523-.4477 1-1 1s-1-.4477-1-1v-9c0-.5523.4477-1 1-1Zm-4.5 3c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1s-1-.4477-1-1v-6c0-.5523.4477-1 1-1Zm-4.5 3c.5523 0 1 .4477 1 1v3c0 .5523-.4477 1-1 1s-1-.4477-1-1v-3c0-.5523.4477-1 1-1Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 8px 8px;
  background-size: 24px;
  padding: 8px 8px 8px 48px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}

#adsar .interest > div {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}

#adsar .totalamount {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 152px;
  width: 152px;
  justify-content: center;
  margin: 8px auto 0;
  grid-area: totalamount;
  text-align: center;
  cursor: pointer;
}

#adsar .totalamount .totalamountheader {
  z-index: 2;
  font-size: 12px;
  line-height: 17px;
}

#adsar .totalamount .totalamountheader + .totalamountheader {
  margin-top: 4px;
}

#adsar .totalamount .totalamounthover {
  display: none;
  z-index: 2;
}

#adsar .totalamount .totalamountvalue {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  margin-top: 2px;
}

#adsar .totalamount span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 4px;
  margin-bottom: -3px;
}

#adsar .totalamount span.totalamountbalance {
  background-color: #5b5ebf;
}

#adsar .totalamount span.totalamountinterest {
  background-color: #d9d8ff;
}

#adsar .savings {
  font-size: 19px;
  line-height: 27px;
  margin-bottom: 16px;
}

#adsar .savings span {
  font-weight: 600;
  color: #007a72;
  font-size: 19px;
  line-height: 27px;
}

#adsar .chart {
  position: absolute;
  width: 152px;
  height: 152px;
  top: 50%;
  left: 50%;
  margin: -76px 0 0 -76px;
}

#adsar .doughnutTip {
  position: absolute;
  min-width: 30px;
  max-width: 300px;
  padding: 4px 8px;
  background: #291d4c;
  border: 1px solid #291d4c;
  border-radius: 4px;
  font-size: 12px;
  line-height: 14px;
  color: #f2f6fe;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

#adsar .doughnutTip::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: '';
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.7);
  line-height: 0;
}

#adsar .doughnutSummary {
  position: absolute;
  top: 55px;
  left: 30px;
  right: 30px;
  bottom: 55px;
  text-align: center;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-self: center;
}

#adsar .doughnutSummaryTitle {
  font-size: 12px;
  line-height: 17px;
  color: var(--primary-text-color);
  margin: 0;
}

#adsar .doughnutSummaryNumber {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  margin-top: 2px;
  margin-bottom: 0;
  color: var(--primary-text-color);
}

#adsar .chart:has(path:hover) path {
  opacity: 0.25;
  cursor: pointer;
}

#adsar .chart:has(path:hover) path:hover {
  opacity: 1;
}

#adsar .tryswitching {
  border-top: 1px solid #d9d8ff;
  margin-top: 8px;
  padding-top: 16px;
}

#adsar .tryswitching .h1 {
  margin-bottom: 12px;
}

#adsar .tryswitching p {
  color: #291d4c;
}

#adsar .savingsfilters {
  display: flex;
  gap: 16px;
}

#adsar .savingsfilters > div {
  flex-basis: 50%;
}

#adsar .savingsfilters .heading {
  margin-top: 4px;
  font-weight: bold;
}

#adsar .savingstable {
  margin-top: 8px;
}

#adsar .savingstable table {
  width: 100%;
}

#adsar .savingstable table th {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #291d4c;
  padding: 16px;
  text-align: right;
}

#adsar .savingstable table tbody td {
  background-color: #ffffff;
  font-size: 12px;
  line-height: 17px;
  color: #291d4c;
  text-align: left;
  padding: 16px;
}

@media (max-width: 767px) {
  #adsar .savingstable table tbody td {
    font-size: 12px;
    line-height: 17px;
    color: #291d4c;
    text-align: left;
  }
}

#adsar .savingstable table tbody td:nth-child(2) {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

#adsar .savingstable table tbody td:nth-child(3) {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #5b5ebf;
  text-align: right;
}

#adsar .savingstable table tbody tr:first-child td:first-child {
  border-radius: 8px 0 0;
}

#adsar .savingstable table tbody tr:first-child td:last-child {
  border-radius: 0 8px 0 0;
}

#adsar .savingstable table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}

#adsar .savingstable table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px;
}

#adsar .savingstable table tbody tr {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #f0f2fe;
}

#adsar .savingstable table tbody tr:last-child {
  border-bottom: 0;
}
