.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.pos-relative {
  position: relative;
}


.qq-wrapper {
  position: relative;
  height: 0;
  display: flex;
  justify-content: center;
  transition: all .35s ease;
  box-sizing: content-box;
}

.qq-wrapper.results {
  height: auto;
}

.qq-wrapper > .step {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all .35s ease;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
  opacity: 0;
}

.qq-wrapper > .step[data-id=intro] {
  text-align: center;
  position: static;
}

.qq-wrapper > .step.active {
  opacity: 1;
  z-index: 5;
  transition: all .35s ease;
}

.qq-wrapper > .step .question {
  padding: 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {

  div.qq-wrapper > .step .description ul {
    padding-left: 25px;
  }

  div.qq-wrapper > .step .description {
    margin: 0;
  }

  .qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
    font-size: 16px;
  }
}

.qq-wrapper > .step .description {
  padding-bottom: 20px;
  display: inline-block;
}

.qq-wrapper > .step .description ul {
  padding-left: 35px;
  margin: 0 auto;
  text-align: left;
  max-width: 780px;
}

.qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  font-size: 20px;
}

@media screen and (min-width: 500px) {
  .qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
    font-size: 22px;
  }
}

@media screen and (min-width: 768px) {
  .qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
    font-size: 26px;
    padding: 0 20px 0;
  }
}

@media screen and (min-width: 980px) {
  .qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
    font-size: 30px;
    padding: 0 30px 20px;
    max-width: 980px;
  }
}

@media screen and (min-width: 1200px) {
  .qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
    font-size: 34px;
  }
}

.qq-wrapper > .step p,
.qq-wrapper > .step li {
  line-height: 1.4;
  margin-bottom: 5px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .qq-wrapper > .step p,
  .qq-wrapper > .step li {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .qq-wrapper > .step p,
  .qq-wrapper > .step li {
    font-size: 20px;
  }
}

.qq-wrapper > .step .fieldset {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {
  border: 2px solid #0071ce;
  /*font-family: "Lato", Sans-serif;*/
  margin: 10px;
  /*line-height: 1.2 !important;*/
  transition: .22s ease;
  display: inline-block;
  /*font-size: 16px;*/
}
.qq-wrapper > .step .fieldset button:hover,
.qq-wrapper > .step .fieldset .button:hover{
  background-color: #fff;
  color: #0071ce;
}


/*@media screen and (min-width: 768px) {*/
/*  .qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {*/
/*    font-size: 18px;*/
/*  }*/
/*}*/

/*@media screen and (min-width: 980px) {*/
/*  .qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {*/
/*    font-size: 20px;*/
/*  }*/
/*}*/

/*@media screen and (min-width: 1200px) {*/
/*  .qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {*/
/*    font-size: 22px;*/
/*  }*/
/*}*/

/*.qq-wrapper > .step .fieldset button:hover, .qq-wrapper > .step .fieldset .button:hover {*/
/*  background: #ffffff;*/
/*  color: #004a88;*/
/*}*/


.qq-wrapper > .step .fieldset button.quiz-btn-Square, .qq-wrapper > .step .fieldset .button.quiz-btn-Square {
  width: 100%;
  background: transparent;
  color: #004a88;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.6 !important;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .qq-wrapper > .step .fieldset button.quiz-btn-Square, .qq-wrapper > .step .fieldset .button.quiz-btn-Square {
    width: calc(50% - 20px);
    float: left;
  }
}

@media screen and (min-width: 1100px) {
  .qq-wrapper > .step .fieldset button.quiz-btn-Square, .qq-wrapper > .step .fieldset .button.quiz-btn-Square {
    font-size: 28px;
    line-height: 1.8 !important;
    padding: 50px;
  }
}

.qq-wrapper > .step .fieldset button.quiz-btn-Square:hover, .qq-wrapper > .step .fieldset .button.quiz-btn-Square:hover {
  background-color: #004a88;
  color: #fff;
}

.qq-wrapper > .step .button-nav {
  position: relative;
}

.qq-wrapper > .step .button-nav button {
  position: absolute;
  bottom: 5px;
}

@media screen and (min-width: 980px) {
  .qq-wrapper > .step .button-nav button {
    bottom: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .qq-wrapper > .step .button-nav button {
    bottom: 20px;
  }
}

.qq-wrapper > .step button.button-circle.prev {
  border-radius: 50%;
  min-width: unset;
  width: 26px;
  height: 26px;
  text-align: left;
  background: #fff;
  color: #004a88;
  border: 1px solid #004a88;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: -2px;
  top: 0;
}

@media screen and (min-width: 768px) {
  .qq-wrapper > .step button.button-circle.prev {
    width: 36px;
    height: 36px;
  }
}

.qq-wrapper > .step button.button-custom {
  display: block;
  border-radius: 2px;
  padding: 10px 40px;
  color: #004a88;
  background: #fff;
  text-transform: none;
  transition: all .22s ease;
}

.qq-wrapper > .step button.button-custom:hover {
  background: #004a88 !important;
  color: #fff !important;
  border-color: #004a88 !important;
}

.qq-wrapper > .step button.button-custom.prev {
  float: left;
}

.qq-wrapper > .step button.button-custom.restart {
  float: right;
}

.qq-wrapper.light > .step p, .qq-wrapper.light > .step li, .qq-wrapper.light > .step h3, .qq-wrapper.light > .step h2, .qq-wrapper.light > .step {
  color: #fff;
}

.qq-wrapper.light > .step button, .qq-wrapper.light > .step .button {
  border: 1px solid #fff;
  background: #ffffff;
  color: #004a88;
}

.qq-wrapper.light > .step button:hover, .qq-wrapper.light > .step .button:hover {
  background: #004a88;
  color: #ffffff;
}

.qq-wrapper.light > .step button.button-circle.prev {
  border: 1px solid #fff;
  background: #004a88;
  color: #ffffff;
}

.qq-wrapper.light > .step button.button-circle.prev:hover {
  background: #ffffff;
  color: #004a88;
}

.page-template-template-quiz-results div#bcq,
.page-template-template-bcq div#bcq {
  border-bottom: 50px solid #ebedee;
}

@media screen and (min-width: 768px) {
  .page-template-template-quiz-results div#bcq,
  .page-template-template-bcq div#bcq {
    border-bottom-width: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .page-template-template-quiz-results div#bcq,
  .page-template-template-bcq div#bcq {
    border-bottom-width: 120px;
  }
}

.page-template-template-quiz-results .container,
.page-template-template-bcq .container {
  width: 1200px;
  margin: 0 auto;
  max-width: calc(100vw - 30px);
}

@media screen and (min-width: 980px) {
  .page-template-template-quiz-results .container,
  .page-template-template-bcq .container {
    max-width: calc(100vw - 100px);
  }
}

@media screen and (min-width: 500px) {
  .page-template-template-quiz-results .container,
  .page-template-template-bcq .container {
    max-width: calc(100vw - 60px);
  }
}

.page-template-template-quiz-results .hero-bg,
.page-template-template-bcq .hero-bg {
  background-image: url(/wp-content/uploads/2020/02/Myriad_Header_HomePage_Background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9;
}

@media screen and (min-width: 980px) {
  .page-template-template-quiz-results .hero-bg .container,
  .page-template-template-bcq .hero-bg .container {
    padding: 0 180px;
    box-sizing: content-box;
    max-width: calc(100vw - 360px);
  }
}

.page-template-template-quiz-results .hero-bg div#page-title,
.page-template-template-bcq .hero-bg div#page-title {
  position: relative;
  background-position: bottom right;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .page-template-template-quiz-results .hero-bg div#page-title,
  .page-template-template-bcq .hero-bg div#page-title {
    background-size: auto 90%;
  }
}

@media screen and (max-width: 500px) {
  .page-template-template-quiz-results .hero-bg div#page-title,
  .page-template-template-bcq .hero-bg div#page-title {
    background-size: auto 80%;
  }
}

@media screen and (max-width: 420px) {
  div.step[data-id="providerlist"] ul {
    column-count: 1 !important;
  }
}

.page-template-template-quiz-results .hero-bg div#page-title .title,
.page-template-template-bcq .hero-bg div#page-title .title {
  color: #54595f;
  font-family: "Bitter", Sans-serif;
  position: relative;
  padding: 12% 0 14.5%;
  max-width: 50%;
  z-index: 9;
  font-size: 24px;
}

@media screen and (min-width: 500px) {
  .page-template-template-quiz-results .hero-bg div#page-title .title,
  .page-template-template-bcq .hero-bg div#page-title .title {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .page-template-template-quiz-results .hero-bg div#page-title .title,
  .page-template-template-bcq .hero-bg div#page-title .title {
    font-size: 32px;
  }
}

@media screen and (min-width: 980px) {
  .page-template-template-quiz-results .hero-bg div#page-title .title,
  .page-template-template-bcq .hero-bg div#page-title .title {
    font-size: 38px;
  }
}

@media screen and (min-width: 1200px) {
  .page-template-template-quiz-results .hero-bg div#page-title .title,
  .page-template-template-bcq .hero-bg div#page-title .title {
    font-size: 46px;
  }

  .page-template-template-quiz-results .hero-bg div#page-title .title.blur-lg,
  .page-template-template-bcq .hero-bg div#page-title .title.blur-lg {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }
}

@media screen and (min-width: 1400px) {
  .page-template-template-quiz-results .hero-bg div#page-title .title,
  .page-template-template-bcq .hero-bg div#page-title .title {
    font-size: 54px;
  }

  .page-template-template-quiz-results .hero-bg div#page-title .title.blur-lg,
  .page-template-template-bcq .hero-bg div#page-title .title.blur-lg {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}

@media screen and (min-width: 1600px) {
  .page-template-template-quiz-results .hero-bg div#page-title .title.blur-lg,
  .page-template-template-bcq .hero-bg div#page-title .title.blur-lg {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}

.colored-shape {
  position: absolute;
  display: none;
}

@media screen and (min-width: 980px) {
  .colored-shape {
    display: block;
  }
}

.start .colored-shape {
  left: 0;
}

.start .colored-shape.first {
  top: calc(50% - 125px);
  z-index: 1;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.start .colored-shape.second {
  top: calc(50% - 95px);
  left: 88px;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.start .colored-shape.third {
  top: calc(50% - 50px);
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.end .colored-shape {
  right: 0;
}

.end .colored-shape.first {
  top: 0;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.end .colored-shape.second {
  top: 60px;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.bcq-results-wrapper {
  padding: 50px 0;
}

.bcq-results-wrapper h2.results-title {
  margin: 20px 0 40px;
  text-align: center;
  font-weight: bold;
  color: #004a88;
  font-family: Lato;
  font-size: 24px;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .bcq-results-wrapper h2.results-title {
    font-size: 26px;
  }
}

@media screen and (min-width: 980px) {
  .bcq-results-wrapper h2.results-title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .bcq-results-wrapper h2.results-title {
    font-size: 34px;
  }
}

.bcq-results-wrapper .form h3,
.bcq-results-wrapper .content h3 {
  font-weight: bold;
  color: #7c878d;
  font-family: Lato;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .bcq-results-wrapper .form h3,
  .bcq-results-wrapper .content h3 {
    font-size: 24px;
  }
}

@media screen and (min-width: 980px) {
  .bcq-results-wrapper .form h3,
  .bcq-results-wrapper .content h3 {
    font-size: 26px;
  }
}

@media screen and (min-width: 1200px) {
  .bcq-results-wrapper .form h3,
  .bcq-results-wrapper .content h3 {
    font-size: 28px;
  }
}

.bcq-results-wrapper .form h3 {
  color: #fff;
}

@media screen and (min-width: 980px) {
  .bcq-results-wrapper .results {
    display: flex;
  }
}

.bcq-results-wrapper .results .content {
  padding: 20px 15px;
}

@media screen and (min-width: 980px) {
  .bcq-results-wrapper .results .content {
    padding: 40px 40px 40px 0;
    flex-basis: 45%;
  }
}

.bcq-results-wrapper .results .content ul {
  margin-left: 30px;
}

.bcq-results-wrapper .results .form {
  background: #004a88;
  padding: 20px 15px;
}

@media screen and (min-width: 980px) {
  .bcq-results-wrapper .results .form {
    padding: 40px 30px;
    flex-basis: 55%;
  }
}

.bcq-results-wrapper .results .form .hbspt-form a {
  color: #fff;
  text-decoration: underline;
}

.bcq-results-wrapper .results .form .hbspt-form input {
  width: 100%;
}

.bcq-results-wrapper .results .form .hbspt-form label,
.bcq-results-wrapper .results .form .hbspt-form p {
  color: #fff;
}

.bcq-results-wrapper .results .form .hbspt-form .hs_submit {
  text-align: center;
  margin-top: 50px;
}

.bcq-results-wrapper .results .form .hbspt-form .hs_submit input[type=submit] {
  display: inline-block;
  width: auto;
  background: #fff;
  color: #004a88;
  padding: 20px 40px;
  font-size: 18px;
}

.bcq-results-wrapper .results .form .hbspt-form .field {
  margin-bottom: 20px;
}


.qq-wrapper ul {
  list-style: disc;
}

.qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {
  /* border: none; */
}

/*.qq-wrapper > .step .fieldset button:hover, .qq-wrapper > .step .fieldset .button:hover {*/
/*  color: #0071ce;*/
/*}*/

.embeddedServiceHelpButton .helpButton .uiButton {
  background-color: #004a88 !important;
}

.scroll-back-to-top-wrapper {
  left: 30px;
  right: auto;
}


.qq-wrapper > .step .description h3, .qq-wrapper > .step .description h2 {
  margin-top: 0;
}

.wForm .inputWrapper {
  width: 100%;
}

.wForm .inputWrapper input, .wForm .inputWrapper select, .wForm .inputWrapper textarea {
  width: 100% !important;
}

div#tfa_26 p {
  font-size: 16px;
  text-align: left;
}

div#tfa_9290-D > label {
  padding-bottom: 10px;
}

fieldset#tfa_9286 {
  margin-bottom: 20px;
}

.wForm form > div.oneField {
  text-align: left;
}

.wFormContainer .errMsg {
  position: absolute;
  font-weight: 500 !important;
}

input#submit_button {
  color: #fff;
  border: 1px solid transparent;
  width: auto;
  font-size: 16px;
  border-radius: 6px;
  padding: 0 24px;
}


div#quiz .wForm label {
  white-space: normal;
  text-align: left;
  width: 100%;
  font-size: 18px !important;
}

.wForm form .choices.horizontal {
  padding-left: 10px;
}

div#quiz .wFormFooter {
  display: none;
}

div#quiz .wForm legend {
  font-size: 21px;
  line-height: inherit;
  padding: 0 8px;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
}

div#tfa_9276-D {
  display: none;
}

.icon-row__text {
  line-height: 1.7;
}

fieldset.section {
  text-align: left;
  border-color: #e5e5e5 !important;
  border-width: 1px !important;
}

fieldset.section fieldset.section {
  padding: 0;
  border: none;
}

fieldset.section fieldset.section legend {
  display: none;
}

fieldset.section legend {
  border: none;
  margin: 0;
}

.wForm form .oneChoice.maskControl label, .wForm form .oneChoice.maskControl .label {
  opacity: 1;
  padding: 5px;
  background: #0071ce;
  color: #fff !IMPORTANT;
  text-align: center !important;
  transition: all .22s ease;
}

.wForm form .oneChoice.maskControl, .wForm form .oneChoice.maskControl {
  margin-right: 20px;
}

.wForm form .oneChoice.maskControl label:hover, .wForm form .oneChoice.maskControl .label:hover, .wForm form .oneChoice.maskControl input:checked + label, .wForm form .oneChoice.maskControl input:checked + .label {
  background: #063997;
  cursor: pointer;
}

/*from stg site inspect*/
div#quiz .wForm label {
  text-align: left;
  color: #333;
  width: 100%;
  font-size: 18px !important;
  vertical-align: top;
}

.wForm .labelsAbove .preField {
  padding-bottom: 4px;
  min-width: 200px;
  padding-right: 5px;
  padding-left: .3em;
}

div#quiz .wForm .inputWrapper input, div#quiz .wForm .inputWrapper select {
  width: 100% !important;
  padding: 10px;
  font-size: 18px !important;
  background: transparent;
  height: 47px !important;
}


.qq-wrapper > .step .question .wFormThankYou h2 {
  margin-top: 0 !important;
}

.qq-wrapper > .step .question .wForm {
  padding-top: 0;
}

.qq-wrapper > .step .question .wFormThankYou .wrapper.wrapper--sm.u-text-center {
  margin-top: 35px;
}

/* Quick Quiz */


div#quiz .wForm label {
  text-align: left;
  color: #333;
  width: 100%;
  font-size: 18px !important;
}

div#quiz .wForm .inputWrapper {
  width: 100%;
}

div#quiz .wForm .inputWrapper input, div#quiz .wForm .inputWrapper select {
  width: 100% !important;
  padding: 10px;
  font-size: 18px !important;
}

div#quiz div.htmlSection p {
  text-align: left;
  font-size: 16px;
  margin-top: 10px;
}

div#quiz .wFormFooter {
  display: none;
}

div#quiz input#submit_button {
  background: #0071ce;
  color: #fff;
  border: none;
  padding: 15px 30px;
  height:auto;
}

div#quiz input#submit_button:hover {
  color: #fff;
  background: #063997;
}


.qq-wrapper > .step .question .wFormThankYou h2 {
  text-align: center;
  font-weight: 500;
  margin: 0;
}

.qq-wrapper > .step .question .wFormThankYou .button {
  background: #0071ce;
  color: #fff;
  padding: 16px;
  border-radius: 6px;
  margin: 10px auto;
  display: inline-block;
}

.qq-wrapper > .step .question .wFormThankYou .u-text-center {
  text-align: center;
}



@media screen and (min-width: 768px) {
  .qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {
    font-size: 18px
  }
}

@media screen and (min-width: 980px) {
  .qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {
    font-size: 20px
  }
}

@media screen and (min-width: 1200px) {
  .qq-wrapper > .step .fieldset button, .qq-wrapper > .step .fieldset .button {
    font-size: 22px
  }
}
