@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: var(--primary-font); }

h2, .h2 {
    line-height: 1.5;
    font-size: 1.5rem; }
@media screen and (max-width: 320px) {
    h2, .h2 {
        font-size: 0.75rem; } }

h3, .h3 {
    font-size: 1rem; }
@media screen and (max-width: 320px) {
    h3, .h3 {
        font-size: 0.25rem; } }

h4, .h4 {
    font-size: 1rem; }
@media screen and (max-width: 320px) {
    h4, .h4 {
        font-size: 0.25rem; } }

.text-left {
    text-align: left; }

.text-center {
    text-align: center; }

.text-right {
    text-align: right; }

.text-justify {
    text-align: justify; }

.text-transparentize {
    opacity: .5; }

p {
    margin: 0 0 1rem; }
p.lead {
    font-size: 1.5rem;
    font-weight: 300; }

:root {
    --border-width-base: 1px;
    --layout-base: 8px;
    --transition-base: .2s;
    --primary-font: "Roboto", sans-serif;
    --general-font: "Roboto", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: calc(var(--layout-base)*2); }

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

body {
    color: #000;
    font-family: var(--general-font);
    font-size: .875rem;
    background-color: #287419; }

main {
    min-height: calc(100vh - 7.875rem); }

table, td {
    border: 1px solid; }

@media (max-width: 425px) {
    .container.no-padding {
        padding-right: 0px;
        padding-left: 0px; }
    .container.no-padding > .row {
        margin-right: 0;
        margin-left: 0; }
    .container.no-padding > .row > .col, .container.no-padding > .row > [class*=col-] {
        padding-right: 0;
        padding-left: 0; } }

@media (max-width: 320px) {
    :root {
        font-size: calc(var(--layout-base)*1.75); } }

[data-anime] {
    opacity: 0;
    -webkit-transition: 800ms ease-in-out;
    transition: 800ms ease-in-out; }

[data-anime="fade"] {
    opacity: 0; }

[data-anime].animate {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }

.brands {
    padding-block: 5rem; }
.brands .g-5 {
    --bs-gutter-y: 5rem;
    --bs-gutter-x: 5rem; }
.brands__title {
    text-align: center; }
.brands__item {
    text-align: center;
    padding-inline: 3rem; }
.brands__item img {
    height: 5rem;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%; }
.brands__itemTitle {
    font-size: 24px;
    font-weight: 500;
    margin-top: 1rem; }
.brands__itemDescription {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500; }

@media (max-width: 979px) {
    .brands {
        padding-block: 2.5rem; }
    .brands__item {
        padding-inline: 1rem; }
    .brands__itemTitle {
        margin-top: 0;
        font-size: 16px; }
    .brands__itemDescription {
        font-size: 12px; } }

.button {
    background: #576675;
    border: 0 solid transparent;
    color: white;
    border-radius: .5rem;
    cursor: pointer;
    display: inline-block;
    font-family: var(--general-font);
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1rem;
    padding: .5rem 1rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
.button:focus {
    outline: 0 none; }
.button:hover {
    background: #627384;
    text-decoration: none;
    color: white; }
.button:disabled {
    cursor: default;
    opacity: .5; }
.button:disabled:hover {
    background: #576675; }
.button.link {
    color: #576675;
    background: none;
    background-color: transparent; }
.button.link:hover {
    color: #414d58;
    background-color: rgba(87, 102, 117, 0.1); }
.button-group .button {
    margin-bottom: .5rem; }
.button-group .button:last-child {
    margin-bottom: 0; }
.button.block {
    display: block;
    width: 100%; }
.button.primary {
    background: #2a7bfe;
    border: 0 solid transparent;
    color: white; }
.button.primary:focus {
    outline: 0 none; }
.button.primary:hover {
    background: #438bfe;
    text-decoration: none;
    color: white; }
.button.primary:disabled {
    cursor: default;
    opacity: .5; }
.button.primary:disabled:hover {
    background: #2a7bfe; }
.button.primary.link {
    color: #2a7bfe;
    background: none;
    background-color: transparent; }
.button.primary.link:hover {
    color: #015ef4;
    background-color: rgba(42, 123, 254, 0.1); }
.button.primary:hover {
    text-decoration: none; }
.button.secondary {
    background: #576675;
    border: 0 solid transparent;
    color: white; }
.button.secondary:focus {
    outline: 0 none; }
.button.secondary:hover {
    background: #627384;
    text-decoration: none;
    color: white; }
.button.secondary:disabled {
    cursor: default;
    opacity: .5; }
.button.secondary:disabled:hover {
    background: #576675; }
.button.secondary.link {
    color: #576675;
    background: none;
    background-color: transparent; }
.button.secondary.link:hover {
    color: #414d58;
    background-color: rgba(87, 102, 117, 0.1); }
.button.big {
    padding: .75rem 1rem;
    font-size: 1rem; }
.button.bigger {
    padding: 1rem 1.25rem;
    font-size: 1.25rem; }
.button.biggest {
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem; }

.tcpa-answer, .tcpa-answer-in, .bt-continue, #optout-form .btn.btn-primary, .form-button {
    background: #2a7bfe;
    border-radius: .5rem !important;
    border: none;
    color: white !important;
    display: block;
    font-family: var(--primary-font);
    font-size: 1rem !important;
    font-weight: 600;
    line-height: 1rem;
    padding: 1rem 1.75rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    min-width: auto;
    height: auto !important;
    margin-bottom: 0px !important;
    margin-right: 0px;
    width: 100%;
    cursor: pointer; }
.tcpa-answer:hover, .tcpa-answer-in:hover, .bt-continue:hover, #optout-form .btn.btn-primary:hover, .form-button:hover {
    background: #015ef4; }

.bt-continue {
    margin-left: 10px;
    width: auto; }

@media (max-width: 979px) {
    .button.block-sm {
        display: block;
        width: 100%; } }

.cards {
    background-color: transparent;
    padding-block: .5rem 2rem; }
.cards__title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #FDFFFF; }
.cards__image {
    width: 100%;
    height: 248px;
    border-radius: .25rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.cards__button {
    display: block;
    text-decoration: none;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: -webkit-gradient(linear, left top, left bottom, from(#F8BE03), to(#FAD65E));
    background: linear-gradient(180deg, #F8BE03 0%, #FAD65E 100%);
    padding: .75rem 0;
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
    border-radius: .25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #111210;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
.cards__button:hover {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    color: #080807; }

@media (max-width: 979px) {
    .cards {
        padding-block: 0.75rem; }
    .cards__title {
        margin-bottom: 0rem; }
    .cards__content {
        margin-top: 1.75rem; }
    .cards__button {
        display: block;
        text-decoration: none;
        -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background: -webkit-gradient(linear, left top, left bottom, from(#F8BE03), to(#FAD65E));
        background: linear-gradient(180deg, #F8BE03 0%, #FAD65E 100%);
        padding: .75rem 0;
        text-align: center;
        margin-top: 1.5rem;
        width: 100%;
        border-radius: .25rem;
        font-size: 1rem;
        font-weight: 700;
        color: #111210;
        -webkit-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out; }
    .cards__button:hover {
        -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01);
        color: #080807; } }

.check__label {
    color: #576675;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1rem;
    width: 100%;
    padding-left: 2.5rem;
    margin: 0 0 1.5rem;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

.check__input {
    left: 0; }

.clickOffer {
    background-color: white; }
.clickOffer__loadingTitle {
    font-size: 1.5rem;
    text-align: center;
    -webkit-transition: 800ms ease-in-out;
    transition: 800ms ease-in-out;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
    opacity: 0;
    margin: 0; }
.clickOffer__loadingTitle--show {
    opacity: 1;
    margin: 2rem 0; }
.clickOffer__placeholder {
    width: 100%;
    height: 5rem;
    -webkit-animation: placeholderLoading 2s linear infinite;
    animation: placeholderLoading 2s linear infinite;
    background: linear-gradient(-60deg, #f7f5f5, #f7f5f5, rgba(255, 255, 255, 0), #f7f5f5, #f7f5f5);
    background-size: 500%;
    margin-bottom: 2rem;
    border-radius: .25rem; }
.clickOffer__header {
    background: radial-gradient(circle, #2a7bfe, #2a7bfe 125%);
    border-radius: .25rem;
    padding: 4rem 0; }
.clickOffer__header h1 {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 0rem;
    line-height: 1.25;
    margin-bottom: .5rem; }
.clickOffer__header h2 {
    font-size: 1.25rem; }
.clickOffer__container {
    font-size: 1rem;
    margin-top: 2rem; }
.clickOffer__item {
    padding: 2rem 0;
    border: 1px solid #e3e6e8;
    border-top: none;
    position: relative; }
.clickOffer__item:first-child {
    border-top: 1px solid #e3e6e8;
    border-radius: .25rem .25rem 0 0; }
.clickOffer__item:first-child:before {
    content: 'Top Choice';
    position: absolute;
    top: -1px;
    left: -1px;
    font-size: .75rem;
    padding: 0.325rem .5rem;
    line-height: 1;
    background: #2a7bfe;
    color: white;
    border-radius: 0.25rem 0; }
.clickOffer__item:last-child {
    border-radius: 0 0 .25rem .25rem; }
.clickOffer__item ul {
    padding: 0;
    margin-bottom: 0; }
.clickOffer__image {
    max-width: 75%;
    height: auto;
    max-height: 5rem; }
.clickOffer__bodyContent--mobile {
    max-height: 0;
    -webkit-transition: 200ms;
    transition: 200ms;
    overflow: hidden; }
.clickOffer__link {
    display: block;
    color: #2a7bfe;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 1rem; }
.clickOffer__link:hover {
    color: #2a7bfe; }
.clickOffer__showMore {
    padding: 1rem;
    text-align: center;
    background: #f7f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1rem;
    border-radius: 0.125rem; }

@media (max-width: 979px) {
    .clickOffer {
        padding: 0;
        border: none;
        margin-top: 0; }
    .clickOffer__header {
        padding: 1.5rem .5rem;
        border: none; }
    .clickOffer__header h1 {
        font-size: 1.5rem; }
    .clickOffer__header h2 {
        font-size: 1rem; }
    .clickOffer__item {
        padding: 1rem; }
    .clickOffer__item ul {
        list-style: none; }
    .clickOffer__item ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-bottom: 0.5rem; }
    .clickOffer__item ul li:last-child {
        padding-bottom: 0; }
    .clickOffer__item ul li::before {
        content: '•';
        margin-right: 0.5rem;
        -ms-flex-item-align: baseline;
        align-self: baseline; }
    .clickOffer__item:first-child:before {
        font-size: .75rem;
        padding: 0.325rem .5rem; } }

@-webkit-keyframes placeholderLoading {
    0% {
        background-position: 125% 0; }
    100% {
        background-position: 0% 0; } }

@keyframes placeholderLoading {
    0% {
        background-position: 125% 0; }
    100% {
        background-position: 0% 0; } }

.cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.cta__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }
.cta__button {
    background-color: #ccc;
    border-radius: .5rem;
    border: 0 solid transparent;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: var(--general-font);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1rem;
    padding: 1rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
.cta__button:hover {
    background: #999;
    text-decoration: none;
    color: white; }

@media (max-width: 979px) {
    .cta {
        padding-block: 2.5rem; }
    .cta__title {
        font-size: 32px; }
    .cta__text {
        font-size: 16px; } }

.cf_check__label, .cf_bool__label, .cf_radio__label {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.cf_check__label span, .cf_bool__label span, .cf_radio__label span {
    padding-left: .5rem; }

.cf_check__input, .cf_bool__input, .cf_radio__input {
    position: relative !important; }

.dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: calc(100vh - 9.5rem);
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden; }
.dialog span {
    line-height: 1;
    position: absolute;
    font-size: 20rem;
    color: #f4f5f6;
    font-family: var(--primary-font);
    z-index: -1; }
.dialog h1 {
    margin-bottom: 1rem; }

.faq {
    background-color: transparent;
    padding-block: 1rem 2rem; }
.faq__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
.faq__title a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    line-height: normal;
    color: #FDFFFF;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
.faq__title a:hover {
    color: #F8BE03; }
.faq__card {
    background-color: #fff;
    margin-top: 2rem;
    min-height: 148px;
    border-radius: .5rem;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.faq__cardImage {
    width: 100%;
    height: 248px;
    border-radius: .5rem .5rem 0 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center; }
.faq__cardTexts {
    padding: 1.5rem; }
.faq__cardTitle {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    color: #252525;
    line-height: normal; }
.faq__cardText {
    font-size: .75rem;
    font-weight: 500;
    margin-top: 1rem;
    color: #292929;
    line-height: normal; }

.flow {
    padding-block: 3rem;
    min-height: calc(100vh - 8.75rem + 2px); }
.flow__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem; }

.register__form input[type="radio"] {
    display: inline-block; }

.register__form input[type="checkbox"] {
    width: 24px !important; }

.register__form .cf_bool {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.register__form .html-custom {
    font-size: 16px;
    padding: 0;
    margin: 0; }

.register__form .custom-label label {
    font-size: 18px;
    margin: 0 0 10px;
    padding: 0;
    font-weight: bold; }

.register__form .label-left {
    text-align: left !important; }

.register__form .label-center {
    text-align: center !important; }

.register__form .radio-box > .path-dynamic-field,
.register__form .radio-box > .path-form-field-with-feedback,
.register__form .radio-box > .path-form-field-with-feedback-control,
.register__form .radio-box > .path-cf-radio {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%; }
.register__form .radio-box > .path-dynamic-field label,
.register__form .radio-box > .path-form-field-with-feedback label,
.register__form .radio-box > .path-form-field-with-feedback-control label,
.register__form .radio-box > .path-cf-radio label {
    width: 100%;
    font-size: 1.25rem;
    color: #100434; }
@media (max-width: 979px) {
    .register__form .radio-box > .path-dynamic-field label,
    .register__form .radio-box > .path-form-field-with-feedback label,
    .register__form .radio-box > .path-form-field-with-feedback-control label,
    .register__form .radio-box > .path-cf-radio label {
        margin-top: 0; } }
.register__form .radio-box > .path-dynamic-field .cf_bool,
.register__form .radio-box > .path-form-field-with-feedback .cf_bool,
.register__form .radio-box > .path-form-field-with-feedback-control .cf_bool,
.register__form .radio-box > .path-cf-radio .cf_bool {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
.register__form .radio-box > .path-dynamic-field input[type="checkbox"],
.register__form .radio-box > .path-form-field-with-feedback input[type="checkbox"],
.register__form .radio-box > .path-form-field-with-feedback-control input[type="checkbox"],
.register__form .radio-box > .path-cf-radio input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0.1875rem;
    content: "";
    cursor: pointer;
    position: absolute;
    height: 1.25rem !important;
    width: 1.25rem !important;
    border: 2px solid #3d3d3d; }
.register__form .radio-box > .path-dynamic-field input[type="checkbox"]:focus,
.register__form .radio-box > .path-form-field-with-feedback input[type="checkbox"]:focus,
.register__form .radio-box > .path-form-field-with-feedback-control input[type="checkbox"]:focus,
.register__form .radio-box > .path-cf-radio input[type="checkbox"]:focus {
    outline: none; }
.register__form .radio-box > .path-dynamic-field input[type="checkbox"]:checked,
.register__form .radio-box > .path-form-field-with-feedback input[type="checkbox"]:checked,
.register__form .radio-box > .path-form-field-with-feedback-control input[type="checkbox"]:checked,
.register__form .radio-box > .path-cf-radio input[type="checkbox"]:checked {
    border: none;
    background: url(../img/check.svg), #00a09e;
    background-size: cover; }
.register__form .radio-box > .path-dynamic-field input[type="radio"],
.register__form .radio-box > .path-form-field-with-feedback input[type="radio"],
.register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"],
.register__form .radio-box > .path-cf-radio input[type="radio"] {
    display: none; }
.register__form .radio-box > .path-dynamic-field input[type="radio"]:hover + span,
.register__form .radio-box > .path-form-field-with-feedback input[type="radio"]:hover + span,
.register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"]:hover + span,
.register__form .radio-box > .path-cf-radio input[type="radio"]:hover + span {
    background-color: #2a7bfe !important;
    color: white !important; }
.register__form .radio-box > .path-dynamic-field input[type="radio"] + span,
.register__form .radio-box > .path-form-field-with-feedback input[type="radio"] + span,
.register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"] + span,
.register__form .radio-box > .path-cf-radio input[type="radio"] + span {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #f3f0f0;
    -webkit-font-smoothing: antialiased;
    border-radius: 2px;
    border: 1px solid #fff;
    color: #2a7bfe !important;
    cursor: pointer;
    display: block;
    font-weight: 700;
    margin: 0;
    padding: 0.5rem;
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 15px; }
.register__form .radio-box > .path-dynamic-field input[type="radio"]:checked + span,
.register__form .radio-box > .path-form-field-with-feedback input[type="radio"]:checked + span,
.register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"]:checked + span,
.register__form .radio-box > .path-cf-radio input[type="radio"]:checked + span {
    background: #2a7bfe !important;
    color: white !important; }
.register__form .radio-box > .path-dynamic-field input[type="radio"]:focus,
.register__form .radio-box > .path-form-field-with-feedback input[type="radio"]:focus,
.register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"]:focus,
.register__form .radio-box > .path-cf-radio input[type="radio"]:focus {
    outline: none; }

.register__form .radio-box.text-left .cf_bool label span {
    text-align: left !important; }

.register__form .radio-box.text-left input[type="radio"] + span {
    text-align: left !important; }

.register__form .radio-box.text-center .cf_bool label span {
    text-align: left !important; }

.register__form .radio-box.text-center input[type="radio"] + span {
    text-align: center !important; }

.register__form .radio-box.x-1 .cf_radio,
.register__form .radio-box.x-1 .cf_bool,
.register__form .radio-box.x-1 .cf_bool__label,
.register__form .radio-box.x-1 .path-form-field-with-feedback {
    width: 100% !important; }

.register__form .radio-box.x-1 .cf_bool,
.register__form .radio-box.x-1 .path-form-field-with-feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.register__form .radio-box.x-1 .cf_bool label,
.register__form .radio-box.x-1 .path-form-field-with-feedback label {
    width: 100% !important; }

.register__form .radio-box.x-2 .cf_radio,
.register__form .radio-box.x-2 .cf_bool__label {
    width: 49% !important; }

.register__form .radio-box.x-2 .cf_bool,
.register__form .radio-box.x-2 .path-dynamic-field,
.register__form .radio-box.x-2 .path-form-field-with-feedback-control,
.register__form .radio-box.x-2 .path-cf-radio,
.register__form .radio-box.x-2 .path-form-field-with-feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.register__form .radio-box.x-2 .cf_bool label[for="gender_m_radio"], .register__form .radio-box.x-2 .cf_bool label[for="gender_f_radio"],
.register__form .radio-box.x-2 .path-dynamic-field label[for="gender_m_radio"],
.register__form .radio-box.x-2 .path-dynamic-field label[for="gender_f_radio"],
.register__form .radio-box.x-2 .path-form-field-with-feedback-control label[for="gender_m_radio"],
.register__form .radio-box.x-2 .path-form-field-with-feedback-control label[for="gender_f_radio"],
.register__form .radio-box.x-2 .path-cf-radio label[for="gender_m_radio"],
.register__form .radio-box.x-2 .path-cf-radio label[for="gender_f_radio"],
.register__form .radio-box.x-2 .path-form-field-with-feedback label[for="gender_m_radio"],
.register__form .radio-box.x-2 .path-form-field-with-feedback label[for="gender_f_radio"] {
    width: 49% !important; }

.register__form .radio-box.x-3 .cf_radio,
.register__form .radio-box.x-3 .cf_bool__label {
    width: 32% !important; }

.register__form .radio-box.x-3 .cf_bool,
.register__form .radio-box.x-3 .path-dynamic-field,
.register__form .radio-box.x-3 .path-form-field-with-feedback-control,
.register__form .radio-box.x-3 .path-cf-radio,
.register__form .radio-box.x-3 .path-form-field-with-feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

.register__form .radio-box.x-4 .cf_radio,
.register__form .radio-box.x-4 .cf_bool__label {
    width: 24% !important; }

.register__form .radio-box.x-4 .cf_bool,
.register__form .radio-box.x-4 .path-dynamic-field,
.register__form .radio-box.x-4 .path-form-field-with-feedback-control,
.register__form .radio-box.x-4 .path-cf-radio,
.register__form .radio-box.x-4 .path-form-field-with-feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

.register__form .radio-box .cf_bool label {
    width: 50%;
    text-align: center; }

.register__form .radio-box input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0.1875rem;
    content: "";
    cursor: pointer;
    position: absolute;
    height: 1.25rem !important;
    width: 1.25rem !important;
    border: 2px solid #3d3d3d; }
.register__form .radio-box input[type="radio"]:focus {
    outline: none; }
.register__form .radio-box input[type="radio"]:checked {
    border: none;
    background: url(../img/check.svg), #00a09e;
    background-size: cover; }

.header {
    background-color: transparent;
    padding-block: 2rem; }
.header__cardPrimary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.header__cardOne {
    padding: .75rem 1.5rem;
    margin-right: 1rem;
    background-color: white;
    border-radius: 2rem;
    font-size: .75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    color: black;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
.header__cardOne:hover {
    background-color: #D4E3D0;
    color: #111210; }
.header__cardTwo {
    padding: .75rem 1.5rem;
    background-color: #D4E3D0;
    border-radius: 2rem;
    font-size: .75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    color: #111210;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
.header__cardTwo:hover {
    background-color: #fff;
    color: black; }
.header__image {
    width: 100%;
    height: auto; }
.header__cardSecondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
.header__cardThree {
    padding: .75rem 1.5rem;
    background-color: #D4E3D0;
    border-radius: 2rem;
    font-size: .75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    color: #111210;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
.header__cardThree:hover {
    background-color: #fff;
    color: black; }

@media (max-width: 979px) {
    .header {
        padding-block: 1rem; }
    .header__disabledMobile {
        display: none; }
    .header__image {
        width: 60%;
        height: auto; } }

.hero__title {
    font-size: 48px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -1px; }
.hero__title span {
    color: #00a09e; }

.hero__subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 500; }

.hero__contentPrimary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

.hero__callCenter {
    margin-top: 1rem;
    color: #666;
    font-weight: bold;
    font-size: 14px; }

@media (max-width: 979px) {
    .hero {
        padding-block: 2.5rem; }
    .hero__title {
        font-size: 28px; }
    .hero__subtitle {
        font-size: 14px; } }


textarea.input {
    resize: none; }

.line {
    background-color: transparent;
    padding-block: 1rem; }
.line__line {
    background-color: #126400;
    height: 3px;
    width: 100%; }

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
    display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    max-height: 400px;
    overflow-y: scroll; }

.remodal-is-initialized {
    /* Disable Anti-FOUC */
    display: inline-block; }

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
    background: rgba(43, 46, 56, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
    padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: auto 0;
    margin-bottom: 10px;
    padding: 35px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
    vertical-align: middle; }

/* Close button */
.remodal-close {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: block !important;
    overflow: visible !important;
    width: 35px !important;
    height: 35px !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    -webkit-transition: color 0.2s !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
    color: #95979c !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    -webkit-box-shadow: 0px 0px 0px #fff !important;
    box-shadow: 0px 0px 0px #fff !important; }

.remodal-close:hover,
.remodal-close:focus {
    color: #2b2e38;
    background-color: #fff !important; }

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0; }

.remodal-confirm {
    color: #fff;
    background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
    background: #66bb6a; }

.remodal-cancel {
    color: #fff;
    background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
    background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0; }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0); } }

@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0; }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0); } }

@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1; }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0); } }

@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1; }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0); } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0; }
    to {
        opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0; }
    to {
        opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1; }
    to {
        opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1; }
    to {
        opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
    .remodal {
        max-width: 700px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
    background: #2b2e38; }

.lt-ie9 .remodal {
    width: 700px; }

.multiple {
    background: #8f99a3 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 1rem 1rem 3rem !important;
    height: auto !important;
    width: 100%;
    border-radius: .25rem !important;
    position: relative;
    text-align: left;
    -webkit-box-shadow: none;
    box-shadow: none; }
.multiple:focus {
    outline: none; }
.multiple.checked {
    background: #576675 !important; }
.multiple input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #e3e6e8;
    border-radius: .125rem;
    content: '';
    cursor: pointer;
    position: absolute;
    left: .75rem;
    height: 1.5rem !important;
    width: 1.5rem !important;
    border: var(--border-width-base) solid #8f99a3; }
.multiple input[type="checkbox"]:focus {
    outline: none; }
.multiple input[type="checkbox"]:checked {
    border: none;
    background: url(../img/check.svg), #41c96f;
    background-size: cover; }

.tcpa-item-answer {
    margin: 0; }

.tcpa-answers button {
    margin-bottom: 0 !important; }

.tcpa-question {
    margin-bottom: 1rem; }

.tcpa-continue-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 210px;
    margin: auto !important;
    padding: 0 !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.tcpa-continue-container button {
    margin-bottom: 0; }

.formRegister {
    padding-block: 2rem; }
.formRegister__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F9FBF9;
    margin-bottom: 1rem; }
.formRegister__value {
    position: relative;
    width: 100%; }
.formRegister__value h3 {
    font-family: "Bebas Neue", sans-serif !important;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 12rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#CED0CF), color-stop(29.81%, #F0F0F0), color-stop(70.19%, #B5B7B6), to(#E9EBEA));
    background: linear-gradient(180deg, #CED0CF 0%, #F0F0F0 29.81%, #B5B7B6 70.19%, #E9EBEA 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: block;
    width: 100%;
    -webkit-animation: pulse 1.5s ease-in-out infinite;
    animation: pulse 1.5s ease-in-out infinite; }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); } }

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); } }
.formRegister__valueShadow {
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#CED0CF), color-stop(29.81%, #F0F0F0), color-stop(70.19%, #B5B7B6), to(#E9EBEA));
    background: linear-gradient(180deg, #CED0CF 0%, #F0F0F0 29.81%, #B5B7B6 70.19%, #E9EBEA 100%);
    -webkit-background-clip: text;
    color: transparent;
    top: 0;
    left: 0;
    z-index: -1;
    text-shadow: 1px 1px 0 #262626, 2px 2px 0 #262626, 3px 3px 0 #262626, 3px 3px 0 #262626, -1px -1px 1px rgba(255, 255, 255, 0.8); }
.formRegister__image {
    width: 100%;
    height: auto; }
.formRegister .register__form {
    background-color: transparent;
    padding: 2rem;
    border-radius: 8px; }
/*.formRegister .form-wrapper-flex select:not([type="checkbox"]):not([type="radio"]):focus {*/
/*    border-color: #f8be03; }*/
/*.formRegister .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus {*/
/*    border-color: #f8be03; }*/

@media (max-width: 979px) {
    .formRegister {
        padding-block: 0rem; }
    .formRegister__title {
        font-size: 2rem;
        margin-bottom: 0rem;
        text-align: center; }
    .formRegister__value h3 {
        margin-block: 1rem;
        font-size: 6.5rem; } }

#optout-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
#optout-form .form-check .invalid-feedback {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
#optout-form .form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #e3e6e8;
    border-radius: .125rem;
    content: '';
    cursor: pointer;
    position: absolute;
    height: 1.5rem !important;
    width: 1.5rem !important;
    border: var(--border-width-base) solid #8f99a3;
    position: relative;
    padding: 0;
    margin: 0; }
#optout-form .form-check-input:focus {
    outline: none; }
#optout-form .form-check-input:checked {
    border: none;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAQCAYAAAD52jQlAAAACXBIWXMAAAsSAAALEgHS3X78AAAAkUlEQVQ4ja3U0Q2AMAgFwKcTOEpH6ihuYkdxBEdwBDfAYDSppLRUJOGnJJcSCAMR4YcIAKab2cGoMyO9Yx6dn4wAFvnoQYsggO1r67LlJ+I1o7/BHF2zYvKAGqrBJrCGStgM5mggokOBu0A5KA3uAkvTt8BVUFupGtwEa3tagk1ga/lz2Axytk4fnzTOZL4IAE7JxlWhfrYiNQAAAABJRU5ErkJggg=="), var(--primary-color);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center; }
#optout-form .form-check-label {
    padding: 0 0 0 .5rem;
    margin: 0 0 1px 0; }
#optout-form .form-check-label + .invalid-feedback {
    margin: 0 0 -1px .5rem; }

#optout-form .form-group {
    margin-bottom: 1rem; }

.form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.form-check-input:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

@media (max-width: 979px) {
    #optout-form label {
        font-size: .75rem; } }

.post {
    padding: 2.5rem 0;
    min-height: calc(100vh - 13.25rem - 1px); }
.post__container {
    padding: 2.5rem;
    border: 1px solid #dddfe2;
    border-radius: 1rem;
    background-color: white; }

@media (max-width: 979px) {
    .post__container {
        padding: 1rem; } }

.progress-inner {
    display: block;
    height: 100%;
    width: "0%";
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-10 {
    display: block;
    height: 100%;
    width: 10%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-20 {
    display: block;
    height: 100%;
    width: 20%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-30 {
    display: block;
    height: 100%;
    width: 30%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-40 {
    display: block;
    height: 100%;
    width: 40%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-50 {
    display: block;
    height: 100%;
    width: 50%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-60 {
    display: block;
    height: 100%;
    width: 60%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-70 {
    display: block;
    height: 100%;
    width: 70%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-80 {
    display: block;
    height: 100%;
    width: 80%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-90 {
    display: block;
    height: 100%;
    width: 90%;
    background: #2a7bfe;
    border-radius: 1.25rem; }
.progress-inner-100 {
    display: block;
    height: 100%;
    width: 100%;
    background: #2a7bfe;
    border-radius: 1.25rem; }

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    background: none; }
.progress-bar .progress {
    width: 100%;
    height: 1.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #e3e6e8; }
.progress-bar .progress-percentage {
    color: white;
    line-height: 1.25rem;
    text-align: right;
    margin-right: .5rem;
    font-size: 11px; }

@media (max-width: 768px) {
    .progress-bar .progress-percentage {
        margin-left: 1rem; } }

.ql-editor {
    padding: 0rem !important;
    white-space: normal !important; }
.ql-editor h2 {
    font-size: 1.5rem; }
.ql-editor p {
    margin-bottom: .5rem !important; }
.ql-editor p:last-child {
    margin-bottom: 0 !important; }

.register {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.register__wrapper {
    padding: 5rem; }
.register__form {
    padding: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.register__form input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    content: "";
    cursor: pointer;
    position: absolute;
    height: 1.25rem !important;
    width: 1.25rem !important;
    border: 2px solid #3d3d3d; }
.register__form input[type="checkbox"]:focus {
    outline: none; }
.register__form input[type="checkbox"]:checked {
    border: none;
    background: url(../img/check.svg), #00a09e;
    background-size: cover; }
.register__form input[type="radio"] {
    display: none; }
.register__form input[type="radio"]:hover + span {
    background-color: #2a7bfe; }
.register__form input[type="radio"] + span {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #a8b4c3;
    -webkit-font-smoothing: antialiased;
    border-radius: 3px;
    border: 0px;
    color: white !important;
    cursor: pointer;
    display: block;
    font-weight: 700;
    margin: 0.5rem auto;
    padding: 0.5rem;
    position: relative;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: 1.25rem; }
.register__form input[type="radio"]:focus {
    outline: none; }
.register__form input[type="radio"]:checked {
    border: 0.375rem solid #2a7bfe;
    background: #ffffff;
    background-size: cover; }
.register__form input[type="radio"]:checked + span {
    background-color: #2a7bfe !important; }

@media (max-width: 979px) {
    .register {
        display: block;
        min-height: auto; }
    .register__form {
        padding: 2rem; } }

.rules {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
.rules__link {
    background: #e3e6e8;
    color: #243342;
    padding: 1rem;
    border-radius: .25rem;
    margin: .25rem;
    -webkit-transition: .2s;
    transition: .2s; }
.rules__link:hover {
    text-decoration: none;
    background: #00a09e;
    color: white; }

.tutorial {
    text-align: center;
    padding: 5rem 0;
    background-color: #f9fafa; }
.tutorial__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.tutorial h2 {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: .5rem; }
.tutorial p {
    font-size: 1rem;
    margin-bottom: 0; }

@media (max-width: 979px) {
    .tutorial {
        padding: 2.5rem 0; }
    .tutorial h1 {
        font-size: 28px; }
    .tutorial h2 {
        font-size: 20px; }
    .tutorial p {
        font-size: 14px; } }

.twoColumnsContent {
    padding-block: 5rem; }
.twoColumnsContent__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25; }
.twoColumnsContent__icon {
    height: 60px;
    width: auto; }
.twoColumnsContent__subtitle {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700; }

@media (max-width: 979px) {
    .twoColumnsContent {
        padding-block: 2.5rem; }
    .twoColumnsContent__title {
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        margin-bottom: 2.5rem; }
    .twoColumnsContent__icon {
        height: 40px; }
    .twoColumnsContent__subtitle {
        font-size: 14px; } }

.verticals {
    padding-block: 7.5rem; }
.verticals__title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 2rem; }
.verticals__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.verticals__items img {
    width: 100%; }

@media (max-width: 979px) {
    .verticals__title {
        font-size: 28px;
        font-weight: bold;
        line-height: 1; }
    .verticals__items {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr); }
    .verticals__items > * {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%; } }

.footer {
    background: transparent;
    padding-block: 4rem 2rem; }
.footer__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.footer__navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: .5rem; }
.footer__navigation ul li a {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    position: relative;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    margin-inline: 0.5rem; }
.footer__navigation ul li a:hover {
    color: #F8BE03; }
.footer__navigation ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 8px;
    background-color: #F8BE03;
    bottom: -7px;
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.25s linear;
    transition: -webkit-transform 0.25s linear;
    transition: transform 0.25s linear;
    transition: transform 0.25s linear, -webkit-transform 0.25s linear; }
.footer__navigation ul li a:hover::after {
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1); }
.footer__copyright {
    font-size: .75rem;
    font-weight: 500;
    color: #fff; }

@media (max-width: 979px) {
    .footer ul {
        display: block;
        padding: 0 0 2rem 0; }
    .footer ul li {
        display: block;
        padding: 0 0; }
    .footer ul li span {
        display: block;
        padding: 1rem 0 0 0;
        border-left: none; }
    .footer__navigation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 1rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
    .footer__navigation ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
    .footer__navigation ul span {
        display: none !important;
        visibility: hidden; }
    .footer__navigation ul li {
        margin-block: .5rem; }
    .footer__navigation ul li a {
        margin-block: 1.5rem;
        font-size: 1rem; } }

.form-wrapper-flex .form-row, .tcpa-details .form-row {
    margin: 0;
    -ms-flex-wrap: unset;
    flex-wrap: unset; }
.form-wrapper-flex .form-row.term, .tcpa-details .form-row.term {
    padding: 0 .25rem; }
.form-wrapper-flex .form-row .x-6, .tcpa-details .form-row .x-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 .25rem; }

.form-wrapper-flex .form-col, .tcpa-details .form-col {
    margin: 0 .25rem; }

.form-wrapper-flex label, .tcpa-details label {
    display: block; }

.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]), .form-wrapper-flex select, .tcpa-details input:not([type="checkbox"]):not([type="radio"]), .tcpa-details select {
    /*background: #f9fafa;*/
    border-radius: .25rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: var(--general-font);
    margin-bottom: 1rem;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base);
    width: 100%;
    font-weight: 300;
    padding: .5rem .75rem;
    font-size: .875rem;
    line-height: 1.375rem; }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder, .form-wrapper-flex select::-webkit-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder, .tcpa-details select::-webkit-input-placeholder {
    color: #576675;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder, .form-wrapper-flex select::-moz-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder, .tcpa-details select::-moz-placeholder {
    color: #576675;
    -moz-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder, .form-wrapper-flex select:-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder, .tcpa-details select:-ms-input-placeholder {
    color: #576675;
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::-ms-input-placeholder, .form-wrapper-flex select::-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::-ms-input-placeholder, .tcpa-details select::-ms-input-placeholder {
    color: #576675;
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::placeholder, .form-wrapper-flex select::placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::placeholder, .tcpa-details select::placeholder {
    color: #576675;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::-webkit-input-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::-webkit-input-placeholder, .form-wrapper-flex select:hover::-webkit-input-placeholder, .form-wrapper-flex select:focus::-webkit-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::-webkit-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::-webkit-input-placeholder, .tcpa-details select:hover::-webkit-input-placeholder, .tcpa-details select:focus::-webkit-input-placeholder {
    color: #8f99a3;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::-moz-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::-moz-placeholder, .form-wrapper-flex select:hover::-moz-placeholder, .form-wrapper-flex select:focus::-moz-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::-moz-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::-moz-placeholder, .tcpa-details select:hover::-moz-placeholder, .tcpa-details select:focus::-moz-placeholder {
    color: #8f99a3;
    -moz-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover:-ms-input-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus:-ms-input-placeholder, .form-wrapper-flex select:hover:-ms-input-placeholder, .form-wrapper-flex select:focus:-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover:-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus:-ms-input-placeholder, .tcpa-details select:hover:-ms-input-placeholder, .tcpa-details select:focus:-ms-input-placeholder {
    color: #8f99a3;
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::-ms-input-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::-ms-input-placeholder, .form-wrapper-flex select:hover::-ms-input-placeholder, .form-wrapper-flex select:focus::-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::-ms-input-placeholder, .tcpa-details select:hover::-ms-input-placeholder, .tcpa-details select:focus::-ms-input-placeholder {
    color: #8f99a3;
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::placeholder, .form-wrapper-flex select:hover::placeholder, .form-wrapper-flex select:focus::placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::placeholder, .tcpa-details select:hover::placeholder, .tcpa-details select:focus::placeholder {
    color: #8f99a3;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover, .form-wrapper-flex select:hover, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover, .tcpa-details select:hover {
    border-color: #576675; }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus, .form-wrapper-flex select:focus, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus, .tcpa-details select:focus {
    /*border-color: #2a7bfe;*/
    outline: 0 none; }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error, .form-wrapper-flex select.error, .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error, .tcpa-details select.error {
    border-color: #ff5b4d; }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error:hover, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error:focus, .form-wrapper-flex select.error:hover, .form-wrapper-flex select.error:focus, .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error:hover, .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error:focus, .tcpa-details select.error:hover, .tcpa-details select.error:focus {
    border-color: #ff2d1a; }
.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error ~ .hidden, .form-wrapper-flex select.error ~ .hidden, .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error ~ .hidden, .tcpa-details select.error ~ .hidden {
    color: #ff4433;
    font-size: .75rem;
    font-weight: bold;
    margin-bottom: .5rem;
    margin-top: -1rem;
    text-transform: uppercase; }

.form-wrapper-flex select, .tcpa-details select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/arrow.svg);
    background-size: 8px;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 1.25rem);
    background-position-y: center; }

.form-wrapper-flex {
    position: relative; }
.form-wrapper-flex .hidden {
    display: none; }
.form-wrapper-flex .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.form-wrapper-flex .form-row .x-3 {
    width: 25%; }
.form-wrapper-flex .form-row .x-4 {
    width: 33.33333333%; }
.form-wrapper-flex .form-row .x-6 {
    width: 50%; }
.form-wrapper-flex .form-row .x-8 {
    width: 66.66666666%; }
.form-wrapper-flex .form-row .x-9 {
    width: 75%; }
.form-wrapper-flex .form-row .x-12 {
    width: 100%; }
.form-wrapper-flex .form-row .x-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 !important; }
.form-wrapper-flex .form-row .dob select {
    width: calc(33.33333333% - 13.33333333px); }
.form-wrapper-flex .form-row .dob select:not:last-of-type {
    margin-right: 20px; }

.terms, .tcpa-terms {
    padding: 0; }
.terms span, .terms label, .tcpa-terms span, .tcpa-terms label {
    font-size: .875rem;
    color: #707a8f;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 1.5rem;
    width: 100%;
    padding-left: 2rem;
    margin: 0;
    letter-spacing: 1px; }

.terms label.terms-label--text {
    padding-left: 0; }

.tcpa-terms label, .terms label {
    font-family: var(--general-font);
    font-weight: normal;
    letter-spacing: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #8f99a3;
    margin: 0 0 1rem 0; }
.tcpa-terms label a, .terms label a {
    color: #8f99a3;
    text-decoration: underline; }
.tcpa-terms label a:hover, .terms label a:hover {
    color: #243342;
    cursor: pointer; }

.optin input[type="email"] {
    background: url("../img/icon-mail-in.svg") no-repeat scroll 14px 13px;
    padding-left: 50px; }

.loading i {
    display: block !important; }

.loading span {
    display: none !important; }

#submitbutton i {
    display: none; }

#submitbutton span {
    display: block; }

.tcpa-questionary-form .tcpa-questionary {
    width: 100% !important; }

.tcpa-questionary-form .tcpa-question {
    margin: 0 0 1rem 0 !important;
    font-weight: normal;
    color: #243342; }

.tcpa-questionary-form .tcpa-answers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto !important;
    padding: 0 !important; }

.tcpa-details ~ .form-row {
    margin: 0; }

#tcpacheck {
    margin: 0; }

#tcpa-confirmation-concent {
    margin: 1rem auto 0 auto;
    border: 1px solid #D6D6D6;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
#tcpa-confirmation-concent > * {
    padding: .5rem;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto; }
#tcpa-confirmation-concent .tcpa-consent {
    background-color: #2a7bfe; }
@media (max-width: 768px) {
    #tcpa-confirmation-concent {
        width: 100%;
        margin-top: 10px; } }

.tcpa-confirmation {
    width: 60%;
    margin: 0 auto; }
@media (max-width: 768px) {
    .tcpa-confirmation {
        width: 98%; } }
.tcpa-confirmation #tcpacheck {
    display: inline-block;
    font-size: 12px;
    opacity: 1; }

.motion--fadeOut {
    opacity: 0;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out; }

.motion--slideTop {
    opacity: 0;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateY(-5rem);
    -ms-transform: translateY(-5rem);
    transform: translateY(-5rem); }

.motion--slideRight {
    opacity: 0;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateX(-5rem);
    -ms-transform: translateX(-5rem);
    transform: translateX(-5rem); }

.motion--slideBottom {
    opacity: 0;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateY(5rem);
    -ms-transform: translateY(5rem);
    transform: translateY(5rem); }

.motion--slideLeft {
    opacity: 0;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateX(5rem);
    -ms-transform: translateX(5rem);
    transform: translateX(5rem); }

.motion--fadeIn {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }

.motion--1 {
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms; }

.motion--2 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms; }

.motion--3 {
    -webkit-transition-duration: 1000ms;
    transition-duration: 1000ms; }

.motion--4 {
    -webkit-transition-duration: 1500ms;
    transition-duration: 1500ms; }

.motion--5 {
    -webkit-transition-duration: 2000ms;
    transition-duration: 2000ms; }

.nav {
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    inset-inline: 0;
    z-index: 1000; }

@media (max-width: 979px) {
    .nav__logo {
        height: 3rem; } }

.path__searchFilter {
    position: relative; }
.path__searchFilterInput {
    padding: .75rem !important; }
.path__searchFilterIcon {
    position: absolute;
    top: calc(.5rem + 1px);
    right: 1rem;
    font-size: 1.25rem;
    color: #2a7bfe; }

.twy-registration {
    border-bottom: 0.0625rem solid #576675;
    margin: 0 .5rem 1.25rem;
    padding: 0 0 1rem; }
.twy-registration #twy-nextcampaign {
    display: none !important; }
.twy-registration .twy-registration-input {
    display: block; }
.twy-registration .twy-registration-container {
    line-height: 1.3;
    width: 100%;
    padding-left: 3rem; }
@media (max-width: 480px) {
    .twy-registration .twy-registration-container {
        width: 100%; } }
.twy-registration .twy-registration-container .twy-registration-container-body {
    font-size: .75rem;
    color: #576675;
    line-height: 1.25rem;
    font-weight: normal;
    font-family: var(--general-font) !important; }
.twy-registration__body {
    margin-left: 2.5rem !important; }
.twy-registration__label {
    color: #576675 !important;
    font-weight: normal !important;
    font-size: .75rem !important; }

.twy-pub-container {
    padding: 0 !important;
    margin-top: 0 !important; }

#twy-adserve-title, .pagetex {
    margin: 0 0 16px 0 !important;
    color: #0b5394 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-align: center; }

.twy-adserve-header {
    padding: 0 !important; }

.twy-hide {
    display: none; }






/* --- Global & Variables --- */
:root {
    --primary-color: rgba(248,190,3,1);
    --primary-color-hover: rgba(250,214,94,1);
}

/* ALL BUTTONS */
.button:not(.link):not(.inverted):not(.userenroll-next),
.bt-continue, .rules__link:hover,
#optout-form input.btn.btn-primary {
    background: var(--primary-color) !important;
}

/* ALL BUTTONS HOVER */
.button:not(.link):not(.inverted):hover:not(.userenroll-next):hover,
.bt-continue:hover,
#optout-form input.btn.btn-primary:hover {
    background: var(--primary-color-hover) !important;
}

/* TCPA */
.tcpa-consent-text {
    margin: 0 !important;
    font-size: unset !important;
    display: flex;
}
.tcpa-consent-text label {
    font-size: 12px !important;
    font-weight: normal !important;
    line-height: 0px auto 20px auto !important;
    color: rgba(138,136,136,1) !important;
    margin: 1rem 0 !important;
}

.tcpa-questionary .tcpa-answers {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tcpa-item-answer, .tcpa-continue-container button {
    margin: 0 .5rem .5rem .5rem !important;
    width: 320px;
    max-width: 100%;
}

.tcpa-questionary[data-multiple="true"] .tcpa-answers {
    flex-direction: column;
}

.tcpa-questionary-form .tcpa-question {
    color: rgba(17,18,16,1) !important;
    /* font-weight:  !important; (empty value) */
    margin: 1rem 0 !important;
    /* line-height:  !important; (empty value) */
    font-size: 28px !important;
}

.tcpa-answer:not(.multiple) {
    background: rgba(248,190,3,1) !important;
    border-radius: .5rem !important;
    padding: 1rem !important;
    font-family: var(--primary-font);
    font-size: 1rem !important;
    font-weight: 500;
    color: rgba(17,18,16,1) !important;
    /* box-shadow:  !important; (empty value) */
    /* border:    !important; (empty value) */
}

.tcpa-answer:not(.multiple):hover {
    background: rgba(250,214,94,1) !important;
}

.tcpa-answer[data-id="false"]:not(.multiple), .tcpa-answer[data-id="no"]:not(.multiple) {
    background: rgba(155,155,155,1) !important;
    border-radius: .5rem !important;
    padding: 1rem !important;
    font-family: var(--primary-font);
    font-size: 1rem !important;
    /* color: rgba() !important; (empty value) */
    /* box-shadow:  !important; (empty value) */
    /* border:    !important; (empty value) */
}

.tcpa-answer[data-id="false"]:not(.multiple):hover, .tcpa-answer[data-id="no"]:not(.multiple):hover {
    background: rgba(155,155,155,0.8) !important;
}

.tcpa-answer[data-id="true"]:not(.multiple) {
    background: rgba(248,190,3,1) !important;
    border-radius: .5rem !important;
    padding: 1rem !important;
    font-family: var(--primary-font);
    font-size: 1rem !important;
    color: rgba(17,18,16,1) !important;
    /* box-shadow:  !important; (empty value) */
    /* border:    !important; (empty value) */
}

.tcpa-answer[data-id="true"]:not(.multiple):hover {
    background: rgba(250,214,94,1) !important;
}
.tcpa-continue-container button {
    background: rgba(248,190,3,1) !important;
    border-radius: .5rem !important;
    padding: 1rem !important;
    font-family: var(--primary-font);
    /* font-size:  !important; (empty value) */
    color: rgba(17,18,16,1) !important;
    /* box-shadow:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-style:  !important; (empty value) */
    /* border-color:  !important; (empty value) */
}
.tcpa-continue-container button:hover {
    background: rgba(250,214,94,1) !important;
}

.tcpa-answer.multiple {
    background: rgba(248,190,3,1) !important;
    /* color: rgba() !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* font-size:  !important; (empty value) */
    font-weight: 500;
    /* border:   rgba() !important; (empty value) */
    /* border-radius:  !important; (empty value) */
}

.tcpa-answer.multiple.checked {
    background: rgba(250,214,94,1) !important;
}

.tcpa-answer.multiple input[type="checkbox"] {
    /* background: rgba() !important; (empty value) */
    /* border-radius:  !important; (empty value) */
}

.tcpa-answer.multiple input[type="checkbox"]:checked {
    background: url(/themes/hotsweepsnow/assets/img/check.svg), rgba(40,116,25,1) !important;
    background-size: cover !important;
    border: var(--border-width-base) solid rgba(40,116,25,1) !important;
}


/* CONTINUE BUTTON */
.userenroll-next:not(.inverted) {
    background: rgba(248,190,3,1) !important;
    border-radius: .25rem !important;
    padding: .5rem 1rem !important;
    font-family: var(--primary-font);
    font-size: 20px !important;
    color: rgba(17,18,16,1) !important;
    font-weight: bold !important;
    margin: 1.5rem 0 0 0 !important;
    border: 0px solid  !important;
    max-width: 100%;
    width: 240px !important;
}

.userenroll-next:not(.inverted):hover {
    background: rgba(250,214,94,1) !important;
}

.userenroll-next.inverted {
    background: rgba(240,240,240,1) !important;
    border-radius: 0px !important;
    padding: .5rem 1rem !important;
    font-family: var(--primary-font);
    font-size: 14px !important;
    color: rgba(161,161,161,1) !important;
    font-weight: normal !important;
    margin: .5rem 0 0 0 !important;
    border: 0px solid  !important;
    max-width: 100%;
    width: 160px !important;
}

.userenroll-next.inverted:hover {
    background: rgba(244,240,240,1) !important;
}

/* --- Body (Inline Style Extracted) --- */
.bodyCustomsCss {
    padding: 0 !important;
    margin: 0 !important;
    background-image: url(https://ppe-userenroll-assets.s3.amazonaws.com/1750472054734) !important;
    background-position: top center !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    background-blend-mode: multiply !important;
    background-color: rgba(40,116,25,1) !important;
}

/* --- Header Section --- */
.header {
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* min-height:  !important; (empty value) */
}

.header__cardOne {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* padding:  !important; (empty value) */
}

.header__cardOne:hover {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.header__cardTwo {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* padding:  !important; (empty value) */
}

.header__cardTwo:hover {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.header__image {
    /* width:  !important; (empty value) */
    /* height:  !important; (empty value) */
    /* margin:  !important; (empty value) */
}

.header__cardThree {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* padding:  !important; (empty value) */
}

.header__cardThree:hover {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

@media (max-width: 480px) {
    .header {
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* min-height:  !important; (empty value) */
    }

    .header__cardOne {
        /* background: rgba() !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .header__cardOne:hover {
        /* background: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .header__cardTwo {
        /* background: rgba() !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .header__cardTwo:hover {
        /* background: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .header__image {
        /* margin:  !important; (empty value) */
        /* width:  !important; (empty value) */
        /* height:  !important; (empty value) */
    }

    .header__cardThree {
        /* background: rgba() !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .header__cardThree:hover {
        /* background: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }
}

/* --- Form Register Section --- */
.formRegister {
    background:
            linear-gradient(
                    to ,
                    rgba() 0%,
                    rgba() 100%
            ),
            rgba() !important;
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
}

.register__form {
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* box-shadow: 0 4px 8px rgba() !important; (empty value) */
    /* border-style:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
}

.formRegister__row {
    /* min-height:  !important; (empty value) */
}

.formRegister__title {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* line-height:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* text-align:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.formRegister__value h3 {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* line-height:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* text-align:  !important; (empty value) */
    /* background-color: rgba() !important; (empty value) */
}


.formRegister__image {
    /* width:  !important; (empty value) */
    /* height:  !important; (empty value) */
    /* margin:  !important; (empty value) */
}

.register__form .form-field-col input {
    /* height:  !important; (empty value) */
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* background-color: rgba() !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
}

.register__form .form-field-col input:focus {
    /* background-color: rgba() !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
    /* box-shadow: 0px 0px 8px rgba() !important; (empty value) */
}

.register__form .form-field-col select {
    /* height:  !important; (empty value) */
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* background-color: rgba() !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
}

.register__form .form-field-col select:focus {
    /* background-color: rgba() !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
    /* box-shadow: 0px 0px 8px rgba() !important; (empty value) */
}

.register__form .custom-submit-button button {
    /* width:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    border-radius: .25rem !important;
    background-color: rgba(248,190,3,1) !important;
}

.register__form .custom-submit-button button:hover {
    background-color: rgba(250,214,94,1) !important;
    /* box-shadow: 0px 0px 46px 7px rgba() !important; (empty value) */
}

.register__form .custom-submit-button span {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: rgba(17,18,16,1) !important;
}

.register__form .cf_radio span {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
    /* background-color: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.register__form .cf_radio input:hover + span {
    /* background-color: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.register__form  .cf_bool__label span {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
    /* background-color: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.register__form  .cf_bool__label input:hover + span {
    /* background-color: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.register__form .cf_check__label {
    /* background-color: rgba() !important; (empty value) */
    /* width:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
}

.register__form .cf_check__label span {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}
@media (hover: hover) {
    .register__form .cf_check__label:has(input:checked), .register__form .cf_check__label:has(input:hover) {
        /* background-color: rgba() !important; (empty value) */
    }

    .register__form .cf_check__label:has(input:checked), .register__form .cf_check__label:has(input:hover) span {
        /* color: rgba() !important; (empty value) */
    }
}

@media (hover: none) {

    .register__form .cf_check__label:has(input:checked) {
        /* background-color: rgba() !important; (empty value) */
    }

    .register__form .cf_check__label:has(input:checked) span{
        /* color: rgba() !important; (empty value) */
    }
}

.register__form input[type="checkbox"] {
    /* background-color: rgba() !important; (empty value) */
    /* height:  !important; (empty value) */
    /* width:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
}

.register__form .cf_check__input {
    /* background-color: rgba() !important; (empty value) */
    /* height:  !important; (empty value) */
    /* width:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* border-width:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* border-color: rgba() !important; (empty value) */
}

.register__form input[type="checkbox"]:checked {
    /* background-color: rgba() !important; (empty value) */
}

.register__form .term-label {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    color: rgba(255,255,255,1) !important;
    /* text-align:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
}

@media (max-width: 480px) {

    .formRegister {
        background:
                linear-gradient(
                        to ,
                        rgba() 0%,
                        rgba() 100%
                ),
                rgba() !important;
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* min-height:  !important; (empty value) */
    }

    .register__form {
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* box-shadow: 0 4px 8px rgba() !important; (empty value) */
        /* border-style:  !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
    }

    .formRegister__row {
        /* min-height:  !important; (empty value) */
    }

    .formRegister__title {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* line-height:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* text-align:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .formRegister__value h3{
        font-size: 6.5rem !important;
        /* font-weight:  !important; (empty value) */
        /* line-height:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* text-align:  !important; (empty value) */
        /* background-color: rgba() !important; (empty value) */
    }


    .formRegister__image {
        /* width:  !important; (empty value) */
        /* height:  !important; (empty value) */
        /* margin:  !important; (empty value) */
    }

    .register__form .form-field-col input {
        /* height:  !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* background-color: rgba() !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
    }

    .register__form .form-field-col input:focus {
        /* background-color: rgba() !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
        /* box-shadow: 0px 0px 8px rgba() !important; (empty value) */
    }

    .register__form .form-field-col select {
        /* height:  !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* background-color: rgba() !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
    }

    .register__form .form-field-col select:focus {
        /* background-color: rgba() !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
        /* box-shadow: 0px 0px 8px rgba() !important; (empty value) */
    }

    .register__form .custom-submit-button button {
        /* width:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* background-color: rgba() !important; (empty value) */
    }

    .register__form .custom-submit-button button:hover {
        /* background-color: rgba() !important; (empty value) */
        /* box-shadow: 0px 0px 46px 7px rgba() !important; (empty value) */
    }

    .register__form .custom-submit-button span {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .register__form .cf_radio span {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
        /* background-color: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .register__form .cf_radio input:hover + span {
        /* background-color: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .register__form  .cf_bool__label span {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
        /* background-color: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .register__form  .cf_bool__label input:hover + span {
        /* background-color: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .register__form .cf_check__label {
        /* background-color: rgba() !important; (empty value) */
        /* width:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
    }

    .register__form .cf_check__label span {
        /* color: rgba() !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
    }
    @media (hover: hover) {
        .register__form .cf_check__label:has(input:checked), .register__form .cf_check__label:has(input:hover) {
            /* background-color: rgba() !important; (empty value) */
        }

        .register__form .cf_check__label:has(input:checked), .register__form .cf_check__label:has(input:hover) span {
            /* color: rgba() !important; (empty value) */
        }
    }

    @media (hover: none) {

        .register__form .cf_check__label:has(input:checked) {
            /* background-color: rgba() !important; (empty value) */
        }

        .register__form .cf_check__label:has(input:checked) span{
            /* color: rgba() !important; (empty value) */
        }
    }

    .register__form input[type="checkbox"] {
        /* background-color: rgba() !important; (empty value) */
        /* height:  !important; (empty value) */
        /* width:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
    }

    .register__form .cf_check__input {
        /* background-color: rgba() !important; (empty value) */
        /* height:  !important; (empty value) */
        /* width:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* border-width:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* border-color: rgba() !important; (empty value) */
    }

    .register__form input[type="checkbox"]:checked {
        /* background-color: rgba() !important; (empty value) */
    }

    .register__form .term-label {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
        /* text-align:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
    }
}

/* --- Line Separator Section --- */
.line {
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* min-height:  !important; (empty value) */
}

.line__line {
    /* background-color: rgba() !important; (empty value) */
    /* height:  !important; (empty value) */
    /* width:  !important; (empty value) */
    /* margin:  !important; (empty value) */
}

@media (max-width: 480px) {
    .line {
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* min-height:  !important; (empty value) */
    }

    .line__line {
        /* background-color: rgba() !important; (empty value) */
        /* height:  !important; (empty value) */
        /* width:  !important; (empty value) */
        /* margin:  !important; (empty value) */
    }
}

/* --- Cards Section --- */
.cards {
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* min-height:  !important; (empty value) */
}

.cards__title {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.cards__image {
    /* width:  !important; (empty value) */
    /* height:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
}

.cards__button {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* border-radius:  !important; (empty value) */
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
}

.cards__button:hover {
    /* background: rgba() !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}


@media (max-width: 480px) {
    .cards {
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* min-height:  !important; (empty value) */
    }

    .cards__title {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .cards__image {
        /* width:  !important; (empty value) */
        /* height:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
    }

    .cards__button {
        /* background: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* border-radius:  !important; (empty value) */
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
    }

    .cards__button:hover {
        /* background: rgba() !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }
}

/* --- HTML/Text Section --- */
.html {
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* min-height:  !important; (empty value) */
}

@media (max-width: 480px) {
    .html {
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* min-height:  !important; (empty value) */
    }
}

.customHtmlText {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
    line-heith: normal;
    color: #fff;
}

/* --- Footer Section --- */
.footer {
    /* background-color: rgba() !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* padding:  !important; (empty value) */
    /* min-height:  !important; (empty value) */
}

.footer__navigation ul li a{
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}


.footer__navigation ul li a:hover{
    /* color: rgba() !important; (empty value) */
}

.footer__navigation ul li a::after{
    /* background-color: rgba() !important; (empty value) */
}

.footer__navigation ul li span{
    /* color: rgba() !important; (empty value) */
}

.footer__disclaimer {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

.footer__copyright {
    /* font-size:  !important; (empty value) */
    /* font-weight:  !important; (empty value) */
    /* margin:  !important; (empty value) */
    /* color: rgba() !important; (empty value) */
}

@media (max-width: 480px) {
    .footer {
        /* background-color: rgba() !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* padding:  !important; (empty value) */
        /* min-height:  !important; (empty value) */
    }

    .footer__navigation ul li a{
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .footer__navigation ul li a:hover{
        /* color: rgba() !important; (empty value) */
    }

    .footer__navigation ul li a::after{
        /* background-color: rgba() !important; (empty value) */
    }

    .footer__navigation ul li span{
        /* color: rgba() !important; (empty value) */
    }

    .footer__disclaimer {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }

    .footer__copyright {
        /* font-size:  !important; (empty value) */
        /* font-weight:  !important; (empty value) */
        /* margin:  !important; (empty value) */
        /* color: rgba() !important; (empty value) */
    }
}


.formItem input {
    width: 100%;

}
.formItem label {
    z-index: 999;
    font-size: 14px;
    padding: 2px 5px;
    margin-left: 15px;
    position: relative;
    background: #fff;
    margin-bottom: -26px;
    display: inline-block;
}
.formItem input {
    width: 100%;
    cursor: text;
    font-size: 1em;
    font-weight: 400;
    /*margin-top: -10px;*/
    position: relative;
    border-radius: 4px;
    align-items: center;
    padding: 13.5px 14px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    -webkit-box-align: center;
    color: rgba(0, 0, 0, 0.87);
}
.formItem input:focus-visible {
    /*border: 1px solid #000 !important;*/
}
.form-check label {
    font-size: 12px;
    color: #ffffff;
}
.formCareArea .form-check {
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 8px 8px 8px 40px;
    transition: all 0.3s ease 0s;
    border: 1px solid rgb(207, 207, 212);
    background-color: rgb(251, 254, 255);
}

.formCareArea button {
    width: 100%;
    border: none;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    background-color: #ff8d01;
    border: 1px solid #ff8d01;
}
.formCareArea button:hover {
    color: #ff8d01;
    background-color: #fff;
    border: 1px solid #ff8d01;
    transition: all 0.3s ease;
}

.formCareArea .disclaimerText p {
    color: #000;
    font-size: 10px;
    text-align: justify;
    margin-bottom: 10px;
}
.formCareArea {
    /* background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background: url('../images/form_bg.svg'); */
}
.dateOfBirthArea {
    margin-bottom: 10px;
}
.dateOfBirthArea label {
    z-index: 999;
    font-size: 14px;
    padding: 2px 5px;
    margin-left: 15px;
    background: #fff;
    position: relative;
    margin-bottom: -26px;
    display: inline-block;
}
.dateOfBirthSelect {
    gap: 10px;
    display: flex;
    margin-top: -10px;
}

.dateOfBirthSelect select {
    flex: 1;
    min-width: 0;
    border-radius: 4px;
    padding: 13.5px 14px;
    /*border: 1px solid #000;*/
    background-color: #ffffff;
    margin-top: 10px;
}
.form-error-message {
    display:none;
    color:#FF8E8E;
    /*padding-bottom:4px;*/
    position:relative;
    top:-10px;
}

.btn-orange-full {
    width: 100%;
    border: none;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    background-color: #ff8d01;
    border: 1px solid #ff8d01;
}
.btn-orange-full:hover {
    background-color: #e57f00;
    border-color: #e57f00;
}

.form-check-label {
}

.formCare {
    /*background: #ffffff;*/
    padding:30px;
}
a {
    color: #e6e6e6;
}