::selection {
    color: #fff;
    background: #4FC3F7;
}

::-moz-selection {
    color: #fff;
    background: #4FC3F7;
}

::-webkit-input-placeholder { /* Chrome #9fabb7; */
    color: #9AA6B2;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #9AA6B2;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #9AA6B2;
    opacity: 1;
}

:-moz-placeholder { /* Firefox 4 - 18 */
    color: #9AA6B2;
    opacity: 1;
}

#jChatMW_Body:hover .scrollbar-a2b > .scroll-element .scroll-bar {
    opacity: 1 !important;
}

#jChatMW_Body .scrollbar-a2b > .scroll-element:not(:active) .scroll-bar {
    transition: opacity 0.15s ease-out 0s;
    background-color: #9aa6b2;
    opacity: 0;
}

#jChatMW_Body .scroll-x {
    display: none !important;
}

#jChatMW_Body_scrollbar_c {
    height: 100%;
    width: 100%
}

#jChatMW_Body_scrollbar {
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

/*loader*/
.a2b_loader {
    position: absolute;
    top: 31px;
    left: 50%;
    width: 42px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 0px rgba(0,7,8,0.2);
    transform: translate(-50%,-50%) scale(0);
    opacity: 1;
    z-index: 3000;
    transition: opacity 0.12s ease-out 0s;
    animation: a2b_loader-show-anim 0.2s cubic-bezier(0.4,0.0,0.2,1) forwards;
    display: none;
}

@keyframes a2b_loader-show-anim {
    0% {
        transform: translate(-50%,-50%) scale(0);
        /*opacity: 0;*/
    }

    100% {
        transform: translate(-50%,-50%) scale(1);
        /*opacity: 1;*/
    }
}

.a2b_loader.a2b_loader_hided {
    opacity: 0;
}

.a2b_loader.loader_big {
    width: 74px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.a2b_loader::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.a2b_loader_circular {
    animation: a2b_loader_rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 6px;
    box-sizing: border-box;
}

.loader_big .a2b_loader_circular {
    padding: 8px;
}

.a2b_loader_path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: a2b_loader_dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #018DD2;
    fill: none;
    stroke-width: 4;
    stroke-miterlimit: 10;
}

.loader_big .a2b_loader_path {
    stroke-width: 3;
}

@keyframes a2b_loader_rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes a2b_loader_dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
/*loader end*/

#j_chat_container {
    position: fixed;
    bottom: 28px;
    right: 20px;
    height: 60px;
    width: 60px;
    display: block;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    will-change: transform, opacity;
    animation: slab-show-anim 0.15s ease-out forwards;
}

body.mobile #j_chat_container {
    bottom: 20px;
}

.j_chat_btn {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 5px;
    right: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-out 0s;
    opacity: 1;
    will-change: transform, opacity;
    box-shadow: 1px 1px 5px 0px rgba(0,7,8,0.3);
}

    .j_chat_btn:hover::after {
        position: absolute;
        bottom: -28px;
        left: 50%;
        color: #fff;
        background-color: #444;
        font-size: 14px;
        border-radius: 30px;
        padding: 4px 10px;
        transform: translateX(-50%);
        white-space: nowrap;
        word-break: keep-all;
        line-height: 17px;
        height: 17px;
    }

body:not(.mobile) .j_chat_btn:hover::after {
    content: attr(tc_tooltip);
}

#chat_whatsapp {
    transform: translateX(-168px) scale(1);
    background: #57d163 url(/img/outpages/whatsapp.svg) 50% no-repeat;
    transition-duration: 400ms;
}

#chat_viber {
    transform: translateX(-168px) scale(1);
    background: #665cac url(/img/outpages/viber.svg) 50% no-repeat;
    background-size: 72%;
    transition-duration: 300ms;
}

#chat_telegram {
    transform: translateX(-114px) scale(1);
    background: #2ca8dd url(/img/outpages/telegram.svg) 50% no-repeat;
    transition-duration: 200ms;
}

#j_chat_mi {
    transform: translateX(-60px) scale(1);
    background: #008CD1 url(/img/outpages/livechat.svg) 50% no-repeat;
    background-size: 52%;
    transition-duration: 100ms;
}

body.mobile #j_chat_mi::after {
    content: attr(tc_tooltip);
    position: absolute;
    top: -31px;
    left: 50%;
    color: #fff;
    background-color: #444;
    font-size: 14px;
    border-radius: 30px;
    padding: 4px 10px;
    transform: translateX(-50%);
    white-space: nowrap;
    word-break: keep-all;
    line-height: 17px;
    height: 17px;
}

body.mobile #j_chat_mi::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    height: 9px;
    width: 9px;
    transform: translateX(-50%) rotate( 220deg );
    background-color: #444;
}

#j_chat_container.j_hidden .j_chat_btn {
    opacity: 0;
    transform: translateX(0px) scale(0.5);
}

#j_chat_main_icon {
    height: 60px;
    width: 60px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.4s ease-out 0s, box-shadow 0.4s ease-out 0s;
    will-change: transform, box-shadow;
}

#j_chat_container:not(.j_hidden) #j_chat_main_icon {
    box-shadow: 0px 0px 25px 0px rgba(0,7,8,0.24);
}

#j_chat_main_icon_d {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}

#j_chat_main_icon_c {
    height: 60px;
    width: 120px;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s ease-out 0s;
    will-change: transform;
    transform: translateX(-60px);
    background: #fff;
}

#j_chat_container.j_hidden #j_chat_main_icon_c {
    transform: translateX(0px);
}

#j_chat_container:not(.j_hidden) #j_chat_main_icon {
    transform: scale(0.6);
}

#j_chat_icon {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/img/outpages/j_chat.svg) 50% no-repeat;
    background-size: 50px;
    cursor: pointer;
    z-index: 1;
    background-color: #018DD2;
    border-radius: 50%;
    overflow: hidden;
}

#j_chat_container.j_hidden #j_chat_icon:after {
    content: '';
    position: absolute;
    top: -50%;
    bottom: -50%;
    background: linear-gradient( 90deg,rgba(255,255,255,0.02),rgba(255,255,255,0.12) 100%);
    width: 30px;
    transform: skewX( -22deg ) translateX(-105%);
    left: 0;
    animation-name: blick;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-delay: 2s;
    will-change: transform;
    visibility: hidden;
    pointer-events:none;
}

@keyframes blick {
    0% {
        transform: skewX( -22deg ) translateX(-105%);
        visibility: visible;
    }

    20% {
        transform: skewX( -22deg ) translateX(210%);
        visibility:hidden;
    }
    100% {
        transform: skewX( -22deg ) translateX(210%);
    }
}

#j_close_icon {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 0;
    left: 60px;
    background: url(/img/outpages/j_close.svg) 50% no-repeat;
    background-size: 50px;
    cursor: pointer;
    z-index: 1;
    background-color: #FFF;
    background-size: 22px;
}

#j_chat_main_icon::before, #j_chat_main_icon::after {
    content: "";
    background-color: transparent;
    display: block;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit;
    z-index: -1;
    animation: a2b-button-wave infinite 2.6s 0s linear;
    top: 0;
    left: 0;
    transition: background-color 0.4s linear 0s;
    will-change: transform, opacity, background-color;
}

#j_chat_container.j_hidden #j_chat_main_icon::before, #j_chat_container.j_hidden #j_chat_main_icon::after {
    background-color: #018DD2;
}

#j_chat_main_icon::after {
    animation-delay: 1.3s !important;
}

@keyframes a2b-button-wave {
    0% {
        transform: scale(1, 1);
        opacity: 0.45
    }

    40% {
        opacity: 0.45
    }

    100% {
        transform: scale(1.35, 1.35);
        opacity: 0
    }
}

#j_chat_count_c {
    position: absolute;
    right: 40px;
    top: 0px;
    z-index: 999;
    width: 22px;
    height: 22px;
    transition: transform 0.4s ease-out 0s, opacity 0.15s ease-out 0s;
    will-change: transform, opacity;
    opacity: 1;
}

#j_chat_count:after {
    content: attr(j_count);
    background-color: #F0466B;
    color: #fff;
    z-index: 999;
    height: 22px;
    min-width: 22px;
    line-height: 20px;
    padding: 2px 7px 0 7px;
    font-size: 14px;
    border-radius: 30px;
    text-align: center;
    will-change: transform;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
}

#j_chat_count_c.j_count_hided {
    opacity: 0;
}

#j_chat_container:not(.j_hidden) #j_chat_count_c {
    transform: translate(-50px, 5px);
}

#j_chat_count.j_count_new:after {
    animation: j_chat_count-anim 0.5s ease-in forwards;
}

@keyframes j_chat_count-anim {
    0% {
        transform: scale(1.5);
    }

    25% {
        transform: scale(1.25);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

#jChatMW {
    position: fixed;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 650px;
    max-height: calc(100vh - 115px);
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 0px 1px 28px 0px rgba(0,0,0,0.3);
    z-index: 1000;
    bottom: 105px;
    right: 20px;
    overflow: hidden;
    transition: transform 0.4s ease-out 0s, opacity 0.4s ease-out 0s;
    will-change: transform;
    opacity: 0;
    transform: translateX(-60px);
    pointer-events: none;
}

body.mobile.mob_hide_scroll {
    overflow-y: hidden !important;
}

body.mobile #jChatMW {
    width: 100% !important;
    max-width: 100% !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    z-index: 20000 !important;
    border-radius: 0 !important;
    transition: transform 0.15s ease-out 0s, opacity 0.15s ease-out 0s;
    transform: translateY(10px);
    box-shadow: none !important;
    overflow: initial !important
}

    body.mobile #jChatMW:before {
        content: "";
        position: absolute;
        top: -200px;
        left: 0;
        width: 100%;
        height: 205px;
        background: #2F324A;
        z-index: -1;
    }

#jChatMW.j_mw_showed {
    opacity: 1 !important;
    transform: translateX(0px) !important;
    pointer-events: all !important;
}

#jChatMW_Head {
    background-color: #018DD2;
    height: 50px;
    display: flex;
    position: relative;
    box-shadow: 1px 6px 13px rgba(0,0,0,0.1), 0px 2px 5px rgba(0,0,0,0.05);
    z-index: 1;
    background: linear-gradient(95deg, #2F324A 20%, #424867 80%);
}

#jChatMW_Head_logo {
    width: 34px;
    height: 34px;
    margin: 8px 10px;
    background-image: url(/img/outpages/support_logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    border-radius: 50%;
}

    #jChatMW_Head_logo:after {
        content: "";
        position: absolute;
        bottom: 0px;
        right: -2px;
        width: 8px;
        height: 8px;
        background-color: #33DB9E;
        border-radius: 50%;
        border: 2px solid #2f324a;
    }

#jChatMW_Head_title_c {
    flex: 99;
    height: 50px;
    color: #fff;
    overflow: hidden;
}

#jChatMW_Head_title {
    width: 100%;
    line-height: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-top: 11px;
}

#jChatMW_Head_title_l {
    width: 100%;
    line-height: 13px;
    font-size: 13px;
    color: #ecedf1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-top: 1px;
    opacity: 0.88;
}
    #jChatMW_Head_title_l:before {
        content: attr(jchat_sub_text);
    }

    #jChatMW_Head_title_l.sub_text_is_typer:before {
        content: attr(jchat_sub_text_typer);
    }

    #jChatMW_Head_title_l.sub_text_is_typer:after {
        display: inline-block;
        content: '';
        white-space: pre-wrap;
        animation: typer-simple 1s linear infinite;
        height: 16px;
    }

@keyframes typer-simple {
    0% {
        content: '.'
    }

    24.99% {
        content: '.'
    }

    25% {
        content: '..'
    }

    49.99% {
        content: '..'
    }

    50% {
        content: '...'
    }

    99.99% {
        content: '...'
    }

    100% {
        content: '.'
    }
}



#jChatMW_Head_close {
    width: 38px;
    height: 38px;
    margin: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/img/d2/close.svg);
    background-size: 11px;
    border-radius: 50%;
    cursor: pointer;
}

body:not(.mobile) #jChatMW_Head_close:hover {
    background-color: rgba(255,255,255,0.15);
}

#jChatMW_Head_close:active {
    background-color: rgba(255,255,255,0.2) !important;
}

#jChatMW_Content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 50px);
}

#jChatMW_Body {
    /*background-color: #F1F3F6;*/
    flex: 99;
    overflow: hidden;
    display: block;
    background: linear-gradient( 180deg, #fff calc(100% - 10px), #f5f6f9 100%);
    position: relative;
}

#jChatMW_Body_first_c {
    position: relative;
    left: 50%;
    top: 0;
    word-break: break-all;
    word-break: break-word;
    font-size: 15px;
    color: #222d38;
    padding: 10px 20px;
    transform: translateX(-50%);
    box-sizing: border-box;
    text-align: center;
    background-color: #f0f1f5;
    border-radius: 14px;
    display: inline-block;
    line-height: 18px;
    min-width: 170px;
    width: 280px;
    border: 1px solid #e1e8e9;
    margin: 16px 0 4px 0;
}

    #jChatMW_Body_first_c > div {
        margin-bottom: 6px;
    }

    #jChatMW_Body_first_c > input {
        border-radius: 30px;
        margin-bottom: 7px;
        padding: 5px 10px;
        box-sizing: border-box;
        line-height: 20px;
        min-height: 34px;
        width: 100%;
        font-size: 15px;
    }

#jChatMW_emty_img {
    width: 100%;
    padding-bottom: 8px;
}

#jChatMW_c_label {
    margin: 1px 0 10px 0 !important;
}

#jChatMW_InputArea_c {
    min-height: 48px;
    z-index: 1;
    overflow: hidden;
    max-height: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
}

#jChatMW_emoji_block {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    border-top: 1px solid #E1E8E9;
    background: linear-gradient( 180deg, #f5f6f9 0%, #fff 10px, #fff calc(100% - 10px), #f5f6f9 100%);
    display: none;
    padding: 8px 10px;
    box-sizing: border-box;
}

#jChatMW_emoji_block_c {
    position: relative;
    top: 0px;
    left: 0px;
    opacity: 0;
    transform: translateY(15px);
    animation: emoji_block-anim 0.15s ease-out forwards;
}

@keyframes emoji_block-anim {
    0% {
        opacity: 0;
        transform: translateY(15px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

#jChatMW_InputArea {
    min-height: 48px;
    display: flex;
    flex-direction: row;
    border-top: 1px solid #E1E8E9;
    background: linear-gradient( 180deg, #f5f6f9 0%, #fff 10px, #fff calc(100% - 10px), #f5f6f9 100%);
    overflow: hidden;
}

#jChatMW_InputArea_file_i {
    background: url(/img/add_file.svg) center center no-repeat;
    height: 40px;
    width: 32px;
    float: left;
    cursor: pointer;
    border-radius: 50%;
    background-size: 21px 21px;
    border-radius: 7px;
    margin: 4px 0 4px 10px;
    place-self: flex-end;
    position: relative;
}

body:not(.mobile) #jChatMW_InputArea_file_i:hover {
    background-color: #F0F1F5;
}

#jChatMW_InputArea_file_i:active {
    background-color: #EBECF0 !important;
}

#jChatMW_InputArea_emoji_i {
    background: url(/img/emoji.svg) center center no-repeat;
    height: 40px;
    width: 32px;
    float: left;
    cursor: pointer;
    border-radius: 50%;
    background-size: 21px 21px;
    border-radius: 7px;
    margin: 4px 0;
    place-self: flex-end;
    position: relative;
}

body:not(.mobile) #jChatMW_InputArea_emoji_i:hover {
    background-color: #F0F1F5;
}

#jChatMW_InputArea_emoji_i:active {
    background-color: #EBECF0 !important;
}

#jChatMW_InputArea_textarea {
    resize: none;
    border: none;
    flex: 99;
    padding: 0;
    font-size: 15px;
    line-height: 20px;
    overflow-y: auto;
    padding: 13px 8px;
    font-family: Roboto, Arial, sans-serif !important;
    background-color: transparent;
    outline: none;
    font-family: monospace;
    display: inline-block;
    min-height: 20px;
    position: relative;
    white-space: pre-wrap;
    word-break: break-all;
    word-break:break-word;
    color: #222d38;
    -webkit-font-smoothing: subpixel-antialiased;
}

    #jChatMW_InputArea_textarea::-webkit-scrollbar {
        width: 0px;
    }

#jChatMW_InputArea_send_i {
    background: url(/img/send_white.svg) 7px center no-repeat;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-size: 21px 21px;
    border-radius: 50%;
    background-color: #018dd2;
    will-change: transform, opacity;
    transition: transform 0.15s ease-out 0s;
    z-index: 1;
    cursor: pointer;
}


#jChatMW_InputArea_send_i_c {
    height: 32px;
    width: 32px;
    margin: 8px 10px 8px 0;
    position: relative;
    place-self: flex-end;
    cursor: pointer;
    z-index: 1;
}

    #jChatMW_InputArea_send_i_c.send_i_do {
        animation: send_i-anim 1s ease-in forwards;
    }

    #jChatMW_InputArea_send_i_c::before, #jChatMW_InputArea_send_i_c::after {
        content: "";
        background-color: #018DD2;
        display: block;
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        border-radius: 50%;
        z-index: -1;
        animation: a2b-button-wave infinite 2.6s 0s linear;
        top: 0;
        left: 0;
        will-change: transform, opacity;
        cursor: pointer;
    }

    #jChatMW_InputArea_send_i_c::after {
        animation-delay: 1.3s !important;
    }

@keyframes send_i-anim {
    0% {
        transform: initial;
        opacity: 1;
    }

    20% {
        transform: rotate3d(1, 1, 2, -80deg ) scale(1.2);
    }

    40% {
        transform: rotate3d(1, 1, 2, -80deg ) scale(0.6) translateX(40px);
        opacity: 0;
    }

    60% {
        transform: rotate3d(1, 1, 2, -60deg ) scale(0.6) translateX(-40px);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: initial;
        opacity: 1;
    }
}

#j_chat_need_rotate_phone {
    display: none;
}

@media screen and (min-aspect-ratio: 5 / 4) and (max-width: 940px) {
    body.mobile #j_chat_need_rotate_phone {
        display: block;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.8);
        z-index: 999;
    }

        body.mobile #j_chat_need_rotate_phone:before {
            content: "";
            position: fixed;
            height: 120px;
            width: 120px;
            top: calc(50% - 60px);
            left: calc(50% - 60px);
            background: url(/img/outpages/phone_rotate_portrait.svg) 50% no-repeat;
            background-size: 60px;
            padding: 30px;
            border-radius: 50%;
            background-color: #2F324A;
            box-sizing: border-box;
            box-shadow: 0px 1px 28px 0px rgba(0, 0, 0, 0.3);
        }
}

#jChatMW_InputArea_textarea:empty:before {
    content: attr(placeholder);
    pointer-events: none;
    color: #9AA6B2;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#jChatMW_InputArea_textarea:focus:empty:before {
    opacity: 0.8;
}

#jChatMW_InputArea_textarea .emoji-a2b {
    width: 20px;
    height: 20px;
    margin: -4px 1px 0px 1px;
    vertical-align: middle;
}

#jChatMW_emoji_block_c .emoji-a2b {
    float: left;
    padding: 5px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    margin: 0;
    cursor: pointer;
}

body:not(.mobile) #jChatMW_emoji_block_c .emoji-a2b {
    padding: 6px !important;
}

    body:not(.mobile) #jChatMW_emoji_block_c .emoji-a2b:hover {
        background-color: #F0F1F5;
    }

#jChatMW_emoji_block_c .emoji-a2b:active {
    background-color: #EBECF0 !important;
}

#jChatMW_slabs {
    padding-bottom: 12px;
}

.j_chat_date_slab {
    padding: 4px 8px;
    margin-top: 10px;
    background-color: #A3AEB9;
    /*background-color: #989BAC;*/
    color: #ffffff;
    border-radius: 6px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 12px;
    text-align: center;
    margin-bottom: 1px;
}

.j_chat_message_slab_s {
    margin-top: 5px;
    position: relative;
    font-size: 15px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    min-height: 20px;
}

.j_chat_avatar_slab {
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 0;
    left: 10px;
    border-radius: 50%;
    background-image: url(/img/outpages/support_logo_none.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.j_chat_message_slabs_c {
    display: inline-block;
    position: relative;
    width: calc(100% - 104px);
}

.j_chat_other .j_chat_message_slabs_c {
    left: 48px;
    float:left;
}

.j_chat_my .j_chat_message_slabs_c {
    float: right;
    margin-right: 15px;
}

.j_chat_message_slab {
    padding: 10px 14px;
    margin-top: 5px;
    background-color: #ECEDF1;
    color: #222d38;
    position: relative;
    display: inline-block;
    border-radius: 12px 12px 12px 6px;
    float: left;
    clear: both;
    max-width: 490px;
    white-space: pre-wrap;
    word-break: break-all;
    word-break: break-word;
    will-change: transform, opacity;
}

.slab_show_anim {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    will-change: transform, opacity;
    animation: slab-show-anim 0.15s ease-out forwards;
    animation-delay: 0.1s;
}

.j_chat_date_slab.slab_show_anim {
    transform: translateX(-50%) scale(0.8);
    animation: slab-date-show-anim 0.12s ease-out forwards;
    animation-delay: 0.05s;
}

@keyframes slab-show-anim {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes slab-date-show-anim {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.j_chat_slab_new {
    padding: 10px 14px;
}

[j_chat_time]::after {
    content: attr(j_chat_time);
    position: absolute;
    bottom: 10px;
    line-height: 17px;
    color: #9AA6B2;
    font-size: 12px;
}

.j_chat_my .j_chat_sended[j_chat_time]::after {
    background: url(/img/outpages/j_sended.svg) 34px 2px no-repeat;
    background-size: 17px;
    padding-right: 21px;
    left: -56px !important;
}

.j_chat_my .j_chat_readed[j_chat_time]::after {
    background: url(/img/outpages/j_readed.svg) 34px 2px no-repeat;
    background-size: 17px;
    padding-right: 21px;
    left: -56px !important;
}

.j_chat_my .j_chat_message_slab::after {
    left: -41px;
}

.j_chat_other .j_chat_message_slab::after {
    right: -35px;
}

.j_chat_my .j_chat_message_slab {
    background-color: #018DD2;
    color: #fff;
    border-radius: 12px 12px 6px 12px;
    float: right;
}

.j_chat_message_slab a {
    color: #018DD2;
}

.j_chat_my .j_chat_message_slab a {
    color: #fff;
}

.j_chat_message_slab[j_chat_message_type="2"] {
    padding-left: 44px;
}

    .j_chat_message_slab[j_chat_message_type="2"]:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 36px;
        padding-left: 50px;
        background-image: url(/img/add_file_blue.svg);
        background-position: 12px center;
        background-repeat: no-repeat;
        background-size: 17px;
        padding: 0;
        background-color: rgba(0,11,22,0.03);
        border-radius: 12px 0 0 6px;
    }

.j_chat_my .j_chat_message_slab[j_chat_message_type="2"]:before {
    background-image: url(/img/add_file_white.svg);
    background-color: rgba(0,11,22,0.1);
    border-radius: 12px 0 0 12px;
}

.j_chat_message_slab a:hover {
    text-decoration:underline;
}

#j_chat_body_loader {
    box-shadow: 0px 0px 10px 0px rgba(0,7,8,0.2);
}

.j_chat_message_slab .emoji-a2b {
    width: 20px;
    height: 20px;
    margin: -4px 1px 0px 1px;
    vertical-align: middle;
}

#j_chat_letsnewfile {
    display: none;
}

#letsnewfilejchatbar {
    height: 2px;
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    z-index: 99;
    background-color: unset;
}

    #letsnewfilejchatbar .bar {
        width: 0%;
        height: 2px;
        background-color: #018dd2;
        z-index: 99;
        border-radius: 5px;
    }

.j_chat_message_slab[j_chat_message_type="1"] {
    background-color: #fff !important;
    padding: 0;
}

    .j_chat_message_slab[j_chat_message_type="1"] .emoji-a2b {
        width: 80px;
        height: 80px;
        margin: 0;
    }

.j_chat_message_slab[j_chat_message_type="3"] {
    background-color: #fff !important;
    padding: 0;
}

    .j_chat_message_slab[j_chat_message_type="3"] img {
        max-width: 100%;
        max-height: 300px;
    }

#j_chat_sender_loader {
    background: unset;
    box-shadow: unset;
    top: 16px;
    width: 56px;
    z-index:-1;
}

.j_chat_message_slabs_name {
    line-height: 14px;
    color: #9AA6B2;
    font-size: 13px;
    margin-top: 3px;
}

#jChatPolicyHint {
    padding-top: 10px;
    font-size: 11px;
    line-height: 15px;
    text-align: left;
    display: none;
}


.a2b-dropzone:not(.modal) {
    position: relative;
}

.a2b-dropzone-c {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.16s cubic-bezier(0.4,0.0,0.2,1);
    will-change: opacity;
    background: rgba(0,0,0,0.84);
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    pointer-events: none;
    overflow: hidden;
}

    .a2b-dropzone-c.dpactive {
        opacity: 1;
        pointer-events: initial;
    }

        .a2b-dropzone-c.dpactive:after {
            content: attr(dropzone_title);
            position: absolute;
            z-index: 1;
            top: 50%;
            left: 50%;
            color: #fff;
            font-size: 16px;
            pointer-events: none;
            transform: translate(-50%,-50%);
            background: url(/img/add_file_white.svg) 10px center no-repeat;
            padding: 0 10px 0 44px;
            background-size: 26px 26px;
            line-height: 26px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            box-sizing: border-box;
        }


.j_chat_other .j_chat_message_slab:last-of-type:before {
    content: '';
    position: absolute;
    left: -2px;
    bottom: 0;
    transform: rotate( 0deg ) skewX( -34deg );
    width: 12px;
    height: 12px;
    background-color: #ecedf1;
    border-radius: 0 8px 0 4px;
}

.j_chat_my .j_chat_message_slab:last-of-type:before {
    content: '';
    position: absolute;
    right: -2px;
    bottom: 0;
    transform: rotate( 0deg ) skewX( 34deg );
    width: 12px;
    height: 12px;
    background-color: #018dd2;
    border-radius: 8px 0 4px 0;
}

body.mobile #jChatMW_InputArea_textarea {
    font-size: 16px;
}


.scroll-bar:before {
    content:"";
}