/*
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: none;
  }
}

#adsar > div {
  flex: 1;
}

#adsar #mainform {
  flex-basis: 55%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 16px;
}

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

#adsar #mainform form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#adsar .results {
  flex-basis: 45%;
  background-color: #f0f2fe;
  border-radius: 8px;
  padding: 16px;
  scroll-margin-top: 30px;
}

@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: 25px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 8px;
  margin-top: 0;
}

#adsar .results h1,
#adsar .results .h1 {
  font-size: 22px;
  line-height: 26px;
  border-top: 0;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
  padding-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: 12px;
  font-weight: bold;
  margin-bottom: 0px;
}

#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: 16px 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: #291d4c;
  margin: 8px 0;
}

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

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

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

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

#adsar .heading {
  margin-top: 12px;
  display: block;
  color: var(--article-headings-color);
  font-family: var(--heading-font-family);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 8px;
}

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

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

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

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

  #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 .input-group.error-control input {
  border-color: var(--color-tint-negative);
  color: var(--color-tint-negative);
  background-color: #fde8e9;
}

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

#adsar .select-wrapper.error-control {
  border-color: var(--color-tint-negative);
}

#adsar .select-wrapper.error-control:before {
  background-color: #fde8e9;
}

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

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

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

#adsar .input-group.input-group-gap {
  gap: 8px;
}

#adsar .input-group.input-group-gap input {
  padding: 19px 13px 13px;
}

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

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

  color: #8e82b1;
}

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

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

#adsar .input-group input {
  padding: 12px 13px 13px;
  font-weight: 600;
  font-size: 16px;
  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);
}

#adsar .tooltip {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%23291D4C' fill-rule='evenodd' d='M7.9997 2.083c-3.2677 0-5.9167 2.649-5.9167 5.9167 0 3.2677 2.649 5.9166 5.9167 5.9166 3.2677 0 5.9166-2.6489 5.9166-5.9166S11.2674 2.083 7.9997 2.083ZM.583 7.9997C.583 3.9036 3.9036.583 7.9997.583s7.4166 3.3206 7.4166 7.4167-3.3205 7.4166-7.4166 7.4166S.583 12.0958.583 7.9997Zm7.5747-2.5683a1.25 1.25 0 0 0-1.3905.8172.75.75 0 0 1-1.415-.4978 2.75 2.75 0 0 1 5.3441.916c-.0002 1.0646-.7887 1.7601-1.334 2.1236-.2954.197-.5855.3415-.7989.4363a5.3101 5.3101 0 0 1-.2641.1093 3.8584 3.8584 0 0 1-.0792.0292l-.024.0084-.0078.0026-.0028.001-.001.0003c-.0003.0001-.001.0004-.2382-.7112l.2381.7112c-.393.131-.8186-.081-.9496-.474a.75.75 0 0 1 .4738-.9485l.009-.0031a2.3166 2.3166 0 0 0 .0477-.0177 3.8187 3.8187 0 0 0 .189-.0782c.1616-.0719.3715-.1773.576-.3137.4547-.3031.666-.6074.666-.876v-.001a1.25 1.25 0 0 0-1.0386-1.234Zm-.908 5.9016a.75.75 0 0 1 .75-.75h.0066a.75.75 0 0 1 0 1.5h-.0066a.75.75 0 0 1-.75-.75Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: transparent !important;
  box-shadow: none !important;
}

#adsar .tip,
#adsar .tip2 {
  position: absolute;
  width: 250px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-weight: 380;
  font-size: 16px;
  line-height: 140%;
  color: #291d4c;
  text-align: left;
  filter: drop-shadow(8px 8px 24px rgba(91, 94, 191, 0.16));
  z-index: 1;
  top: -25px;
  margin-left: 9px;
}

@media (max-width: 767px) {
  #adsar .tip,
  #adsar .tip2 {
    right: 16px !important;
    left: auto !important;
  }
}

#adsar .tip::after,
#adsar .tip2::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(255, 255, 255, 0.7);
  line-height: 0;
}

@media (max-width: 767px) {
  #adsar .tip::after,
  #adsar .tip2::after {
    display: none;
  }
}

#adsar .tip b,
#adsar .tip2 b {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

#adsar .tooltipclose {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cpath fill='%23525096' fill-rule='evenodd' d='M.2929.2929c.3905-.3905 1.0237-.3905 1.4142 0L7 5.5858l5.2929-5.293c.3905-.3904 1.0237-.3904 1.4142 0 .3905.3906.3905 1.0238 0 1.4143L8.4142 7l5.2929 5.2929c.3905.3905.3905 1.0237 0 1.4142-.3905.3905-1.0237.3905-1.4142 0L7 8.4142l-5.2929 5.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L5.5858 7 .2928 1.7071C-.0975 1.3166-.0975.6834.2929.293Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  background-color: transparent !important;
  box-shadow: none !important;
  float: right;
}

#adsar .result {
  border-radius: 8px;
  padding: 16px;
  display: block;
  color: var(--primary-text-color);
  font-family: var(--font-family);
  font-size: 17px;
  line-height: 1.5;
  width: 100%;
  margin: 32px auto 16px;
  max-width: 100%;
}

#adsar .result.error {
  text-align: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  color: #291d4c;
}

#adsar strong {
  font-weight: 600;
}

#adsar .result-table > span {
  display: flex;
  margin-bottom: 8px;
}

#adsar .result-table > span > span {
  flex: 1;
}

#adsar .result-table > span > span:nth-child(2) {
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #273157;
}

#adsar .result-changes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border-collapse: separate;
  border-spacing: 0 6px;
}

#adsar .result-changes td {
  padding: 4px;
  color: #4a4a4a;
}

#adsar .result-changes .green {
  color: #007a72;
  font-weight: 600;
}

#adsar .result-changes .red {
  color: #db0031;
  font-weight: 600;
}

#adsar .results h3 {
  border-top: 1px solid #d9d8ff;
  padding-top: 32px;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  padding-left: 36px;
  padding-right: 36px;
}

#adsar .highlight_box {
  text-align: center;
  margin: 24px 0;
}

#adsar .highlight_box span {
  padding: 8px;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  box-decoration-break: clone;
  box-shadow:
    8px 0 0 #ffffff,
    -8px 0 0 #ffffff;
}

#adsar h4 {
  margin-top: 24px;
  margin-bottom: 12px;
}

#adsar h4 strong {
  font-weight: 800;
}

#adsar #coverAmount {
  background-color: #f0f2fe;
  padding: 28px;
  border-radius: 16px;
  font-size: 36px;
  display: block;
  margin-top: 16px;
  margin-bottom: 44px;
  text-align: center;
}

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

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

.select-wrapper {
  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: 19px;
  right: 19px;
  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;
  border: 0;
}

.pseudo-radio-group {
  padding-left: 0 !important;
  margin: 0 0 !important;
  list-style: none;
  width: 100%;
  display: flex;
  gap: 8px;
}

.pseudo-radio-group li {
  width: 100%;
  flex: 1;
}

.pseudo-radio-group li:before {
  content: '' !important;
}

.pseudo-radio-group li:first-child {
  margin-right: 0;
}

.pseudo-radio-group li:last-child {
  margin-left: 0;
}

.pseudo-radio {
  background-color: #fff;
  color: #756899;
  padding: 15px 54px 14px 24px !important;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  display: block;
  margin: 0 0 9px;
  border: 1px solid var(--purple-400);
}

.pseudo-radio:before,
.pseudo-radio:after {
  position: absolute;
  content: '';
  border-radius: 50%;
  width: 22px !important;
  height: 22px !important;
  background-color: #fff;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.pseudo-radio:before {
  top: 14px !important;
  right: 15px !important;
  border: 2px solid var(--color-bg-secondary-hover);
}

.pseudo-radio:after {
  top: 14px !important;
  right: 15px !important;
  background: transparent
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAACTElEQVRYheWZsW30MAyFs8KtkFluBa9wK/yzZIVb4UqXZCVA7AyoUmmVKpXiFw2aVmxf4lg65AEqAjjIh5dHSqLe3v6SjDEXALgh4h3/a8wr5cU/IyLeAeBmjHk/HdRa2wHAQ8HtXSMAPKy1nTHmcgboIAGIKBFRcs4l730KIaQYY4oxphBC8t4n59z0nYJHa213OKgx5j3/22eg3vsJbu/y3pfA74e5TURX6SoRzVzUa03yuxDCDBwABiK6/gg2F9Smo98VO67yfTsEVrt6pLTbT+eaiK7cAYjoMEfXFGOU0OPueOQCG0vO/rY09K5ClN3gTFgJLbvHKqy1tuOPZYGdLVWIX+eZ25fMbS2JaOCmuxyFmpLRAIBlAeYDShPusthlAHiUOsMsuy0ohFDuGLxJsLstqVh8+ajYJLAovrsEHhAxOeeaA3bOTYcjWXBTd2hNMscL4NbcTWnW3l4OOL0EcEqpCDy2CvyVw+NLFR23Ne99bb6FuK3NDkG8cTjnavMtVNw4EPEf73Stqbg1y8NPSzkW+U1938+vS/J42YpWD/HyWt9Ce1N3u+U1KU8ih1ZcFof3YQErYjG7hNbS7kuobHG1zsZqNrF+zeeOUSsaKrcIAPuG3wCwGFWdAaummc9NMnkzOQNaj6g2c7sC3aF4FviNTUUV2HaRbUnG40i3SwPtp2OwAl18MviO4xqUu8HuAtsrY8wlRwTVH5um83rExU8D/Cijfy93gmNcXRMAXH/w7HUeqFbf99PDYu7d+mGRqx4B4KMKZG19AmHIm5PU6SQtAAAAAElFTkSuQmCC)
    top left no-repeat !important;
  background-size: cover !important;
}

.pseudo-radio:hover {
  background-color: var(--color-bg-secondary-hover);
}

.pseudo-radio:focus {
  border-color: #62c0c1;
}

.pseudo-radio small {
  display: block;
  font-weight: 300;
  font-size: inherit;
}

input:checked + .pseudo-radio {
  color: var(--primary-text-color);
  font-weight: bold;
  border-color: var(--primary-text-color);
}

input:checked + .pseudo-radio:before {
  border-color: var(--purple-800);
}

input:checked + .pseudo-radio:after {
  border: 4px solid var(--purple-800);
  width: 14px !important;
  height: 14px !important;
  top: 18px !important;
  right: 19px !important;
  background: #291d4c
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVFMTNEODMyRTZCODExRTVCMzZFQUFCRTI2NjAzRDM2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVFMTNEODMzRTZCODExRTVCMzZFQUFCRTI2NjAzRDM2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUUxM0Q4MzBFNkI4MTFFNUIzNkVBQUJFMjY2MDNEMzYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUUxM0Q4MzFFNkI4MTFFNUIzNkVBQUJFMjY2MDNEMzYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7MiCWyAAAA2UlEQVR42uzZ0Q2DMAwEUHxiiI7UbTpLt2GkbpF+VUIopIcDzVl1/kAEP47AR2yllCnSmHsmP5aX62mf95t5a9rRhL3Is/AYifXck0r4Cqg3bahg2VpQwbI1oYRlakMN+80ARWzLginYgGq6e6a4CSumW7PFTFg53W3Ksf8SCU5wghOc4AQnOMHk+OxZYH2QCf8reL0CUDsZJmFF9NYUfw0rpVyzgL1QAdtcEiPRrdrwThyBpT66X6KZWnQX6crNliOhmKexeBbe8/aspxPqgfcuMYvWun0LMACloHNbFA/MpgAAAABJRU5ErkJggg==)
    top left no-repeat !important;
}

.pseudo-radio__check:before {
  border-radius: 0;
  -webkit-transition: none;
  transition: none;
}

input:checked + .pseudo-radio__check:before {
  background-color: transparent;
  border-width: 3px;
  width: 18px;
  height: 18px;
}

.pseudo-radio__check:after {
  border-radius: 0;
  color: #fff;
  content: 'L';
  -webkit-transform: rotateX(0deg) rotateY(180deg) rotateZ(320deg);
  transform: rotateX(0deg) rotateY(180deg) rotateZ(320deg);
  background-color: transparent;
  border: 0 none;
  width: 18px;
  height: 18px;
  top: 1px;
  right: 2px;
}

input:checked + .pseudo-radio__check:after {
  background-color: transparent;
  border: 0 none;
  color: #fff;
  width: 18px;
  height: 18px;
  top: 1px;
  right: 2px;
}

.pseudo-radio__check:after {
  border-radius: 0;
}

.pseudo-radio-group input[type='radio'] {
  position: absolute;
  left: -9999px;
}

#adsar .pageSteps {
  padding: 8px;
  border-radius: 0;
  background: #f0f2fe;
  width: 100%;
  border-radius: 4px;
  margin-top: -16px;
  margin-bottom: 16px;
}

#adsar .pageSteps div {
  background-color: #4a3c70;
  padding: 4px;
  color: #ffffff;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  height: 12px;
}

#adsar .pageSteps .pageSteps1 {
  width: 25%;
}

#adsar .pageSteps .pageSteps2 {
  width: 50%;
}

#adsar .pageSteps .pageSteps3 {
  width: 75%;
}

#adsar .pageSteps .pageSteps4 {
  width: 100%;
}

#lifeInsurancePage1 {
  display: block;
}

#lifeInsurancePage2 {
  display: none;
}

#lifeInsurancePage3 {
  display: none;
}

#lifeInsurancePage4 {
  display: none;
}

#lifeInsurancePageResults {
  display: none;
  flex-direction: column;
  flex: 1;
}

#lifeInsurancePageResults .h1 {
  margin-bottom: 24px;
}

#lifeInsurancePageResults h3 {
  line-height: 1.8;
}

#adsar a.back {
  text-decoration: none;
  color: #291d4c;
  background-color: #d9d8ff;
  border-radius: 4px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 4px;
  box-shadow: none !important;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  font-size: 16px;
  margin-top: 14px;
}

#adsar a.back:hover {
  color: #f2f6fe;
  background-color: #4a3c70;
}

#adsar .choices {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

#adsar .choices a {
  text-decoration: none;
  color: #291d4c;
  background-color: #d9d8ff;
  border-radius: 4px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 4px;
  box-shadow: none !important;
  font-size: 12px;
  line-height: 17px;
  flex: 1;
  text-align: center;
  font-size: 16px;
}

#adsar .choices a:hover {
  color: #f2f6fe;
  background-color: #4a3c70;
}

#adsar .choices a.choice {
  color: #f2f6fe;
  background-color: #4a3c70;
  font-weight: bold;
}

#adsar .row.form-group.livingcosts {
  display: none;
}
#adsar .row.form-group.livingcosts.show {
  display: flex;
}

#adsar .row.form-group.childsupport {
  display: none;
}
#adsar .row.form-group.childsupport.show {
  display: flex;
}

#adsar .row.form-group.childsupport.show.childsupportchild {
  display: none;
}
#adsar .row.form-group.childsupport.show.childsupportchild.childsupportshow {
  display: flex;
}

#adsar .row.form-group.funeralexpenses {
  display: none;
}
#adsar .row.form-group.funeralexpenses.show {
  display: flex;
}

#adsar .row.form-group.lumpsum {
  display: none;
}
#adsar .row.form-group.lumpsum.show {
  display: flex;
}

#adsar .row.form-group.deathinservicecover {
  display: none;
}
#adsar .row.form-group.deathinservicecover.show {
  display: flex;
}

#adsar .results > div.page {
  background-color: white;
  padding: 16px;
  margin-top: 16px;
}

#adsar .results h4 {
  margin-top: 0px;
  margin-bottom: 12px;

  display: flex;
  justify-content: space-between;

  align-items: center;
}

#adsar .calculationBreakdown {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: white;
  color: #291d4c;
  font-size: 14px;
  line-height: 1.4;
}

#adsar .calculationBreakdown > div:nth-child(1) {
  flex: 1;
}

#adsar .calculationBreakdown span {
  color: #756899;
}

#adsar a.change {
  border-radius: 8px;
  border: 2px solid #291d4c;
  background-size: 16px;
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  padding: 8px 32px 8px 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%23291d4c' fill-rule='evenodd' d='M11.8 1.14a2.16 2.16 0 1 1 3.06 3.06L8.5 10.57l-.04.04q-.28.3-.58.5-.29.17-.6.25-.37.08-.76.06H5.33a.75.75 0 0 1-.75-.75V9.49q-.01-.4.06-.76.08-.31.25-.6.2-.3.5-.58l.04-.04zm2 1.06a.66.66 0 0 0-.94 0L6.5 8.57c-.26.26-.3.3-.32.34l-.07.17c-.01.05-.02.1-.02.47v.37h.37c.36 0 .42 0 .47-.02l.17-.07c.04-.02.08-.06.34-.32l6.37-6.37a.66.66 0 0 0 0-.94m-9.3-.28h2.83a.75.75 0 1 1 0 1.5h-2.8c-.57 0-.95 0-1.25.02-.29.02-.42.07-.51.11q-.36.19-.55.55c-.05.09-.09.23-.11.51-.03.3-.03.68-.03 1.26v5.6c0 .57 0 .95.03 1.25.02.29.06.42.1.51q.2.37.56.55c.09.05.22.09.51.11s.68.03 1.25.03h5.6c.58 0 .96 0 1.26-.03.28-.02.42-.06.51-.11q.36-.18.55-.55c.04-.09.08-.22.1-.51s.03-.68.03-1.25v-2.8a.75.75 0 0 1 1.5 0v2.83q0 .8-.03 1.34-.03.57-.27 1.08-.4.78-1.2 1.2-.51.24-1.07.27-.55.04-1.35.03H4.5q-.8 0-1.34-.03a3 3 0 0 1-1.08-.27 3 3 0 0 1-1.2-1.2 3 3 0 0 1-.27-1.08Q.57 12.3.58 11.5V5.84q0-.8.03-1.35.03-.56.27-1.07.42-.8 1.2-1.2c.34-.18.7-.24 1.08-.27q.53-.04 1.34-.03' clip-rule='evenodd'/%3E%3C/svg%3E%0A");
  color: #291d4c;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

#adsar a.change:hover {
  text-decoration: underline;
}
