@charset "UTF-8";
/*/*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap');
@import 'banner.css';
/*/*/
:root {

    /* Font Sizes */
    --font-size-32:                   32px;
    --font-size-28:                   28px;
    --font-size-24:                   24px;
    --font-size-20:                   20px;
    --font-size-body:                 18px;
    --font-size-small:                16px;
    --font-size-smallest:             14px;

    /* Font Weights */
    --font-weight-normal:             400;
    --font-weight-medium:             500;
    --font-weight-bold:               700;

    /* Font Families */
    --d-font-family-heading:          "Montserrat", Arial, Helvetica, sans-serif;
    --d-font-family-body:             "Open Sans", Arial, Helvetica, sans-serif;

    /* Color Options */
    --d-color-primary:                #1C1B54;
    --d-color-secondary:              #53B0E3;
    --d-color-tertiary:               #8BC63E;
    --d-color-text:                   #292929;
    --d-color-white:                  #ffffff;
    --d-color-gray:                   #cccccc;
    --d-color-light:                  #F2F4F5;

    /* Panel Options */
    --d-panel-background-color:       #ffffff;
    --d-panel-background-opacity:       0.9;
    --d-panel-logo-bg-color:          #ffffff;
    --d-panel-border-radius:            25px;

    /* Button Options */
    --d-btn-border-radius:              25px;
    --d-btn-border-radius-large:        calc(var(--d-btn-border-radius) + 10px);
    --d-btn-border-radius-small:        calc(var(--d-btn-border-radius) - 10px);
    --d-btn-border-radius-h:            calc(var(--d-btn-border-radius) + 15px);
    --d-btn-border-radius-h-large:      calc(var(--d-btn-border-radius-large) + 15px);
    --d-btn-border-radius-h-small:      calc(var(--d-btn-border-radius-small) + 15px);
    
    /* Page Options */
    --d-overlay-color:                #00031D;
    --d-overlay-opacity:                0.75;
    --d-footer-background-color:      #ffffff;
    --d-footer-background-opacity:      0;
    --d-footer-border-color:          #ffffff;
    --d-footer-border-opacity:          0.25;
    --d-footer-logo-color:            #ffffff;
    --d-footer-links-color:           #ffffff;
    --d-footer-links-hover:           #ffffff;

}
/*/*/
body {
    font-family: var(--font-family-body, var(--d-font-family-body));
    font-size: var(--font-size-body);
    color: var(--color-text, var(--d-color-text));
}
/*/*/
.survey__page--section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 50px 175px 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.is-touch-device .survey__page--section {
    background-attachment: initial;
}
/*/*/
.survey__page--panel {
    max-width: 1000px;
    overflow: hidden;
    position: relative;
    z-index: 4;
    padding: 100px 90px 50px 90px;
    border-radius: var(--panel-border-radius, var(--d-panel-border-radius));
    border-top-right-radius: 0 !important;
}
.survey__panel--step {
    padding-top: 0px;
}
.survey__panel--logo {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    padding-right: 45px;
    padding-left: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.panel__logo--logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
}
.survey__logo--start .panel__logo--logo {
    max-height: 75px;
    max-width: 250px;
}
.survey__logo--step .panel__logo--logo {
    max-height: 60px;
    max-width: 240px;
}
.panel__logo--logo img {
    height: 100%;
    width: auto;
	max-width: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 90px;
}
.survey__logo--step .panel__logo--logo img {
    max-height: 75px;
}
.panel__logo--background {
    background-color: var(--panel-logo-bg-color, var(--d-panel-logo-bg-color));
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
}
.panel__logo--background:before {
    content: "";
    width: 50px;
    background-color: var(--panel-logo-bg-color, var(--d-panel-logo-bg-color));
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -25px;
    transform: skewX(20deg);
}
/*/*/
.survey__panel--loader {
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}
.survey__loader {
    width: 48px;
    height: 48px;
    border: 10px solid var(--color-primary);
    border-radius: 50%;
    position: relative;
    transform:rotate(45deg);
    box-sizing: border-box;
    display: inline-flex;
}
.survey__loader::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset: -10px;
    border-radius: 50%;
    border:10px solid var(--color-secondary);
    animation: loading 3s infinite linear;
}
@keyframes loading {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
/*/*/
.survey__panel--banner {
    margin-left: -90px;
    margin-right: -90px;
    margin-bottom: 68px;
}
.panel__banner--start  {
    margin-bottom: 90px;
}
.panel__banner--wrapper img {
    margin-bottom: -35px;
    max-width: 100%;
    width: 100%;
    height: auto;
}
.panel__banner--start .panel__banner--wrapper img {
    margin-bottom: -50px;
}
/*/*/
.panel__progress--steps {
    display: inline-flex;
    justify-content: space-between;
    position: relative;
}
.panel__progress--steps:after {
    content: "";
    height: 2px;
    background-color: var(--d-color-gray);
    position: absolute;
    top: 15px;
    left: 0px;
    right: 0px;
    z-index: 0;
}
.panel__progress--step {
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    border: 2px solid var(--d-color-gray);
    background-color: var(--d-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-right: 90px;
}
.panel__progress--step span {
    z-index: 2;
}
.panel__progress--step:last-child {
    margin-right: 0px;
}
.panel__progress--step:after {
    content: "";
    height: 2px;
    width: 0px;
    background-color: var(--color-tertiary, var(--d-color-tertiary));
    position: absolute;
    top: 13px;
    right: -94px;
    z-index: 0;
}
.panel__progress--step:last-child:after {
    display: none;
}
.panel__progress--step span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-primary, var(--d-color-primary));
    display: inline-block;
    line-height: 28px;
    width: 28px;
}
.panel__progress--current {
    border-color: var(--color-secondary, var(--d-color-secondary));
}
.panel__progress--complete {
    border-color: var(--color-tertiary, var(--d-color-tertiary));
}
.panel__progress--complete:before {
    content: "";
    height: 12px;
    width: 20px;
    border-left: 3px solid var(--color-secondary, var(--d-color-secondary));
    border-bottom: 3px solid var(--color-secondary, var(--d-color-secondary));
    background-color: var(--d-color-white);
    transform: rotate(-45deg);
    position: absolute;
    top: 6px;
    left: 4px;
    z-index: 3;
}
.panel__progress--complete:after {
    width: 94px;
}
.panel__progress--complete span {
    opacity: 0;
}
/*/*/
.survey__panel--heading {
    width: 100%;
    max-width: calc(100% - 250px);
}
.survey__heading--start {
    margin-bottom: 50px;
    /* padding-top: 35px; */
}
.survey__heading--step {
    padding-top: 35px;
    margin-bottom: 25px;
}
.survey__heading--results {
    padding-top: 50px;
    margin-bottom: 25px;
    max-width: unset;
}
.survey__panel--heading h1 {
    font-size: var(--font-size-32);
    font-family: var(--font-family-heading, var(--d-font-family-heading));
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    color: var(--color-primary, var(--d-color-primary));
}
.survey__panel--heading h1 span {
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary, var(--d-color-secondary));
}
.survey__panel--heading h2 {
    font-size: var(--font-size-28);
    font-family: var(--font-family-heading, var(--d-font-family-heading));
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    color: var(--color-primary, var(--d-color-primary));
}
.survey__panel--heading > *:last-child {
    margin-bottom: 0px;
}
.survey__panel--intro {
    margin-bottom: 35px;
}
.survey__panel--intro p:last-child {
    margin-bottom: 0px;
}
.survey__panel--content {
    width: 100%;
    margin-bottom: 45px;
}
.survey__panel--results {
    margin-bottom: 0px;
    padding-top: 0px;
}
.survey__content--start {
    display: flex;
}
.panel__content--left {
    padding-right: 75px;
}
.panel__content--wrapper > *:last-child {
    margin-bottom: 0;
}
.panel__content--wrapper ul {
    list-style: none;
    padding-left: 25px;
}
.panel__content--wrapper h2,
.panel__content--wrapper h3,
.panel__content--wrapper h4 {
    color: var(--color-primary)
}
.panel__content--wrapper ul li {
    position: relative;
    margin-bottom: 1rem;
}
.panel__content--wrapper ol li {
    position: inherit;
    margin-bottom: 1rem;
}
.panel__content--wrapper li:last-child {
    margin-bottom: 0px;
}
.panel__content--wrapper li:before {
    content: "";
    position: absolute;
    left: -22px;
    top: 10px;
    height: 8px;
    width: 8px;
    border-top: 2px solid var(--color-tertiary, var(--d-color-tertiary));
    border-right: 2px solid var(--color-tertiary, var(--d-color-tertiary));
    transform: rotate(45deg);
    filter: drop-shadow(3px -3px 0px var(--color-tertiary, var(--d-color-tertiary)));
}
.panel__content--wrapper a {
    color: var(--color-secondary);
}
.panel__content--wrapper a:hover,
.panel__content--wrapper a:focus {
    color: var(--color-tertiary);
    text-decoration: underline;
}
.panel__benefit--item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.panel__benefit--item:last-child {
    margin-bottom: 0px;
}
.panel__benefit--icon {
    flex: 0 0 50px;
    margin-top: 5px;
}
.panel__benefit--icon svg {
    fill: var(--color-tertiary, var(--d-color-tertiary));
    vertical-align: top;
}
.panel__benefit--text {
    padding-left: 25px;
}
.panel__benefit--text p {
    margin-bottom: 0px;
}
.panel__content--right {
    flex: 0 0 250px;
}
.panel__start--image {
    height: 100%;
}
.panel__start--image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
/*/*/
.survey__step--item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.survey__step--item:last-child {
    margin-bottom: 0px;
}
.survey__step--question {
    position: relative;
    padding-right: 50px;
    width: calc(100% - 320px);
    display: flex;
    align-items: center;
}
.survey__step--question p {
    font-size: var(--font-size-small);
    font-weight: medium;
    line-height: 22px;
    margin-bottom: 0px;
}
.step__question--info {
    position: absolute;
    top: 14px;
    right: 16px;
    line-height: 18px;
}
.step__question--info a {
    line-height: 18px;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
}
.step__question--info svg {
    vertical-align: top;
    fill: var(--color-primary, var(--d-color-primary));
}
.step__question--info a:hover svg,
.step__question--info a:focus svg {
    fill: var(--color-secondary, var(--d-color-secondary));
}
.step__question--tooltip {
    padding: 10px 15px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: scale(0,0);
    transition: all 300ms ease-in-out;
    bottom: calc(100% + 15px);
    font-family: var(--font-family-body, var(--d-font-family-body));
    font-size: calc(var(--font-size-smallest) * 0.9);
    line-height: 1.75;
    z-index: 5;
    color: var(--d-color-white);
    width: 690px;
    left: -336px;
}
.step__question--tooltip:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--color-text, var(--d-color-text));
    opacity: 0.9;
    border-radius: 5px;
}
.step__question--tooltip:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-text, var(--d-color-text));
    opacity: 0.9;
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-10px);
}
.step__question--info:hover .step__question--tooltip,
.step__question--info:focus-within .step__question--tooltip {
    opacity: 1;
    visibility: visible;
    transform: scale(1,1);
}
/*/*/
.survey__step--input {
    flex: 0 0 320px;
}
.survey__step--input p {
    margin-bottom: 0px;
    color: red;
    font-size: 12px;
    text-align: right;
}

.survey__step--input input {
    background-color: var(--d-color-white);
    border: 1px solid var(--d-color-gray);
    border-radius: 0px;
    font-size: var(--font-size-small);
    line-height: 24px;
    padding: 10px 15px 10px 25px;
    width: 100%;
}
.survey__step--input input.is-invalid {
    border-color: red;
}
.survey__step--input.required {
    position: relative;
}
.survey__step--input.required:after {
    content: "*";
    color: var(--color-secondary, var(--d-color-secondary));
    position: absolute;
    top: 0px;
    right: 6px;
    font-size: var(--font-size-small);
}
.survey__step--input input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.survey__step--input input::-webkit-outer-spin-button,
.survey__step--input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.survey__step--radio {
    display: flex;
    flex-wrap: wrap;
    max-width: 320px;
}
.survey__step--checkbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}
.survey__step--choice {
    min-width: 160px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.survey__step--checkbox .survey__step--choice {
    min-width: unset;
    margin-right: 50px;
    margin-bottom: 10px;
}
.survey__step--choice input[type="radio"],
.survey__step--choice input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    margin: 5px;
}
.survey__step--choice label {
    margin: 0;
    position: relative;
    padding-left: 35px;
    line-height: 27px;
    font-size: var(--font-size-small);
}
.survey__step--choice label:before {
    content: "";
    height: 25px;
    width: 25px;
    background-color: var(--d-color-white);
    border: 1px solid var(--d-color-gray);
    position: absolute;
    left: 0px;
    top: 0px;
}
.survey__step--choice label:after {
    height: 10px;
    width: 20px;
    border-left: 3px solid var(--color-primary, var(--d-color-primary));
    border-bottom: 3px solid var(--color-primary, var(--d-color-primary));
    transform: rotate(-45deg);
    position: absolute;
    left: 3px;
    top: 5px;
}
.survey__step--choice input:checked + label:after {
    content: "";
}
.survey__step--choice input[type="radio"].is-invalid + label,
.survey__step--choice input[type="checkbox"].is-invalid + label {
    color: red;
}
.survey__step--choice input[type="radio"].is-invalid + label:before,
.survey__step--choice input[type="checkbox"].is-invalid + label:before {
    border-color: red;
}
.survey__step--choice:focus-within label:before {
    outline: 1px auto;
    outline: -webkit-focus-ring-color auto 1px;
}
.survey__step--radio p,
.survey__step--checkbox p {
    margin-bottom: 0px;
    color: red;
    font-size: 12px;
    text-align: right;
    width: 100%;
    margin-top: -5px;
}
.survey__step--select {
    flex: 0 0 320px;
    position: relative;
}
.survey__step--select p {
    margin-bottom: 0px;
    color: red;
    font-size: 12px;
    text-align: right;
}
.survey__step--select select {
    background-color: var(--d-color-white);
    border: 1px solid var(--d-color-gray);
    border-radius: 0px;
    font-size: var(--font-size-small);
    line-height: 24px;
    padding: 10px 15px 10px 25px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.survey__step--select:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-secondary, var(--d-color-secondary));
    position: absolute;
    top: 20px;
    right: 15px;
}
.survey__step--select select.is-invalid {
    border-color: red;
}
.step__item--100 {
    padding-top: 10px;
}
.step__item--100 > div {
    width: 100%;
    flex: 0 1 auto;
}
/*/*/
.survey__panel--action {
    margin-bottom: 30px;
}
.survey__action--start {
    text-align: center;
}
.survey__action--step {
    display: flex;
    justify-content: space-between;
}
.survey_panel--background {
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--panel-background-color, var(--d-color-white));
    opacity: var(--panel-background-opacity, var(--d-panel-background-opacity))
}
.survey__panel--footer {
    padding-top: 25px;
    font-size: var(--font-size-smallest);
    text-align: center;
    border-top: 1px solid #cccccc;
}
.survey__panel--footer p:last-child {
    margin-bottom: 0px;
}
/*/*/
.panel__action {
    min-width: 200px;
    padding: 10px 25px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-text, var(--d-color-text));
    border-radius: var(--btn-border-radius, var(--d-btn-border-radius));
    color: var(--color-text, var(--d-color-text));
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
}
.panel__action span {
    position: relative;
    z-index: 2;
}
.panel__action:after {
    content: "";
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-radius: var(--btn-border-radius-h, var(--d-btn-border-radius-h));
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    transition: all 150ms ease-in-out;
}
.panel__action:hover:after,
.panel__action:focus:after {
    content: "";
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-color: var(--color-text, var(--d-color-text));
}
.panel__action--large {
    border-radius: var(--btn-border-radius-large, var(--d-btn-border-radius-large));
    min-width: 250px;
    padding: 20px 25px;
}
.panel__action--large:hover:after,
.panel__action--large:focus:after {
    border-radius: var(--btn-border-radius-h-large, var(--d-btn-border-radius-h-large));
}
.panel__action--small {
    border-radius: var(--btn-border-radius-small, var(--d-btn-border-radius-small));
    min-width: 150px;
    padding: 5px 15px;
    font-size: var(--font-size-small);
}
.panel__action--small:hover:after,
.panel__action--small:focus:after {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: var(--btn-border-radius-h-small, var(--d-btn-border-radius-h-small));
}
.panel__action--primary {
    background-color: var(--btn-primary-bg-color, var(--color-secondary));
    border-color: var(--btn-primary-br-color, var(--color-secondary));
    color: var(--btn-primary-tx-color, var(--d-color-white));
}
.panel__action--primary:hover,
.panel__action--primary:focus {
    color: var(--btn-primary-tx-color, var(--color-text));
}
.panel__action--primary:hover:after,
.panel__action--primary:focus:after {
    border-color: var(--btn-primary-br-color, var(--color-secondary));
    text-decoration: none;
}
.panel__action--secondary {
    background-color: var(--btn-secondary-bg-color, var(--d-color-white));
    border-color: var(--btn-secondary-br-color, var(--color-secondary));
    color: var(--btn-secondary-tx-color, var(--color-primary));
}
.panel__action--secondary:hover,
.panel__action--secondary:focus {
    color: var(--btn-secondary-tx-color, var(--color-primary));
    text-decoration: none;
}
.panel__action--secondary:hover:after,
.panel__action--secondary:focus:after {
    border-color: var(--btn-secondary-br-color, var(--color-secondary));
}
.panel__action--tertiary {
    background-color: var(--btn-tertiary-bg-color, var(--color-tertiary));
    border-color: var(--btn-tertiary-br-color, var(--color-tertiary));
    color: var(--btn-tertiary-tx-color, var(--d-color-white));
}
.panel__action--tertiary:hover,
.panel__action--tertiary:focus {
    color: var(--btn-tertiary-tx-color, var(--d-color-white));
    text-decoration: none;
}
a.panel__action--tertiary:focus {
    outline: none;
}
.panel__action--tertiary:hover:after,
.panel__action--tertiary:focus:after {
    border-color: var(--btn-tertiary-br-color, var(--color-tertiary));
}
/*/*/
.survey__page--footer {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: auto;
    z-index: 4;
    padding: 20px 50px;
}
.survey__footer--border {
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 100%;
    height: 1px;
    background-color: var(--footer-border-color, var(--d-footer-border-color));
    opacity: var(--footer-border-opacity, var(--d-footer-border-opacity));
}
.survey__footer--content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.survey__footer--column {
    width: auto;
}
.survey__footer--column a {
    color: var(--footer-links-color, var(--d-footer-links-color));
    margin-left: 10px;
    margin-right: 10px;
    font-size: var(--font-size-small);
}
.survey__footer--column a:hover,
.survey__footer--column a:focus {
    color: var(--footer-links-hover, var(--d-footer-links-hover));
    text-decoration: none;
}
.survey__footer--links {
    text-align: left;
}
.survey__footer--logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.survey__footer--logo label {
    margin-right: 15px;
    margin-bottom: 0px;
    display: inline-block;
    color: var(--footer-logo-color, var(--d-footer-logo-color));
    font-size: var(--font-size-small);
}
.survey__footer--logo a {
    margin: 0px;
}
.survey__footer--logo svg {
    height: 40px;
    width: auto;
    fill: var(--footer-logo-color, var(--d-footer-logo-color));
    vertical-align: top;
}
.survey__footer--legal {
    text-align: right;
}
.survey__footer--background {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    background-color: var(--footer-background-color, var(--d-footer-background-color));
    opacity: var(--footer-background-opacity, var(--d-footer-background-opacity));
}
/*/*/
.survey__page--background {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.survey__background--overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    background-color: var(--overlay-color, var(--d-overlay-color));
    opacity: var(--overlay-opacity, var(--d-overlay-opacity));
}
/*/*/
.survey__results--results {
    min-height: 320px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.survey__info--content {
    margin-bottom: 35px;
    padding: 35px 50px;
    position: relative;
    z-index: 1;
}
.survey__info--content:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: var(--d-color-white);
    z-index: -1;
    border-radius: 5px;
    opacity: 0.35;
}
.survey__info--copy {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.survey__info--copy p {
    margin-bottom: 0px !important;
}
.survey__info--copy .panel__action--wrapper {
    flex: 0 0 150px;
    margin-left: 25px;
}
.survey__info--content p {
    max-width: calc(100% - 175px);
    width: 100%;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    font-style: italic;
    margin-bottom: 15px;
}
.survey__info--content p:last-child {
    margin-bottom: 0px;
}
.survey__info--content a {
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary, var(--d-color-secondary));
}
/*/*/
.survey__results--item {
    border-top: 1px solid var(--d-color-gray);
    background-color: transparent;
    transition: background-color 300ms ease-in-out;
}
.survey__results--item.active {
    background-color: var(--panel-background-color, var(--d-color-white));
    transition: background-color 300ms ease-in-out;
}
/*/*/
.results__item--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px 20px 25px;
    position: relative;
}
.results__item--header:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-left: 10px solid var(--color-secondary, var(--d-color-secondary));
    border-bottom: 14px solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}
.results__item--header:after {
    content: "";
    height: 14px;
    width: 14px;
    border-right: 3px solid var(--color-secondary, var(--d-color-secondary));
    border-bottom: 3px solid var(--color-secondary, var(--d-color-secondary));
    position: absolute;
    top: 50%;
    right: 35px;
    transform-origin: center;
    transform: rotate(-45deg) translateX(10px);
}
.results__item--header:hover,
.results__item--header:focus {
    text-decoration: none;
}
.results__item--header:hover:before,
.results__item--header:focus:before {
    opacity: 1;
}
.survey__results--item.active .results__item--header:after {
    transform: rotate(45deg) translateX(10px);
    top: calc(33.33% - 5px);
}
/*/*/
.result__item--name {
    pointer-events: none;
}
.result__item--name h2 {
    font-size: var(--font-size-20);
    color: var(--color-primary, var(--d-color-primary));
    margin: 0px;
    line-height: 30px;
}
.result__item--brief {
    pointer-events: none;
}
.result__item--brief p {
    margin-bottom: 0px;
    color: var(--color-text, var(--d-color-text));
    opacity: 0.66;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-body);
    line-height: 30px;
    letter-spacing: -1px;
    white-space: nowrap;
}
.result__item--brief p span:before {
    content: "$";
}
.survey__results--item.active .result__item--logo + .result__item--brief {
    display: none;
}
.results__item--header:hover .result__item--brief p,
.results__item--header:focus .result__item--brief p {
    opacity: 1;
}
.result__item--logo {
    display: none;
    pointer-events: none;
}
.result__item--logo img {
  	max-width: 100%;
  	width: auto;
  	object-fit: contain;
  	object-position: center right;
 	height: auto;
  	max-height: 50px;
}
.survey__results--item.active .result__item--logo {
    display: unset;
	margin-top: -10px;
	margin-bottom: -10px;
	max-width: 250px;
}
/*/*/
.results__item--expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}
.results__item--expand.active {
    max-height: 600vh;
    transition: max-height 300ms ease-in-out;
}
.results__item--expand[aria-hidden="true"]{
    visibility: hidden;
}
.results__item--expand[aria-hidden="false"]{
    visibility: visible;
}
.results__expand--content {
    margin-left: 25px;
    margin-right: 25px;
    position: relative;
    padding: 10px 25px 0px 25px;
    border-top: 1px solid var(--d-color-gray);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-normal);
    line-height: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out;
}
.results__item--expand.active .results__expand--content {
    opacity: 1;
    visibility: visible;
    transition: opacity 200ms ease-in-out;
}
.results__expand--content h3 {
    margin: 25px 0px 15px;
    color: var(--color-primary, var(--d-color-primary));
    font-size: var(--font-size-20);
    font-family: var(--font-family-heading, var(--d-font-family-heading));
    font-weight: var(--font-weight-medium);
}
.results__expand--content h4 {
    margin: 20px 0px 15px;
    color: var(--color-primary, var(--d-color-primary));
    font-size: var(--font-size-body);
    font-family: var(--font-family-heading, var(--d-font-family-heading));
    font-weight: var(--font-weight-medium);
}
.results__expand--content p {
    margin: 15px 0px;
}
.results__expand--content p span {
    color: var(--color-secondary, var(--d-color-secondary));
}
.results__expand--content ul {
    padding-left: 17px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.results__expand--content ul li::marker {
    color: var(--color-primary, var(--d-color-primary));
    font-size: 1.25rem;
    line-height: 30px;
}
.results__expand--content ul li span {
    color: var(--color-secondary, var(--d-color-secondary));
}
.results__expand--content a {
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary, var(--d-color-secondary));
    font-style: italic;
}
/*/*/
.result__expand--recommended {
    margin-left: -25px;
    margin-right: -25px;
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 25px;
	position: relative;
    overflow: hidden;
    isolation: isolate;
}
.result__expand--recommended::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--panel-background-color, var(--d-color-light));
  filter: invert(50%);
  opacity: 0.15;
}
.result__expand--recommended h3 {
    margin: 10px 0px 15px;
    text-align: center;
    font-weight: var(--font-weight-bold);
}
/*/*/
.result__item--amount {
    display: flex;
    margin-left: -2px;
    margin-right: -2px;
    margin-top: 25px;
}
.result__item--value {
    flex: 1;
    margin-left: 2px;
    margin-right: 2px;
    text-align: center;
    padding: 15px 25px;
	position: relative;
    overflow: hidden;
    isolation: isolate;
}

.result__item--value::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--panel-background-color, var(--d-color-light));
  filter: invert(50%);
  opacity: 0.15;
}

.result__item--value:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.result__item--value:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.result__item--value label {
    display: block;
    margin: 0px;
    font-size: var(--font-size-20);
    font-weight: bold;
    line-height: 30px;
    color: var(--color-secondary, var(--d-color-secondary));
}
.result__item--value p {
    margin: 0px 0px 3px;
    font-size: var(--font-size-24);
    font-weight: bold;
    line-height: 30px;
    color: var(--color-primary, var(--d-color-primary));
}
.result__item--value p span {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    color: var(--color-text, var(--d-color-text));
    opacity: 0.5;
}
/* BAH: Adding feedback button CSS. */
.result__item--feedback {
    margin-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
}
.feedback__controls {
    display: flex;
    justify-content: flex-end;
}
.feedback__message {
    padding-right: 20px;
}
.feedback__thumbs {
    cursor: pointer;
}
.hidden {
    display:none;
}
.result__item--feedback-form {

}
.result__item--feedback-form-submit {
    display: flex;
    flex-direction: row-reverse;
}
.result__item--feedback-end {
    margin-bottom: 45px;
}
div.feedback__form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
}
/* BAH: Adding feedback button CSS. [end] */



.result__item--actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    margin-top: 35px;
    padding-left: 50px;
    padding-right: 50px;
    gap: 25px;
    align-items: center;
}
.result__item--actions .panel__action--wrapper:last-child {
    margin-left: 0;
}
.result__item--actions .panel__action--wrapper:nth-last-child(2) {
    margin-left: auto;
}

.survey__results--item:first-child .result__item--actions .panel__action--wrapper:nth-last-child(2) {
    display: none;
}
.survey__results--item:last-child .result__item--actions .panel__action--wrapper:last-child {
    display: none;
}

@media only screen and (max-width: 1023px) {
    body {
        font-size: var(--font-size-small);
    }
	.survey__page--section {
        padding-top: 50px;
    }
    .survey__page--panel {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 90px;
    }
    .survey__panel--results {
        padding-top: 0px;
    }
    .survey__panel--step {
        padding-top: 0px;
    }
    .survey__panel--banner {
        margin-left: -50px;
        margin-right: -50px;
    }
    .survey__logo--step {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 25px;
        padding-left: 10px;
    }
    .survey__logo--start {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 25px;
        padding-left: 10px;
    }
    .survey__logo--step .panel__logo--logo {
        max-height: 60px;
        max-width: 200px;
    }
    .panel__logo--background::before {
        left: -20px;
    }
    .survey__panel--heading {
        max-width: 100%;
    }
    .survey__panel--heading h1 {
        font-size: var(--font-size-28);
    }
    .survey__heading--start {
        margin-bottom: 35px;
        padding-top: 10px;
    }
    .panel__content--left {
        padding-right: 25px;
        width: calc(100% - 150px)
    }
    .panel__content--right {
        flex: 0 0 150px;
    }
    .survey__footer--content {
        justify-content: center;
    }
    .survey__footer--column a {
        font-size: var(--font-size-smallest);
    }
    .survey__footer--logo {
        order: 1;
        margin-bottom: 25px;
        width: 100%;
    }
    .survey__footer--logo label {
        font-size: var(--font-size-smallest);
    }
    .survey__footer--links {
        order: 2;
        max-width: 50%;
    }
    .survey__footer--legal {
        order: 3;
        max-width: 50%;
    }
    .survey__panel--footer {
        font-size: calc(var(--font-size-small) * 0.75);
    }
    .survey__step--question {
        width: 100%;
        margin-bottom: 10px;
    }
    .survey__step--question p {
        line-height: 1.5;
    }
    .survey__step--input {
        flex: 0 1 auto;
        width: 100%;
    }
    .step__question--info {
        top: 50%;
        transform: translateY(-50%);
    }
    .step__question--tooltip {
        left: -466px;
        width: 500px;
    }
    .step__question--tooltip::after {
        left: auto;
        right: 5px;
    }
    .survey__step--checkbox .survey__step--choice {
        margin-right: 25px;
        min-width: 125px;
    }
    .survey__step--checkbox {
        margin-top: 15px;
    }
    .survey__step--select {
        flex: 0 1 auto;
        width: 100%;
    }
    .result__item--name h2 {
        font-size: var(--font-size-body);
    }
    .panel__action--small {
        min-width: 100px;
        padding: 5px 10px;
    }
    .survey__info--content p {
        width: 100%;
        max-width: unset;
        font-size: var(--font-size-smallest);
    }
    .survey__info--content {
        padding: 20px 25px;
    }
    .survey__info--copy .panel__action--wrapper {
        flex: 0 0 100px;
    }
    .survey__heading--results {
        padding-top: 25px;
    }
    .survey__step--radio {
        max-width: unset;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {

    body {
        font-size: var(--font-size-smallest);
    }

    .survey__page--footer {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 25px;
        min-height: 110px;
    }
    .survey__footer--border {
        background-color: var(--d-color-gray);
        opacity: 1;
    }
    .survey__footer--background {
        background-color: var(--panel-background-color, var(--d-color-white));
        opacity: var(--panel-background-opacity, var(--d-panel-background-opacity));
    }
    .survey__footer--links {
        display: none;
    }
    .survey__footer--column a {
        color: var(--color-text, var(--d-color-text));
    }
    .survey__footer--logo {
        order: 1;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        flex: 0 0 165px;
        margin-bottom: 0px;
        padding-bottom: 7px;
    }
    .survey__footer--logo label {
        color: var(--color-text, var(--d-color-text));
        font-weight: var(--font-weight-medium);
        line-height: 1.1;
        margin-bottom: 5px;
        width: 100%;
        font-size: 13px;
    }
    .survey__footer--logo a {
        margin: 0px;
    }
    .survey__footer--logo svg {
        fill: var(--color-text, var(--d-color-text));
        height: 35px;
    }
    .survey__footer--legal {
        width: calc(100% - 165px);
        text-align: right;
        display: flex;
        flex-direction: column;
        order: 2;
    }
    .survey__footer--legal a {
        width: 100%;
        margin: 0px;
        padding-left: 10px;
        padding-right: 0px;
    }
    .survey__footer--legal a:first-child {
        margin-top: auto;
    }
    .survey__footer--legal a:last-child {
        margin-bottom: -8px;
    }
    .survey__footer--column a:hover,
    .survey__footer--column a:focus {
        color: var(--color-secondary, var(--d-color-secondary));
        text-decoration: none;
    }

    .survey__page--section {
        padding-left: 0px;
        padding-right: 0px;
        background: none;
        padding-bottom: 110px;
        padding-top: 0px;
    }
    .survey__page--panel {
        border-radius: 0px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        padding-top: 0px;
        display: flex;
        flex-wrap: wrap;
    }
    .survey__panel--logo {
        position: relative;
    }
    .panel__logo--logo img {
        max-height: 75px;
    }
    .survey__logo--start {
        margin-bottom: 0px;
        right: -30px;
        align-self: flex-end;
        margin-left: auto;
    }
    .survey__logo--start .panel__logo--logo {
        max-height: 45px;
        max-width: 175px;
    }
    .survey__logo--start .panel__logo--background::before {
        left: -20px;
        right: auto;
    }
    .survey__heading--start {
        padding-top: 35px;
    }
    .panel__content--left {
        width: 100%;
		padding-right: 0;
    }
    .panel__benefit--icon {
        margin-top: 0px;
        padding-top: 6px;
    }
    .panel__benefit--text p {
        line-height: 28px;
    }
    .panel__content--right {
        display: none;
    }

    .panel__action--large {
        padding: 15px 20px;
    }
    .survey__panel--heading h2 {
        font-size: var(--font-size-24);
    }
    .survey__step--question {
        padding-right: 35px;
    }
    .survey__step--question p {
        font-size: var(--font-size-smallest);
    }
    .step__question--info {
        right: 0px;
    }
    .step__question--tooltip {
        width: calc(100vw - 28px);
        left: unset;
        right: -16px;
    }
    .survey__step--input input {
        font-size: var(--font-size-smallest);
    }
    .survey__step--select select {
        font-size: var(--font-size-smallest);
    }
    .panel__action {
        min-width: 125px;
    }

    .survey__step--checkbox .survey__step--choice {
        width: 100%;
        margin-right: 0px;
    }

    .survey__info--copy {
        flex-wrap: wrap;
    }
    .survey__info--content p {
        margin-bottom: 15px;
        font-size: 13px;
    }
    .survey__info--copy p {
        margin-bottom: 15px !important;
    }

    .survey__info--content {
        padding: 20px 15px;
    }
    .survey__info--copy .panel__action--wrapper {
        flex: 0 1 auto;
        margin-left: 0px;
        width: 100%;
        text-align: center;
        margin-bottom: 0px;
    }
    .survey__heading--results {
        margin-bottom: 20px;
    }

    .survey__panel--intro {
        margin-bottom: 25px;
    }

    .survey__results--content {
        margin-left: -30px;
        margin-right: -30px;
    }
    .results__item--header {
        flex-wrap: wrap;
        padding: 15px 30px 15px 30px;
    }
    .result__item--name {
        width: 100%;
        order: 2;
    }

    .survey__results--item.active .result__item--name {
        margin-bottom: 0px;
    }
    .result__item--name h2 {
        font-size: var(--font-size-body);
        line-height: 1.5;
		padding-right: 25px;
    }
    .result__item--brief {
        width: 100%;
        order: 2;
    }
    .result__item--brief p {
        font-size: var(--font-size-smallest);
    }
    .results__item--header::before {
        display: none;
    }
    .results__item--header::after {
        top: auto;
        bottom: 26px;
        left: auto;
        right: 32px;
        transform: rotate(45deg);
    }
    .survey__results--item.active .results__item--header::after {
        transform: rotate(45deg) scale(-1);
        top: auto;
        bottom: 16px;
    }
    .survey__results--item.active .result__item--logo {
        width: 100%;
        padding-top: 5px;
        padding-bottom: 10px;
        order: 1;
        text-align: center;
		max-width: 100%;
	margin-top: 0;
	margin-bottom: 0;
    }
    .result__item--logo img {
        margin-top: 0px;
        margin-bottom: 0px;
		max-width: min(350px, 100%);
    }
    .results__expand--content {
        padding-left: 0px;
        padding-right: 0px;
        font-size: var(--font-size-smallest);
        line-height: 1.5;
        margin-left: 30px;
        margin-right: 30px;
    }
    .results__expand--content h3 {
        font-size: var(--font-size-body);
    }
    .result__expand--recommended {
        margin-left: -10px;
        margin-right: -10px;
    }
    .result__item--actions {
        flex-wrap: wrap;
    }
    .panel__action--wrapper {
        width: 100%;
        margin-bottom: 15px;
    }
    .survey__action--step .panel__action--wrapper {
        width: unset;
        margin-bottom: 0px;
    }
    .result__item--actions .panel__action--wrapper:nth-last-child(2) {
        width: calc(50% - 25px);
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .result__item--actions .panel__action--wrapper:last-child {
        width: calc(50% - 10px);
        margin-left: auto;
        margin-bottom: 0px;
    }
    .result__item--actions {
        padding-left: 25px;
        padding-right: 25px;
        font-size: var(--font-size-smallest);
    }
    .result__item--next,
    .result__item--prev {
        min-width: 100px;
        width: 100%;
    }
    .result__item--more {
        width: 100%;
    }
    .result__item--amount {
        flex-wrap: wrap;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
    .result__item--value {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 4px;
    }
    .result__item--value:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .result__item--value:last-child {
        margin-bottom: 0px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .result__item--value:only-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .panel__progress--step {
        height: 24px;
        width: 24px;
        line-height: 24px;
        margin-right: 20px;
    }
    .panel__progress--step span {
        width: 20px;
        line-height: 20px;
    }
    .panel__progress--steps::after {
        top: 11px;
    }
    .panel__progress--step::after {
        right: -24px;
        top: 9px;
    }
    .panel__progress--complete::after {
        width: 24px;
    }
    .panel__progress--complete::before {
        height: 8px;
        width: 16px;
        top: 5px;
        left: 2px;
    }
    .survey__heading--step {
        padding-top: 25px;
    }
    .survey__panel--form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .survey__logo--step {
        order: 2;
        margin-bottom: 0px;
        display: inline-block;
        margin-left: auto;
        margin-right: -30px;
        padding-left: 10px;
        padding-right: 25px;
        max-width: calc(50% + 30px);
    }

    .survey__logo--step .panel__logo--logo {
        max-height: 60px;
        max-width: 150px;
    }
    .survey__panel--banner {
        order: 3;
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: 0px;
        width: calc(100% + 60px);
    }
    .panel__banner--wrapper {
        margin-bottom: 0px;
    }
    .panel__banner--wrapper img {
        margin-bottom: 0px;
    }
    .survey__panel--progress {
        order: 1;
        max-width: calc(50% + 30px);
        margin-left: -30px;
        margin-right: auto;
        padding-left: 25px;
        display: flex;
        align-items: center;
        margin-bottom: 0px;
    }
    .survey__panel--heading {
        order: 4;
        width: 100%;
    }
    .survey__panel--intro {
        order: 6;
        width: 100%;
    }
    .survey__panel--content {
        order: 6;
        width: 100%;
    }
    .survey__panel--action {
        order: 7;
        width: 100%;
    }
    .survey__panel--footer {
        order: 8;
        width: 100%;
    }
    .survey__panel--results {
        display: flex;
        flex-direction: column;
    }
    .survey__heading--results {
        padding-top: 25px;
    }
    .survey__panel--footer {
        text-align: left;
    }

    .survey__panel--results .survey__logo--step {
        margin-right: -30px;
        margin-left: auto;
        padding-right: 25px;
        padding-left: 10px;
    }
    .survey__panel--results .panel__logo--background::before {
        left: -20px;
        right: auto;
    }

    .panel__banner--start .panel__banner--wrapper img {
        margin-bottom: 0px;
      }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    .survey__page--panel {
        max-width: 480px;
    }
}

button:focus {
    outline: initial;
}

.panel__action--wrapper {
    position: relative;
}
.panel__action--share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.panel__action--share svg {
    height: 20px;
    width: 20px;
    fill: var(--btn-tertiary-tx-color, var(--d-color-white));
}
.panel__action--menu {
    position: absolute;
    left: 0;
    right: 0;
    filter: drop-shadow( 0 4px 4px 4px #000000);
    background-color: var(--d-color-white);
    border-radius: 4px;
    min-width: 150px;
    font-size: var(--font-size-small);
    max-height: 0;
    overflow: hidden;
    transition: max-height 150ms ease-in-out;
    display: flex;
    flex-direction: column;
}
.panel__action--menu button {
    border: none;
    margin: 8px 8px 0 8px;
    cursor: pointer;
    background-color: var(--d-color-light);
    border-radius: 2px;
    padding: 4px 8px;
    font-size: var(--font-size-small);
}
.panel__action--menu button:hover {
    background-color: var(--btn-tertiary-bg-color, var(--color-tertiary));
    color: var(--btn-tertiary-tx-color, var(--d-color-white));
}
.panel__action--menu button:last-child {
    margin-bottom: 8px;
}
.panel__action--wrapper:hover .panel__action--menu {
    max-height: 100vh;
}