.wizard {
    padding: 2em 0;
}
@media only screen and (max-width: 979px) {
    .wizard {
        width: 90%;
        margin: auto;
    }
}
.wizard .rtf-content {
  border: 2px solid var(--navy);
  padding: 16px;
  position: relative;
  width: 95%;
}
@media only screen and (min-width: 1100px) {
  .wizard .rtf-content {
    width: 66%;
  }
}
.wizard .question {
  float: right;
}
.wizard .hide {
  display: none;
}
.wizard .intro h2 {
  font-weight: var(--semibold);
}
.wizard .intro p {
  font-size: var(--fontsmobile);
}
@media only screen and (min-width: 980px) {
  .wizard .intro p {
    font-size: var(--fontmmobile);
  }
}
.wizard h3 {
  font-size: var(--fontsmobile);
  color: var(--navy);
}
.wizard .checkboxes label {
  display: flex;
  align-items: center;
  border: 1px solid var(--navy);
  padding: 16px;
  cursor: pointer;
}
.wizard .checkboxes label .icon {
  margin-right: 20px;
}
.wizard .checkboxes label .icon:before {
  content: '';
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
@media only screen and (min-width: 980px) {
  .wizard .checkboxes label .icon:before {
    width: 64px;
    height: 64px;
  }
}
.wizard .blue {
    color: var(--sky);
    font-weight: var(--bold);
}
.wizard .checkboxes label .icon.fixed:before {
  background-image: url('/assets/images/protection.svg');
}
.wizard .checkboxes label .icon.variable:before {
  background-image: url('/assets/images/cost.svg');
}
.wizard .checkboxes label .icon.unlimited:before {
  background-image: url('/assets/images/customize.svg');
}
.wizard .checkboxes label .icon.cancel:before {
  background-image: url('/assets/images/cancel-icon.svg');
}
.wizard .checkboxes label .icon.monthly:before {
  background-image: url('/assets/images/monthly-icon.svg');
}
.wizard .checkboxes label .icon.deposit:before {
  background-image: url('/assets/images/deposit-icon.svg');
}
.wizard .checkboxes label .icon.introductory:before {
  background-image: url('/assets/images/intro-icon.svg');
}
.wizard .checkboxes label .icon.discount:before {
  background-image: url('/assets/images/discount-icon.svg');
}
.wizard .checkboxes label .icon.enddate:before {
  background-image: url('/assets/images/enddate-icon.svg');
}
.wizard .checkboxes label:hover {
  background-color: var(--lightgray);
}
.wizard .checkboxes label.checked {
  background: var(--navy);
  color: var(--white);
}
.wizard .checkboxes label.checked h3 {
  color: var(--white);
}
.wizard .checkboxes label.checked:hover {
  background-color: var(--navyalt);
}
.wizard .checkboxes label.checked .icon.fixed:before {
  background-image: url('/assets/images/protection-white.svg');
}
.wizard .checkboxes label.checked .icon.variable:before {
  background-image: url('/assets/images/cost-white.svg');
}
.wizard .checkboxes label.checked .icon.unlimited:before {
  background-image: url('/assets/images/customize-white.svg');
}
.wizard .checkboxes label.checked .icon.cancel:before {
  background-image: url('/assets/images/cancel-icon-white.svg');
}
.wizard .checkboxes label.checked .icon.monthly:before {
  background-image: url('/assets/images/monthly-icon-white.svg');
}
.wizard .checkboxes label.checked .icon.deposit:before {
  background-image: url('/assets/images/deposit-icon-white.svg');
}
.wizard .checkboxes label.checked .icon.introductory:before {
  background-image: url('/assets/images/intro-icon-white.svg');
}
.wizard .checkboxes label.checked .icon.discount:before {
  background-image: url('/assets/images/discount-icon-white.svg');
}
.wizard .checkboxes label.checked .icon.enddate:before {
  background-image: url('/assets/images/enddate-icon-white.svg');
}
.wizard .checkboxes.no-desc .icon:before {
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 980px) {
  .wizard .checkboxes.no-desc .icon:before {
    width: 40px;
    height: 40px;
  }
}
.wizard .checkboxes.no-desc h3 {
  margin: 0;
}
.wizard .checkboxes h3,
.wizard .checkboxes p {
  margin-bottom: 0;
  padding-right: 10px;
}
.wizard .checkboxes p {
  margin-top: 2px;
}
.wizard .confirm-label {
  font-weight: var(--semibold);
}
@media only screen and (min-width: 768px) {
  .wizard .flex-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .wizard .flex-row .choice {
    width: 48%;
  }
}
.wizard .item {
  display: flex;
  align-items: start;
}
.wizard .item .item-icon {
  margin-top: 4px;
  margin-right: 12px;
}
.wizard .step {
  padding: 20px;
}
@media only screen and (min-width: 980px) {
  .wizard .step:not(#step0) {
    max-width: 80%;
  }
}
.wizard .step-heading {
  color: var(--navy);
}
.wizard .step-heading img {
  margin-right: 20px;
}
.wizard input[type="text"],
.wizard input[type="number"] {
  height: 32px;
  padding: 6px 16px;
  min-width: 300px;
  font-size: var(--fontregular);
}
.wizard .desc {
  font-size: var(--fontsmobile);
}
.wizard .link-group {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
}
@media only screen and (min-width: 980px) {
  .wizard .link-group {
    width: 120%;
  }
  .wizard .progress-wrap {
    width: 120% !important;
  }
}
.wizard .checkboxes .choice {
  margin-bottom: 10px;
}
@media only screen and (min-width: 980px) {
  .wizard #step0 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .wizard #step0 .intro,
  .wizard #step0 .item-list {
    width: 48%;
  }
  .wizard #step0 .item-list {
    padding-top: 20px;
  }
  .wizard #step0 .link-group {
    width: 100%;
  }
}
.wizard .distributors {
  margin-top: 20px;
}
@media only screen and (min-width: 980px) {
  .wizard .distributors {
    margin-top: 40px;
  }
}
.wizard button {
  border: none;
  outline: none;
}
.wizard .progress-wrap {
    background: var(--lightgray);
    margin-top: 20px;
    height: 6px;
    width: 100%;
}

.wizard .progress-wrap .progress-bar {
    background: var(--sky);
    height: 100%;
}
.wizard .flex-link {
    display: flex;
}
.wizard .skip-link {
    background: none;
    margin-right: 6px;
}
        