﻿/*
 * RainWorx Saas Theme
 * Built with pure Bootstrap 5 for a clean, Stripe-like aesthetic.
 */

:root {
    /* Base Typography */
    --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --bs-body-color: #334155;
    --bs-heading-color: #0f172a;
    --bs-body-bg: #f8fafc;

    /* Brand Colors */
    --rw-primary: #0d9488;
    --rw-primary-hover: #0f766e;
    --rw-accent: #0284c7;
    --rw-navy: #0f172a;
    --rw-surface: #ffffff;
    
    /* UI Scale & Shadows */
    --rw-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --rw-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --rw-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --rw-border-radius: 0.75rem;

    --bs-primary: var(--rw-primary);
    --bs-info: var(--rw-accent);
}

/* Global Reset & Typography */
html, body {
    font-family: var(--bs-body-font-family);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--bs-heading-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

a {
    color: var(--rw-primary);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}
a:hover {
    color: var(--rw-primary-hover);
}

/* Base Body Padding (for fixed navbar) */
body {
    padding-top: 76px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar overrides */
.navbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.navbar-brand img {
    /* Logo is enlarged but the navbar keeps its py-3 padding/height: the negative
       vertical margins offset the extra height so the bar does not grow, letting
       the bigger logo overlap above/below the header. Adjust --logo-height to taste. */
    --logo-height: 42px;
    height: var(--logo-height);
    width: auto;
    /* (42px - 36px) / 2 = 3px offset top & bottom keeps the original 36px layout box */
    margin-top: -3px;
    margin-bottom: -3px;
    position: relative;
    z-index: 1;
}
.navbar-brand {
    overflow: visible;
}
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    white-space: nowrap;
}

/* At the lg breakpoint the navbar runs out of horizontal space; tighten link
   padding so all items fit on a single line without wrapping (which would
   otherwise grow the fixed navbar and overlap the page-sub-nav below it). */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.55rem !important;
        font-size: 0.9rem;
    }

    .navbar-nav .nav-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
.nav-link:hover {
    color: #ffffff !important;
}
.navbar-toggler {
    border: none;
    color: #ffffff;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Header Demo CTA button — uses the accent (blue) so it visually matches the
   active sub-nav highlight rather than the site-wide teal primary. */
.navbar .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}
    .navbar .btn-primary:hover,
    .navbar .btn-primary:focus,
    .navbar .btn-primary:active {
        background-color: #0b5ed7;
        border-color: #0a58ca;
        color: #ffffff;
        box-shadow: 0 4px 6px rgba(13, 110, 253, 0.3);
    }

/* Footer overrides */
footer {
    background-color: var(--rw-navy);
    color: #94a3b8;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}
footer h6 {
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    margin-bottom: 0.75rem;
}
footer a {
    color: #cbd5e1;
    font-size: 0.95rem;
}
footer a:hover {
    color: #ffffff;
}

/* Cards */
.card {
    background: var(--rw-surface);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--rw-border-radius);
    box-shadow: var(--rw-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--rw-shadow-md);
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s ease;
}
.btn-primary {
    background-color: var(--rw-primary);
    border-color: var(--rw-primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(13, 148, 136, 0.4);
}
.btn-primary:hover {
    background-color: var(--rw-primary-hover);
    border-color: var(--rw-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.3);
}

/* Utilities */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Additional Layout Utilities */
.transition-colors {
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.hover-white:hover {
    color: #ffffff !important;
}

/* Landing Page Extensions */
.hover-shadow { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hover-shadow:hover { transform: translateY(-3px); box-shadow: var(--rw-shadow-md) !important; }
.grayscale-icons img { 
    filter: grayscale(50%); 
    transition: filter 0.3s ease; 
}
.grayscale-icons img:hover {
    filter: grayscale(0%) opacity(100%);
}

/* Homepage – prevent card hover shift on full-width promo cards */
section > .container > .card.rounded-4 {
    transform: none;
}
section > .container > .card.rounded-4:hover {
    transform: none;
    box-shadow: var(--rw-shadow-lg);
}

/* Testimonial quote cards */
.quote-text {
    position: relative;
    z-index: 1;
}

/* Client logo grid hover */
.client-logo__wrapper .col img {
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.client-logo__wrapper .col img:hover {
    opacity: 1 !important;
    filter: grayscale(0%);
}

/* Client thumbnail cards */
.rw-clientthumb {
    cursor: pointer;
    border-radius: 0 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rw-clientthumb::after {
    content: attr(data-domain);
    display: block;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}
.rw-clientthumb:hover {
    transform: translateY(-3px);
    box-shadow: var(--rw-shadow-lg) !important;
}

/* ========================================
   Checkout Step Wizard
   ======================================== */
.rw-steps {
    border-bottom: none;
    margin-top: 0;
    counter-reset: step-counter;
}
.rw-steps .row {
    position: relative;
}

/* Each step column */
.rw-steps .row > [class*="col"] {
    text-align: center;
    position: relative;
    padding-top: 3.5rem;
    padding-bottom: 0.5rem;
}

/* Step number circle (via pseudo-element) */
.rw-steps .row > [class*="col"]::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Connecting line between circles */
.rw-steps .row > [class*="col"]:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 1.15rem;
    left: -50%;
    right: 50%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
    transition: background 0.3s ease;
}

/* Hide the old triangle arrow divs */
.rw-steps .row > [class*="col"] > div:last-child {
    display: none;
}

/* Step text */
.rw-steps p {
    margin-bottom: 0;
    line-height: 1.3;
}
.rw-steps p:first-child {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.rw-steps p:nth-child(2) {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* ---- Complete state ---- */
.rw-steps .complete::before {
    background: var(--rw-primary, #0d9488);
    border-color: var(--rw-primary, #0d9488);
    color: #fff;
    content: '\2713';
    font-size: 1rem;
}
.rw-steps .complete p:first-child {
    color: var(--rw-primary, #0d9488);
}
.rw-steps .complete p:nth-child(2) {
    color: var(--rw-primary, #0d9488);
}

/* Line leading TO a completed step */
.rw-steps .complete::after {
    background: var(--rw-primary, #0d9488);
}

/* Line FROM completed to next completed */
.rw-steps .complete + .complete::after {
    background: var(--rw-primary, #0d9488);
}

/* Line FROM completed to current */
.rw-steps .complete + .current::after {
    background: linear-gradient(90deg, var(--rw-primary, #0d9488) 0%, var(--rw-accent, #0284c7) 100%);
}

/* ---- Current state ---- */
.rw-steps .current::before {
    background: #fff;
    border-color: var(--rw-accent, #0284c7);
    color: var(--rw-accent, #0284c7);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}
.rw-steps .current p:first-child {
    color: var(--rw-accent, #0284c7);
    font-weight: 700;
}
.rw-steps .current p:nth-child(2) {
    color: var(--bs-heading-color, #0f172a);
    font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 576px) {
    .rw-steps .row > [class*="col"] {
        padding-top: 2.75rem;
    }
    .rw-steps .row > [class*="col"]::before {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    .rw-steps .row > [class*="col"]:not(:first-child)::after {
        top: 0.9rem;
    }
    .rw-steps p:first-child {
        font-size: 0.65rem;
    }
    .rw-steps p:nth-child(2) {
        display: none;
    }
}

/* ========================================
   Order / Checkout Page Cards
   ======================================== */
.card-header.bg-info {
    background-color: var(--rw-primary, #0d9488) !important;
    border-color: var(--rw-primary, #0d9488);
}
.card.border-info {
    border-color: rgba(13, 148, 136, 0.2) !important;
}

/* ========================================
   Landing Page – Modern Sections
   ======================================== */

/* Hero gradient banner – negative margin cancels .rw-body pt-5 mt-4 + body padding overshoot */
.lp-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0d9488 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    margin-top: -5rem;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(13,148,136,0.25) 0%, transparent 60%);
    pointer-events: none;
}
.lp-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.lp-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 540px;
}
.lp-hero .badge-industry {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    margin: 0.2rem;
}
@media (max-width: 768px) {
    .lp-hero { padding: 3rem 0 2rem; }
    .lp-hero h1 { font-size: 2rem; }
}

/* Trust / client logo strip */
.lp-trust {
    background: var(--rw-surface);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 2.5rem 0;
}
.lp-trust p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}
.lp-trust img {
    max-height: 40px;
}

/* Lead capture form card */
.lp-form-card {
    background: var(--rw-surface);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--rw-border-radius);
    box-shadow: var(--rw-shadow-lg);
    padding: 2.5rem;
    position: relative;
}
.lp-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rw-primary), var(--rw-accent));
    border-radius: var(--rw-border-radius) var(--rw-border-radius) 0 0;
}
.lp-form-card #landing-form h4 {
    color: var(--bs-heading-color);
    border-bottom-color: rgba(0,0,0,0.08);
}
.lp-form-card #landing-form label {
    color: #475569;
    font-family: var(--bs-body-font-family);
    font-weight: 600;
    font-size: 0.875rem;
}
.lp-form-card #landing-form .field-validation-error {
    color: #dc2626;
    font-size: 0.8rem;
}
.lp-form-card #landing-form .input-validation-error {
    border-color: #dc2626;
}
@media (max-width: 768px) {
    .lp-form-card { padding: 1.5rem; }
}

/* Feature cards grid */
.lp-features {
    padding: 4rem 0;
    background: var(--bs-body-bg);
}
.lp-feature-card {
    background: var(--rw-surface);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--rw-border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rw-shadow-lg);
}
.lp-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
}
.lp-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lp-feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonial cards */
.lp-testimonials {
    padding: 4rem 0;
    background: var(--rw-surface);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lp-testimonial-card {
    background: var(--bs-body-bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--rw-border-radius);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lp-testimonial-card .quote-text {
    font-size: 0.95rem;
    color: var(--bs-body-color);
    line-height: 1.65;
    flex-grow: 1;
}
.lp-testimonial-card .quote-text strong {
    color: var(--bs-heading-color);
}
.lp-testimonial-card .quote-attribution {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
    color: #64748b;
}
.lp-testimonial-card .quote-attribution strong {
    color: var(--bs-heading-color);
    display: block;
}

/* Value proposition section */
.lp-value-props {
    padding: 4rem 0;
    background: var(--bs-body-bg);
}
.lp-value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.lp-value-item .value-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
}
.lp-value-item h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.lp-value-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

/* CTA banner */
.lp-cta-banner {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 3rem 0;
    text-align: center;
}
.lp-cta-banner h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}
.lp-cta-banner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.lp-cta-banner .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2.5rem;
}

/* Privacy note */
.lp-privacy-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* Section headings */
.lp-section-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.lp-section-heading h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.lp-section-heading p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Sticky mobile CTA bar */
.lp-sticky-cta {
    display: none;
}

@media (max-width: 991.98px) {
    .lp-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        background: var(--rw-surface);
        border-top: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        padding: 0.65rem 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .lp-sticky-cta.visible {
        transform: translateY(0);
    }
    .lp-sticky-cta-text {
        font-size: 0.9rem;
        color: var(--bs-heading-color);
    }
}

/* Secondary (sub-header) navigation used on AuctionWorx & Events Edition pages */
.page-sub-nav {
    position: sticky;
    top: 76px; /* height of fixed main navbar on >=lg */
    z-index: 1020;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.075);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.page-sub-nav__scroller {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.5rem 0.25rem;
    white-space: nowrap;
}

    .page-sub-nav__scroller::-webkit-scrollbar {
        height: 4px;
    }

    .page-sub-nav__scroller::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.15);
        border-radius: 4px;
    }

    .page-sub-nav__scroller > a {
        flex: 0 0 auto;
        padding: 0.25rem 0.125rem;
        font-weight: 500;
        color: var(--bs-secondary-color, #6c757d);
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: color 0.15s ease, border-color 0.15s ease;
    }

        .page-sub-nav__scroller > a:hover {
            color: #0d6efd;
        }

        .page-sub-nav__scroller > a.is-active {
            color: #0d6efd;
            font-weight: 600;
            border-bottom-color: #0d6efd;
        }

        /* Events Edition sub-nav uses an orange accent so users can tell it
           apart from the AuctionWorx Enterprise sub-nav (blue). */
        .page-sub-nav__scroller[aria-label="Events Edition section"] > a:hover,
        .page-sub-nav__scroller[aria-label="Events Edition section"] > a.is-active {
            color: #f97316;
            border-bottom-color: #f97316;
        }

.page-sub-nav__divider {
    flex: 0 0 auto;
    align-self: stretch;
    width: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 0.25rem 0.25rem;
}

/* Cross-product link (e.g. "Events Edition ->", "AuctionWorx Enterprise ->") -
   make it visually distinct from the in-section sub-nav links. */
.page-sub-nav__scroller > a.page-sub-nav__cross {
    padding: 0.3rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    color: #6b7280;
    font-size: 0.74rem;
    font-weight: 600;
    background-color: #f9fafb;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

    .page-sub-nav__scroller > a.page-sub-nav__cross:hover,
    .page-sub-nav__scroller > a.page-sub-nav__cross:focus {
        background-color: #f3f4f6;
        border-color: #cbd5e1;
        color: #4b5563;
    }

/* Below xl the single-row sticky layout runs out of horizontal space (the
   AuctionWorx sub-nav has 7 links) and items get cut off, so stack into a
   two-column grid instead. Also disable sticky so the expanded mobile
   navbar can't cover it. */
@media (max-width: 1199.98px) {
    .page-sub-nav {
        position: static;
        top: auto;
    }

    .page-sub-nav__scroller {
        display: grid;
        grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
        column-gap: 1rem;
        row-gap: 0.35rem;
        overflow: visible;
        white-space: normal;
        padding: 0.5rem 0.75rem;
    }

        .page-sub-nav__scroller > a {
            font-size: 0.9rem;
            padding: 0.35rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

            .page-sub-nav__scroller > a.is-active {
                border-bottom-color: #0d6efd;
            }

            .page-sub-nav__scroller[aria-label="Events Edition section"] > a.is-active {
                border-bottom-color: #f97316;
            }

            .page-sub-nav__scroller > a.page-sub-nav__cross {
                align-items: center;
                display: inline-flex;
                justify-content: center;
                justify-self: stretch;
                padding: 0.35rem 0.35rem;
                border-bottom: 1px solid #d1d5db;
                font-weight: 600;
                margin-top: 0;
                text-align: center;
                white-space: nowrap;
            }
    /* Hide the vertical divider when stacked; the grid already separates the cross-link. */
    .page-sub-nav__divider {
        display: none;
    }
}

/*
 * Scroll-to-top helper.
 * The anchor is generated at runtime by jquery.scrollUp (configured in rw.js with
 * scrollImg:true), so it has no intrinsic size/background and relies on this rule to be
 * visible. The modern layout loads only theme-modern.css, while the original #scrollUp
 * styling lived in the legacy stylesheet that is no longer included, so it is restored here.
 * Scoped to smaller (tablet/phone) viewports to match the original behavior.
 */
@media (max-width: 1199.98px) {
    #scrollUp {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAMAAACf4xmcAAAA+VBMVEVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUX////4+PhycnLV1dVGRkZQUFBzc3NkZGRtbW1vb29xcXFJSUlMTEx0dHR8fHyHh4eampqsrKytra2wsLC4uLi7u7u9vb3AwMDGxsbOzs7U1NRPT0/c3Nzd3d3e3t7l5eXq6urw8PD39/dHR0f5+fn6+vr7+/v+/v5ZWVl9i3TGAAAAKXRSTlMABAwPJSYnLS5MTlBRW1xdb3BxcnOoqarMzc7Q0dXW7O3u8fLz+fr7/LYykjkAAAFHSURBVHhejdRnc4JAEIDhBQtoEkOLYhTRKOpiS++99/b/f0x2ZDIuBwjv52fm5g52IZSi1xptz2s3aroCCcmmgyzHlGOQpLko5GqSqPI2xmTnw6q0hbF1S1ytDTChQWWhykNMbFj+V8UuLqlbDJRk49Ls4L4apqQDJbtpzJWJmZiaScxJZw6AGgFHNweiU0GPqJF/PRWYARuC2h75vn8msCo0w2pMijoNsya4UUX9nCDPBS+i7s/JfR9z5oXY+J3A5GF6SW60yxk/dD9QiB+35N522KH8Ci+Bog4n5J74FaoL9kpqhvNmz77/yR/EWLC9uytSQb+PXxf8eVXMkJr104OVzqxMv2VbBkpPY3qmkdmUsgxgr5h9nIMqiW64DqyVXsKJqxCqUI9T9UJ0DXZE1NEkiJazWhy1rBwkpBi0ovt9WtGGArw/4UO4DhGHfjwAAAAASUVORK5CYII=');
        background-repeat: no-repeat;
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}

