:root {
    --accent-color: #0b3e87;
    --second-color: #8b1115;
    --text-color: #3d3d3d;
    --title-color: #000;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html.show {
    overflow: hidden;
}

.wrap {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter 0.15s ease;
    transition: -webkit-filter 0.15s ease;
    -o-transition: filter 0.15s ease;
    transition: filter 0.15s ease;
    transition: filter 0.15s ease, -webkit-filter 0.15s ease;
}

.wrap.blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.container {
    position: relative;
    max-width: 940px;
    padding: 0 15px;
    margin: auto;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    font-family: 'Noto Sans Display', sans-serif;
    color: var(--text-color);
}

.h1 {
    font-size: 2.1rem;
    color: var(--title-color);
    line-height: 1;
}

.h2,
.step {
    color: var(--title-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 2rem;
    line-height: 1;
}

.h3 {
    margin: 1rem 0 0;
}

.img-resp {
    display: block;
    width: 100%;
    height: auto;
}

.txt {
    font-size: 1.1rem;
    text-align: justify;
    -moz-text-align-last: left;
    text-align-last: left;
}

.svg-icon {
    max-width: 20px;
    display: inline-block;
}

.header {
    padding: 2rem 0;
}

.header .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer {
    background-color: #212121;
    margin-top: 2rem;
}

.footer .container {
    width: 100%;
}

.footer .container .row {
    max-width: 940px;
}

.footer-nav {
    padding: 1rem 0 0;
    text-align: center;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(60px, 200px));
}

.footer-nav-link {
    margin: auto;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    -webkit-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

.footer-nav-link:hover {
    color: #909090;
}

.footer-copyright {
    margin: 0;
    padding: 0 0 20px;
    color: #bcbcbc;
}

.footer img {
    max-width: 330px;
}

.footer-disclaimer,
.footer-title {
    color: #bcbcbc;
}

.footer-disclaimer {
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.2;
}

.hidden {
    display: none;
}

.accept-img {
    max-width: 400px;
}

.footer-disc {
    color: gray;
}

.underlined {
    position: relative;
    margin: 1rem 0 2rem;
}

.underlined::after {
    content: "";
    width: 20%;
    height: 3px;
    background-color: var(--second-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 50px;
}

main {
    margin-top: 1rem;
}

.date-wrap {
    text-align: right;
    color: gray;
}

.date-wrap>* {
    vertical-align: middle;
}

.ul {
    list-style-type: none;
    padding: 0.5rem 1rem;
    border-left: 5px solid var(--second-color);
    border-radius: 5px;
    max-width: 820px;
}

.bg-gray {
    background-color: #fafafa;
}

.ul.second {
    border-left: none;
    padding-left: 1.4rem;
    list-style-type: circle;
    font-size: 1rem;
}

.ul.second::marker {
    color: var(--second-color);
}

.ul.second li {
    margin: 1rem 0;
}

.last .ul.second li {
    margin: 0.3rem 0;
}

.qa .question {
    color: var(--title-color);
    line-height: 1.2;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.qa .question::after {
    content: "?";
    color: var(--second-color);
    font-weight: 700;
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

.qa .answer {
    font-size: 1.1rem;
    padding-left: 0.85rem;
    padding-bottom: 0.85rem;
    margin-bottom: 2.1rem;
    -webkit-box-shadow: 0 2px 0 -1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 0 -1px rgba(0, 0, 0, 0.08);
}

.qa .answer:last-child {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.quiz-wrap {
    text-align: center;
    margin: 2.65rem 0;
    font-weight: 700;
}

.quiz-txt {
    color: var(--title-color);
    font-size: 1.3rem;
    margin: 1.25rem;
}

.quiz-btn {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 10vw;
    background-color: var(--accent-color);
    border-radius: 5px;
    text-decoration: none;
    -webkit-box-shadow: 2px 2px 3px 0 #818181;
    box-shadow: 2px 2px 3px 0 #818181;
    -webkit-transition: -webkit-box-shadow 0.16s ease;
    transition: -webkit-box-shadow 0.16s ease;
    -o-transition: box-shadow 0.16s ease;
    transition: box-shadow 0.16s ease;
    transition: box-shadow 0.16s ease, -webkit-box-shadow 0.16s ease, background-color 0.16s ease;
    font-size: 1.5rem;
}

button.quiz-btn {
    border: none;
    font-size: 1.1rem;
    padding: 0.8rem;
}

.quiz-btn:hover {
    background: #000477;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.quiz-btn:active {
    background: #001977b5;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bg-green {
    background-color: #79b337;
}

.bg-green:hover {
    background-color: #79b337;
    box-shadow: none;
}

.bg-green:active {
    background-color: #5f8b2d;
}

.s-faq .qa {
    max-width: 820px;
}

.button-wrap {
    text-align: center;
}

.quest {
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 420px;
    text-align: justify;
    margin: 0 auto 1rem;
}

.button-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    cursor: pointer;
    color: #292929;
    border-radius: 0.25em;
    background: #efefef;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.22);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button-label p {
    margin: 0;
    font-weight: 700;
    font-size: 1em;
    font-family: "Lato", sans-serif;
}

.button-label:hover {
    background: #d6d6d6;
    color: #101010;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.32);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.32);
}

.button-label:active {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

@media (max-width: 40em) {
    .button-label {
        padding: 0.5em 1.5rem;
        margin: 0.25em;
    }
}

.yes-button:checked+.button-label {
    background: #2ecc71;
    color: #efefef;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.yes-button:checked+.button-label:hover {
    background: #29b765;
    color: #e2e2e2;
}

.no-button:checked+.button-label {
    background: #d91e18;
    color: #efefef;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.no-button:checked+.button-label:hover {
    background: #c21b15;
    color: #e2e2e2;
}

.popup-container {
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    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;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.popup-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background-color: #fefefe;
    margin: auto 5px;
    padding: 0.3rem 1rem 1rem;
    border: 1px solid #888;
    border-radius: 5px;
    min-width: 320px;
}

.popup-container.overflow {
    overflow: scroll;
}

#quiz-from {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.quiz-item {
    width: 100%;
}

.quiz-item.last {
    max-width: 620px;
    text-align: center;
}

.quiz-item.last ul {
    text-align: left;
}

.popup-content p {
    font-size: 1.2rem;
    padding: 10px 20px;
}

.qz-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.popup-content .icon {
    margin: 10px 0;
    line-height: 1;
    fill: #aaa;
    font-weight: 700;
    -webkit-transition: fill 0.1s ease-out;
    -o-transition: fill 0.1s ease-out;
    transition: fill 0.1s ease-out;
}

.icon:hover {
    fill: var(--title-color);
}

.icon:active {
    fill: var(--second-color);
}

#back {
    left: 5px;
    right: auto;
    display: none;
}

#close {
    margin-left: auto;
}

.popup-content .icon>svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
    max-width: 22px;
    height: auto;
}

.popup-content span:hover,
.popup-content span:focus {
    color: var(--title-color);
    text-decoration: none;
    cursor: pointer;
}

#popup-wrapper.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.quiz-item:not(:first-child) {
    display: none;
}

.read-more {
    display: none;
}

.help-block-error {
    margin: 0;
    color: #ce0505;
}

.expiration_date p.help-block.help-block-error {
    flex-basis: 100%;
}

.form_horizontal .expiration_date {
    flex-wrap: wrap;
}

.help-block.last {
    font-size: 1.2rem;
    margin: 1rem 0 0;
    text-align: center;
}

.top-help-block {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    background: #ffdede;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 6px 0 #d1d1d1;
    -moz-box-shadow: 0 2px 6px 0 #d1d1d1;
    box-shadow: 0 2px 6px 0 #d1d1d1;
    margin-bottom: 1rem;
}

.quiz-result .h2 {
    color: var(--second-color);
    margin: 1rem 0 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.quiz-result .h3 {
    font-weight: 600;
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
}

.quiz-result .container {
    max-width: 720px;
}

.quiz-result .ul.second li {
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

.quiz-result .ul.second {
    margin: 0;
}

.bullets {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--title-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25em;
}

.bullets-text {
    margin: 0 2rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.65rem;
}

.nav-link {
    margin: 0.5rem;
    text-align: center;
    font-size: 1rem;
    color: #c65000;
    transition: all 0.3s ease;
}

.nav-link.highlight {
    font-size: 1.02rem;
    text-decoration: underline;
}

.nav-link:hover {
    filter: brightness(0.8);
}

.apply .ul {
    border-left: none;
}

.apply .nav-link {
    margin: 0;
}

.step {
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.25;
}

.step::before {
    content: "# ";
    color: var(--second-color);
    font-weight: 900;
    font-size: 1.1em;
}

.step-txt {
    font-weight: 500;
    text-align: justify;
    margin: 0.5rem 0;
}

.h1.higher {
    margin-bottom: 2rem !important;
}

.renewal-addres {
    display: block;
    line-height: 1.5;
}

@media (max-width: 590px) {
    .collapse {
        margin: 0 0 28px !important;
        float: unset;
        width: unset;
        max-height: 200px;
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        -webkit-transition: max-height 0.2s ease-out;
        -o-transition: max-height 0.2s ease-out;
        transition: max-height 0.2s ease-out;
    }
    .last {
        position: relative;
    }
    .last .h3 {
        margin: 0;
    }
    .last .read-more {
        display: initial;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        margin: 0;
        margin-bottom: 0 !important;
        padding: 30px 0 15px;
        color: #000;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 1)));
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .last .read-more a {
        text-decoration: none;
        font-weight: 500;
        padding: 10px;
        background-color: #fff;
        border-radius: 5px;
        color: var(--title-color);
        -webkit-filter: brightness(1);
        filter: brightness(1);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        -webkit-box-shadow: 0 2px 8px 0 #000;
        box-shadow: 0 2px 8px 0 #000;
    }
    .last .read-more a:hover {
        -webkit-filter: brightness(0.9);
        filter: brightness(0.9);
    }
    .top-help-block {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 520px) {
    html {
        font-size: 14px;
    }
    .h1 {
        font-size: 1.7rem;
    }
    .txt {
        font-size: 1rem;
    }
    .bullets {
        text-align: center;
        line-height: 1.25;
    }
    .bullets-text {
        margin: 0 0.5rem;
    }
    .bullets-text:last-child {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        margin: 0.1rem 0;
    }
    .sub-ul {
        padding: 0 0 0 0.5rem;
    }
}

.attention {
    display: list-item;
    margin-left: 1.4rem;
    list-style-type: circle;
}

.attention.alt {
    display: block;
    margin-left: 0;
}

.attention.alt::before {
    content: "!";
    color: var(--second-color);
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}


/* ============================================ */
/* checkout.css */
/* ============================================ */

.btn-wrap {
    text-align: center;
}

.btn-wrap>#sendbutton {
    display: inline-block;
    width: 35%;
    padding: 0.5rem 0;
}

.checkbox {
    cursor: pointer;
    grid-column: 1/3;
}

.checkbox>input {
    vertical-align: middle;
}

.checkbox-text {
    text-align: justify;
    margin-left: 2rem;
    color: var(--text-color);
    display: block;
}

@media (max-width: 520px) {
    .btn-wrap>#sendbutton {
        width: 100%;
        padding: 0.5rem;
    }
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.33) inset;
}

.checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox input:checked~.checkmark {
    background-color: #79b337;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.box_form_group {
    -webkit-box-shadow: 0 2px 6px 0 #d1d1d1;
    -moz-box-shadow: 0 2px 6px 0 #d1d1d1;
    box-shadow: 0 2px 6px 0 #d1d1d1;
}

button,
.button_buy-now {
    background-color: #79b337 !important;
}

button,
.button_buy-now:hover {
    background-color: #87be47 !important;
}

.form_horizontal .button_buy-now {
    margin-top: 20px;
    font-size: 20px;
}

a {
    background: transparent;
}

a:active,
a:hover {
    outline: 0;
}

button,
input,
select {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="text"],
select,
.styled-select {
    border: 1px solid #c3c3c3;
    height: 44px;
    padding: 7px 15px;
    background-color: #fff;
    color: #626262;
}

.styled-select {
    background: #fff url(/florida-assistance/assets/arr-select.png) no-repeat 96% center;
    padding: 0;
}

.styled-select select {
    width: 100%;
    background: transparent;
    border: none;
    height: 44px;
    padding: 7px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

::selection {
    background: #222;
    color: #fff;
    text-shadow: none;
}

h2 {
    margin: 0.5em 0 1em;
}

h4 {
    font-size: 19px;
    font-size: 1.1875rem;
}

@media (max-width: 600px) {
    h4 {
        font-size: 13.3px;
        font-size: 0.83125rem;
    }
}

strong {
    font-weight: 700;
}

a {
    text-decoration: underline;
    color: var(--second-color);
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

button {
    border: none;
    outline: 0;
}

.form_horizontal {
    *zoom: 1;
}

.form_horizontal:before,
.form_horizontal:after {
    display: table;
    line-height: 0;
    content: "";
}

.form_horizontal:after {
    clear: both;
}

.form_horizontal .box_form_group {
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 1.5em;
    margin: 0 0 2em;
}

.form_horizontal .form-group {
    *zoom: 1;
    margin-bottom: 23px;
    position: relative;
}

.form_horizontal .form-group:before,
.form_horizontal .form-group:after {
    display: table;
    line-height: 0;
    content: "";
}

.form_horizontal .form-group:after {
    clear: both;
}

.form_horizontal .form-control {
    width: 100%;
}

.form_horizontal input[type="checkbox"] {
    margin-right: 15px;
}

@media (max-width: 480px) {
    .form_horizontal input[type="checkbox"] {
        margin-right: 5px;
    }
}

.form_horizontal .button_buy-now {
    display: inline-block;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-size: 32px;
    font-size: 2rem;
    padding: 0.55em 2.3em;
    background-color: #f34334;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    padding: 0.6em 0;
}

@media (max-width: 780px) {
    .form_horizontal .button_buy-now {
        font-size: 25.6px;
    }
}

@media (max-width: 600px) {
    .form_horizontal .button_buy-now {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
}

.form_horizontal .button_buy-now,
.form_horizontal .button_buy-now:hover {
    color: #fff;
}

.form_horizontal .button_buy-now:hover {
    background-color: #f23121;
}

.form_horizontal .col {
    position: relative;
}

@media (max-width: 480px) {
    .form_horizontal ._col_1 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form_horizontal ._col_2 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form_horizontal ._col_3 {
        width: 100%;
    }
    .form_horizontal ._col_3:nth-child(1) {
        margin-bottom: 23px;
    }
}

.form_horizontal .expiration_date {
    display: flex;
}

@media (max-width: 480px) {
    .form_horizontal .expiration_date {
        width: 100%;
    }
}

.form_horizontal .expiration_date .styled-select {
    float: left;
    width: 70px;
}

.form_horizontal .expiration_date i {
    float: left;
    font-style: normal;
    padding: 12px 2px 0;
}

.box_form_group {
    display: grid;
    grid-auto-columns: 1fr 2fr;
}

.fields-title {
    grid-column: 1/1;
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 1rem;
    color: var(--title-color);
}

.fields {
    grid-column: 2/2;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 1rem 0;
    color: var(--text-color);
}

div.fields {
    grid-template-columns: 1fr 2fr;
}

h2 {
    font-size: 1.2rem;
    margin: 0 !important;
}

#allus {
    color: #777;
    font-size: 1.11rem;
    margin: 0;
}

.fields .fields,
.fields .fields-title {
    border-bottom: none;
    grid-template-columns: 1fr 1fr;
}

#iymadfa {
    grid-column: 2/3;
}

.styled-select {
    border-radius: 5px;
}

fieldset {
    border: none;
}

.form_horizontal .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem !important;
}

.box_form_group {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.form_horizontal .form-control {
    border-radius: 5px;
}

.control_label {
    color: var(--text-color);
}

.full-grid {
    grid-column: 1/3;
    grid-gap: 0;
}

.full-grid .fields-title:not(:last-of-type),
.full-grid .fields:not(:last-child) {
    border-bottom: none;
}

.box_form_group>p {
    grid-column: 1/3;
}

.read-please {
    margin: 1rem 0 0 2rem;
    padding: 0 1rem;
}

.checkbox {
    color: #777;
    font-size: 0.9rem;
    margin: 0.3rem 0 0;
    padding: 0 1rem;
}

.subtitle {
    color: var(--text-color);
    font-size: 1rem;
    padding-top: 1.3rem;
}

#pnra {
    border-bottom: 1px solid #ccc;
}

@media (max-width: 920px) {
    .fields {
        display: block;
    }
    fieldset.fields {
        padding: 0;
    }
    .fields-title {
        padding: 0;
    }
    h2 {
        margin: 1rem 0 0 !important;
    }
    .read-please {
        font-size: 0.9rem;
    }
    .checkbox {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    .form_horizontal .form-control {
        max-width: 100%;
    }
    .box_form_group {
        display: block;
    }
    .fields-title {
        border: none;
    }
}

.form_horizontal {
    margin: 2rem 0;
}

.block_._grey {
    background-color: #f0f0f0;
    padding: 1rem;
    max-width: 100%;
    border-color: #b3b3b3;
}

ul._mb0 {
    list-style-type: none;
    padding: 0;
}

ul._mb0>li {
    padding-left: 1.8rem;
    margin-left: 0.3rem;
    position: relative;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--title-color);
}

h3.h2 {
    margin: 2rem 0;
}

.block_._grey ul li::before {
    content: "";
    background-image: url(/florida-assistance/assets/checkmark.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 6px;
    left: 0;
    width: 20px;
    height: 20px;
    background-position: 0 0;
}

.delivery a,
#cc_block_select {
    color: var(--title-color);
    text-decoration: none;
    margin-left: 0.4rem;
}

.styled-radio {
    margin: 0.5rem 0;
}

.totalfee {
    color: var(--accent-color);
    font-weight: bold;
    margin-left: 0.5rem;
    font-size: 1.3rem;
}

h4 {
    margin-bottom: 0;
}

.form-group.card.delivery {
    margin-left: 0.5rem;
}

.secure {
    width: 100%;
    opacity: 0.9;
    margin: 1rem auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.secure-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 32px;
    padding: 5px 8px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    margin-right: 1rem;
}

.label-text {
    margin-left: 10px;
}

.form_horizontal .icon_tooltip {
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 22px;
    right: 10px;
}

.form_horizontal .icon_tooltip.icon_lock {
    width: 12px;
    height: 14px;
    background-image: url(florida-assistance/assets/icon-lock.svg);
    margin-top: -7px;
}

.help {
    color: #777;
    font-size: 0.7rem;
    line-height: 1.3;
    margin: 5px 0 10px 10px;
}

.cvv_tooltip {
    display: block;
}

.cvv {
    margin-left: 5px;
}

.form-group.card.item::after {
    background: #0000 url(/florida-assistance/assets/cards_s2.png) no-repeat scroll 0 0;
    content: "";
    float: right;
    height: 24px;
    margin-top: 3px;
    width: 242px;
    border-radius: 0;
    margin-left: 34px;
}

#cc_card_info_element {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
}

#cc_card_info_element>.ff {
    grid-column: 1/3;
}

fieldset.group {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    grid-gap: 0.5rem;
}

.form_horizontal .expiration_date {
    flex-wrap: wrap;
    align-content: flex-start;
}

.form_horizontal .expiration_date .help {
    flex-basis: 100%;
}

.form-control[name="cc_cvv"] {
    max-width: 150px;
    margin-left: 5px;
}

.qwe-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.expiration_date>.control_label {
    flex-basis: 100%;
}

.sealsarea {
    padding: 1rem;
    margin: 1.25rem 0;
    text-align: center;
}

main {
    margin-top: 1rem;
}

@media (max-width: 820px) {
    fieldset.group {
        grid-column: 1/3;
        grid-template-columns: 1fr 1fr;
    }
}

.styled-radio [type="radio"]:checked,
.styled-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.styled-radio [type="radio"]:checked+label,
.styled-radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.styled-radio [type="radio"]:checked+label:before,
.styled-radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.styled-radio [type="radio"]:checked+label:after,
.styled-radio [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.styled-radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.styled-radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.qwe-fields {
    margin: 0;
    padding: 0;
}


/* ============================================ */
/* Óïðîùåííûé âàðèàíò - ãàðàíòèðîâàííî ðàáîòàåò */
/* ============================================ */

.order-new-form .styled-radio {
    position: relative;
    margin: 0.75rem 0;
    left: 0;
    top: 0;
}

.order-new-form .styled-radio input[type="radio"]:checked+label::before {
    width: 22px !important;
    height: 22px !important;
}

.order-new-form .styled-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    margin: 0;
}

.order-new-form .styled-radio label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
}


/* Âíåøíèé êðóã - ôèêñèðîâàííîå ïîçèöèîíèðîâàíèå */

.order-new-form .styled-radio label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}


/* Âíóòðåííÿÿ òî÷êà - ôèêñèðîâàííîå ïîçèöèîíèðîâàíèå */

.order-new-form .styled-radio label:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #79b337;
    opacity: 0;
}

.order-new-form .styled-radio input[type="radio"]:checked+label:after {
    opacity: 1;
}

.order-new-form .styled-radio input[type="radio"]:checked+label:before {
    border-color: #79b337;
}

.order-new-form .styled-radio .check {
    display: none;
}

.order-new-form .styled-radio label {
    vertical-align: middle;
}

.order-new-form .styled-radio br {
    display: none;
}


/* ============================================ */
/* congrats.css */
/* ============================================ */

.h1,
.h2 {
    margin: 1rem 0 !important;
}

.btn-wrap {
    text-align: center;
}

.btn-wrap>#sendbutton {
    display: inline-block;
    width: 35%;
    padding: 0.5rem 0;
}

.disclaimer {
    cursor: pointer;
    grid-column: 1/3;
}

.disclaimer>input {
    vertical-align: middle;
}

.disclaimer-text {
    text-align: justify;
    margin-left: 2rem;
    color: var(--text-color);
    display: block;
}

@media (max-width: 520px) {
    .btn-wrap>#sendbutton {
        width: 100%;
        padding: 1rem;
    }
}

.disclaimer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.disclaimer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 13px;
    height: 25px;
    width: 25px;
    background-color: #eee;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.33) inset;
}

.disclaimer:hover input~.checkmark {
    background-color: #ccc;
}

.disclaimer input:checked~.checkmark {
    background-color: #79b337;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.disclaimer input:checked~.checkmark:after {
    display: block;
}

.disclaimer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.s-welcome.order {
    min-height: 80vh;
}

.s-welcome.order .h1,
.s-welcome.order .h2 {
    text-align: center;
}

.box_form_group {
    -webkit-box-shadow: 0 2px 6px 0 #d1d1d1;
    -moz-box-shadow: 0 2px 6px 0 #d1d1d1;
    box-shadow: 0 2px 6px 0 #d1d1d1;
}

button,
.button_buy-now {
    background-color: #79b337 !important;
}

button,
.button_buy-now:hover {
    background-color: #87be47 !important;
}

.form_horizontal .button_buy-now {
    margin-top: 20px;
    font-size: 20px;
}

a {
    background: transparent;
}

a:active,
a:hover {
    outline: 0;
}

button,
input,
select {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="text"],
select,
.styled-select {
    border: 1px solid #c3c3c3;
    height: 44px;
    padding: 7px 15px;
    background-color: #fff;
    color: #626262;
}

.styled-select {
    background: #fff url(/assets/arr-select.png) no-repeat 96% center;
    padding: 0;
}

.styled-select select {
    width: 100%;
    background: transparent;
    border: none;
    height: 44px;
    padding: 7px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

::selection {
    background: #222;
    color: #fff;
    text-shadow: none;
}

h2 {
    margin: 0.5em 0 1em;
}

h4 {
    font-size: 19px;
    font-size: 1.1875rem;
}

@media (max-width: 600px) {
    h4 {
        font-size: 13.3px;
        font-size: 0.83125rem;
    }
}

strong {
    font-weight: 700;
}

a {
    text-decoration: underline;
    color: var(--second-color);
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

button {
    border: none;
    outline: 0;
}

.form_horizontal {
    *zoom: 1;
}

.form_horizontal:before,
.form_horizontal:after {
    display: table;
    line-height: 0;
    content: "";
}

.form_horizontal:after {
    clear: both;
}

.form_horizontal .box_form_group {
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 1.5em;
    margin: 0 0 2em;
}

.form_horizontal .form-group {
    *zoom: 1;
    margin-bottom: 23px;
    position: relative;
}

.form_horizontal .form-group:before,
.form_horizontal .form-group:after {
    display: table;
    line-height: 0;
    content: "";
}

.form_horizontal .form-group:after {
    clear: both;
}

.form_horizontal .form-control {
    width: 100%;
}

.form_horizontal input[type="checkbox"] {
    margin-right: 15px;
}

@media (max-width: 480px) {
    .form_horizontal input[type="checkbox"] {
        margin-right: 5px;
    }
}

.form_horizontal .button_buy-now {
    display: inline-block;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-size: 32px;
    font-size: 2rem;
    padding: 0.55em 2.3em;
    background-color: #f34334;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    padding: 0.6em 0;
}

@media (max-width: 780px) {
    .form_horizontal .button_buy-now {
        font-size: 25.6px;
    }
}

@media (max-width: 600px) {
    .form_horizontal .button_buy-now {
        font-size: 22.4px;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
}

@media (max-width: 480px) {
    .form_horizontal .button_buy-now {
        font-size: 14.4px;
    }
}

.form_horizontal .button_buy-now,
.form_horizontal .button_buy-now:hover {
    color: #fff;
}

.form_horizontal .button_buy-now:hover {
    background-color: #f23121;
}

.form_horizontal .col {
    position: relative;
}

@media (max-width: 480px) {
    .form_horizontal ._col_1 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form_horizontal ._col_2 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form_horizontal ._col_3 {
        width: 100%;
    }
}

.form_horizontal .expiration_date {
    display: flex;
}

@media (max-width: 480px) {
    .form_horizontal .expiration_date {
        width: 100%;
    }
}

.form_horizontal .expiration_date .styled-select {
    float: left;
    width: 70px;
}

.form_horizontal .expiration_date i {
    float: left;
    font-style: normal;
    padding: 12px 2px 0;
}

.box_form_group {
    display: grid;
    grid-auto-columns: 1fr 2fr;
}

.fields-title {
    grid-column: 1/1;
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 1rem;
    color: var(--title-color);
}

.fields {
    grid-column: 2/2;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 1rem 0;
    color: var(--text-color);
}

div.fields {
    grid-template-columns: 1fr 2fr;
}

h2 {
    font-size: 1.2rem;
    margin: 0 !important;
}

#allus {
    color: #777;
    font-size: 1.11rem;
    margin: 0;
}

.fields .fields,
.fields .fields-title {
    border-bottom: none;
    grid-template-columns: 1fr 1fr;
}

#iymadfa {
    grid-column: 2/3;
}

.styled-select {
    border-radius: 5px;
}

fieldset {
    border: none;
}

.form_horizontal .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem !important;
}

.box_form_group {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.form_horizontal .form-control {
    border-radius: 5px;
}

.control_label {
    color: var(--text-color);
}

.full-grid {
    grid-column: 1/3;
    grid-gap: 0;
}

.full-grid .fields-title:not(:last-of-type),
.full-grid .fields:not(:last-child) {
    border-bottom: none;
}

.box_form_group>p,
.box_form_group>button {
    grid-column: 1/3;
}

.read-please {
    padding: 0 1rem;
    margin: 1rem 0 0;
    text-align: center;
}

.disclaimer {
    color: #777;
    font-size: 0.9rem;
    margin: 0.3rem 0 0;
    padding: 0 1rem;
}

.subtitle {
    color: var(--text-color);
    font-size: 1rem;
    padding-top: 1.3rem;
}

#pnra {
    border-bottom: 1px solid #ccc;
}

@media (max-width: 920px) {
    .fields {
        display: block;
    }
    fieldset.fields {
        padding: 0;
    }
    .fields-title {
        padding: 0;
    }
    h2 {
        margin: 1rem 0 0 !important;
    }
    .read-please {
        font-size: 1rem;
        line-height: 1.2;
        margin: 2rem 0 1rem;
        padding: 0;
        text-align: center;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.3;
        padding-right: 0;
    }
    .disclaimer-text {
        margin: 0.5rem 0 0 2rem;
    }
    .form_horizontal .form-control {
        max-width: 100%;
    }
    p.help-block.help-block-error {
        font-size: 1rem;
    }
    p.help-block.help-block-error.last {
        font-size: 1rem;
        line-height: 1.2;
        margin-left: 0;
        text-align: center;
        padding: 0;
    }
    .box_form_group {
        display: block;
    }
    .fields-title {
        border: none;
    }
}

#iymadfa {
    padding: 1rem 0 0;
    flex-direction: initial;
    justify-content: flex-end;
    align-items: center;
}

#iymadfa>.control_label {
    line-height: 1.2;
}

#iymadfa>.input_group {
    margin-left: 1rem;
    max-width: 150px;
    min-width: 80px;
}


/* ============================================ */
/* New checkout additions */
/* ============================================ */

.checkout-header {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.checkout-header .checkout-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--title-color);
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
}

.checkout-header .checkout-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 600px) {
    .checkout-header .checkout-title {
        font-size: 1.4rem;
    }
    .checkout-header .checkout-subtitle {
        font-size: 0.85rem;
    }
}

/* Trust badge — теперь флекс, всегда в ряд */
.trust-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.7rem 1rem;
    background: #f4f7fc;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e8ecf1;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

@media (max-width: 600px) {
    .trust-badge {
        gap: 0.6rem;
        padding: 0.6rem 0.8rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .trust-item {
        font-size: 0.78rem;
    }
}

/* Secure note — одна строка, компактная */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.2rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    flex-wrap: nowrap;
    width: 100%;
}

.secure-note i {
    color: #79b337;
    font-size: 1rem;
    flex-shrink: 0;
}

.secure-note strong {
    color: #333;
}

@media (max-width: 600px) {
    .secure-note {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    .secure-note span {
        font-size: 0.75rem;
    }
}

/* Trust stack — вертикально, НЕ рядом с другими элементами */
.trust-stack {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0.5rem 0 1rem 0;
    width: 100%;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    padding: 0.3rem 0;
}

.trust-pill i {
    color: #79b337;
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust-pill {
        font-size: 0.78rem;
    }
}

/* Убираем возможные грид-конфликты — переопределяем для блока card item */
#cc_card_info_element {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
}

/* Убираем плавающий cards_s2 справа */
.form-group.card.item::after {
    display: none;
}

/* Делаем кнопку Pay адаптивной */
.btn-wrap>#sendbutton {
    display: inline-block;
    width: auto;
    min-width: 280px;
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

.btn-wrap>#sendbutton i {
    margin-right: 0.3rem;
}

@media (max-width: 520px) {
    .btn-wrap>#sendbutton {
        width: 100%;
        min-width: auto;
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}