<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.turbo-progress-bar {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 3px;
    background: #0076ff;
    z-index: 9999;
    transition: width 300ms ease-out, opacity 150ms 150ms ease-in;
    transform: translate3d(0, 0, 0);
}

/* MEDIA QUERIES */
.anima-desktop-only {
    @media (max-width: 768px) {
        display: none !important;
    }
}

/* SCROLLBAR */

[dark-scroll]::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

[dark-scroll]::-webkit-scrollbar-track-piece {
    background-color: #2b2b2b;
    border: 1px solid #1d1d1d;
}

[dark-scroll]::-webkit-scrollbar-thumb {
    height: 10px;
    background-color: #4d4d4d;
}

    [dark-scroll]::-webkit-scrollbar-thumb:hover {
        background-color: #5a5a5a;
    }

/* LOAD PROGRESS */

.turbolinks-progress-bar {
    height: 3px;
    background-color: #ff6250;
}

/* GROUPING */

[data-id].ui-selecting {
    box-shadow: inset 0 0 0 1px #4285f4 !important;
}

[data-id].ui-selected {
    box-shadow: inset 0 0 0 1px #4285f4 !important;
}

/* CURSOR */

body[mode='comments'] * {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjkxNjQ4IDIzLjQxMDlDNS40OTE1MyAyMi45ODg3IDUuOTMxNzkgMjIuMzkzNSA2LjIzMjggMjEuNjQwN0M0Ljc5MDY5IDE5LjczODMgNCAxNy4zOTMzIDQgMTQuOTk3NUM0IDguOTM0MSA4LjkzMjgyIDQgMTUuMDAyMiA0QzIxLjA3MTcgNCAyNiA4LjkzOTE5IDI2IDE1LjAwMjVDMjYgMjEuMDY1OSAyMS4wNjcyIDI2IDE0Ljk5NzggMjZDMTIuOTg5NiAyNiAxMS4wMzUzIDI1LjQ1NTcgOS4zMjM2NyAyNC40MjMxQzguNDI5NjUgMjQuOTU3MiA3LjQxNDM0IDI1LjIyNjggNi4zMDAxOCAyNS4yMjY4QzUuOTU0MjYgMjUuMjI2OCA1LjU5OTM1IDI1LjIwMTQgNS4yNTM0MiAyNS4xNDU0QzQuOTAzIDI1LjA4OTUgNC42Mjg5NiAyNC44MDQ2IDQuNTUyNTggMjQuNDE4QzQuNDc2MjEgMjQuMDI2NCA0LjYxOTk3IDIzLjYyOTYgNC45MTY0OCAyMy40MTA5WiIgZmlsbD0iI0ZGNjI1MCIvPgo8L3N2Zz4K') 0 24, auto !important;
}

body[mode='code'] [data-id]:not(.hidden) {
    cursor: default;
}

/* default node state */

body[mode='code'] [data-id]:not(.hidden),
body[mode='comments'] [data-id]:not(.hidden) {
    pointer-events: all;
}

/* is_image */

body[mode='code'] [data-id].is_image [data-id],
body[mode='comments'] [data-id].is_image [data-id] {
    pointer-events: none !important;
}

/* without a data-id or ignored */

[data-id].ignore,
body[mode='code'] *:not([data-id]) {
    pointer-events: none !important;
}

/* disable transforms for ignored elements */


body[mode='code'] [data-id]:hover {
    transform: none !important;
}

/* ANIMA BUTTONS */
.an-button {
    position: relative;
    height: 28px;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    white-space: nowrap;
    transition-property: all;
    transition-duration: 100ms;
    appearance: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    border-width: 0;
}

    .an-button &gt; div {
        width: 100%;
    }

    .an-button.primary {
        background: #ff6250;
        color: #ffffff;
    }

        .an-button.primary:hover:not(:disabled) {
            background: #e2412e;
        }

    .an-button.secondary {
        background: transparent;
        border: 1px solid #ff6250;
        color: #ff6250;
    }

        .an-button.secondary:hover:not(:disabled) {
            color: #ffffff;
            background: #ff6250;
        }

    .an-button.rounded {
        border-radius: 100px;
    }

    .an-button:disabled {
        opacity: 0.5;
    }

    .an-button:disabled {
        cursor: default;
    }

    .an-button:active,
    .an-button:focus {
        outline: none;
    }

.hotspot {
    position: absolute;
    border: 1px solid #2a9fd8;
    background: rgba(0, 173, 255, 0.54);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}



.screen textarea:focus,
.screen input:focus {
    outline: none;
}

.screen * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.screen div {
    -webkit-text-size-adjust: none;
}

.component-wrapper a {
    display: contents;
    pointer-events: auto;
    text-decoration: none;
}

.component-wrapper * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    pointer-events: none;
}

.component-wrapper a *,
.component-wrapper input,
.component-wrapper video,
.component-wrapper iframe {
    pointer-events: auto;
}

.component-wrapper.not-ready,
.component-wrapper.not-ready * {
    visibility: hidden !important;
}

.screen a {
    display: contents;
    text-decoration: none;
}

.full-width-a {
    width: 100%;
}

.full-height-a {
    height: 100%;
}

.container-center-vertical {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 100%;
    pointer-events: none;
}

    .container-center-vertical &gt; * {
        flex-shrink: 0;
        pointer-events: auto;
    }

.container-center-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    pointer-events: none;
    width: 100%;
}

    .container-center-horizontal &gt; * {
        flex-shrink: 0;
        pointer-events: auto;
    }

.auto-animated div {
    --z-index: -1;
    opacity: 0;
    position: absolute;
}

.auto-animated input {
    --z-index: -1;
    opacity: 0;
    position: absolute;
}

.auto-animated .container-center-vertical,
.auto-animated .container-center-horizontal {
    opacity: 1;
}

.overlay-base {
    display: none;
    height: 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

    .overlay-base.animate-appear {
        align-items: center;
        animation: reveal 0.3s ease-in-out 1 normal forwards;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
    }

    .overlay-base.animate-disappear {
        animation: reveal 0.3s ease-in-out 1 reverse forwards;
        display: block;
        opacity: 1;
        pointer-events: none;
    }

        .overlay-base.animate-disappear * {
            pointer-events: none;
        }

@keyframes reveal {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate-nodelay {
    animation-delay: 0s;
}

.align-self-flex-start {
    align-self: flex-start;
}

.align-self-flex-end {
    align-self: flex-end;
}

.align-self-flex-center {
    align-self: flex-center;
}

.valign-text-middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valign-text-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

input:focus {
    outline: none;
}

.listeners-active,
.listeners-active * {
    pointer-events: auto;
}

.hidden,
.hidden * {
    pointer-events: none;
    visibility: hidden;
}

.smart-layers-pointers,
.smart-layers-pointers * {
    pointer-events: auto;
    visibility: visible;
}

.listeners-active-click,
.listeners-active-click * {
    cursor: pointer;
}

* {
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --eerie-black: #1a1a1ab5;
    --eerie-black-2: #1a1a1a;
    --granite-gray: #676767;
    --white: #ffffffb0;
    --white-2: #ffffff;
    --font-size-l: 18px;
    --font-size-m: 16px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;
    --font-size-xxxl: 36px;
    --font-size-xxxxl: 54px;
    --font-family-montserrat: 'Montserrat-SemiBold', 'Montserrat-Bold', 'Montserrat-ExtraBold';
    --font-family-poppins: 'Poppins-Regular', 'Poppins-Medium', 'Poppins-SemiBold', 'Poppins-Bold';
}

.poppins-normal-white-16px {
    color: var(--white);
    font-family: var(--font-family-poppins);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 400;
}

.poppins-normal-eerie-black-16px {
    color: var(--eerie-black);
    font-family: var(--font-family-poppins);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 400;
}

.montserrat-semi-bold-white-24px {
    color: var(--white-2);
    font-family: var(--font-family-montserrat);
    font-size: var(--font-size-xxl);
    font-style: normal;
    font-weight: 600;
}

.montserrat-bold-eerie-black-20px {
    color: var(--eerie-black-2);
    font-family: var(--font-family-montserrat);
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 700;
}

.montserrat-medium-eerie-black-20px {
    color: var(--eerie-black-2);
    font-family: var(--font-family-montserrat);
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 500;
}

.poppins-normal-granite-gray-16px {
    color: var(--granite-gray);
    font-family: var(--font-family-poppins);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 400;
}

:root {
}


/* screen - 4u46-legal-terms */

.x4u46-legal-terms {
    background-color: var(--white-2);
    height: 1995px;
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
    width: 1440px;
}

    .x4u46-legal-terms .oval-vT4yoW {
        background: linear-gradient(180deg, rgba(221.52279317378998, 222.3618945479393, 236.52174353599548, 0.00009999999747378752) 0%, rgb(208.39872300624847, 210.88565915822983, 251.3043487071991) 100%);
        background-color: transparent;
        border-radius: 327px;
        height: 654px;
        left: 572px;
        mix-blend-mode: normal;
        opacity: 0.53;
        position: absolute;
        top: 203px;
        width: 654px;
    }

    .x4u46-legal-terms .group-12-vT4yoW {
        height: 474px;
        left: -1px;
        top: 1521px;
        width: 1440px;
    }

    .x4u46-legal-terms .rectangle-QxxdOM {
        background-color: transparent;
        height: 474px;
        left: 1px;
        width: 1439px;
    }

    .x4u46-legal-terms .group-11-QxxdOM {
        background-color: transparent;
        height: 272px;
        left: 79px;
        position: absolute;
        top: 136px;
        width: 1219px;
    }

    .x4u46-legal-terms .group-10-eYxYdz {
        background-color: transparent;
        height: 150px;
        left: 0px;
        position: absolute;
        top: 0px;
        width: 287px;
    }

    .x4u46-legal-terms .whats-app-image-2024-11-18-at-101110-1-1-IPyYPS {
        background-color: transparent;
        height: 53px;
        left: 0px;
        object-fit: cover;
        position: absolute;
        top: 0px;
        width: 225px;
    }

    .x4u46-legal-terms .group-7-IPyYPS {
        background-color: transparent;
        height: 77px;
        left: 0px;
        overflow: hidden;
        position: absolute;
        top: 73px;
        width: 287px;
    }

    .x4u46-legal-terms .x2019-path-point-Y8hMaP {
        background-color: transparent;
        color: var(--white-2);
        font-family: var(--font-family-poppins);
        font-size: var(--font-size-m);
        font-style: normal;
        font-weight: 500;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .path-point-is-a-regis-Y8hMaP {
        background-color: transparent;
        color: var(--white-2);
        font-family: var(--font-family-poppins);
        font-size: var(--font-size-m);
        font-style: normal;
        font-weight: 500;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 31px;
        width: 287px;
    }

    .x4u46-legal-terms .group-9-eYxYdz {
        height: 272px;
        left: 452px;
        width: 174px;
    }

    .x4u46-legal-terms .group-8-RZG3Js {
        height: 210px;
        width: 174px;
    }

    .x4u46-legal-terms .clover-terminals-d8461F {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .point-of-sale-d8461F {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 39px;
        width: auto;
    }

    .x4u46-legal-terms .gateway-d8461F {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 74px;
        width: auto;
    }

    .x4u46-legal-terms .mobile-d8461F {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 109px;
        width: auto;
    }

    .x4u46-legal-terms .payment-acceptance-d8461F {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 148px;
        width: auto;
    }

    .x4u46-legal-terms .working-capital-d8461F {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 187px;
        width: auto;
    }

    .x4u46-legal-terms .solutions-RZG3Js {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .group-9-dJStwo {
        height: 233px;
        left: 790px;
        width: 144px;
    }

    .x4u46-legal-terms .group-8-tyqMhv {
        height: 171px;
        width: 144px;
    }

    .x4u46-legal-terms .support-center-zGbmAC {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .contact-sales-zGbmAC {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 39px;
        width: auto;
    }

    .x4u46-legal-terms .pricing-zGbmAC {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 74px;
        width: auto;
    }

    .x4u46-legal-terms .documentation-zGbmAC {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 109px;
        width: auto;
    }

    .x4u46-legal-terms .become-a-partner-zGbmAC {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 148px;
        width: auto;
    }

    .x4u46-legal-terms .resources-tyqMhv {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .group-9-Rr8jaX {
        height: 194px;
        left: 1099px;
        width: 120px;
    }

    .x4u46-legal-terms .group-8-gPkXcu {
        height: 132px;
        width: 109px;
    }

    .x4u46-legal-terms .about-E1m71i {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .contact-us-E1m71i {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 39px;
        width: auto;
    }

    .x4u46-legal-terms .privacy-policy-E1m71i {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 74px;
        width: auto;
    }

    .x4u46-legal-terms .legal-terms-E1m71i {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 109px;
        width: auto;
    }

    .x4u46-legal-terms .company-gPkXcu {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .group-5-vT4yoW {
        background-color: transparent;
        height: 610px;
        left: 1081px;
        overflow: hidden;
        position: absolute;
        top: 469px;
        width: 279px;
    }

    .x4u46-legal-terms .rectangle-yBmT6o {
        background-color: var(--white-2);
        border: 1px solid;
        border-color: #d0d0d0;
        border-radius: 10px;
        box-shadow: 0px 13px 44px 2px #716d8214;
        height: 610px;
        left: 0px;
        width: 279px;
    }

    .x4u46-legal-terms .line-yBmT6o {
        background-color: transparent;
        height: 54px;
        left: 270px;
        position: absolute;
        top: 66px;
        width: 4px;
    }

    .x4u46-legal-terms .general-terms-of-use-yBmT6o {
        color: #2a38d8;
        font-size: var(--font-size-l);
        font-weight: 600;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: 26px;
        top: 28px;
        white-space: nowrap;
    }

    .x4u46-legal-terms .x1-account-registrat-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 74px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .x2-unqulified-busine-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 120px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .x3-paid-services-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 166px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .x4-license-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 212px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .x5-ownership-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 258px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .x6-e-sign-disclosure-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 304px;
        width: 226px;
    }

    .x4u46-legal-terms .x7-modification-and-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 370px;
        width: 226px;
    }

    .x4u46-legal-terms .x8-effect-of-termina-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 436px;
        width: 226px;
    }

    .x4u46-legal-terms .x9-indemnity-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 479px;
        width: 226px;
    }

    .x4u46-legal-terms .x10-representations-yBmT6o {
        background-color: transparent;
        height: auto;
        left: 28px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 522px;
        width: 226px;
    }

    .x4u46-legal-terms .group-12-K4rBoX {
        height: 338px;
        left: 79px;
        top: 469px;
        width: 276px;
    }

    .x4u46-legal-terms .rectangle-xw0Mz2 {
        background-color: transparent;
        height: 338px;
        left: 0px;
        width: 276px;
    }

    .x4u46-legal-terms .group-2-xw0Mz2 {
        background-color: transparent;
        height: 60px;
        left: 0px;
        overflow: hidden;
        position: absolute;
        top: 18px;
        width: 276px;
    }

    .x4u46-legal-terms .rectangle-GW2NDT {
        background-color: transparent;
        height: 60px;
        left: 0px;
        width: 276px;
    }

    .x4u46-legal-terms .rectangle-DqBBak {
        background-color: transparent;
        height: 60px;
        left: 0px;
        width: 6px;
    }

    .x4u46-legal-terms .tems-of-service-GW2NDT {
        background-color: transparent;
        height: auto;
        left: 24px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 19px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .group-xw0Mz2 {
        background-color: transparent;
        height: 186px;
        left: 24px;
        position: absolute;
        top: 103px;
        width: 193px;
    }

    .x4u46-legal-terms .group-4-OAJcKL {
        background-color: transparent;
        height: 186px;
        left: 0px;
        overflow: hidden;
        position: relative;
        top: 0px;
        width: 193px;
    }

    .x4u46-legal-terms .pricing-policy-RhGKAm {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.20px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .e-sign-agreement-RhGKAm {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.20px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 66px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .commercial-entity-ag-RhGKAm {
        background-color: transparent;
        height: auto;
        left: 0px;
        letter-spacing: 0.20px;
        line-height: 28px;
        position: absolute;
        text-align: left;
        top: 130px;
        width: auto;
    }

    .x4u46-legal-terms .group-3-vT4yoW {
        background-color: transparent;
        height: 952px;
        left: 395px;
        overflow: hidden;
        position: absolute;
        top: 469px;
        width: 646px;
    }

    .x4u46-legal-terms .tems-of-use-pvi0wO {
        background-color: transparent;
        color: var(--eerie-black-2);
        font-family: var(--font-family-montserrat);
        font-size: var(--font-size-xxxl);
        font-style: normal;
        font-weight: 600;
        height: auto;
        left: 0px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: left;
        top: 0px;
        width: auto;
    }

    .x4u46-legal-terms .general-terms-of-use-pvi0wO {
        color: #203cd7;
        font-size: var(--font-size-xxl);
        font-weight: 700;
        left: 0px;
        letter-spacing: 0.24px;
        line-height: normal;
        top: 85px;
    }

    .x4u46-legal-terms .these-general-terms-pvi0wO {
        left: 0px;
        top: 134px;
        width: 646px;
    }

    .x4u46-legal-terms .these-general-terms-v8STvE {
        left: 35px;
        top: 747px;
        width: 611px;
    }

    .x4u46-legal-terms .these-general-terms-QsNGZ8 {
        left: 35px;
        top: 888px;
        width: 611px;
    }

    .x4u46-legal-terms .commercial-processin-pvi0wO {
        background-color: transparent;
        height: auto;
        left: 35px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 710px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .software-license-agr-pvi0wO {
        background-color: transparent;
        height: auto;
        left: 35px;
        letter-spacing: 0.00px;
        line-height: 26px;
        position: absolute;
        text-align: left;
        top: 851px;
        white-space: nowrap;
        width: auto;
    }

    .x4u46-legal-terms .title-vT4yoW {
        background-color: transparent;
        color: var(--eerie-black-2);
        font-family: var(--font-family-montserrat);
        font-size: var(--font-size-xxxxl);
        font-style: normal;
        font-weight: 600;
        height: auto;
        left: 552px;
        letter-spacing: 0.00px;
        line-height: normal;
        position: absolute;
        text-align: center;
        top: 270px;
        width: auto;
    }

    .x4u46-legal-terms .header-vT4yoW {
        background-color: transparent;
        height: 150px;
        left: 0px;
        position: absolute;
        top: 0px;
        width: 1439px;
    }

    .x4u46-legal-terms .general-terms-of-use {
        background-color: transparent;
        font-family: var(--font-family-montserrat);
        font-style: normal;
        height: auto;
        position: absolute;
        text-align: left;
        width: auto;
    }

    .x4u46-legal-terms .group-12 {
        background-color: transparent;
        position: absolute;
    }

    .x4u46-legal-terms .group-8 {
        background-color: transparent;
        left: 0px;
        overflow: hidden;
        position: absolute;
        top: 62px;
    }

    .x4u46-legal-terms .group-9 {
        background-color: transparent;
        overflow: hidden;
        position: absolute;
        top: 0px;
    }

    .x4u46-legal-terms .rectangle {
        position: absolute;
        top: 0px;
    }

    .x4u46-legal-terms .these-general-terms {
        background-color: transparent;
        height: auto;
        letter-spacing: 0.00px;
        line-height: 32px;
        position: absolute;
        text-align: left;
    }


#anima-interface {
    transition: all 0.5s ease-in-out;
}

#anima-watermark {
    transition: all 0.5s ease-in-out;
    display: none;
}

#anima-watermark-link {
    position: fixed;
    bottom: 20px;
    height: 30px;
    border-radius: 1000px;
    background: #3B3B3B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: width 0.25s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    text-decoration: none;
    color: #fff;
    padding: 8px 16px 8px 11px;
    font-family: Mulish, sans-serif;
    font-size: 12px;
}

    #anima-watermark-link .text {
        margin-left: 6px;
    }

.omniview-anima-action-links .link {
    height: 30px;
    width: 30px;
    border-radius: 1000px;
    background: #3B3B3B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: width 0.25s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    text-decoration: none;
    color: #fff;
}

.omniview-anima-action-links #comment-link .text,
.omniview-anima-action-links #code-link .text {
    display: none;
    font-size: 12px;
    margin-right: 5px;
}

.omniview-anima-action-links #comment-link:hover,
.omniview-anima-action-links #code-link:hover {
    width: 105px;
}

.omniview-anima-action-links #comment-link.pop-active,
.omniview-anima-action-links #code-link.pop-active {
    width: 105px;
    background: #FF6250;
}

    .omniview-anima-action-links #comment-link.pop-active .text,
    .omniview-anima-action-links #code-link.pop-active .text {
        display: block
    }

.omniview-anima-action-links #comment-link:hover .text,
.omniview-anima-action-links #code-link:hover .text {
    display: block;
}

.link.navigation {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 32px;
    color: #fff;
    font-size: 12px;
    cursor: default;
    padding: 0 5px;
}

    .link.navigation .icon {
        margin: 0 6px;
        fill: none;
        stroke: currentColor;
        cursor: pointer;
    }

        .link.navigation .icon.disabled {
            opacity: 0.5;
            cursor: default;
        }


    .link.navigation .home-icon {
        margin-left: 6px;
        fill: currentColor;
        stroke: currentColor;
        cursor: pointer;
    }

.omniview-anima-action-links .restart {
    height: 30px;
    padding: 0 12px;
    background: #3B3B3B;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f1f1f1;
    font-size: 12px;
}

.omniview-anima-action-links {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: Mulish, sans-serif;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

    .omniview-anima-action-links &gt; * + * {
        margin-right: 0;
        margin-left: 10px;
    }

.idle {
    opacity: 0;
    pointer-events: none;
}

#popoverOpener {
    position: absolute;
    left: 50%;
    margin-left: -10vw;
    text-align: center;
    top: 45vh;
    width: 20vw;
}


.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    font-family: "sans-serif";
    font-size: 14px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

    .popover.top {
        margin-top: -12px
    }

    .popover.right {
        margin-left: 10px
    }

    .popover.bottom {
        margin-top: 10px
    }

    .popover.left {
        margin-left: -10px
    }

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    height: 100%;
    width: 100%;
    display: flex;
    overflow: hidden;
    font-family: Mulish, sans-serif;
}



.popover &gt; .arrow,
.popover &gt; .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover &gt; .arrow {
    border-width: 11px
}

    .popover &gt; .arrow:after {
        content: "";
        border-width: 10px
    }

.popover.top &gt; .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0
}

    .popover.top &gt; .arrow:after {
        bottom: 1px;
        margin-left: -10px;
        content: " ";
        border-top-color: #fff;
        border-bottom-width: 0
    }

.popover.right &gt; .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0
}

    .popover.right &gt; .arrow:after {
        bottom: -10px;
        left: 1px;
        content: " ";
        border-right-color: #fff;
        border-left-width: 0
    }

.popover.bottom &gt; .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25)
}

    .popover.bottom &gt; .arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: #fff
    }

.popover.left &gt; .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

    .popover.left &gt; .arrow:after {
        right: 1px;
        bottom: -10px;
        content: " ";
        border-right-width: 0;
        border-left-color: #fff
    }



#anima-comment-popover,
#anima-code-popover {
    background: #333333;
    color: #fff;
}

    #anima-comment-popover.top &gt; .arrow,
    #anima-comment-popover.top &gt; .arrow:after,
    #anima-code-popover.top &gt; .arrow:after,
    #anima-code-popover.top &gt; .arrow {
        border-top-color: #333;
    }

    #anima-comment-popover .btn,
    #anima-code-popover .btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 6px 20px;
        background: #FF6250;
        color: #fff;
        border-radius: 100px;
        width: max-content;
        text-decoration: none;
    }

@media screen and (max-width: 550px) {
    #anima-watermark-link {
        padding: 6px !important;
    }

        #anima-watermark-link .text {
            display: none !important;
        }
}

</pre></body></html>