/*Thematise your prelander by changing the values within the :root brackets. */

:root {
    /*COLOR PALETTE*/
    --primary-color: #619f31;
    --secondary-color: #619f31;
    --tertiary-color: #952bff;
    --background-color-light: #ffffff;
    --border-color: #eeeeee;
    --box-shadow-color: rgba(0, 0, 0, 0.2);
    --background-color-darker:#333;
    --box-shadow: rgba(64, 0, 255, 0.63);

    /*BACKGROUND IMAGE*/
    --background-image: url(../img/main_bg.jpg);

    /*FONT STYLING*/
    --font-color: #fff;
    --font-color-grey: #cdcdcd;
    --font-color-dark: #000;
    --font-color-darker: #000000;
    --font-color-green: #1e1e1e;
    --font-color-error: #ff0052;
    --font-family: 'Maven Pro', sans-serif;
    --font-family-second: 'Poppins', sans-serif;
}


.plush-container div.popup {
    box-sizing: border-box;
    position: fixed;
    z-index: 1000000;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    min-width: 200px;
    height: 160px;
    box-shadow: 0px 0px 15px 1px rgb(0 0 0 / 30%);
    border-radius: 5px;
    padding: 1em;
    background: white;
    font-family: Roboto,Noto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: initial !important;
    color: rgba(0,0,0,1.00);
}


.page {
    background: var(--background-image) no-repeat center top / cover;
    min-height: 100vh;
    min-height: -webkit-calc(var(--vh, 1vh) * 100);
    min-height: calc(var(--vh, 1vh) * 100);
    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-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 10;
}

#TXT_TERMS {
    color: var(--font-color-grey);
    font-size: 13px;
}

.mainimg {
    margin-top: -15px;
    margin-bottom: -10px;
    height: 150px;
    width: 150px;
}

.btn {
  background: linear-gradient(-135deg, #619f31 0, #619f31 100%);
    color: #fee63c;
    font-size: 18px;
}

.answer-button {
  background: linear-gradient(-135deg, #603c2d 0, #603c2d 100%);
  color: #fee63c;
    font-size: 18px;
    font-weight: 600;
    border-radius: 999px;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.title--primary {

    font-size: 26px;
    font-weight: 900;
    color: var(--font-color-dark);
    font-family: var(--font-family);
}

.main--6 .subtitle {
    color: var(--font-color-darker);
    font-size: 18px;
}

.main--6 .text {
    color: var(--font-color-grey);
    font-size: 12px;
}

.step--current,
.step--done {
    border-color: var(--font-color);
}

.step--current::before,
.step--done::before,
.step--done::after {
    background-color: var(--font-color);
}

.card {
    border-radius: 10px;
    max-width: 360px !important;
    padding: 20px;
    -webkit-box-shadow: 0 4px 10px var(--box-shadow-color);
    box-shadow: 0 4px 10px var(--box-shadow-color);
    border-radius: 10px;
    background: var(--background-color-light);
    color: var(--font-color-dark);

    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

.card p {
    font-size: 14px;
}


.main {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.foot {
    background-color: var(--font-color-dark);
}

.btn {
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 1);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@media (max-width: 720px) {
    #TXT_TERMS {
        font-size: 11px;
    }
}


.header {
    background: url(../img/logo.png);
    margin-bottom: 5px !important;
    min-width: 160px;
    min-height: 68px;

    background-repeat: no-repeat;
    background-size: auto 100% !important;
    background-position: top center;
}

.header-text {
    margin-top: 5px;
    color: var(--font-color-green);
    font-size: 1.7rem;
    font-weight: 900;
}

@media screen and (max-width: 992px) {
    .header {
        background: url(../img/logo.png) !important;
        background-repeat: no-repeat !important;
        background-position: center top !important;
        background-size:auto 100% !important;
    }
}

.product-wrap img {
    width: 60%;
}

.main_icon {
    color: #4d828a;
}

.answer-button::before {
    width: 16px;
    height: 16px;
    box-shadow: inset 0px 1px 1px #989898;
    background: #ffffff;
}

.step--current::before,
.step--done::before,
.step--done::after {
    background: #3f241a !important;
}

.step--current,
.step--done {
    border-color: var(--font-color);
}

.product-wrap {
    display: block !important;
    margin: 0 auto !important;
}

div#clocker {
    margin: 20px 0px 0px 0px;
    font-weight: bold;
    font-size: 18px;
}

.header_icon {
    margin-right: 0 !important;
    height: unset;
}

.header {
    display: block !important;
    margin-bottom: 0px;
}

.tracking-code dd {
    color: var(--font-color-darker) !important;
}

.answer-button:hover {
  background: linear-gradient(-180deg, #3f241a 30%, #3f241a 100%);
    font-weight: 600;
    border-radius: 999px;
}

.btn:hover {
  background: linear-gradient(-180deg, #75aa44 30%, #75aa44 100%);
    /**color: var(--font-color) !important;**/
    color: #fff !important;
}

.header_icon {
    width: 70px;
}

.header_title {
    display: none;
}


h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-family-second);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    background: var(--background-color-darker);
    color: var(--font-color-dark);
    min-width: 320px;
    position: relative;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

::-moz-selection {
    background: #333;
    color: var(--font-color);
    text-shadow: none;
}

::selection {
    background: #333;
    color: var(--font-color);
    text-shadow: none;
}

h1,
.h1 {
    font-size: 2.25rem;
}

h2,
.h2 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #333;
    font-family: var(--font-family);

}

h3,
.h3 {
    font-size: 1.125rem;
}

h4,
.h4 {
    font-size: 1rem;
}

h5,
.h5 {
    font-size: 0.875rem;
}

h6,
.h6 {
    font-size: 0.75rem;
}

h1,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1;
    font-weight: 300;
    color: #333;
}


h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
    margin-bottom: 0;
}

dl dd {
    margin-bottom: 0;
}

img,
p,
ul,
ol,
dl,
pre,
blockquote {
    margin-bottom: 20px;
    margin-top: 0;
}

img:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
pre:last-child,
blockquote:last-child {
    margin-bottom: 0;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border-color);
    height: 1px;
    margin: 15px 0 15px 0;
}

a {
    outline: none !important;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

a::before,
a::after {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

a,
a:focus {
    color: var(--font-color);
}

a:hover,
a:focus:hover {
    color: #16afc5;
}

img {
    max-width: 100%;
}

img:last-child {
    margin-bottom: 0;
}

.img-full {
    width: 100%;
}

.img-round {
    border-radius: 999px;
}

.container {
    max-width: 600px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container--full {
    max-width: 100%;
}

button {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

button,
button:focus,
button:active {
    outline: none !important;
}

button:not(.btn),
button:focus:not(.btn),
button:active:not(.btn) {
    border: none;
}

*[class*="btn-"] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    font: inherit;
    font-family: var(--font-family-second);
    text-align: center;
    text-transform: none;
    margin: 0;
    cursor: pointer;
    overflow: visible;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border-radius: 999px;
    padding: 5px 15px;
}

*[class*="btn-"],
*[class*="btn-"]:hover,
*[class*="btn-"]:active,
*[class*="btn-"]:focus {
    text-decoration: none;
}

table,
.table {
    width: 100%;
}

table th,
.table th {
    font-weight: normal;
}

.form_input {
    vertical-align: middle;
    padding: 0;
    outline: none !important;
}

.form_input .form_input:not(textarea) {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

textarea.form_input {
    resize: none;
    overflow-x: hidden;
    line-height: 1.5;
    padding-top: 8px;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.icon {

    fill: currentColor;
    height: 24px;
    width: 24px;
    vertical-align: middle;
    display: inline-block;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.btn .icon:last-child {
    margin-left: 10px;
}

.btn .icon:first-child {
    margin-right: 10px;
}

.btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    -webkit-box-shadow: 0 4px 10px var(--box-shadow-color);
    box-shadow: 0 4px 10px var(--box-shadow-color);
    border: none;
    border-radius: 999px;
    color: #fee63c;
    font-weight: 600;
    font-size: 18px;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.form_input {
    color: var(--font-color-dark);
    border-color: transparent;
    background-color: transparent;
    font-family: var(--font-family-second);
    font-size: 14px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.form_input::-webkit-input-placeholder {
    color: #ccc;
}

.form_input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

.form_input:-ms-input-placeholder {
    color: #ccc;
}

.form_input:not(textarea) {
    line-height: 38px;
}

textarea.form_input {
    resize: none;
}

.form_group:not(:last-child) {
    margin-bottom: 20px;
}

.form_group--inline {
    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;
}

.form_label {
    font-weight: 700;
}

.form_currency {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 120px;
}

.form_currency .form_input {
    padding-left: 20px;
    width: 100%;
    height: 30px;
}

.form_currency::before {
    content: attr(data-currency);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10px;
    z-index: 10;
    color: var(--font-color-dark);
    font-weight: 700;
}

.form_currency.error .form_input {
    border-bottom: 1px solid #ff0052;
    color: var(--font-color-error);
}

.form_currency.error::before {
    color: var(--font-color-error);
}

.form_error {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: currentColor;
    color: var(--font-color-error);
    padding: 5px 8px;
    border-radius: 2px;
    bottom: 100%;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 20px;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.form_error b {
    color: var(--font-color);
    font-size: 10px;
}

.form_error::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    -moz-transform: scale(0.9999);
    border-width: 5px 5px 0 5px;
    border-top-color: currentColor;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
}

.error .form_error {
    opacity: 1;
    visibility: visible;
    margin-bottom: 10px;
}

.header {
    -ms-flex-item-align: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    max-width: 600px !important;
    position: relative;
    z-index: 10;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--font-color);
}

.header_icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    margin-right: 10px;
}

.header_title {
    line-height: 1;
    margin-top: 0;
    color: var(--font-color);
    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: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.header_title .h_title {
    font-weight: 600;
    font-size: 24px;
    display: block;
    margin-bottom: 0;
}

.header_title .h_subtitle {
    opacity: .5;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    display: block;
    margin-bottom: 0;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    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;
    z-index: 10;
}

.main strong {
    font-weight: 500;
}

.main .btn {
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 20px;
}

.main--2,
.main--3,
.main--4,
.main--5,
.main--6 {
    display: none;
}

.main_icon {
    width: 120px;
    height: 120px;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: all .3s ease .5s;
    -o-transition: all .3s ease .5s;
    transition: all .3s ease .5s;
    color: var(--font-color);
    display: none;
}

.checked .main_icon {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    display: inline-block;
}

.main_icon:not(:last-child) {
    margin-top: 20px;
    margin-bottom: 30px;
}

.title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    color: var(--font-color-dark);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.spinner {
    width: 80px;
    height: 80px;
    margin: 40px auto 60px;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.5s infinite ease-in-out;
    animation: sk-scaleout 1.5s infinite ease-in-out;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.checked .spinner {
    opacity: 0;
    visibility: hidden;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.loading-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
}

.loading-list li {
    margin-bottom: 15px;
    -webkit-animation: blink 3s ease infinite;
    animation: blink 3s ease infinite;
    opacity: 0;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.loading-list li:nth-child(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.loading-list li:nth-child(3) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.tracking-code {
    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;
}

.tracking-code dt,
.tracking-code dd {
    margin: 0;
    padding: 0;
}

.tracking-code dt {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.tracking-code dd {
    text-transform: uppercase;
    color: var(--font-color);
    background-color: #f0f0f0;
    width: 100%;
    max-width: 300px;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.badge {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

.badge::after {
    content: attr(data-badge);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    color: var(--font-color);
    background-color: #ff0052;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    top: -10px;
    right: -15px;
}

.foot {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(17, 17, 17, 0.4);
    color: var(--font-color);
}



.foot_title {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--font-color);
}

.foot_icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.foot_icons img {
    max-width: 60px;
    max-height: 60px;
    margin: 0 15px;
}

.steps-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.step {
    width: 30px;
    height: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    margin-left: 26px;
    margin-right: 26px;
    position: relative;
}

.step::before,
.step::after {
    content: '';
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.step:not(:last-child)::after {
    width: 40px;
    height: 2px;
    background-color: var(--border-color);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 100%;
    margin-left: 8px;
}

.step::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--font-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.step--current,
.step--done {
    border-color: var(--font-color);
}

.step--current::before,
.step--done::before {
    background-color: var(--font-color);
    opacity: 1;
}

.step--done::before {
    width: 100% !important;
    height: 100% !important;
}

.step--done::after {
    background-color: #fff !important;
}

.product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product img {
    margin-right: 15px;
    margin-bottom: 0;
}

.product * {
    text-align: left;
}

.product_content {
    margin-top: 15px;
}

.product_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 11px;
    margin-bottom: 5px;
}

.product_info dt,
.product_info dd {
    margin: 0;
}

.product_info dt {
    color: #333;
    margin-right: 3px;
    font-weight: 600;
}

.product-image .product-wrap {
    justify-content: center;
    margin-bottom: 10px;
}

.final-product-cta .product-wrap {
    justify-content: center;
}

.product-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.question {
    display: none;
}

.question--1 {
    display: block;
}

.question_answers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
}

.question_answers input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.question_answers label,
.answer-button {
    position: relative;
    padding: 15px;
    padding-left: 46px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
}

.question_answers label:not(:last-child),
.answer-button:not(:last-child) {
    margin-bottom: 10px;
}

.question_answers label::before,
.question_answers label::after,
.answer-button::before,
.answer-button::after {
    content: '';
    border-radius: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.question_answers label::before,
.answer-button::before {
    width: 16px;
    height: 16px;

}

.question_answers label::after,
.answer-button::after {
    width: 10px;
    height: 10px;

    opacity: 0;
    margin-left: 3px;
}

.question_answers .icon {
    margin-right: 10px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.question_answers input:checked+label {
    color: var(--font-color);
}

.question_answers input:checked+label::before {
    background-color: var(--font-color);
}

.question_answers input:checked+label::after {
    opacity: 1;
}

.question_error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--font-color-error);
    background-color: var(--font-color);
    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;
    text-align: center;
}

.color-primary {
    color: #27cfe7 !important;
}

.color-alt {
    color: #ff0052 !important;
}

.clean {
    margin: 0;
    padding: 0;
}

.no-transition,
.no-transition * {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.amp {
    font-family: Baskerville, Palatino, "Palatino Linotype", "Book Antiqua", serif;
    font-size: 1.4em;
    font-style: italic;
    font-weight: normal;
}

.nowrap {
    white-space: nowrap;
}

.nounderline {
    text-decoration: none !important;
}

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

.flex--j-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex--a-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex--a-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.spaced0 {
    margin-bottom: 0px !important;
}

.spaced1 {
    margin-bottom: 10px !important;
}

.spaced2 {
    margin-bottom: 20px !important;
}

.spaced3 {
    margin-bottom: 30px !important;
}

.spaced4 {
    margin-bottom: 40px !important;
}

.spaced5 {
    margin-bottom: 50px !important;
}

.spaced6 {
    margin-bottom: 60px !important;
}

.spaced7 {
    margin-bottom: 70px !important;
}

.spaced8 {
    margin-bottom: 80px !important;
}

.spaced9 {
    margin-bottom: 90px !important;
}

.spaced10 {
    margin-bottom: 100px !important;
}

.mr-auto {
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

@media (min-width: 560px) {
    .btn {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .product_info {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .form_group:not(:last-child) {
        margin-bottom: 30px;
    }

    .page {
        font-size: 16px;
    }

    .header {
        margin-top: 30px;
        margin-bottom: 50px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header_icon {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .header_title {
        font-size: 36px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .header_title small {
        font-size: 18px;
    }

    .main {
        margin-bottom: 40px;
    }

    .main .btn {
        margin-top: 20px;
    }

    .card {
        min-width: 400px;
        max-width: 400px;
        padding: 30px;
    }

    .card p {
        font-size: 14px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .subtitle {
        font-size: 20px;
    }

    .badge img {
        width: 80px;
    }

    .foot {
        margin-top: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .foot_title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .foot_icons img {
        max-width: 80px;
        max-height: 80px;
        margin: 0 30px;
    }

    .steps-wrap {
        margin-bottom: 50px;
    }

    .step {
        width: 40px;
        height: 40px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .step::after {
        width: 70px !important;
    }

    .step--current::before {
        width: 24px;
        height: 24px;
    }

    .product-wrap img {
        margin-bottom: 0;
    }

    .product img {
        margin-right: 30px;
    }

    .product_content {
        margin-top: 0;
    }

    .product_info {
        font-size: 14px;
    }
}
@media screen and (max-width:400px) {
.card {
    width: 95% !important;
    padding: 20px;
    -webkit-box-shadow: 0 4px 10px var(--box-shadow-color);
    box-shadow: 0 4px 10px var(--box-shadow-color);
    border-radius: 10px;
    background: var(--background-color-light);
    color: var(--font-color-dark);
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}
}