html, body {
  min-height: 100vh;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
}
body{-webkit-font-smoothing:antialiased;}

label {
  cursor: pointer;
}

.quote-wrapper {
  background: #f8f8f8;
  min-height: 100%;
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}

.quote-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f8f8f8;
}

.quote-top-circle {
  background: #f1f3f8;
  height: 90vh;
  position: fixed;
  top: -40vh;
  border-radius: 0 0 50% 50%;
  width: 200%;
  left: -50%;
}

.quote-header {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding-top: 12px;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transform: translate3d(0,0,0);
}

.website-link {
  display: block;
}
.quote-logo-image {
  max-height: 44px;
  max-width: 40vw;
  vertical-align: middle;
}
/*
.quote-header > * {
  flex: 1 1 20%;
}
.quote-rating {
  flex: 1 0 60%;
}
*/

.quote-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.quote-icon-stars {
  width: 79px;
  height: 14px;
  background: url(/static/images/stars.svg) 0 0 no-repeat;
  background-size: cover;
}

.quote-rating p {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  line-height: 1;
  margin-top: 6px;
  font-weight: 500;
  color: #19388b;
}

.quote-help {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index:99;
}

.quote-icon-phone {
  width: 25px;
  height: 30px;
  background: url(/static/images/phone.svg) 0 0 no-repeat;
  background-size: cover;
  margin-right: 6px;
}

.quote-help a{color:#000; text-decoration: none;}

.quote-help a:hover{color:#000;}

.quote-help > div {
  display: -webkit-flex;
  -webkit-flex-direction: column;
  display: flex;
  flex-direction: column;
}

.quote-help span {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  color: #818181;
}

.quote-help p {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.quote-container,
.quote-container-continue {
  position: relative;
  max-width: 900px;
  margin: 48px auto;
  border-radius: 10px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.13);
  background-color: #fff;
  overflow: hidden;
}

.quote-progress {
  width: 11.111111%;
  height: 11px;
  background-color: #58a3ff;
}

.quote-progress.sliding {
  transition: 1s;
}

.quote-progress.hidden {
  transition: 0s;
  opacity: 0;
  width: 0 !important;
}

.quote-step-header {
  margin: 34px 33px 0;
  position: relative;
  text-align: center;
  height: 38px;
}

.quote-arrow-left {
  width: 38px;
  height: 38px;
  opacity: 1;
  background-color: #DCF1FB;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.quote-arrow-left::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #54697C;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid #54697C;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 1px;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.quote-arrow-left:active, .quote-arrow-left:focus, .quote-arrow-left:hover, .quote-arrow-right:active, .quote-arrow-right:focus, .quote-arrow-right:hover {
  opacity:0.5;
}

.quote-arrow-left:active::before {
  border-top: 2px solid #54697c;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid #54697c;
}

.quote-step-title {
  line-height: 38px;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #19388b;
}

.quote-arrow-right {
  width: 38px;
  height: 38px;
  opacity: 1;
  background-color: #DCF1FB;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.quote-arrow-right::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #54697C;
  border-right: 2px solid #54697C;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1px;
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.quote-arrow-right:active {
  background-color: #b9e3f8;
}

.quote-arrow-right:active::before {
  border-top: 2px solid #54697c;
  border-right: 2px solid #54697c;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}

.quote-step-form {
  padding: 38px 0;
  display: -webkit-flex;
  display: flex;
  width: 800%; /* 100% * steps */
  -webkit-transition: 0s cubic-bezier(1,0,0,1);
  -moz-transition: 0s cubic-bezier(1,0,0,1);
  -o-transition: 0s cubic-bezier(1,0,0,1);
  transition: 0s cubic-bezier(1,0,0,1);
  transform: translateX(0);
}

.quote-step-form.sliding {
  -webkit-transition: 1s cubic-bezier(1,0,0,1);
  -moz-transition: 1s cubic-bezier(1,0,0,1);
  -o-transition: 1s cubic-bezier(1,0,0,1);
  transition: 1s cubic-bezier(1,0,0,1);
}

.quote-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  width: 100%;
}

.quote-step-hidden, .quote-step-prefilled {
  display: none !important;
}

.quote-step-image {
  height: 114px;
  background-size: contain;
}

.quote-step-image-gender {
  width: 98px;
  background: url(/static/images/gender.svg) center 0 no-repeat;
}

.quote-step-image-coverage {
  width: 96px;
  background: url(/static/images/coverage.svg) center 0 no-repeat;
}

.quote-step-image-duration {
  width: 96px;
  background: url(/static/images/duration.svg) center 0 no-repeat;
}

.quote-step-image-location {
  width: 96px;
  background: url(/static/images/location.svg) center 0 no-repeat;
}

.quote-step-image-smoker {
  width: 96px;
  background: url(/static/images/smoker.svg) center 0 no-repeat;
}

.quote-step-image-smoker-quit {
  width: 96px;
  background: url(/static/images/smoker-quit.svg) center 0 no-repeat;
}

.quote-step-image-born {
  width: 96px;
  background: url(/static/images/born.svg) center 0 no-repeat;
}

.quote-step-image-build {
  width: 96px;
  background: url(/static/images/build.svg) center 0 no-repeat;
}

.quote-step-image-health {
  width: 124px;
  background: url(/static/images/health.svg) center 0 no-repeat;
}

.quote-step-image-declined {
  width: 96px;
  background: url(/static/images/declined.svg) center 0 no-repeat;
}

.quote-step-image-citizen {
  width: 96px;
  background: url(/static/images/citizen.svg) center 0 no-repeat;
}

.quote-step-image-warning {
  width: 96px;
  background: url(/static/images/warning.svg) center 0 no-repeat;
}

.quote-step-question {
  font-family: 'Lato', sans-serif;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.29;
  letter-spacing: -1px;
  color: #19388b;
  text-align: center;
  max-width: 600px;
}

.quote-step-info {
  margin-top: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #54697c;
}

.quote-step-info strong {
  font-weight: 700;
}

.quote-step-answer {
  margin-top: 36px;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-step-left {
  align-items: flex-start;
}

.quote-step-answer-conditions {
  align-items: flex-start;
  width: 100%;
}

.quote-step-answer-conditions > div {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 760px;
  margin: auto;
  padding-left: 10%;
}

.quote-checkbox-row.bordered {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
}

.quote-checkbox-row.bordered::before {
  content: '';
  height: 1px;
  width: calc(90% - 24px);
  background: #e2e2e2;
  position: absolute;
  top: 0;
  left: 10%;
  margin-left: 24px;
}

.quote-step-answer .label-button {
  border-radius: 30px;
  background-color: #f1f5f8;
  width: 296px;
  height: 60px;
  position: relative;
  cursor: pointer;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}

.quote-step-answer .label-button input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.quote-step-answer .label-button > strong {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: #f1f5f8;
}

.quote-step-answer .label-button input[type="radio"]:checked + strong {
  background-color: #58a3ff;
}

.quote-step-answer .label-button span {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #19388b;
}

.quote-step-answer .label-button span.strong {
  font-weight: 700;
}

.quote-step-answer .label-button span.small {
  font-size: 9px;
}

.quote-step-answer .label-button input[type="radio"]:checked + strong span {
  color: #fff;
}

.quote-step-answer .label-button .quote-check-mark {
  transform: rotate(45deg);
  height: 18px;
  width: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  left: 28px;
  top: 18px;
  display: none;
}

.quote-step-answer .label-button input[type="radio"]:checked + strong .quote-check-mark {
  display: block;
}

.quote-option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.quote-followup-options input,
.quote-step-answer input[type="checkbox"] {
  display: none;
}

.quote-form-check,
.quote-form-radio {
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  border: 1px solid #111;
  height: 24px;
  width: 24px;
}
.quote-form-check {
  border-radius: 2px;
}
.quote-form-radio {
  border-radius: 50%;
}

.quote-form-check + span,
.quote-form-radio + span {
  padding-left: 10px;
}


input[type="checkbox"]:checked + .quote-form-check:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  background-color: #19388b;
}

input:checked + .quote-form-radio:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #19388b;
}

.quote-followup-options .quote-form-radio {
  height: 20px;
  width: 20px;
  margin: 0 3px 0 7px;
}

.quote-followup-options input:checked + .quote-form-radio:after {
  top: 2px;
  left: 2px;
  height: 14px;
  width: 14px;
}

.quote-form-divider {
  width: 100%;
  border-top: 1px solid #CCC;
}

.dependent {
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  max-width: 100% !important;
  padding: 0 !important;
  background: #f8f8f8;
  transition: 0.4s cubic-bezier(0, 1, 0, 1);
}

.dependent.show {
  max-height: 1000px;
  opacity: 1;
  transition: 0.8s ease-in-out;
}

.dependent > div {
  width: 100%;
  max-width: 760px;
  margin: auto;
  padding: 20px 20px 20px 90px;
}

.dependent-title {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 10px 10px;
}

.quote-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 0;
  cursor: pointer;
  flex: 0 1 100%;
}

.quote-checkbox input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.quote-checkbox i {
  width: 22px;
  height: 22px;
  margin: 0 10px;
  border: 1px solid #9ca2a8;
  border: 0px solid #9ca2a8;
  box-shadow: 0 0 0 1px #9ca2a8;
  flex: 0 0 22px;
  border-radius: 3px;
  position: relative;
}

.quote-checkbox input:checked + i {
  border: 1px solid #015db4;
  border: 0px solid #015db4;
  box-shadow: 0 0 0 1px #015db4;
}

.quote-checkbox input:checked + i::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #015db4;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.quote-checkbox span {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.dependent-answer {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}

.quote-radiobox {
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 0;
  cursor: pointer;
  flex: 0 1 100%;
}

.quote-radiobox .label-button {
  border-radius: 0;
  background: transparent;
  width: auto;
  height: auto;
}

.quote-radiobox input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.quote-radiobox i {
  width: 22px;
  height: 22px;
  margin: 0 10px;
  border: 1px solid #9ca2a8;
  border: 0px solid #9ca2a8;
  box-shadow: 0 0 0 1px #9ca2a8;
  flex: 0 0 22px;
  border-radius: 50%;
  position: relative;
}

.quote-radiobox input:checked + i {
  border: 1px solid #015db4;
  border: 0px solid #015db4;
  box-shadow: 0 0 0 1px #015db4;
}

.quote-radiobox input:checked + i::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #015db4;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.quote-radiobox span {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.25;
  margin-left: 10px;
}

.quote-radiobox .label-button + span {
  margin-left: 0;
}

.quote-radiobox span.w50 {
  width: 50%;
}

.quote-step-answer select {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #19388b;
  line-height: 1.5;
  padding: 0 50px 0 30px;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 30px;
  background-color: #f1f5f8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 296px;
  position: relative;
  border: 0;
}

.quote-step-answer select::-ms-expand {
  display: none;
}

.quote-select {
  width: 296px;
  position: relative;
  cursor: pointer;
}

.quote-select::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid transparent;
  border-right: 2px solid #c9d3db;
  border-bottom: 2px solid #c9d3db;
  border-left: 2px solid transparent;
  transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1;
}

.quote-select span {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #19388b;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 50px 0 30px;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 30px;
  background-color: #f1f5f8;
}

.quote-select ul {
  list-style-type: none;
  position: relative;
  margin-top: 70px;
  background: #f1f5f8;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  border-radius: 30px;
  display: none;
}

.quote-select ul.active {
  display: block;
}

.quote-select ul li {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #19388b;
  line-height: 1;
  padding: 0 30px;
  min-height: 60px;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}

.quote-select ul li:hover,
.quote-select ul li.active {
  background: #e2eaf1;
}

.quote-step-answer-inlined {
  -webkit-flex-direction: row;
  flex-direction: row;
}

.quote-step-answer input[type="tel"],
.quote-step-answer input[type="text"] {
  border-radius: 30px;
  background-color: #f1f5f8;
  height: 60px;
  position: relative;
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #19388b;
  border: 0;
  margin: 0 5px;
  padding: 0 30px;
}

.quote-step-answer input[type="tel"][id="mm"] {
  width: 90px;
}

.quote-step-answer input[type="tel"][id="mm"]::placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
  opacity: 1;
}

.quote-step-answer input[type="tel"][id="mm"]:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
}

.quote-step-answer input[type="tel"][id="mm"]::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: 0px;
}

.quote-step-answer input[type="tel"][id="dd"] {
  width: 90px;
}

.quote-step-answer input[type="tel"][id="dd"]::placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
  opacity: 1;
}

.quote-step-answer input[type="tel"][id="dd"]:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
}

.quote-step-answer input[type="tel"][id="dd"]::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
}

.quote-step-answer input[type="tel"][id="yyyy"] {
  width: 120px;
}

.quote-step-answer input[type="tel"][id="yyyy"]::placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
  opacity: 1;
}

.quote-step-answer input[type="tel"][id="yyyy"]:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: -3px;
}

.quote-step-answer input[type="tel"][id="yyyy"]::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  position: relative;
  top: 0px;
}

.quote-step-answer input[type="text"][name="height"] {
  width: 125px;
}

.quote-step-answer input[type="text"][name="height"]::placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  opacity: 1;
}

.quote-step-answer input[type="text"][name="height"]:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
}

.quote-step-answer input[type="text"][name="height"]::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
}

.quote-step-answer input[type="text"][name="weight"] {
  width: 140px;
}

.quote-step-answer input[type="text"][name="weight"]::placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
  opacity: 1;
}

.quote-step-answer input[type="text"][name="weight"]:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
}

.quote-step-answer input[type="text"][name="weight"]::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #9aadbf;
  text-align: center;
}

.quote-info {
  background: url(/static/images/info.svg) 0 0 no-repeat;
  position: absolute;
  top: 20px;
  right: 15px;
  width: 20px;
  height: 20px;
  background-size: cover;
}

.quote-info-box {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e5e5;
  right: -280px;
  width: 260px;
  padding: 24px 24px 24px 12px;
  margin: auto;
  z-index: 111;
  border-radius: 5px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14);
  font-size: 12px;
  font-weight: 400;
  min-height: 100%;
  display: none;
}

.quote-info:hover + .quote-info-box {
  display: block;
}

.quote-info-box::after, .quote-info-box::before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
  margin-top: -10px;
}

.quote-info-box-last {
  bottom: -20px;
}

.quote-info-box-last::after, .quote-info-box-last::before {
	top: auto;
	bottom: 36px;
}

.quote-info-box::after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 10px;
}

.quote-info-box::before {
	border-color: rgba(229, 229, 229, 0);
	border-right-color: #e5e5e5;
	border-width: 10px;
}

.quote-info-box strong {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.56;
  color: #19388b;
}

.quote-info-box p {
  margin-top: 11px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.56;
  color: #000;
}

.quote-step-form.sliding .quote-step.prev {
  animation-name: quoteslidingprev;
  animation-duration: 1.25s;
}

@keyframes quoteslidingprev {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.quote-step-form.sliding .quote-step.next {
  opacity: 0;
  animation-name: quoteslidingnext;
  animation-duration: 1.25s;
}

@keyframes quoteslidingnext {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.quote-continue {
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 29px;
  width: 100%;
  -webkit-transform: translate3d(0,0,0);
}

.quote-continue-title {
  font-family: 'Lato', sans-serif;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.29;
  letter-spacing: -1px;
  color: #19388b;
}

.quote-continue-content {
  line-height: 38px;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #19388b;
  width: 320px;
  margin: 40px auto 0;
}

.quote-continue-content > div {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}

.quote-continue-content > div > div:nth-child(1) {
  font-weight: 600;
  flex: 0 0 160px;
  white-space: nowrap;
}

.quote-continue-content > div > div:nth-child(2) {
  color: #303030;
  flex: 0 0 160px;
  white-space: nowrap;
}

.quote-continue-btns {
  margin-top: 20px;
  text-align: center;
}

.quote-continue-btns a {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #19388b;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
}

.quote-continue-btns a.btn {
  border-radius: 30px;
  background-color: #f1f5f8;
  width: 296px;
  height: 60px;
  position: relative;
  cursor: pointer;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #19388b;
}

.quote-continue-btns a.btn-conditions {
  width: auto;
  padding: 0 35px;
}

.quote-continue-btns a.btn-quiz-conditions {
  width: auto;
  padding: 0 35px;
  pointer-events: none;
  color: #818181;
  background-color: #f8f8f8;
  font-weight: 400;
}

.quote-continue-btns a.btn-quiz-conditions.active {
  pointer-events: visible;
  color: #19388b;
  background-color: #f1f5f8;
}
  .quote-info-box {
    right: -16px !important;
    bottom: 110% !important;
    width: 300px !important;
    padding: 15px;
}
  .quote-info-box::after, .quote-info-box::before {
    right: auto;
    left: 100%;
    top: 100%;
    margin-top: 0;
    margin-left: -35px;
    transform: rotate(-90deg);
  }
@media (max-width: 767px) {
  .quote-rating {
    display: none;
  }
  .quote-progress {
    height: 5px;
  }
  .quote-step-header {
    margin: 20px 20px 0;
  }
  .quote-arrow-left {
    width: 25px;
    height: 25px;
  }
  .quote-arrow-left::before {
    width: 5px;
    height: 5px;
    top: 8px;
    right: 11px;
  }
  .quote-arrow-right {
    width: 25px;
    height: 25px;
  }
  .quote-arrow-right::before {
    width: 5px;
    height: 5px;
    top: 8px;
    left: 11px;
  }
  .quote-step-title {
    font-size: 14px;
    line-height: 25px;
  }
  .quote-step-form {
    padding: 33px 0;
  }
  .quote-step-image {
    height: 104px;
  }
  .quote-step-question {
    font-size: 18px;
    line-height: 1.39;
    letter-spacing: 0px;
    padding: 0 18px;
    text-align: center;
  }
  .quote-step-info {
    font-size: 13px;
    line-height: 1.54;
    text-align: center;
      padding:0 5px;
  }

  .quote-info-box::after {
  	border-color: rgba(255, 255, 255, 0);
  	border-right-color: #fff;
  	border-width: 10px;
  }
  .quote-info-box::before {
  	border-color: rgba(229, 229, 229, 0);
  	border-right-color: #e5e5e5;
  	border-width: 10px;
  }
  .quote-continue {
    padding: 22px 18px;
  }
  .quote-continue-title {
    font-size: 18px;
    line-height: 1.39;
    letter-spacing: 0px;
    padding: 0 18px;
    text-align: center;
  }
  .quote-continue-btns a.btn {
    height: 54px;
    font-size: 20px;
  }
  .quote-continue-btns a.btn-conditions {
    padding: 0 20px;
  }
  .quote-continue-btns a.btn-quiz-conditions {
    min-width: 220px;
    padding: 0 20px;
  }
  .quote-step-answer-conditions > div {
    padding: 0 20px;
  }
  .dependent > div {
    padding: 20px;
  }
}
@media (max-width:400px){
    .quote-step-form{padding:10px 0 30px;}
    .quote-container{margin:30px auto;}
    .quote-container-continue{margin:30px auto;}
}

/* Fixes */
a.phone-icon i {
    width: 25px;
    height: 30px;
    display: block;
}
.quote-step-answer-wrapper-info{
    display:flex;
    column-gap:10px;
    align-items: center;
    position: relative;
    margin-right: -30px;
    padding-right: 30px;
}
.quote-step-answer-wrapper-info .quote-info{
    right:0;
}
.quote-step-answer{
    row-gap:15px;
}
@media screen and (max-width:450px){
    .quote-step-answer-wrapper-info{
        max-width:70vw;
    }
}
@media screen and (max-width:400px){
    .quote-logo-image{
        max-width: 60vw;
    }
    .quote-help .phone-content {
        display: none;
    }
}

.quote-step--conditions .quote-step-answer-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.quote-qualify-conditions-option {
  flex: 0 0 40%;
  padding: 10px 0 10px 20%;
}
@media screen and (max-width: 767px){
  .quote-qualify-conditions-option {
    flex: 0 1 100%;
    padding-left: 0;
  }
}
.quote-qualify-conditions-followup {
  flex: 0 1 100%;
  padding: 10px 20%;
  background-color: #F7F7F7;
  position: relative;
}

.followup-arrow {
  position: absolute;
  top: 10px;
  left: 20%;
}

.quote-followup-title,
.quote-followup-line {
  padding-left: 40px;
}

.quote-followup-title {
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 10px;
}

.quote-followup-line {
  display: flex;
}

.quote-followup-text {
  padding-right: 20px;
}

.quote-followup-options {
  flex: 1 0 auto;
}

.followup-option {
  display: inline-flex;
  align-items: center;
}

.quote-followup-label {
  padding: 0;
}