.rq-page {
    --rq-primary: #6842ff;
    --rq-primary-dark: #4d2cdb;
    --rq-navy: #0c1628;
    --rq-text: #111827;
    --rq-muted: #667085;
    --rq-border: #e5e7eb;
    --rq-bg: #f7f7fc;
    --rq-success: #16a34a;
    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(104, 66, 255, 0.09),
            transparent 26rem
        ),
        linear-gradient(180deg, #fbfbff 0%, var(--rq-bg) 100%);
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    color: var(--rq-text);
}
body:has(.rq-page) .section-page-header {
    display: none;
}
.rq-page * {
    box-sizing: border-box;
}
.rq-shell {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}
.rq-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 1.5rem 4rem rgba(20, 24, 50, 0.11);
}
.rq-intro {
    position: relative;
    overflow: hidden;
    min-height: 22rem;
    background: linear-gradient(145deg, #0b1425 0%, #172449 58%, #32206e 100%);
    color: #fff;
}
.rq-intro__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 2.25rem 2.25rem;
    mask-image: linear-gradient(to bottom right, #000, transparent 82%);
}
.rq-intro::after {
    content: "";
    position: absolute;
    inset-block-end: -8rem;
    inset-inline-end: -8rem;
    width: 22rem;
    aspect-ratio: 1;
    border: 1px solid rgba(160, 137, 255, 0.35);
    border-radius: 50%;
    box-shadow:
        0 0 0 3rem rgba(104, 66, 255, 0.08),
        0 0 0 7rem rgba(104, 66, 255, 0.05);
}
.rq-intro__content {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 4rem);
}
.rq-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    color: #8b5cf6;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.rq-intro .rq-eyebrow {
    color: #c4b5fd;
}
.rq-eyebrow > span {
    width: 1.5rem;
    height: 2px;
    background: currentColor;
}
.rq-intro h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #fff;
}
.rq-intro__lead {
    max-width: 38rem;
    margin: 1.5rem 0 2rem;
    color: #cbd5e1;
    font-size: 1.04rem;
    line-height: 1.75;
}
.rq-benefits {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.rq-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #eef2ff;
    font-weight: 600;
}
.rq-benefits li > span {
    display: grid;
    flex: 0 0 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: #c4b5fd;
}
.rq-benefits li > span svg,
.rq-service__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.8;
}
.rq-contact svg,
.rq-trust svg {
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
}
.rq-contact {
    display: grid;
    gap: 0.65rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.rq-contact p {
    margin: 0 0 0.25rem;
    color: #94a3b8;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.rq-contact a,
.rq-contact > span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #e2e8f0;
    text-decoration: none;
}
.rq-contact a:hover {
    color: #fff;
}
.rq-trust {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.rq-trust span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #d1fae5;
    font-size: 0.78rem;
    font-weight: 700;
}
.rq-trust i {
    color: #34d399;
}
.rq-form-panel {
    padding: clamp(1.4rem, 4vw, 3.5rem);
    min-width: 0;
}
.rq-form-heading h2 {
    margin: 0;
    color: var(--rq-navy);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    letter-spacing: -0.035em;
}
.rq-form-heading > p:last-child {
    margin: 0.6rem 0 1.75rem;
    color: var(--rq-muted);
}
.rq-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 2rem;
}
.rq-progress__step {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #98a2b3;
}
.rq-progress__step::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset-block-start: 1rem;
    inset-inline-start: -50%;
    width: 100%;
    height: 2px;
    background: var(--rq-border);
}
.rq-progress__step:first-child::before {
    display: none;
}
.rq-progress__step span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 2px solid var(--rq-border);
    border-radius: 50%;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}
.rq-progress__step small {
    overflow: hidden;
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rq-progress__step.is-active,
.rq-progress__step.is-complete {
    color: var(--rq-primary);
}
.rq-progress__step.is-active span,
.rq-progress__step.is-complete span {
    border-color: var(--rq-primary);
    background: var(--rq-primary);
    color: #fff;
}
.rq-progress__step.is-complete::before {
    background: var(--rq-primary);
}
.rq-step {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.rq-form.is-enhanced .rq-step {
    display: none;
}
.rq-form.is-enhanced .rq-step.is-active {
    display: block;
    animation: rq-reveal 0.32s ease both;
}
.rq-step legend {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1.4rem;
    color: var(--rq-navy);
    font-size: 1.15rem;
    font-weight: 800;
}
.rq-step legend span {
    color: var(--rq-primary);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.rq-step legend > :is(i, svg) {
    color: var(--rq-primary);
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    margin-inline: 0.15rem 0.1rem;
    stroke-width: 2;
}
.rq-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.rq-field {
    min-width: 0;
}
.rq-field--wide {
    grid-column: 1/-1;
}
.rq-field label,
.rq-label-row > p {
    display: block;
    margin: 0 0 0.45rem;
    color: #344054;
    font-size: 0.83rem;
    font-weight: 750;
}
.rq-field label > span,
.rq-label-row p > span {
    color: #d92d20;
}

.rq-field > label > :is(i, svg) {
    color: var(--rq-primary);
    font-size: 1rem;
    margin-inline-end: 0.42rem;
    vertical-align: -0.08em;
}

.rq-control select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position:
        calc(100% - 1.15rem) 50%,
        calc(100% - 0.85rem) 50%;
    background-repeat: no-repeat;
    background-size:
        0.32rem 0.32rem,
        0.32rem 0.32rem;
    cursor: pointer;
    padding-inline-end: 2.5rem;
}

[dir="rtl"] .rq-control select {
    background-position:
        1.15rem 50%,
        0.85rem 50%;
}

.rq-control select:disabled {
    background-color: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.72;
}
.rq-page .rq-form .rq-control {
    position: relative !important;
    display: block;
    min-width: 0;
}
.rq-page .rq-form .rq-control > .rq-control__icon {
    position: absolute !important;
    inset-block-start: 50% !important;
    inset-inline-start: 1rem !important;
    z-index: 2;
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    color: #7860f5;
    pointer-events: none;
}
.rq-page .rq-form .rq-control__icon svg {
    position: static !important;
    display: block;
    width: 1.15rem !important;
    height: 1.15rem !important;
    margin: 0 !important;
    transform: none !important;
    color: inherit;
    stroke-width: 1.8;
}
.rq-phone {
    display: grid;
    grid-template-columns: minmax(6.4rem, auto) minmax(0, 1fr);
}
.rq-phone select,
.rq-phone input {
    min-height: 3.65rem;
    border: 1px solid var(--rq-border);
    background: #fff;
    font: inherit;
}
.rq-phone select {
    padding: 0.8rem 2rem 0.8rem 0.9rem;
    border-radius: 0.9rem 0 0 0.9rem;
    border-inline-end: 0;
    color: #344054;
}
.rq-phone__number input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 3rem;
    border-radius: 0 0.9rem 0.9rem 0;
}
.rq-phone:focus-within {
    border-radius: 0.9rem;
    box-shadow: 0 0 0 0.23rem rgba(104, 66, 255, 0.13);
}
.rq-phone:focus-within select,
.rq-phone:focus-within input {
    border-color: var(--rq-primary);
    outline: 0;
}
.rq-field input,
.rq-field select,
.rq-field textarea {
    width: 100%;
    min-height: 3.65rem;
    border: 1px solid var(--rq-border);
    border-radius: 0.9rem;
    background: #fff;
    color: var(--rq-text);
    font: inherit;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.rq-page .rq-form .rq-control :is(input, select) {
    padding-block: 0.85rem;
    padding-inline-start: 3rem !important;
}
.rq-field textarea {
    min-height: 9rem;
    padding: 1rem 1.1rem;
    line-height: 1.65;
    resize: vertical;
}
.rq-field input:focus,
.rq-field select:focus,
.rq-field textarea:focus {
    border-color: var(--rq-primary);
    outline: 0;
    box-shadow: 0 0 0 0.23rem rgba(104, 66, 255, 0.13);
}
.rq-field input::placeholder,
.rq-field textarea::placeholder {
    color: #98a2b3;
    opacity: 1;
}

.rq-phone > select {
    border-radius: 0.9rem 0 0 0.9rem;
    box-shadow: none;
}

.rq-phone .rq-phone__number input {
    border-radius: 0 0.9rem 0.9rem 0;
    box-shadow: none;
}

.rq-page .rq-form .rq-control:focus-within > .rq-control__icon {
    color: var(--rq-primary);
    transform: translateY(-50%) scale(1.08) !important;
}
.rq-field .is-invalid {
    border-color: #d92d20;
}
.rq-label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}
.rq-label-row > span,
.rq-label-row > small,
.rq-field > small {
    color: var(--rq-muted);
    font-size: 0.74rem;
}
.rq-field__error {
    display: block;
    margin-top: 0.4rem;
    color: #b42318;
    font-size: 0.78rem;
    font-weight: 650;
}
.rq-services {
    margin-top: 1.5rem;
}
.rq-services__grid {
    display: grid;
    gap: 0.75rem;
}
.rq-service {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--rq-border);
    border-radius: 1rem;
    background: #fff;
    cursor: pointer;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}
.rq-service:hover {
    transform: translateY(-2px);
    border-color: #b9a8ff;
    box-shadow: 0 0.7rem 1.8rem rgba(43, 36, 85, 0.08);
}
.rq-service:focus-within {
    outline: 3px solid rgba(104, 66, 255, 0.2);
    outline-offset: 2px;
}
.rq-service.is-selected {
    border-color: var(--rq-primary);
    background: #f8f6ff;
}
.rq-service input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.rq-service__icon {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border-radius: 0.8rem;
    background: #f0ecff;
    color: var(--rq-primary);
    font-size: 1.25rem;
}
.rq-service__copy {
    display: grid;
    gap: 0.25rem;
}
.rq-service__copy strong {
    color: #263044;
    font-size: 0.88rem;
}
.rq-service__copy small {
    color: var(--rq-muted);
    font-size: 0.75rem;
    line-height: 1.45;
}
.rq-service__check {
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    color: transparent;
    font-size: 0.8rem;
}
.rq-service.is-selected .rq-service__check {
    border-color: var(--rq-primary);
    background: var(--rq-primary);
    color: #fff;
}
.rq-upload {
    position: relative;
    border: 1.5px dashed #b9a8ff;
    border-radius: 1rem;
    background: #faf9ff;
    transition: 0.2s;
}
.rq-upload.is-dragging {
    border-color: var(--rq-primary);
    background: #f1edff;
}
.rq-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.rq-upload label {
    display: grid;
    justify-items: center;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
}
.rq-upload label > :is(i, svg) {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.65rem;
    color: var(--rq-primary);
    stroke-width: 1.6;
}
.rq-upload label strong {
    color: #344054;
}
.rq-upload label > span {
    margin: 0.25rem 0;
    color: var(--rq-primary);
    font-weight: 750;
}
.rq-upload label small {
    max-width: 45ch;
    color: var(--rq-muted);
    font-size: 0.72rem;
    line-height: 1.5;
}
.rq-file-list {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.rq-file {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.65rem;
    background: #f8fafc;
    color: #475467;
    font-size: 0.78rem;
}
.rq-file span {
    overflow: hidden;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rq-file button {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #b42318;
}
.rq-review {
    margin: 1.25rem 0;
    padding: 1rem;
    border-radius: 1rem;
    background: #f8fafc;
}
.rq-review h3 {
    margin: 0;
    color: var(--rq-navy);
    font-size: 1rem;
}
.rq-review > p {
    margin: 0.25rem 0 0.8rem;
    color: var(--rq-muted);
    font-size: 0.8rem;
}
.rq-review dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.4rem 0.8rem;
    margin: 0;
    font-size: 0.78rem;
}
.rq-review section + section {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--rq-border);
}
.rq-review__section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
}
.rq-review__section-title strong {
    color: #344054;
    font-size: 0.8rem;
}
.rq-review__section-title button {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 2rem;
    padding: 0.25rem 0.5rem;
    border: 0;
    border-radius: 0.45rem;
    background: transparent;
    color: var(--rq-primary);
    font-size: 0.74rem;
    font-weight: 750;
}
.rq-review__section-title button:hover {
    background: #f0ecff;
}
.rq-success__email {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: #475467;
}
.rq-success__next {
    max-width: 30rem;
    margin: 1.25rem auto;
    padding: 1rem;
    border-radius: 0.85rem;
    background: #f8fafc;
    text-align: start;
}
.rq-success__next h3 {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
}
.rq-success__next ol {
    display: grid;
    gap: 0.4rem;
    margin: 0;
    padding-inline-start: 1.25rem;
    color: #475467;
    font-size: 0.8rem;
}
.rq-review dt {
    color: var(--rq-muted);
}
.rq-review dd {
    margin: 0;
    color: #344054;
    font-weight: 650;
}
.rq-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 1rem 0;
}
.rq-consent input {
    flex: 0 0 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    accent-color: var(--rq-primary);
}
.rq-consent span {
    display: grid;
    gap: 0.2rem;
}
.rq-consent strong {
    font-size: 0.84rem;
}
.rq-consent small {
    color: var(--rq-muted);
    font-size: 0.75rem;
}
.rq-navigation {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.rq-btn,
.rq-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.85rem;
    padding: 0.7rem 1.15rem;
    border-radius: 0.75rem;
    font-weight: 750;
    text-decoration: none;
}
.rq-btn--primary,
.rq-submit {
    border: 0;
    background: linear-gradient(110deg, var(--rq-primary), #3f67e9);
    color: #fff;
    box-shadow: 0 0.65rem 1.3rem rgba(104, 66, 255, 0.2);
}
.rq-btn--ghost {
    border: 1px solid var(--rq-border);
    background: #fff;
    color: #344054;
}
.rq-submit {
    width: 100%;
    margin-top: 0.5rem;
}
.rq-submit .rq-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: rq-spin 0.7s linear infinite;
}
.rq-form.is-submitting .rq-submit > svg {
    display: none;
}
.rq-form.is-submitting .rq-spinner {
    display: block;
}
.rq-form.is-submitting .rq-submit {
    pointer-events: none;
    opacity: 0.75;
}
.rq-form:not(.is-enhanced) .rq-navigation {
    display: none;
}
.rq-form.is-enhanced .rq-step:not(:last-of-type) .rq-submit {
    display: none;
}
.rq-noscript {
    margin-top: 1rem;
    color: var(--rq-muted);
    font-size: 0.8rem;
}
.rq-errors {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-inline-start: 4px solid #d92d20;
    border-radius: 0.6rem;
    background: #fff2f0;
    color: #7a271a;
}
.rq-errors ul {
    margin: 0.5rem 0 0;
    padding-inline-start: 1.25rem;
}
.rq-success {
    max-width: 45rem;
    margin-inline: auto;
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid #d1fadf;
    border-radius: 1.5rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 1.5rem 4rem rgba(20, 24, 50, 0.1);
}
.rq-success__icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    place-items: center;
    border-radius: 50%;
    background: #dcfae6;
    color: var(--rq-success);
    font-size: 2rem;
}
.rq-success__icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2.2;
}
.rq-btn svg,
.rq-submit svg,
.rq-success__response svg,
.rq-success__email svg,
.rq-review__section-title button svg {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
}
.rq-success .rq-eyebrow {
    justify-content: center;
}
.rq-success h2 {
    color: var(--rq-navy);
}
.rq-success__number {
    display: grid;
    gap: 0.25rem;
    max-width: 24rem;
    margin: 1.5rem auto;
    padding: 1rem;
    border-radius: 0.8rem;
    background: #f8fafc;
}
.rq-success__number span {
    color: var(--rq-muted);
    font-size: 0.75rem;
}
.rq-success__number strong {
    font-size: 1.15rem;
}
.rq-success__response {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--rq-success);
    font-weight: 700;
}
.rq-success__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
@keyframes rq-reveal {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes rq-spin {
    to {
        transform: rotate(360deg);
    }
}
@media (min-width: 576px) {
    .rq-fields,
    .rq-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .rq-card {
        grid-template-columns: minmax(20rem, 40%) minmax(0, 60%);
    }
    .rq-intro {
        min-height: 47rem;
    }
    .rq-intro__content {
        position: sticky;
        top: 2rem;
    }
    .rq-form-panel {
        padding-inline: clamp(2rem, 4vw, 4.25rem);
    }
}
@media (max-width: 575.98px) {
    .rq-page {
        padding-inline: 0.65rem;
    }
    .rq-card {
        border-radius: 1.1rem;
    }
    .rq-intro {
        order: 2;
        min-height: auto;
    }
    .rq-intro__lead {
        margin-bottom: 1.25rem;
    }
    .rq-benefits li:nth-child(n + 3),
    .rq-contact,
    .rq-trust {
        display: none;
    }
    .rq-form-panel {
        order: 1;
    }
    .rq-progress__step small {
        font-size: 0.62rem;
    }
    .rq-navigation .rq-btn {
        flex: 1;
    }
    .rq-success__actions {
        flex-direction: column;
    }
}
@media (prefers-reduced-motion: reduce) {
    .rq-page * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
[dir="rtl"] .rq-submit .ti-arrow-narrow-right,
[dir="rtl"] [data-rq-next] .ti-arrow-right,
[dir="rtl"] [data-rq-prev] .ti-arrow-left {
    transform: scaleX(-1);
}
@media print {
    body > *:not(main) {
        display: none !important;
    }
    .rq-page {
        padding: 0;
        background: #fff;
    }
    .rq-success {
        box-shadow: none;
    }
    .rq-success__actions {
        display: none;
    }
}
