/*
Theme Name: Medicloud
Theme URI:
Author: Rufat Asadzada
Author URI:
Description: Your virtual access to real money.
Tags:
Version: 1.0
Requires at least:
Tested up to:
Requires PHP:
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virtualcard
This theme, like WordPress, is licensed under the GPL.
*/

/*=============================================================================*/
/* FONT FAMILIES */
/*=============================================================================*/
@font-face {
    font-family: Euclid;
    src: url("fonts/EuclidCircularA-Regular.ttf");
}

/*=============================================================================*/
/* COLORS */
/*=============================================================================*/
:root {
    --blue: #22c4fa;
    --basic-900: #192038;
    --h2: #192038;
    --basic-700: #2e3a59;
    --text: #364363;
    --dark: #17264b;
    --green: #2ed06d;
    --text-light: #aaaaaa;
    --bg-light: #fafafa;
    --semi-blue: #6674ac;
    --basic-300: #edf1f7;
    --input-outline: #8d9096;
    --button: #2ed06d;
    --basic-100: #FFFFFF;
    --basic-400: #E4E9F2;
    --basic-500: #C5CEE0;
    --basic-600: #8f9bb3;
    --basic-800: #222b45;
    --gray-bg: #f7f8fb;
    --text-3: #2e4369;
    --copy: #5f7aa4;
    --telegram: #4995be;
    --telegram-light: #6cc1e3;
    --brand-neutral-500: #2e4369;
    --brand-neutral-100: #dbe9f7;
    --danger: #FF3D71;
    --info-500: #0095FF;
    --warning-100: #FFFDF2;
    --warning-500: #FFAA00;
    --text-color-accent-link: #3366FF;
    --transparent-info: rgba(0, 149, 255, 0.08);
}

/*=============================================================================*/
/* Z-INDEX */
/*=============================================================================*/
:root {
    --z-hidden: -10;
    --z-normal: 10;
    --z-over-normal: 20;
    --z-overlay: 30;
    --z-over-overlay: 40;
    --z-highest: 50;
}

/*=============================================================================*/
/* GENERAL OPTIONS */
/*=============================================================================*/
html {
    font-size: 16px;
}

script,
style {
    display: none !important;
}

body *, body {
    font-size: inherit;
    font-family: Euclid, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--text);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: none;
    width: 100%;

    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;

    order: 10;
}

h1, h2, h3, h4, h5, h6 {
    display: inline-flex;
    flex-direction: row;
    font-style: normal;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    justify-content: center;
    line-height: 1.33;
    color: var(--basic-900);
}

p {
    display: inline;
    line-height: 1.5;
    margin-bottom: 1em;
}

a, small, b, u, i, span, strong, em {
    display: inline-flex;
    flex-direction: row;
    width: auto;
}

ul, ol {
    display: block;
}

ul > li, ol > li {
    display: list-item;
    margin: 0 0 0.3em 1.5em;
    width: Calc(100% - 1.5em);
    line-height: 1.5;
}

button,
.btn {
    cursor: pointer;
    transition: filter 300ms;
}

button:hover, .btn:hover, button:active, .btn:active {
    filter: brightness(80%);
}

a, a:visited, a:focus, a:hover, a:active {
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

.relative {
    position: relative;
}

p em {
    display: inline;
    color: var(--green);
    width: auto;
    font-style: normal;
    font-size: 1.25rem;

}

/*=============================================================================*/
/* MAIN GRID */
/*=============================================================================*/

html, body {
    overflow-x: hidden;
}

html, body, header, footer, main {
    min-width: 360px;
}

.container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 1em;
}

@media (min-width: 600px) {
    .container {
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
        padding: 0 2em;
    }
}

/*=============================================================================*/
/* LINKS */
/*=============================================================================*/

a, a:visited, a:focus, a:hover, a:active {
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

/*=============================================================================*/
/* HIDE - SHOW */
/*=============================================================================*/

.hidden {
    display: none !important;
}

.mobile-show {
    display: flex !important;
}

.mobile-hide {
    display: none !important;
}

@media (min-width: 768px) {
    .tablet-show {
        display: flex !important;
    }

    .tablet-hide {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .desktop-show {
        display: flex !important;
    }

    .desktop-hide {
        display: none !important;
    }
}

/*=============================================================================*/
/* MAIN STYLES
/*
/*      PRELOADER COMPONENT
/*      TOP NAVIGATION SECTION
/*      RIGHT NAVIGATION COMPONENT
/*      HEADLINE SECTION
/*      REGISTER FORM
/*      ADVANTAGES SECTION
/*      TRY NOW SECTION
/*      SIMPLE FOOTER SECTION
/*      NOTIFICATION COMPONENT
/*
/*=============================================================================*/

/*=============================================================================*/
/* PRELOADER COMPONENT */
/*=============================================================================*/

.preloader {
    position: fixed;
    justify-content: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    z-index: var(--z-highest);
}

.preloader__row {
    position: relative;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #22c4fa;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 1;
}

.loaded .preloader {
    z-index: var(--z-hidden);
    opacity: 0;
}

/*=============================================================================*/
/* TOP NAVIGATION SECTION */
/*=============================================================================*/
.top-navigation {
    padding: 1em 0;
}

.top-navigation .container {
    align-items: center;
}

.top-navigation .horizontal-logo {
    width: 9rem;
    height: 1.75rem;
}

@media (min-width: 1024px) {
    .top-navigation .horizontal-logo {
        width: 12.5rem;
        height: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .top-navigation {
        padding: 2em 0;
    }

    .top-navigation .horizontal-logo {
        width: 12.5rem;
        height: 2.5rem;
    }
}

/*=============================================================================*/
/* RIGHT NAVIGATION COMPONENT */
/*=============================================================================*/

.right-navigation {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: auto;
}

.telegram-support {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: auto;
}

.telegram-support span {
    width: auto;
    color: var(--brand-neutral-500);
    padding-left: 0.6rem;
    font-weight: 600;
}

.telegram-support svg {
    width: auto;
}

.telegram-support svg path {
    stroke: var(--brand-neutral-500);
}

.telegram-support:hover span {
    color: #22c4fa
}

.telegram-support:hover svg path {
/*    stroke: var(--green);*/
    stroke: #22c4fa;
}

.menu-separator {
    background-color: var(--brand-neutral-100);
    width: 1px;
    height: 1.5rem;
    margin: 0 1.625rem;
}

.social-icons {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 6.5rem;
}

.social-icons a {
    width: 1.5rem;
}

.social-icons a:hover svg path {
    fill: var(--brand-neutral-500);
}

.social-icons a.reverse:hover svg path {
    stroke: var(--brand-neutral-500);
    fill: white;
}

@media (min-width: 768px) {
    .right-navigation {
        width: 16rem;
    }
}

/*=============================================================================*/
/* HEADLINE SECTION */
/*=============================================================================*/
.headline {
    padding: 2.5rem 0 5rem;
}

.headline .container {
    justify-content: center;
    position: relative;
}

.headline .headline-image {
    width: 264px;
    margin: 0 0 3rem 0;
}

.headline .headline-image img:first-child {
    margin: 0 0 0.875rem;
}

.headline h1 {
    margin: 0 0 3rem;
    font-weight: 600;
}

.headline .apply-why {
    margin: 0 0 2rem;
}

.headline .apply-why a {
    display: inline;
    text-decoration: underline;
    color: var(--info-500);
}

.headline .apply-why p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-3);
    margin: 0 0 1rem;
    font-weight: 400;
}

.headline .apply-why h2 {
    font-size: 1.2rem;
    line-height: 2rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    text-align: left;
    justify-content: flex-start;
}

.headline .apply-why ul {
    margin: 0 0 1rem;
}

.headline .apply-why li {

}

.headline .apply-why em {
    display: inline-block;
    width: auto;
    text-decoration: none;
    font-style: normal;
    color: #22c4fa;
    font-weight: 700;
    font-size: 1.1em;
}

.headline .time-left {
    flex-direction: row;
    margin: 0 0 3rem;
}

.headline .time-left .clock-icon {
    width: 1.25rem;
    margin: 0 1.125rem 0 0;
    line-height: 1.75rem;
}

.headline .time-left .clock-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.headline .time-left p {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--basic-700);
    margin: 0;
}

@media (min-width: 600px) {
    .headline h1 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .headline {
        min-height: 600px;
    }

    .headline .container {
        flex-direction: column;
    }

    .headline h1 {
        font-size: 2.25rem;
        text-align: left;
        justify-content: flex-start;
        width: 29.75rem;
        margin: 2rem 0;
    }

    .headline .headline-image {
        width: 25rem;
        position: absolute;
        top: 1.25rem;
        right: -100%;
        transition: right 1000ms ease-in-out;
    }

    .headline .headline-image.ready {
        right: 1.5rem;
    }

    .headline .cta {
        width: 29.75rem;
    }

    .headline .apply-why {
        margin-bottom: 2rem;
    }

    .headline .time-left .clock-icon {
        margin-right: 1rem;
    }

}

@media (min-width: 1280px) {

    .headline {
        padding: 2.75rem 0 6rem;
    }

    .headline h1 {
        width: 30.5rem;
        font-size: 3rem;
        line-height: 4rem;
    }

    .headline .headline-image {
        width: 27.75rem;
    }

    .headline .cta {
        width: 37rem;
    }

}

/*=============================================================================*/
/* REGISTER FORM */
/*=============================================================================*/
#registration_form {
    z-index: var(--z-over-normal);
    opacity: 1;
    transition: all 300ms;
}

#registration_form.hide {
    display: none;
    z-index: var(--z-hidden);
    opacity: 0;
}

.register-form {
    position: relative;
}

.register-form button {
    background: var(--button);
    color: white;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.register-form .input-holder {
    position: relative;
    margin: 0 0 0.5rem;
}

.register-form input {
    background: var(--basic-300);
    outline: var(--input-outline);
    border-radius: 1em;
    padding: 1rem 1.5rem;
    line-height: 1.5rem;
}

.register-form input#promo_code:disabled {
    color: var(--green);
}

.register-form input::placeholder {
    font-size: 1rem;
    color: var(--basic-600);
}

.register-form input.disabled {
    color: var(--basic-500);
}

.register-form .input-holder .info {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    z-index: var(--z-over-normal);
    cursor: pointer;
}

.register-form .input-holder .info svg {
    width: 1.5rem;
    height: 1.5rem;
}

.register-form .input-holder .info svg path {
    transition: fill 300ms;
}

.register-form .input-holder .info:hover svg path {
    fill: var(--brand-neutral-500);

}

.subscription-message.success {
    font-family: Euclid, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--basic-700);
}

.register-form .validation-error {
    font-size: 0.8rem;
    color: var(--danger);
    padding: 0;
    text-align: left;
    align-items: flex-start;
    line-height: 1rem;
    height: 1rem;
}

.subscription-message.success:before {
    content: "";
    display: block;
    background: url("images/checkmark-circle.png") no-repeat;
    width: 50px;
    height: 50px;
    float: left;
    margin: 0 6px 0 0;
}

.register-form .resend {
    text-decoration: underline;
    color: var(--info-500);
    margin: 1rem 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

@media (min-width: 768px) {
    .register-form .form {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .register-form button {
        width: 48%;
        margin: 0;
    }

    .register-form .input-holder {
        width: 48%;
        margin: 0 0 0.5em;
    }
}

@media (min-width: 1024px) {
    .headline button,
    .register-form .input-holder {
        width: 82%;
        margin-bottom: 0.5rem;
    }

    .register-form .resend {
        padding-right: 16%;
        margin-bottom: 0;
    }
}

@media (min-width: 1280px) {
    .register-form .resend {
        justify-content: flex-start;
        padding: 0 0 0 0.5rem;
        margin: 0 0 1rem;
    }

    .register-form {
        display: flex;
        align-items: flex-start;
    }

    .register-form .form {
        width: 37rem;
    }

    .headline button,
    .headline .register-form .input-holder {
        margin: 0 0 0.5rem;
        width: Calc(50% - 1rem);
    }

    .headline button,
    .headline .register-form input {
        line-height: 1.5rem;
    }

    .register-form input {
        line-height: 1.5rem;
    }

}

/*=============================================================================*/
/* ADVANTAGES SECTION */
/*=============================================================================*/

.advantages {
    background: var(--gray-bg);
}

    .advantages h2 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        text-align: center;
        color: #22c4fa;
        margin: 2rem 0 1.5rem;
        font-weight: 400;
    }

.advantages h3 {
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: var(--text-3);
    margin: 0 0 3rem;
    font-weight: 400;
}

.advantages-list {
    margin: 0 0 4rem;
}

.advantages-list .advantages-item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 3rem;
}

.advantages-list .advantages-item .text {
    width: Calc(100% - 3.5rem);
    padding: 0 0 0 1em;
    flex: auto;
}

.advantages-list .advantages-item .text > * {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
}

.advantages-list .advantages-item .text h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--text-3);
    margin: 0.5rem 0 0.25rem;
    font-weight: 400;
}

.advantages-list .advantages-item .text p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--basic-600);
    margin: 0;
}

.advantages-list .advantages-item .icon {
    flex: auto;
    width: 3.5rem;
}

@media (min-width: 768px) {
    .advantages-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .advantages-list .advantages-item {
        width: 50%;
        padding: 0 1rem 0 0;
        height: 5rem;
    }
}

@media (min-width: 1024px) {
    .advantages h3 {
        font-size: 2rem;
        line-height: 3rem;
        padding: 0 6%;
    }

    .advantages-list {
        margin: 0 0 3rem;
    }

    .advantages-list .advantages-item .text p {
        font-size: 1rem;
    }
}

@media (min-width: 1280px) {
    .advantages-list .advantages-item {
        width: 33%;
        padding: 0 1rem 0 0;
        height: 5rem;
    }

    .advantages h3 {
        margin-bottom: 5rem;
    }

    .advantages-list {
        margin-bottom: 2.5rem;
    }
}

/*=============================================================================*/
/* TRY NOW SECTION */
/*=============================================================================*/
.try-now {
    padding: 5rem 0 5.5rem;
}

.try-now h2 {
    margin: 0 0 2.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    color: var(--h2);
}

.try-now .apply-why {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-3);
    margin: 0 0 3rem;
    font-weight: 400;
}

.try-now .apply-why em {
    display: inline-block;
    width: auto;
    text-decoration: none;
    font-style: normal;
    color: var(--green);
    font-weight: 700;
    font-size: 1.1em;
}

.try-now .register-form .form {
    max-width: 24rem;
}

@media (min-width: 768px) {
    .try-now .register-form .form {
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .try-now .register-form input {
        width: 100%;
    }

    .try-now .register-form .form {
        max-width: 24rem;
    }

    .try-now h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .try-now .apply-why {
        margin: 0 0 3rem;
        padding: 0 17rem;
        color: var(--basic-600);
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .try-now .register-form button {
        width: 100%;
        margin: 1.5rem 0;
    }

    .try-now button,
    .try-now .input-holder {
        width: 100%;
    }

}

@media (min-width: 1280px) {

    .try-now h2 {
        margin: 8rem 0 1.5rem;
    }

    .try-now .apply-why {
        padding: 0 22rem;
    }

    .try-now .register-form {
        align-items: center;
    }

    .try-now button,
    .try-now #register_button,
    .try-now .register-form input[type=submit] {
        margin: 1.5rem 0;
    }

    .try-now {
        padding: 0 0 6rem;
    }
}

/*=============================================================================*/
/* SIMPLE FOOTER SECTION */
/*=============================================================================*/
.simple-footer {
    background: var(--gray-bg);
    padding: 4rem 0 2rem;
}

.simple-footer .container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.simple-footer .horizontal-logo {
    width: 10.125rem;
    height: 2rem;
    margin: 0 0 4.25rem;
}

.simple-footer .social-icons {
    width: 9rem;
    margin-bottom: 4.75rem;
}

.simple-footer .social-icons a {
    width: 1.5rem;
}

.simple-footer .copy {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    margin: 0 0 2.125rem;
}

.simple-footer .copy > * {
    display: flex;
    width: auto;
    flex: none;
    color: var(--copy);
    font-style: normal;
}

.simple-footer .copy em {
    font-size: 1.3rem;
    padding: 0 0.65rem 0 0;
}

@media (min-width: 1024px) {
    .simple-footer {
        padding: 4rem 0;
    }

    .simple-footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .simple-footer .horizontal-logo {
        margin: 0;
    }

    .simple-footer .social-icons {
        margin: 0;
        order: 11;
    }

    .simple-footer .copy {
        font-size: 1.2rem;
        width: auto;
        margin: 0;
    }
}

/*=============================================================================*/
/* NOTIFICATION COMPONENT */
/*=============================================================================*/

.notification {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

#notification {
    z-index: var(--z-hidden);
    opacity: 0;
    transition: all 300ms;
}

#notification.display {
    position: relative;
    z-index: var(--z-overlay);
    opacity: 1;
}

.notification .icon,
.notification .icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.notification .icon svg {
    margin-left: -0.25rem;
}

.notification .message {
    padding: 0.5rem 0 0 0.5rem;
    width: Calc(100% - 2.5rem);
    align-items: flex-start;
}

.notification .message p {
    line-height: 1.5rem;
    color: var(--basic-700);
    margin: 0;
}

.notification .message input {
    color: var(--text-color-accent-link);
    cursor: pointer;
    /* text-align: left; */
    /* align-items: flex-start; */
    background: transparent;
    /* background: var(--gray-bg); */
    padding: 0;
    margin: 1rem 0 0;
    width: auto;
}

/*=============================================================================*/
/* LOCAL PRELOADER COMPONENT */
/*=============================================================================*/

.local_preloader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-hidden);
    transition: 150ms opacity;
    opacity: 0;
    justify-content: center;
    background: white;
}

.local_preloader__row {
    position: relative;
    width: 70px;
    height: 70px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.local_preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: var(--green);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.local_preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes local_preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes local_preloader-bounce {
    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.local_preloader.display {
    z-index: var(--z-highest);
    opacity: 1;
}

/*=============================================================================*/
/* YOP POLL COMPONENT */
/*=============================================================================*/

.poll {
    display: flex;
    background: white;
    padding: 0;
    border: none;
    margin: 0;
    height: auto;
    overflow: hidden;
}

.poll div * {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.poll .basic-yop-poll-container {
    border: none !important;
}

.poll .basic-question-title h5 {
    width: 100%;
    margin-bottom: 1em !important;
    font-weight: bold !important;
    font-size: 1.25rem !important;
    line-height: 1.75rem;
    color: var(--basic-700) !important;
    justify-content: flex-start;
    text-align: center !important;
    padding: 0 !important;
}

.poll .basic-answer-label {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.poll ul li {
    padding: 0.5rem !important;
    padding-left: 1.5rem !important;
    flex-wrap: wrap;
}

.poll .basic-answer-label input {
    flex: none;
    width: 15px;
    margin-right: 10px !important;
}

.poll .basic-answer-label span {
    width: Calc(100% - 25px);
    display: inline;
    color: var(--text) !important;
    line-height: 1.5;
}

.poll .basic-input-text.form-control {
    padding: 6px 12px !important;
}

.poll .basic-stats {
    padding: 20px !important;
}

.poll .basic-stats * {
    width: auto;
}

.poll .basic-stats-separator {
    display: none;
}

.poll .basic-question-title {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 2rem !important;
}

.poll .basic-vote {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.poll .basic-answers {
    background: var(--gray-bg) !important;
    padding: 2rem 0 !important;
    border-radius: 1rem !important;
}

.basic-yop-poll-container .basic-overlay {
    background: rgba(255, 255, 255, .5) !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

.poll .basic-vote-button,
.poll .basic-results-button {
    display: flex !important;
    cursor: pointer;
    transition: filter 300ms;
    background: var(--button) !important;
    color: white !important;
    font-size: 1rem !important;
    border-radius: 1rem !important;
    padding: 1rem 1.5rem !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100% !important;
    margin: 0 0 1.5rem !important;
}

.poll .basic-vote-button:hover,
.poll .basic-results-button:hover {
    filter: brightness(80%) !important;
}

.poll .basic-inner .basic-message {
    display: none !important;
}

.poll .progress {
    display: flex;
    align-items: flex-start;
    height: 5px !important;
}

.poll .progress .progress-bar {
    background-color: var(--green) !important;
}

.poll .basic-answer-results-details {
    color: var(--green) !important;
}

.basic-yop-poll-container .basic-answers-results .basic-answer-content span {
    width: auto;
    max-width: 100%;
    padding: 0 0.5em 0 0 !important;
    color: var(--text-light) !important;
}

.basic-yop-poll-container .basic-answers-results .basic-answer-content span:first-child {
    color: var(--text) !important;
}

@media (min-width: 1024px) {
    .poll {
        width: 30rem;
        padding: 0 2rem 5rem;
    }
}

/*=============================================================================*/
/* REFERRAL DASHBOARD */
/*=============================================================================*/

#referral_dashboard {

}

#referral_dashboard section {

}

#referral_dashboard .top-section {

}

#referral_dashboard .container {

}

#referral_dashboard .introduction {
    margin-bottom: 1rem;
}

#referral_dashboard .introduction_image {
    margin: 2.5rem 0 3rem;
}

#referral_dashboard .introduction_image svg {
    height: auto;
}

#referral_dashboard .introduction_title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.875rem;
    letter-spacing: 0;
    text-align: center;
    color: var(--basic-900);
    margin-bottom: 2rem;
}

#referral_dashboard .introduction_description p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--basic-700);
    margin-bottom: 2rem;
}

#referral_dashboard .introduction_description span {
    display: inline;
}

#referral_dashboard .introduction_description em {
    display: inline;
    font-size: 1.2em;
    color: var(--green);
    font-style: normal;
}

#referral_dashboard .referral_sharing_link_caption {
    text-align: left;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--basic-700);
    margin-bottom: 1rem;
}

#referral_dashboard .referral_sharing_link {
    background: var(--basic-300);
    outline: var(--input-outline);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    line-height: 1.5rem;
    color: var(--basic-700);
    margin-top: 0.5rem;
}

#referral_dashboard .referral_sharing_link_text_caption {

}

#referral_dashboard .referral_sharing_link_text_caption span {
    text-align: left;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5rem;
}

#referral_dashboard .referral_sharing_link_text {
    background: var(--basic-300);
    outline: var(--input-outline);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    line-height: 1.5rem;
    color: var(--basic-700);
    max-width: 100%;
    min-width: 100%;
    min-height: 10rem;
    margin-top: 0.5rem;
}

#referral_dashboard .referral_sharing_link_copy_button {
    background: var(--info-500);
    color: white;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: 1.5rem;
    width: 100%;
    border-radius: 0.5rem;
}

#referral_dashboard .referral_sharing_line {
    background: var(--basic-300);
    height: 1px;
    width: 100%;
    margin: 1.5rem 0;
}

#referral_dashboard .referral_sharing_link_description {
    margin: 1rem 0;
}

#referral_dashboard .referral_sharing_link_description ul {
    margin: 0;
}

#referral_dashboard .referral_sharing_link_description em {
    display: inline;
    font-size: 1.2em;
    color: var(--green);
    font-style: normal;
}

#referral_dashboard .referral_sharing_promo_caption {
    text-align: left;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--basic-700);
    margin: 1rem 0;
}

#referral_dashboard .referral_sharing_promo_container {
    position: relative;
    margin: 0.5rem 0 0;
}

#referral_dashboard .referral_sharing_promo {
    outline: var(--input-outline);
    border-radius: 0.5rem;
    line-height: 1.5rem;
    color: var(--basic-700);
    background: var(--warning-100);
    border: 1px solid var(--warning-500);
    padding: Calc(1rem - 1px) Calc(1.5rem - 1px) Calc(1rem - 1px) Calc(4rem - 1px);
}

#referral_dashboard .referral_sharing_promo_container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5rem;
    margin: 1.1rem;
}

#referral_dashboard .referral_sharing_promo_copy_button {
    background: var(--info-500);
    color: white;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: 1.5rem;
    width: 100%;
    border-radius: 0.5rem;
}

#referral_dashboard .referrals_summary {
    background: var(--basic-100);
    border: 1px solid var(--basic-400);
    box-sizing: border-box;
    border-radius: 0.5rem;
    margin: 3rem 0;
    padding: 1.5rem;
}

#referral_dashboard .referrals_summary_mobile {
    color: var(--basic-900);
    margin: 0 0 1rem;
}

#referral_dashboard .referrals_summary_invited {

}

#referral_dashboard .referrals_summary_invited_text {
    width: auto;
}

#referral_dashboard .referrals_summary_invited_number {
    font-size: 1.25rem;
    color: var(--green);
    width: auto;
}

#referral_dashboard .referrals_summary_income {

}

#referral_dashboard .referrals_summary_income_text {
    width: auto;
}

#referral_dashboard .referrals_summary_income_number {
    font-size: 1.25rem;
    color: var(--green);
    width: auto;
}

#referral_dashboard .referrals_summary_income .manat svg {
    width: 1.5rem;
    height: auto;
}

#referral_dashboard .referrals_summary_condition {
    margin-top: 1rem;
}

#referral_dashboard .referrals_pop_up {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-hidden);
    opacity: 0;
}

#referral_dashboard .referrals_pop_up.show {
    z-index: var(--z-overlay);
    opacity: 1;
}

#referral_dashboard .referrals_pop_up_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#referral_dashboard .referrals_pop_up_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background: white;
    padding: 1rem 2rem 2rem;
    border-radius: 0.5rem;
    max-width: 18rem;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#referral_dashboard .referrals_pop_up_content_image {
    height: auto;
    width: 6rem;
    margin: 1rem;
}

#referral_dashboard .referrals_pop_up_content_image svg {
    height: auto;
    width: 100%;
}

#referral_dashboard .referrals_pop_up_content_title {
    font-size: 1.2rem;
    width: 100%;
    margin: 2rem 0;
    text-align: center;
}

#referral_dashboard .referrals_pop_up_content_description {
    width: auto;
    margin: 0 0 1rem;
}

#referral_dashboard .referral_sharing_icons_container {
    width: 100%;
    margin: 1rem 0;
}

#referral_dashboard .addtoany_shortcode {
    margin: 0;
}

#referral_dashboard .addtoany_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#referral_dashboard .addtoany_list > a {
    padding: 0;
    line-height: 0;
    margin: 0 0.3rem 0.3rem 0;
    width: auto;
}

#referral_dashboard .referral_sharing_icons {
    width: 13.5rem;
}

#referral_dashboard .addtoany_share {
    display: none;
}

#referral_dashboard .referrals_pop_up_content_close_button {
    background: transparent;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: 1.5rem;
    width: auto;
    border-radius: 0.5rem;
    border: 1px solid var(--basic-500);
}

#referral_dashboard .poll {
    margin: 0 0 5rem;
}

#referral_dashboard .poll .basic-vote-button,
#referral_dashboard .poll .basic-results-button {
    background: var(--info-500) !important;
    color: white !important;
    font-size: 1rem !important;
    padding: 1rem 1.5rem !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    line-height: 1.5rem !important;
    width: 100% !important;
    border-radius: 0.5rem !important;
}

#referral_dashboard .welcome_bonus,
#referral_dashboard .referral_bonus {
    display: none;
}

#referral_dashboard .referral_contacts {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1rem 0;
}

#referral_dashboard .referral_contacts .image {
    width: 4rem;
    height: auto;
    padding: 0.2rem;
    margin-right: 1rem;
}

#referral_dashboard .referral_contacts svg {
    width: 100%;
    height: auto;
}

#referral_dashboard .referrals_summary_email {
    width: Calc(100% - 5rem);
    font-size: 1rem;
    color: var(--basic-900);
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    word-break: break-all;
    margin: 0;
}

@media (min-width: 600px) {
    #referral_dashboard .referral_sharing_icons {
        width: 27rem;
    }
}

@media (min-width: 1024px) {

    #referral_dashboard .introduction {
        width: Calc(50% - 3rem);
    }

    #referral_dashboard .referrals {
        width: Calc(50% - 3rem);
        padding: 6rem 0 0;
    }

    #referral_dashboard .introduction_description p {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #referral_dashboard .introduction_image {
        width: 24rem;
    }

    #referral_dashboard .referral_sharing_promo_caption {
        width: Calc(50% - 1rem);
    }

    #referral_dashboard .referral_sharing_promo_copy_button {
        width: Calc(50% - 1rem);
        margin: 2rem 0 0 2rem;
    }

    #referral_dashboard .referral_sharing {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #referral_dashboard .referrals_summary {
        margin: 3rem 0 6rem;
    }

    #referral_dashboard .poll {
        width: 100%;
        padding: 0;
    }

    #referral_dashboard .referral_contacts {
        width: auto;
    }

    #referral_dashboard .referral_sharing_icons_container {
        align-items: flex-start;
    }
}

@media (min-width: 1280px) {

    #referral_dashboard .introduction_title,
    #referral_dashboard .introduction_description {
        width: 30.5rem;
    }

    #referral_dashboard .referral_sharing_link_caption {
        width: 24rem;
        order: 8;
    }

    #referral_dashboard .referral_sharing_link_copy_button {
        width: 11rem;
        order: 9;
        margin: 2rem 0 1rem 2rem;
    }

    #referral_dashboard .introduction {
        width: Calc(50% - 5rem);
    }

    #referral_dashboard .referrals {
        width: Calc(50% - 1rem);
    }

    #referral_dashboard .referral_sharing_link_text {
        height: 6rem;
    }

    #referral_dashboard .referral_sharing_link_description ul {
        margin: 0;
    }

    #referral_dashboard .referral_sharing_promo_caption {
        width: 11rem;
    }

    #referral_dashboard .referral_sharing_promo_copy_button {
        width: 11rem;
    }

    #referral_dashboard .poll .basic-vote {
        align-items: flex-end !important;
    }
}

/*=============================================================================*/
/* POST LIST */
/*=============================================================================*/

.posts {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.posts_heading {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.875rem;
    letter-spacing: 0;
    text-align: center;
    color: var(--basic-900);
    margin-bottom: 2rem;
}

.posts_description {
    margin-bottom: 2rem;
}

.post_card {
    margin-bottom: 4.5rem;
    align-items: flex-start;
}

.post_image {
    height: 0;
    overflow: hidden;
    padding-top: 66.66%;
    background: white;
    position: relative;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.post_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post_title {
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--basic-700);
    margin-bottom: 0.5rem;
    align-items: flex-start;
}

.post_date {
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--basic-600);
    margin-bottom: 1rem;
    width: auto;
}

.post_excerpt {
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--basic-600);
    margin-bottom: 1rem;
}

.post_button {
    background: var(--transparent-info);
    border: 1px solid var(--info-500);
    box-sizing: border-box;
    border-radius: 0.25rem;
    flex: none;
    width: auto;
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1rem;
    color: var(--info-500);
    padding: 0.75rem 1.125rem;
    min-width: 9.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 150ms all;
}

.post_button:hover {
    color: var(--basic-100);
    border: 1px solid var(--info-500);
    background: var(--info-500);
}

@media (min-width: 600px) {
    .post_card {
        width: Calc(50% - 1rem);
    }

    .content_outer_sizer {
        height: 0;
        overflow: hidden;
        padding-top: 70%;
        position: relative;
        margin-bottom: 1rem;
    }

    .content_inner_sizer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .content_outer_sizer {
        padding-top: 50%;
    }
}

@media (min-width: 1024px) {
    .post_card {
        width: Calc(25% - 1rem);
    }

    .content_outer_sizer {
        padding-top: 70%;
    }
}

@media (min-width: 1280px) {
    .post_card {
        width: Calc(25% - 1.25rem);
    }

    .content_outer_sizer {
        padding-top: 50%;
    }
}

/*=============================================================================*/
/* SINGLE PAGE */
/*=============================================================================*/

#single {

}

#single .top_section {
    padding: 2.5rem 0 5rem;
    border-bottom: 1px solid var(--basic-400);
    margin-bottom: 5rem;
}

#single .article {

}

#single .article_title {
    margin: 0 0 3rem;
    color: var(--basic-800);
}

#single .article_image {
    margin: 0 0 1rem;
    height: 0;
    overflow: hidden;
    padding-top: 66.66%;
    background: white;
    position: relative;
    border-radius: 0.25rem;
}

#single .article_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#single .article_date {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 1.5rem 0 1rem;
    align-items: flex-start;
}

#single .article_excerpt {
    font-weight: 600;
}

#single .article_content {
    margin-bottom: 1rem;
}

#single .article_content h2,
#single .article_content h3 {
    width: 100%;
    text-align: left;
    color: var(--basic-700);
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

#single .article_content h2 {
    font-size: 1.25em;
    line-height: 1.75rem;
}

#single .article_content h3 {
    font-size: 1.125em;
    line-height: 1.5rem;
}

#single .article_content p {
    margin-bottom: 1.5em;
}

#single .article_social_icons {

}

#single .article_social_icons h3 {
    justify-content: flex-start;
    font-size: 1.125em;
    color: var(--basic-700);
}

#single .addtoany_shortcode {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

#single .addtoany_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 17rem;
}

#single .addtoany_list > a {
    padding: 0;
    line-height: 0;
    margin-bottom: 0.6rem;
    width: auto;
}

#single .addtoany_list > a span {
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50% !important;
}

#single .addtoany_list > a span svg {
    width: 2rem;
    height: 2rem;
}

#single .addtoany_share {
    display: none;
}

#single .article_cta {
    background: var(--basic-300);
    border: 1px solid var(--basic-400);
    box-sizing: border-box;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

#single .article_cta_title {
    margin: 1rem 0 2rem;
    font-weight: 600;
}

#single .article_cta_apply-why {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-3);
    margin: 0 0 1rem;
    font-weight: 400;
}

#single .article_cta_apply-why em {
    display: inline-block;
    width: auto;
    text-decoration: none;
    font-style: normal;
    color: var(--green);
    font-weight: 700;
    font-size: 1.1em;
}

#single .article_register_button {
    background: var(--button);
    color: white;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 15rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: filter 150ms;
}

#single .article_register_button:hover {
    filter: brightness(80%);
}

@media (min-width: 768px) {
    #single .article_cta_apply-why {
        max-width: 35rem;
        text-align: center;
    }
}

@media (min-width: 1280px) {
    #single .top_section .container {
        justify-content: center;
    }

    #single .article {
        max-width: 800px;
    }

    #single .article_title {
        margin: 0 0 2.5rem;
    }

    #single .article_content {
        margin-bottom: 2rem;
    }

    #single .article_content h3, h2 {
        margin-bottom: 2.5rem
    }

}

/*=============================================================================*/
/* SUCCESS PAGE */
/*=============================================================================*/

#success_page .headline svg {
    margin: 0 0 3rem;
    max-width: 15rem;
}

#success_page .headline h1 {
    margin: 0 0 2rem;
}

#success_page .headline .whats_next p {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#success_page .go_home {
    background: var(--button);
    color: white;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 15rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: filter 150ms;
}

#success_page .go_home:hover {
    filter: brightness(80%);
}

@media (min-width: 600px) {
    #success_page .headline .whats_next p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }
}

@media (min-width: 1024px) {
    #success_page .container {
        align-items: center;
    }

    #success_page .headline h1 {
        width: 35rem;
        margin: 1rem 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #success_page .headline .whats_next p {
        width: 40rem;
        font-size: 1.25rem;
        line-height: 2rem;
    }

    #success_page .headline {
        min-height: Calc(100vh - 17rem);
    }
}

/*=============================================================================*/
/* ERROR PAGE */
/*=============================================================================*/

#error_page .headline svg {
    margin: 0 0 3rem;
    max-width: 15rem;
}

#error_page .headline h1 {
    margin: 0 0 2rem;
}

#error_page .headline .whats_the_problem p {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#error_page .go_home {
    background: var(--button);
    color: white;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 15rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: filter 150ms;
}

#error_page .go_home:hover {
    filter: brightness(80%);
}

@media (min-width: 600px) {
    #error_page .headline .whats_the_problem p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }
}

@media (min-width: 1024px) {
    #error_page .container {
        align-items: center;
    }

    #error_page .headline h1 {
        width: 35rem;
        margin: 1rem 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #error_page .headline .whats_the_problem p {
        width: 40rem;
        font-size: 1.25rem;
        line-height: 2rem;
    }

    #error_page .headline {
        min-height: Calc(100vh - 17rem);
    }
}

/*=============================================================================*/
/* POLL SECTION */
/*=============================================================================*/
.poll-section {
    padding: 0 0 4.5rem;
}

.poll-section h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    color: var(--green);
    margin: 2rem 0 1.5rem;
    font-weight: 400;
}

.poll-section .poll .basic-question-title h5 {
    font-size: 1.25rem !important;
    line-height: 2rem;
    text-align: center !important;
    color: var(--text-3) !important;
    margin: 0 0 2rem !important;
    font-weight: 400 !important;
}

.poll-section .poll .basic-answer .basic-input-text.form-control {
    margin: 0.5rem 0 0 !important;
}

.poll-section .poll {
    width: 100%;
}

.poll-section .poll .basic-question-title {
    margin: 0 !important;
}

.poll-section .poll-image {
    display: none;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .poll-section .poll {
        padding: 0;
    }

    .poll-section .poll-image {
        display: flex;
        width: Calc(40% - 2rem);
        position: absolute;
        z-index: var(--z-over-normal);
        top: 20rem;
        left: 4rem;
    }

    .poll-section .poll-image svg {
        width: 100%;
        height: auto;
    }

    .poll-section .poll .basic-element {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
    }

    .poll-section .poll .basic-answers {
        width: Calc(50% - 2rem);
        margin-left: 32rem !important;
    }

    .poll-section .poll .basic-question-title h5 {
        font-size: 2rem !important;
        line-height: 3rem;
        padding: 0 6% !important;
        justify-content: center;
    }

    .poll-section .poll .basic-stats {
        width: Calc(28% - 2rem) !important;
        /*margin-top: -10rem !important;*/
        margin-left: 32rem !important;
        /*margin-left: -24rem !important;*/
    }

    .poll-section .poll .basic-vote {
        width: Calc(28% - 2rem) !important;
        margin-left: 32rem !important;
        /*margin-left: -24rem !important;*/
    }

    .poll-section .poll .basic-stats * {
        font-size: 1.5rem !important;
    }
}

@media (min-width: 1280px) {
    .poll-section .poll-image {
        top: 17rem;
    }

    .poll-section .poll .basic-stats,
    .poll-section .poll .basic-vote {
        margin-left: 40rem !important;
        /*margin-left: -31rem !important;*/
    }

    .poll-section .poll .basic-answers {
        margin-left: 40rem !important;
    }
}

/*=============================================================================*/
/* REFERRAL DASHBOARD POLL */
/*=============================================================================*/

#referral_dashboard .poll .basic-question-title {
    margin: 0 0 1rem !important;
}

#referral_dashboard .poll-request h2 {
    width: 100%;
    margin-bottom: 1em !important;
    font-weight: bold !important;
    font-size: 1.25rem !important;
    line-height: 1.75rem;
    color: var(--basic-700) !important;
    justify-content: center;
    text-align: center !important;
    padding: 0 !important;
}

#referral_dashboard .poll-request p {
    display: inline;
    line-height: 1.5;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    #referral_dashboard .poll-request h2 {
        justify-content: flex-start;
    }

    #referral_dashboard .poll-request .poll .basic-question-title h5 {
        text-align: left !important;
    }
}

/*=============================================================================*/
/* RESEND ME PAGE */
/*=============================================================================*/
#resend_me .headline .container {
    max-width: 28rem;
}

#resend_me .headline svg {
    margin: 0 0 3rem;
    max-width: 15rem;
    height: auto;
}

#resend_me .headline h1 {
    margin: 0 0 2rem;
}

#resend_me .headline .whats_next p a {
    display: inline;
    color: var(--info-500);
    text-decoration: underline;
}

#resend_me .headline .whats_next p b {
    display: inline;
    color: var(--green);
}

#resend_me .headline .whats_next p em {
    font-style: normal;
    font-weight: 700;
}

#resend_me #resend_me_button {
    background: var(--button);
    color: white;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1rem 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: filter 150ms;
}

#resend_me #resend_me_button:hover {
    filter: brightness(80%);
}

#resend_me #resend_me_button.disabled {
    background: var(--basic-400);
    color: var(--basic-600);
}

#resend_me #resend_me_button.disabled:hover {
    filter: none;
    cursor: auto;
}

#resend_me .form-holder {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 2rem 0 0;
}

#resend_me input {
    background: var(--basic-300);
    outline: var(--input-outline);
    border-radius: 1em;
    padding: 1rem 1.5rem;
    line-height: 1.5rem;
}

#resend_me .validation-error {
    font-size: 0.8rem;
    color: var(--danger);
    padding: 0;
    text-align: left;
    align-items: flex-start;
    line-height: 1rem;
    height: 1rem;
}

@media (min-width: 600px) {
    #resend_me .headline .whats_next p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    #resend_me .headline .container {
        max-width: 26rem;
    }
}

@media (min-width: 1024px) {
    #resend_me .container {
        align-items: center;
    }

    #resend_me .headline .container {
        max-width: 43rem;
    }

    #resend_me .headline h1 {
        width: 35rem;
        margin: 1rem 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #resend_me .headline .whats_next p {
        width: 40rem;
        font-size: 1.25rem;
        line-height: 2rem;
    }

    #resend_me .headline {
        min-height: Calc(100vh - 17rem);
    }

    #resend_me .headline ul {
        margin: 1rem 0 2rem;
    }

    #resend_me .headline li {
        font-size: 1.2rem;
    }

    #resend_me #resend_me_button {
        width: Calc(50% - 1rem);
        margin: 0;
    }

    #resend_me .input-holder {
        width: Calc(50% - 1rem);
    }
}

/*=============================================================================*/
/* FAQ SECTION */
/*=============================================================================*/

.faq {
    background: var(--gray-bg);
    padding: 0 0 3rem;
}

    .faq h2 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        text-align: center;
        color: #22c4fa;
        margin: 2rem 0 1.5rem;
        font-weight: 400;
    }

.faq h3 {
    color: var(--text-3);
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin: 0;
    text-align: left;
    justify-content: flex-start;
}

.faq .accordion-card {
    background: white;
    -webkit-box-shadow: 0 12px 24px rgba(38, 177, 252, 0.06);
    box-shadow: 0 12px 24px rgba(38, 177, 252, 0.06);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.faq .card-heading {
    flex-direction: row;
    position: relative;
    padding: 1rem 4rem 1rem 1rem;
    cursor: pointer;
    transition: all .2s ease-in-out
}

.faq .card-heading-icon {
    margin-right: 1rem;
    height: 1.25rem;
    width: auto;
}

    .faq .card-heading-icon path {
        /*    fill: var(--green);*/
        fill: #22c4fa;
    }

.faq .card-heading-caret {
    position: absolute;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    color: var(--text-3);
    transform: rotate(0);
    transition: all .2s ease-in-out;
}

.faq .card-panel {
    display: flex;
    transition: padding 0.3s;
    overflow: hidden;
    height: 0;
    padding: 0 1.5rem 0 3.25rem;
}

    .faq .card-content {
        /*    border-left: 1px solid var(--green);*/
        border-left: 1px solid #22c4fa;
        font-size: 0.875em;
        line-height: 2rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0.5em 0 0 1rem;
    }

.faq .active > .card-panel {
    padding: 0.5rem 1.5rem 2rem 3.25rem;
    height: auto;
}

.faq .active .icon-arrow-right {
    color: var(--green);
    transform: rotate(90deg);
    transition: all 0.3s ease-in;
}

.faq .active .icon-arrow-right path {
    fill: var(--blue);
    transition: fill 0.3s;
}

.faq p {
    margin-bottom: 0.5rem;
}

.faq .more {
    color: var(--green);
    text-decoration: underline
}

@media (min-width: 1024px) {
    .faq .card-content {
        font-size: 1rem;
    }

    .faq h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        color: var(--text-3);
        font-weight: 400;
    }
}


/*=============================================================================*/
/* promo page */
/*=============================================================================*/


#promo h1 {
    margin: 1em 0 1em;
    font-size: 2em;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

#promo p {
    font-size: 1.2rem;
}

#promo .image {
    margin: 0 0 2rem;
    border-radius: 1em;
    overflow: hidden;
    max-width: 500px;
}

/*=============================================================================*/
/* statement_of_consent */
/*=============================================================================*/
#statement_of_consent h1 {
    margin: 1rem 0 1.5rem 0;
}

#statement_of_consent .container {
    justify-content: center;
    max-width: 600px;
}

#statement_of_consent p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    text-align: left;
    white-space: normal;
}

#statement_of_consent strong {
    display: inline;
}

@media (min-width: 1024px) {
    #statement_of_consent p {
        font-size: 1.2rem;
    }
}




