/* RF10_POPUP_COPY: весь файл + каталог fonts/ + photo-1530639834082-05bafb67fbbe.avif (пути относительно этого CSS) */

:root {
    color-scheme: light;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-500.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-800.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}


/* Namespace-only popup styles to avoid conflicts with host site */
.rf10-popup-root,
.rf10-popup-root * {
    box-sizing: border-box;
}

.rf10-popup-root {
    --rf10-popup-color-brand: #ff7a1a;
    --rf10-popup-color-dark-acc: #404040;
    --rf10-popup-color-dark: #262626;
    --rf10-popup-color-white: #fff;
    --rf10-popup-color-light: #d9d9d9;
    --rf10-popup-color-border: #ebebeb;
    --rf10-popup-color-bg: #fff;
    --rf10-popup-color-error: #fc365e;
    --rf10-popup-color-success: #48c774;
    --rf10-popup-gap: 1em;
    --rf10-popup-gap-lg: calc(var(--rf10-popup-gap) * 2);
    --rf10-popup-global-radius: 5px;
    --rf10-popup-font-body: "Figtree", sans-serif;
    --rf10-popup-font-weight-normal: 400;
    --rf10-popup-line-height-base: 1.6;
    --rf10-popup-letter-spacing: 0;

    position: fixed;
    inset: 0;
    z-index: 2147483001;
    isolation: isolate;
    font-family: var(--rf10-popup-font-body);
    font-size: 1rem;
    font-weight: var(--rf10-popup-font-weight-normal);
    line-height: var(--rf10-popup-line-height-base);
    letter-spacing: var(--rf10-popup-letter-spacing);
    -webkit-font-smoothing: antialiased;
    color: var(--rf10-popup-color-dark);
    display: grid;
    place-items: center;
}

.rf10-popup-root[hidden] {
    display: none !important;
}

.rf10-popup-root a,
.rf10-popup-root button,
.rf10-popup-root input,
.rf10-popup-root p,
.rf10-popup-root h2,
.rf10-popup-root figure,
.rf10-popup-root img {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    color: inherit;
}

.rf10-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.64);
    backdrop-filter: blur(2px);
}

.rf10-popup-popup {
    position: relative;
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: calc(var(--rf10-popup-global-radius) * 2);
    background-color: var(--rf10-popup-color-dark-acc);
    box-shadow: 0 28px 72px rgba(2, 8, 23, 0.45);
    overflow: hidden;
}

.rf10-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    transition: background 0.2s ease;
    z-index: 20;
}

.rf10-popup-close:hover,
.rf10-popup-close:focus-visible {
    background: rgba(255, 255, 255, 0.32);
}

.rf10-popup-container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

.rf10-popup-wrapper,
.rf10-popup-section {
    margin: 0;
}

.rf10-popup-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
}

.rf10-popup-radius-double {
    border-radius: calc(var(--rf10-popup-global-radius) * 2);
}

.rf10-popup-is-rel {
    position: relative;
}

.rf10-popup-w-100 {
    width: 100%;
}

.rf10-popup-z-index-1 {
    z-index: 1;
}

.rf10-popup-p-t-lg {
    padding-top: clamp(26px, 3vw, 40px);
}

.rf10-popup-p-b-lg {
    padding-bottom: clamp(26px, 3vw, 40px);
}

.rf10-popup-opacity-075 {
    opacity: 0.75;
}

.rf10-popup-flex {
    display: flex;
}

.rf10-popup-flex-col {
    flex-direction: column;
}

.rf10-popup-cta__inner {
    display: block;
    background: var(--rf10-popup-color-dark-acc);
    min-height: 320px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: var(--rf10-popup-gap-lg);
    padding-bottom: var(--rf10-popup-gap-lg);
    border-radius: calc(var(--rf10-popup-global-radius) * 2);
}

.rf10-popup-cta__inner::before,
.rf10-popup-cta__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: inherit;
    opacity: 0.75;
    background: radial-gradient(circle at 0 0, var(--rf10-popup-color-brand), hsla(var(--rf10-popup-color-brand-hsl) / 20%));
}

.rf10-popup-cta__inner::after {
    opacity: 0.25;
    background-color: var(--rf10-popup-color-brand);
}

.rf10-popup-cta__inner.rf10-popup-has-img::after {
    display: none;
}

.rf10-popup-cta__inner.rf10-popup-has-img::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.46) 100%),
        radial-gradient(ellipse at 0 0, #000, transparent);
}

.rf10-popup-cta__content {
    justify-content: flex-start;
    gap: 0;
    color: var(--rf10-popup-color-white);
    max-width: 30rem;
    padding: 1.5em;
    position: relative;
    z-index: 1;
}

.rf10-popup-cta__title {
    margin-bottom: 0.5rem;
    font-size: calc(1.3rem + 2.05vmin);
    line-height: 1.2;
    letter-spacing: 0;
    font-family: var(--rf10-popup-font-headings);
    font-weight: var(--rf10-popup-font-weight-extra-bold);
    text-wrap: balance;
}

.rf10-popup-cta__description {
    font-size: calc(1rem + 0.8vmin);
    margin-bottom: 1rem;
    line-height: var(--rf10-popup-line-height-base);
    font-weight: var(--rf10-popup-font-weight-medium);
    color: hsla(0 0% 100% / 0.82);
}

.rf10-popup-subscribe-form {
    --rf10-popup-color-brand: #7a4dff;
    --rf10-popup-color-black: #000;
    --rf10-popup-color-dark: #262626;
    --rf10-popup-color-dark-acc: #404040;
    --rf10-popup-color-grey-darker: #595959;
    --rf10-popup-color-grey-dark: #737373;
    --rf10-popup-color-grey: grey;
    --rf10-popup-color-grey-light: #8c8c8c;
    --rf10-popup-color-grey-lighter: #a6a6a6;
    --rf10-popup-color-light-acc: #bfbfbf;
    --rf10-popup-color-light: #d9d9d9;
    --rf10-popup-color-white: #fff;
    --rf10-popup-color-error: #fc365e;
    --rf10-popup-color-success: #48c774;
    --rf10-popup-color-warning: #fddc58;
    --rf10-popup-color-info: #259eef;
    --rf10-popup-color-gold: #ffd900;
    --rf10-popup-color-facebook: #4267b2;
    --rf10-popup-color-twitter: #1da1f2;
    --rf10-popup-color-linkedin: #2867b2;
    --rf10-popup-color-instagram: #e1306c;
    --rf10-popup-color-youtube: red;
    --rf10-popup-color-github: #333;
    --rf10-popup-color-rss: #ee802f;
    --rf10-popup-color-mail: #dc483d;
    --rf10-popup-color-copy: #34a853;
    --rf10-popup-color-text: var(--rf10-popup-color-dark);
    --rf10-popup-color-text-acc: var(--rf10-popup-color-dark-acc);
    --rf10-popup-color-text-reverse: var(--rf10-popup-color-light);
    --rf10-popup-color-bg: #fff;
    --rf10-popup-color-bg-acc: #f7f7f7;
    --rf10-popup-color-bg-reverse: var(--rf10-popup-color-dark);
    --rf10-popup-color-bg-base: 0 0% 100%;
    --rf10-popup-color-bg-base-reverse: 0 0% 0%;
    --rf10-popup-color-border: #ebebeb;
    --rf10-popup-color-transparent: transparent;
    --rf10-popup-color-focus-hsl: 217 99% 65%;
    --rf10-popup-color-focus: hsl(var(--rf10-popup-color-focus-hsl));
    --rf10-popup-border-color: var(--rf10-popup-color-border);
    --rf10-popup-border-width: 1px;
    --rf10-popup-font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --rf10-popup-font-mono: Consolas, Monaco, monospace;
    --rf10-popup-font-size-base: 1rem;
    --rf10-popup-font-weight-thin: 100;
    --rf10-popup-font-weight-extra-light: 200;
    --rf10-popup-font-weight-light: 300;
    --rf10-popup-font-weight-normal: 400;
    --rf10-popup-font-weight-medium: 500;
    --rf10-popup-font-weight-semi-bold: 600;
    --rf10-popup-font-weight-bold: 700;
    --rf10-popup-font-weight-extra-bold: 800;
    --rf10-popup-font-weight-black: 900;
    --rf10-popup-line-height-base: 1.6;
    --rf10-popup-letter-spacing: 0;
    --rf10-popup-transition-name: ease-in-out;
    --rf10-popup-transition-duration: 400ms;
    --rf10-popup-transition-duration-lg: 800ms;
    --rf10-popup-transition-duration-xl: 1200ms;
    --rf10-popup-transition-delay: 100ms;
    --rf10-popup-transition-default: var(--rf10-popup-transition-duration) var(--rf10-popup-transition-name);
    --rf10-popup-transition-100: 100ms var(--rf10-popup-transition-name);
    --rf10-popup-transition-200: 200ms var(--rf10-popup-transition-name);
    --rf10-popup-transition-400: 400ms var(--rf10-popup-transition-name);
    --rf10-popup-transition-800: 800ms var(--rf10-popup-transition-name);
    --rf10-popup-transition-1000: 1000ms var(--rf10-popup-transition-name);
    --rf10-popup-gap: 1em;
    --rf10-popup-gap-rem: 1rem;
    --rf10-popup-gap-xs: calc(var(--rf10-popup-gap) * 0.25);
    --rf10-popup-gap-sm: calc(var(--rf10-popup-gap) * 0.5);
    --rf10-popup-gap-lg: calc(var(--rf10-popup-gap) * 2);
    --rf10-popup-gap-xl: calc(var(--rf10-popup-gap) * 4);
    --rf10-popup-breakpoint-sm: 36em;
    --rf10-popup-breakpoint-md: 48em;
    --rf10-popup-breakpoint-lg: 62em;
    --rf10-popup-breakpoint-xl: 75em;
    --rf10-popup-gutter-w: 1rem;
    --rf10-popup-outer-m: 1rem;
    --rf10-popup-gutter-comp: calc(var(--rf10-popup-gutter-w) * -1);
    --rf10-popup-half-gutter-w: calc(var(--rf10-popup-gutter-w) * 0.5);
    --rf10-popup-container-sm: calc(var(--rf10-popup-breakpoint-sm) + var(--rf10-popup-gutter-w));
    --rf10-popup-container-md: calc(var(--rf10-popup-breakpoint-md) + var(--rf10-popup-gutter-w));
    --rf10-popup-container-lg: calc(var(--rf10-popup-breakpoint-lg) + var(--rf10-popup-gutter-w));
    --rf10-popup-container-xl: calc(var(--rf10-popup-breakpoint-xl) + var(--rf10-popup-gutter-w));
    --rf10-popup-global-max-width: 1320px;
    --rf10-popup-global-content-width: 680px;
    --rf10-popup-global-wide-width: 960px;
    --rf10-popup-global-post-hero-content-max-width: 768px;
    --rf10-popup-global-radius: 5px;
    --rf10-popup-global-gallery-gap: 1em;
    --rf10-popup-global-hyphens: none;
    --rf10-popup-global-header-height: 72px;
    --rf10-popup-global-theme-notifications: visible;
    --rf10-popup-global-progress-bar: visible;
    --rf10-popup-global-content-preview-fading: 0%;
    --rf10-popup-global-scroll-behavior: smooth;
    --rf10-popup-color-brand-contrast: #fff;
    --rf10-popup-color-brand-h: 27;
    --rf10-popup-color-brand-s: 100%;
    --rf10-popup-color-brand-l: 55%;
    --rf10-popup-color-brand-hsl: 27 100% 55%;
    --rf10-popup-ghost-accent-color: #625bf6;
    --rf10-popup-font-body: "Figtree", "Manrope", sans-serif;
    --rf10-popup-font-headings: "Figtree", "Manrope", sans-serif;

    -webkit-font-smoothing: antialiased;
    font-family: var(--rf10-popup-font-body);
    font-size: var(--rf10-popup-font-size-base);
    font-weight: var(--rf10-popup-font-weight-normal);
    hyphens: var(--rf10-popup-global-hyphens);
    letter-spacing: var(--rf10-popup-letter-spacing);
    line-height: var(--rf10-popup-line-height-base);
    color: var(--rf10-popup-color-white);
    border: 0 solid #ebebeb;
    border-color: var(--rf10-popup-color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 32rem;
    flex-direction: row;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    border-radius: var(--rf10-popup-global-radius);
    padding: 0;
    position: relative;
    margin: 0 auto;
}

.rf10-popup-input {
    appearance: none;
    min-width: 0;
    width: 100%;
    min-height: 50px;
    border-radius: inherit;
    padding: 0.75em 1em;
    border: none;
    box-shadow: none;
    margin: 0;
    background: var(--rf10-popup-color-bg);
    color: var(--rf10-popup-color-text);
    line-height: 1;
    padding-right: calc(42% + 1em);
    font-size: 1rem;
    font-weight: var(--rf10-popup-font-weight-medium);
}

.rf10-popup-input::placeholder {
    color: var(--rf10-popup-color-grey-light);
    opacity: 1;
}

.rf10-popup-input:active,
.rf10-popup-input:focus,
.rf10-popup-input:hover {
    border-color: transparent;
    box-shadow: 0 0 0 var(--rf10-popup-border-width) hsl(var(--rf10-popup-color-brand-h) var(--rf10-popup-color-brand-s) 50%);
}

.rf10-popup-btn {
    appearance: none;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    display: inline-flex;
    border: var(--rf10-popup-border-width) solid var(--rf10-popup-bg-accent, var(--rf10-popup-color-bg-reverse));
    border-radius: var(--rf10-popup-global-radius);
    color: inherit;
    cursor: pointer;
    padding: 0.75em 1.5em;
    font-family: var(--rf10-popup-font-body);
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: var(--rf10-popup-font-weight-bold);
    letter-spacing: 0.045em;
    line-height: 1;
    outline: 0;
    text-transform: uppercase;
}

.rf10-popup-btn--brand.rf10-popup-btn--gradient {
    --rf10-popup-text-accent: #fff;
    --rf10-popup-bg-accent: var(--rf10-popup-color-brand);
    border: none;
    color: var(--rf10-popup-text-accent);
    background-color: var(--rf10-popup-bg-accent);
    overflow: hidden;
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 41%;
    width: auto;
    min-height: 0;
    height: calc(100% - 10px);
    transition: filter var(--rf10-popup-transition-default);
}

.rf10-popup-btn--gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 200%;
    height: 100%;
    border-radius: inherit;
    transition: transform var(--rf10-popup-transition-default);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), hsla(0 0% 100% / 30%), rgba(0, 0, 0, 0.1));
}

.rf10-popup-btn--gradient span {
    position: relative;
    z-index: 1;
}

.rf10-popup-btn--gradient:hover::before,
.rf10-popup-btn--gradient:focus-visible::before,
.rf10-popup-btn--gradient:active::before {
    transform: translateX(-50%);
}

.rf10-popup-btn--gradient:hover,
.rf10-popup-btn--gradient:focus-visible,
.rf10-popup-btn--gradient:active {
    filter: none;
}

.rf10-popup-uppercase {
    text-transform: uppercase;
}

.rf10-popup-cta__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    min-height: 100%;
    z-index: 0;
}

.rf10-popup-cta__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.62) saturate(0.92);
}

.rf10-popup-msg-success,
.rf10-popup-msg-error {
    display: none;
    width: 100%;
    margin-top: 1em;
    font-size: 0.9rem;
    font-weight: var(--rf10-popup-font-weight-semi-bold);
}

.rf10-popup-msg-error {
    color: var(--rf10-popup-color-error);
}

.rf10-popup-subscribe-form[data-style="inline-joined"] {
    flex-direction: row;
    flex-wrap: wrap;
}

.rf10-popup-subscribe-form[data-style="inline-joined"] .rf10-popup-msg-success,
.rf10-popup-subscribe-form[data-style="inline-joined"] .rf10-popup-msg-error {
    position: absolute;
    bottom: -1.5rem;
}

.rf10-popup-subscribe-form.rf10-popup-success .rf10-popup-msg-success {
    display: block;
}

.rf10-popup-subscribe-form.rf10-popup-error .rf10-popup-msg-error {
    display: block;
}

@media (max-width: 900px) {
    .rf10-popup-cta__inner {
        min-height: auto;
    }

    .rf10-popup-cta__content {
        padding-bottom: 22px;
    }

    .rf10-popup-cta__media {
        height: 220px;
    }
}

@media only screen and (min-width: 48em) {
    .rf10-popup-cta__content {
        max-width: 40rem;
        padding: 2.5em;
    }

    .rf10-popup-cta__content > .rf10-popup-btn {
        font-size: 1.05rem;
    }
}

@media only screen and (min-width: 62em) {
    .rf10-popup-cta__content {
        max-width: 50rem;
        padding: 4em;
    }

    .rf10-popup-cta__content > .rf10-popup-btn {
        font-size: 1.1rem;
    }
}

@media only screen and (min-width: 75em) {
    .rf10-popup-cta__content {
        max-width: 60rem;
        padding: 5em;
    }
}

/* Exact popupbuilder-like block styles scoped to popup root */
#rf10-popup-root .container {
    padding-left: 0;
    padding-right: 0;
}

#rf10-popup-root .wrapper {
    margin: 0 auto;
    max-width: none;
    width: 100%;
}

#rf10-popup-root .section {
    margin-bottom: 0;
}

#rf10-popup-root .radius-double {
    border-radius: calc(var(--rf10-popup-global-radius) * 2);
}

#rf10-popup-root .is-rel {
    position: relative;
}

#rf10-popup-root .w-100 {
    width: 100%;
}

#rf10-popup-root .p-t-lg {
    padding-top: 2em;
}

#rf10-popup-root .p-b-lg {
    padding-bottom: 2em;
}

#rf10-popup-root .opacity-075 {
    opacity: 0.75;
}

#rf10-popup-root .flex {
    display: flex;
}

#rf10-popup-root .flex-col {
    flex-direction: column;
}

#rf10-popup-root .z-index-1 {
    z-index: 1;
}

#rf10-popup-root .cta__inner {
    background-color: rgb(49, 92, 201);
    background-image:
        linear-gradient(
            90deg,
            rgb(49, 92, 201) 0%,
            rgb(49, 92, 201) 56%,
            rgba(49, 92, 201, 0.92) 68%,
            rgba(49, 92, 201, 0.55) 79%,
            rgba(49, 92, 201, 0.18) 90%,
            rgba(49, 92, 201, 0) 100%
        ),
        url("photo-1530639834082-05bafb67fbbe.avif");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right center;
    background-size: 100% 100%, auto 100%;
    overflow: hidden;
    border-radius: inherit;
}

#rf10-popup-root .cta__inner::before,
#rf10-popup-root .cta__inner::after {
    background: radial-gradient(circle at 0 0, var(--rf10-popup-color-brand), hsla(var(--rf10-popup-color-brand-hsl) / 20%));
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0.75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

#rf10-popup-root .cta__inner::after {
    background-color: var(--rf10-popup-color-brand);
    opacity: 0.25;
}

#rf10-popup-root .cta__inner.has-img::before {
    background: radial-gradient(ellipse at 0 0, var(--rf10-popup-color-black), var(--rf10-popup-color-transparent));
    z-index: 1;
}

#rf10-popup-root .cta__inner.has-img::after {
    display: none;
}

/* Remove nested overlay layers to avoid "block in block" effect */
#rf10-popup-root .cta__inner::before,
#rf10-popup-root .cta__inner::after {
    display: none;
}

#rf10-popup-root .cta__content {
    color: var(--rf10-popup-color-white);
    max-width: 30rem;
    padding: 1.5em;
    position: relative;
    z-index: 1;
}

#rf10-popup-root .cta__title {
    font-family: "Manrope", "Figtree", sans-serif;
    font-size: calc(1.2rem + 2vmin);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

#rf10-popup-root .cta__description {
    font-family: "Manrope", "Figtree", sans-serif;
    font-size: calc(1rem + 0.8vmin);
    margin-bottom: 1rem;
}

#rf10-popup-root #rf10-popup-input-label {
    font-family: "Manrope", "Figtree", sans-serif;
}

#rf10-popup-root .cta__note {
    margin: -0.35rem 0 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

#rf10-popup-root .cta__legal {
    display: block;
    margin-top: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.86);
}

#rf10-popup-root .cta__media {
    height: 100%;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

#rf10-popup-root .cta__media img,
#rf10-popup-root .cta__img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    filter: var(--rf10-popup-global-hero-img-filter, none);
}

#rf10-popup-root .cta .subscribe-form2 {
    max-width: 32rem;
}

#rf10-popup-root .subscribe-form2 {
    align-items: center;
    border-radius: var(--rf10-popup-global-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}

#rf10-popup-root .subscribe-form2 button,
#rf10-popup-root .subscribe-form2 input {
    border-radius: inherit;
    min-height: 46px;
    width: 100%;
}

#rf10-popup-root .subscribe-form2 input {
    border-color: var(--rf10-popup-color-border);
    font-family: "Manrope", "Figtree", sans-serif;
    font-size: var(--rf10-popup-font-size-base);
    font-weight: var(--rf10-popup-font-weight-normal);
    letter-spacing: var(--rf10-popup-letter-spacing);
    line-height: 1;
    padding: 0.75em 1em;
    color: #404040;
    -webkit-text-fill-color: #404040;
    background: var(--rf10-popup-color-bg);
    -webkit-font-smoothing: inherit;
}

#rf10-popup-root .subscribe-form2 input:active,
#rf10-popup-root .subscribe-form2 input:focus,
#rf10-popup-root .subscribe-form2 input:hover {
    border-color: var(--rf10-popup-color-transparent);
    box-shadow: none;
    outline: none;
}

#rf10-popup-root .subscribe-form2 button,
#rf10-popup-root .subscribe-form2 input {
    min-height: 50px;
}

#rf10-popup-root .subscribe-form2[data-style="inline-joined"] {
    --rf10-popup-inline-row-height: 56px;
    flex-direction: row;
    flex-wrap: nowrap;
}

#rf10-popup-root .subscribe-form2[data-style="inline-joined"] input:not([type="hidden"]) {
    border: none;
    box-shadow: none;
    margin: 0;
    min-height: var(--rf10-popup-inline-row-height);
    padding-right: calc(40% + 1em);
}

#rf10-popup-root .subscribe-form2 input::placeholder {
    color: #737373;
    font-family: var(--rf10-popup-font-body);
    font-size: var(--rf10-popup-font-size-base);
    font-weight: var(--rf10-popup-font-weight-normal);
    letter-spacing: var(--rf10-popup-letter-spacing);
    line-height: 1;
    opacity: 1;
}

#rf10-popup-root .subscribe-form2[data-style="inline-joined"] input::placeholder,
#rf10-popup-root .subscribe-form2[data-style="inline-joined"] input::-webkit-input-placeholder,
#rf10-popup-root .subscribe-form2[data-style="inline-joined"] input::-moz-placeholder,
#rf10-popup-root .subscribe-form2[data-style="inline-joined"] input:-ms-input-placeholder {
    color: #737373;
    opacity: 1;
}

#rf10-popup-root .subscribe-form2:focus-within {
    outline: none;
    box-shadow: none;
}

#rf10-popup-root .btn {
    --rf10-popup-bg-accent: var(--rf10-popup-color-bg-reverse);
    --rf10-popup-text-accent: var(--rf10-popup-color-text-reverse);
    hyphens: var(--rf10-popup-global-hyphens);
    -webkit-font-smoothing: inherit;
    font: inherit;
    text-align: center;
    align-items: center;
    align-self: flex-start;
    background-color: var(--rf10-popup-bg-accent);
    border: var(--rf10-popup-border-width) solid var(--rf10-popup-bg-accent);
    border-radius: var(--rf10-popup-global-radius);
    color: inherit;
    color: var(--rf10-popup-text-accent);
    cursor: pointer;
    display: inline-flex;
    box-sizing: inherit;
    font-family: "Manrope", "Figtree", sans-serif;
    font-size: 0.9rem;
    font-weight: var(--rf10-popup-font-weight-extra-bold);
    justify-content: center;
    letter-spacing: calc(var(--rf10-popup-font-size-base) * 0.025);
    line-height: 1;
    outline: 0;
    padding: 0.75em 1.5em;
}

#rf10-popup-root .btn--brand {
    --rf10-popup-text-accent: var(--rf10-popup-color-brand-contrast);
    --rf10-popup-bg-accent: var(--rf10-popup-color-brand);
    color: var(--rf10-popup-text-accent);
    text-transform: uppercase;
}

#rf10-popup-root .btn--gradient {
    border: none;
    color: var(--rf10-popup-text-accent);
    overflow: hidden;
}

#rf10-popup-root .btn--gradient::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), hsla(0 0% 100% / 30%), rgba(0, 0, 0, 0.1));
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform var(--rf10-popup-transition-default);
    width: 200%;
    z-index: 0;
}

#rf10-popup-root .btn--gradient span {
    position: relative;
    z-index: 1;
    font-family: "Manrope", "Figtree", sans-serif;
    font-weight: 800;
}

#rf10-popup-root .btn--gradient:hover::before,
#rf10-popup-root .btn--gradient:focus::before,
#rf10-popup-root .btn--gradient:active::before {
    transform: translateX(-50%);
}

#rf10-popup-root .btn--gradient:hover,
#rf10-popup-root .btn--gradient:focus,
#rf10-popup-root .btn--gradient:active {
    filter: none;
}

#rf10-popup-root .subscribe-form2[data-style="inline-joined"] button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(var(--rf10-popup-inline-row-height) - 10px);
    max-height: calc(var(--rf10-popup-inline-row-height) - 10px);
    min-height: calc(var(--rf10-popup-inline-row-height) - 10px);
    min-width: 40%;
    width: auto;
    background-color: #ff7a1a;
    border-color: #ff7a1a;
}

#rf10-popup-root .rf10-popup-form-feedback {
    max-width: 32rem;
    width: 100%;
}

#rf10-popup-root .rf10-popup-form-feedback .msg-error,
#rf10-popup-root .rf10-popup-form-feedback .msg-success {
    display: none;
    font-size: 0.9rem;
    font-weight: var(--rf10-popup-font-weight-semi-bold);
    line-height: 1.35;
    margin: 0.65rem 0 0;
    width: 100%;
}

#rf10-popup-root .subscribe-form2.success ~ .rf10-popup-form-feedback .msg-success,
#rf10-popup-root .subscribe-form2.error ~ .rf10-popup-form-feedback .msg-error {
    display: block;
}

#rf10-popup-root .rf10-popup-form-feedback .msg-success {
    color: var(--rf10-popup-color-success);
}

#rf10-popup-root .rf10-popup-form-feedback .msg-error {
    color: var(--rf10-popup-color-error);
}

#rf10-popup-root .subscribe-form2.success ~ .rf10-popup-form-feedback + .cta__legal,
#rf10-popup-root .subscribe-form2.error ~ .rf10-popup-form-feedback + .cta__legal {
    margin-top: 0.75rem;
}

@media only screen and (min-width: 48em) {
    #rf10-popup-root .cta__content {
        max-width: 40rem;
        padding: 2.5em;
    }
}

@media only screen and (min-width: 62em) {
    #rf10-popup-root .cta__content {
        max-width: 50rem;
        padding: 4em;
    }
}

@media only screen and (min-width: 75em) {
    #rf10-popup-root .cta__content {
        max-width: 60rem;
        padding: 5em;
    }
}

@media (max-width: 900px) {
    #rf10-popup-root .cta__inner {
        background-size: 100% 100%, cover;
        background-position: left top, center center;
    }
}
