:root {
        --toastify-color-light: #fff;
        --toastify-color-dark: #121212;
        --toastify-color-info: #3498db;
        --toastify-color-success: #07bc0c;
        --toastify-color-warning: #f1c40f;
        --toastify-color-error: hsl(6, 78%, 57%);
        --toastify-color-transparent: rgba(255, 255, 255, .7);
        --toastify-icon-color-info: var(--toastify-color-info);
        --toastify-icon-color-success: var(--toastify-color-success);
        --toastify-icon-color-warning: var(--toastify-color-warning);
        --toastify-icon-color-error: var(--toastify-color-error);
        --toastify-container-width: fit-content;
        --toastify-toast-width: 320px;
        --toastify-toast-offset: 16px;
        --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
        --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
        --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
        --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
        --toastify-toast-background: #fff;
        --toastify-toast-padding: 14px;
        --toastify-toast-min-height: 64px;
        --toastify-toast-max-height: 800px;
        --toastify-toast-bd-radius: 6px;
        --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, .1);
        --toastify-font-family: sans-serif;
        --toastify-z-index: 9999;
        --toastify-text-color-light: #757575;
        --toastify-text-color-dark: #fff;
        --toastify-text-color-info: #fff;
        --toastify-text-color-success: #fff;
        --toastify-text-color-warning: #fff;
        --toastify-text-color-error: #fff;
        --toastify-spinner-color: #616161;
        --toastify-spinner-color-empty-area: #e0e0e0;
        --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
        --toastify-color-progress-dark: #bb86fc;
        --toastify-color-progress-info: var(--toastify-color-info);
        --toastify-color-progress-success: var(--toastify-color-success);
        --toastify-color-progress-warning: var(--toastify-color-warning);
        --toastify-color-progress-error: var(--toastify-color-error);
        --toastify-color-progress-bgo: .2
    }

    .Toastify__toast-container {
        z-index: var(--toastify-z-index);
        -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
        position: fixed;
        width: var(--toastify-container-width);
        box-sizing: border-box;
        color: #fff;
        display: flex;
        flex-direction: column
    }

    .Toastify__toast-container--top-left {
        top: var(--toastify-toast-top);
        left: var(--toastify-toast-left)
    }

    .Toastify__toast-container--top-center {
        top: var(--toastify-toast-top);
        left: 50%;
        transform: translate(-50%);
        align-items: center
    }

    .Toastify__toast-container--top-right {
        top: var(--toastify-toast-top);
        right: var(--toastify-toast-right);
        align-items: end
    }

    .Toastify__toast-container--bottom-left {
        bottom: var(--toastify-toast-bottom);
        left: var(--toastify-toast-left)
    }

    .Toastify__toast-container--bottom-center {
        bottom: var(--toastify-toast-bottom);
        left: 50%;
        transform: translate(-50%);
        align-items: center
    }

    .Toastify__toast-container--bottom-right {
        bottom: var(--toastify-toast-bottom);
        right: var(--toastify-toast-right);
        align-items: end
    }

    .Toastify__toast {
        --y: 0;
        position: relative;
        touch-action: none;
        width: var(--toastify-toast-width);
        min-height: var(--toastify-toast-min-height);
        box-sizing: border-box;
        margin-bottom: 1rem;
        padding: var(--toastify-toast-padding);
        border-radius: var(--toastify-toast-bd-radius);
        box-shadow: var(--toastify-toast-shadow);
        max-height: var(--toastify-toast-max-height);
        font-family: var(--toastify-font-family);
        z-index: 0;
        display: flex;
        flex: 1 auto;
        align-items: center;
        word-break: break-word
    }

    @media only screen and (max-width: 480px) {
        .Toastify__toast-container {
            width: 100vw;
            left: env(safe-area-inset-left);
            margin: 0
        }

        .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
            top: env(safe-area-inset-top);
            transform: translate(0)
        }

        .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
            bottom: env(safe-area-inset-bottom);
            transform: translate(0)
        }

        .Toastify__toast-container--rtl {
            right: env(safe-area-inset-right);
            left: initial
        }

        .Toastify__toast {
            --toastify-toast-width: 100%;
            margin-bottom: 0;
            border-radius: 0
        }
    }

    .Toastify__toast-container[data-stacked=true] {
        width: var(--toastify-toast-width)
    }

    .Toastify__toast--stacked {
        position: absolute;
        width: 100%;
        transform: translate3d(0, var(--y), 0) scale(var(--s));
        transition: transform .3s
    }

    .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
        transition: opacity .1s
    }

    .Toastify__toast--stacked[data-collapsed=false] {
        overflow: visible
    }

    .Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
        opacity: 0
    }

    .Toastify__toast--stacked:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: calc(var(--g) * 1px);
        bottom: 100%
    }

    .Toastify__toast--stacked[data-pos=top] {
        top: 0
    }

    .Toastify__toast--stacked[data-pos=bot] {
        bottom: 0
    }

    .Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
        transform-origin: top
    }

    .Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
        transform-origin: bottom
    }

    .Toastify__toast--stacked:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        transform: scaleY(3);
        z-index: -1
    }

    .Toastify__toast--rtl {
        direction: rtl
    }

    .Toastify__toast--close-on-click {
        cursor: pointer
    }

    .Toastify__toast-icon {
        margin-inline-end: 10px;
        width: 22px;
        flex-shrink: 0;
        display: flex
    }

    .Toastify--animate {
        animation-fill-mode: both;
        animation-duration: .5s
    }

    .Toastify--animate-icon {
        animation-fill-mode: both;
        animation-duration: .3s
    }

    .Toastify__toast-theme--dark {
        background: var(--toastify-color-dark);
        color: var(--toastify-text-color-dark)
    }

    .Toastify__toast-theme--light, .Toastify__toast-theme--colored.Toastify__toast--default {
        background: var(--toastify-color-light);
        color: var(--toastify-text-color-light)
    }

    .Toastify__toast-theme--colored.Toastify__toast--info {
        color: var(--toastify-text-color-info);
        background: var(--toastify-color-info)
    }

    .Toastify__toast-theme--colored.Toastify__toast--success {
        color: var(--toastify-text-color-success);
        background: var(--toastify-color-success)
    }

    .Toastify__toast-theme--colored.Toastify__toast--warning {
        color: var(--toastify-text-color-warning);
        background: var(--toastify-color-warning)
    }

    .Toastify__toast-theme--colored.Toastify__toast--error {
        color: var(--toastify-text-color-error);
        background: var(--toastify-color-error)
    }

    .Toastify__progress-bar-theme--light {
        background: var(--toastify-color-progress-light)
    }

    .Toastify__progress-bar-theme--dark {
        background: var(--toastify-color-progress-dark)
    }

    .Toastify__progress-bar--info {
        background: var(--toastify-color-progress-info)
    }

    .Toastify__progress-bar--success {
        background: var(--toastify-color-progress-success)
    }

    .Toastify__progress-bar--warning {
        background: var(--toastify-color-progress-warning)
    }

    .Toastify__progress-bar--error {
        background: var(--toastify-color-progress-error)
    }

    .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
        background: var(--toastify-color-transparent)
    }

    .Toastify__close-button {
        color: #fff;
        position: absolute;
        top: 6px;
        right: 6px;
        background: transparent;
        outline: none;
        border: none;
        padding: 0;
        cursor: pointer;
        opacity: .7;
        transition: .3s ease;
        z-index: 1
    }

    .Toastify__toast--rtl .Toastify__close-button {
        left: 6px;
        right: unset
    }

    .Toastify__close-button--light {
        color: #000;
        opacity: .3
    }

    .Toastify__close-button > svg {
        fill: currentColor;
        height: 16px;
        width: 14px
    }

    .Toastify__close-button:hover, .Toastify__close-button:focus {
        opacity: 1
    }

    @keyframes Toastify__trackProgress {
        0% {
            transform: scaleX(1)
        }
        to {
            transform: scaleX(0)
        }
    }

    .Toastify__progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: .7;
        transform-origin: left
    }

    .Toastify__progress-bar--animated {
        animation: Toastify__trackProgress linear 1 forwards
    }

    .Toastify__progress-bar--controlled {
        transition: transform .2s
    }

    .Toastify__progress-bar--rtl {
        right: 0;
        left: initial;
        transform-origin: right;
        border-bottom-left-radius: initial
    }

    .Toastify__progress-bar--wrp {
        position: absolute;
        overflow: hidden;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        border-bottom-left-radius: var(--toastify-toast-bd-radius);
        border-bottom-right-radius: var(--toastify-toast-bd-radius)
    }

    .Toastify__progress-bar--wrp[data-hidden=true] {
        opacity: 0
    }

    .Toastify__progress-bar--bg {
        opacity: var(--toastify-color-progress-bgo);
        width: 100%;
        height: 100%
    }

    .Toastify__spinner {
        width: 20px;
        height: 20px;
        box-sizing: border-box;
        border: 2px solid;
        border-radius: 100%;
        border-color: var(--toastify-spinner-color-empty-area);
        border-right-color: var(--toastify-spinner-color);
        animation: Toastify__spin .65s linear infinite
    }

    @keyframes Toastify__bounceInRight {
        0%, 60%, 75%, 90%, to {
            animation-timing-function: cubic-bezier(.215, .61, .355, 1)
        }
        0% {
            opacity: 0;
            transform: translate3d(3000px, 0, 0)
        }
        60% {
            opacity: 1;
            transform: translate3d(-25px, 0, 0)
        }
        75% {
            transform: translate3d(10px, 0, 0)
        }
        90% {
            transform: translate3d(-5px, 0, 0)
        }
        to {
            transform: none
        }
    }

    @keyframes Toastify__bounceOutRight {
        20% {
            opacity: 1;
            transform: translate3d(-20px, var(--y), 0)
        }
        to {
            opacity: 0;
            transform: translate3d(2000px, var(--y), 0)
        }
    }

    @keyframes Toastify__bounceInLeft {
        0%, 60%, 75%, 90%, to {
            animation-timing-function: cubic-bezier(.215, .61, .355, 1)
        }
        0% {
            opacity: 0;
            transform: translate3d(-3000px, 0, 0)
        }
        60% {
            opacity: 1;
            transform: translate3d(25px, 0, 0)
        }
        75% {
            transform: translate3d(-10px, 0, 0)
        }
        90% {
            transform: translate3d(5px, 0, 0)
        }
        to {
            transform: none
        }
    }

    @keyframes Toastify__bounceOutLeft {
        20% {
            opacity: 1;
            transform: translate3d(20px, var(--y), 0)
        }
        to {
            opacity: 0;
            transform: translate3d(-2000px, var(--y), 0)
        }
    }

    @keyframes Toastify__bounceInUp {
        0%, 60%, 75%, 90%, to {
            animation-timing-function: cubic-bezier(.215, .61, .355, 1)
        }
        0% {
            opacity: 0;
            transform: translate3d(0, 3000px, 0)
        }
        60% {
            opacity: 1;
            transform: translate3d(0, -20px, 0)
        }
        75% {
            transform: translate3d(0, 10px, 0)
        }
        90% {
            transform: translate3d(0, -5px, 0)
        }
        to {
            transform: translateZ(0)
        }
    }

    @keyframes Toastify__bounceOutUp {
        20% {
            transform: translate3d(0, calc(var(--y) - 10px), 0)
        }
        40%, 45% {
            opacity: 1;
            transform: translate3d(0, calc(var(--y) + 20px), 0)
        }
        to {
            opacity: 0;
            transform: translate3d(0, -2000px, 0)
        }
    }

    @keyframes Toastify__bounceInDown {
        0%, 60%, 75%, 90%, to {
            animation-timing-function: cubic-bezier(.215, .61, .355, 1)
        }
        0% {
            opacity: 0;
            transform: translate3d(0, -3000px, 0)
        }
        60% {
            opacity: 1;
            transform: translate3d(0, 25px, 0)
        }
        75% {
            transform: translate3d(0, -10px, 0)
        }
        90% {
            transform: translate3d(0, 5px, 0)
        }
        to {
            transform: none
        }
    }

    @keyframes Toastify__bounceOutDown {
        20% {
            transform: translate3d(0, calc(var(--y) - 10px), 0)
        }
        40%, 45% {
            opacity: 1;
            transform: translate3d(0, calc(var(--y) + 20px), 0)
        }
        to {
            opacity: 0;
            transform: translate3d(0, 2000px, 0)
        }
    }

    .Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
        animation-name: Toastify__bounceInLeft
    }

    .Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
        animation-name: Toastify__bounceInRight
    }

    .Toastify__bounce-enter--top-center {
        animation-name: Toastify__bounceInDown
    }

    .Toastify__bounce-enter--bottom-center {
        animation-name: Toastify__bounceInUp
    }

    .Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
        animation-name: Toastify__bounceOutLeft
    }

    .Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
        animation-name: Toastify__bounceOutRight
    }

    .Toastify__bounce-exit--top-center {
        animation-name: Toastify__bounceOutUp
    }

    .Toastify__bounce-exit--bottom-center {
        animation-name: Toastify__bounceOutDown
    }

    @keyframes Toastify__zoomIn {
        0% {
            opacity: 0;
            transform: scale3d(.3, .3, .3)
        }
        50% {
            opacity: 1
        }
    }

    @keyframes Toastify__zoomOut {
        0% {
            opacity: 1
        }
        50% {
            opacity: 0;
            transform: translate3d(0, var(--y), 0) scale3d(.3, .3, .3)
        }
        to {
            opacity: 0
        }
    }

    .Toastify__zoom-enter {
        animation-name: Toastify__zoomIn
    }

    .Toastify__zoom-exit {
        animation-name: Toastify__zoomOut
    }

    @keyframes Toastify__flipIn {
        0% {
            transform: perspective(400px) rotateX(90deg);
            animation-timing-function: ease-in;
            opacity: 0
        }
        40% {
            transform: perspective(400px) rotateX(-20deg);
            animation-timing-function: ease-in
        }
        60% {
            transform: perspective(400px) rotateX(10deg);
            opacity: 1
        }
        80% {
            transform: perspective(400px) rotateX(-5deg)
        }
        to {
            transform: perspective(400px)
        }
    }

    @keyframes Toastify__flipOut {
        0% {
            transform: translate3d(0, var(--y), 0) perspective(400px)
        }
        30% {
            transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg);
            opacity: 1
        }
        to {
            transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(90deg);
            opacity: 0
        }
    }

    .Toastify__flip-enter {
        animation-name: Toastify__flipIn
    }

    .Toastify__flip-exit {
        animation-name: Toastify__flipOut
    }

    @keyframes Toastify__slideInRight {
        0% {
            transform: translate3d(110%, 0, 0);
            visibility: visible
        }
        to {
            transform: translate3d(0, var(--y), 0)
        }
    }

    @keyframes Toastify__slideInLeft {
        0% {
            transform: translate3d(-110%, 0, 0);
            visibility: visible
        }
        to {
            transform: translate3d(0, var(--y), 0)
        }
    }

    @keyframes Toastify__slideInUp {
        0% {
            transform: translate3d(0, 110%, 0);
            visibility: visible
        }
        to {
            transform: translate3d(0, var(--y), 0)
        }
    }

    @keyframes Toastify__slideInDown {
        0% {
            transform: translate3d(0, -110%, 0);
            visibility: visible
        }
        to {
            transform: translate3d(0, var(--y), 0)
        }
    }

    @keyframes Toastify__slideOutRight {
        0% {
            transform: translate3d(0, var(--y), 0)
        }
        to {
            visibility: hidden;
            transform: translate3d(110%, var(--y), 0)
        }
    }

    @keyframes Toastify__slideOutLeft {
        0% {
            transform: translate3d(0, var(--y), 0)
        }
        to {
            visibility: hidden;
            transform: translate3d(-110%, var(--y), 0)
        }
    }

    @keyframes Toastify__slideOutDown {
        0% {
            transform: translate3d(0, var(--y), 0)
        }
        to {
            visibility: hidden;
            transform: translate3d(0, 500px, 0)
        }
    }

    @keyframes Toastify__slideOutUp {
        0% {
            transform: translate3d(0, var(--y), 0)
        }
        to {
            visibility: hidden;
            transform: translate3d(0, -500px, 0)
        }
    }

    .Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
        animation-name: Toastify__slideInLeft
    }

    .Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
        animation-name: Toastify__slideInRight
    }

    .Toastify__slide-enter--top-center {
        animation-name: Toastify__slideInDown
    }

    .Toastify__slide-enter--bottom-center {
        animation-name: Toastify__slideInUp
    }

    .Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
        animation-name: Toastify__slideOutLeft;
        animation-timing-function: ease-in;
        animation-duration: .3s
    }

    .Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
        animation-name: Toastify__slideOutRight;
        animation-timing-function: ease-in;
        animation-duration: .3s
    }

    .Toastify__slide-exit--top-center {
        animation-name: Toastify__slideOutUp;
        animation-timing-function: ease-in;
        animation-duration: .3s
    }

    .Toastify__slide-exit--bottom-center {
        animation-name: Toastify__slideOutDown;
        animation-timing-function: ease-in;
        animation-duration: .3s
    }

    @keyframes Toastify__spin {
        0% {
            transform: rotate(0)
        }
        to {
            transform: rotate(360deg)
        }
    }

/* ---- next block ---- */

[data-vaul-drawer] {
        touch-action: none;
        will-change: transform;
        transition: transform .5s cubic-bezier(.32, .72, 0, 1);
        animation-duration: .5s;
        animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1)
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=bottom][data-state=open] {
        animation-name: slideFromBottom
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=bottom][data-state=closed] {
        animation-name: slideToBottom
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=top][data-state=open] {
        animation-name: slideFromTop
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=top][data-state=closed] {
        animation-name: slideToTop
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=left][data-state=open] {
        animation-name: slideFromLeft
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=left][data-state=closed] {
        animation-name: slideToLeft
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=right][data-state=open] {
        animation-name: slideFromRight
    }

    [data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=right][data-state=closed] {
        animation-name: slideToRight
    }

    [data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=bottom] {
        transform: translate3d(0, var(--initial-transform, 100%), 0)
    }

    [data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=top] {
        transform: translate3d(0, calc(var(--initial-transform, 100%) * -1), 0)
    }

    [data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=left] {
        transform: translate3d(calc(var(--initial-transform, 100%) * -1), 0, 0)
    }

    [data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=right] {
        transform: translate3d(var(--initial-transform, 100%), 0, 0)
    }

    [data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=top] {
        transform: translate3d(0, var(--snap-point-height, 0), 0)
    }

    [data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=bottom] {
        transform: translate3d(0, var(--snap-point-height, 0), 0)
    }

    [data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=left] {
        transform: translate3d(var(--snap-point-height, 0), 0, 0)
    }

    [data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=right] {
        transform: translate3d(var(--snap-point-height, 0), 0, 0)
    }

    [data-vaul-overlay][data-vaul-snap-points=false] {
        animation-duration: .5s;
        animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1)
    }

    [data-vaul-overlay][data-vaul-snap-points=false][data-state=open] {
        animation-name: fadeIn
    }

    [data-vaul-overlay][data-state=closed] {
        animation-name: fadeOut
    }

    [data-vaul-animate=false] {
        animation: none !important
    }

    [data-vaul-overlay][data-vaul-snap-points=true] {
        opacity: 0;
        transition: opacity .5s cubic-bezier(.32, .72, 0, 1)
    }

    [data-vaul-overlay][data-vaul-snap-points=true] {
        opacity: 1
    }

    [data-vaul-drawer]:not([data-vaul-custom-container=true])::after {
        content: '';
        position: absolute;
        background: inherit;
        background-color: inherit
    }

    [data-vaul-drawer][data-vaul-drawer-direction=top]::after {
        top: initial;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 200%
    }

    [data-vaul-drawer][data-vaul-drawer-direction=bottom]::after {
        top: 100%;
        bottom: initial;
        left: 0;
        right: 0;
        height: 200%
    }

    [data-vaul-drawer][data-vaul-drawer-direction=left]::after {
        left: initial;
        right: 100%;
        top: 0;
        bottom: 0;
        width: 200%
    }

    [data-vaul-drawer][data-vaul-drawer-direction=right]::after {
        left: 100%;
        right: initial;
        top: 0;
        bottom: 0;
        width: 200%
    }

    [data-vaul-overlay][data-vaul-snap-points=true]:not([data-vaul-snap-points-overlay=true]):not(
[data-state=closed]
) {
        opacity: 0
    }

    [data-vaul-overlay][data-vaul-snap-points-overlay=true] {
        opacity: 1
    }

    [data-vaul-handle] {
        display: block;
        position: relative;
        opacity: .7;
        background: #e2e2e4;
        margin-left: auto;
        margin-right: auto;
        height: 5px;
        width: 32px;
        border-radius: 1rem;
        touch-action: pan-y
    }

    [data-vaul-handle]:active, [data-vaul-handle]:hover {
        opacity: 1
    }

    [data-vaul-handle-hitarea] {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: max(100%, 2.75rem);
        height: max(100%, 2.75rem);
        touch-action: inherit
    }

    @media (hover: hover) and (pointer: fine) {
        [data-vaul-drawer] {
            user-select: none
        }
    }

    @media (pointer: fine) {
        [data-vaul-handle-hitarea]: {
            width: 100%;
            height: 100%
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0
        }
        to {
            opacity: 1
        }
    }

    @keyframes fadeOut {
        to {
            opacity: 0
        }
    }

    @keyframes slideFromBottom {
        from {
            transform: translate3d(0, var(--initial-transform, 100%), 0)
        }
        to {
            transform: translate3d(0, 0, 0)
        }
    }

    @keyframes slideToBottom {
        to {
            transform: translate3d(0, var(--initial-transform, 100%), 0)
        }
    }

    @keyframes slideFromTop {
        from {
            transform: translate3d(0, calc(var(--initial-transform, 100%) * -1), 0)
        }
        to {
            transform: translate3d(0, 0, 0)
        }
    }

    @keyframes slideToTop {
        to {
            transform: translate3d(0, calc(var(--initial-transform, 100%) * -1), 0)
        }
    }

    @keyframes slideFromLeft {
        from {
            transform: translate3d(calc(var(--initial-transform, 100%) * -1), 0, 0)
        }
        to {
            transform: translate3d(0, 0, 0)
        }
    }

    @keyframes slideToLeft {
        to {
            transform: translate3d(calc(var(--initial-transform, 100%) * -1), 0, 0)
        }
    }

    @keyframes slideFromRight {
        from {
            transform: translate3d(var(--initial-transform, 100%), 0, 0)
        }
        to {
            transform: translate3d(0, 0, 0)
        }
    }

    @keyframes slideToRight {
        to {
            transform: translate3d(var(--initial-transform, 100%), 0, 0)
        }
    }

/* ---- next block ---- */

.go37342527 {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 16px 64px rgba(0, 0, 0, 0.16);
        width: fit-content;
        margin: auto;
    }

    @media (max-width: 440px) {
        .go37342527 {
            width: 100%;
            height: fit-content;
            margin: auto 0 0 0;
        }
    }

    .go3288899091 {
        transform: translateY(-8px);
        margin-bottom: 12px;
    }

    .go3535743411 {
        margin-bottom: 12px;
    }

    tc-root * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, Tahoma, Verdana, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-tap-highlight-color: transparent;
    }

    tc-root img {
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    tc-root *:focus {
        outline: #08f auto 2px;
    }

    tc-root li {
        list-style: none;
    }

    tc-root button {
        outline: none;
    }

    body.tc-disable-scroll {
        position: fixed;
        overflow-y: scroll;
        right: 0;
        left: 0;
    }

    body.tc-using-mouse tc-root *:focus {
        outline: none;
    }

/* ---- next block ---- */

@font-face {
        font-family: 'Ubuntu';
        src: url('https://jtsupport.rox.chat/v/fonts/Ubuntu.woff2') format('woff2');
        src: url('https://jtsupport.rox.chat/v/fonts/Ubuntu.woff') format('woff');
        src: url('https://jtsupport.rox.chat/v/fonts/Ubuntu.ttf') format('truetype');
        font-weight: 400;
        font-style: normal
    }

    @font-face {
        font-family: 'Ubuntu';
        src: url('https://jtsupport.rox.chat/v/fonts/Ubuntu-Bold.woff2') format('woff2');
        src: url('https://jtsupport.rox.chat/v/fonts/Ubuntu-Bold.woff') format('woff');
        src: url('https://jtsupport.rox.chat/v/fonts/Ubuntu-Bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal
    }

    @font-face {
        font-family: 'Roboto';
        src: url('https://jtsupport.rox.chat/v/fonts/Roboto.woff2') format('woff2');
        src: url('https://jtsupport.rox.chat/v/fonts/Roboto.woff') format('woff');
        src: url('https://jtsupport.rox.chat/v/fonts/Roboto.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: 'Roboto';
        src: url('https://jtsupport.rox.chat/v/fonts/Roboto-Bold.woff2') format('woff2');
        src: url('https://jtsupport.rox.chat/v/fonts/Roboto-Bold.woff') format('woff');
        src: url('https://jtsupport.rox.chat/v/fonts/Roboto-Bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal;
    }


    .roxchat-root,
    .roxchat-root div,
    .roxchat-root span,
    .roxchat-root applet,
    .roxchat-root object,
    .roxchat-root iframe,
    .roxchat-root h1,
    .roxchat-root h2,
    .roxchat-root h3,
    .roxchat-root h4,
    .roxchat-root h5,
    .roxchat-root h6,
    .roxchat-root p,
    .roxchat-root blockquote,
    .roxchat-root pre,
    .roxchat-root a,
    .roxchat-root abbr,
    .roxchat-root acronym,
    .roxchat-root address,
    .roxchat-root big,
    .roxchat-root cite,
    .roxchat-root code,
    .roxchat-root del,
    .roxchat-root dfn,
    .roxchat-root em,
    .roxchat-root img,
    .roxchat-root ins,
    .roxchat-root kbd,
    .roxchat-root q,
    .roxchat-root s,
    .roxchat-root samp,
    .roxchat-root small,
    .roxchat-root strike,
    .roxchat-root strong,
    .roxchat-root sub,
    .roxchat-root sup,
    .roxchat-root tt,
    .roxchat-root var,
    .roxchat-root b,
    .roxchat-root u,
    .roxchat-root i,
    .roxchat-root center,
    .roxchat-root dl,
    .roxchat-root dt,
    .roxchat-root dd,
    .roxchat-root ol,
    .roxchat-root ul,
    .roxchat-root li,
    .roxchat-root fieldset,
    .roxchat-root form,
    .roxchat-root label,
    .roxchat-root legend,
    .roxchat-root table,
    .roxchat-root caption,
    .roxchat-root tbody,
    .roxchat-root tfoot,
    .roxchat-root thead,
    .roxchat-root tr,
    .roxchat-root th,
    .roxchat-root td,
    .roxchat-root article,
    .roxchat-root aside,
    .roxchat-root canvas,
    .roxchat-root details,
    .roxchat-root embed,
    .roxchat-root figure,
    .roxchat-root figcaption,
    .roxchat-root footer,
    .roxchat-root header,
    .roxchat-root hgroup,
    .roxchat-root menu,
    .roxchat-root nav,
    .roxchat-root output,
    .roxchat-root ruby,
    .roxchat-root section,
    .roxchat-root summary,
    .roxchat-root time,
    .roxchat-root mark,
    .roxchat-root audio,
    .roxchat-root button,
    .roxchat-root video {
        background: none;
        color: #393f6b;
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
        position: static;
        text-transform: none;
        text-indent: 0;
        box-sizing: content-box;
        z-index: 0;
        text-decoration: none;
    }

    .roxchat-root button {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        width: auto;
        min-width: 0;
        box-sizing: border-box;
    }

    .roxchat-root li:before,
    .roxchat-root li:after {
        content: none;
    }

    .roxchat-root {
        color: #000;
        font: 11px/1.2em 'Roboto', Ubuntu, normal Arial, Helvetica, sans-serif;
        -webkit-backface-visibility: hidden;
        text-align: left;
    }

    .roxchat-root ol,
    .roxchat-root ul {
        list-style: none;
    }

    .roxchat-root blockquote,
    .roxchat-root q {
        quotes: none;
    }

    .roxchat-root blockquote:before,
    .roxchat-root blockquote:after,
    .roxchat-root q:before,
    .roxchat-root q:after {
        content: '';
        content: none;
    }

    .roxchat-root table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    .roxchat-root input {
        display: block;
    }

    .roxchat-root textarea,
    .roxchat-root .roxchat-textarea-ext {
        box-sizing: content-box;
    }

    .roxchat-root b,
    .roxchat-root strong {
        font-weight: bold;
    }

    .roxchat-root img {
        display: inline;
        width: auto;
    }

    .roxchat-root .roxchat-rtl_lang,
    .roxchat-root.roxchat-rtl_lang {
        direction: rtl;
    }

    .roxchat-root .roxchat-clear {
        clear: both;
    }

    .roxchat-root .roxchat-description {
        font-size: 13px;
        line-height: 1.3em;
        white-space: pre-wrap;
        color: #fff;
    }

    .roxchat-root .roxchat-draggable {
        cursor: move;
        background-color: #393f6b;
    }

    .roxchat-mobile-mode.roxchat-root .roxchat-draggable,
    .roxchat-separate-mode.roxchat-root .roxchat-draggable {
        cursor: default;
    }

    .roxchat-root .roxchat-action {
        color: #AEAEAE;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .roxchat-root .roxchat-action.roxchat-active {
        cursor: inherit;
    }

    .roxchat-root .roxchat-offline-block .roxchat-form .roxchat-justify-block {
        display: flex;
        flex-direction: column;
        text-align: justify;
        text-align-last: justify;
        line-height: 0;
        font-size: 1px;
        text-justify: newspaper;
        zoom: 1;
    }

    .roxchat-root .roxchat-justify-block.roxchat-group-btn-2 > .roxchat-btn-upload {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35px;
        margin: 0 auto 47px 0;
        line-height: 2.1;
        font-family: Roboto, Ubuntu, normal Arial, Helvetica, sans-serif;
        font-weight: 400;
        font-size: 13px;
        color: #29C1E7;
        background: 0;
        border-radius: 30px;
        border: 1px dashed #29c1e766;
    }

    .roxchat-root .roxchat-justify-block.roxchat-group-btn-2 > .roxchat-btn-upload > .roxchat-ico {
        width: 14px;
        height: 14px;
        margin: 0 10px -3px 0;
    }

    .roxchat-root .roxchat-top-error-block.roxchat-top-error-block-hide {
        display: none;
    }

    .roxchat-root .roxchat-top-error-block {
        position: absolute;
        min-width: 300px;
        height: 60px;
        left: 50%;
        top: 95px;
        display: flex;
        transform: translate(-50%, 0);
        z-index: 10;

        background: #FFEEEE;
        border-radius: 15px;
    }

    .roxchat-root .roxchat-top-error-block .roxchat-top-error-block-text {
        font-style: normal;
        font-weight: normal;
        font-size: 13px;

        line-height: 120%;
        display: flex;
        align-items: center;
        text-align: center;
        letter-spacing: 0.01em;
        padding-left: 1.5em;
        padding-right: 1.5em;
        color: #CF6C6C;
    }

    .roxchat-root .roxchat-justify-block:after {
        width: 100%;
        height: 0;
        visibility: hidden;
        overflow: hidden;
        content: '';
        display: inline-block;
    }

    .roxchat-root .roxchat-justify-block > * {
        display: inline-block;
        font-size: 12px;
    }

    .roxchat-root .roxchat-btn {
        border-radius: 20px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        font-size: 12px;
        font-weight: bold;
        line-height: 36px;
        overflow: hidden;
        outline: none;
        padding: 4px 10px;
        text-align: center;
        white-space: nowrap;
        letter-spacing: 0.29px;
    }

    .roxchat-root .roxchat-btn.roxchat-sm {
        border-radius: 3px;
        line-height: 24px;
    }

    .roxchat-root .roxchat-btn.roxchat-info {
        background: -webkit-linear-gradient(to right, #70e0cd, #3fb6c9);
        background: -moz-linear-gradient(to right, #70e0cd, #3fb6c9);
        background: -ms-linear-gradient(to right, #70e0cd, #3fb6c9);
        background: -o-linear-gradient(to right, #70e0cd, #3fb6c9);
        background: linear-gradient(to right, #70e0cd, #3fb6c9);
    }

    .roxchat-root .roxchat-btn.roxchat-success {
        background: #069a24;
        border: 1px solid #00813b;
        color: #fff;
    }

    .roxchat-root .roxchat-btn.roxchat-danger {
        background: #e40022;
        border: 1px solid #880000;
        color: #fff;
    }

    .roxchat-root .roxchat-btn[disabled] {
        cursor: default;
    }

    .roxchat-root .roxchat-btn.roxchat-btn-send {
        min-width: 135px;
        height: 35px;
        margin: 0 auto;
        text-align: center;
        line-height: 2.1;
        color: #fff;
        background: #393f6b;
        transition: background .3s ease;
    }

    .roxchat-root .roxchat-btn:hover:not([disabled]) {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), #393F6B;
    }

    .roxchat-root .roxchat-btn.roxchat-btn-send[disabled] {
        background: #b0b0b0;
    }

    .roxchat-root .roxchat-form-control.roxchat-justify-block > .roxchat-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: auto;
        text-align: center;
        text-align-last: center;
    }

    .roxchat-root .roxchat-justify-block.roxchat-group-btn-2 > .roxchat-btn {
        width: 49%;
    }

    .roxchat-root .roxchat-justify-block.roxchat-group-btn-2 > .roxchat-btn-upload {
        width: 55%;
        font-size: 12px;
        line-height: 1.2;
        transition: border-color .3s ease;
    }

    .roxchat-root .roxchat-justify-block.roxchat-group-btn-2 > .roxchat-btn-upload:hover {
        border-color: #29C1E7;
        background: 0;
    }

    .roxchat-root .roxchat-group-btn.roxchat-group-btn-3 > .roxchat-btn {
        width: 33%;
    }

    .roxchat-root .roxchat-error-message {
        color: #a94442;
    }

    .roxchat-root .roxchat-form.roxchat-form-horizontal .roxchat-form-control {
        display: inline-block;
        vertical-align: middle;
    }

    .roxchat-root .roxchat-form-control {
        margin-top: 10px;
        position: relative;
    }

    .roxchat-root .roxchat-form-control .roxchat-error-message {
        font-size: 16px;
        position: absolute;
        bottom: 0;
        transform: translateY(-50%);
        right: 8px;
    }

    .roxchat-root .roxchat-form-control > .roxchat-label {
        display: block;
        position: relative;
    }

    .roxchat-root .roxchat-form-control > .roxchat-label textarea,
    .roxchat-root .roxchat-form-control > .roxchat-label .roxchat-textarea-ext {
        height: 70px;
        vertical-align: middle;
        resize: none;
    }

    .roxchat-root .roxchat-form-control > .roxchat-label textarea {
        height: 40px;
    }

    .roxchat-root .roxchat-form-wrapper.roxchat-scrollable-block .roxchat-form .roxchat-form-control > .roxchat-label > .roxchat-label-text {
        cursor: text;
        font-size: 13px;
        line-height: 36px;
        position: absolute;
        white-space: pre;
        z-index: 100;
    }

    .roxchat-root .roxchat-form-control > .roxchat-label > .roxchat-label-text,
    .roxchat-root .roxchat-form-control > .roxchat-label > .roxchat-label-text * {
        color: #888;
    }

    .roxchat-root .roxchat-form-control > .roxchat-label > .roxchat-label-text {
        cursor: text;
        font-size: 13px;
        line-height: 36px;
        position: absolute;
        left: 3px;
        white-space: pre;
        z-index: 100;
    }

    .roxchat-root .roxchat-form-control > .roxchat-label .roxchat-optional-postfix {
        margin-left: 5px;
    }

    .roxchat-root .roxchat-form-control > .roxchat-control-actions {
        position: absolute;
        top: 3px;
        right: 3px;
    }

    .roxchat-root .roxchat-form-control textarea {
        resize: vertical;
        min-height: 40px;
        height: 40px;
    }

    .roxchat-root .roxchat-form-control textarea,
    .roxchat-root .roxchat-form-control .roxchat-textarea-ext,
    .roxchat-root .roxchat-form-control input[type="text"],
    .roxchat-root .roxchat-form-control input[type="tel"],
    .roxchat-root .roxchat-form-control select {
        background: #fff;
        border: none;
        border-bottom: 1px solid #DBDBDB;
        box-sizing: border-box;
        color: #393f6b;
        font: 13px/1.2em 'Roboto', Ubuntu, normal Arial, Helvetica, sans-serif;
        width: 100%;
        touch-action: manipulation;
    }

    .roxchat-root .roxchat-form-control textarea:disabled,
    .roxchat-root .roxchat-form-control .roxchat-textarea-ext:disabled,
    .roxchat-root .roxchat-form-control input[type="text"]:disabled,
    .roxchat-root .roxchat-form-control input[type="tel"]:disabled,
    .roxchat-root .roxchat-form-control select:disabled {
        color: rgba(0, 0, 0, 0.4);
        background-color: rgba(240, 240, 240, .5);
        cursor: auto;
    }

    .roxchat-root .roxchat-form-control.roxchat-error textarea,
    .roxchat-root .roxchat-form-control.roxchat-error .roxchat-textarea-ext,
    .roxchat-root .roxchat-form-control.roxchat-error input[type="text"],
    .roxchat-root .roxchat-form-control.roxchat-error input[type="tel"],
    .roxchat-root .roxchat-form-control.roxchat-error select {
        border-color: #a94442;
    }

    .roxchat-root .roxchat-form-control.roxchat-error textarea,
    .roxchat-root .roxchat-form-control.roxchat-error input[type="text"],
    .roxchat-root .roxchat-form-control.roxchat-error input[type="tel"] {
        padding-right: 30px;
    }

    .roxchat-root .roxchat-form-control.roxchat-success textarea,
    .roxchat-root .roxchat-form-control.roxchat-success .roxchat-textarea-ext,
    .roxchat-root .roxchat-form-control.roxchat-success input[type="text"],
    .roxchat-root .roxchat-form-control.roxchat-success input[type="tel"],
    .roxchat-root .roxchat-form-control.roxchat-success select {
        border-color: #3c763d;
    }

    .roxchat-root .roxchat-form-control textarea:focus,
    .roxchat-root .roxchat-form-control .roxchat-textarea-ext:focus,
    .roxchat-root .roxchat-form-control select:focus,
    .roxchat-root .roxchat-form-control input[type="text"]:focus,
    .roxchat-root .roxchat-form-control input[type="tel"]:focus {
        border-color: #40d6bd;
        outline: none;
    }

    .roxchat-root .roxchat-form-control input[type="text"],
    .roxchat-root .roxchat-form-control input[type="tel"],
    .roxchat-root .roxchat-form-control select {
        line-height: 100%;
        height: 40px;
        padding-right: 10px;
        margin: 0 0 20px;
    }

    .rtl.roxchat-root .roxchat-form-control input[type="text"] {
        direction: rtl;
    }

    .rtl.roxchat-root .roxchat-form-control input[type="tel"],
    .rtl.roxchat-root .roxchat-form-control input[name="email"] {
        text-align: end;
        direction: ltr;
    }

    .roxchat-root .roxchat-form-control select {
        height: 36px;
    }

    .roxchat-root .roxchat-survey-block .roxchat-form-control select {
        padding-left: 0;
    }

    .roxchat-root .roxchat-form-control .roxchat-textarea-ext,
    .roxchat-root .roxchat-form-control textarea {
        padding: 12px 5px 0 2px;
    }

    .rtl.roxchat-root .roxchat-form-control .roxchat-textarea-ext,
    .rtl.roxchat-root .roxchat-form-control textarea,
    .rtl.roxchat-root .roxchat-form-control .roxchat-textarea-ext ~ .roxchat-message-area_placeholder {
        direction: rtl;
        text-align: right;
    }

    .rtl.roxchat-root .roxchat-form-control .roxchat-textarea-ext ~ .roxchat-message-area_placeholder {
        right: 60px;
        left: unset;
    }

    .roxchat-root .roxchat-form-control.roxchat-form-button-right {
        display: flex;
        margin: 0;
    }

    .roxchat-root .roxchat-form-control.roxchat-form-button-right .roxchat-btn.roxchat-btn-send {
        display: inline-block;
        min-width: 135px;
        height: 35px;
        text-align: center;
        line-height: 2.1;
    }

    .roxchat-root .roxchat-input-group {
        position: relative;
        width: 100%;
    }

    .roxchat-root .roxchat-input-group > * {
        background: #fff;
        border: 1px solid #dfdfdf;
        border-width: 1px 0;
    }

    .roxchat-root .roxchat-input-group > * {
        line-height: 36px;
        height: 36px;
    }

    .roxchat-root .roxchat-input-group > .roxchat-input-group-main,
    .roxchat-root .roxchat-input-group > .roxchat-input-group-main > * {
        height: 34px;
        line-height: 34px;
    }

    .roxchat-root .roxchat-input-group.roxchat-input-group-left > *:last-child {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        border-left-width: 1px;
    }

    .roxchat-root .roxchat-input-group.roxchat-input-group-left > *:first-child {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        border-right-width: 1px;
    }

    .roxchat-root .roxchat-input-group.roxchat-input-group-left > * {
        float: right;
    }

    .roxchat-root .roxchat-input-group.roxchat-input-group-left > .roxchat-input-group-main {
        display: block;
        float: none;
        padding: 0 12px;
    }

    .roxchat-root .roxchat-input-group > .roxchat-input-group-main > * {
        background: transparent;
        border: none;
        width: 100%;
    }

    .roxchat-root .roxchat-input-group input:focus,
    .roxchat-root .roxchat-input-group button:focus {
        outline: none;
    }

    .roxchat-root .roxchat-icon {
        display: inline-block;
    }

    .roxchat-root .roxchat-ico {
        display: inline-block;
        width: 1em;
        height: 1em;
        stroke-width: 0;
        stroke: currentColor;
        fill: currentColor;
    }

    .roxchat-root .roxchat-process .roxchat-ico {
        display: none;
    }

    .roxchat-root .roxchat-ico.roxchat-ico-send {
        stroke-width: 1;
        stroke: #939bba;
        fill: #939bba;
    }

    .roxchat-root .roxchat-ico-viber-logo {
        width: 0.98046875em;
    }

    .roxchat-root .roxchat-ico-bubbles {
        width: 1.125em;
    }

    .roxchat-root .roxchat-ico-roxchat-logo {
        width: 1.0625em;
    }

    .roxchat-root .roxchat-ico-facebook-logo {
        width: 0.541015625em;
    }

    .roxchat-root .roxchat-ico-instagram-logo {
        width: 1em;
    }

    .roxchat-root .roxchat-ico-vk-logo {
        width: 1.155859375em;
    }

    .roxchat-root .roxchat-ico-email {
        width: 1em;
    }

    .roxchat-root .roxchat-btn > .roxchat-icon,
    .roxchat-root .roxchat-action > .roxchat-icon {
        vertical-align: middle;
    }

    .roxchat-root .roxchat-action .roxchat-icon {
        position: relative;
    }

    .roxchat-root .roxchat-action.roxchat-send-button {
        top: 8px;
        right: 5px;
    }

    .roxchat-root .roxchat-send-button .roxchat-ico.roxchat-ico-send {
        font-size: 20px;
    }

    .roxchat-root .roxchat-ico.roxchat-ico-notification {
        width: 36px;
        height: 51px;
        font-weight: bold;
        font-size: 12px;
    }

    .roxchat-root .roxchat-send-button.roxchat-disabled .roxchat-ico.roxchat-ico-send {
        opacity: 0.3;
        cursor: default;
    }

    .roxchat-root .roxchat-header .roxchat-action.roxchat-actions-button {
        color: #FFF;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 46px;
    }

    .roxchat-root .roxchat-header .roxchat-action.roxchat-return-button {
        margin-right: 10px;
    }

    .roxchat-root .roxchat-header .roxchat-actions-button .roxchat-ico.roxchat-ico-actions {
        color: #949cbb;
        margin-bottom: 2px;
        display: inline-block;
        margin-right: 10px;
        width: 5px;
        font-size: 18px;
    }

    .roxchat-root .roxchat-header .roxchat-actions-button:disabled .roxchat-ico {
        opacity: 0.3;
    }

    .roxchat-root .roxchat-icon.roxchat-icon-call {
        background: url('https://jtsupport.rox.chat/v/images/ico_call.png') top left no-repeat;
        width: 16px;
        height: 16px;
    }

    .roxchat-root .roxchat-operator-rate .roxchat-ico,
    .roxchat-root .roxchat-stars .roxchat-ico {
        font-size: 21px;
        margin-right: 6px;
        margin-left: 6px;
    }

    .roxchat-root .roxchat-form-control li svg {
        width: 26px;
        height: 26px;
    }

    .roxchat-root .roxchat-icon.roxchat-icon-attach {
        background: url('https://jtsupport.rox.chat/v/images/ico_attach.png') top left no-repeat;
        width: 7px;
        height: 15px;
    }

    .roxchat-root .roxchat-icon.roxchat-icon-check {
        display: none;
        background: url('https://jtsupport.rox.chat/v/images/ico_check.png') top left no-repeat;
        width: 20px;
        height: 20px;
    }

    .roxchat-root .roxchat-icon.roxchat-icon-loading {
        background: url('https://jtsupport.rox.chat/v/images/throbber-small.gif') top left no-repeat;
        width: 16px;
        height: 16px;
    }

    .roxchat-root .roxchat-loading-throbber {
        background: url('https://jtsupport.rox.chat/v/images/throbber-small.gif') center center no-repeat;
        min-width: 16px;
        min-height: 16px;
    }

    .roxchat-root .roxchat-on-ready,
    .roxchat-root .roxchat-ready .roxchat-state-root .roxchat-on-ready,
    .roxchat-root .roxchat-on-success,
    .roxchat-root .roxchat-success .roxchat-state-root .roxchat-on-success,
    .roxchat-root .roxchat-on-error,
    .roxchat-root .roxchat-error .roxchat-state-root .roxchat-on-error,
    .roxchat-root .roxchat-on-process,
    .roxchat-root .roxchat-process .roxchat-state-root .roxchat-on-process {
        display: none;
    }

    .roxchat-root .roxchat-ready .roxchat-on-ready,
    .roxchat-root .roxchat-state-root.roxchat-ready .roxchat-on-ready,
    .roxchat-root .roxchat-success .roxchat-on-success,
    .roxchat-root .roxchat-state-root.roxchat-success .roxchat-on-success,
    .roxchat-root .roxchat-process .roxchat-on-process,
    .roxchat-root .roxchat-state-root.roxchat-process .roxchat-on-process,
    .roxchat-root .roxchat-error .roxchat-on-error,
    .roxchat-root .roxchat-state-root.roxchat-error .roxchat-on-error {
        display: inherit;
    }

    .roxchat-root .roxchat-on-dialogue,
    .roxchat-root .roxchat-on-online,
    .roxchat-root .roxchat-on-busy-online,
    .roxchat-root .roxchat-on-offline,
    .roxchat-root .roxchat-on-busy-offline {
        display: none;
    }

    .roxchat-online .roxchat-root .roxchat-on-online,
    .roxchat-online.roxchat-root .roxchat-on-online,
    .roxchat-busy-online .roxchat-root .roxchat-on-busy-online,
    .roxchat-busy-online.roxchat-root .roxchat-on-busy-online,
    .roxchat-offline .roxchat-root .roxchat-on-offline,
    .roxchat-offline.roxchat-root .roxchat-on-offline,
    .roxchat-busy-offline .roxchat-root .roxchat-on-busy-offline,
    .roxchat-busy-offline.roxchat-root .roxchat-on-busy-offline {
        display: inherit;
    }

    .roxchat-root .roxchat-progressbar-wrapper {
        background: #aaa;
        display: block;
        overflow: hidden;
        width: 100%;
        height: 2px;
    }

    .roxchat-root .roxchat-attached-file:not(.roxchat-process) .roxchat-progressbar-wrapper {
        display: none;
    }

    .roxchat-root .roxchat-progressbar-wrapper .roxchat-progressbar {
        width: 0;
        height: 100%;
        background: #3c763d;
    }

    .roxchat-root.roxchat-separate-container {
        position: fixed;
        z-index: 9999999;
    }

    .roxchat-root.roxchat-mobile-mode,
    .roxchat-root.roxchat-separate-mode {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .roxchat-root.roxchat-separate-mode {
        position: absolute;
        overflow-y: hidden;
    }

    .roxchat-root > .roxchat-chat-block {
        position: relative;
    }

    .roxchat-root.roxchat-desktop-mode > .roxchat-chat-block {
        margin-right: 30px;
    }

    .roxchat-root.roxchat-mobile-mode > .roxchat-chat-block,
    .roxchat-root.roxchat-separate-mode > .roxchat-chat-block {
        height: 100%;
    }

    .roxchat-root .roxchat-control-block {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 5px;
        z-index: 11;
    }

    .roxchat-root.roxchat-mobile-mode .roxchat-control-block {
        width: 40px;
        height: 40px;
        text-align: center;
    }

    .roxchat-root.roxchat-separate-mode .roxchat-control-block {
        display: none;
    }

    .roxchat-root .roxchat-control-block .roxchat-action {
        color: #ffffff;
        font-size: 13px;
        width: 40px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roxchat-root > .roxchat-control-block .roxchat-action .roxchat-ico {
        width: 100%;
        height: 100%;
    }

    .roxchat-root > .roxchat-chat-block > .roxchat-chat {
        overflow: hidden;
        position: relative;
        z-index: 5;
    }

    .roxchat-root.roxchat-desktop-mode > .roxchat-chat-block > .roxchat-chat {
        border-radius: 12px;
        margin-left: 26px;
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    .roxchat-root > .roxchat-chat-block > .roxchat-mobile-chat {
        display: flex;
        flex-direction: column;
    }

    .roxchat-root.roxchat-separate-mode:not(.roxchat-iframe) > .roxchat-chat-block > .roxchat-mobile-chat {
        touch-action: none;
    }

    .roxchat-mobile-chat > .roxchat-mobile-auto-height {
        flex-grow: 1;
        flex-basis: 0;
    }

    .roxchat-mobile-mode.roxchat-root .roxchat-chat,
    .roxchat-separate-mode.roxchat-root .roxchat-chat {
        height: 100%;
    }

    .roxchat-root .roxchat-chat-modes-actions {
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 10;
    }

    .roxchat-root.roxchat-separate-mode .roxchat-chat-modes-actions {
        display: none;
    }

    .roxchat-root .roxchat-chat-modes-actions .roxchat-action {
        background: #fff;
        border: 1px solid #dfdfdf;
        border-radius: 6px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        box-sizing: content-box;
        color: #999;
        font-size: 15px;
        margin: 2px 0;
        padding: 4px;
        width: 17px;
    }

    .roxchat-root .roxchat-chat-modes-actions .roxchat-action.roxchat-active {
        border-right-color: transparent;
        color: #000;
    }

    .roxchat-root .roxchat-chat-modes-actions .roxchat-action.roxchat-has-not-read-message {
        color: #0067be;
    }

    .roxchat-root .roxchat-chat .roxchat-header {
        position: relative;
        min-height: 80px;
    }

    .roxchat-root.roxchat-desktop-mode .roxchat-chat .roxchat-header {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .roxchat-root.roxchat-desktop-mode .roxchat-chat .roxchat-header > .roxchat-header {
        padding-left: 25px;
    }

    .roxchat-root .roxchat-header .roxchat-control-block .roxchat-action {
        color: #fff;
        font-size: 13px;
        line-height: 40px;
    }

    .roxchat-root .roxchat-chat .roxchat-header > .roxchat-account-block {
        float: right;
        right: 0;
    }

    .roxchat-root .roxchat-chat .roxchat-header-section {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .roxchat-root .roxchat-chat .roxchat-header .roxchat-header-section > .roxchat-logo:has(img[src=""]) {
        display: none;
    }

    .roxchat-root .roxchat-chat .roxchat-header .roxchat-header-section > .roxchat-logo {
        width: 46px;
        height: 46px;
    }

    .roxchat-root .roxchat-header .roxchat-header-section > .roxchat-logo > img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    .roxchat-root .roxchat-header .roxchat-header-section.roxchat-offline-section-header .roxchat-operator {
        max-width: 220px;
    }

    .roxchat-root .roxchat-header .roxchat-header-section.roxchat-offline-section-header .roxchat-operator > .roxchat-title {
        font-family: 'Roboto', 'Ubuntu', Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 21px;

        display: inline-block;
        max-width: 95%;
        padding: 2px 28px 2px 0;
        color: #fff;
        line-height: 1.08;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .roxchat-root .roxchat-chat .roxchat-header > .roxchat-account-block {
        position: absolute;
        top: 0;
        right: 0;
    }

    .roxchat-root .roxchat-chat .roxchat-header > .roxchat-avatar > .roxchat-icon {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .roxchat-root .roxchat-chat .roxchat-header > .roxchat-operator-block {
        flex: 0 1 172px;
        line-height: 32px;
    }

    .roxchat-root .roxchat-chat .roxchat-header .roxchat-description {
        position: absolute;
        left: 25px;
        top: 35%;
        min-width: max-content;
        font-weight: 700;
        font-size: 16px;
    }

    .roxchat-root .roxchat-chat.roxchat-mobile-chat .roxchat-header .roxchat-description {
        left: 5px;
    }

    .roxchat-root .roxchat-operator-block > .roxchat-operator {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        max-width: 180px;
        width: 100%;
        padding: 22px 0;
        margin-left: 10px;
        text-align: left;
    }

    .roxchat-root .roxchat-operator > .roxchat-name {
        display: block;
        max-width: 100%;
        padding: 0 2px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        line-height: 18px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .roxchat-root .roxchat-operator > .roxchat-title {
        display: block;
        max-width: 100%;
        padding: 0 2px;
        color: #fff;
        font-size: 13px;
        line-height: 16px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .roxchat-root .roxchat-operator-block:not([style*="display: none"]) + .roxchat-no-operator-block {
        display: none;
    }

    .roxchat-root .roxchat-no-operator-block {
        max-width: 200px;
        min-height: 19px;
        margin-left: 15px;
    }

    .roxchat-root .roxchat-no-operator-block .roxchat-no-operator-title {
        display: inline-block;
        max-width: 100%;
        padding: 3px 0 0 0;
        color: #fff;
        font-size: 15px;
        line-height: 1.08;
        font-weight: bold;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .roxchat-root .roxchat-no-operator-block .roxchat-offline-title {
        left: 50%;
        transform: translateX(-50%);
    }

    .roxchat-root .roxchat-body {
        height: 100%;
        position: relative;
    }

    .roxchat-root .roxchat-chat-block .roxchat-sections {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .roxchat-root .roxchat-chat-block .roxchat-section {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    *[data-roxchat-behavior-type~="auto-height-by-siblings"] {
        height: 0;
    }

    .roxchat-root .roxchat-dialogue-block {
        position: absolute;
        transition: background-color .5s;
        left: 0;
        right: 0;
        top: 1px;
        bottom: 68px;
        overflow: hidden;
    }

    .roxchat-root .roxchat-dialogue-block .roxchat-dialogues-load-prev-state {
        margin-bottom: 5px;
    }

    .roxchat-root .roxchat-dialogue-block .roxchat-dialogues-load-prev {
        font-size: 1.1em;
        padding: 3px;
        text-align: center;
    }

    .roxchat-root .roxchat-dialogue-block .roxchat-dialogues-load-prev:hover {
        background: #f0f0f0;
    }

    .roxchat-root .roxchat-dialogues {
        box-sizing: content-box;
        height: 95%;
    }

    .roxchat-root .roxchat-dialogue {
        margin-bottom: 10px;
    }

    .roxchat-root .roxchat-dialogues .roxchat-dialogue:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .roxchat-root .roxchat-dialogue .roxchat-dialogue-date-inner {
        text-align: center;
        margin-bottom: 10px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-dialogue-date {
        display: inline-block;
        min-width: 50px;
        padding: 7px 5px 5px 5px;
        text-align: center;
        font-size: 1.1em;
        border: 1px solid #E8E8E8;
        border-radius: 30px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message {
        margin-bottom: 15px;
        position: relative;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-loading {
        background: url('https://jtsupport.rox.chat/v/images/throbber-line-small.gif') center center no-repeat;
        width: 38px;
        height: 3px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-cont_req-message,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-info-message,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-contacts-message {
        min-height: inherit;
        margin-left: auto;
        margin-right: auto;
        width: 85%;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator_busy-message {
        min-height: inherit;
        margin-left: auto;
        margin-right: auto;
        width: 85%;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator_busy-message .roxchat-message-body {
        text-align: center;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-cont_req-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-contacts-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-info-message .roxchat-message-body {
        text-align: center;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-cont_req-message .roxchat-message-body > *,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-contacts-message .roxchat-message-body > *,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-info-message .roxchat-message-body > * {
        color: #9e9e9e;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator_busy-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-cont_req-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-info-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-contacts-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-date {
        display: none;
    }

    .roxchat-root .roxchat-dialogue .roxchat-author-name:after {
        content: ':';
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info {
        margin-top: 3px;
        line-height: 1.3;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info span {
        color: #b6b6b6;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info * {
        vertical-align: middle;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info .roxchat-message-state-ico {
        display: inline-block;

        font-size: 10px;
        vertical-align: text-bottom;
        margin-left: 2px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-operator-message .roxchat-message-info {
        position: relative;
        left: 28px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info .roxchat-message-state-ico.roxchat-ico-ready,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info .roxchat-message-state-ico.roxchat-ico-process {
        fill: #989898;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-info .roxchat-message-state-ico.roxchat-ico-read {
        fill: #0AAAC0 !important;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body {
        border-radius: 13px;
        font-size: 13px;
        line-height: 1.3em;
        padding: 8px;
        position: relative;
        text-align: left;
        word-wrap: break-word;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message {
        text-align: right;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message {
        text-align: left;
        padding-top: 5px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-avatar {
        position: relative;
        bottom: -11px;
        display: inline-block;
        width: 23px;
        height: 23px;
        margin-right: 3px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 100px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body {
        display: inline-block;
        max-width: calc(100% - 125px);
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-info {
        display: block;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body {
        display: inline-block;
        max-width: calc(100% - 125px);
        margin-right: 15px;
        text-align: left;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-info,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-info {
        display: block;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body {
        padding: 10px 20px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body {
        margin-left: 10px;
        text-align: right;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body .roxchat-file-text,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body > span,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body > span {
        display: block;
        text-align: left;
        word-wrap: break-word;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-body {
        background: #e3f2fd;
        border-color: #e3f2fd;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body:before,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-body:before {
        background: inherit;
        border-color: inherit;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body:before,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-body:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 17px;
        height: 12px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body a {
        color: #1a927f;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body a:hover {
        text-decoration: underline;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message {
        transition: background-color 2s;
        padding: 0 12px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.message-highlight {
        background-color: #DEFDFF;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body {
        -webkit-border-radius: 18px 18px 3px 18px;
        -moz-border-radius: 18px 18px 3px 18px;
        border-radius: 18px 18px 3px 18px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body {
        -webkit-border-radius: 18px 18px 18px 3px;
        -moz-border-radius: 18px 18px 18px 3px;
        border-radius: 18px 18px 18px 3px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-text,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-chat-image-preview img,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-text,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-chat-image-preview img,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message {
        cursor: pointer;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-image .roxchat-file-progress-bar,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-image .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-image .roxchat-file-error-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-image .roxchat-chat-image-preview img {
        position: absolute;
        display: none;

        width: 30px;
        height: 30px;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-image .roxchat-chat-image-preview img,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-image .roxchat-chat-image-preview img,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-image .roxchat-chat-image-preview img {
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-container {
        margin-bottom: 5px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-description {
        padding: 8px 0;
        margin-left: 44px;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-message-with-preview .roxchat-message-body .roxchat-file-description {
        margin: 0;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-text,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-text,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        -ms-word-wrap: normal;
        word-wrap: normal;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-file-progress,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body .roxchat-ico-file-indeterminate-progress-bar {
        display: none;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-upload .roxchat-message-body .roxchat-file-progress:after {
        content: '%';
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-upload .roxchat-message-body .roxchat-file-progress {
        position: absolute;
        margin-top: 16px;
        display: block;

        width: 51px;
        height: 48px;

        text-align: center;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-upload .roxchat-message-body .roxchat-ico-file-indeterminate-progress-bar {
        display: block;
        width: 35px;
        height: 35px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message.roxchat-file-upload .roxchat-message-body .roxchat-file-progress-bar {
        background: url('https://jtsupport.rox.chat/images/file-upload-progress-bar.svg') left no-repeat;
        -webkit-background-size: 816px;
        -moz-background-size: 816px;
        -o-background-size: 816px;
        background-size: 816px;
        background-origin: content-box;
        display: block;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-ready .roxchat-message-body .roxchat-file-image .roxchat-chat-image-preview img,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message .roxchat-quoted-message-image .roxchat-chat-image-preview img {
        position: relative;
        display: block;
        z-index: 200;
        cursor: pointer;
        width: auto;
        height: auto;
        max-height: 300px;
        max-width: 100%;
        box-sizing: border-box;
        padding: 4px;
        margin: auto;
        background-color: #F8F8F8;
    }

    .roxchat-root .roxchat-message-body .roxchat-file-image .roxchat-ico-file-indeterminate-progress-bar {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-ready .roxchat-message-body .roxchat-file-size {
        font-size: 11px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-ready .roxchat-message-body .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-image .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-image .roxchat-file-ready-icon {
        background: url('https://jtsupport.rox.chat/images/file-upload-ready.svg') left no-repeat;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        background-origin: content-box;
        display: block;
        z-index: 100;
        cursor: pointer;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-message-with-image-icon.roxchat-file-ready .roxchat-message-body .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message.roxchat-message-with-image-icon .roxchat-quoted-message-image .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message.roxchat-message-with-image-icon .roxchat-quoted-message-image .roxchat-file-ready-icon {
        background: url('https://jtsupport.rox.chat/images/image.svg') left no-repeat;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        background-origin: content-box;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-ready .roxchat-message-body .roxchat-file-text {
        cursor: pointer;
        text-align: right;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-error .roxchat-message-body .roxchat-file-error-message {
        font-size: 11px;
        white-space: normal;
        line-height: normal;
        margin-top: 2px;
        color: #8085ab;
        display: inline-block;
        text-align: left;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file-error .roxchat-message-body .roxchat-file-error-icon {
        background: url('https://jtsupport.rox.chat/images/file-upload-error.svg') left no-repeat;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        background-origin: content-box;
        display: block;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-image .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-image .roxchat-file-ready-icon,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-image .roxchat-chat-image-preview img,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-image .roxchat-chat-image-preview img {
        position: absolute;
        height: 40px;
        width: 40px;
        margin: 2px auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_visitor-message .roxchat-quoted-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-quoted-message.roxchat-quoted-file_operator-message .roxchat-quoted-message-body {
        margin-left: 48px;
        padding: 6px 0;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body {
        text-overflow: ellipsis;
        overflow: hidden;
        word-wrap: normal;
        white-space: nowrap;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body .roxchat-file-text {
        text-align: left;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-author-block {
        display: inline;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .operator-rate-tooltip-container,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-author-block .operator-rate-tooltip-container {
        position: absolute;
        z-index: 10;
        bottom: -15px;
        left: 10px;
        color: #FFFFFF;
        background: rgba(26, 26, 26, 0.85);
        padding: 2px 8px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .operator-rate-tooltip-container .operator-rate-tooltip-text,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-author-block .operator-rate-tooltip-container .operator-rate-tooltip-text {
        font-size: 13px;
        color: #FFFFFF;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .operator-rate-tooltip-container .operator-rate-tooltip-text::after,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-author-block .operator-rate-tooltip-container .operator-rate-tooltip-text::after {
        content: " ";
        position: absolute;
        bottom: 100%;
        left: 15px;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent rgba(26, 26, 26, 0.85) transparent;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-author-block img {
        max-width: 23px;
        border-radius: 100px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-body {
        display: inline-block;
        margin-left: 3px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-info {
        margin-left: 28px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body {
        margin-top: 10px;
        background: #ededed;
        border-color: #ededed;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-body {
        margin-right: 5px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body {
        margin-left: 0;
    }

    .rtl.roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-body {
        direction: rtl;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body:after,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body:after,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body:after {
        background: inherit;
        border-color: inherit;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-body:after,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-body:after,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-body:after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 17px;
        height: 12px;
    }

    .rtl .roxchat-message-body .visitor-contact-value {
        display: inline-block;
        direction: ltr;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-actions {
        position: relative;
        top: 2px;
        display: inline-flex;
        align-items: center;
        opacity: 0;
        transition: opacity 0.33s linear;
    }

    .roxchat-root .roxchat-chat .roxchat-header .roxchat-action .roxchat-ico {
        width: 29px;
        height: 29px;
    }

    .roxchat-root .roxchat-chat .roxchat-header .roxchat-action .roxchat-ico.roxchat-ico-arrow {
        width: 22px;
        height: 22px;
        color: #FFFFFF;
        vertical-align: baseline;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message .roxchat-message-actions svg {
        width: 14px;
        height: 14px;
        margin: auto 4px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions svg.roxchat-ico-close,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions svg.roxchat-ico-close {
        width: 10px;
    }

    .roxchat-root .roxchat-unread-message {
        position: absolute;
        text-align: center;
        border-radius: 2px;
        margin-top: -3px;
        top: -25px;
        width: 100%;
    }

    .roxchat-root .roxchat-unread-message-text {
        display: flex;
        flex-basis: 100%;
        color: #B7B7B7;
        align-items: center;
        margin: 11px 0px;
        font-size: 11px;
    }

    .roxchat-root .roxchat-unread-message-text:before,
    .roxchat-root .roxchat-unread-message-text:after {
        content: "";
        flex-grow: 1;
        background: #B7B7B7;
        height: 1px;
        font-size: 0px;
        line-height: 0px;
        margin: 0px 8px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-actions {
        position: relative;
        right: 10px;
        top: -10px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions {
        position: relative;
        left: 10px;
        top: -10px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard_response-message .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message.roxchat-process .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message.roxchat-process .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message.roxchat-process .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message.roxchat-process .roxchat-message-actions {
        display: none;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message:hover .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message:hover .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message:hover .roxchat-message-actions,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message:hover .roxchat-message-actions {
        opacity: 1;
        transition-delay: 0s;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-close,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-close,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-pencil,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply {
        opacity: 0.3;
        font-size: 12px;
        display: inline-block;
        transition: opacity 0.33s linear;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-close:hover,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-close:hover,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-pencil:hover,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply:hover,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_visitor-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply:hover,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-operator-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply:hover,
    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-file_operator-message .roxchat-message-actions .roxchat-action.roxchat-ico-reply:hover {
        opacity: 1;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-button-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        margin: 8px 0;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
        -webkit-align-items: center;
        align-items: center;
        text-align: center;
        background-color: #393f6b;
        font-weight: normal;
        line-height: 18px;
        white-space: normal;
        word-break: break-word;
        word-wrap: break-word;
        padding: 8px 16px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        border-radius: 24px;
        position: relative;
        overflow: visible;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn + .roxchat-btn {
        margin-left: 8px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn span {
        color: white;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn .roxchat-loading-throbber {
        display: none;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn:disabled {
        background-color: rgba(57, 63, 107, 0.3);
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn:disabled span {
        color: #979797;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn.roxchat-selected {
        background-color: rgba(57, 63, 107, 0.5);
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn.roxchat-selected span {
        color: #222747;
    }

    .roxchat-root .roxchat-dialogue .roxchat-message.roxchat-keyboard-message .roxchat-btn.roxchat-pending .roxchat-loading-throbber {
        display: block;
        position: absolute;
        margin: -3px;
        top: 0;
        left: 0;
    }

    .roxchat-root .roxchat-message .roxchat-quoted-message {
        background: rgba(0, 0, 0, .05);

        margin: 4px 0 8px 0;
        padding: 4px 4px 4px 8px;
        border-left: 2px solid rgba(0, 0, 0, .3);
        text-align: left;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
    }

    .roxchat-root .roxchat-message.roxchat-operator-message .roxchat-quoted-message {
        background: rgba(52, 62, 109, .05);
        border-left: 2px solid rgba(52, 62, 109, .3);
    }

    .roxchat-root .roxchat-message .roxchat-quoted-message .roxchat-quoted-author-name {
        font-weight: 700;
    }

    .roxchat-root .roxchat-message .roxchat-quoted-message .roxchat-quoted-message-text .roxchat-emoji {
        pointer-events: none;
    }

    .roxchat-root .roxchat-message .roxchat-quoted-message .roxchat-loading-text {
        display: inline-block;
    }

    .roxchat-root .roxchat-message .roxchat-quoted-message .roxchat-loading-throbber {
        float: left;
        margin-right: 8px;
    }

    .roxchat-root .roxchat-message .roxchat-message-edited {
        display: none;
        padding: 0 5px;
        font-size: 10px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-embedded {
        background: #f5f5f5;
        position: relative;
        padding: 12px;
        margin-left: auto;
        margin-right: auto;
        width: 85%;
        text-align: center;
    }

    .roxchat-root .roxchat-dialogue .roxchat-embedded .roxchat-embedded-actions {
        font-size: 20px;
        position: absolute;
        top: 5px;
        right: 5px;
    }

    .roxchat-root .roxchat-dialogue .roxchat-embedded .roxchat-embedded-header {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .roxchat-root .roxchat-dialogue-status {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .roxchat-root .roxchat-dialogue-status .roxchat-dialogue-status-title {
        color: #FFFFFF;
        font-family: 'Roboto', serif;
        font-style: italic;
        font-weight: 300;
        font-size: 13px;
        line-height: 16px;
        margin: 0 15px 0 2px;
    }

    .roxchat-root .roxchat-dialogue-status .dot-flashing {
        position: relative;
        width: 3px;
        height: 3px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-color: #FFFFFF;
        color: #FFFFFF;
        -webkit-animation: dotFlashing 0.5s infinite linear alternate;
        animation: dotFlashing 0.5s infinite linear alternate;
        -webkit-animation-delay: .5s;
        animation-delay: .5s;
        margin: 7px 0 0;
    }

    .roxchat-root .roxchat-dialogue-status .dot-flashing::before,
    .roxchat-root .roxchat-dialogue-status .dot-flashing::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
    }

    .roxchat-root .roxchat-dialogue-status .dot-flashing::before {
        left: -7px;
        width: 3px;
        height: 3px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-color: #FFFFFF;
        color: #FFFFFF;
        -webkit-animation: dotFlashing 0.5s infinite alternate;
        animation: dotFlashing 0.5s infinite alternate;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .roxchat-root .roxchat-dialogue-status .dot-flashing::after {
        left: 7px;
        width: 3px;
        height: 3px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-color: #FFFFFF;
        color: #FFFFFF;
        -webkit-animation: dotFlashing 0.5s infinite alternate;
        animation: dotFlashing 0.5s infinite alternate;
        -webkit-animation-delay: 0.5s;
        animation-delay: 1s;
    }

    @keyframes dotFlashing {
        0% {
            background-color: #c3c3c3;
        }

        50%,
        100% {
            background-color: #e8e8e8;
        }
    }

    .roxchat-root .roxchat-dialogue-message-block {
        padding: 8px 12px 6px;
        background-color: #fff;
        border-top: 1px solid #E8E8E8;
    }

    .roxchat-root .roxchat-dialogue-message-block .roxchat-dialogue-message {
        border: 1px solid rgba(179, 182, 198, 0.5);
        border-radius: 6px;
    }

    .roxchat-root .roxchat-dialogue-message-block.roxchat-focused .roxchat-dialogue-message {
        border-color: #393f6b;
    }

    .roxchat-root .roxchat-dialogue-message-block * {
        border-radius: inherit;
    }

    .roxchat-root .roxchat-popups-block {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9000;
    }

    .roxchat-root .roxchat-popups-block .roxchat-prev-message-version .roxchat-ico-close,
    .roxchat-root .roxchat-popups-block .roxchat-quote-message .roxchat-ico-close {
        float: right;
        font-size: 14px;
        filter: invert(84%) sepia(3%) saturate(10%) hue-rotate(337deg) brightness(86%) contrast(82%);
    }

    .roxchat-root .roxchat-popups-block .roxchat-prev-message-version,
    .roxchat-root .roxchat-popups-block .roxchat-quote-message {
        padding: 0 14px 7px 5px;
        font-size: 12px;
        border-radius: 0;
    }

    .roxchat-root .roxchat-popups-block .roxchat-prev-message-version .roxchat-ico-memo {
        padding-right: 8px;
        vertical-align: initial;
        font-size: 14px;
    }

    .roxchat-root .roxchat-popups-block .roxchat-prev-message-version .roxchat-prev-msg-text,
    .roxchat-root .roxchat-popups-block .roxchat-quote-message .roxchat-quote-text,
    .roxchat-root .roxchat-popups-block .roxchat-quote-message .roxchat-quote-author {
        width: calc(100% - 21px);
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: #676767;
    }

    .roxchat-root .roxchat-popups-block .roxchat-prev-message-version .roxchat-prev-msg-text {
        width: calc(100% - 42px);
    }

    .roxchat-root .roxchat-popups-block .roxchat-quote-message .roxchat-quote-inner {
        border-left: 2px solid #29C1E7;
        padding: 4px 0 2px 11px;
    }

    .roxchat-root .roxchat-popups-block .roxchat-quote-message .roxchat-quote-author {
        font-weight: bold;
    }

    .roxchat-root .roxchat-popups-block .roxchat-quote-message .roxchat-ico-close {
        margin-top: -10px;
    }

    .roxchat-root .roxchat-popup {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        margin: 0 auto;
        width: 92%;
        border-radius: 10px 0 10px 10px;
        background: #fcfcfc;
        overflow: hidden;
    }

    .roxchat-root .roxchat-popup .roxchat-popup-actions {
        color: #888;
        font-size: 22px;
        position: absolute;
        top: 8px;
        right: 7px;
        z-index: 100;
    }

    .roxchat-root .roxchat-popup .roxchat-popup-actions .roxchat-close-action {
        cursor: pointer;
        display: inline-block;
        text-align: center;
        width: 15px;
    }

    .roxchat-root .roxchat-dialogue-message {
        background-color: #fff;
        border-radius: 6px;
        box-sizing: content-box;
        min-height: 20px;
        max-height: 100px;
        margin: 0;
        padding: 8px 55px 8px 8px;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .roxchat-root .roxchat-dialogue-message.hide-menu .roxchat-emoji-button {
        right: 15px;
    }

    .roxchat-root .roxchat-dialogue-message .roxchat-textarea-wrapper {
        margin-right: 50px;
        margin-top: 3px;
    }

    .roxchat-root .roxchat-dialogue-message textarea,
    .roxchat-root .roxchat-dialogue-message .roxchat-textarea-ext {
        position: relative;
        background: transparent;
        border: none;
        -webkit-user-select: text;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        font-size: 13px;
        line-height: 18px;
        max-height: 100px !important;
        padding: 0 6px 0 8px;
        resize: none;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        word-wrap: break-word;
    }

    .roxchat-root .roxchat-survey-block .roxchat-dialogue-message .roxchat-textarea-ext {
        padding-left: 0;
    }

    .rtl.roxchat-root .roxchat-textarea-ext {
        direction: rtl;
    }

    .roxchat-root .roxchat-dialogue-message-block .roxchat-chat-action.roxchat-chat-action-upload {
        width: 18px;
        height: 18px;
    }

    .roxchat-root .roxchat-dialogue-message-block .roxchat-chat-action.roxchat-chat-action-upload label,
    .roxchat-root .roxchat-dialogue-message-block .roxchat-chat-action.roxchat-chat-action-upload svg {
        display: inline-block;
        width: 100%;
        height: 100%;
        opacity: 1;
        cursor: pointer;
    }

    .roxchat-root .roxchat-dialogue-message-block .roxchat-chat-action.roxchat-chat-action-upload span {
        display: none;
    }

    .roxchat-root .roxchat-message-area + .roxchat-message-area_placeholder {
        display: none;
        pointer-events: none;
    }

    .roxchat-root .roxchat-message-area:focus + .roxchat-message-area_placeholder {
        display: none !important;
    }

    .roxchat-root .roxchat-message-area:empty + .roxchat-message-area_placeholder {
        display: initial;
        font-size: 13px;
        line-height: 18px;
        color: #c8c9d6;
        position: absolute;
        top: 8px;
        left: 32px;
    }

    .roxchat-root .roxchat-dialogue-message button:focus,
    .roxchat-root .roxchat-dialogue-message textarea:focus,
    .roxchat-root .roxchat-dialogue-message .roxchat-textarea-ext:focus {
        outline: none;
    }

    .roxchat-root .roxchat-dialogue-message .roxchat-action {
        position: absolute;
        width: 18px;
        height: 18px;
        font-size: 20px;
        color: #939bba;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .roxchat-root .roxchat-dialogue-message .roxchat-action svg.roxchat-ico {
        width: 100%;
        height: 100%;
    }

    .roxchat-root .roxchat-dialogue-message .roxchat-action svg.roxchat-ico.roxchat-ico-send {
        stroke-width: 1px;
    }

    .roxchat-root .roxchat-callback-actions {
        padding: 28px 0 30px;
    }

    .roxchat-root .roxchat-callback-actions .roxchat-action {
        text-align: center;
        vertical-align: top;
        width: 30%;
    }

    .roxchat-root .roxchat-callback-actions .roxchat-action .roxchat-ico {
        background: #069a24;
        border: 1px solid #00813b;
        color: #fff;
        display: inline-block;
        font-size: 24px;
        padding: 12px 11px 12px 12px;
        border-radius: 50%;
    }

    .roxchat-root .roxchat-callback-actions .roxchat-action.roxchat-active .roxchat-ico,
    .roxchat-root .roxchat-callback-actions .roxchat-action:hover .roxchat-ico {
        background: #dfdfdf;
        border: 1px solid #dfdfdf;
        color: #000;
    }

    .roxchat-root .roxchat-callback-actions .roxchat-action .roxchat-title {
        display: block;
        line-height: 1.2em;
    }

    .roxchat-root .roxchat-callback-timer {
        text-align: center;
        font-size: 24px;
        line-height: 2.4em;
    }

    .roxchat-root .roxchat-chat-block .roxchat-section .roxchat-visitor-info {
        background: #fff;
        border-top: 1px solid #dfdfdf;
        padding: 10px;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .roxchat-root .roxchat-popup.roxchat-chat-actions-block {
        background-color: #393f6b;
    }

    .roxchat-root .roxchat-popup.roxchat-chat-actions-block .roxchat-popup-actions {
        top: 10px;
        right: 11px;
    }

    .roxchat-root .roxchat-popup.roxchat-chat-actions-block .roxchat-popup-actions .roxchat-close-action {
        color: #fff;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action {
        background: rgba(0, 0, 0, 0);
        color: #fff;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action * {
        color: inherit;
        vertical-align: middle;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action > * {
        cursor: pointer;
        font-size: 13px;
        padding: 7px 15px;
        display: block;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action:first-child > * {
        padding-top: 12px;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action:last-child > * {
        padding-bottom: 12px;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action .roxchat-icon {
        margin-right: 10px;
        vertical-align: middle;
        background-size: 14px;
        width: 14px;
    }

    .roxchat-root .roxchat-chat-actions-block .roxchat-chat-actions .roxchat-chat-action .roxchat-ico {
        font-size: 16px;
        margin-right: 10px;
    }

    .roxchat-root .roxchat-operator-rate > *,
    .roxchat-root .roxchat-stars > * {
        cursor: pointer;
        display: inline-block;
    }

    .roxchat-root .roxchat-rate-block .roxchat-operator-rate,
    .roxchat-root .roxchat-rate-block .roxchat-stars,
    .roxchat-root .roxchat-rate-block .roxchat-rate-state {
        display: inline-block;
        vertical-align: middle;
    }

    .roxchat-root .roxchat-rate-block .roxchat-rate-state {
        margin-left: 5px;
        margin-top: 13px;
        position: absolute;
    }

    .roxchat-root .roxchat-rate-block .roxchat-rate-error {
        margin-top: 5px;
    }

    .roxchat-root .roxchat-send-to-email-block .roxchat-send-to-email-state {
        font-size: 14px;
        line-height: 40px;
        text-align: center;
    }

    .roxchat-root .roxchat-send-to-email-block .roxchat-send-to-email-state .roxchat-icon {
        vertical-align: middle;
    }

    .roxchat-root .roxchat-send-to-email-block .roxchat-send-to-email-error {
        margin-top: 5px;
    }

    .roxchat-root .roxchat-send-to-email-block .roxchat-send-to-email .roxchat-btn-send {
        margin-left: auto;
        margin-right: auto;
    }

    .roxchat-root .roxchat-rate-block .roxchat-btn-send.hidden,
    .roxchat-root .roxchat-send-to-email-block .roxchat-btn-send.hidden,
    .roxchat-root .roxchat-contact-block .roxchat-btn-send.hidden {
        visibility: hidden;
    }

    .roxchat-root .roxchat-dialogue-message-block .roxchat-file-list {
        list-style: none;
        margin-top: 2px;
        margin-bottom: 2px !important;
        height: auto !important;
        max-height: 120px !important;
        overflow-y: scroll;
        border: none;
    }

    .roxchat-root .roxchat-dialogue-message-block div.roxchat-file-list {
        margin-top: 0;
        border-bottom: 1px solid rgba(179, 182, 198, 0.2);
        border-radius: 0;
    }


    .roxchat-root .roxchat-file-list .roxchat-attached-file {
        font-size: 13px;
        line-height: 1.4em;
        position: relative;
        margin: 2px 7px 7px;
    }

    .roxchat-root .roxchat-file-list .roxchat-attached-file:first-child {
        margin-top: 6px;
    }

    .roxchat-root .roxchat-offline-block ul.roxchat-file-list {
        max-height: 48px;
        padding: 0 16px;
        overflow-y: scroll;
    }

    .roxchat-root .roxchat-attached-file .roxchat-file-info {
        line-height: 20px;
        margin-left: 45px;
        margin-right: 40px;
        position: relative;
    }

    .roxchat-root .roxchat-file-info .roxchat-progressbar-wrapper {
        background: #dadada;
        border: 1px solid #63c62d;
        border-radius: 3px;
        height: 2px;
        position: absolute;
        bottom: 0;
        font-size: 14px;
    }

    .roxchat-root .roxchat-file-info .roxchat-progressbar {
        background: #7bd262;
    }

    .roxchat-root .roxchat-file-info .roxchat-file-name {
        display: block;
        overflow: hidden;
        position: relative;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .roxchat-root .roxchat-file-info .roxchat-file-size {
        display: none;
        position: absolute;
        top: 0;
        right: 2px;
    }

    .roxchat-root .roxchat-attached-file .roxchat-file-upload-state {
        position: absolute;
        top: 1px;
        left: 5px;
        width: 30px;
        height: 20px;
        text-align: center;
        color: #fff;
        border-radius: 6px;
        line-height: 20px;
        font-size: 13px;
    }

    .roxchat-root .roxchat-process .roxchat-file-upload-state {
        background-color: #393f6b;
    }

    .roxchat-root .roxchat-attached-file.roxchat-success .roxchat-file-upload-state {
        background-color: #70e0ce;
    }

    .roxchat-root .roxchat-attached-file.roxchat-error .roxchat-file-upload-state {
        background-color: #f26363;
    }

    .roxchat-root .roxchat-attached-file .roxchat-file-upload-state .roxchat-icon {
        position: absolute;
        left: 7px;
        top: 2px;
    }

    .roxchat-root .roxchat-attached-file .roxchat-file-upload-actions {
        font-size: 16px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .roxchat-root .roxchat-attached-file .roxchat-file-upload-error {
        color: #797979;
        font-size: 11px;
        line-height: 1em;
        margin-left: 45px;
        margin-right: 40px;
    }

    .roxchat-root .roxchat-file-list .roxchat-action {
        font-size: 19px;
        color: #b0b2c4;
    }

    .roxchat-root .roxchat-resizable {
        overflow: hidden;
        background-color: #fcfcfc;
    }

    .roxchat-root.roxchat-desktop-mode .roxchat-resizable {
        min-width: 340px;
        min-height: 290px;
    }

    .roxchat-root .roxchat-section-throbber {
        height: 100%;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roxchat-root .roxchat-section-throbber_path {
        fill: #b9bedf;
    }

    .roxchat-root .roxchat-dialogues-notification {
        right: 30px;
        bottom: 25px;
        position: absolute;
        z-index: 5;
        display: none;
        cursor: pointer;
    }

    .roxchat-root .roxchat-department-select-block,
    .roxchat-root .roxchat-operator-select-block {
        padding: 6px 12px 12px;
    }

    .roxchat-root .roxchat-offline-block,
    .roxchat-root .roxchat-question-block,
    .roxchat-root .roxchat-department-select-block {
        padding: 0;
        height: 100%;
    }

    .roxchat-root .roxchat-offline-block .roxchat-form,
    .roxchat-root .roxchat-question-block .roxchat-form {
        margin: auto;
        text-align: center;
    }

    .roxchat-root .roxchat-department-select-block .roxchat-form {
        margin: auto;
        width: 100%;
        height: inherit;
    }

    .roxchat-root .roxchat-offline-block .roxchat-form-wrapper,
    .roxchat-root .roxchat-question-block .roxchat-form-wrapper {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .roxchat-root .roxchat-offline-block .roxchat-sticky-wrapper,
    .roxchat-root .roxchat-question-block .roxchat-sticky-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .roxchat-root .roxchat-offline-block .roxchat-sticky-wrapper.fixed-background,
    .roxchat-root .roxchat-question-block .roxchat-sticky-wrapper.fixed-background {
        background: #f0f0f0;
    }

    .roxchat-root .roxchat-offline-block .roxchat-form-wrapper .roxchat-form,
    .roxchat-root .roxchat-question-block .roxchat-form-wrapper .roxchat-form {
        margin-right: 21px;
        margin-left: 21px;
    }

    .roxchat-root .roxchat-department-select-block .roxchat-form > .roxchat-form-control {
        margin-right: 20px;
        margin-left: 20px;
    }

    .roxchat-root .roxchat-offline-block .roxchat-form > .roxchat-form-control:first-child,
    .roxchat-root .roxchat-question-block .roxchat-form > .roxchat-form-control:first-child {
        margin-top: 25px;
    }

    .roxchat-root .roxchat-department-select-block .roxchat-form > *:last-child {
        margin-bottom: 20px;
    }

    .roxchat-root .roxchat-offline-block .roxchat-description,
    .roxchat-root .roxchat-question-block .roxchat-description {
        padding: 0 25px 20px 25px;
        background: #393f6b;
    }

    .roxchat-root .roxchat-offline-block-state {
        text-align: center;
        position: relative;
        top: 5px;
    }

    .roxchat-root .roxchat-overlays-container {
        display: flex;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
    }

    .roxchat-root .roxchat-overlays-wrapper {
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: absolute;
        width: 100%;
        height: 100%;
        min-height: 100%;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

    .roxchat-root.roxchat-separate-mode .roxchat-overlays-wrapper {
        position: fixed;
        height: calc(100% - 40px);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .roxchat-root .roxchat-overlays-wrapper .roxchat-overlay {
        color: #000;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 100%;
        min-height: 100%;
    }

    .roxchat-root .modal-confirm-file-upload,
    .roxchat-root .modal-personal-data-agreement {
        background-color: #FFFFFF;
        border-radius: 6px;
        width: 100%;
        max-width: 320px;
        margin: auto;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-image-preview {
        display: none;
        height: 60px;
        width: 60px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 15px;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-file-placeholder,
    .roxchat-root .modal-confirm-file-upload .confirm-files-placeholder {
        display: none;
        height: 60px;
        width: 60px;
        margin-right: 15px;
        border-radius: 4px;
        background-color: #393F6B;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-file-placeholder img,
    .roxchat-root .modal-confirm-file-upload .confirm-files-placeholder img {
        display: block;
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }


    .roxchat-root .modal-confirm-file-upload .confirm-image-preview.active,
    .roxchat-root .modal-confirm-file-upload .confirm-files-placeholder.active,
    .roxchat-root .modal-confirm-file-upload .confirm-file-placeholder.active {
        display: block;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-title {
        display: none;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        color: #393F6B;
        margin-bottom: 9px;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-title.active {
        display: block;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-file-name {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 185px;
        line-height: 18px;
        color: #029BC1;
        margin-bottom: 5px;
        white-space: nowrap;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-file-size {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #959595;
        overflow-wrap: anywhere;
    }

    .roxchat-root .modal-confirm-file-upload .roxchat-overlay-body,
    .roxchat-root .modal-personal-data-agreement .roxchat-overlay-body {
        border-radius: 0 0 6px 6px;
    }

    .roxchat-root .modal-confirm-file-upload .roxchat-overlay-header,
    .roxchat-root .modal-personal-data-agreement .roxchat-overlay-header {
        border-radius: 6px 6px 0 0;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .roxchat-root .modal-confirm-file-upload .roxchat-overlay-header * {
        box-sizing: border-box;
    }

    .roxchat-root .roxchat-btn-light,
    .roxchat-root .roxchat-btn-dark {
        border-radius: 20px;
        cursor: pointer;
        font-style: normal;
        font-weight: 700;
        min-width: 108px;
    }


    .roxchat-root .roxchat-btn-light {
        background-color: #FFFFFF;
        border: 1px solid #DFE0E8;
        color: #393F6B;
    }

    .roxchat-root .roxchat-btn-dark {
        background-color: #393F6B;
        color: #FFFFFF;
        min-width: 135px;
        line-height: 2.1;
        height: 35px;
        margin: 0 auto;
        border: 1px solid #DFE0E8;
    }

    .roxchat-root .roxchat-btn-light:hover {
        color: rgba(57, 63, 107, 0.85);
    }

    .roxchat-root .roxchat-btn-dark:hover {
        background-color: rgba(57, 63, 107, 0.84);
        color: #FFFFFF;
    }

    .roxchat-root .modal-confirm-file-upload .confirm-action-buttons {
        color: #FFFFFF;
        text-align: right;
    }

    .roxchat-root .roxchat-overlays-wrapper .roxchat-overlay.roxchat-rate-block {
        text-align: center;
    }

    .roxchat-root .modal-personal-data-agreement .header-title-wrapper {
        line-height: 1.3;
        font-size: 14px;
    }

    .roxchat-root .roxchat-overlay .roxchat-overlay-actions {
        font-size: 26px;
        position: absolute;
        top: 24px;
        right: 20px;
    }

    .roxchat-root .roxchat-overlay .roxchat-overlay-actions.roxchat-overlay-actions-email {
        top: 28px;
    }

    .roxchat-root .roxchat-overlay .roxchat-overlay-header {
        position: relative;
        margin: auto 0 0 0;
        padding: 25px 20px 12px;
        font-size: 15px;
    }

    .roxchat-root .roxchat-overlay .roxchat-overlay-header .roxchat-overlay-header-title {
        display: block;
        max-width: 65%;
        text-align: left;
        line-height: 1.29;
    }

    .roxchat-root .roxchat-overlay .roxchat-overlay-header,
    .roxchat-root .roxchat-overlay .roxchat-overlay-body {
        background: #fff;
    }

    .roxchat-root .roxchat-question-description {
        font-size: 15px;
    }

    .roxchat-root .roxchat-overlay .roxchat-overlay-body {
        position: relative;
        bottom: 0;
        padding: 1px 20px 20px;
    }

    .roxchat-root .roxchat-overlay.roxchat-survey-block .roxchat-overlay-body.scroll-content {
        overflow-y: scroll;
        max-height: 100% !important;
    }

    .roxchat-root .overlay-survey-wrapper.showing-survey-completion {
        height: auto;
    }

    .roxchat-root .overlay-survey-wrapper:not([class*="showing-survey-completion"]) .roxchat-overlay-header {
        margin-top: 30px;
    }

    .roxchat-root .overlay-survey-wrapper:not([class*="showing-survey-completion"]) .roxchat-overlay-body {
        overflow: auto;
    }

    .roxchat-root .overlay-survey-wrapper:not([class*="showing-survey-completion"]) .roxchat-overlay-body::-webkit-scrollbar {
        display: block;
        width: 4px;
        cursor: default;
    }

    .roxchat-root .overlay-survey-wrapper:not([class*="showing-survey-completion"]) .roxchat-overlay-body::-webkit-scrollbar-thumb {
        width: 4px;
        border-radius: 6px;
        background-color: #d1d5e2;
    }

    .roxchat-root .overlay-survey-wrapper:not([class*="showing-survey-completion"]) .roxchat-overlay-body::-webkit-scrollbar-track-piece:end {
        background: transparent;
        margin-bottom: 12px;
    }

    .roxchat-root .overlay-survey-wrapper:not([class*="showing-survey-completion"]) .roxchat-overlay-body::-webkit-scrollbar-track-piece:start {
        background: transparent;
        margin-top: 12px;
    }

    .roxchat-root .roxchat-overlay.roxchat-survey-block .roxchat-overlay-body .roxchat-survey-block {
        height: 100%;
        position: relative;
    }

    .roxchat-root .roxchat-overlay.roxchat-survey-block .roxchat-overlay-header .roxchat-overlay-title span {
        font-weight: bold;
    }

    .roxchat-root .roxchat-overlays-wrapper .roxchat-overlay.roxchat-survey-block .roxchat-survey-question {
        margin-top: 25px;
    }

    .roxchat-root .roxchat-overlays-wrapper .roxchat-overlay.roxchat-survey-block .roxchat-question-description {
        line-height: 17px;
    }

    .roxchat-root .roxchat-overlay.roxchat-survey-block .scroll-wrapper {
        height: auto;
    }

    .roxchat-root .roxchat-comment .roxchat-dialogue-message {
        margin: 10px;
        padding-right: 0;
        border: 1px solid rgba(179, 182, 198, 0.5);
    }

    .roxchat-root .roxchat-survey-block .roxchat-dialogue-message {
        margin-left: 0;
    }

    .roxchat-root .roxchat-survey-block .roxchat-survey-complete {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 80px;
    }

    .roxchat-root .roxchat-survey-block .roxchat-survey-complete img {
        width: 58px;
        height: 58px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .roxchat-root .roxchat-survey-block .roxchat-survey-complete img,
    .roxchat-root .roxchat-survey-block .roxchat-survey-complete span {
        display: block;
    }

    .roxchat-root .overlay-survey-wrapper {
        background-color: white;
        height: 90%;
        width: 100%;
    }

    .roxchat-root .roxchat-survey-block .roxchat-survey-complete .roxchat-survey-thanks-title {
        font-weight: 600;
        font-size: 16px;
    }

    .roxchat-root .roxchat-survey-block .roxchat-survey-complete .roxchat-survey-thanks-description {
        font-size: 14px;
    }

    .roxchat-root .roxchat-survey-block .roxchat-survey-complete .roxchat-survey-thanks-title,
    .roxchat-root .roxchat-survey-block .roxchat-survey-complete .roxchat-survey-thanks-description {
        line-height: 20px;
    }

    .roxchat-root .roxchat-survey-block .roxchat-form-control.roxchat-survey-control {
        margin-top: 30px;
        text-align: center;
    }

    .roxchat-root .roxchat-btn.roxchat-btn-light {
        border: 1px solid #DFE0E8;
        background-color: #FFFFFF;
        min-width: 135px;
        height: 35px;
        margin: 0 auto;
        text-align: center;
        line-height: 2.1;
    }

    .roxchat-root .roxchat-btn.roxchat-btn-light:hover {
        background: none;
        border: 1px solid rgba(223, 224, 232, 0.7);
    }

    .roxchat-root .roxchat-notice {
        border: 1px solid #000;
        border-radius: 4px;
        font-size: 12px;
        padding: 10px;
    }

    .roxchat-root .roxchat-notice-error {
        border-color: #a94442;
        color: #a94442;
    }

    .roxchat-root .roxchat-footer-block {
        background: #fff;
    }

    .roxchat-separate-mode.roxchat-root .roxchat-footer-block {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
    }

    .roxchat-root .roxchat-footer {
        padding: 0 13px 7px;
        text-align: right;
    }

    .roxchat-root .roxchat-footer.fixed-background {
        background-color: #F0F0F0 !important;
    }

    .roxchat-root .roxchat-footer.fixed-background .roxchat-powered-by-logo {
        background-image: url('https://jtsupport.rox.chat/v/images/logo_roxchat.svg') !important;
    }

    .roxchat-root .roxchat-copyright {
        min-height: 21px;
    }

    .roxchat-root .roxchat-powered-by-logo {
        background-image: url('https://jtsupport.rox.chat/v/images/logo_roxchat.svg');
        width: 60px;
        height: 30px;
        display: inline-block;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .roxchat-root .roxchat-powered-by-roxchat {
        margin-left: auto;
        margin-right: 0;
        font-size: 14px;
        color: #b9bdc5;
    }

    .roxchat-root .roxchat-powered-by-roxchat > * {
        vertical-align: middle;
    }

    .roxchat-root .roxchat-powered-by {
        margin: 5px 3px 5px auto;
        font-size: 11px;
        color: #b9bdc5;
    }

    .roxchat-root .roxchat-powered-by span {
        color: #29C1E7;
    }

    .roxchat-root .roxchat-powered-by-roxchat a {
        display: inline-block;
    }

    .roxchat-root .roxchat-textarea-ext {
        min-height: 1em;
    }

    .roxchat-root.roxchat-alert-container {
        font-size: 14px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100001;
    }

    .roxchat-root.roxchat-alert-container .roxchat-alert-overlay {
        background: rgba(127, 127, 127, 0.5);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .roxchat-root.roxchat-alert-container .roxchat-alert {
        background: #fff;
        margin: 20px auto 0;
        max-width: 300px;
        padding: 12px;
        position: relative;
        width: 90%;
    }

    .roxchat-root.roxchat-alert-container .roxchat-alert-buttons {
        margin-top: 10px;
        text-align: center;
    }

    .roxchat-root.roxchat-alert-container .roxchat-alert-buttons .roxchat-btn {
        width: auto;
    }

    .roxchat-separate-container-bottom {
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 9999999;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-body {
        background: #fff;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-container-controls {
        position: absolute;
        z-index: 100;
        right: 21px;
        top: 21px;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-container-controls .roxchat-action {
        font-size: 14px;
        width: 14px;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-description {
        color: #000;
        font-size: 12pt;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-callback-timer {
        color: #000;
        font-size: 24pt;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-section-landing .roxchat-action {
        border-bottom: 1px solid #dfdfdf;
        color: #000;
        font-size: 16pt;
        line-height: 3em;
        padding-left: 25px;
    }

    .roxchat-root.roxchat-separate-container-overlay {
        background: rgba(127, 127, 127, 0.5);
        white-space: nowrap;
        position: fixed;
        text-align: center;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .roxchat-root.roxchat-separate-container-overlay:before {
        content: '';
        display: inline-block;
        min-height: inherit;
        height: 100%;
        vertical-align: middle;
    }


    .roxchat-root.roxchat-separate-container-overlay > div {
        display: inline-block;
        vertical-align: middle;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification {
        min-width: 200px;
        position: relative;
        text-align: left;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-header {
        position: relative;
        font-size: 18px;
        margin-bottom: 3px;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-container-controls {
        position: absolute;
        top: 0;
        right: 0;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-notification-title {
        color: #3b4269;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 0.29px;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-notification-message {
        color: #85868c;
        font-size: 14px;
        line-height: 18px;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-notification-image {
        float: left;
        margin: 5px 5px 5px 0;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-notification-buttons {
        margin-top: 21px;
    }

    .roxchat-root.roxchat-separate-container-overlay .roxchat-notification .roxchat-notification-buttons .roxchat-btn {
        background-color: #4ab5b1;
        min-height: 0;
        height: 30px;
        width: 150px;
        padding: 0;
        border: none;
        border-radius: 15px;
        font-size: 16px;
    }

    .roxchat-root .ui-resizable-handle {
        position: absolute;
        font-size: 1px;
        z-index: 99999;
        display: block;
    }

    .roxchat-root .ui-resizable-disabled .ui-resizable-handle,
    .roxchat-root .ui-resizable-autohide .ui-resizable-handle {
        display: none;
    }

    .roxchat-root .ui-resizable-s {
        cursor: s-resize;
        height: 15px;
        width: 100%;
        bottom: -5px;
        left: 0;
    }

    .roxchat-root .ui-resizable-e {
        cursor: e-resize;
        width: 7px;
        right: -5px;
        top: 0;
        height: 100%;
    }

    .roxchat-root .ui-resizable-se {
        opacity: 0;
        cursor: se-resize;
        right: 1px;
        bottom: 1px;
    }

    .roxchat-root .ui-icon {
        width: 16px;
        height: 16px;
        background-image: url('https://jtsupport.rox.chat/v/images/ui-icons_222222_256x240.png');
    }

    .roxchat-root .moxie-shim {
        cursor: pointer;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-top-left {
        top: 10px;
        left: 10px;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-top-right {
        top: 10px;
        right: 10px;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-bottom-left {
        bottom: 10px;
        left: 10px;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-bottom-right {
        bottom: 10px;
        right: 10px;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-center {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .roxchat-root.roxchat-separate-container-slider {
        top: 20%;
        left: 20px;
    }

    .roxchat-root.roxchat-invitation-center {
        width: 80%;
        max-width: 800px;
        min-width: 400px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static,
    .roxchat-root.roxchat-separate-container .roxchat-invitation-static {
        padding: 0;
        border-radius: 10px;
        background-color: #fcfcfc;
        overflow: hidden;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static {
        width: 300px;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-bottom-right .roxchat-invitation-static,
    .roxchat-root.roxchat-separate-container-static.roxchat-position-bottom-left .roxchat-invitation-static {
        border-radius: 10px;
    }

    .roxchat-root.roxchat-separate-container-static.roxchat-position-top-right .roxchat-invitation-static,
    .roxchat-root.roxchat-separate-container-static.roxchat-position-top-left .roxchat-invitation-static {
        border-bottom-right-radius: 6px;
        border-bottom-left-radius: 6px;
    }

    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-header,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-body,
    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-header,
    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-body {
        position: relative;
        padding: 0 11px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-header,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-header {
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-body,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-body {
        padding-top: 9px;
        color: #939bba;
        font-size: 12px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-header .roxchat-actions,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-header .roxchat-actions {
        position: absolute;
        right: 15px;
        font-size: 11px;
        width: 11px;
        height: 11px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-header .roxchat-title,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-header .roxchat-title {
        height: 14px;
        color: #393f6b;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.35px;
        margin-left: 5px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-avatar,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-avatar {
        float: left;
        width: 46px;
        height: 46px;
        margin-left: 5px;
        margin-top: 5px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-description,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-description {
        margin-left: 67px;
        margin-right: 25px;
        font-size: inherit;
        font-weight: 400;
        color: inherit;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-label-text,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-label-text,
    .roxchat-root.roxchat-notification .roxchat-invitation-static .roxchat-label-text {
        width: 105px;
        height: 11px;
        color: #939bba;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 6px;
        margin-left: 3px;
    }

    .roxchat-root.roxchat-notification .roxchat-invitation-static .roxchat-label-text {
        font-size: 16px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-avatar img,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 100px;
        box-shadow: 0 0 0 1px #808080;
    }

    input::placeholder,
    textarea::placeholder {
        color: #AEAEAE;
    }

    .roxchat-root .roxchat-control-block .roxchat-ico.roxchat-ico-close {
        width: 100%;
        height: 100%;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider textarea,
    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-textarea-ext,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static textarea,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-textarea-ext,
    .roxchat-root.roxchat-separate-container .roxchat-notification textarea,
    .roxchat-root.roxchat-separate-container .roxchat-invitation-static textarea {
        padding-right: 30px;
        padding-left: 11px;
        border-radius: 5px;
        background-color: #edeff9;
        border: none;
        height: 54px;
        resize: none;
        overflow: hidden;
        font-family: 'Roboto', "Ubuntu", Helvetica, Arial, sans-serif;
        font-size: 12px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-send,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-send,
    .roxchat-root.roxchat-separate-container .roxchat-notification .roxchat-invitation-send,
    .roxchat-root.roxchat-separate-container .roxchat-invitation-static .roxchat-invitation-send {
        background: 0;
        border: none;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 9px;
        width: 16px;
        height: 16px;
        font-size: 16px;
        color: #939bba;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-invitation-send[disabled],
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-invitation-send[disabled],
    .roxchat-root.roxchat-separate-container .roxchat-notification .roxchat-invitation-send[disabled],
    .roxchat-root.roxchat-separate-container .roxchat-invitation-static .roxchat-invitation-send[disabled] {
        cursor: default;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-form-control .roxchat-error-message,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-form-control .roxchat-error-message,
    .roxchat-root.roxchat-separate-container .roxchat-notification .roxchat-form-control .roxchat-error-message,
    .roxchat-root.roxchat-separate-container .roxchat-invitation-static .roxchat-form-control .roxchat-error-message {
        top: 40px;
    }

    .roxchat-root.roxchat-separate-container-slider .roxchat-invitation-slider .roxchat-form,
    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-form,
    .roxchat-root .roxchat-separate-container .roxchat-invitation-static .roxchat-form {
        margin-top: 14px;
        margin-left: 5px;
        width: 270px;
        padding-bottom: 10px;
    }

    .roxchat-root .roxchat-custom-style-invitation-body .roxchat-processing-personal-data-block {
        margin: 15px 0;
        padding: 0;
    }

    .roxchat-root .roxchat-custom-style-invitation-body .roxchat-form-control.roxchat-processing-personal-data-block .roxchat-error-message {
        top: unset;
    }

    .roxchat-root .roxchat-invitation-callback {
        padding: 20px 40px;
        border-radius: 6px;
        box-sizing: border-box;
        background: #fff;
        background: rgba(255, 255, 255, 0.9);
        -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.75);
        box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.75);
        font-family: 'Roboto', "Ubuntu", Arial, "Helvetica Neue", Helvetica, sans-serif;
        color: #333;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-invitation-header .roxchat-actions {
        position: absolute;
        right: 16px;
        top: 16px;
        font-size: 20px;
        color: #333;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-invitation-header .roxchat-title {
        text-align: center;
        font-size: 34px;
        margin: 18px 0;
        color: #333;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-description {
        font-size: 24px;
        text-align: center;
        line-height: 1.6em;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-form {
        margin: 30px 0 20px;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-form-control > .roxchat-label,
    .roxchat-root .roxchat-invitation-callback .roxchat-form-control > .roxchat-btn {
        display: inline-block;
        vertical-align: middle;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-form-control > .roxchat-label {
        width: 56%;
        min-width: 300px;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-form-control > .roxchat-label .roxchat-label-text {
        font-size: 24px;
        line-height: 54px;
    }

    .roxchat-root.roxchat-separate-container-static .roxchat-invitation-static .roxchat-label
    .roxchat-label-text.roxchat-js-label,
    .roxchat-root.roxchat-separate-container .roxchat-invitation-static .roxchat-label
    .roxchat-label-text.roxchat-js-label {
        position: absolute;
        width: 100%;
        left: 6px;
        top: 0;
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        color: rgba(174, 174, 174, 0.9);
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-form-control input[type="text"] {
        border: 1px solid rgba(27, 83, 133, 0.8);
        border-radius: 14px;
        padding: 12px 0px 12px 40px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        font-size: 24px;
        height: 54px;
        line-height: 54px;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-form-control .roxchat-btn {
        width: 38%;
        margin: 12px 1%;
        box-model: border-box;
        background: #3498db;
        background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
        background-image: -moz-linear-gradient(top, #3498db, #2980b9);
        background-image: -ms-linear-gradient(top, #3498db, #2980b9);
        background-image: -o-linear-gradient(top, #3498db, #2980b9);
        background-image: linear-gradient(to bottom, #3498db, #2980b9);
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        text-align: center;
        white-space: nowrap;
        color: #ffffff;
        font-size: 32px;
        padding: 9px 20px;
        text-decoration: none;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-invitation-timer {
        margin: 12px auto;
        text-align: center;
        font-size: 50px;
        color: #000;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-invitation-timer > * {
        vertical-align: middle;
    }

    .roxchat-root .roxchat-invitation-callback .roxchat-invitation-footer {
        margin-top: 40px;
        font-size: 12px;
        color: #666;
        text-align: center;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-notification {
        margin-right: 15px;
        margin-left: 15px;
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-notification .roxchat-body {
        padding: 18px 20px;
        color: #5e799c;
        font-size: 14px;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-notification-image {
        float: left;
        margin-right: 16px;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        overflow: hidden;
        box-shadow: 0 0 0 1px #808080;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-notification-image img {
        height: 100%;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-notification-title {
        position: relative;
        font-size: 14px;
        line-height: 14px;
        font-weight: bold;
        color: #3C3E71;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        padding: 20px;
        background: #fff;
    }

    .roxchat-root.roxchat-separate-container-bottom .roxchat-notification-text {
        margin-left: 67px;
        font-size: 16px;
        line-height: normal;
        color: inherit;
        padding-bottom: 20px;
    }

    .roxchat-root.roxchat-separate-container.roxchat_invitediv.rtl {
        direction: rtl;
    }

    .roxchat-root .roxchat-notification.roxchat-notification-alert {
        box-sizing: border-box;
        white-space: normal;
        background: #fff;
        max-width: 100%;
        border-radius: 10px;
        padding: 30px 30px 20px;
        margin: 0 10px 0 5px;
    }

    .roxchat-root.roxchat-html-button-container {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        outline: 0;
        outline-offset: 0;
        z-index: 9999;
        position: fixed;
    }

    .roxchat-root .roxchat-html-button-element {
        overflow: hidden;
        border: 1px solid white;

        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;

        box-sizing: border-box;
        height: 50px;
        width: 50px;

        cursor: pointer;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;

        outline: 0;
        outline-offset: 0;
        margin: 5px;

        -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .5);
        -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .5);
        box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .5);

        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 28px;
    }

    .roxchat-root .roxchat-html-button-element .roxchat-ico-close {
        margin: 1px 0px 0 1px;
        font-size: 19px;
    }

    .roxchat-root .roxchat-html-button-element .roxchat-ico-roxchat-logo {
        font-size: 25px;
    }

    .roxchat-root .roxchat-html-button-link {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .roxchat-root .roxchat-html-button-link,
    .roxchat-root .roxchat-html-button-element {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roxchat-root .roxchat-html-button-element object[type*="image"] {
        transition-duration: .1s;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .roxchat-root .roxchat-html-button-channels {
        margin: 0;
        padding: 0;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-call {
        background-color: #33cccc;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-vk {
        background-color: #4c75a3;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-fb,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-fb_roxchat {
        background-color: #4267b2;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-instagram,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-instagram_roxchat {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-viber {
        background-color: #59267C;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-telegram {
        background-color: #08c;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_infobip,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_vonage,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_gupshup,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_360dialog {
        background-color: #25D366;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-apple_chat {
        background-color: #EEEEF4;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-line {
        background-color: #00b900;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-odnoklassniki {
        background-color: #ed812b;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-skype {
        background-color: #03A9F4;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-email {
        background-color: #ffffff;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-roxchat {
        background-color: #3CC;
        color: #393f6b;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_360dialog a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_vonage a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_infobip a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-whatsapp_gupshup a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-line a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-odnoklassniki a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-skype a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-telegram a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-viber a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-vk a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-fb a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-fb_roxchat a {
        color: #fff;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-apple_chat a {
        color: #0076FE;
    }

    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-roxchat a,
    .roxchat-root .roxchat-html-button-channels .roxchat-channel-button-call a {
        color: inherit;
    }

    .roxchat-root .roxchat-dropdown-info {
        text-transform: uppercase;
        font-size: 15px;
        font-family: Roboto, "Ubuntu", Helvetica, Arial, sans-serif;
    }

    .roxchat-root .roxchat-dropdown:hover {
        transition: 0.1s;
        transform-origin: center;
        transform: scale(1.1);

    }

    .roxchat-root .roxchat-html-button-label {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        right: 60px;
        top: 18px;
        font-size: 12px;
        color: #4682b4;
        height: 18px;
        line-height: 18px;
        background-color: white;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        padding: 0 10px;
        white-space: nowrap;
    }


    .roxchat-root .roxchat-html-button-element:hover .roxchat-html-button-label {
        visibility: visible;
        opacity: 1;
    }

    .roxchat-root .roxchat-html-button-element:hover {
        overflow: visible;
        transition: all 0.1s linear;
        -webkit-transition: all 0.1s linear;
        -moz-transition: all 0.1s linear;
        -o-transition: all 0.1s linear;
        transform-origin: center;
        transform: scale(1.1);
    }

    .roxchat-root .roxchat-html-button-main {
        background-color: #3CC;
    }

    .roxchat-root .roxchat-dropdown-content {
        position: absolute;
    }

    .roxchat-button-corner {
        cursor: pointer;
        line-height: 0;
        font-size: 0;
        z-index: 9999;
        display: block;
        position: fixed;

    }

    .roxchat-button-slider {
        display: block;
        z-index: 9999;
        margin: 0;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        border: none;
        outline: none;
        position: fixed;
    }

    .roxchat-button-slider img {
        margin: 0;
        padding: 0;
        vertical-align: baseline;
        border: 0;
    }

    .roxchat-root .roxchat-processing-personal-data-block {
        font-size: 15px;
        margin-top: 26px;
        padding-bottom: 30px;
        text-align: left;
        line-height: 17px;
        display: flex;
    }

    .roxchat-root .roxchat-processing-personal-data-block label {
        column-gap: 11px;
        display: flex;
        cursor: pointer;
    }

    .roxchat-root .roxchat-processing-personal-data-block span {
        display: block;
    }

    .roxchat-root .roxchat-processing-personal-data-block input {
        position: absolute;
        opacity: 0;
    }

    .roxchat-root .roxchat-processing-personal-data-block .roxchat-agreement-text {
        display: inline;
        text-decoration: none;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        cursor: pointer;
    }

    .roxchat-root .roxchat-processing-personal-data-block a,
    .roxchat-root .modal-personal-data-agreement a {
        color: #29C1E7;
        text-decoration: underline;
        cursor: pointer;
    }

    .roxchat-root .roxchat-processing-personal-data-block a:hover,
    .roxchat-root .modal-personal-data-agreement a:hover {
        color: #f41224;
        border-color: rgba(244, 18, 36, .3);
    }

    .roxchat-root .roxchat-processing-personal-data-block .roxchat-ico-checkbox-wrapper {
        width: 18px;
    }

    .roxchat-root .roxchat-processing-personal-data-block .roxchat-ico-checkbox-wrapper input {
        margin: 3px 0 0 0;
        width: 15px;
        height: 15px;
    }

    .roxchat-root .roxchat-processing-personal-data-block .roxchat-ico-checkbox-wrapper svg,
    .roxchat-root .roxchat-processing-personal-data-block .roxchat-ico-checkbox-wrapper input {
        cursor: pointer;
    }

    .roxchat-root .roxchat-processing-personal-data-block .roxchat-ico-checkbox {
        color: #DBDBDB;
        cursor: pointer;
        vertical-align: middle;
    }

    .roxchat-root .roxchat-processing-personal-data-block input ~ .roxchat-ico-checkbox-unchecked,
    .roxchat-root .roxchat-processing-personal-data-block input:checked ~ .roxchat-ico-checkbox-checked {
        display: inline-block;
    }

    .roxchat-root .roxchat-processing-personal-data-block input:checked ~ .roxchat-ico-checkbox-unchecked,
    .roxchat-root .roxchat-processing-personal-data-block input ~ .roxchat-ico-checkbox-checked {
        display: none;
    }

    .roxchat-root .roxchat-processing-personal-data-block > .roxchat-error-message {
        display: block;
        padding-left: 20px;
        position: relative;
        transform: unset;
    }

    .roxchat-offline-block .roxchat-justify-button {
        white-space: normal;
        height: 45px;
        vertical-align: top;
    }

    .roxchat-root .roxchat-drag-overlay {
        position: absolute;
        width: 100%;
        box-sizing: border-box;
        height: 100%;
        z-index: 9;
        background-color: #FFF;
        opacity: 0.9;
        transition-duration: .5s;
    }

    .roxchat-root .roxchat-drag-overlay img {
        background-size: 126px;
        height: 126px;
        display: block;
        margin: 0 auto;
        top: 10%;
        padding-top: 22%;
    }

    .roxchat-root .roxchat-add-file-title {
        display: block;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        font-weight: bold;
        color: #666;
    }

    .roxchat-root .roxchat-file-type {
        display: block;
        padding-top: 5px;
        margin: 0 40px;
        text-align: center;
        font-size: 10px;
        font-weight: bold;
        color: #919191;
    }

    [data-roxchat-widget-type~="upload-area"] {
        transition: background-color .5s;
    }

    .roxchat-root .roxchat-overlay-faded {
        background-color: #dfdfdf;
    }

    .roxchat-root .roxchat-scrollable-block {
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-color: #d1d5e2 transparent;
        scrollbar-width: thin;
        padding-top: 20px;
    }

    .roxchat-root textarea.roxchat-scrollable-block {
        overflow-y: auto;
    }

    .roxchat-root .roxchat-overlay.roxchat-contact-block.roxchat-ready .roxchat-overlay-body.roxchat-scrollable-block {
        min-height: 180px;
    }

    .roxchat-root .roxchat-scrollable-block::-webkit-scrollbar {
        width: 5px;
    }

    .roxchat-root .roxchat-scrollable-block::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .roxchat-root .roxchat-scrollable-block::-webkit-scrollbar-thumb {
        width: 5px;
        border-radius: 6px;
        background-color: #d1d5e2;
    }

    .roxchat-root .roxchat-department-select-block ul {
        list-style-type: none;
        margin: 0;
        padding: 15px 0 0 0;
    }

    .roxchat-root .roxchat-department-select-block li {
        display: block;
        position: relative;
        padding: 15px 25px;
        cursor: pointer;
    }

    .roxchat-root .roxchat-department-select-block li img {
        height: 40px;
        border-radius: 50%;
    }

    .roxchat-root .roxchat-department-select-block li:hover {
        color: #fff;
        background: rgba(238, 240, 244, 0.7);
    }

    .roxchat-root .roxchat-department-select-block li.selected {
        background-color: rgba(0, 0, 0, 0.15);
    }

    .roxchat-root .roxchat-department-select-block li span {
        position: absolute;
        font-weight: bold;
        font-weight: 400;
        font-size: 15px;
        padding-left: 15px;
        top: 50%;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translateY(-50%);
    }

    .roxchat-root .roxchat-department-select-block .roxchat-form-control:last-child {
        top: 0;
        margin: 0;
    }

    .roxchat-root .roxchat-department-select-block li div {
        display: inline;
        position: relative;
    }

    .roxchat-root .roxchat-department-select-block li div::after {
        content: "";
        position: absolute;
        top: -29px;
        left: 30px;
        height: 11px;
        width: 11px;
        border: 1px solid #fff;
        border-radius: 50%;
        background-color: #ff405c;
    }

    .roxchat-root .roxchat-department-select-block li.online div::after {
        background-color: #41d6bd;
    }

    .roxchat-root input:disabled {
        color: rgba(0, 0, 0, 0.29);
    }

    .roxchat-root .roxchat-action.roxchat-emoji-button {
        top: 8px;
        right: 31px;
        padding: 0;
        width: 18px;
        height: 18px;
    }

    .roxchat-root .roxchat-emoji-button .roxchat-ico-emoji-area:before {
        font-size: 20px;
        color: #949cbb;
    }

    .roxchat-root .roxchat-emoji-block {
        position: relative;
        height: 90px;
        padding: 5px;
        border-bottom: 1px solid rgba(179, 182, 198, 0.5);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        background-color: #fff;
        display: none;
        z-index: 11;
    }

    .roxchat-root .roxchat-emoji-block .roxchat-emoji-content {
        height: 100% !important;
        padding-top: unset;
    }

    .roxchat-root .roxchat-emoji {
        background-image: url('https://jtsupport.rox.chat/v/images/emojis.png');
        background-repeat: no-repeat;
        background-size: 360px 738px;
        width: 18px;
        height: 18px;
        display: inline-block;
        vertical-align: bottom;
        margin: 0 .1em;
        cursor: text;
    }

    .roxchat-root .roxchat-emoji-single {
        width: 18px;
        height: 18px;
        display: inline-block;
        vertical-align: bottom;
        margin: 0 .1em;
        cursor: text;
    }

    .roxchat-root .roxchat-emoji-block .roxchat-emoji {
        cursor: pointer;
        margin: 2px 4px;
        user-select: none;
        vertical-align: middle;
    }


    .roxchat-root .roxchat-font-size-3 .roxchat-emoji {
        width: 19px;
        height: 19px;
        margin: 2px 3px 2px 4px;
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji {
        width: 20px;
        height: 20px;
        margin: 2px 3px;
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji {
        width: 21px;
        height: 21px;
    }

    .roxchat-root .roxchat-emoji-1f600,
    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f600 {
        background-position-x: 0;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f601 {
        background-position-x: -18px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f602 {
        background-position-x: -36px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f603 {
        background-position-x: -54px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f604 {
        background-position-x: -72px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f605 {
        background-position-x: -90px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f606 {
        background-position-x: -108px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f607 {
        background-position-x: -126px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f608 {
        background-position-x: -144px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f609 {
        background-position-x: -162px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f60a {
        background-position-x: -180px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f60b {
        background-position-x: -198px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f60c {
        background-position-x: -216px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f60d {
        background-position-x: -234px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f60e {
        background-position-x: -252px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f60f {
        background-position-x: -270px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f610 {
        background-position-x: -288px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f611 {
        background-position-x: -306px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f612 {
        background-position-x: -324px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f613 {
        background-position-x: -342px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-emoji-1f614 {
        background-position-x: 0;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f615 {
        background-position-x: -18px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f616 {
        background-position-x: -36px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f617 {
        background-position-x: -54px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f618 {
        background-position-x: -72px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f619 {
        background-position-x: -90px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f61a {
        background-position-x: -108px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f61b {
        background-position-x: -126px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f61c {
        background-position-x: -144px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f61d {
        background-position-x: -162px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f61f {
        background-position-x: -180px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f620 {
        background-position-x: -198px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f621 {
        background-position-x: -216px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f622 {
        background-position-x: -234px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f623 {
        background-position-x: -252px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f624 {
        background-position-x: -270px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f625 {
        background-position-x: -288px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f626 {
        background-position-x: -306px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f627 {
        background-position-x: -324px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f628 {
        background-position-x: -342px;
        background-position-y: -18px
    }

    .roxchat-root .roxchat-emoji-1f629 {
        background-position-x: 0;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f62a {
        background-position-x: -18px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f62b {
        background-position-x: -36px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f62c {
        background-position-x: -54px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f62d {
        background-position-x: -72px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f62e {
        background-position-x: -90px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f62f {
        background-position-x: -108px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f630 {
        background-position-x: -126px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f631 {
        background-position-x: -144px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f632 {
        background-position-x: -162px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f633 {
        background-position-x: -180px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f634 {
        background-position-x: -198px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f635 {
        background-position-x: -216px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f636 {
        background-position-x: -234px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f637 {
        background-position-x: -252px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f638 {
        background-position-x: -270px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f639 {
        background-position-x: -288px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f63a {
        background-position-x: -306px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f63b {
        background-position-x: -324px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f63c {
        background-position-x: -342px;
        background-position-y: -36px
    }

    .roxchat-root .roxchat-emoji-1f63d {
        background-position-x: 0;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f63e {
        background-position-x: -18px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f63f {
        background-position-x: -36px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f640 {
        background-position-x: -54px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f641 {
        background-position-x: -72px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f645 {
        background-position-x: -90px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f646 {
        background-position-x: -108px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f647 {
        background-position-x: -126px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f648 {
        background-position-x: -144px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f649 {
        background-position-x: -162px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f64a {
        background-position-x: -180px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f64b {
        background-position-x: -198px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f64c {
        background-position-x: -216px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f64d {
        background-position-x: -234px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f64e {
        background-position-x: -252px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f64f {
        background-position-x: -270px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f466 {
        background-position-x: -288px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f467 {
        background-position-x: -306px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f468 {
        background-position-x: -324px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f469 {
        background-position-x: -342px;
        background-position-y: -54px
    }

    .roxchat-root .roxchat-emoji-1f46a {
        background-position-x: 0;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f46b {
        background-position-x: -18px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f46c {
        background-position-x: -36px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f46d {
        background-position-x: -54px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f46e {
        background-position-x: -72px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f46f {
        background-position-x: -90px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f470 {
        background-position-x: -108px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f471 {
        background-position-x: -126px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f472 {
        background-position-x: -144px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f473 {
        background-position-x: -162px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f474 {
        background-position-x: -180px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f475 {
        background-position-x: -198px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f476 {
        background-position-x: -216px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f477 {
        background-position-x: -234px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f478 {
        background-position-x: -252px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f479 {
        background-position-x: -270px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f47a {
        background-position-x: -288px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f47b {
        background-position-x: -306px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f47c {
        background-position-x: -324px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f47d {
        background-position-x: -342px;
        background-position-y: -72px
    }

    .roxchat-root .roxchat-emoji-1f47e {
        background-position-x: 0;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f47f {
        background-position-x: -18px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f480 {
        background-position-x: -36px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f481 {
        background-position-x: -54px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f482 {
        background-position-x: -72px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f484 {
        background-position-x: -90px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f485 {
        background-position-x: -108px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f486 {
        background-position-x: -126px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f487 {
        background-position-x: -144px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f488 {
        background-position-x: -162px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f489 {
        background-position-x: -180px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f48a {
        background-position-x: -198px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f48b {
        background-position-x: -216px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f48c {
        background-position-x: -234px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f48d {
        background-position-x: -252px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f48e {
        background-position-x: -270px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f48f {
        background-position-x: -288px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f490 {
        background-position-x: -306px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f491 {
        background-position-x: -324px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f492 {
        background-position-x: -342px;
        background-position-y: -90px
    }

    .roxchat-root .roxchat-emoji-1f493 {
        background-position-x: 0;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f494 {
        background-position-x: -18px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f495 {
        background-position-x: -36px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f496 {
        background-position-x: -54px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f497 {
        background-position-x: -72px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f498 {
        background-position-x: -90px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f499 {
        background-position-x: -108px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f49a {
        background-position-x: -126px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f49b {
        background-position-x: -144px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f49c {
        background-position-x: -162px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f49d {
        background-position-x: -180px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f49e {
        background-position-x: -198px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f49f {
        background-position-x: -216px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f400 {
        background-position-x: -234px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f401 {
        background-position-x: -252px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f402 {
        background-position-x: -270px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f403 {
        background-position-x: -288px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f404 {
        background-position-x: -306px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f405 {
        background-position-x: -324px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f406 {
        background-position-x: -342px;
        background-position-y: -108px
    }

    .roxchat-root .roxchat-emoji-1f407 {
        background-position-x: 0;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f408 {
        background-position-x: -18px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f409 {
        background-position-x: -36px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f40a {
        background-position-x: -54px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f40b {
        background-position-x: -72px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f40c {
        background-position-x: -90px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f40d {
        background-position-x: -108px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f40e {
        background-position-x: -126px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f40f {
        background-position-x: -144px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f410 {
        background-position-x: -162px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f411 {
        background-position-x: -180px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f412 {
        background-position-x: -198px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f413 {
        background-position-x: -216px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f414 {
        background-position-x: -234px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f415 {
        background-position-x: -252px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f416 {
        background-position-x: -270px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f417 {
        background-position-x: -288px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f418 {
        background-position-x: -306px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f419 {
        background-position-x: -324px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f41a {
        background-position-x: -342px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-emoji-1f41b {
        background-position-x: 0;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f41c {
        background-position-x: -18px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f41d {
        background-position-x: -36px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f41e {
        background-position-x: -54px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f41f {
        background-position-x: -72px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f420 {
        background-position-x: -90px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f421 {
        background-position-x: -108px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f422 {
        background-position-x: -126px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f423 {
        background-position-x: -144px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f424 {
        background-position-x: -162px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f425 {
        background-position-x: -180px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f426 {
        background-position-x: -198px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f427 {
        background-position-x: -216px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f428 {
        background-position-x: -234px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f429 {
        background-position-x: -252px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f42a {
        background-position-x: -270px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f42b {
        background-position-x: -288px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f42c {
        background-position-x: -306px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f42d {
        background-position-x: -324px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f42e {
        background-position-x: -342px;
        background-position-y: -144px
    }

    .roxchat-root .roxchat-emoji-1f42f {
        background-position-x: 0;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f430 {
        background-position-x: -18px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f431 {
        background-position-x: -36px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f432 {
        background-position-x: -54px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f433 {
        background-position-x: -72px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f434 {
        background-position-x: -90px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f435 {
        background-position-x: -108px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f436 {
        background-position-x: -126px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f437 {
        background-position-x: -144px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f438 {
        background-position-x: -162px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f439 {
        background-position-x: -180px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f43a {
        background-position-x: -198px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f43b {
        background-position-x: -216px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f43c {
        background-position-x: -234px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f43d {
        background-position-x: -252px;
        background-position-y: -162px
    }

    .roxchat-root .roxchat-emoji-1f004 {
        background-position-x: -162px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f0cf {
        background-position-x: -180px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f170 {
        background-position-x: -198px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f171 {
        background-position-x: -216px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f17e {
        background-position-x: -234px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f17f {
        background-position-x: -252px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f18e {
        background-position-x: -270px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f191 {
        background-position-x: -288px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f192 {
        background-position-x: -306px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f193 {
        background-position-x: -324px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f194 {
        background-position-x: -342px;
        background-position-y: -270px
    }

    .roxchat-root .roxchat-emoji-1f195 {
        background-position-x: 0;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f196 {
        background-position-x: -18px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f197 {
        background-position-x: -36px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f198 {
        background-position-x: -54px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f199 {
        background-position-x: -72px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f19a {
        background-position-x: -90px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f201 {
        background-position-x: -108px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f202 {
        background-position-x: -126px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f21a {
        background-position-x: -144px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f22f {
        background-position-x: -162px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f232 {
        background-position-x: -180px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f233 {
        background-position-x: -198px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f234 {
        background-position-x: -216px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f235 {
        background-position-x: -234px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f236 {
        background-position-x: -252px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f237 {
        background-position-x: -270px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f238 {
        background-position-x: -288px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f239 {
        background-position-x: -306px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f23a {
        background-position-x: -324px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f250 {
        background-position-x: -342px;
        background-position-y: -288px
    }

    .roxchat-root .roxchat-emoji-1f251 {
        background-position-x: 0;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f300 {
        background-position-x: -18px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f301 {
        background-position-x: -36px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f302 {
        background-position-x: -54px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f303 {
        background-position-x: -72px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f304 {
        background-position-x: -90px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f305 {
        background-position-x: -108px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f306 {
        background-position-x: -126px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f307 {
        background-position-x: -144px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f308 {
        background-position-x: -162px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f309 {
        background-position-x: -180px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f30a {
        background-position-x: -198px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f30b {
        background-position-x: -216px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f30c {
        background-position-x: -234px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f30d {
        background-position-x: -252px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f30e {
        background-position-x: -270px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f30f {
        background-position-x: -288px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f310 {
        background-position-x: -306px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f311 {
        background-position-x: -324px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f312 {
        background-position-x: -342px;
        background-position-y: -306px
    }

    .roxchat-root .roxchat-emoji-1f313 {
        background-position-x: 0;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f314 {
        background-position-x: -18px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f315 {
        background-position-x: -36px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f316 {
        background-position-x: -54px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f317 {
        background-position-x: -72px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f318 {
        background-position-x: -90px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f319 {
        background-position-x: -108px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f31a {
        background-position-x: -126px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f31b {
        background-position-x: -144px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f31c {
        background-position-x: -162px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f31d {
        background-position-x: -180px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f31e {
        background-position-x: -198px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f31f {
        background-position-x: -216px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f320 {
        background-position-x: -234px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f330 {
        background-position-x: -252px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f331 {
        background-position-x: -270px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f332 {
        background-position-x: -288px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f333 {
        background-position-x: -306px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f334 {
        background-position-x: -324px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f335 {
        background-position-x: -342px;
        background-position-y: -324px
    }

    .roxchat-root .roxchat-emoji-1f337 {
        background-position-x: 0;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f338 {
        background-position-x: -18px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f339 {
        background-position-x: -36px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f33a {
        background-position-x: -54px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f33b {
        background-position-x: -72px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f33c {
        background-position-x: -90px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f33d {
        background-position-x: -108px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f33e {
        background-position-x: -126px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f33f {
        background-position-x: -144px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f340 {
        background-position-x: -162px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f341 {
        background-position-x: -180px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f342 {
        background-position-x: -198px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f343 {
        background-position-x: -216px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f344 {
        background-position-x: -234px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f345 {
        background-position-x: -252px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f346 {
        background-position-x: -270px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f347 {
        background-position-x: -288px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f348 {
        background-position-x: -306px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f349 {
        background-position-x: -324px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f34a {
        background-position-x: -342px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-emoji-1f34b {
        background-position-x: 0;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f34c {
        background-position-x: -18px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f34d {
        background-position-x: -36px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f34e {
        background-position-x: -54px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f34f {
        background-position-x: -72px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f350 {
        background-position-x: -90px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f351 {
        background-position-x: -108px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f352 {
        background-position-x: -126px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f353 {
        background-position-x: -144px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f354 {
        background-position-x: -162px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f355 {
        background-position-x: -180px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f356 {
        background-position-x: -198px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f357 {
        background-position-x: -216px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f358 {
        background-position-x: -234px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f359 {
        background-position-x: -252px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f35a {
        background-position-x: -270px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f35b {
        background-position-x: -288px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f35c {
        background-position-x: -306px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f35d {
        background-position-x: -324px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f35e {
        background-position-x: -342px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-emoji-1f35f {
        background-position-x: 0;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f360 {
        background-position-x: -18px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f361 {
        background-position-x: -36px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f362 {
        background-position-x: -54px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f363 {
        background-position-x: -72px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f364 {
        background-position-x: -90px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f365 {
        background-position-x: -108px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f366 {
        background-position-x: -126px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f367 {
        background-position-x: -144px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f368 {
        background-position-x: -162px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f369 {
        background-position-x: -180px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f36a {
        background-position-x: -198px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f36b {
        background-position-x: -216px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f36c {
        background-position-x: -234px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f36d {
        background-position-x: -252px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f36e {
        background-position-x: -270px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f36f {
        background-position-x: -288px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f370 {
        background-position-x: -306px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f371 {
        background-position-x: -324px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f372 {
        background-position-x: -342px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-emoji-1f373 {
        background-position-x: 0;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f374 {
        background-position-x: -18px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f375 {
        background-position-x: -36px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f376 {
        background-position-x: -54px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f377 {
        background-position-x: -72px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f378 {
        background-position-x: -90px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f379 {
        background-position-x: -108px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f37a {
        background-position-x: -126px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f37b {
        background-position-x: -144px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f37c {
        background-position-x: -162px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f380 {
        background-position-x: -180px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f381 {
        background-position-x: -198px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f382 {
        background-position-x: -216px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f383 {
        background-position-x: -234px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f384 {
        background-position-x: -252px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f385 {
        background-position-x: -270px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f386 {
        background-position-x: -288px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f387 {
        background-position-x: -306px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f388 {
        background-position-x: -324px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f389 {
        background-position-x: -342px;
        background-position-y: -396px
    }

    .roxchat-root .roxchat-emoji-1f38a {
        background-position-x: 0;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f38b {
        background-position-x: -18px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f38c {
        background-position-x: -36px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f38d {
        background-position-x: -54px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f38e {
        background-position-x: -72px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f38f {
        background-position-x: -90px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f390 {
        background-position-x: -108px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f391 {
        background-position-x: -126px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f392 {
        background-position-x: -144px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f393 {
        background-position-x: -162px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a0 {
        background-position-x: -180px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a1 {
        background-position-x: -198px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a2 {
        background-position-x: -216px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a3 {
        background-position-x: -234px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a4 {
        background-position-x: -252px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a5 {
        background-position-x: -270px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a6 {
        background-position-x: -288px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a7 {
        background-position-x: -306px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a8 {
        background-position-x: -324px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3a9 {
        background-position-x: -342px;
        background-position-y: -414px
    }

    .roxchat-root .roxchat-emoji-1f3aa {
        background-position-x: 0;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3ab {
        background-position-x: -18px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3ac {
        background-position-x: -36px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3ad {
        background-position-x: -54px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3ae {
        background-position-x: -72px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3af {
        background-position-x: -90px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b0 {
        background-position-x: -108px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b1 {
        background-position-x: -126px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b2 {
        background-position-x: -144px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b3 {
        background-position-x: -162px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b4 {
        background-position-x: -180px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b5 {
        background-position-x: -198px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b6 {
        background-position-x: -216px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b7 {
        background-position-x: -234px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b8 {
        background-position-x: -252px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3b9 {
        background-position-x: -270px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3ba {
        background-position-x: -288px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3bb {
        background-position-x: -306px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3bc {
        background-position-x: -324px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3bd {
        background-position-x: -342px;
        background-position-y: -432px
    }

    .roxchat-root .roxchat-emoji-1f3be {
        background-position-x: 0;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3bf {
        background-position-x: -18px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c0 {
        background-position-x: -36px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c1 {
        background-position-x: -54px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c2 {
        background-position-x: -72px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c3 {
        background-position-x: -90px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c4 {
        background-position-x: -108px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c6 {
        background-position-x: -126px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c7 {
        background-position-x: -144px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c8 {
        background-position-x: -162px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3c9 {
        background-position-x: -180px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3ca {
        background-position-x: -198px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e0 {
        background-position-x: -216px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e1 {
        background-position-x: -234px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e2 {
        background-position-x: -252px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e3 {
        background-position-x: -270px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e4 {
        background-position-x: -288px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e5 {
        background-position-x: -306px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e6 {
        background-position-x: -324px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e7 {
        background-position-x: -342px;
        background-position-y: -450px
    }

    .roxchat-root .roxchat-emoji-1f3e8 {
        background-position-x: 0;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3e9 {
        background-position-x: -18px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3ea {
        background-position-x: -36px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3eb {
        background-position-x: -54px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3ec {
        background-position-x: -72px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3ed {
        background-position-x: -90px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3ee {
        background-position-x: -108px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3ef {
        background-position-x: -126px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f3f0 {
        background-position-x: -144px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f43e {
        background-position-x: -162px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f440 {
        background-position-x: -180px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f442 {
        background-position-x: -198px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f443 {
        background-position-x: -216px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f444 {
        background-position-x: -234px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f445 {
        background-position-x: -252px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f446 {
        background-position-x: -270px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f447 {
        background-position-x: -288px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f448 {
        background-position-x: -306px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f449 {
        background-position-x: -324px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f44a {
        background-position-x: -342px;
        background-position-y: -468px
    }

    .roxchat-root .roxchat-emoji-1f44b {
        background-position-x: 0;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f44c {
        background-position-x: -18px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f44d {
        background-position-x: -36px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f44e {
        background-position-x: -54px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f44f {
        background-position-x: -72px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f450 {
        background-position-x: -90px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f451 {
        background-position-x: -108px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f452 {
        background-position-x: -126px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f453 {
        background-position-x: -144px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f454 {
        background-position-x: -162px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f455 {
        background-position-x: -180px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f456 {
        background-position-x: -198px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f457 {
        background-position-x: -216px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f458 {
        background-position-x: -234px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f459 {
        background-position-x: -252px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f45a {
        background-position-x: -270px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f45b {
        background-position-x: -288px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f45c {
        background-position-x: -306px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f45d {
        background-position-x: -324px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f45e {
        background-position-x: -342px;
        background-position-y: -486px
    }

    .roxchat-root .roxchat-emoji-1f45f {
        background-position-x: 0;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f460 {
        background-position-x: -18px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f461 {
        background-position-x: -36px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f462 {
        background-position-x: -54px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f463 {
        background-position-x: -72px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f464 {
        background-position-x: -90px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f465 {
        background-position-x: -108px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a0 {
        background-position-x: -126px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a1 {
        background-position-x: -144px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a2 {
        background-position-x: -162px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a3 {
        background-position-x: -180px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a4 {
        background-position-x: -198px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a5 {
        background-position-x: -216px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a6 {
        background-position-x: -234px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a7 {
        background-position-x: -252px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a8 {
        background-position-x: -270px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4a9 {
        background-position-x: -288px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4aa {
        background-position-x: -306px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4ab {
        background-position-x: -324px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4ac {
        background-position-x: -342px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-emoji-1f4ad {
        background-position-x: 0;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4ae {
        background-position-x: -18px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b0 {
        background-position-x: -36px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b1 {
        background-position-x: -54px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b2 {
        background-position-x: -72px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b3 {
        background-position-x: -90px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b4 {
        background-position-x: -108px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b5 {
        background-position-x: -126px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b6 {
        background-position-x: -144px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b7 {
        background-position-x: -162px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b8 {
        background-position-x: -180px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4b9 {
        background-position-x: -198px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4ba {
        background-position-x: -216px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4bb {
        background-position-x: -234px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4bc {
        background-position-x: -252px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4bd {
        background-position-x: -270px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4be {
        background-position-x: -288px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4bf {
        background-position-x: -306px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4c0 {
        background-position-x: -324px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4c1 {
        background-position-x: -342px;
        background-position-y: -522px
    }

    .roxchat-root .roxchat-emoji-1f4c2 {
        background-position-x: 0;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c3 {
        background-position-x: -18px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c4 {
        background-position-x: -36px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c5 {
        background-position-x: -54px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c6 {
        background-position-x: -72px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c7 {
        background-position-x: -90px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c8 {
        background-position-x: -108px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4c9 {
        background-position-x: -126px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4ca {
        background-position-x: -144px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4cb {
        background-position-x: -162px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4cc {
        background-position-x: -180px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4cd {
        background-position-x: -198px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4ce {
        background-position-x: -216px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4cf {
        background-position-x: -234px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d0 {
        background-position-x: -252px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d1 {
        background-position-x: -270px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d2 {
        background-position-x: -288px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d3 {
        background-position-x: -306px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d4 {
        background-position-x: -324px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d5 {
        background-position-x: -342px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-emoji-1f4d6 {
        background-position-x: 0;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4d7 {
        background-position-x: -18px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4d8 {
        background-position-x: -36px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4d9 {
        background-position-x: -54px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4da {
        background-position-x: -72px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4db {
        background-position-x: -90px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4dc {
        background-position-x: -108px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4dd {
        background-position-x: -126px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4de {
        background-position-x: -144px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4df {
        background-position-x: -162px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e0 {
        background-position-x: -180px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e1 {
        background-position-x: -198px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e2 {
        background-position-x: -216px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e3 {
        background-position-x: -234px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e4 {
        background-position-x: -252px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e5 {
        background-position-x: -270px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e6 {
        background-position-x: -288px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e7 {
        background-position-x: -306px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e8 {
        background-position-x: -324px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4e9 {
        background-position-x: -342px;
        background-position-y: -558px
    }

    .roxchat-root .roxchat-emoji-1f4ea {
        background-position-x: 0;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4eb {
        background-position-x: -18px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4ec {
        background-position-x: -36px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4ed {
        background-position-x: -54px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4ee {
        background-position-x: -72px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4ef {
        background-position-x: -90px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f0 {
        background-position-x: -108px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f1 {
        background-position-x: -126px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f2 {
        background-position-x: -144px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f3 {
        background-position-x: -162px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f4 {
        background-position-x: -180px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f5 {
        background-position-x: -198px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f6 {
        background-position-x: -216px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f7 {
        background-position-x: -234px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4f9 {
        background-position-x: -252px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4fa {
        background-position-x: -270px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4fb {
        background-position-x: -288px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f4fc {
        background-position-x: -306px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f500 {
        background-position-x: -324px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f501 {
        background-position-x: -342px;
        background-position-y: -576px
    }

    .roxchat-root .roxchat-emoji-1f502 {
        background-position-x: 0;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f503 {
        background-position-x: -18px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f504 {
        background-position-x: -36px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f505 {
        background-position-x: -54px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f506 {
        background-position-x: -72px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f507 {
        background-position-x: -90px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f508 {
        background-position-x: -108px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f509 {
        background-position-x: -126px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f50a {
        background-position-x: -144px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f50b {
        background-position-x: -162px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f50c {
        background-position-x: -180px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f50d {
        background-position-x: -198px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f50e {
        background-position-x: -216px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f50f {
        background-position-x: -234px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f510 {
        background-position-x: -252px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f511 {
        background-position-x: -270px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f512 {
        background-position-x: -288px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f513 {
        background-position-x: -306px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f514 {
        background-position-x: -324px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f515 {
        background-position-x: -342px;
        background-position-y: -594px
    }

    .roxchat-root .roxchat-emoji-1f516 {
        background-position-x: 0;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f517 {
        background-position-x: -18px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f518 {
        background-position-x: -36px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f519 {
        background-position-x: -54px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f51a {
        background-position-x: -72px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f51b {
        background-position-x: -90px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f51c {
        background-position-x: -108px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f51d {
        background-position-x: -126px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f51e {
        background-position-x: -144px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f51f {
        background-position-x: -162px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f520 {
        background-position-x: -180px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f521 {
        background-position-x: -198px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f523 {
        background-position-x: -216px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f524 {
        background-position-x: -234px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f525 {
        background-position-x: -252px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f526 {
        background-position-x: -270px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f527 {
        background-position-x: -288px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f528 {
        background-position-x: -306px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f529 {
        background-position-x: -324px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f52a {
        background-position-x: -342px;
        background-position-y: -612px
    }

    .roxchat-root .roxchat-emoji-1f52b {
        background-position-x: 0;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f52c {
        background-position-x: -18px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f52d {
        background-position-x: -36px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f52e {
        background-position-x: -54px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f52f {
        background-position-x: -72px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f530 {
        background-position-x: -90px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f531 {
        background-position-x: -108px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f532 {
        background-position-x: -126px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f533 {
        background-position-x: -144px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f534 {
        background-position-x: -162px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f535 {
        background-position-x: -180px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f536 {
        background-position-x: -198px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f537 {
        background-position-x: -216px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f538 {
        background-position-x: -234px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f539 {
        background-position-x: -252px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f53a {
        background-position-x: -270px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f53b {
        background-position-x: -288px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f53c {
        background-position-x: -306px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f53d {
        background-position-x: -324px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f550 {
        background-position-x: -342px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-emoji-1f551 {
        background-position-x: 0;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f552 {
        background-position-x: -18px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f553 {
        background-position-x: -36px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f554 {
        background-position-x: -54px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f555 {
        background-position-x: -72px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f556 {
        background-position-x: -90px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f557 {
        background-position-x: -108px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f558 {
        background-position-x: -126px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f559 {
        background-position-x: -144px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f55a {
        background-position-x: -162px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f55b {
        background-position-x: -180px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f55c {
        background-position-x: -198px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f55d {
        background-position-x: -216px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f55e {
        background-position-x: -234px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f55f {
        background-position-x: -252px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f560 {
        background-position-x: -270px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f561 {
        background-position-x: -288px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f562 {
        background-position-x: -306px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f563 {
        background-position-x: -324px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f564 {
        background-position-x: -342px;
        background-position-y: -648px
    }

    .roxchat-root .roxchat-emoji-1f565 {
        background-position-x: 0;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f566 {
        background-position-x: -18px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f567 {
        background-position-x: -36px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f5fb {
        background-position-x: -54px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f5fc {
        background-position-x: -72px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f5fd {
        background-position-x: -90px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f5fe {
        background-position-x: -108px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f5ff {
        background-position-x: -126px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f680 {
        background-position-x: -144px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f681 {
        background-position-x: -162px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f682 {
        background-position-x: -180px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f683 {
        background-position-x: -198px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f684 {
        background-position-x: -216px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f685 {
        background-position-x: -234px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f686 {
        background-position-x: -252px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f687 {
        background-position-x: -270px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f688 {
        background-position-x: -288px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f689 {
        background-position-x: -306px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f68a {
        background-position-x: -324px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f68b {
        background-position-x: -342px;
        background-position-y: -666px
    }

    .roxchat-root .roxchat-emoji-1f68c {
        background-position-x: 0;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f68d {
        background-position-x: -18px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f68e {
        background-position-x: -36px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f68f {
        background-position-x: -54px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f690 {
        background-position-x: -72px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f691 {
        background-position-x: -90px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f692 {
        background-position-x: -108px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f693 {
        background-position-x: -126px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f694 {
        background-position-x: -144px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f695 {
        background-position-x: -162px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f696 {
        background-position-x: -180px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f697 {
        background-position-x: -198px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f698 {
        background-position-x: -216px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f699 {
        background-position-x: -234px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f69a {
        background-position-x: -252px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f69b {
        background-position-x: -270px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f69c {
        background-position-x: -288px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f69d {
        background-position-x: -306px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f69e {
        background-position-x: -324px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f69f {
        background-position-x: -342px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-emoji-1f6a0 {
        background-position-x: 0;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a1 {
        background-position-x: -18px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a2 {
        background-position-x: -36px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a3 {
        background-position-x: -54px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a4 {
        background-position-x: -72px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a5 {
        background-position-x: -90px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a6 {
        background-position-x: -108px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a7 {
        background-position-x: -126px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a8 {
        background-position-x: -144px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6a9 {
        background-position-x: -162px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6aa {
        background-position-x: -180px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6ab {
        background-position-x: -198px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6ac {
        background-position-x: -216px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6ad {
        background-position-x: -234px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6ae {
        background-position-x: -252px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6af {
        background-position-x: -270px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6b0 {
        background-position-x: -288px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6b1 {
        background-position-x: -306px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6b2 {
        background-position-x: -324px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6b3 {
        background-position-x: -342px;
        background-position-y: -702px
    }

    .roxchat-root .roxchat-emoji-1f6b4 {
        background-position-x: 0;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6b5 {
        background-position-x: -18px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6b6 {
        background-position-x: -36px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6b7 {
        background-position-x: -54px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6b8 {
        background-position-x: -72px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6b9 {
        background-position-x: -90px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6ba {
        background-position-x: -108px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6bb {
        background-position-x: -126px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6bc {
        background-position-x: -144px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6bd {
        background-position-x: -162px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6be {
        background-position-x: -180px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6bf {
        background-position-x: -198px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6c0 {
        background-position-x: -216px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6c1 {
        background-position-x: -234px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6c2 {
        background-position-x: -252px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6c3 {
        background-position-x: -270px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6c4 {
        background-position-x: -288px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f6c5 {
        background-position-x: -306px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-emoji-1f483 {
        background-position-x: -342px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f601 {
        background-position-x: -19px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f602 {
        background-position-x: -38px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f603 {
        background-position-x: -57px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f604 {
        background-position-x: -76px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f605 {
        background-position-x: -95px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f606 {
        background-position-x: -114px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f607 {
        background-position-x: -133px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f608 {
        background-position-x: -152px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f609 {
        background-position-x: -171px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f60a {
        background-position-x: -190px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f60b {
        background-position-x: -209px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f60c {
        background-position-x: -228px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f60d {
        background-position-x: -247px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f60e {
        background-position-x: -266px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f60f {
        background-position-x: -285px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f610 {
        background-position-x: -304px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f611 {
        background-position-x: -323px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f612 {
        background-position-x: -342px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f613 {
        background-position-x: -361px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f614 {
        background-position-x: 0;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f615 {
        background-position-x: -19px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f616 {
        background-position-x: -38px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f617 {
        background-position-x: -57px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f618 {
        background-position-x: -76px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f619 {
        background-position-x: -95px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f61a {
        background-position-x: -114px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f61b {
        background-position-x: -133px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f61c {
        background-position-x: -152px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f61d {
        background-position-x: -171px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f61f {
        background-position-x: -190px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f620 {
        background-position-x: -209px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f621 {
        background-position-x: -228px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f622 {
        background-position-x: -247px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f623 {
        background-position-x: -266px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f624 {
        background-position-x: -285px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f625 {
        background-position-x: -304px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f626 {
        background-position-x: -323px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f627 {
        background-position-x: -342px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f628 {
        background-position-x: -361px;
        background-position-y: -19px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f629 {
        background-position-x: 0;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f62a {
        background-position-x: -19px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f62b {
        background-position-x: -38px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f62c {
        background-position-x: -57px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f62d {
        background-position-x: -76px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f62e {
        background-position-x: -95px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f62f {
        background-position-x: -114px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f630 {
        background-position-x: -133px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f631 {
        background-position-x: -152px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f632 {
        background-position-x: -171px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f633 {
        background-position-x: -190px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f634 {
        background-position-x: -209px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f635 {
        background-position-x: -228px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f636 {
        background-position-x: -247px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f637 {
        background-position-x: -266px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f638 {
        background-position-x: -285px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f639 {
        background-position-x: -304px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f63a {
        background-position-x: -323px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f63b {
        background-position-x: -342px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f63c {
        background-position-x: -361px;
        background-position-y: -38px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f63d {
        background-position-x: 0;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f63e {
        background-position-x: -19px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f63f {
        background-position-x: -38px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f640 {
        background-position-x: -57px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f641 {
        background-position-x: -76px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f645 {
        background-position-x: -95px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f646 {
        background-position-x: -114px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f647 {
        background-position-x: -133px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f648 {
        background-position-x: -152px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f649 {
        background-position-x: -171px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f64a {
        background-position-x: -190px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f64b {
        background-position-x: -209px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f64c {
        background-position-x: -228px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f64d {
        background-position-x: -247px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f64e {
        background-position-x: -266px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f64f {
        background-position-x: -285px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f466 {
        background-position-x: -304px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f467 {
        background-position-x: -323px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f468 {
        background-position-x: -342px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f469 {
        background-position-x: -361px;
        background-position-y: -57px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f46a {
        background-position-x: 0;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f46b {
        background-position-x: -19px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f46c {
        background-position-x: -38px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f46d {
        background-position-x: -57px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f46e {
        background-position-x: -76px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f46f {
        background-position-x: -95px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f470 {
        background-position-x: -114px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f471 {
        background-position-x: -133px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f472 {
        background-position-x: -152px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f473 {
        background-position-x: -171px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f474 {
        background-position-x: -190px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f475 {
        background-position-x: -209px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f476 {
        background-position-x: -228px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f477 {
        background-position-x: -247px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f478 {
        background-position-x: -266px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f479 {
        background-position-x: -285px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f47a {
        background-position-x: -304px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f47b {
        background-position-x: -323px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f47c {
        background-position-x: -342px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f47d {
        background-position-x: -361px;
        background-position-y: -76px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f47e {
        background-position-x: 0;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f47f {
        background-position-x: -19px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f480 {
        background-position-x: -38px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f481 {
        background-position-x: -57px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f482 {
        background-position-x: -76px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f484 {
        background-position-x: -95px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f485 {
        background-position-x: -114px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f486 {
        background-position-x: -133px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f487 {
        background-position-x: -152px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f488 {
        background-position-x: -171px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f489 {
        background-position-x: -190px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f48a {
        background-position-x: -209px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f48b {
        background-position-x: -228px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f48c {
        background-position-x: -247px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f48d {
        background-position-x: -266px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f48e {
        background-position-x: -285px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f48f {
        background-position-x: -304px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f490 {
        background-position-x: -323px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f491 {
        background-position-x: -342px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f492 {
        background-position-x: -361px;
        background-position-y: -95px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f493 {
        background-position-x: 0;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f494 {
        background-position-x: -19px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f495 {
        background-position-x: -38px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f496 {
        background-position-x: -57px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f497 {
        background-position-x: -76px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f498 {
        background-position-x: -95px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f499 {
        background-position-x: -114px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f49a {
        background-position-x: -133px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f49b {
        background-position-x: -152px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f49c {
        background-position-x: -171px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f49d {
        background-position-x: -190px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f49e {
        background-position-x: -209px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f49f {
        background-position-x: -228px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f400 {
        background-position-x: -247px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f401 {
        background-position-x: -266px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f402 {
        background-position-x: -285px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f403 {
        background-position-x: -304px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f404 {
        background-position-x: -323px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f405 {
        background-position-x: -342px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f406 {
        background-position-x: -361px;
        background-position-y: -114px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f407 {
        background-position-x: 0;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f408 {
        background-position-x: -19px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f409 {
        background-position-x: -38px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f40a {
        background-position-x: -57px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f40b {
        background-position-x: -76px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f40c {
        background-position-x: -95px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f40d {
        background-position-x: -114px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f40e {
        background-position-x: -133px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f40f {
        background-position-x: -152px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f410 {
        background-position-x: -171px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f411 {
        background-position-x: -190px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f412 {
        background-position-x: -209px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f413 {
        background-position-x: -228px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f414 {
        background-position-x: -247px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f415 {
        background-position-x: -266px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f416 {
        background-position-x: -285px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f417 {
        background-position-x: -304px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f418 {
        background-position-x: -323px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f419 {
        background-position-x: -342px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f41a {
        background-position-x: -361px;
        background-position-y: -133px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f41b {
        background-position-x: 0;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f41c {
        background-position-x: -19px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f41d {
        background-position-x: -38px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f41e {
        background-position-x: -57px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f41f {
        background-position-x: -76px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f420 {
        background-position-x: -95px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f421 {
        background-position-x: -114px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f422 {
        background-position-x: -133px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f423 {
        background-position-x: -152px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f424 {
        background-position-x: -171px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f425 {
        background-position-x: -190px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f426 {
        background-position-x: -209px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f427 {
        background-position-x: -228px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f428 {
        background-position-x: -247px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f429 {
        background-position-x: -266px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f42a {
        background-position-x: -285px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f42b {
        background-position-x: -304px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f42c {
        background-position-x: -323px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f42d {
        background-position-x: -342px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f42e {
        background-position-x: -361px;
        background-position-y: -152px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f42f {
        background-position-x: 0;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f430 {
        background-position-x: -19px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f431 {
        background-position-x: -38px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f432 {
        background-position-x: -57px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f433 {
        background-position-x: -76px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f434 {
        background-position-x: -95px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f435 {
        background-position-x: -114px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f436 {
        background-position-x: -133px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f437 {
        background-position-x: -152px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f438 {
        background-position-x: -171px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f439 {
        background-position-x: -190px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f43a {
        background-position-x: -209px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f43b {
        background-position-x: -228px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f43c {
        background-position-x: -247px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f43d {
        background-position-x: -266px;
        background-position-y: -171px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f004 {
        background-position-x: -171px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f0cf {
        background-position-x: -190px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f170 {
        background-position-x: -209px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f171 {
        background-position-x: -228px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f17e {
        background-position-x: -247px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f17f {
        background-position-x: -266px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f18e {
        background-position-x: -285px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f191 {
        background-position-x: -304px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f192 {
        background-position-x: -323px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f193 {
        background-position-x: -342px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f194 {
        background-position-x: -361px;
        background-position-y: -285px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f195 {
        background-position-x: 0;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f196 {
        background-position-x: -19px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f197 {
        background-position-x: -38px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f198 {
        background-position-x: -57px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f199 {
        background-position-x: -76px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f19a {
        background-position-x: -95px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f201 {
        background-position-x: -114px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f202 {
        background-position-x: -133px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f21a {
        background-position-x: -152px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f22f {
        background-position-x: -171px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f232 {
        background-position-x: -190px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f233 {
        background-position-x: -209px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f234 {
        background-position-x: -228px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f235 {
        background-position-x: -247px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f236 {
        background-position-x: -266px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f237 {
        background-position-x: -285px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f238 {
        background-position-x: -304px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f239 {
        background-position-x: -323px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f23a {
        background-position-x: -342px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f250 {
        background-position-x: -361px;
        background-position-y: -304px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f251 {
        background-position-x: 0;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f300 {
        background-position-x: -19px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f301 {
        background-position-x: -38px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f302 {
        background-position-x: -57px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f303 {
        background-position-x: -76px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f304 {
        background-position-x: -95px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f305 {
        background-position-x: -114px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f306 {
        background-position-x: -133px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f307 {
        background-position-x: -152px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f308 {
        background-position-x: -171px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f309 {
        background-position-x: -190px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f30a {
        background-position-x: -209px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f30b {
        background-position-x: -228px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f30c {
        background-position-x: -247px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f30d {
        background-position-x: -266px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f30e {
        background-position-x: -285px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f30f {
        background-position-x: -304px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f310 {
        background-position-x: -323px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f311 {
        background-position-x: -342px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f312 {
        background-position-x: -361px;
        background-position-y: -323px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f313 {
        background-position-x: 0;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f314 {
        background-position-x: -19px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f315 {
        background-position-x: -38px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f316 {
        background-position-x: -57px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f317 {
        background-position-x: -76px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f318 {
        background-position-x: -95px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f319 {
        background-position-x: -114px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f31a {
        background-position-x: -133px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f31b {
        background-position-x: -152px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f31c {
        background-position-x: -171px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f31d {
        background-position-x: -190px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f31e {
        background-position-x: -209px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f31f {
        background-position-x: -228px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f320 {
        background-position-x: -247px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f330 {
        background-position-x: -266px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f331 {
        background-position-x: -285px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f332 {
        background-position-x: -304px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f333 {
        background-position-x: -323px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f334 {
        background-position-x: -342px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f335 {
        background-position-x: -361px;
        background-position-y: -342px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f337 {
        background-position-x: 0;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f338 {
        background-position-x: -19px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f339 {
        background-position-x: -38px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f33a {
        background-position-x: -57px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f33b {
        background-position-x: -76px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f33c {
        background-position-x: -95px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f33d {
        background-position-x: -114px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f33e {
        background-position-x: -133px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f33f {
        background-position-x: -152px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f340 {
        background-position-x: -171px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f341 {
        background-position-x: -190px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f342 {
        background-position-x: -209px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f343 {
        background-position-x: -228px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f344 {
        background-position-x: -247px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f345 {
        background-position-x: -266px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f346 {
        background-position-x: -285px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f347 {
        background-position-x: -304px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f348 {
        background-position-x: -323px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f349 {
        background-position-x: -342px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f34a {
        background-position-x: -361px;
        background-position-y: -361px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f34b {
        background-position-x: 0;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f34c {
        background-position-x: -19px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f34d {
        background-position-x: -38px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f34e {
        background-position-x: -57px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f34f {
        background-position-x: -76px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f350 {
        background-position-x: -95px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f351 {
        background-position-x: -114px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f352 {
        background-position-x: -133px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f353 {
        background-position-x: -152px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f354 {
        background-position-x: -171px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f355 {
        background-position-x: -190px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f356 {
        background-position-x: -209px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f357 {
        background-position-x: -228px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f358 {
        background-position-x: -247px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f359 {
        background-position-x: -266px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f35a {
        background-position-x: -285px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f35b {
        background-position-x: -304px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f35c {
        background-position-x: -323px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f35d {
        background-position-x: -342px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f35e {
        background-position-x: -361px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f35f {
        background-position-x: 0;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f360 {
        background-position-x: -19px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f361 {
        background-position-x: -38px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f362 {
        background-position-x: -57px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f363 {
        background-position-x: -76px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f364 {
        background-position-x: -95px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f365 {
        background-position-x: -114px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f366 {
        background-position-x: -133px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f367 {
        background-position-x: -152px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f368 {
        background-position-x: -171px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f369 {
        background-position-x: -190px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f36a {
        background-position-x: -209px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f36b {
        background-position-x: -228px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f36c {
        background-position-x: -247px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f36d {
        background-position-x: -266px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f36e {
        background-position-x: -285px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f36f {
        background-position-x: -304px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f370 {
        background-position-x: -323px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f371 {
        background-position-x: -342px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f372 {
        background-position-x: -361px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f373 {
        background-position-x: 0;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f374 {
        background-position-x: -19px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f375 {
        background-position-x: -38px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f376 {
        background-position-x: -57px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f377 {
        background-position-x: -76px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f378 {
        background-position-x: -95px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f379 {
        background-position-x: -114px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f37a {
        background-position-x: -133px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f37b {
        background-position-x: -152px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f37c {
        background-position-x: -171px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f380 {
        background-position-x: -190px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f381 {
        background-position-x: -209px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f382 {
        background-position-x: -228px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f383 {
        background-position-x: -247px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f384 {
        background-position-x: -266px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f385 {
        background-position-x: -285px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f386 {
        background-position-x: -304px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f387 {
        background-position-x: -323px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f388 {
        background-position-x: -342px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f389 {
        background-position-x: -361px;
        background-position-y: -418px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f38a {
        background-position-x: 0;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f38b {
        background-position-x: -19px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f38c {
        background-position-x: -38px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f38d {
        background-position-x: -57px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f38e {
        background-position-x: -76px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f38f {
        background-position-x: -95px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f390 {
        background-position-x: -114px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f391 {
        background-position-x: -133px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f392 {
        background-position-x: -152px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f393 {
        background-position-x: -171px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a0 {
        background-position-x: -190px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a1 {
        background-position-x: -209px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a2 {
        background-position-x: -228px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a3 {
        background-position-x: -247px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a4 {
        background-position-x: -266px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a5 {
        background-position-x: -285px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a6 {
        background-position-x: -304px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a7 {
        background-position-x: -323px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a8 {
        background-position-x: -342px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3a9 {
        background-position-x: -361px;
        background-position-y: -437px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3aa {
        background-position-x: 0;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ab {
        background-position-x: -19px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ac {
        background-position-x: -38px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ad {
        background-position-x: -57px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ae {
        background-position-x: -76px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3af {
        background-position-x: -95px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b0 {
        background-position-x: -114px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b1 {
        background-position-x: -133px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b2 {
        background-position-x: -152px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b3 {
        background-position-x: -171px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b4 {
        background-position-x: -190px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b5 {
        background-position-x: -209px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b6 {
        background-position-x: -228px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b7 {
        background-position-x: -247px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b8 {
        background-position-x: -266px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3b9 {
        background-position-x: -285px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ba {
        background-position-x: -304px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3bb {
        background-position-x: -323px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3bc {
        background-position-x: -342px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3bd {
        background-position-x: -361px;
        background-position-y: -456px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3be {
        background-position-x: 0;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3bf {
        background-position-x: -19px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c0 {
        background-position-x: -38px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c1 {
        background-position-x: -57px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c2 {
        background-position-x: -76px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c3 {
        background-position-x: -95px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c4 {
        background-position-x: -114px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c6 {
        background-position-x: -133px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c7 {
        background-position-x: -152px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c8 {
        background-position-x: -171px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3c9 {
        background-position-x: -190px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ca {
        background-position-x: -209px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e0 {
        background-position-x: -228px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e1 {
        background-position-x: -247px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e2 {
        background-position-x: -266px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e3 {
        background-position-x: -285px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e4 {
        background-position-x: -304px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e5 {
        background-position-x: -323px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e6 {
        background-position-x: -342px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e7 {
        background-position-x: -361px;
        background-position-y: -475px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e8 {
        background-position-x: 0;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3e9 {
        background-position-x: -19px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ea {
        background-position-x: -38px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3eb {
        background-position-x: -57px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ec {
        background-position-x: -76px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ed {
        background-position-x: -95px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ee {
        background-position-x: -114px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3ef {
        background-position-x: -133px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f3f0 {
        background-position-x: -152px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f43e {
        background-position-x: -171px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f440 {
        background-position-x: -190px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f442 {
        background-position-x: -209px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f443 {
        background-position-x: -228px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f444 {
        background-position-x: -247px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f445 {
        background-position-x: -266px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f446 {
        background-position-x: -285px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f447 {
        background-position-x: -304px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f448 {
        background-position-x: -323px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f449 {
        background-position-x: -342px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f44a {
        background-position-x: -361px;
        background-position-y: -494px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f44b {
        background-position-x: 0;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f44c {
        background-position-x: -19px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f44d {
        background-position-x: -38px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f44e {
        background-position-x: -57px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f44f {
        background-position-x: -76px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f450 {
        background-position-x: -95px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f451 {
        background-position-x: -114px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f452 {
        background-position-x: -133px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f453 {
        background-position-x: -152px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f454 {
        background-position-x: -171px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f455 {
        background-position-x: -190px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f456 {
        background-position-x: -209px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f457 {
        background-position-x: -228px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f458 {
        background-position-x: -247px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f459 {
        background-position-x: -266px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f45a {
        background-position-x: -285px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f45b {
        background-position-x: -304px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f45c {
        background-position-x: -323px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f45d {
        background-position-x: -342px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f45e {
        background-position-x: -361px;
        background-position-y: -513px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f45f {
        background-position-x: 0;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f460 {
        background-position-x: -19px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f461 {
        background-position-x: -38px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f462 {
        background-position-x: -57px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f463 {
        background-position-x: -76px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f464 {
        background-position-x: -95px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f465 {
        background-position-x: -114px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a0 {
        background-position-x: -133px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a1 {
        background-position-x: -152px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a2 {
        background-position-x: -171px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a3 {
        background-position-x: -190px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a4 {
        background-position-x: -209px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a5 {
        background-position-x: -228px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a6 {
        background-position-x: -247px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a7 {
        background-position-x: -266px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a8 {
        background-position-x: -285px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4a9 {
        background-position-x: -304px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4aa {
        background-position-x: -323px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ab {
        background-position-x: -342px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ac {
        background-position-x: -361px;
        background-position-y: -532px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ad {
        background-position-x: 0;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ae {
        background-position-x: -19px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b0 {
        background-position-x: -38px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b1 {
        background-position-x: -57px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b2 {
        background-position-x: -76px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b3 {
        background-position-x: -95px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b4 {
        background-position-x: -114px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b5 {
        background-position-x: -133px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b6 {
        background-position-x: -152px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b7 {
        background-position-x: -171px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b8 {
        background-position-x: -190px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4b9 {
        background-position-x: -209px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ba {
        background-position-x: -228px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4bb {
        background-position-x: -247px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4bc {
        background-position-x: -266px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4bd {
        background-position-x: -285px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4be {
        background-position-x: -304px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4bf {
        background-position-x: -323px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c0 {
        background-position-x: -342px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c1 {
        background-position-x: -361px;
        background-position-y: -551px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c2 {
        background-position-x: 0;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c3 {
        background-position-x: -19px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c4 {
        background-position-x: -38px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c5 {
        background-position-x: -57px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c6 {
        background-position-x: -76px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c7 {
        background-position-x: -95px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c8 {
        background-position-x: -114px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4c9 {
        background-position-x: -133px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ca {
        background-position-x: -152px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4cb {
        background-position-x: -171px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4cc {
        background-position-x: -190px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4cd {
        background-position-x: -209px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ce {
        background-position-x: -228px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4cf {
        background-position-x: -247px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d0 {
        background-position-x: -266px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d1 {
        background-position-x: -285px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d2 {
        background-position-x: -304px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d3 {
        background-position-x: -323px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d4 {
        background-position-x: -342px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d5 {
        background-position-x: -361px;
        background-position-y: -570px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d6 {
        background-position-x: 0;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d7 {
        background-position-x: -19px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d8 {
        background-position-x: -38px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4d9 {
        background-position-x: -57px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4da {
        background-position-x: -76px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4db {
        background-position-x: -95px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4dc {
        background-position-x: -114px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4dd {
        background-position-x: -133px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4de {
        background-position-x: -152px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4df {
        background-position-x: -171px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e0 {
        background-position-x: -190px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e1 {
        background-position-x: -209px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e2 {
        background-position-x: -228px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e3 {
        background-position-x: -247px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e4 {
        background-position-x: -266px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e5 {
        background-position-x: -285px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e6 {
        background-position-x: -304px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e7 {
        background-position-x: -323px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e8 {
        background-position-x: -342px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4e9 {
        background-position-x: -361px;
        background-position-y: -589px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ea {
        background-position-x: 0;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4eb {
        background-position-x: -19px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ec {
        background-position-x: -38px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ed {
        background-position-x: -57px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ee {
        background-position-x: -76px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4ef {
        background-position-x: -95px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f0 {
        background-position-x: -114px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f1 {
        background-position-x: -133px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f2 {
        background-position-x: -152px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f3 {
        background-position-x: -171px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f4 {
        background-position-x: -190px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f5 {
        background-position-x: -209px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f6 {
        background-position-x: -228px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f7 {
        background-position-x: -247px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4f9 {
        background-position-x: -266px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4fa {
        background-position-x: -285px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4fb {
        background-position-x: -304px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f4fc {
        background-position-x: -323px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f500 {
        background-position-x: -342px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f501 {
        background-position-x: -361px;
        background-position-y: -608px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f502 {
        background-position-x: 0;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f503 {
        background-position-x: -19px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f504 {
        background-position-x: -38px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f505 {
        background-position-x: -57px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f506 {
        background-position-x: -76px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f507 {
        background-position-x: -95px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f508 {
        background-position-x: -114px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f509 {
        background-position-x: -133px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f50a {
        background-position-x: -152px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f50b {
        background-position-x: -171px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f50c {
        background-position-x: -190px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f50d {
        background-position-x: -209px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f50e {
        background-position-x: -228px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f50f {
        background-position-x: -247px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f510 {
        background-position-x: -266px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f511 {
        background-position-x: -285px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f512 {
        background-position-x: -304px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f513 {
        background-position-x: -323px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f514 {
        background-position-x: -342px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f515 {
        background-position-x: -361px;
        background-position-y: -627px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f516 {
        background-position-x: 0;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f517 {
        background-position-x: -19px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f518 {
        background-position-x: -38px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f519 {
        background-position-x: -57px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f51a {
        background-position-x: -76px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f51b {
        background-position-x: -95px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f51c {
        background-position-x: -114px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f51d {
        background-position-x: -133px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f51e {
        background-position-x: -152px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f51f {
        background-position-x: -171px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f520 {
        background-position-x: -190px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f521 {
        background-position-x: -209px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f523 {
        background-position-x: -228px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f524 {
        background-position-x: -247px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f525 {
        background-position-x: -266px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f526 {
        background-position-x: -285px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f527 {
        background-position-x: -304px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f528 {
        background-position-x: -323px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f529 {
        background-position-x: -342px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f52a {
        background-position-x: -361px;
        background-position-y: -646px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f52b {
        background-position-x: 0;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f52c {
        background-position-x: -19px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f52d {
        background-position-x: -38px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f52e {
        background-position-x: -57px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f52f {
        background-position-x: -76px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f530 {
        background-position-x: -95px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f531 {
        background-position-x: -114px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f532 {
        background-position-x: -133px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f533 {
        background-position-x: -152px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f534 {
        background-position-x: -171px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f535 {
        background-position-x: -190px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f536 {
        background-position-x: -209px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f537 {
        background-position-x: -228px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f538 {
        background-position-x: -247px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f539 {
        background-position-x: -266px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f53a {
        background-position-x: -285px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f53b {
        background-position-x: -304px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f53c {
        background-position-x: -323px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f53d {
        background-position-x: -342px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f550 {
        background-position-x: -361px;
        background-position-y: -665px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f551 {
        background-position-x: 0;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f552 {
        background-position-x: -19px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f553 {
        background-position-x: -38px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f554 {
        background-position-x: -57px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f555 {
        background-position-x: -76px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f556 {
        background-position-x: -95px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f557 {
        background-position-x: -114px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f558 {
        background-position-x: -133px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f559 {
        background-position-x: -152px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f55a {
        background-position-x: -171px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f55b {
        background-position-x: -190px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f55c {
        background-position-x: -209px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f55d {
        background-position-x: -228px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f55e {
        background-position-x: -247px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f55f {
        background-position-x: -266px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f560 {
        background-position-x: -285px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f561 {
        background-position-x: -304px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f562 {
        background-position-x: -323px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f563 {
        background-position-x: -342px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f564 {
        background-position-x: -361px;
        background-position-y: -684px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f565 {
        background-position-x: 0;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f566 {
        background-position-x: -19px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f567 {
        background-position-x: -38px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f5fb {
        background-position-x: -57px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f5fc {
        background-position-x: -76px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f5fd {
        background-position-x: -95px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f5fe {
        background-position-x: -114px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f5ff {
        background-position-x: -133px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f680 {
        background-position-x: -152px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f681 {
        background-position-x: -171px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f682 {
        background-position-x: -190px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f683 {
        background-position-x: -209px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f684 {
        background-position-x: -228px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f685 {
        background-position-x: -247px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f686 {
        background-position-x: -266px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f687 {
        background-position-x: -285px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f688 {
        background-position-x: -304px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f689 {
        background-position-x: -323px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f68a {
        background-position-x: -342px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f68b {
        background-position-x: -361px;
        background-position-y: -703px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f68c {
        background-position-x: 0;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f68d {
        background-position-x: -19px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f68e {
        background-position-x: -38px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f68f {
        background-position-x: -57px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f690 {
        background-position-x: -76px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f691 {
        background-position-x: -95px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f692 {
        background-position-x: -114px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f693 {
        background-position-x: -133px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f694 {
        background-position-x: -152px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f695 {
        background-position-x: -171px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f696 {
        background-position-x: -190px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f697 {
        background-position-x: -209px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f698 {
        background-position-x: -228px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f699 {
        background-position-x: -247px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f69a {
        background-position-x: -266px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f69b {
        background-position-x: -285px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f69c {
        background-position-x: -304px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f69d {
        background-position-x: -323px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f69e {
        background-position-x: -342px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f69f {
        background-position-x: -361px;
        background-position-y: -722px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a0 {
        background-position-x: 0;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a1 {
        background-position-x: -19px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a2 {
        background-position-x: -38px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a3 {
        background-position-x: -57px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a4 {
        background-position-x: -76px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a5 {
        background-position-x: -95px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a6 {
        background-position-x: -114px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a7 {
        background-position-x: -133px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a8 {
        background-position-x: -152px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6a9 {
        background-position-x: -171px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6aa {
        background-position-x: -190px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6ab {
        background-position-x: -209px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6ac {
        background-position-x: -228px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6ad {
        background-position-x: -247px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6ae {
        background-position-x: -266px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6af {
        background-position-x: -285px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b0 {
        background-position-x: -304px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b1 {
        background-position-x: -323px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b2 {
        background-position-x: -342px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b3 {
        background-position-x: -361px;
        background-position-y: -741px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b4 {
        background-position-x: 0;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b5 {
        background-position-x: -19px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b6 {
        background-position-x: -38px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b7 {
        background-position-x: -57px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b8 {
        background-position-x: -76px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6b9 {
        background-position-x: -95px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6ba {
        background-position-x: -114px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6bb {
        background-position-x: -133px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6bc {
        background-position-x: -152px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6bd {
        background-position-x: -171px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6be {
        background-position-x: -190px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6bf {
        background-position-x: -209px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6c0 {
        background-position-x: -228px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6c1 {
        background-position-x: -247px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6c2 {
        background-position-x: -266px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6c3 {
        background-position-x: -285px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6c4 {
        background-position-x: -304px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f6c5 {
        background-position-x: -323px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji-1f483 {
        background-position-x: -361px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f600 {
        background-position-x: 0;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f601 {
        background-position-x: -20px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f602 {
        background-position-x: -40px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f603 {
        background-position-x: -60px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f604 {
        background-position-x: -80px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f605 {
        background-position-x: -100px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f606 {
        background-position-x: -120px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f607 {
        background-position-x: -140px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f608 {
        background-position-x: -160px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f609 {
        background-position-x: -180px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f60a {
        background-position-x: -200px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f60b {
        background-position-x: -220px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f60c {
        background-position-x: -240px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f60d {
        background-position-x: -260px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f60e {
        background-position-x: -280px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f60f {
        background-position-x: -300px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f610 {
        background-position-x: -320px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f611 {
        background-position-x: -340px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f612 {
        background-position-x: -360px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f613 {
        background-position-x: -380px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f614 {
        background-position-x: 0;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f615 {
        background-position-x: -20px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f616 {
        background-position-x: -40px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f617 {
        background-position-x: -60px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f618 {
        background-position-x: -80px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f619 {
        background-position-x: -100px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f61a {
        background-position-x: -120px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f61b {
        background-position-x: -140px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f61c {
        background-position-x: -160px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f61d {
        background-position-x: -180px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f61f {
        background-position-x: -200px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f620 {
        background-position-x: -220px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f621 {
        background-position-x: -240px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f622 {
        background-position-x: -260px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f623 {
        background-position-x: -280px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f624 {
        background-position-x: -300px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f625 {
        background-position-x: -320px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f626 {
        background-position-x: -340px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f627 {
        background-position-x: -360px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f628 {
        background-position-x: -380px;
        background-position-y: -20px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f629 {
        background-position-x: 0;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f62a {
        background-position-x: -20px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f62b {
        background-position-x: -40px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f62c {
        background-position-x: -60px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f62d {
        background-position-x: -80px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f62e {
        background-position-x: -100px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f62f {
        background-position-x: -120px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f630 {
        background-position-x: -140px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f631 {
        background-position-x: -160px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f632 {
        background-position-x: -180px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f633 {
        background-position-x: -200px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f634 {
        background-position-x: -220px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f635 {
        background-position-x: -240px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f636 {
        background-position-x: -260px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f637 {
        background-position-x: -280px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f638 {
        background-position-x: -300px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f639 {
        background-position-x: -320px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f63a {
        background-position-x: -340px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f63b {
        background-position-x: -360px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f63c {
        background-position-x: -380px;
        background-position-y: -40px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f63d {
        background-position-x: 0;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f63e {
        background-position-x: -20px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f63f {
        background-position-x: -40px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f640 {
        background-position-x: -60px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f641 {
        background-position-x: -80px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f645 {
        background-position-x: -100px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f646 {
        background-position-x: -120px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f647 {
        background-position-x: -140px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f648 {
        background-position-x: -160px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f649 {
        background-position-x: -180px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f64a {
        background-position-x: -200px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f64b {
        background-position-x: -220px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f64c {
        background-position-x: -240px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f64d {
        background-position-x: -260px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f64e {
        background-position-x: -280px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f64f {
        background-position-x: -300px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f466 {
        background-position-x: -320px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f467 {
        background-position-x: -340px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f468 {
        background-position-x: -360px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f469 {
        background-position-x: -380px;
        background-position-y: -60px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f46a {
        background-position-x: 0;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f46b {
        background-position-x: -20px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f46c {
        background-position-x: -40px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f46d {
        background-position-x: -60px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f46e {
        background-position-x: -80px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f46f {
        background-position-x: -100px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f470 {
        background-position-x: -120px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f471 {
        background-position-x: -140px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f472 {
        background-position-x: -160px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f473 {
        background-position-x: -180px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f474 {
        background-position-x: -200px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f475 {
        background-position-x: -220px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f476 {
        background-position-x: -240px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f477 {
        background-position-x: -260px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f478 {
        background-position-x: -280px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f479 {
        background-position-x: -300px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f47a {
        background-position-x: -320px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f47b {
        background-position-x: -340px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f47c {
        background-position-x: -360px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f47d {
        background-position-x: -380px;
        background-position-y: -80px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f47e {
        background-position-x: 0;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f47f {
        background-position-x: -20px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f480 {
        background-position-x: -40px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f481 {
        background-position-x: -60px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f482 {
        background-position-x: -80px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f484 {
        background-position-x: -100px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f485 {
        background-position-x: -120px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f486 {
        background-position-x: -140px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f487 {
        background-position-x: -160px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f488 {
        background-position-x: -180px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f489 {
        background-position-x: -200px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f48a {
        background-position-x: -220px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f48b {
        background-position-x: -240px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f48c {
        background-position-x: -260px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f48d {
        background-position-x: -280px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f48e {
        background-position-x: -300px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f48f {
        background-position-x: -320px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f490 {
        background-position-x: -340px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f491 {
        background-position-x: -360px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f492 {
        background-position-x: -380px;
        background-position-y: -100px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f493 {
        background-position-x: 0;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f494 {
        background-position-x: -20px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f495 {
        background-position-x: -40px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f496 {
        background-position-x: -60px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f497 {
        background-position-x: -80px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f498 {
        background-position-x: -100px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f499 {
        background-position-x: -120px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f49a {
        background-position-x: -140px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f49b {
        background-position-x: -160px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f49c {
        background-position-x: -180px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f49d {
        background-position-x: -200px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f49e {
        background-position-x: -220px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f49f {
        background-position-x: -240px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f400 {
        background-position-x: -260px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f401 {
        background-position-x: -280px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f402 {
        background-position-x: -300px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f403 {
        background-position-x: -320px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f404 {
        background-position-x: -340px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f405 {
        background-position-x: -360px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f406 {
        background-position-x: -380px;
        background-position-y: -120px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f407 {
        background-position-x: 0;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f408 {
        background-position-x: -20px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f409 {
        background-position-x: -40px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f40a {
        background-position-x: -60px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f40b {
        background-position-x: -80px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f40c {
        background-position-x: -100px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f40d {
        background-position-x: -120px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f40e {
        background-position-x: -140px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f40f {
        background-position-x: -160px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f410 {
        background-position-x: -180px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f411 {
        background-position-x: -200px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f412 {
        background-position-x: -220px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f413 {
        background-position-x: -240px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f414 {
        background-position-x: -260px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f415 {
        background-position-x: -280px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f416 {
        background-position-x: -300px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f417 {
        background-position-x: -320px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f418 {
        background-position-x: -340px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f419 {
        background-position-x: -360px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f41a {
        background-position-x: -380px;
        background-position-y: -140px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f41b {
        background-position-x: 0;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f41c {
        background-position-x: -20px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f41d {
        background-position-x: -40px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f41e {
        background-position-x: -60px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f41f {
        background-position-x: -80px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f420 {
        background-position-x: -100px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f421 {
        background-position-x: -120px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f422 {
        background-position-x: -140px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f423 {
        background-position-x: -160px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f424 {
        background-position-x: -180px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f425 {
        background-position-x: -200px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f426 {
        background-position-x: -220px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f427 {
        background-position-x: -240px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f428 {
        background-position-x: -260px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f429 {
        background-position-x: -280px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f42a {
        background-position-x: -300px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f42b {
        background-position-x: -320px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f42c {
        background-position-x: -340px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f42d {
        background-position-x: -360px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f42e {
        background-position-x: -380px;
        background-position-y: -160px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f42f {
        background-position-x: 0;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f430 {
        background-position-x: -20px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f431 {
        background-position-x: -40px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f432 {
        background-position-x: -60px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f433 {
        background-position-x: -80px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f434 {
        background-position-x: -100px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f435 {
        background-position-x: -120px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f436 {
        background-position-x: -140px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f437 {
        background-position-x: -160px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f438 {
        background-position-x: -180px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f439 {
        background-position-x: -200px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f43a {
        background-position-x: -220px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f43b {
        background-position-x: -240px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f43c {
        background-position-x: -260px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f43d {
        background-position-x: -280px;
        background-position-y: -180px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f004 {
        background-position-x: -180px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f0cf {
        background-position-x: -200px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f170 {
        background-position-x: -220px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f171 {
        background-position-x: -240px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f17e {
        background-position-x: -260px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f17f {
        background-position-x: -280px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f18e {
        background-position-x: -300px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f191 {
        background-position-x: -320px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f192 {
        background-position-x: -340px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f193 {
        background-position-x: -360px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f194 {
        background-position-x: -380px;
        background-position-y: -300px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f195 {
        background-position-x: 0;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f196 {
        background-position-x: -20px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f197 {
        background-position-x: -40px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f198 {
        background-position-x: -60px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f199 {
        background-position-x: -80px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f19a {
        background-position-x: -100px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f201 {
        background-position-x: -120px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f202 {
        background-position-x: -140px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f21a {
        background-position-x: -160px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f22f {
        background-position-x: -180px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f232 {
        background-position-x: -200px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f233 {
        background-position-x: -220px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f234 {
        background-position-x: -240px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f235 {
        background-position-x: -260px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f236 {
        background-position-x: -280px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f237 {
        background-position-x: -300px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f238 {
        background-position-x: -320px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f239 {
        background-position-x: -340px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f23a {
        background-position-x: -360px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f250 {
        background-position-x: -380px;
        background-position-y: -320px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f251 {
        background-position-x: 0;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f300 {
        background-position-x: -20px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f301 {
        background-position-x: -40px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f302 {
        background-position-x: -60px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f303 {
        background-position-x: -80px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f304 {
        background-position-x: -100px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f305 {
        background-position-x: -120px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f306 {
        background-position-x: -140px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f307 {
        background-position-x: -160px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f308 {
        background-position-x: -180px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f309 {
        background-position-x: -200px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f30a {
        background-position-x: -220px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f30b {
        background-position-x: -240px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f30c {
        background-position-x: -260px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f30d {
        background-position-x: -280px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f30e {
        background-position-x: -300px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f30f {
        background-position-x: -320px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f310 {
        background-position-x: -340px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f311 {
        background-position-x: -360px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f312 {
        background-position-x: -380px;
        background-position-y: -340px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f313 {
        background-position-x: 0;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f314 {
        background-position-x: -20px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f315 {
        background-position-x: -40px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f316 {
        background-position-x: -60px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f317 {
        background-position-x: -80px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f318 {
        background-position-x: -100px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f319 {
        background-position-x: -120px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f31a {
        background-position-x: -140px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f31b {
        background-position-x: -160px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f31c {
        background-position-x: -180px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f31d {
        background-position-x: -200px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f31e {
        background-position-x: -220px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f31f {
        background-position-x: -240px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f320 {
        background-position-x: -260px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f330 {
        background-position-x: -280px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f331 {
        background-position-x: -300px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f332 {
        background-position-x: -320px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f333 {
        background-position-x: -340px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f334 {
        background-position-x: -360px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f335 {
        background-position-x: -380px;
        background-position-y: -360px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f337 {
        background-position-x: 0;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f338 {
        background-position-x: -20px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f339 {
        background-position-x: -40px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f33a {
        background-position-x: -60px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f33b {
        background-position-x: -80px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f33c {
        background-position-x: -100px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f33d {
        background-position-x: -120px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f33e {
        background-position-x: -140px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f33f {
        background-position-x: -160px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f340 {
        background-position-x: -180px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f341 {
        background-position-x: -200px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f342 {
        background-position-x: -220px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f343 {
        background-position-x: -240px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f344 {
        background-position-x: -260px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f345 {
        background-position-x: -280px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f346 {
        background-position-x: -300px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f347 {
        background-position-x: -320px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f348 {
        background-position-x: -340px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f349 {
        background-position-x: -360px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f34a {
        background-position-x: -380px;
        background-position-y: -380px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f34b {
        background-position-x: 0;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f34c {
        background-position-x: -20px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f34d {
        background-position-x: -40px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f34e {
        background-position-x: -60px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f34f {
        background-position-x: -80px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f350 {
        background-position-x: -100px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f351 {
        background-position-x: -120px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f352 {
        background-position-x: -140px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f353 {
        background-position-x: -160px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f354 {
        background-position-x: -180px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f355 {
        background-position-x: -200px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f356 {
        background-position-x: -220px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f357 {
        background-position-x: -240px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f358 {
        background-position-x: -260px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f359 {
        background-position-x: -280px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f35a {
        background-position-x: -300px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f35b {
        background-position-x: -320px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f35c {
        background-position-x: -340px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f35d {
        background-position-x: -360px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f35e {
        background-position-x: -380px;
        background-position-y: -400px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f35f {
        background-position-x: 0;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f360 {
        background-position-x: -20px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f361 {
        background-position-x: -40px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f362 {
        background-position-x: -60px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f363 {
        background-position-x: -80px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f364 {
        background-position-x: -100px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f365 {
        background-position-x: -120px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f366 {
        background-position-x: -140px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f367 {
        background-position-x: -160px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f368 {
        background-position-x: -180px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f369 {
        background-position-x: -200px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f36a {
        background-position-x: -220px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f36b {
        background-position-x: -240px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f36c {
        background-position-x: -260px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f36d {
        background-position-x: -280px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f36e {
        background-position-x: -300px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f36f {
        background-position-x: -320px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f370 {
        background-position-x: -340px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f371 {
        background-position-x: -360px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f372 {
        background-position-x: -380px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f373 {
        background-position-x: 0;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f374 {
        background-position-x: -20px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f375 {
        background-position-x: -40px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f376 {
        background-position-x: -60px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f377 {
        background-position-x: -80px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f378 {
        background-position-x: -100px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f379 {
        background-position-x: -120px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f37a {
        background-position-x: -140px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f37b {
        background-position-x: -160px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f37c {
        background-position-x: -180px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f380 {
        background-position-x: -200px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f381 {
        background-position-x: -220px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f382 {
        background-position-x: -240px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f383 {
        background-position-x: -260px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f384 {
        background-position-x: -280px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f385 {
        background-position-x: -300px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f386 {
        background-position-x: -320px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f387 {
        background-position-x: -340px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f388 {
        background-position-x: -360px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f389 {
        background-position-x: -380px;
        background-position-y: -440px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f38a {
        background-position-x: 0;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f38b {
        background-position-x: -20px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f38c {
        background-position-x: -40px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f38d {
        background-position-x: -60px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f38e {
        background-position-x: -80px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f38f {
        background-position-x: -100px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f390 {
        background-position-x: -120px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f391 {
        background-position-x: -140px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f392 {
        background-position-x: -160px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f393 {
        background-position-x: -180px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a0 {
        background-position-x: -200px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a1 {
        background-position-x: -220px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a2 {
        background-position-x: -240px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a3 {
        background-position-x: -260px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a4 {
        background-position-x: -280px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a5 {
        background-position-x: -300px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a6 {
        background-position-x: -320px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a7 {
        background-position-x: -340px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a8 {
        background-position-x: -360px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3a9 {
        background-position-x: -380px;
        background-position-y: -460px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3aa {
        background-position-x: 0;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ab {
        background-position-x: -20px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ac {
        background-position-x: -40px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ad {
        background-position-x: -60px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ae {
        background-position-x: -80px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3af {
        background-position-x: -100px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b0 {
        background-position-x: -120px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b1 {
        background-position-x: -140px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b2 {
        background-position-x: -160px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b3 {
        background-position-x: -180px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b4 {
        background-position-x: -200px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b5 {
        background-position-x: -220px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b6 {
        background-position-x: -240px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b7 {
        background-position-x: -260px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b8 {
        background-position-x: -280px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3b9 {
        background-position-x: -300px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ba {
        background-position-x: -320px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3bb {
        background-position-x: -340px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3bc {
        background-position-x: -360px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3bd {
        background-position-x: -380px;
        background-position-y: -480px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3be {
        background-position-x: 0;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3bf {
        background-position-x: -20px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c0 {
        background-position-x: -40px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c1 {
        background-position-x: -60px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c2 {
        background-position-x: -80px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c3 {
        background-position-x: -100px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c4 {
        background-position-x: -120px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c6 {
        background-position-x: -140px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c7 {
        background-position-x: -160px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c8 {
        background-position-x: -180px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3c9 {
        background-position-x: -200px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ca {
        background-position-x: -220px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e0 {
        background-position-x: -240px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e1 {
        background-position-x: -260px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e2 {
        background-position-x: -280px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e3 {
        background-position-x: -300px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e4 {
        background-position-x: -320px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e5 {
        background-position-x: -340px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e6 {
        background-position-x: -360px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e7 {
        background-position-x: -380px;
        background-position-y: -500px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e8 {
        background-position-x: 0;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3e9 {
        background-position-x: -20px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ea {
        background-position-x: -40px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3eb {
        background-position-x: -60px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ec {
        background-position-x: -80px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ed {
        background-position-x: -100px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ee {
        background-position-x: -120px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3ef {
        background-position-x: -140px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f3f0 {
        background-position-x: -160px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f43e {
        background-position-x: -180px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f440 {
        background-position-x: -200px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f442 {
        background-position-x: -220px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f443 {
        background-position-x: -240px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f444 {
        background-position-x: -260px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f445 {
        background-position-x: -280px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f446 {
        background-position-x: -300px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f447 {
        background-position-x: -320px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f448 {
        background-position-x: -340px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f449 {
        background-position-x: -360px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f44a {
        background-position-x: -380px;
        background-position-y: -520px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f44b {
        background-position-x: 0;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f44c {
        background-position-x: -20px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f44d {
        background-position-x: -40px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f44e {
        background-position-x: -60px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f44f {
        background-position-x: -80px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f450 {
        background-position-x: -100px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f451 {
        background-position-x: -120px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f452 {
        background-position-x: -140px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f453 {
        background-position-x: -160px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f454 {
        background-position-x: -180px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f455 {
        background-position-x: -200px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f456 {
        background-position-x: -220px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f457 {
        background-position-x: -240px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f458 {
        background-position-x: -260px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f459 {
        background-position-x: -280px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f45a {
        background-position-x: -300px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f45b {
        background-position-x: -320px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f45c {
        background-position-x: -340px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f45d {
        background-position-x: -360px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f45e {
        background-position-x: -380px;
        background-position-y: -540px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f45f {
        background-position-x: 0;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f460 {
        background-position-x: -20px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f461 {
        background-position-x: -40px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f462 {
        background-position-x: -60px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f463 {
        background-position-x: -80px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f464 {
        background-position-x: -100px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f465 {
        background-position-x: -120px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a0 {
        background-position-x: -140px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a1 {
        background-position-x: -160px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a2 {
        background-position-x: -180px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a3 {
        background-position-x: -200px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a4 {
        background-position-x: -220px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a5 {
        background-position-x: -240px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a6 {
        background-position-x: -260px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a7 {
        background-position-x: -280px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a8 {
        background-position-x: -300px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4a9 {
        background-position-x: -320px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4aa {
        background-position-x: -340px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ab {
        background-position-x: -360px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ac {
        background-position-x: -380px;
        background-position-y: -560px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ad {
        background-position-x: 0;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ae {
        background-position-x: -20px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b0 {
        background-position-x: -40px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b1 {
        background-position-x: -60px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b2 {
        background-position-x: -80px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b3 {
        background-position-x: -100px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b4 {
        background-position-x: -120px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b5 {
        background-position-x: -140px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b6 {
        background-position-x: -160px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b7 {
        background-position-x: -180px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b8 {
        background-position-x: -200px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4b9 {
        background-position-x: -220px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ba {
        background-position-x: -240px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4bb {
        background-position-x: -260px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4bc {
        background-position-x: -280px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4bd {
        background-position-x: -300px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4be {
        background-position-x: -320px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4bf {
        background-position-x: -340px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c0 {
        background-position-x: -360px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c1 {
        background-position-x: -380px;
        background-position-y: -580px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c2 {
        background-position-x: 0;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c3 {
        background-position-x: -20px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c4 {
        background-position-x: -40px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c5 {
        background-position-x: -60px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c6 {
        background-position-x: -80px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c7 {
        background-position-x: -100px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c8 {
        background-position-x: -120px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4c9 {
        background-position-x: -140px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ca {
        background-position-x: -160px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4cb {
        background-position-x: -180px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4cc {
        background-position-x: -200px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4cd {
        background-position-x: -220px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ce {
        background-position-x: -240px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4cf {
        background-position-x: -260px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d0 {
        background-position-x: -280px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d1 {
        background-position-x: -300px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d2 {
        background-position-x: -320px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d3 {
        background-position-x: -340px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d4 {
        background-position-x: -360px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d5 {
        background-position-x: -380px;
        background-position-y: -600px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d6 {
        background-position-x: 0;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d7 {
        background-position-x: -20px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d8 {
        background-position-x: -40px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4d9 {
        background-position-x: -60px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4da {
        background-position-x: -80px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4db {
        background-position-x: -100px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4dc {
        background-position-x: -120px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4dd {
        background-position-x: -140px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4de {
        background-position-x: -160px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4df {
        background-position-x: -180px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e0 {
        background-position-x: -200px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e1 {
        background-position-x: -220px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e2 {
        background-position-x: -240px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e3 {
        background-position-x: -260px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e4 {
        background-position-x: -280px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e5 {
        background-position-x: -300px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e6 {
        background-position-x: -320px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e7 {
        background-position-x: -340px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e8 {
        background-position-x: -360px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4e9 {
        background-position-x: -380px;
        background-position-y: -620px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ea {
        background-position-x: 0;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4eb {
        background-position-x: -20px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ec {
        background-position-x: -40px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ed {
        background-position-x: -60px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ee {
        background-position-x: -80px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4ef {
        background-position-x: -100px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f0 {
        background-position-x: -120px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f1 {
        background-position-x: -140px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f2 {
        background-position-x: -160px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f3 {
        background-position-x: -180px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f4 {
        background-position-x: -200px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f5 {
        background-position-x: -220px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f6 {
        background-position-x: -240px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f7 {
        background-position-x: -260px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4f9 {
        background-position-x: -280px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4fa {
        background-position-x: -300px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4fb {
        background-position-x: -320px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f4fc {
        background-position-x: -340px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f500 {
        background-position-x: -360px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f501 {
        background-position-x: -380px;
        background-position-y: -640px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f502 {
        background-position-x: 0;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f503 {
        background-position-x: -20px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f504 {
        background-position-x: -40px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f505 {
        background-position-x: -60px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f506 {
        background-position-x: -80px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f507 {
        background-position-x: -100px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f508 {
        background-position-x: -120px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f509 {
        background-position-x: -140px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f50a {
        background-position-x: -160px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f50b {
        background-position-x: -180px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f50c {
        background-position-x: -200px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f50d {
        background-position-x: -220px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f50e {
        background-position-x: -240px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f50f {
        background-position-x: -260px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f510 {
        background-position-x: -280px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f511 {
        background-position-x: -300px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f512 {
        background-position-x: -320px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f513 {
        background-position-x: -340px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f514 {
        background-position-x: -360px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f515 {
        background-position-x: -380px;
        background-position-y: -660px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f516 {
        background-position-x: 0;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f517 {
        background-position-x: -20px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f518 {
        background-position-x: -40px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f519 {
        background-position-x: -60px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f51a {
        background-position-x: -80px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f51b {
        background-position-x: -100px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f51c {
        background-position-x: -120px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f51d {
        background-position-x: -140px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f51e {
        background-position-x: -160px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f51f {
        background-position-x: -180px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f520 {
        background-position-x: -200px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f521 {
        background-position-x: -220px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f523 {
        background-position-x: -240px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f524 {
        background-position-x: -260px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f525 {
        background-position-x: -280px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f526 {
        background-position-x: -300px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f527 {
        background-position-x: -320px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f528 {
        background-position-x: -340px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f529 {
        background-position-x: -360px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f52a {
        background-position-x: -380px;
        background-position-y: -680px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f52b {
        background-position-x: 0;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f52c {
        background-position-x: -20px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f52d {
        background-position-x: -40px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f52e {
        background-position-x: -60px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f52f {
        background-position-x: -80px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f530 {
        background-position-x: -100px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f531 {
        background-position-x: -120px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f532 {
        background-position-x: -140px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f533 {
        background-position-x: -160px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f534 {
        background-position-x: -180px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f535 {
        background-position-x: -200px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f536 {
        background-position-x: -220px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f537 {
        background-position-x: -240px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f538 {
        background-position-x: -260px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f539 {
        background-position-x: -280px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f53a {
        background-position-x: -300px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f53b {
        background-position-x: -320px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f53c {
        background-position-x: -340px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f53d {
        background-position-x: -360px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f550 {
        background-position-x: -380px;
        background-position-y: -700px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f551 {
        background-position-x: 0;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f552 {
        background-position-x: -20px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f553 {
        background-position-x: -40px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f554 {
        background-position-x: -60px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f555 {
        background-position-x: -80px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f556 {
        background-position-x: -100px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f557 {
        background-position-x: -120px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f558 {
        background-position-x: -140px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f559 {
        background-position-x: -160px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f55a {
        background-position-x: -180px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f55b {
        background-position-x: -200px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f55c {
        background-position-x: -220px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f55d {
        background-position-x: -240px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f55e {
        background-position-x: -260px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f55f {
        background-position-x: -280px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f560 {
        background-position-x: -300px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f561 {
        background-position-x: -320px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f562 {
        background-position-x: -340px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f563 {
        background-position-x: -360px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f564 {
        background-position-x: -380px;
        background-position-y: -720px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f565 {
        background-position-x: 0;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f566 {
        background-position-x: -20px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f567 {
        background-position-x: -40px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f5fb {
        background-position-x: -60px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f5fc {
        background-position-x: -80px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f5fd {
        background-position-x: -100px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f5fe {
        background-position-x: -120px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f5ff {
        background-position-x: -140px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f680 {
        background-position-x: -160px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f681 {
        background-position-x: -180px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f682 {
        background-position-x: -200px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f683 {
        background-position-x: -220px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f684 {
        background-position-x: -240px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f685 {
        background-position-x: -260px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f686 {
        background-position-x: -280px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f687 {
        background-position-x: -300px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f688 {
        background-position-x: -320px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f689 {
        background-position-x: -340px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f68a {
        background-position-x: -360px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f68b {
        background-position-x: -380px;
        background-position-y: -740px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f68c {
        background-position-x: 0;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f68d {
        background-position-x: -20px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f68e {
        background-position-x: -40px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f68f {
        background-position-x: -60px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f690 {
        background-position-x: -80px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f691 {
        background-position-x: -100px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f692 {
        background-position-x: -120px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f693 {
        background-position-x: -140px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f694 {
        background-position-x: -160px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f695 {
        background-position-x: -180px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f696 {
        background-position-x: -200px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f697 {
        background-position-x: -220px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f698 {
        background-position-x: -240px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f699 {
        background-position-x: -260px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f69a {
        background-position-x: -280px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f69b {
        background-position-x: -300px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f69c {
        background-position-x: -320px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f69d {
        background-position-x: -340px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f69e {
        background-position-x: -360px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f69f {
        background-position-x: -380px;
        background-position-y: -760px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a0 {
        background-position-x: 0;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a1 {
        background-position-x: -20px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a2 {
        background-position-x: -40px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a3 {
        background-position-x: -60px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a4 {
        background-position-x: -80px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a5 {
        background-position-x: -100px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a6 {
        background-position-x: -120px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a7 {
        background-position-x: -140px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a8 {
        background-position-x: -160px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6a9 {
        background-position-x: -180px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6aa {
        background-position-x: -200px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6ab {
        background-position-x: -220px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6ac {
        background-position-x: -240px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6ad {
        background-position-x: -260px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6ae {
        background-position-x: -280px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6af {
        background-position-x: -300px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b0 {
        background-position-x: -320px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b1 {
        background-position-x: -340px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b2 {
        background-position-x: -360px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b3 {
        background-position-x: -380px;
        background-position-y: -780px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b4 {
        background-position-x: 0;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b5 {
        background-position-x: -20px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b6 {
        background-position-x: -40px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b7 {
        background-position-x: -60px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b8 {
        background-position-x: -80px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6b9 {
        background-position-x: -100px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6ba {
        background-position-x: -120px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6bb {
        background-position-x: -140px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6bc {
        background-position-x: -160px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6bd {
        background-position-x: -180px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6be {
        background-position-x: -200px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6bf {
        background-position-x: -220px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6c0 {
        background-position-x: -240px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6c1 {
        background-position-x: -260px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6c2 {
        background-position-x: -280px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6c3 {
        background-position-x: -300px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6c4 {
        background-position-x: -320px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f6c5 {
        background-position-x: -340px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji-1f483 {
        background-position-x: -380px;
        background-position-y: -800px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f600 {
        background-position-x: 0;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f601 {
        background-position-x: -21px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f602 {
        background-position-x: -42px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f603 {
        background-position-x: -63px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f604 {
        background-position-x: -84px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f605 {
        background-position-x: -105px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f606 {
        background-position-x: -126px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f607 {
        background-position-x: -147px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f608 {
        background-position-x: -168px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f609 {
        background-position-x: -189px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f60a {
        background-position-x: -210px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f60b {
        background-position-x: -231px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f60c {
        background-position-x: -252px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f60d {
        background-position-x: -273px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f60e {
        background-position-x: -294px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f60f {
        background-position-x: -315px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f610 {
        background-position-x: -336px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f611 {
        background-position-x: -357px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f612 {
        background-position-x: -378px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f613 {
        background-position-x: -399px;
        background-position-y: 0
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f614 {
        background-position-x: 0;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f615 {
        background-position-x: -21px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f616 {
        background-position-x: -42px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f617 {
        background-position-x: -63px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f618 {
        background-position-x: -84px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f619 {
        background-position-x: -105px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f61a {
        background-position-x: -126px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f61b {
        background-position-x: -147px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f61c {
        background-position-x: -168px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f61d {
        background-position-x: -189px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f61f {
        background-position-x: -210px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f620 {
        background-position-x: -231px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f621 {
        background-position-x: -252px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f622 {
        background-position-x: -273px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f623 {
        background-position-x: -294px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f624 {
        background-position-x: -315px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f625 {
        background-position-x: -336px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f626 {
        background-position-x: -357px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f627 {
        background-position-x: -378px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f628 {
        background-position-x: -399px;
        background-position-y: -21px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f629 {
        background-position-x: 0;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f62a {
        background-position-x: -21px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f62b {
        background-position-x: -42px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f62c {
        background-position-x: -63px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f62d {
        background-position-x: -84px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f62e {
        background-position-x: -105px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f62f {
        background-position-x: -126px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f630 {
        background-position-x: -147px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f631 {
        background-position-x: -168px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f632 {
        background-position-x: -189px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f633 {
        background-position-x: -210px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f634 {
        background-position-x: -231px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f635 {
        background-position-x: -252px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f636 {
        background-position-x: -273px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f637 {
        background-position-x: -294px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f638 {
        background-position-x: -315px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f639 {
        background-position-x: -336px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f63a {
        background-position-x: -357px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f63b {
        background-position-x: -378px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f63c {
        background-position-x: -399px;
        background-position-y: -42px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f63d {
        background-position-x: 0;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f63e {
        background-position-x: -21px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f63f {
        background-position-x: -42px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f640 {
        background-position-x: -63px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f641 {
        background-position-x: -84px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f645 {
        background-position-x: -105px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f646 {
        background-position-x: -126px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f647 {
        background-position-x: -147px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f648 {
        background-position-x: -168px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f649 {
        background-position-x: -189px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f64a {
        background-position-x: -210px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f64b {
        background-position-x: -231px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f64c {
        background-position-x: -252px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f64d {
        background-position-x: -273px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f64e {
        background-position-x: -294px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f64f {
        background-position-x: -315px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f466 {
        background-position-x: -336px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f467 {
        background-position-x: -357px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f468 {
        background-position-x: -378px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f469 {
        background-position-x: -399px;
        background-position-y: -63px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f46a {
        background-position-x: 0;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f46b {
        background-position-x: -21px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f46c {
        background-position-x: -42px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f46d {
        background-position-x: -63px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f46e {
        background-position-x: -84px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f46f {
        background-position-x: -105px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f470 {
        background-position-x: -126px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f471 {
        background-position-x: -147px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f472 {
        background-position-x: -168px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f473 {
        background-position-x: -189px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f474 {
        background-position-x: -210px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f475 {
        background-position-x: -231px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f476 {
        background-position-x: -252px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f477 {
        background-position-x: -273px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f478 {
        background-position-x: -294px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f479 {
        background-position-x: -315px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f47a {
        background-position-x: -336px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f47b {
        background-position-x: -357px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f47c {
        background-position-x: -378px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f47d {
        background-position-x: -399px;
        background-position-y: -84px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f47e {
        background-position-x: 0;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f47f {
        background-position-x: -21px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f480 {
        background-position-x: -42px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f481 {
        background-position-x: -63px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f482 {
        background-position-x: -84px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f484 {
        background-position-x: -105px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f485 {
        background-position-x: -126px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f486 {
        background-position-x: -147px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f487 {
        background-position-x: -168px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f488 {
        background-position-x: -189px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f489 {
        background-position-x: -210px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f48a {
        background-position-x: -231px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f48b {
        background-position-x: -252px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f48c {
        background-position-x: -273px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f48d {
        background-position-x: -294px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f48e {
        background-position-x: -315px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f48f {
        background-position-x: -336px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f490 {
        background-position-x: -357px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f491 {
        background-position-x: -378px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f492 {
        background-position-x: -399px;
        background-position-y: -105px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f493 {
        background-position-x: 0;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f494 {
        background-position-x: -21px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f495 {
        background-position-x: -42px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f496 {
        background-position-x: -63px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f497 {
        background-position-x: -84px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f498 {
        background-position-x: -105px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f499 {
        background-position-x: -126px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f49a {
        background-position-x: -147px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f49b {
        background-position-x: -168px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f49c {
        background-position-x: -189px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f49d {
        background-position-x: -210px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f49e {
        background-position-x: -231px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f49f {
        background-position-x: -252px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f400 {
        background-position-x: -273px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f401 {
        background-position-x: -294px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f402 {
        background-position-x: -315px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f403 {
        background-position-x: -336px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f404 {
        background-position-x: -357px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f405 {
        background-position-x: -378px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f406 {
        background-position-x: -399px;
        background-position-y: -126px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f407 {
        background-position-x: 0;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f408 {
        background-position-x: -21px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f409 {
        background-position-x: -42px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f40a {
        background-position-x: -63px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f40b {
        background-position-x: -84px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f40c {
        background-position-x: -105px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f40d {
        background-position-x: -126px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f40e {
        background-position-x: -147px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f40f {
        background-position-x: -168px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f410 {
        background-position-x: -189px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f411 {
        background-position-x: -210px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f412 {
        background-position-x: -231px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f413 {
        background-position-x: -252px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f414 {
        background-position-x: -273px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f415 {
        background-position-x: -294px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f416 {
        background-position-x: -315px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f417 {
        background-position-x: -336px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f418 {
        background-position-x: -357px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f419 {
        background-position-x: -378px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f41a {
        background-position-x: -399px;
        background-position-y: -147px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f41b {
        background-position-x: 0;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f41c {
        background-position-x: -21px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f41d {
        background-position-x: -42px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f41e {
        background-position-x: -63px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f41f {
        background-position-x: -84px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f420 {
        background-position-x: -105px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f421 {
        background-position-x: -126px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f422 {
        background-position-x: -147px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f423 {
        background-position-x: -168px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f424 {
        background-position-x: -189px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f425 {
        background-position-x: -210px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f426 {
        background-position-x: -231px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f427 {
        background-position-x: -252px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f428 {
        background-position-x: -273px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f429 {
        background-position-x: -294px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f42a {
        background-position-x: -315px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f42b {
        background-position-x: -336px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f42c {
        background-position-x: -357px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f42d {
        background-position-x: -378px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f42e {
        background-position-x: -399px;
        background-position-y: -168px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f42f {
        background-position-x: 0;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f430 {
        background-position-x: -21px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f431 {
        background-position-x: -42px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f432 {
        background-position-x: -63px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f433 {
        background-position-x: -84px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f434 {
        background-position-x: -105px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f435 {
        background-position-x: -126px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f436 {
        background-position-x: -147px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f437 {
        background-position-x: -168px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f438 {
        background-position-x: -189px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f439 {
        background-position-x: -210px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f43a {
        background-position-x: -231px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f43b {
        background-position-x: -252px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f43c {
        background-position-x: -273px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f43d {
        background-position-x: -294px;
        background-position-y: -189px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f004 {
        background-position-x: -189px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f0cf {
        background-position-x: -210px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f170 {
        background-position-x: -231px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f171 {
        background-position-x: -252px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f17e {
        background-position-x: -273px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f17f {
        background-position-x: -294px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f18e {
        background-position-x: -315px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f191 {
        background-position-x: -336px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f192 {
        background-position-x: -357px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f193 {
        background-position-x: -378px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f194 {
        background-position-x: -399px;
        background-position-y: -315px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f195 {
        background-position-x: 0;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f196 {
        background-position-x: -21px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f197 {
        background-position-x: -42px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f198 {
        background-position-x: -63px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f199 {
        background-position-x: -84px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f19a {
        background-position-x: -105px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f201 {
        background-position-x: -126px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f202 {
        background-position-x: -147px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f21a {
        background-position-x: -168px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f22f {
        background-position-x: -189px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f232 {
        background-position-x: -210px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f233 {
        background-position-x: -231px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f234 {
        background-position-x: -252px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f235 {
        background-position-x: -273px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f236 {
        background-position-x: -294px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f237 {
        background-position-x: -315px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f238 {
        background-position-x: -336px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f239 {
        background-position-x: -357px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f23a {
        background-position-x: -378px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f250 {
        background-position-x: -399px;
        background-position-y: -336px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f251 {
        background-position-x: 0;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f300 {
        background-position-x: -21px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f301 {
        background-position-x: -42px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f302 {
        background-position-x: -63px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f303 {
        background-position-x: -84px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f304 {
        background-position-x: -105px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f305 {
        background-position-x: -126px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f306 {
        background-position-x: -147px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f307 {
        background-position-x: -168px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f308 {
        background-position-x: -189px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f309 {
        background-position-x: -210px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f30a {
        background-position-x: -231px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f30b {
        background-position-x: -252px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f30c {
        background-position-x: -273px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f30d {
        background-position-x: -294px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f30e {
        background-position-x: -315px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f30f {
        background-position-x: -336px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f310 {
        background-position-x: -357px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f311 {
        background-position-x: -378px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f312 {
        background-position-x: -399px;
        background-position-y: -357px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f313 {
        background-position-x: 0;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f314 {
        background-position-x: -21px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f315 {
        background-position-x: -42px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f316 {
        background-position-x: -63px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f317 {
        background-position-x: -84px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f318 {
        background-position-x: -105px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f319 {
        background-position-x: -126px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f31a {
        background-position-x: -147px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f31b {
        background-position-x: -168px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f31c {
        background-position-x: -189px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f31d {
        background-position-x: -210px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f31e {
        background-position-x: -231px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f31f {
        background-position-x: -252px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f320 {
        background-position-x: -273px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f330 {
        background-position-x: -294px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f331 {
        background-position-x: -315px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f332 {
        background-position-x: -336px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f333 {
        background-position-x: -357px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f334 {
        background-position-x: -378px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f335 {
        background-position-x: -399px;
        background-position-y: -378px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f337 {
        background-position-x: 0;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f338 {
        background-position-x: -21px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f339 {
        background-position-x: -42px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f33a {
        background-position-x: -63px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f33b {
        background-position-x: -84px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f33c {
        background-position-x: -105px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f33d {
        background-position-x: -126px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f33e {
        background-position-x: -147px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f33f {
        background-position-x: -168px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f340 {
        background-position-x: -189px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f341 {
        background-position-x: -210px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f342 {
        background-position-x: -231px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f343 {
        background-position-x: -252px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f344 {
        background-position-x: -273px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f345 {
        background-position-x: -294px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f346 {
        background-position-x: -315px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f347 {
        background-position-x: -336px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f348 {
        background-position-x: -357px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f349 {
        background-position-x: -378px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f34a {
        background-position-x: -399px;
        background-position-y: -399px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f34b {
        background-position-x: 0;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f34c {
        background-position-x: -21px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f34d {
        background-position-x: -42px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f34e {
        background-position-x: -63px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f34f {
        background-position-x: -84px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f350 {
        background-position-x: -105px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f351 {
        background-position-x: -126px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f352 {
        background-position-x: -147px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f353 {
        background-position-x: -168px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f354 {
        background-position-x: -189px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f355 {
        background-position-x: -210px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f356 {
        background-position-x: -231px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f357 {
        background-position-x: -252px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f358 {
        background-position-x: -273px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f359 {
        background-position-x: -294px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f35a {
        background-position-x: -315px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f35b {
        background-position-x: -336px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f35c {
        background-position-x: -357px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f35d {
        background-position-x: -378px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f35e {
        background-position-x: -399px;
        background-position-y: -420px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f35f {
        background-position-x: 0;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f360 {
        background-position-x: -21px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f361 {
        background-position-x: -42px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f362 {
        background-position-x: -63px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f363 {
        background-position-x: -84px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f364 {
        background-position-x: -105px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f365 {
        background-position-x: -126px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f366 {
        background-position-x: -147px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f367 {
        background-position-x: -168px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f368 {
        background-position-x: -189px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f369 {
        background-position-x: -210px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f36a {
        background-position-x: -231px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f36b {
        background-position-x: -252px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f36c {
        background-position-x: -273px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f36d {
        background-position-x: -294px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f36e {
        background-position-x: -315px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f36f {
        background-position-x: -336px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f370 {
        background-position-x: -357px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f371 {
        background-position-x: -378px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f372 {
        background-position-x: -399px;
        background-position-y: -441px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f373 {
        background-position-x: 0;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f374 {
        background-position-x: -21px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f375 {
        background-position-x: -42px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f376 {
        background-position-x: -63px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f377 {
        background-position-x: -84px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f378 {
        background-position-x: -105px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f379 {
        background-position-x: -126px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f37a {
        background-position-x: -147px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f37b {
        background-position-x: -168px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f37c {
        background-position-x: -189px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f380 {
        background-position-x: -210px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f381 {
        background-position-x: -231px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f382 {
        background-position-x: -252px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f383 {
        background-position-x: -273px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f384 {
        background-position-x: -294px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f385 {
        background-position-x: -315px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f386 {
        background-position-x: -336px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f387 {
        background-position-x: -357px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f388 {
        background-position-x: -378px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f389 {
        background-position-x: -399px;
        background-position-y: -462px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f38a {
        background-position-x: 0;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f38b {
        background-position-x: -21px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f38c {
        background-position-x: -42px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f38d {
        background-position-x: -63px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f38e {
        background-position-x: -84px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f38f {
        background-position-x: -105px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f390 {
        background-position-x: -126px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f391 {
        background-position-x: -147px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f392 {
        background-position-x: -168px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f393 {
        background-position-x: -189px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a0 {
        background-position-x: -210px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a1 {
        background-position-x: -231px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a2 {
        background-position-x: -252px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a3 {
        background-position-x: -273px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a4 {
        background-position-x: -294px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a5 {
        background-position-x: -315px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a6 {
        background-position-x: -336px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a7 {
        background-position-x: -357px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a8 {
        background-position-x: -378px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3a9 {
        background-position-x: -399px;
        background-position-y: -483px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3aa {
        background-position-x: 0;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ab {
        background-position-x: -21px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ac {
        background-position-x: -42px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ad {
        background-position-x: -63px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ae {
        background-position-x: -84px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3af {
        background-position-x: -105px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b0 {
        background-position-x: -126px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b1 {
        background-position-x: -147px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b2 {
        background-position-x: -168px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b3 {
        background-position-x: -189px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b4 {
        background-position-x: -210px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b5 {
        background-position-x: -231px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b6 {
        background-position-x: -252px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b7 {
        background-position-x: -273px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b8 {
        background-position-x: -294px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3b9 {
        background-position-x: -315px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ba {
        background-position-x: -336px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3bb {
        background-position-x: -357px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3bc {
        background-position-x: -378px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3bd {
        background-position-x: -399px;
        background-position-y: -504px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3be {
        background-position-x: 0;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3bf {
        background-position-x: -21px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c0 {
        background-position-x: -42px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c1 {
        background-position-x: -63px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c2 {
        background-position-x: -84px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c3 {
        background-position-x: -105px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c4 {
        background-position-x: -126px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c6 {
        background-position-x: -147px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c7 {
        background-position-x: -168px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c8 {
        background-position-x: -189px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3c9 {
        background-position-x: -210px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ca {
        background-position-x: -231px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e0 {
        background-position-x: -252px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e1 {
        background-position-x: -273px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e2 {
        background-position-x: -294px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e3 {
        background-position-x: -315px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e4 {
        background-position-x: -336px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e5 {
        background-position-x: -357px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e6 {
        background-position-x: -378px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e7 {
        background-position-x: -399px;
        background-position-y: -525px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e8 {
        background-position-x: 0;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3e9 {
        background-position-x: -21px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ea {
        background-position-x: -42px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3eb {
        background-position-x: -63px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ec {
        background-position-x: -84px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ed {
        background-position-x: -105px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ee {
        background-position-x: -126px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3ef {
        background-position-x: -147px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f3f0 {
        background-position-x: -168px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f43e {
        background-position-x: -189px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f440 {
        background-position-x: -210px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f442 {
        background-position-x: -231px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f443 {
        background-position-x: -252px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f444 {
        background-position-x: -273px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f445 {
        background-position-x: -294px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f446 {
        background-position-x: -315px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f447 {
        background-position-x: -336px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f448 {
        background-position-x: -357px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f449 {
        background-position-x: -378px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f44a {
        background-position-x: -399px;
        background-position-y: -546px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f44b {
        background-position-x: 0;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f44c {
        background-position-x: -21px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f44d {
        background-position-x: -42px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f44e {
        background-position-x: -63px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f44f {
        background-position-x: -84px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f450 {
        background-position-x: -105px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f451 {
        background-position-x: -126px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f452 {
        background-position-x: -147px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f453 {
        background-position-x: -168px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f454 {
        background-position-x: -189px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f455 {
        background-position-x: -210px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f456 {
        background-position-x: -231px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f457 {
        background-position-x: -252px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f458 {
        background-position-x: -273px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f459 {
        background-position-x: -294px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f45a {
        background-position-x: -315px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f45b {
        background-position-x: -336px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f45c {
        background-position-x: -357px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f45d {
        background-position-x: -378px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f45e {
        background-position-x: -399px;
        background-position-y: -567px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f45f {
        background-position-x: 0;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f460 {
        background-position-x: -21px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f461 {
        background-position-x: -42px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f462 {
        background-position-x: -63px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f463 {
        background-position-x: -84px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f464 {
        background-position-x: -105px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f465 {
        background-position-x: -126px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a0 {
        background-position-x: -147px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a1 {
        background-position-x: -168px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a2 {
        background-position-x: -189px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a3 {
        background-position-x: -210px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a4 {
        background-position-x: -231px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a5 {
        background-position-x: -252px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a6 {
        background-position-x: -273px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a7 {
        background-position-x: -294px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a8 {
        background-position-x: -315px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4a9 {
        background-position-x: -336px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4aa {
        background-position-x: -357px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ab {
        background-position-x: -378px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ac {
        background-position-x: -399px;
        background-position-y: -588px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ad {
        background-position-x: 0;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ae {
        background-position-x: -21px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b0 {
        background-position-x: -42px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b1 {
        background-position-x: -63px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b2 {
        background-position-x: -84px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b3 {
        background-position-x: -105px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b4 {
        background-position-x: -126px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b5 {
        background-position-x: -147px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b6 {
        background-position-x: -168px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b7 {
        background-position-x: -189px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b8 {
        background-position-x: -210px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4b9 {
        background-position-x: -231px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ba {
        background-position-x: -252px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4bb {
        background-position-x: -273px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4bc {
        background-position-x: -294px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4bd {
        background-position-x: -315px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4be {
        background-position-x: -336px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4bf {
        background-position-x: -357px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c0 {
        background-position-x: -378px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c1 {
        background-position-x: -399px;
        background-position-y: -609px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c2 {
        background-position-x: 0;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c3 {
        background-position-x: -21px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c4 {
        background-position-x: -42px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c5 {
        background-position-x: -63px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c6 {
        background-position-x: -84px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c7 {
        background-position-x: -105px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c8 {
        background-position-x: -126px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4c9 {
        background-position-x: -147px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ca {
        background-position-x: -168px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4cb {
        background-position-x: -189px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4cc {
        background-position-x: -210px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4cd {
        background-position-x: -231px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ce {
        background-position-x: -252px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4cf {
        background-position-x: -273px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d0 {
        background-position-x: -294px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d1 {
        background-position-x: -315px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d2 {
        background-position-x: -336px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d3 {
        background-position-x: -357px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d4 {
        background-position-x: -378px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d5 {
        background-position-x: -399px;
        background-position-y: -630px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d6 {
        background-position-x: 0;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d7 {
        background-position-x: -21px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d8 {
        background-position-x: -42px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4d9 {
        background-position-x: -63px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4da {
        background-position-x: -84px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4db {
        background-position-x: -105px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4dc {
        background-position-x: -126px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4dd {
        background-position-x: -147px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4de {
        background-position-x: -168px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4df {
        background-position-x: -189px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e0 {
        background-position-x: -210px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e1 {
        background-position-x: -231px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e2 {
        background-position-x: -252px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e3 {
        background-position-x: -273px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e4 {
        background-position-x: -294px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e5 {
        background-position-x: -315px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e6 {
        background-position-x: -336px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e7 {
        background-position-x: -357px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e8 {
        background-position-x: -378px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4e9 {
        background-position-x: -399px;
        background-position-y: -651px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ea {
        background-position-x: 0;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4eb {
        background-position-x: -21px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ec {
        background-position-x: -42px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ed {
        background-position-x: -63px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ee {
        background-position-x: -84px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4ef {
        background-position-x: -105px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f0 {
        background-position-x: -126px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f1 {
        background-position-x: -147px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f2 {
        background-position-x: -168px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f3 {
        background-position-x: -189px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f4 {
        background-position-x: -210px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f5 {
        background-position-x: -231px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f6 {
        background-position-x: -252px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f7 {
        background-position-x: -273px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4f9 {
        background-position-x: -294px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4fa {
        background-position-x: -315px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4fb {
        background-position-x: -336px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f4fc {
        background-position-x: -357px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f500 {
        background-position-x: -378px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f501 {
        background-position-x: -399px;
        background-position-y: -672px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f502 {
        background-position-x: 0;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f503 {
        background-position-x: -21px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f504 {
        background-position-x: -42px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f505 {
        background-position-x: -63px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f506 {
        background-position-x: -84px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f507 {
        background-position-x: -105px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f508 {
        background-position-x: -126px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f509 {
        background-position-x: -147px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f50a {
        background-position-x: -168px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f50b {
        background-position-x: -189px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f50c {
        background-position-x: -210px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f50d {
        background-position-x: -231px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f50e {
        background-position-x: -252px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f50f {
        background-position-x: -273px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f510 {
        background-position-x: -294px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f511 {
        background-position-x: -315px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f512 {
        background-position-x: -336px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f513 {
        background-position-x: -357px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f514 {
        background-position-x: -378px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f515 {
        background-position-x: -399px;
        background-position-y: -693px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f516 {
        background-position-x: 0;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f517 {
        background-position-x: -21px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f518 {
        background-position-x: -42px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f519 {
        background-position-x: -63px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f51a {
        background-position-x: -84px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f51b {
        background-position-x: -105px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f51c {
        background-position-x: -126px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f51d {
        background-position-x: -147px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f51e {
        background-position-x: -168px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f51f {
        background-position-x: -189px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f520 {
        background-position-x: -210px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f521 {
        background-position-x: -231px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f523 {
        background-position-x: -252px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f524 {
        background-position-x: -273px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f525 {
        background-position-x: -294px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f526 {
        background-position-x: -315px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f527 {
        background-position-x: -336px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f528 {
        background-position-x: -357px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f529 {
        background-position-x: -378px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f52a {
        background-position-x: -399px;
        background-position-y: -714px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f52b {
        background-position-x: 0;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f52c {
        background-position-x: -21px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f52d {
        background-position-x: -42px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f52e {
        background-position-x: -63px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f52f {
        background-position-x: -84px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f530 {
        background-position-x: -105px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f531 {
        background-position-x: -126px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f532 {
        background-position-x: -147px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f533 {
        background-position-x: -168px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f534 {
        background-position-x: -189px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f535 {
        background-position-x: -210px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f536 {
        background-position-x: -231px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f537 {
        background-position-x: -252px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f538 {
        background-position-x: -273px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f539 {
        background-position-x: -294px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f53a {
        background-position-x: -315px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f53b {
        background-position-x: -336px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f53c {
        background-position-x: -357px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f53d {
        background-position-x: -378px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f550 {
        background-position-x: -399px;
        background-position-y: -735px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f551 {
        background-position-x: 0;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f552 {
        background-position-x: -21px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f553 {
        background-position-x: -42px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f554 {
        background-position-x: -63px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f555 {
        background-position-x: -84px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f556 {
        background-position-x: -105px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f557 {
        background-position-x: -126px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f558 {
        background-position-x: -147px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f559 {
        background-position-x: -168px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f55a {
        background-position-x: -189px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f55b {
        background-position-x: -210px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f55c {
        background-position-x: -231px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f55d {
        background-position-x: -252px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f55e {
        background-position-x: -273px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f55f {
        background-position-x: -294px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f560 {
        background-position-x: -315px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f561 {
        background-position-x: -336px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f562 {
        background-position-x: -357px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f563 {
        background-position-x: -378px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f564 {
        background-position-x: -399px;
        background-position-y: -756px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f565 {
        background-position-x: 0;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f566 {
        background-position-x: -21px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f567 {
        background-position-x: -42px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f5fb {
        background-position-x: -63px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f5fc {
        background-position-x: -84px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f5fd {
        background-position-x: -105px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f5fe {
        background-position-x: -126px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f5ff {
        background-position-x: -147px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f680 {
        background-position-x: -168px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f681 {
        background-position-x: -189px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f682 {
        background-position-x: -210px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f683 {
        background-position-x: -231px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f684 {
        background-position-x: -252px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f685 {
        background-position-x: -273px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f686 {
        background-position-x: -294px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f687 {
        background-position-x: -315px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f688 {
        background-position-x: -336px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f689 {
        background-position-x: -357px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f68a {
        background-position-x: -378px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f68b {
        background-position-x: -399px;
        background-position-y: -777px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f68c {
        background-position-x: 0;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f68d {
        background-position-x: -21px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f68e {
        background-position-x: -42px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f68f {
        background-position-x: -63px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f690 {
        background-position-x: -84px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f691 {
        background-position-x: -105px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f692 {
        background-position-x: -126px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f693 {
        background-position-x: -147px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f694 {
        background-position-x: -168px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f695 {
        background-position-x: -189px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f696 {
        background-position-x: -210px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f697 {
        background-position-x: -231px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f698 {
        background-position-x: -252px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f699 {
        background-position-x: -273px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f69a {
        background-position-x: -294px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f69b {
        background-position-x: -315px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f69c {
        background-position-x: -336px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f69d {
        background-position-x: -357px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f69e {
        background-position-x: -378px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f69f {
        background-position-x: -399px;
        background-position-y: -798px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a0 {
        background-position-x: 0;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a1 {
        background-position-x: -21px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a2 {
        background-position-x: -42px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a3 {
        background-position-x: -63px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a4 {
        background-position-x: -84px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a5 {
        background-position-x: -105px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a6 {
        background-position-x: -126px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a7 {
        background-position-x: -147px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a8 {
        background-position-x: -168px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6a9 {
        background-position-x: -189px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6aa {
        background-position-x: -210px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6ab {
        background-position-x: -231px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6ac {
        background-position-x: -252px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6ad {
        background-position-x: -273px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6ae {
        background-position-x: -294px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6af {
        background-position-x: -315px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b0 {
        background-position-x: -336px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b1 {
        background-position-x: -357px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b2 {
        background-position-x: -378px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b3 {
        background-position-x: -399px;
        background-position-y: -819px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b4 {
        background-position-x: 0;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b5 {
        background-position-x: -21px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b6 {
        background-position-x: -42px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b7 {
        background-position-x: -63px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b8 {
        background-position-x: -84px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6b9 {
        background-position-x: -105px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6ba {
        background-position-x: -126px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6bb {
        background-position-x: -147px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6bc {
        background-position-x: -168px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6bd {
        background-position-x: -189px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6be {
        background-position-x: -210px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6bf {
        background-position-x: -231px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6c0 {
        background-position-x: -252px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6c1 {
        background-position-x: -273px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6c2 {
        background-position-x: -294px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6c3 {
        background-position-x: -315px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6c4 {
        background-position-x: -336px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f6c5 {
        background-position-x: -357px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji-1f483 {
        background-position-x: -399px;
        background-position-y: -840px
    }

    .roxchat-root .roxchat-font-size-3 .roxchat-emoji {
        background-size: 380px 779px;
    }

    .roxchat-root .roxchat-font-size-4 .roxchat-emoji {
        background-size: 400px 820px;
    }

    .roxchat-root .roxchat-font-size-5 .roxchat-emoji {
        background-size: 420px 861px;
    }

    .roxchat-root .roxchat-chat .roxchat-header {
        display: flex;
        align-items: center;
        max-width: 340px;
    }

    .roxchat-root .roxchat-chat.roxchat-mobile-chat .roxchat-header {
        max-width: none;
    }


    .roxchat-root .roxchat-chat.roxchat-mobile-chat .roxchat-header .roxchat-operator > .roxchat-title {
        max-width: 80vw;
    }

    .roxchat-root .roxchat-chat.roxchat-mobile-chat > .roxchat-header {
        padding-left: 25px;
    }

    .roxchat-root .roxchat-chat .roxchat-top-header {
        display: block;
    }

    .roxchat-root .roxchat-chat .roxchat-header .roxchat-description.roxchat-description-tips {
        display: none;
        box-sizing: border-box;
        min-width: auto;
        padding: 0 28px 20px 28px;
        position: static;
        left: 0;
        top: 0;
        transform: none;
        font-size: 13px;
        font-weight: normal;
    }

    .roxchat-root .roxchat-chat.roxchat-mobile-chat .roxchat-header .roxchat-description.roxchat-description-tips {
        padding: 0 28px 20px 0;
    }

    .roxchat-root .roxchat-chat.roxchat-mobile-chat .roxchat-header-section.roxchat-offline-section-header .roxchat-operator {
        max-width: none;
    }

    .roxchat-root .roxchat-form .roxchat-form-control .roxchat-label .roxchat-label-text.roxchat-js-label {
        cursor: text;
        color: #AEAEAE;
    }

    .roxchat-root.roxchat-separate-mode .roxchat-chat.roxchat-mobile-chat .roxchat-header .roxchat-action.roxchat-actions-button {
        right: 23px;
    }

/* ---- next block ---- */

.roxchat-root .roxchat-btn.roxchat-custom-style-button:disabled {
        background: -moz-linear-gradient(to bottom, rgba(68, 98, 248, 0.3), rgba(68, 98, 248, 0.3)) !important;
        background: -o-linear-gradient(to bottom, rgba(68, 98, 248, 0.3), rgba(68, 98, 248, 0.3)) !important;
        background: linear-gradient(to bottom, rgba(68, 98, 248, 0.3), rgba(68, 98, 248, 0.3)) !important;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 98, 248, 0.3)), to(rgba(68, 98, 248, 0.3))) !important;
        background-color: rgba(68, 98, 248, 0.3) !important;
    }

    .roxchat-root .roxchat-btn.roxchat-custom-style-button:hover:not([disabled]) {
        background: -moz-linear-gradient(to bottom, rgba(59.7741935483871, 86.1451612903225, 218, 1), rgba(59.7741935483871, 86.1451612903225, 218, 1)) !important;
        background: -o-linear-gradient(to bottom, rgba(59.7741935483871, 86.1451612903225, 218, 1), rgba(59.7741935483871, 86.1451612903225, 218, 1)) !important;
        background: linear-gradient(to bottom, rgba(59.7741935483871, 86.1451612903225, 218, 1), rgba(59.7741935483871, 86.1451612903225, 218, 1)) !important;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(59.7741935483871, 86.1451612903225, 218, 1)), to(rgba(59.7741935483871, 86.1451612903225, 218, 1))) !important;
        background-color: rgba(59.7741935483871, 86.1451612903225, 218, 1) !important;
    }

    .roxchat-root .roxchat-btn.roxchat-custom-style-button.roxchat-custom-style-selected {
        background: -moz-linear-gradient(to bottom, rgba(68, 98, 248, 0.5), rgba(68, 98, 248, 0.5)) !important;
        background: -o-linear-gradient(to bottom, rgba(68, 98, 248, 0.5), rgba(68, 98, 248, 0.5)) !important;
        background: linear-gradient(to bottom, rgba(68, 98, 248, 0.5), rgba(68, 98, 248, 0.5)) !important;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 98, 248, 0.5)), to(rgba(68, 98, 248, 0.5))) !important;
        background-color: rgba(68, 98, 248, 0.5) !important;
    }

    .roxchat-root .roxchat-btn.roxchat-custom-style-button.roxchat-custom-style-selected span {
        color: #FFF !important;
    }

    .roxchat-root .roxchat-btn.roxchat-custom-style-button {
        background: -moz-linear-gradient(to bottom, rgba(68, 98, 248, 1), rgba(68, 98, 248, 1)) !important;
        background: -o-linear-gradient(to bottom, rgba(68, 98, 248, 1), rgba(68, 98, 248, 1)) !important;
        background: linear-gradient(to bottom, rgba(68, 98, 248, 1), rgba(68, 98, 248, 1)) !important;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 98, 248, 1)), to(rgba(68, 98, 248, 1))) !important;
        background-color: rgba(68, 98, 248, 1) !important;
        color: #FFF !important;
        border: none !important
    }

    .roxchat-root .roxchat-btn.roxchat-custom-style-button span {
        color: #FFF !important;
    }

    .roxchat-custom-style-header {
        background: -moz-linear-gradient(to bottom, rgba(1, 143, 220, 1), rgba(96, 43, 255, 1)) !important;
        background: -o-linear-gradient(to bottom, rgba(1, 143, 220, 1), rgba(96, 43, 255, 1)) !important;
        background: linear-gradient(to bottom, rgba(1, 143, 220, 1), rgba(96, 43, 255, 1)) !important;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 143, 220, 1)), to(rgba(96, 43, 255, 1))) !important;
        background-color: rgba(1, 143, 220, 1) !important;
    }

    .roxchat-header-adapt-font {
        color: #FFF !important;
    }

    .roxchat-agent-message-color {
        background: rgba(242, 242, 242, 1) !important;
    }

    .roxchat-agent-message-color span {
        color: #6D6D6D !important;
    }

    .roxchat-custom-style-chat {
        background: rgba(255, 255, 255, 1) !important;
    }

    .roxchat-custom-time {
        color: rgba(174, 174, 174, 0.9) !important;
    }

    .roxchat-custom-date {
        color: rgba(57, 63, 107, 0.9) !important;
        border-color: rgba(233, 233, 233, 0.9) !important;
    }

    .roxchat-custom-style-chat svg {
        fill: #9009a6 !important;
    }

    .roxchat-custom-style-placeholder {
        color: rgba(174, 174, 174, 0.9) !important;
    }

    .roxchat-custom-style-invitation-body {
        background: rgba(252, 252, 252, 1) !important;
        color: rgba(147, 155, 186, 1) !important;
        font-size: 20px !important;
    }

    .roxchat-custom-style-visitor-message {
        background: rgba(209, 233, 255, 1) !important;
    }

    .roxchat-custom-style-visitor-message span {
        color: #6D6D6D !important;
    }

    .roxchat-custom-style-invitation-header {
        background: rgba(252, 252, 252, 1) !important;
    }

    .roxchat-title-invitation-adapt-font {
        color: #000 !important;
    }

    .roxchat-custom-style-info-message span {
        color: rgba(174, 174, 174, 0.9) !important;
    }

    .roxchat-custom-style-footer {
        background: rgba(252, 252, 252, 1) !important;
    }

    .roxchat-footer-adapt-font {
        color: rgba(70, 70, 70, 1) !important;
    }

    .roxchat-powered-by-logo {
        background-image: url("https://jtsupport.rox.chat/v/images/logo_roxchat.svg") !important;
    }
