@font-face {
    font-family: "Support Board Icons";
    src: url("../media/icons/support-board.woff?v=4") format("woff"), url("../media/icons/support-board.ttf?v=4") format("truetype"), url("../media/icons/support-board.svg#support-board?v=4") format("svg");
    font-weight: normal;
    font-style: normal
}

[class^="sb-icon-"]:before,
[class*=" sb-icon-"]:before {
    font-family: "Support Board Icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #000;
}


/* toggle */
* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --hue: 223;
    --bg: hsl(var(--hue), 10%, 90%);
    --fg: hsl(var(--hue), 10%, 10%);
    --primary: hsl(var(--hue), 90%, 50%);
    --trans-dur: 0.3s;
    --trans-timing: cubic-bezier(0.76, 0.05, 0.24, 0.95);
    --trans-timing-in: cubic-bezier(0.76, 0.05, 0.86, 0.06);
    --trans-timing-out: cubic-bezier(0.05, 0.76, 0.06, 0.86);
    font-size: calc(40px + (80 - 40) * (100vw - 320px) / (2560 - 320));
}

.sb-admin,
input {
    color: var(--fg);
    font: 1em/1.5 sans-serif;
}

.sb-admin {
    background-color: var(--bg);
    transition:
        background-color var(--trans-dur),
        color var(--trans-dur);
}

.sb-admin:has(.switch__input:checked) {
    background-color: var(--fg);
    color: var(--bg);
}

.switch {
    position: relative;
}

.switch__icon,
.switch__input {
    display: block;
}

.switch__icon {
    position: absolute;
    top: 0.375em;
    right: 0.375em;
    width: 0.75em;
    height: 0.75em;
    transition:
        opacity calc(var(--trans-dur) / 2),
        transform calc(var(--trans-dur) / 2);
}

.switch__icon polyline {
    transition: stroke-dashoffset calc(var(--trans-dur) / 2);
}

.switch__icon--light,
.switch__icon--light polyline {
    transition-delay: calc(var(--trans-dur) / 2);
    transition-timing-function: var(--trans-timing-out);
}

.switch__icon--dark {
    opacity: 0;
    transform: translateX(-0.75em) rotate(30deg) scale(0.75);
    transition-timing-function: var(--trans-timing-in);
}

.switch__input {
    background-color: hsl(210, 90%, 70%);
    border-radius: 0.75em;
    box-shadow:
        0 0 0 0.125em hsla(var(--hue), 90%, 50%, 0),
        0.125em 0.125em 0.25em hsla(var(--hue), 90%, 10%, 0.2);
    outline: transparent;
    position: relative;
    width: 3em;
    height: 1.5em;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition:
        background-color var(--trans-dur) var(--trans-timing),
        box-shadow 0.15s linear;
}

.switch__input:focus-visible {
    box-shadow:
        0 0 0 0.125em hsl(var(--hue), 90%, 50%),
        0.125em 0.125em 0.25em hsla(var(--hue), 90%, 10%, 0.2);
}

.switch__input:before,
.switch__input:after {
    content: "";
    display: block;
    position: absolute;
}

.switch__input:before {
    background-color: hsl(50, 90%, 50%);
    border-radius: inherit;
    mask-image: linear-gradient(120deg, hsl(0, 0%, 0%) 20%, hsla(0, 0%, 0%, 0) 80%);
    -webkit-mask-image: linear-gradient(120deg, hsl(0, 0%, 0%) 20%, hsla(0, 0%, 0%, 0) 80%);
    inset: 0;
    transition: background-color var(--trans-dur) var(--trans-timing);
}

.switch__input:after {
    background-color: hsl(0, 0%, 100%);
    border-radius: 50%;
    box-shadow: 0.05em 0.05em 0.05em hsla(var(--hue), 90%, 10%, 0.1);
    top: 0.125em;
    left: 0.125em;
    width: 1.25em;
    height: 1.25em;
    transition:
        background-color var(--trans-dur) var(--trans-timing),
        transform var(--trans-dur) var(--trans-timing);
    z-index: 1;
}

.switch__input:checked {
    background-color: hsl(290, 90%, 40%);
}

.switch__input:checked:before {
    background-color: hsl(220, 90%, 40%);
}

.switch__input:checked:after {
    background-color: hsl(0, 0%, 0%);
    transform: translateX(1.5em);
}

.switch__input:checked~.switch__icon--light,
.switch__input:checked~.switch__icon--light polyline {
    transition-delay: 0s;
    transition-timing-function: var(--trans-timing-in);
}

.switch__input:checked~.switch__icon--light {
    opacity: 0;
    transform: translateX(-0.75em) rotate(-30deg) scale(0.75);
}

.switch__input:checked~.switch__icon--light polyline {
    stroke-dashoffset: 1.5;
}

.switch__input:checked~.switch__icon--dark {
    opacity: 1;
    transform: translateX(-1.5em);
    transition-delay: calc(var(--trans-dur) / 2);
    transition-timing-function: var(--trans-timing-out);
}

.switch__sr {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
}


.sidebar {
    width: 220px;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    left: 0;
    top: 0;
    position: fixed;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 24px 20px 0px 20px;
    margin-bottom: 48px;
}

.sidebar.collapsed .sidebar-header {
    font-size: 1.5rem;
    padding-left: 16px;
}

.nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar {
    background: linear-gradient(180deg, rgba(3, 4, 6, 0) 63.05%, rgba(125, 94, 255, 0.4) 99.37%);
    padding-top: 16px;
    border-right: 1px rgba(140, 140, 145, 0.30) solid;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Common nav item base */
.nav-item {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 10px 12px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    margin: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    height: 44px;
    transition: background 0.15s, color 0.15s;
    position: relative;
    margin-top: 0;
    font-weight: 500;
    gap: 10px;
}

/* Icon sizing */
.nav-item .icon {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover state */
.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Active state */
.nav-item.sb-active {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    border-left: 2px #7d5eff solid;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
}

/* Optional: For the colored side indicator */
.nav-item.sb-active .label,
.nav-item.sb-active .icon {
    color: #fff;
}

.nav-item svg {
    min-width: 18px;
    text-align: center;
}

.sidebar.collapsed .nav-item span {
    display: none;
}

.sidebar.collapsed .nav-item {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-footer {
    padding: 0;
    /* Removes extra padding, consistent with nav */
    display: flex;
    flex-direction: column;
}

.footer-item,
.sb-account {
    display: flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    height: 44px;
    font-family: "Space Grotesk", sans-serif;
    padding: 10px 12px;
    gap: 10px;
    margin: 5px 12px;
    margin-top: 0;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    position: relative;
}

/* Icon sizing, matching nav */
.footer-item svg {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    text-align: center;
}

/* Hover state */
.footer-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* "Active" style if you want to highlight the selected footer nav (optional) */
.footer-item.sb-active {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    border-left: 2px #7d5eff solid;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
}

/* Collapse styling */
.footer-item.collapse-btn {
    font-weight: 500;
}

.sidebar.collapsed .footer-item span,
.sidebar.collapsed .footer-item.collapse-btn span {
    display: none;
}

.sidebar.collapsed .footer-item {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

/* Tooltip for collapse state */
.sidebar.collapsed .footer-item {
    position: relative;
}

.sidebar.collapsed .footer-item:hover::after {
    content: attr(data-label);
    position: absolute;
    left: 70px;
    background: #232430;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
    top: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.sb-admin.sidebar-collapsed {
    width: calc(100% - 70px);
    padding-left: 70px;
}

.sb-icon-arrow-up:before {
    content: "\61";
    transform: rotate(180deg);
    display: inline-block
}

.sb-icon-arrow-down:before {
    content: "\61"
}

.sb-icon-shopify:before {
    content: "\e900"
}

.sb-icon-plus-2:before {
    content: "\4d"
}

.sb-icon-plus:before {
    content: "\30"
}

.sb-icon-back:before {
    content: "\41"
}

.sb-icon-file:before {
    content: "\42"
}


.sb-icon-reload:before {
    content: "\44"
}

.sb-icon-help:before {
    content: "\45"
}

.sb-icon-language:before {
    content: "\49"
}

.sb-icon-dislike:before {
    content: "\4e"
}

.sb-icon-like:before {
    content: "\4f"
}

.sb-icon-refresh:before {
    content: "\51"
}

.sb-icon-woocommerce:before {
    content: "\52"
}

.sb-icon-social-fb:before {
    content: "\53"
}

.sb-icon-social-tw:before {
    content: "\54"
}

.sb-icon-social-li:before {
    content: "\55"
}

.sb-icon-social-pi:before {
    content: "\56"
}

.sb-icon-social-wa:before {
    content: "\57"
}

.sb-icon-social-m:before {
    content: "\58"
}

.sb-icon-bar-chart:before {
    content: "\59"
}

.sb-icon-clip:before {
    content: "\65"
}

.sb-icon-message:before {
    content: "\69"
}


.sb-icon-phone:before {
    content: "\6c"
}

.sb-icon-settings:before {
    content: "\6d"
}

.sb-icon-close:before {
    content: "\70";
    color: #fff;
}

.sb-icon-message-add:before {
    content: "\71"
}

.sb-icon-emoji:before {
    content: "\72"
}

.sb-icon-menu:before {
    content: "\73"
}

.sb-icon-arrow-left:before {
    content: "\74"
}

.sb-icon-arrow-right:before {
    content: "\75"
}

.sb-icon-loader:before {
    content: "\76"
}

.sb-icon-padlock:before {
    content: "\79"
}

.sb-icon-circle:before {
    content: "\e901"
}


.sb-icon-openai:before {
    content: "\e903"
}

.sb-icon-mic:before {
    content: "\e904"
}

.sb-icon-edit:before {
    content: "\e905"
}

.sb-icon-warning:before {
    content: "\e906"
}

.sb-icon-info:before {
    content: "\e907"
}

.sb-icon-files:before {
    content: "\e908"
}

.sb-icon-tag-line:before {
    content: "\e909"
}

.sb-icon-chatbot:before {
    content: "\e90a"
}

.sb-icon-automation:before {
    content: "\e915"
}

.sb-icon-sms:before {
    content: "\e91c"
}

.sb-icon-tag:before {
    content: "\f02b"
}

.sb-icon-play:before {
    content: "\f04b"
}

.sb-icon-pause:before {
    content: "\f04c"
}

.sb-icon-microphone:before {
    content: "\f130"
}

@font-face {
    font-family: "Support Board Font";
    src: url("../media/fonts/regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Support Board Font";
    src: url("../media/fonts/medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal
}

@keyframes sb-fade-animation {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes sb-fade-bottom-animation {
    0% {
        transform: translateY(15px);
        opacity: 0
    }

    100% {
        transform: none;
        opacity: 1
    }
}

@keyframes sb-fade-bottom-center {
    0% {
        transform: translateY(15px) translateX(-50%);
        opacity: 0
    }

    100% {
        transform: translateX(-50%);
        opacity: 1
    }
}

.sb-main,
.sb-articles-page,
.sb-main input,
.sb-main textarea,
.sb-main select {
    font-family: "Support Board Font", "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial, sans-serif
}

.sb-main *,
.sb-articles-page * {
    box-sizing: content-box;
    outline: none
}

.sb-main input,
.sb-articles-page input,
.sb-articles-page input[text],
.sb-main input[text],
.sb-main textarea,
.sb-main input[email] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.sb-clear {
    width: 100%;
    clear: both
}

.sb-no-results {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
    opacity: 0.7
}

.sb-no-results-active>.sb-no-results {
    display: block !important;
    opacity: 1
}

.sb-no-results-active>div:not(.sb-no-results) {
    display: none !important
}

.sb-hide,
.sb-grid.sb-hide {
    display: none !important
}

.sb-scroll-area,
.sb-conversation .sb-list,
.sb-list .sb-message pre,
.sb-rich-table .sb-content,
.sb-admin .sb-top-bar>div:first-child>ul,
.sb-dialog-box pre,
.sb-horizontal-scroll {
    overflow: hidden;
    overflow-y: scroll
}

.sb-scroll-area::-webkit-scrollbar,
.sb-conversation .sb-list::-webkit-scrollbar,
.sb-list .sb-message pre::-webkit-scrollbar,
.sb-rich-table .sb-content::-webkit-scrollbar,
.sb-admin .sb-top-bar>div:first-child>ul::-webkit-scrollbar,
.sb-dialog-box pre::-webkit-scrollbar,
.sb-horizontal-scroll::-webkit-scrollbar {
    width: 5px
}

.sb-scroll-area::-webkit-scrollbar-track,
.sb-conversation .sb-list::-webkit-scrollbar-track,
.sb-list .sb-message pre::-webkit-scrollbar-track,
.sb-rich-table .sb-content::-webkit-scrollbar-track,
.sb-admin .sb-top-bar>div:first-child>ul::-webkit-scrollbar-track,
.sb-dialog-box pre::-webkit-scrollbar-track,
.sb-horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1
}

.sb-scroll-area::-webkit-scrollbar-thumb,
.sb-conversation .sb-list::-webkit-scrollbar-thumb,
.sb-list .sb-message pre::-webkit-scrollbar-thumb,
.sb-rich-table .sb-content::-webkit-scrollbar-thumb,
.sb-admin .sb-top-bar>div:first-child>ul::-webkit-scrollbar-thumb,
.sb-dialog-box pre::-webkit-scrollbar-thumb,
.sb-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #BFCBD3;
    border-radius: 5px;
    transition: all 0.4s
}

.sb-scroll-area::-webkit-scrollbar-thumb:hover,
.sb-conversation .sb-list::-webkit-scrollbar-thumb:hover,
.sb-list .sb-message pre::-webkit-scrollbar-thumb:hover,
.sb-rich-table .sb-content::-webkit-scrollbar-thumb:hover,
.sb-admin .sb-top-bar>div:first-child>ul::-webkit-scrollbar-thumb:hover,
.sb-dialog-box pre::-webkit-scrollbar-thumb:hover,
.sb-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #fff
}

.sb-list .sb-message pre,
.sb-rich-table .sb-content,
.sb-admin .sb-top-bar>div:first-child>ul,
.sb-dialog-box pre,
.sb-horizontal-scroll,
[data-id="flows"]>.sb-content {
    overflow-y: hidden
}

.sb-list .sb-message pre::-webkit-scrollbar,
.sb-rich-table .sb-content::-webkit-scrollbar,
.sb-admin .sb-top-bar>div:first-child>ul::-webkit-scrollbar,
.sb-dialog-box pre::-webkit-scrollbar,
.sb-horizontal-scroll::-webkit-scrollbar,
[data-id="flows"]>.sb-content::-webkit-scrollbar {
    height: 5px
}

div ul.sb-menu,
.sb-select ul,
.sb-popup,
.sb-menu-mobile>ul,
.sb-menu-mobile .sb-mobile,
.sb-area-users .sb-filter-btn>div,
.sb-menu li ul {
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 9999995;
    list-style: none
}

.sb-horizontal-scroll {
    overflow-y: hidden;
    overflow-x: scroll
}

.sb-user-conversations>li {
    padding: 15px;
    margin: 0;
    cursor: pointer;
    border-left: 2px solid rgba(255, 255, 255, 0);
    transition: all 0.4s;
    position: relative
}

.sb-conversation-item .sb-name {
    font-size: 16px;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    color: #fff;
    padding-left: 48px;

}

.sb-user-conversations>li>div>img {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block
}

.sb-time span {
    color: #8C8C91;
    font-size: 11px;
    font-family: "Manrope", sans-serif;
}

.sb-user-conversations>li>div div:not(.sb-message) {
    display: flex;
    justify-content: space-between;
    opacity: 0.85
}

.sb-user-conversations>li>div div:not(.sb-message)>span {
    white-space: nowrap
}

.sb-user-conversations>li>div div:not(.sb-message)>span:first-child {
    overflow: hidden;
    margin-right: 15px
}

.sb-user-conversations>li>div .sb-message {
    font-size: 14px;
    height: 22px;
    line-height: 22px;
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.3px;
    padding-left: 48px;
    font-weight: 500;
    margin: 0;
    color: #8C8C91;
    font-family: "Manrope", sans-serif;
}


.sb-user-conversations>li:hover,
.sb-user-conversations>li.sb-active {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: 1px rgba(255, 255, 255, 0.20) solid;
    outline-offset: -0.50px;
}

.sb-chat-btn span,
.sb-user-conversations>li>[data-count] {
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    background: #ca3434;
    color: #fff;
    border-radius: 100%;
    font-weight: 500;
    font-size: 11px;
    line-height: 22px;
    top: 0;
    left: -3px;
    z-index: 2;
    animation: sb-fade-animation 0.3s
}

.sb-chat-btn span:empty,
.sb-chat-btn span[data-count="0"],
.sb-user-conversations>li>[data-count]:empty,
.sb-user-conversations>li>[data-count][data-count="0"] {
    display: none
}

.sb-user-conversations>li>[data-count] {
    left: 20px;
    top: 33px;
    border: 3px solid #fff
}

.sb-user-conversations>li:hover>[data-count] {
    border-color: #f5f7fa
}

.sb-chat .sb-btn-text:hover,
.sb-list .sb-btn-text:hover {
    color: #fff
}

.sb-list>div {
    float: left;
    clear: both;
    position: relative;
    margin: 2px 10px 25px 20px;
    box-shadow: none;
    background: rgba(140, 140, 145, 0.30);
    border-radius: 5px;
    padding: 12px;
    max-width: calc(90% - 55px)
}

.sb-list>div.sb-thumb-active {
    margin-left: 55px
}

.sb-list>div.sb-thumb-active .sb-thumb {
    display: block
}

.sb-list>div.sb-thumb-active.sb-rich-cnt {
    max-width: calc(90% - 115px)
}

.sb-list>div.sb-rich-cnt {
    background-color: #f7f7f7;
    max-width: calc(90% - 80px)
}

.sb-list>div.sb-rich-cnt .sb-message {
    overflow: visible
}

.sb-list>div.sb-rich-cnt .sb-agent-name {
    display: none
}

.sb-list>div[data-type="slider"],
.sb-list>div[data-type="slider-images"] {
    width: 100%
}

.sb-list>div:first-child>span {
    margin-top: 0 !important
}

.sb-list>div:last-child {
    margin-bottom: 30px !important
}

.sb-list>div:not(.sb-right):last-child,
.sb-list>div>[data-id="sending"] {
    animation: sb-fade-bottom-animation .4s
}

.sb-list>div.sb-right {
    float: right;
    margin: 2px 20px 25px 10px;
    background-color: #7D5EFF
}

.sb-list>div.sb-right.sb-rich-cnt .sb-text {
    background-color: #E6F2FC
}

.sb-list>div.sb-right .sb-thumb {
    right: -35px;
    left: auto
}

.sb-list>div.sb-right .sb-message,
.sb-list>div.sb-right .sb-message a,
.sb-list>div.sb-right .sb-rich-message .sb-text,
.sb-list>div.sb-right .sb-rich-message .sb-title {
    color: #fff
}

.sb-list>div.sb-right.sb-thumb-active {
    margin-right: 50px
}

.sb-list>div.sb-right .sb-time {
    right: 0;
    left: auto
}

.sb-list>div.sb-right .sb-message:not(:empty)+.sb-message-attachments .sb-player {
    border-color: rgba(0, 76, 125, 0.17)
}

.sb-list>div:not(.sb-right):not(.sb-label-date)+.sb-right,
.sb-list>div.sb-right+div:not(.sb-right):not(.sb-label-date) {
    margin-top: 15px
}

.sb-list .sb-thumb {
    position: absolute;
    left: -35px;
    top: 1px;
    width: 25px;
    display: none
}

.sb-list .sb-thumb>img {
    width: 25px;
    height: 25px;
    border-radius: 50%
}

.sb-list .sb-thumb>div {
    display: none
}

.sb-list .sb-message,
.sb-list .sb-message a {
    color: #fff;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.3px;
    outline: none;
    word-wrap: break-word
}

.sb-list .sb-message {
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-list .sb-message b {
    font-weight: 500
}

.sb-list .sb-message code {
    font-family: monospace;
    padding: 2px 7px;
    color: #2c506a;
    background: rgba(238, 238, 238, 0.5);
    border-radius: 3px;
    border: 1px solid #dbdbdb;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden
}

.sb-list .sb-message code a {
    color: #2c506a !important;
    text-decoration: none
}

.sb-list .sb-message pre {
    font-family: monospace;
    margin: 0;
    color: #2c506a;
    overflow-x: scroll;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 5px 7px 5px;
    border-radius: 3px;
    border: 1px solid #dbdbdb
}

.sb-list .sb-message pre code {
    padding: 0;
    color: #2c506a;
    background: none;
    display: inline
}

.sb-list .sb-message span+pre,
.sb-list .sb-message pre+span {
    margin-top: 10px;
    display: block
}

.sb-list .sb-message .emoji-large {
    font-size: 35px;
    line-height: 45px
}

.sb-list .sb-message .sb-image {
    margin-top: 6px
}

.sb-list .sb-message .sb-rich-image .sb-image {
    margin-top: 0
}

.sb-list .sb-message .sb-agent-name {
    display: block;
    opacity: 0.8;
    font-size: 11px
}

.sb-list .sb-message:not(.sb-message-media)>.sb-image {
    margin-bottom: 5px
}

.sb-list .sb-message:not(:empty)+.sb-message-attachments {
    padding-top: 15px
}

.sb-list .sb-message:not(:empty)+.sb-message-attachments .sb-player {
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-list .sb-message-attachments a {
    text-decoration: none;
    font-style: normal;
    color: #fff;
    position: relative;
    display: block;
    transition: all 0.4s;
    padding-left: 25px;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.3px;
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-list .sb-message-attachments a:before {
    content: "\65";
    font-family: "Support Board Icons";
    position: absolute;
    left: 0;
    font-size: 15px;
    opacity: 0.8;
    line-height: 21px
}

.sb-list .sb-message-attachments a:hover {
    color: #fff
}

.sb-list .sb-message-attachments a+a {
    margin-top: 7px
}

.sb-list .sb-message-attachments:empty {
    display: none
}

.sb-list .sb-time {
    color: #8C8C91;
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 16px;
    bottom: -20px;
    left: 0;
    white-space: nowrap;
    position: absolute;
    display: flex
}

.sb-list .sb-time>span:first-child {
    display: none
}

.sb-list .sb-time i {
    padding-left: 10px
}

.sb-list .sb-message-media {
    margin: -12px;
    background: #fff;
    text-align: right
}

.sb-list .sb-message-media .sb-image:first-child {
    margin-top: 0
}

.sb-list [data-id="sending"] .sb-message {
    opacity: .5
}

.sb-list [data-id="sending"].sb-right .sb-time,
.sb-list [data-id="sending"] .sb-time {
    right: 19px;
    flex-direction: row
}

.sb-list [data-id="sending"].sb-right .sb-time>i,
.sb-list [data-id="sending"] .sb-time>i {
    position: relative
}

.sb-list [data-id="sending"].sb-right .sb-time>i:after,
.sb-list [data-id="sending"] .sb-time>i:after {
    content: "...";
    position: absolute;
    width: 15px;
    left: calc(100% + 5px);
    bottom: 0;
    font-weight: 500;
    letter-spacing: 1px;
    overflow: hidden;
    animation: sb-typing 1s infinite
}

.sb-list [data-type="youtube-video"] {
    padding: 0
}

.sb-list [data-type="youtube-video"] .sb-rich-message {
    margin: 0;
    padding: 0;
    border-radius: 6px;
    overflow: hidden
}

.sb-list .sb-reply-message {
    background: rgba(0, 0, 0, 0.06);
    padding: 10px;
    border-radius: 4px;
    margin: -12px -12px 12px -12px;
    border-left: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.3px;
    opacity: .9
}

.sb-list .sb-reply-message span {
    font-weight: 500;
    display: block
}

.sb-list .sb-reply-message .sb-message-attachments a {
    margin: 0;
    cursor: default;
    color: #fff
}

.sb-list .sb-right .sb-reply-message {
    border-left-color: #fff;
    color: #004c7d
}

.sb-list>div.sb-label-date,
.sb-label-date-top {
    text-align: center;
    max-width: 100% !important;
    width: auto;
    float: none !important;
    background: none;
    margin: 0 !important
}

.sb-list>div.sb-label-date span,
.sb-label-date-top span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 15px;
    border-radius: 100px;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: .3px;
    margin: 15px auto 15px auto;
    font-weight: 500;
    font-family: "Albert Sans", sans-serif;
    color: #fff;
    user-select: none
}

.sb-label-date-top.sb-active span {
    display: inline-block;
    background: rgba(0, 0, 0, 0.616);
    padding: 2px 15px;
    border-radius: 100px;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: .3px;
    margin: 15px auto 15px auto;
    font-weight: 500;
    font-family: "Albert Sans", sans-serif;
    color: #fff;
    user-select: none
}

.sb-list>div.sb-label-date:first-child {
    padding-top: 8px
}

.sb-label-date-top {
    position: absolute;
    top: 73px;
    left: 0;
    right: 5px;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s
}

.sb-label-date-top.sb-active {
    opacity: 1
}

.sb-label-date-top:empty {
    display: none
}

.sb-label-date+.sb-label-date {
    display: none
}

.sb-list .sb-form+.sb-btn {
    margin-top: 25px
}

.sb-list .sb-form+.sb-form {
    margin-top: 15px
}

.sb-list table {
    border-collapse: collapse
}

.sb-list table th,
.sb-list table td {
    padding: 5px 7px;
    border-bottom: 1px solid rgba(143, 143, 143, 0.29);
    text-align: left;
    color: #24272a;
    font-size: 12px;
    line-height: 23px
}

.sb-list table th {
    border-bottom: 1px solid rgba(143, 143, 143, 0.6);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap
}

.sb-list table tr:last-child td {
    border-bottom: 0
}

.sb-list .sb-text-list>div {
    padding-bottom: 6px
}

.sb-list .sb-text-list>div>div:first-child {
    font-weight: 500
}

.sb-list .sb-text-list>div:last-child {
    padding-bottom: 0
}

.sb-list .sb-text-list-single>div {
    position: relative;
    padding-left: 15px
}

.sb-list .sb-text-list-single>div:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    top: 9px;
    left: 0
}

.sb-list .sb-text-list-single>div[data-inner="true"] {
    padding-left: 35px
}

.sb-list .sb-text-list-single>div[data-inner="true"]:before {
    left: 15px
}

.sb-list .sb-text-list-numeric {
    counter-reset: list-number
}

.sb-list .sb-text-list-numeric>div {
    padding-left: 20px
}

.sb-list .sb-text-list-numeric>div:not([data-inner]):before {
    content: counter(list-number) ". ";
    width: auto;
    height: auto;
    background: none;
    top: auto;
    border-radius: 0;
    counter-increment: list-number
}

.sb-list .sb-image-list>div {
    padding: 5px 0 10px 50px;
    position: relative
}

.sb-list .sb-image-list>div>.sb-thumb {
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    margin: 0;
    background-position: center center
}

.sb-list .sb-image-list>div .sb-list-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px
}

.sb-list .sb-image-list>div .sb-list-title span {
    opacity: .7
}

.sb-list .sb-image-list>div:last-child {
    padding-bottom: 0
}

.sb-list .sb-image-list+a {
    margin-top: 15px
}

.sb-list iframe {
    width: 100%;
    border: none;
    border-radius: 4px;
    background: #000
}

.sb-list iframe:not([height]) {
    height: 128px;
    display: block
}

.sb-list.sb-reply-active {
    margin-bottom: 62px
}

.sb-player {
    display: flex;
    align-items: center;
    margin: -6.5px -11px
}

.sb-player>div {
    background: transparent;
    width: 20px;
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 21px;
    transition: all 0.4s
}

.sb-player>div:hover {
    color: #028be5
}

.sb-player>div:active {
    background: rgba(0, 0, 0, 0.08) !important
}

.sb-player .sb-player-btn {
    width: 38px;
    height: 34px;
    line-height: 38px;
    font-size: 14px;
    padding: 0;
    text-align: center;
    border-radius: 50%
}

.sb-player .sb-player-btn:before {
    line-height: 34px
}

.sb-player .sb-player-speed {
    display: flex;
    align-items: center
}

.sb-player .sb-player-speed .sb-player-speed-number {
    font-weight: 500
}

.sb-player .sb-player-speed .sb-icon-close {
    font-size: 7px;
    height: 19px;
    line-height: 21px;
    padding-left: 2px
}

.sb-player .sb-player-speed .sb-icon-close:before {
    line-height: 20px
}

.sb-player .sb-player-download {
    text-align: center
}

.sb-player .sb-player-download:before {
    transform: translateY(2px);
    display: inline-block
}

.sb-player audio {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden
}

.sb-right .sb-player>div {
    background-color: #E6F2FC;
    color: #004c7d
}

#sb-audio-clip {
    display: none;
    align-items: center;
    position: absolute;
    top: 1px;
    bottom: 0;
    right: 50px;
    left: 0;
    background: #fbfbfb;
    color: #fff;
    z-index: 2
}

#sb-audio-clip .sb-icon {
    font-size: 15px;
    height: 100%;
    line-height: 100%;
    padding: 0 15px;
    cursor: pointer;
    color: #fff;
    transition: color .5s
}

#sb-audio-clip .sb-icon:before {
    line-height: 55px
}

#sb-audio-clip .sb-icon-mic {
    font-size: 20px;
    color: #ca3434
}

#sb-audio-clip .sb-icon-close {
    font-size: 11px
}

#sb-audio-clip .sb-icon-close:hover {
    color: #ca3434
}

#sb-audio-clip .sb-btn-mic {
    color: #ca3434
}

#sb-audio-clip .sb-btn-mic:hover {
    color: #24272a
}

#sb-audio-clip .sb-btn-clip-player {
    display: none;
    width: 11px
}

#sb-audio-clip .sb-btn-clip-player.sb-active {
    display: block;
    margin-right: -15px
}

#sb-audio-clip .sb-btn-clip-player:hover {
    color: #028be5
}

#sb-audio-clip .sb-audio-clip-time {
    font-size: 15px;
    font-weight: 500
}

#sb-audio-clip .sb-audio-clip-cnt {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 100%;
    border-right: 1px solid rgba(140, 140, 145, 0.30);
    border-left: 1px solid rgba(140, 140, 145, 0.30)
}

#sb-audio-clip.sb-active {
    display: flex
}

.sb-editor {
    background: #fbfbfb;
    padding-bottom: 0;
    padding: 15px;
    position: relative;
    margin: 0
}

.sb-editor textarea {
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    font-size: 13px;
    letter-spacing: 0.3px;
    width: 100%;
    height: 25px;
    line-height: 25px;
    min-height: 25px !important;
    padding: 0px !important;
    outline: none !important;
    text-align: left;
    font-weight: 400;
    resize: none !important;
    border: none !important;
    color: #fff !important;
    background: transparent !important;
    transition: all 0.4s;
    overflow: auto;
    display: block
}

.sb-editor .sb-submit {
    display: none;
    cursor: pointer;
    width: 42.57px;
    height: 42.57px;
    transition: all 0.4s;
    background: #7D5EFF;
    box-shadow: 0px 0px 10px -1px #7D5EFF;
    border-radius: 20px;
}

.sb-editor .sb-bar {
    position: absolute;
    display: flex;
    align-items: center;
    max-height: 26px;
    right: 0;
    top: 0;
    bottom: 0
}

.sb-editor.sb-active .sb-bar .sb-submit {
    display: block
}

.sb-editor.sb-active .sb-bar .sb-btn-attachment,
.sb-editor.sb-active .sb-bar .sb-btn-audio-clip {
    display: none
}

.sb-editor .sb-upload-form-editor {
    display: none
}

.sb-editor .sb-bar-icons {
    display: flex;
    justify-content: flex-start;
    width: auto
}

.sb-editor .sb-bar-icons>div {
    width: 30px;
    height: 28px;
    margin-right: 8px;
    position: relative;
    cursor: pointer
}

.sb-editor .sb-bar-icons>div:last-child {
    margin-right: 0
}

.sb-editor .sb-bar-icons>div:before {
    font-family: "Support Board Icons";
    position: absolute;
    left: 7px;
    font-size: 19px;
    line-height: 30px;
    color: #fff
}

.sb-editor .sb-bar-icons>div.sb-btn-attachment:before {
    content: "\65"
}

.sb-editor .sb-bar-icons>div.sb-btn-saved-replies:before {
    content: "\71";
    font-size: 21px
}

.sb-editor .sb-bar-icons>div.sb-btn-attachment {
    margin-right: 7px
}

.sb-editor .sb-bar-icons>div.sb-btn-audio-clip {
    margin-right: 0
}

.sb-editor .sb-bar-icons>div.sb-btn-emoji:before {
    content: "\72"
}

.sb-editor .sb-bar-icons>div.sb-btn-audio-clip:before {
    content: "\e904";
    font-size: 22px;
    left: 3px
}

.sb-editor .sb-bar-icons>div.sb-btn-open-ai:not(.sb-active) {
    display: none
}

.sb-editor .sb-bar-icons>div.sb-btn-woocommerce:before {
    content: "\52";
    font-size: 22px
}

.sb-editor .sb-bar-icons>div.sb-btn-open-ai.sb-loading:before {
    left: 15px
}

.sb-editor .sb-bar-icons>div:hover:before {
    color: #8C8C91
}

.sb-editor .sb-attachments {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap
}

.sb-editor .sb-attachments>div {
    margin: 5px 5px 5px 0;
    padding: 0 20px 0 0;
    position: relative;
    font-size: 11px;
    line-height: 13px;
    height: 13px;
    font-weight: 500;
    cursor: default
}

.sb-editor .sb-attachments>div>i {
    position: absolute;
    right: 5px;
    font-size: 8px;
    line-height: 8px;
    width: 8px;
    height: 8px;
    top: 50%;
    margin: -5px 0 0 0;
    color: #ca3434;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s
}

.sb-editor .sb-attachments>div:hover>i {
    opacity: 1
}

.sb-editor .sb-loader {
    height: 25px;
    width: 25px;
    display: none;
    position: absolute;
    right: 0;
    background: #fff
}

.sb-editor .sb-loader.sb-active {
    display: block
}

.sb-editor.sb-drag {
    border-color: #028be5 !important;
    background-color: #e0ecf6 !important
}

.sb-editor.sb-drag .sb-textarea,
.sb-editor.sb-drag .sb-bar,
.sb-editor.sb-drag .sb-attachments,
.sb-editor.sb-drag .sb-suggestions {
    opacity: 0 !important;
    z-index: -1 !important
}

.sb-editor.sb-drag:before {
    content: "\30";
    font-family: "Support Board Icons";
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    position: absolute;
    font-size: 13px;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    color: #028be5
}

.sb-editor [data-reply] {
    position: absolute;
    left: -1px;
    right: -1px;
    top: -70px;
    height: 30px;
    font-size: 13px;
    line-height: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: .3px;
    text-align: left;
    color: #fff;
    padding: 15px 30px 15px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #030406;
    border-radius: 4px;
    border-left: 2px solid #fff
}

.sb-editor [data-reply] span {
    font-weight: 500;
    display: block;
    margin-bottom: 5px
}

.sb-editor [data-reply] span+.sb-icon-clip {
    margin-left: 0
}

.sb-editor [data-reply] .sb-icon-close {
    position: absolute;
    right: 5px;
    top: 10px;
    font-size: 12px;
    line-height: 13px;
    padding: 5px;
    cursor: pointer
}

.sb-editor [data-reply] .sb-icon-close:hover {
    color: #ca3434
}

.sb-editor [data-reply] .sb-icon-clip {
    transform: translateY(2px);
    opacity: .8;
    display: inline-block;
    margin: 0 5px
}

.sb-editor [data-reply] img {
    height: 15px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    border-radius: 3px
}

.sb-editor [data-reply].sb-reply-color {
    border-left-color: #028be5
}

.sb-article h1,
.sb-article h2,
.sb-article h3 {
    font-weight: 500
}

.sb-article .sb-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative
}

.sb-article .sb-title .sb-icon-close {
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 12px;
    transition: all 0.4s;
    cursor: pointer
}

.sb-article .sb-title .sb-icon-close:hover {
    color: #ca3434
}

.sb-article .sb-content {
    font-size: 13px;
    line-height: 25px;
    color: #fff;
    letter-spacing: 0.3px;
    white-space: break-spaces
}

.sb-article .sb-content>img,
.sb-article .sb-content .sb-image {
    max-width: 100%;
    margin: 15px 0;
    display: block;
    border-radius: 3px
}

.sb-article .sb-content h1,
.sb-article .sb-content h2,
.sb-article .sb-content h3,
.sb-article .sb-content h4,
.sb-article .sb-content h5,
.sb-article .sb-content h6 {
    letter-spacing: .3px;
    margin: 0;
    transition: all 0.4s;
    color: #24272a;
    font-size: 18px;
    line-height: 25px;
    margin: 15px 0
}

.sb-article .sb-content h3 {
    font-size: 16px;
    line-height: 21px
}

.sb-article .sb-content h4,
.sb-article .sb-content h5,
.sb-article .sb-content h6 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500
}

.sb-article .sb-content p {
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    margin: 5px 0;
    letter-spacing: .3px
}

.sb-article .sb-content p:empty {
    display: none
}

.sb-article .sb-content b {
    font-weight: 500
}

.sb-article .sb-content code {
    background: #f5f7fa;
    border: 1px solid rgba(140, 140, 145, 0.30);
    display: block;
    border-radius: 4px;
    padding: 10px;
    white-space: pre;
    overflow-x: scroll
}

.sb-article .sb-content>*:first-child {
    margin-top: 0
}

.sb-article .sb-btn-text {
    margin-top: 25px;
    text-decoration: none
}

.sb-article ul {
    padding-left: 15px
}

.sb-article ul li {
    list-style: disc
}

.sb-article ul.sb-ul-ordered,
.sb-article ul.sb-ul-unordered {
    padding-left: 15px
}

.sb-article ul.sb-ul-ordered li {
    list-style: decimal
}

.sb-article ul.sb-ul-unordered li {
    list-style: disc
}

.sb-article a,
.sb-article ul a {
    color: #24272a;
    text-decoration: underline
}

.sb-article .sb-rating,
.sb-article .sb-btn-text+.sb-article-category-links {
    display: flex;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 0;
    height: 20px;
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-article .sb-rating {
    color: #24272a
}

.sb-article[data-user-rating="1"] [data-rating="positive"] {
    color: #1a9260;
    cursor: default
}

.sb-article[data-user-rating="1"] [data-rating="negative"] {
    display: none
}

.sb-article[data-user-rating="-1"] [data-rating="positive"] {
    display: none
}

.sb-article[data-user-rating="-1"] [data-rating="negative"] {
    color: #ca3434;
    cursor: default
}

.sb-chat .sb-article>.sb-title:first-child {
    border-bottom: 1px solid rgba(140, 140, 145, 0.30);
    padding-bottom: 30px;
    margin-bottom: 30px
}

.sb-chat .sb-article h2 {
    font-size: 17px
}

.sb-chat .sb-article h3,
.sb-chat .sb-article h4,
.sb-chat .sb-article h5,
.sb-chat .sb-article h6 {
    font-size: 15px
}

.sb-panel-articles {
    animation: sb-fade-animation .5s
}

.sb-panel-articles .sb-title .sb-icon-close {
    display: none
}

.sb-article-category-links {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    margin: 15px 0 15px 0;
    height: auto !important
}

.sb-article-category-links>span {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 13px;
    margin-right: 20px;
    letter-spacing: .3px;
    transition: all 0.4s
}

.sb-article-category-links>span+span:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -6px;
    height: 12px;
    width: 1px;
    background: #028be5
}

.bxc-raw-html>img {
    max-width: 100%
}

@keyframes sb-loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.sb-loading {
    position: relative;
    text-indent: -999995px;
    overflow: hidden
}

.sb-loading i {
    display: none
}

.sb-loading div,
.sb-loading ul,
.sb-loading h1,
.sb-loading h2,
.sb-loading h3,
.sb-loading h4,
.sb-loading p,
.sb-loading span,
.sb-loading table,
.sb-loading a,
.sb-loading hr {
    opacity: 0
}

.sb-loading:before,
.sb-loader:before {
    content: "\76";
    font-family: "Support Board Icons";
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    text-indent: 0;
    animation: sb-loading 0.6s linear infinite;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 29px;
    font-size: 21px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -15px;
    margin-left: -15px;
    z-index: 1;
    color: #028be5
}

.sb-btn.sb-loading:hover:before {
    color: #fff
}

.sb-btn,
a.sb-btn {
    line-height: 36px;
    letter-spacing: 0.3px;
    font-weight: 500;
    border-radius: 30px;
    min-width: 0;
    text-decoration: none;
    height: 35px;
    padding: 0 25px;
    position: relative;
    display: inline-block;
    border: none;
    text-align: center;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    transition: all 0.4s;
    user-select: none;
    background: white;
    border-radius: 50px;
    color: #030406;
    font-size: 10px;
    font-family: "Manrope", sans-serif;
}

.sb-btn.sb-icon,
a.sb-btn.sb-icon {
    padding-left: 50px
}

.sb-btn.sb-icon>i,
a.sb-btn.sb-icon>i {
    position: absolute;
    left: 25px;
    line-height: 36px
}

.sb-btn.sb-icon>i:before,
a.sb-btn.sb-icon>i:before {
    line-height: 36px
}

.sb-btn:hover,
.sb-btn:active,
a.sb-btn:hover,
a.sb-btn:active {
    background: white;
    border-radius: 50px;
    color: #030406;
    font-size: 10px;
    font-family: "Manrope", sans-serif;
}


.sb-btn:before,
a.sb-btn:before {
    color: #fff
}

.sb-btn:not(.sb-hide)+a,
a.sb-btn:not(.sb-hide)+a {
    margin-left: 15px
}

.sb-btn.sb-rich-btn,
a.sb-btn.sb-rich-btn {
    color: #fff !important;
    line-height: 35px !important
}

.sb-btn.sb-icon-check:not(.sb-loading):before,
a.sb-btn.sb-icon-check:not(.sb-loading):before {
    margin-right: 15px;
    transform: translateY(2px);
    display: inline-block
}

.sb-btn.sb-btn-black {
    background-color: #24272a
}

.sb-btn.sb-btn-black:hover {
    background-color: #fff
}

.sb-btn.sb-btn-red {
    background-color: #ca3434
}

.sb-btn.sb-btn-red:hover {
    background-color: #24272a
}

.sb-btn-icon {
    position: relative;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0);
    opacity: 0.8;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    transition: all 0.4s;
    text-decoration: none !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: 1px rgba(255, 255, 255, 0.20) solid;
    outline-offset: -0.50px;
}

.sb-btn-icon i {
    line-height: 40px;
    font-size: 18px;
    width: 33px
}

.sb-btn-icon i:before {
    font-size: 18px;
    line-height: 35px
}

.sb-btn-icon i.sb-icon-file:before {
    font-size: 19px;
    display: block;
    transform: translateY(1px)
}

.sb-btn-icon:before {
    font-size: 23px;
    line-height: 35px
}

.sb-btn-icon:hover {
    opacity: 1;
    border-color: #028be5;
    color: #028be5;
    background-color: rgba(39, 156, 255, 0.08)
}

.sb-btn-icon.sb-btn-red:hover {
    border-color: #ca3434;
    color: #ca3434;
    background-color: rgba(202, 52, 52, 0.1)
}

.sb-btn-icon.sb-btn-red:hover i {
    color: #ca3434 !important
}

.sb-btn-icon.sb-loading {
    background: none !important;
    border: none !important;
    cursor: default !important;
    transition: none !important
}

.sb-btn-icon.sb-loading:before {
    line-height: 30px
}

.sb-btn-text {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    position: relative;
    background: none !important;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.4s
}

.sb-btn-text i {
    margin-right: 15px;
    margin-left: 1px;
    transform: translateY(2px);
    display: inline-block
}

.sb-btn-text:hover {
    color: #028be5
}

.sb-btn-text.sb-btn-red:hover {
    color: #ca3434
}

.sb-input {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sb-input>span {
    display: inline-block;
    width: 150px;
    min-width: 150px;
    flex-grow: 1;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #fff
}

.sb-input>input,
.sb-input>select,
.sb-input>textarea {
    position: static;
    border-radius: 4px !important;
    color: #24272a;
    font-size: 13px;
    line-height: 35px;
    font-weight: 400;
    border: 1px solid rgba(140, 140, 145, 0.30);
    background-color: #f8f8f9;
    outline: none;
    height: 42px;
    min-height: 42px;
    padding: 0 10px;
    transition: all 0.4s;
    width: 100%;
    margin: 0 !important;
    box-sizing: border-box;
    box-shadow: none
}

.sb-input>input:focus,
.sb-input>input.sb-focus,
.sb-input>select:focus,
.sb-input>select.sb-focus,
.sb-input>textarea:focus,
.sb-input>textarea.sb-focus {
    border: 1px solid #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2);
    background: #fff;
    color: #24272a;
    outline: none !important
}

.sb-input>input.sb-error,
.sb-input>select.sb-error,
.sb-input>textarea.sb-error {
    border: 1px solid #ca3434;
    box-shadow: 0 0 5px rgba(202, 52, 52, 0.25)
}

.sb-input>select {
    min-height: 37px
}

.sb-input>textarea {
    line-height: 20px;
    min-height: 75px;
    padding: 8px 10px
}

.sb-input>input[type=date]::-webkit-clear-button {
    -webkit-appearance: none;
    display: none
}

.sb-input>input[type="checkbox"] {
    background: #fff;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 35px;
    min-height: 35px;
    outline: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    min-width: 35px !important;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none
}

.sb-input>input[type="checkbox"]:checked:before {
    content: "\77" !important;
    font-family: "Support Board Icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 35px;
    font-size: 15px;
    color: #028be5;
    margin: 0;
    width: 100%;
    height: 100%
}

.sb-input>div {
    padding-right: 30px;
    max-width: 800px
}

.sb-input>div span {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    display: block
}

.sb-input>div p {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.3px;
    margin: 5px 0 0 0;
    color: #fff
}

.sb-input>input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none
}

.sb-input+.sb-input {
    margin-top: 10px
}

.sb-input.sb-input-btn input:first-child {
    line-height: 40px
}

.sb-input.sb-input-btn>div {
    background-color: #028be5;
    color: #fff;
    height: 42px;
    line-height: 47px;
    margin-left: -3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    text-align: center;
    padding: 0;
    width: 50px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s
}

.sb-input.sb-input-btn>div:hover {
    background-color: #004c7d
}

.sb-input.sb-input-btn>div.sb-loading:before {
    color: #fff
}

.sb-input.sb-input-btn>div:not(.sb-loading):before {
    line-height: 42px
}

.sb-input.sb-loading select {
    color: #f8f8f9
}

.sb-input-image .image {
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    width: 100%;
    height: 100px;
    padding: 0;
    position: relative;
    cursor: pointer;
    background-color: #f8f8f9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: border-color 0.4s, background-color 0.4s, box-shadow 0.4s
}

.sb-input-image .image:before {
    content: "\70";
    font-family: "Support Board Icons" !important;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 9px;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: -15px 0 0 -15px;
    text-align: center;
    transform: rotate(45deg)
}

.sb-input-image .image:hover {
    border: 1px solid #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2);
    background-color: #fff
}

.sb-input-image .image:hover:before {
    color: #028be5
}

.sb-input-image .image>.sb-icon-close {
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 10px;
    height: 21px;
    width: 21px;
    font-size: 7px;
    text-align: center;
    line-height: 23px;
    cursor: pointer;
    background: #fff;
    color: #fff;
    border-radius: 50%;
    display: none
}

.sb-input-image .image[data-value]:before {
    display: none
}

.sb-input-image .image[data-value]>.sb-icon-close {
    display: block
}

.sb-input-image .image[data-value]>.sb-icon-close:hover {
    background-color: #ca3434
}

.sb-input-image.sb-profile-image {
    justify-content: flex-start
}

.sb-input-image.sb-profile-image span {
    flex-grow: 0
}

.sb-input-image.sb-profile-image .image {
    width: 65px;
    height: 65px;
    padding: 0
}

.sb-input-image.sb-profile-image .image .sb-icon-close {
    right: -5px;
    top: -5px;
    color: #030406;
}

.sb-input-image.sb-profile-image .image .sb-icon-close:before {
    line-height: 21px
}

.sb-input-select-input>div {
    position: absolute;
    background: none;
    left: 6px;
    top: 13px;
    opacity: 0;
    padding: 0;
    color: #24272a;
    font-size: 13px;
    line-height: 22px;
    padding-left: 5px;
    font-weight: 400
}

.sb-input-select-input select {
    background: none !important;
    border: none !important;
    max-width: 50px;
    margin: 0 !important;
    transform: none !important;
    height: auto !important;
    padding: 0 !important;
    box-shadow: none !important;
    visibility: visible !important
}

.sb-input-select-input input {
    padding: 5px 0 0 60px
}

.sb-input-select-input input[disabled] {
    padding: 0 5px !important;
    border: none;
    background: none;
    box-shadow: none;
    width: 35px
}

.sb-input-select-input [type="number"]::-webkit-outer-spin-button,
.sb-input-select-input [type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: textfield
}

.sb-input-select-input .sb-active+div {
    opacity: 1
}

.sb-select-phone {
    z-index: 9
}

.sb-select-phone li {
    display: flex;
    align-items: center;
    white-space: nowrap
}

.sb-select-phone img {
    border-radius: 2px;
    height: 15px;
    width: 23px;
    margin: 0 10px 0 0
}

.sb-select-phone>div>p {
    display: flex;
    align-items: center;
    white-space: nowrap
}

.sb-select-phone .sb-select {
    top: -12px;
    z-index: 8
}

.sb-select-phone.sb-single-prefix+input {
    padding-left: 50px
}

.sb-input-select-input>div.sb-select-phone+input {
    padding: 5px 0 0 100px
}

.sb-input-select-input>div.sb-select-phone .sb-select-search input {
    padding: 0 10px
}

.sb-input-select-input>div.sb-select-phone ul {
    width: 110px;
    max-height: 150px;
    min-height: 0 !important;
    background: #fff !important;
    margin-left: -10px
}

.sb-select-search {
    position: absolute;
    border-radius: 4px;
    display: none;
    z-index: 9
}

.sb-select-search input {
    padding: 0 10px;
    min-height: 28px;
    height: 28px;
    border: none;
    margin: 0 -10px !important;
    width: 85px;
    display: block;
    background: #fff;
    color: #24272a;
    font-size: 13px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.sb-select-search+.sb-scroll-area {
    padding-top: 28px !important
}

.sb-select-search.sb-active {
    display: block
}

.sb-lightbox-media {
    position: static;
    box-shadow: none !important;
    background: none !important;
    animation: none
}

.sb-lightbox-media>div>img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100% - 30px);
    max-width: calc(100% - 30px);
    width: auto;
    border-radius: 5px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    animation: sb-fade-animation 0.5s;
    z-index: 9999999995
}

.sb-lightbox-media i {
    position: fixed;
    color: #fff;
    width: 30px;
    height: 30px;
    display: block;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 9999999995
}

.sb-lightbox-media i:hover {
    color: #ca3434
}

.sb-lightbox-media:not(.sb-active) {
    display: none
}

.sb-lightbox-media.sb-active+.sb-lightbox-overlay {
    display: block
}

.sb-lightbox-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999995;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    animation: sb-fade-animation 0.3s
}

.sb-overlay-panel {
    position: absolute;
    height: 0;
    background: white;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: height .5s
}

.sb-overlay-panel>div:first-child {
    display: none;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 5px 15px;
    height: 35px
}

.sb-overlay-panel>div:first-child .sb-btn-icon {
    margin-right: -10px
}

.sb-overlay-panel>div:first-child .sb-btn-icon:before {
    font-size: 12px
}

.sb-overlay-panel>div:last-child {
    height: calc(100% - 45px)
}

.sb-overlay-panel iframe {
    opacity: 0
}

.sb-overlay-panel.sb-active {
    height: 100%;
    z-index: 11
}

.sb-overlay-panel.sb-active>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sb-overlay-panel.sb-active iframe {
    opacity: 1;
    transition: opacity .5s;
    transition-delay: .5s
}

.sb-image {
    background: #000;
    border-radius: 4px;
    max-width: 250px
}

.sb-image>img {
    max-width: 100%;
    border-radius: 3px;
    display: block;
    cursor: pointer;
    transition: all 0.4s
}

.sb-image>img:hover {
    opacity: 0.8
}

.sb-image.sb-image-png {
    background: none
}

.sb-image.sb-image-sticker {
    background: none;
    max-width: 150px !important
}

.sb-upload-form-admin {
    visibility: hidden;
    position: absolute;
    height: 0;
    width: 0;
    top: 0;
    left: 0
}

.sb-search-btn,
.sb-filter-btn {
    position: relative;
    width: 30px;
    height: 40px
}

.sb-search-btn>i,
.sb-filter-btn>i {
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 19px;
    line-height: 14px;
    top: 10px;
    right: 0;
    cursor: pointer;
    transition: color 0.4s;
    z-index: 3
}

.sb-search-btn i:hover,
.sb-search-btn.sb-active i,
.sb-filter-btn i:hover,
.sb-filter-btn.sb-active i {
    color: #fff
}

.sb-search-btn.sb-active {
    background-color: #7D5EFF;
}

.sb-search-btn>input {
    position: absolute !important;
    right: 0;
    height: auto;
    font-size: 15px;
    line-height: 39px;
    min-width: 260px;
    padding: 0 50px 0 15px !important;
    display: none;
    background-color: #fff !important;
    border-radius: 5px;
    border: 1px solid #7D5EFF;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2);
    z-index: 2
}

.sb-search-btn>input:focus {
    outline: none;
    box-shadow: 0 0px 5px rgba(39, 156, 255, 0.5);
    border-color: #028be5
}

.sb-search-btn.sb-active input {
    display: block
}

.sb-search-btn.sb-active i {
    right: 15px
}

.sb-popup {
    width: 340px;
    height: 360px;
    position: fixed;
    transform: translateX(-50%);
    bottom: 0;
    left: 0;
    display: none
}

.sb-popup:after {
    content: "";
    background: url(../media/triangle.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    width: 20px;
    height: 15px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 1px
}

.sb-popup.sb-active {
    display: block
}

.sb-popup .sb-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px 15px 15px;
    line-height: 35px;
    height: 35px
}

.sb-popup .sb-header .sb-search-btn>input {
    min-width: 243px
}

.sb-popup .sb-header .sb-title {
    font-weight: 500
}

.sb-popup .sb-header .sb-search-btn {
    height: 40px
}

.sb-popup .sb-header .sb-search-btn>i {
    top: 7px
}

.sb-popup .sb-header .sb-search-btn.sb-active {
    margin-top: -5px
}

.sb-popup .sb-header .sb-search-btn.sb-active>i {
    top: 11px
}

.sb-popup-active .sb-tooltip {
    visibility: hidden
}

.sb-popup.sb-emoji {
    bottom: 71px;
    left: 28px;
    height: 285px
}

.sb-popup.sb-emoji .sb-emoji-list {
    height: calc(100% - 80px);
    padding-right: 15px;
    margin: 0 0 15px 15px
}

.sb-popup.sb-emoji .sb-emoji-list>ul {
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 8px
}

.sb-popup.sb-emoji .sb-emoji-list>ul>li {
    overflow: hidden;
    min-width: 0;
    text-align: center;
    cursor: pointer;
    font-size: 23px;
    line-height: 28px;
    margin: 0;
    padding: 0;
    transition: all 0.2s
}

.sb-popup.sb-emoji .sb-emoji-list>ul>li:hover {
    transform: scale(1.2)
}

.sb-popup.sb-emoji .sb-emoji-list>ul>li.sb-emoji-title {
    grid-column: 1 / 9;
    text-align: left
}

.sb-popup.sb-emoji .sb-emoji-bar {
    position: absolute;
    top: 65px;
    bottom: 15px;
    right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    overflow: hidden
}

.sb-popup.sb-emoji .sb-emoji-bar>div {
    width: 4px;
    height: 100%;
    background: #ececec;
    margin: 0;
    cursor: pointer
}

.sb-popup.sb-emoji .sb-emoji-bar>div.sb-active,
.sb-popup.sb-emoji .sb-emoji-bar>div:hover {
    background: #028be5;
    border-radius: 5px
}

.sb-popup.sb-emoji img+img {
    display: none !important
}

.sb-select {
    position: relative;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    display: inline-block
}

.sb-select p {
    position: relative;
    padding: 0 20px 0 0;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 35px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
    transition: all 0.4s
}

.sb-select p span {
    font-weight: 400;
    opacity: 0.7
}

.sb-select p:after {
    content: "\61";
    font-family: "Support Board Icons";
    position: absolute;
    top: 0;
    right: 1px;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: 35px
}

.sb-select p.sb-error {
    color: #ca3434
}

.sb-select ul {
    padding: 10px 0 !important;
    display: none;
    overflow: hidden
}

.sb-select.sb-loading {
    overflow: visible
}

.sb-select:not(.sb-hide)+.sb-select {
    margin-left: 15px
}

.sb-select:not(.sb-disabled) p:hover {
    color: #fff
}

.sb-select.sb-disabled>p {
    cursor: default !important
}

.sb-select.sb-disabled>p:after,
.sb-select.sb-disabled>ul {
    display: none !important
}

div ul.sb-menu,
.sb-select ul {
    position: absolute;
    margin: 0;
    z-index: 5
}

div ul.sb-menu.sb-active,
.sb-select ul.sb-active {
    display: block;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 15px 0;

}

div ul.sb-menu.sb-scroll-area,
.sb-select ul.sb-scroll-area {
    height: auto;
    max-height: 300px;
    overflow-y: scroll
}

.sb-select ul li {
    cursor: pointer;
    padding: 6px 25px 6px 12px;
    margin: 0;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .3px;
    line-height: 20px;
    white-space: nowrap;
    color: #fff;
    list-style: none;
    user-select: none;
    transition: all 0.1s;
    border-bottom: 1px rgba(140, 140, 145, 0.30) solid;
}

div ul.sb-menu li.sb-active,
.sb-select ul li.sb-active {
    color: #028be5
}

div ul.sb-menu li:hover,
.sb-select ul li:hover {
    background-color: #028be5;
    color: #fff
}

.sb-rich-message {
    letter-spacing: 0.3px
}

.sb-rich-message .sb-top,
.sb-rich-message .sb-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px
}

.sb-rich-message .sb-text {
    color: #fff;
    font-size: 13px;
    line-height: 21px
}

.sb-rich-message .sb-text+div {
    margin-top: 20px
}

.sb-rich-message .sb-content:empty {
    display: none
}

.sb-rich-message img {
    max-width: 100%
}

.sb-rich-message .sb-input {
    position: relative;
    box-sizing: content-box
}

.sb-rich-message .sb-input>span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 5px;
    font-size: 13px;
    line-height: 44px;
    font-weight: 400;
    width: 100%;
    cursor: text;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 8;
    transition: top 0.2s
}

.sb-rich-message .sb-input>span.sb-active {
    font-size: 12px;
    line-height: 10px;
    height: 10px;
    top: -3px;
    left: 5px;
    right: auto;
    background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 40%, #fff 100%) !important;
    color: #028be5;
    width: auto;
    min-width: 0;
    padding: 0 5px
}

.sb-rich-message .sb-input>span.sb-filled {
    color: #8f8f8f
}

.sb-rich-message .sb-input>span+input,
.sb-rich-message .sb-input>span+select {
    padding-top: 5px
}

.sb-rich-message .sb-input>input,
.sb-rich-message .sb-input select,
.sb-rich-message .sb-input textarea {
    background: #fff
}

.sb-rich-message .sb-input[data-type=select] select {
    padding-left: 6px
}

.sb-rich-message .sb-input[data-type=select]>span {
    cursor: default
}

.sb-rich-message .sb-input[data-type=select]>span:not(.sb-filled):not(.sb-active)+select {
    background: none;
    z-index: 2
}

.sb-rich-message .sb-input iframe {
    max-width: 100%;
    border-radius: 4px
}

.sb-rich-message .sb-input-image {
    background: #fff;
    border: 1px solid rgba(140, 140, 145, 0.30);
    border-radius: 4px
}

.sb-rich-message .sb-input-image>span,
.sb-rich-message .sb-input-image>span.sb-active {
    position: relative;
    min-width: 50px;
    top: 0;
    left: 0;
    font-size: 13px;
    line-height: 42px;
    background: none !important;
    height: auto;
    padding: 0 10px;
    color: #fff;
    width: calc(100% - 20px)
}

.sb-rich-message .sb-input-image>.image {
    background-color: #fff;
    min-width: 65px;
    border: 1px solid #fff
}

.sb-rich-message .sb-input-btn>span {
    width: calc(100% - 42px)
}

.sb-rich-message .sb-info {
    margin: 15px 0 0 0;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #ca3434
}

.sb-rich-message .sb-info:empty {
    display: none
}

.sb-rich-message .sb-buttons .sb-btn {
    margin-bottom: 10px
}

.sb-rich-message .sb-buttons .sb-btn:last-child {
    margin-bottom: 0
}

.sb-rich-message.sb-success .sb-top {
    display: none
}

.sb-rich-message .sb-link-area {
    font-size: 12px;
    line-height: 20px;
    color: gray;
    padding: 15px 0
}

.sb-rich-message .sb-link-area a {
    color: gray;
    text-decoration: underline
}

.sb-rich-message .sb-form+.sb-buttons {
    margin-top: 15px
}

.sb-rich-message .sb-card .sb-card-img,
.sb-rich-message .sb-slider .sb-card-img {
    height: 175px;
    background-size: cover;
    background-position: center center;
    margin: -12px -12px 20px -12px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    display: block
}

.sb-rich-message .sb-card .sb-card-header,
.sb-rich-message .sb-slider .sb-card-header {
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    color: #24272a
}

.sb-rich-message .sb-card .sb-card-extra,
.sb-rich-message .sb-slider .sb-card-extra {
    display: inline-block;
    background: rgba(0, 0, 0, 0.59);
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    padding: 5px 7px;
    border-radius: 3px;
    margin-top: 15px
}

.sb-rich-message .sb-card .sb-card-img+div+.sb-card-extra,
.sb-rich-message .sb-slider .sb-card-img+div+.sb-card-extra {
    position: absolute;
    top: 15px;
    left: 15px;
    margin: 0
}

.sb-rich-message .sb-card .sb-card-description,
.sb-rich-message .sb-slider .sb-card-description {
    margin-top: 15px
}

.sb-rich-message .sb-card .sb-card-btn,
.sb-rich-message .sb-slider .sb-card-btn {
    color: #028be5;
    display: block;
    text-decoration: none;
    margin: 20px -15px 0 -15px;
    padding: 0 15px 7px 15px;
    font-weight: 500;
    transition: all 0.4s;
    position: relative;
    background: none
}

.sb-rich-message .sb-card .sb-card-btn:hover,
.sb-rich-message .sb-slider .sb-card-btn:hover {
    color: #004c7d;
    background: none !important
}

.sb-rich-message .sb-card .sb-card-btn.sb-loading:before,
.sb-rich-message .sb-slider .sb-card-btn.sb-loading:before {
    margin-top: -9px
}

.sb-rich-message .sb-card .sb-card-btn[class*="sb-icon-"]:before,
.sb-rich-message .sb-slider .sb-card-btn[class*="sb-icon-"]:before {
    top: 19px;
    right: 15px;
    position: absolute
}

.sb-rich-message .sb-slider {
    margin: -13px -12px 0 -12px;
    overflow: hidden
}

.sb-rich-message .sb-slider>div {
    display: flex
}

.sb-rich-message .sb-slider>div>div {
    position: relative;
    min-width: 100%;
    transition: margin-left 1s
}

.sb-rich-message .sb-slider .sb-card-img {
    margin: 0 0 20px 0
}

.sb-rich-message .sb-slider .sb-card-header,
.sb-rich-message .sb-slider .sb-card-description {
    margin-left: 15px;
    margin-right: 15px
}

.sb-rich-message .sb-slider .sb-card-description {
    height: 63px;
    overflow: hidden
}

.sb-rich-message .sb-slider .sb-card-description:empty {
    display: none
}

.sb-rich-message .sb-slider .sb-card-btn {
    margin: 20px 0 -3px 0
}

.sb-rich-message .sb-slider-images {
    margin: -12px;
    border-radius: 5px;
    background: #000;
    cursor: pointer
}

.sb-rich-message .sb-slider-images .sb-card-img {
    margin: 0;
    transition: all 0.4s
}

.sb-rich-message .sb-slider-images .sb-card-img:hover {
    opacity: 0.8
}

.sb-rich-message[data-type="slider-images"] .sb-slider-arrow {
    top: calc(50% - 15px)
}

.sb-rich-message .sb-slider-arrow {
    position: absolute;
    top: 160px;
    left: -10px;
    margin: 0;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 11px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s;
    display: none
}

.sb-rich-message .sb-slider-arrow:hover {
    color: #028be5
}

.sb-rich-message .sb-slider-arrow.sb-active {
    display: block
}

.sb-rich-message .sb-slider-arrow:before {
    line-height: 30px
}

.sb-rich-message .sb-slider-arrow.sb-icon-arrow-right {
    left: auto;
    right: -10px
}

.sb-rich-message .sb-btn {
    width: auto;
    display: block;
    border-radius: 4px
}

.sb-rich-message[disabled] .sb-buttons .sb-btn {
    background: none;
    border: 1px solid rgba(140, 140, 145, 0.30);
    color: #24272a !important;
    font-weight: 400;
    cursor: default
}

.sb-rich-message[disabled] .sb-input-text {
    border: 1px solid rgba(140, 140, 145, 0.30) !important;
    border-radius: 4px
}

.sb-rich-message[disabled] .sb-input-text span {
    color: #24272a;
    position: static;
    height: auto;
    padding: 0 10px;
    background: none !important;
    font-size: 13px;
    line-height: 44px
}

.sb-rich-message[disabled] .sb-input-text input {
    display: none
}

.sb-rich-message[disabled] .sb-select p {
    display: none
}

.sb-rich-message[disabled] .sb-select ul {
    display: block;
    box-shadow: none;
    padding: 0 !important;
    margin: 0;
    background: none;
    border: 1px solid rgba(140, 140, 145, 0.30) !important;
    border-radius: 4px;
    position: static
}

.sb-rich-message[disabled] .sb-select li {
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    background: none !important;
    color: #24272a !important
}

.sb-rich-message[disabled].sb-rich-inputs .sb-submit {
    display: none
}

.sb-rich-message[disabled][data-type="chips"] .sb-content {
    display: none
}

.sb-rich-message.sb-rich-card {
    padding: 0
}

.sb-list .sb-rich-registration .sb-buttons,
.sb-list .sb-rich-login .sb-buttons {
    text-align: center
}

.sb-rich-success {
    display: block
}

.sb-rich-success+.sb-rich-success {
    padding-top: 10px
}

.sb-rich-success>span+div {
    padding-top: 12px
}

.sb-rich-loading {
    width: 30px;
    height: 30px
}

.sb-list .sb-rich-select p {
    height: 35px;
    line-height: 35px;
    min-width: 100px;
    border-radius: 4px;
    border: 1px solid #cfcfcf;
    background: #fff;
    padding: 0 25px 0 15px
}

.sb-list .sb-rich-select p:after {
    right: 8px
}

.sb-list .sb-rich-select p:hover {
    border: 1px solid #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2)
}

.sb-list .sb-rich-select ul {
    margin-bottom: 25px;
    min-width: 140px
}

.sb-list .sb-rich-table {
    overflow: hidden
}

.sb-list .sb-rich-table .sb-content {
    overflow-x: scroll
}

.sb-timetable>div {
    margin-bottom: 10px
}

.sb-timetable>div>div:first-child {
    font-weight: 500
}

.sb-timetable>div>div[data-time] {
    display: block
}

.sb-timetable>div>div:last-child span {
    padding: 0 5px
}

.sb-timetable>span {
    position: relative;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    line-height: 13px;
    font-size: 11px;
    margin-top: 20px;
    display: block
}

.sb-timetable>span i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    line-height: 12px
}

[data-id="rating"] .sb-input-textarea {
    margin: 0 15px 15px 15px
}

.sb-rating {
    display: flex;
    align-items: center;
    justify-content: center
}

.sb-rating>span {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .3px
}

.sb-rating>div {
    display: flex;
    padding-left: 10px
}

.sb-rating .sb-input-textarea {
    display: none
}

.sb-rating .sb-input-textarea+div {
    padding: 0
}

.sb-rating i {
    position: relative;
    overflow: visible;
    margin: 0 10px;
    font-size: 15px;
    line-height: 14px
}

.sb-rating i span {
    position: absolute;
    opacity: 0;
    white-space: nowrap;
    font-style: normal;
    background: #24272a;
    color: #fff;
    font-size: 13px;
    letter-spacing: .3px;
    padding: 7px 10px;
    top: -40px;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -20px)
}

.sb-rating i:hover span {
    opacity: 1;
    transform: translate(-50%, 0);
    transition: all .5s
}

.sb-rating i.sb-loading span {
    display: none
}

.sb-rating .sb-loading {
    width: 20px;
    height: 20px
}

.sb-rating [data-rating] i {
    margin-left: 0
}

.sb-rating div.sb-submit+.sb-submit {
    margin-left: 15px
}

.sb-rating [data-rating="positive"] {
    cursor: pointer
}

.sb-rating [data-rating="positive"] span {
    background-color: #1a9260
}

.sb-rating [data-rating="positive"]:hover {
    color: #1a9260
}

.sb-rating [data-rating="negative"] {
    cursor: pointer
}

.sb-rating [data-rating="negative"] span {
    background-color: #ca3434
}

.sb-rating [data-rating="negative"]:hover {
    color: #ca3434
}

.sb-rating-message>div:first-child {
    color: #ca3434;
    font-size: 13px;
    letter-spacing: .3px;
    font-weight: 500
}

.sb-rating-message>div:first-child i {
    font-size: 15px;
    margin-right: 10px;
    transform: translateY(3px);
    display: inline-block
}

.sb-rating-message>div:first-child+div {
    margin-top: 10px
}

.sb-rating-message.sb-rating-positive>div:first-child {
    color: #1a9260
}

.sb-articles {
    text-align: left
}

.sb-articles>div {
    letter-spacing: .3px;
    cursor: pointer
}

.sb-articles>div>div {
    line-height: 25px;
    max-height: 50px;
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    transition: all 0.4s
}

.sb-articles>div>span {
    font-weight: 400;
    padding-top: 5px;
    display: block;
    height: 17px;
    font-size: 13px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.3px;
    color: #fff
}

.sb-articles>div>span:empty {
    display: none
}

.sb-articles>div:hover>div {
    color: #028be5
}

.sb-articles>div+div {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #d5d5d5
}

.sb-articles>div+.sb-title {
    border-top: none
}

.sb-articles>div.sb-title {
    font-weight: 500;
    font-size: 17px;
    color: #028be5;
    cursor: default
}

.sb-articles>div.sb-title+div {
    border-top: none;
    padding-top: 0
}

.sb-articles>p {
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #fff
}

.sb-rich-articles .sb-articles {
    margin: 25px 0
}

.sb-rich-cnt[data-type="chips"] {
    box-shadow: none !important;
    border: none !important;
    background: none !important;
    padding: 0
}

.sb-rich-cnt[data-type="chips"] .sb-top {
    margin-bottom: 6px
}

.sb-rich-cnt[data-type="chips"] .sb-text {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 13px 15px
}

.sb-rich-cnt[data-type="chips"] .sb-content {
    margin-top: 11px
}

.sb-rich-cnt[data-type="chips"] .sb-buttons {
    margin-bottom: -8px;
    display: flex;
    flex-wrap: wrap
}

.sb-rich-cnt[data-type="chips"] .sb-buttons .sb-btn {
    overflow: hidden;
    margin: 0 10px 10px 0
}

.sb-rich-cnt[data-type="chips"] .sb-time {
    margin-top: 5px !important
}

.sb-rich-cnt[data-type="video"] {
    padding: 0
}

.sb-rich-cnt[data-type="video"] .sb-rich-message {
    padding: 0;
    border-radius: 4px
}

.sb-rich-cnt[data-type="video"] .sb-text {
    background: none;
    margin: 10px 10px -10px 10px
}

.sb-rich-cnt[data-type="video"] iframe {
    display: block;
    border-radius: 4px
}

.sb-rich-cnt[data-type="video"] .sb-time {
    margin-top: 10px !important
}

.sb-rich-chips .sb-btn,
.sb-rich-buttons .sb-btn {
    height: auto;
    line-height: 19px;
    padding: 8px 15px
}

.sb-social-buttons {
    margin: -5px
}

.sb-social-buttons div {
    top: 0;
    position: relative;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    height: 26px;
    width: 60px;
    min-width: 60px;
    margin: 5px;
    text-align: center;
    display: inline-block;
    background: #000;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s
}

.sb-social-buttons div:hover {
    opacity: .8;
    top: -4px
}

.sb-social-buttons .sb-icon-social-fb {
    background: #4267B2
}

.sb-social-buttons .sb-icon-social-tw {
    background: #55ACEE
}

.sb-social-buttons .sb-icon-social-li {
    background: #0077B5
}

.sb-social-buttons .sb-icon-social-pi {
    background: #CB2027
}

.sb-social-buttons .sb-icon-social-wa {
    background: #25D366
}

.sb-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px
}

.sb-grid>div {
    margin: 0 !important
}

.sb-grid-3 {
    grid-template-columns: 1fr 1fr 1fr
}

@font-face {
    font-family: "Support Board Font";
    src: url("../media/fonts/bold.woff2") format("woff2"), url("../media/fonts/bold.woff") format("woff");
    font-weight: 600;
    font-style: normal
}

@keyframes sb-fade-out {
    0% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes sb-typing {
    0% {
        width: 0
    }

    100% {
        width: 15px
    }
}

@keyframes sb-fade-in-out {
    0% {
        opacity: 0
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.sb-fade-out {
    opacity: 0;
    animation: sb-fade-out .5s
}

body,
html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #f5f7fa
}

.sb-admin,
.sb-admin input,
.sb-admin textarea,
.sb-admin select,
.sb-title,
.daterangepicker,
.ct__content {
    font-family: "Support Board Font", "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial, sans-serif;
    color: #24272a
}

.sb-admin,
.sb-admin * {
    box-sizing: content-box
}

.sb-admin ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.sb-admin li {
    margin: 0
}

.sb-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.sb-title.sb-title-search {
    position: relative
}

.sb-title.sb-title-search .sb-search-btn {
    position: absolute;
    right: 0;
    top: -12px;
    width: 30px
}

.cp-color-picker {
    z-index: 9
}

.sb-tooltip>div,
.sb-admin>.sb-header>.sb-admin-nav>div>a>span,
.sb-account>div,
.sb-lightbox,
.sb-color-palette ul,
.sb-flows-blocks-nav-box .sb-close {
    background: #fff;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 99995;
    list-style: none
}

hr {
    background: #e6e6e6;
    height: 1px;
    border: none;
    margin: 30px 0
}

.sb-admin-nav-right [data-value="status"],
td.sb-online,
td.sb-offline {
    position: relative
}

.sb-admin-nav-right [data-value="status"]:before,
td.sb-online:before,
td.sb-offline:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    margin-top: -4px;
    top: 50%;
    right: 3px;
    background: #13ca7e
}

.sb-admin-nav-right [data-value="status"]:after,
td.sb-online:after,
td.sb-offline:after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    border-radius: 50%;
    margin-top: -7px;
    top: 50%;
    right: 0;
    background: rgba(19, 202, 126, 0.2)
}

.sb-admin-nav-right [data-value="status"].sb-offline:after,
td.sb-online.sb-offline:after,
td.sb-offline.sb-offline:after {
    display: none !important
}

td.sb-offline:after {
    display: none !important
}

.sb-offline:before {
    background: #d6d6d6 !important
}

.sb-flex {
    display: flex;
    align-items: center;
    align-content: center
}

.sb-flex .sb-btn+.sb-btn,
.sb-flex .sb-btn+.sb-btn-icon {
    margin-left: 15px
}

.sb-menu-wide ul,
.sb-tab>.sb-nav>ul {
    display: flex
}

.sb-menu-wide ul li,
.sb-tab>.sb-nav>ul li {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    line-height: 38px;
    margin: 0 30px 0 0;
    transition: all 0.4s;
    letter-spacing: 0.3px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none
}

.sb-menu-wide ul li span,
.sb-tab>.sb-nav>ul li span {
    font-weight: 400;
    opacity: 0.7;
    font-size: 12px;
    display: inline-block;
    letter-spacing: 1px;
    transform: translateY(-2px)
}

.sb-menu-wide ul li.sb-active,
.sb-menu-wide ul li:hover,
.sb-tab>.sb-nav>ul li.sb-active,
.sb-tab>.sb-nav>ul li:hover {
    color: #028be5
}

.sb-menu-wide ul li.sb-active,
.sb-tab>.sb-nav>ul li.sb-active {
    border-bottom: 2px solid #028be5;
    transition: none
}

.sb-menu-wide ul li.sb-tab-nav-title,
.sb-tab>.sb-nav>ul li.sb-tab-nav-title {
    font-size: 16px;
    font-weight: 600;
    cursor: default;
    color: #24272a
}

.sb-menu-wide ul li+li.sb-tab-nav-title,
.sb-tab>.sb-nav>ul li+li.sb-tab-nav-title {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e1e1e1
}

.sb-menu-wide>div {
    display: none
}

.sb-menu li ul {
    position: absolute;
    left: 100%;
    margin-top: -36px;
    display: none
}

.sb-menu li ul li {
    color: #24272a
}

.sb-menu li:hover ul {
    display: block;
    animation: sb-fade-animation 0.4s
}

.sb-tab {
    display: flex
}

.sb-tab>div>div,
.sb-tab>div .sb-nav>div {
    display: none
}

.sb-tab>div>div.sb-active,
.sb-tab>div>div.sb-menu-wide,
.sb-tab>div .sb-nav>div.sb-active,
.sb-tab>div .sb-nav>div.sb-menu-wide {
    display: block
}

.sb-tab>div.sb-nav-only+div>div {
    display: block
}

.sb-tab>div.sb-nav-only+div>div.sb-tab {
    display: flex
}

.sb-tab>.sb-nav {
    min-width: 200px;
    border-right: 1px solid rgba(140, 140, 145, 0.30);
    padding: 15px 20px 20px 20px
}

.sb-tab>.sb-nav>ul {
    display: block;
    max-width: 200px
}

.sb-tab>.sb-nav>ul li {
    margin-right: 0
}

.sb-tab>.sb-nav>ul li.sb-active {
    border-bottom: none
}

.sb-tab>.sb-nav.sb-scroll-area {
    border-right: 1px rgba(140, 140, 145, 0.30) solid
}

.sb-tab .sb-content {
    width: 100%;
    padding: 20px 15px 30px 30px
}

.sb-tab .sb-content>.sb-active {
    animation: sb-fade-animation 0.4s
}

.sb-tab .sb-content>div:last-child {
    margin-bottom: 0
}

.sb-tab h2 {
    font-size: 15px;
    letter-spacing: .3px;
    line-height: 27px;
    margin: 2px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sb-tab>.sb-nav>.sb-menu-wide {
    margin-bottom: 15px
}

#sb-table-chatbot-files:empty,
#sb-table-chatbot-files:empty+hr,
#sb-table-chatbot-website:empty,
#sb-table-chatbot-website:empty+hr {
    display: none
}

#sb-table-chatbot-files td:last-child i,
#sb-table-chatbot-website td:last-child i,
.sb-inner-tab .sb-nav>ul li i {
    width: 30px;
    height: 30px;
    line-height: 35px;
    font-size: 15px;
    text-align: center;
    color: #ca3434;
    position: absolute;
    display: none;
    cursor: pointer;
    right: -5px;
    top: 4px
}

#sb-table-chatbot-files tr:hover td:last-child i,
#sb-table-chatbot-website tr:hover td:last-child i,
.sb-inner-tab .sb-nav>ul li:hover i {
    display: block;
    animation: sb-fade-animation 0.5s
}

#sb-table-chatbot-files td:last-child i.sb-loading,
#sb-table-chatbot-website td:last-child i.sb-loading,
.sb-inner-tab .sb-nav>ul li i.sb-loading {
    display: block
}

.sb-inner-tab .sb-nav>ul li {
    position: relative;
    padding-right: 25px;
    font-weight: 500;
    font-size: 13px;
    color: #fff
}

.sb-inner-tab .sb-nav>ul li span {
    position: absolute;
    right: 32px;
    top: 2px;
    padding-left: 10px;
    background: #fff;
    opacity: 1
}

.sb-inner-tab .sb-nav>ul li i {
    background: #fff
}

.sb-inner-tab .sb-nav>ul>.sb-no-results {
    opacity: 0.6;
    font-weight: 400;
    font-size: 13px;
    cursor: default;
    color: #24272a !important;
    cursor: default !important
}

.sb-inner-tab .sb-nav .sb-btn {
    display: inline-block;
    margin-top: 15px
}

.sb-menu-mobile>ul {
    display: flex
}

.sb-menu-mobile>ul li a {
    margin: 0 3px
}

.sb-menu-mobile>ul li:empty {
    display: none
}

.sb-menu-mobile>ul .sb-loading:before {
    line-height: 30px
}

.sb-menu-mobile>i,
.sb-menu-mobile .sb-mobile {
    display: none
}

.sb-menu-mobile [data-value="panel"]:not(.sb-active) {
    display: none
}

.sb-list-thumbs li {
    display: flex;
    cursor: pointer;
    transition: all 0.4s;
    padding: 5px 15px
}

.sb-list-thumbs li>div.sb-image {
    background-size: cover;
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 15px;
    background-position: center center;
    border: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-list-thumbs li>div {
    min-width: 0
}

.sb-list-thumbs li>div span {
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    transition: all 0.4s
}

.sb-list-thumbs li>div span:last-child {
    color: #fff;
    font-weight: 400
}

.sb-list-thumbs li:hover {
    background-color: #f5f7fa
}

.sb-list-thumbs li:hover span:first-child {
    color: #028be5
}

.sb-table {
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

.sb-table th {
    white-space: nowrap;
    padding: 9px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(140, 140, 145, 0.30);
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #8C8C91
}

.sb-table td {
    white-space: nowrap;
    padding: 9px 15px;
    text-align: left;
    color: #8C8C91;
    font-size: 14px;
    transition: all 0.4s
}

.sb-table td a {
    position: relative;
    text-decoration: none;
    color: #24272a
}

.sb-table td .sb-profile span {
    font-size: 15px;
    padding-top: 2px
}

.sb-table td.sb-td-ut {
    text-transform: uppercase;
    font-size: 13px
}

.sb-table td.sb-td-language {
    text-transform: uppercase
}

.sb-table tr:last-child td {
    border-bottom: none
}

.sb-table input[type="checkbox"] {
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    outline: 0;
    padding: 0;
    margin: 8px 0;
    text-align: center;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    border-radius: 3px;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none
}

.sb-table input[type="checkbox"]:checked,
.sb-table input[type="checkbox"]:hover {
    border-color: #028be5
}

.sb-table input[type="checkbox"]:checked:before {
    content: "\77";
    font-family: "Support Board Icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 22px;
    font-size: 10px;
    margin: 0;
    width: 100%;
    height: 100%;
    color: #028be5
}

.sb-table tr:hover td {
    cursor: pointer;
    background-color: #03040663 !important
}

.sb-table .sb-no-results {
    position: absolute;
    white-space: nowrap;
    margin: 30px 15px
}

.sb-table tr+p {
    display: none
}

.sb-table.sb-loading {
    text-indent: unset;
    height: 175px
}

.sb-table.sb-loading tbody:empty,
.sb-table.sb-loading thead {
    display: none
}

.sb-profile {
    position: relative;
    color: #24272a;
    line-height: 30px;
    padding-left: 45px;
    text-decoration: none;
    display: flex;
    align-items: center
}

.sb-profile img {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.sb-profile>span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;

}

.sb-profile-list>ul>li>span,
.sb-panel-details .sb-title {
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    padding-right: 10px;
    font-size: 14px;
    letter-spacing: .3px;
    color: #8C8C91;
    /* text-transform: uppercase; */
    transition: all 0.4s
}

.sb-profile-list>ul>li>span span,
.sb-panel-details .sb-title span {
    color: #24272a
}

.sb-profile-list>ul>li,
.sb-panel-details .sb-list-items>div,
.sb-panel-details .sb-list-items>a {
    position: relative;
    font-size: 13px;
    line-height: 27px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.sb-list-items:not(:empty)+.sb-btn {
    margin-top: 15px
}

.sb-profile-list {
    padding: 0
}

.sb-profile-list>ul {
    margin-top: 15px
}

.sb-profile-list>ul>li .sb-icon,
.sb-profile-list>ul>li>img {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 14px;
    color: #004c7d
}

.sb-profile-list>ul>li .sb-icon:before,
.sb-profile-list>ul>li>img:before {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    position: absolute
}

.sb-profile-list>ul>li>img {
    width: 15px;
    height: 15px
}

.sb-profile-list>ul>li>span {
    position: relative;
    top: 1px
}

.sb-profile-list>ul>li>span:empty {
    display: none
}

.sb-profile-list>ul>li label {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-align: right;
    font-family: "Manrope", sans-serif;


}

.sb-profile-list>ul>li:first-child span {
    text-transform: uppercase
}

.sb-profile-list [data-id="wp-id"]:hover,
.sb-profile-list [data-id="wp-id"]:hover label,
.sb-profile-list [data-id="conversation-source"]:hover,
.sb-profile-list [data-id="conversation-source"]:hover label,
.sb-profile-list [data-id="location"]:hover,
.sb-profile-list [data-id="location"]:hover label,
.sb-profile-list [data-id="timezone"]:hover,
.sb-profile-list [data-id="timezone"]:hover label,
.sb-profile-list [data-id="current_url"]:hover,
.sb-profile-list [data-id="current_url"]:hover label,
.sb-profile-list [data-id="envato-purchase-code"]:hover,
.sb-profile-list [data-id="envato-purchase-code"]:hover label {
    color: #028be5;
    cursor: pointer
}

.sb-profile-list [data-id="browser_language"] img,
.sb-profile-list [data-id="language"] img {
    border-radius: 50%
}

.sb-profile-list [data-id="country_code"] img {
    border-radius: 2px;
    height: 10px;
    margin-top: 3px !important
}

.sb-profile-list [data-id="language"] label {
    text-transform: uppercase
}

.sb-profile-list [data-id="rating"] .sb-icon-like {
    color: #1a9260
}

.sb-profile-list [data-id="rating"] .sb-icon-dislike {
    color: #ca3434
}

.sb-panel-details {
    position: relative;
    overflow: hidden;
    height: 52px;
    display: flex;
    align-items: center;
}

.sb-panel-details h3 {
    justify-content: space-between
}

.sb-panel-details h3 img {
    height: 11px;
    margin-right: 5px
}

.sb-panel-details h3 .sb-select {
    padding: 0 !important
}

.sb-panel-details h3 .sb-select p {
    opacity: .7
}

.sb-panel-details h3 .sb-select p,
.sb-panel-details h3 .sb-select li {
    font-weight: 400
}

.sb-panel-details h3 .sb-select ul {
    right: -2px;
    left: auto
}

.sb-panel-details h3 .sb-select:hover p {
    opacity: 1
}

.sb-panel-details>div {
    position: relative
}

.sb-panel-details>div>.sb-title {
    margin: 15px 15px 0 15px
}

.sb-panel-details>div>.sb-title>i {
    position: absolute;
    right: 12px;
    font-size: 14px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    text-align: center
}

.sb-panel-details>div>.sb-title>i:hover {
    color: #028be5
}

.sb-panel-details>div>.sb-title+.sb-list-items {
    margin: 5px 0 -3px 0
}

.sb-panel-details>div .sb-list-items:last-child>p {
    margin-bottom: 5px
}

.sb-panel-details .sb-split {
    margin: 0 15px;
    display: flex;
    justify-content: space-between
}

.sb-panel-details .sb-split>div {
    width: 50%
}

.sb-panel-details .sb-split>div+div {
    border-left: 1px solid rgba(140, 140, 145, 0.30);
    padding-left: 15px
}

.sb-panel-details .sb-split>div span {
    display: block;
    margin-top: 5px;
    font-size: 13px
}

.sb-panel-details .sb-list-names {
    margin: -5px 0
}

.sb-panel-details .sb-list-names>div {
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    overflow: hidden
}

.sb-panel-details .sb-list-names>div>span {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500
}

.sb-panel-details .sb-list-names>div>span:last-child {
    opacity: .6;
    font-weight: 400
}

.sb-panel-details .sb-list-names>div.sb-expired>span:last-child {
    opacity: 1;
    color: #ca3434
}

.sb-panel-details .sb-list-links>a {
    padding: 0 15px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #24272a;
    transition: all 0.4s
}

.sb-panel-details .sb-list-links>a>span span {
    display: inline-block
}

.sb-panel-details .sb-list-links>a>span:last-child {
    color: #7e8c98
}

.sb-panel-details .sb-list-links>a i {
    position: absolute;
    right: 0;
    width: 27px;
    height: 25px;
    line-height: 27px;
    text-align: left;
    font-size: 13px;
    opacity: .5;
    z-index: 2
}

.sb-panel-details .sb-list-links>a i.sb-icon-file {
    font-size: 16px;
    line-height: 23px
}

.sb-panel-details .sb-list-links>a i.sb-icon-file:hover {
    color: #028be5
}

.sb-panel-details .sb-list-links>a i:hover {
    opacity: 1;
    color: #ca3434
}

.sb-panel-details .sb-list-links>a i.sb-loading {
    opacity: 1;
    right: 6px;
    top: 4px
}

.sb-panel-details .sb-list-links>a i.sb-loading:before {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 13px
}

.sb-panel-details .sb-list-links>a:hover {
    color: #028be5
}

.sb-panel-details .sb-list-links>p {
    font-size: 13px;
    padding: 0 0 0 15px;
    margin: 0;
    opacity: .5
}

.sb-panel-details .sb-list-icon>a {
    padding-right: 40px
}

.sb-panel-details .sb-accordion>div {
    position: relative;
    overflow: hidden
}

.sb-panel-details .sb-accordion>div>span {
    padding: 0 15px;
    cursor: pointer;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.4s
}

.sb-panel-details .sb-accordion>div>span>span:first-child {
    opacity: .6
}

.sb-panel-details .sb-accordion>div>span>span+span {
    margin-left: 15px
}

.sb-panel-details .sb-accordion>div>span>a {
    position: absolute;
    right: 15px;
    line-height: 30px;
    text-decoration: none;
    font-weight: normal;
    font-style: normal;
    color: #24272a;
    transition: all 0.4s
}

.sb-panel-details .sb-accordion>div>span>a:hover {
    color: #028be5
}

.sb-panel-details .sb-accordion>div>span:hover {
    color: #028be5
}

.sb-panel-details .sb-accordion>div>div {
    height: 0;
    overflow: hidden
}

.sb-panel-details .sb-accordion>div>div>a {
    display: block;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #24272a;
    transition: all 0.4s
}

.sb-panel-details .sb-accordion>div>div>a span:first-child {
    opacity: .6
}

.sb-panel-details .sb-accordion>div>div>a span:last-child {
    opacity: 1
}

.sb-panel-details .sb-accordion>div>div>a:hover {
    color: #028be5
}

.sb-panel-details .sb-accordion>div.sb-active>div {
    padding: 15px;
    height: auto
}

.sb-panel-details .sb-accordion>div .sb-multiline {
    line-height: 20px;
    padding: 5px 0
}

.sb-panel-details>i {
    position: absolute;
    right: 12px;
    top: 20px;
    font-size: 13px;
    cursor: pointer;
    opacity: .7;
    transition: all 0.4s
}

.sb-panel-details>i:hover {
    opacity: 1;
    color: #028be5
}

.sb-panel-details>i.sb-loading {
    position: static;
    height: 60px;
    display: block;
    opacity: 1
}

.sb-panel-details>i+.sb-list-names {
    padding-top: 15px
}

.sb-panel-details>.sb-title {
    padding: 15px 15px 0 15px;
    display: block
}

.sb-panel-details>.sb-title .sb-btn-text {
    margin-left: 15px;
    float: right;
    text-transform: none
}

.sb-panel-details>.sb-title .sb-btn-text i {
    margin-right: 5px
}

.sb-panel-details .sb-btn {
    background-color: #fff;
    color: #fff;
    border: 1px solid #ccd2d5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    padding: 0 10px;
    white-space: nowrap;
    border-radius: 4px;
    height: 33px;
    line-height: 33px
}

.sb-panel-details .sb-btn:hover {
    color: #fff;
    border-color: #028be5;
    background-color: #028be5
}

.sb-panel-details .sb-btn.sb-loading {
    width: 15px;
    background-color: #fff !important;
    border: 1px solid rgba(140, 140, 145, 0.30) !important
}

.sb-panel-details .sb-btn.sb-loading:before {
    color: #028be5;
    cursor: default
}

.sb-panel-details>.sb-btn:first-child {
    margin: 15px 15px 0 15px
}

.sb-panel-details.sb-collapse>.sb-collapse-btn {
    margin-left: 15px
}

.sb-panel-details:empty {
    display: none
}

.sb-panel-attachments {
    overflow: visible
}

.sb-info-card {
    position: fixed;
    bottom: 10px;
    right: 10px;
    left: 10px;
    border-radius: 4px;
    padding: 10px 30px;
    background: #1a9260;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: none;
    z-index: 9999995
}

.sb-info-card.sb-active {
    display: block;
    animation: sb-fade-bottom-animation .5s
}

.sb-info-card h3 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 25px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    font-family: "Manrope", sans-serif;
    color: #030406;
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-info-card p {
    margin: 5px 0 5px 0;
    padding: 0;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.3px
}

.sb-info-card p:empty {
    display: none
}

.sb-info-card a {
    color: #fff
}

.sb-info-card .sb-icon-link {
    text-decoration: none;
    font-size: 13px;
    margin-left: 5px;
    display: inline-block;
    transform: translateY(2px)
}

.sb-info-card span {
    text-decoration: underline
}

.sb-info-card span:hover {
    text-decoration: none
}

.sb-info-card.sb-info-card-error {
    background: #ca3434
}

.sb-info-card.sb-info-card-info {
    background: #fff
}

.sb-info-card.sb-info-card-info h3 {
    font-weight: 400;
    font-size: 13px
}

.sb-panel-notes>div>div {
    margin: 0 15px;
    background: #ffeab0;
    padding: 15px;
    border-radius: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden
}

.sb-panel-notes>div>div>span:first-child {
    display: block;
    font-weight: 500;
    position: relative;
    margin-bottom: 10px
}

.sb-panel-notes>div>div>span:first-child i {
    position: absolute;
    right: -5px;
    font-size: 10px;
    cursor: pointer;
    opacity: 0;
    z-index: 9;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 23px;
    margin-top: -5px;
    transition: all .5s
}

.sb-panel-notes>div>div>span:first-child i:hover {
    color: #ca3434
}

.sb-panel-notes>div>div>span:first-child i.sb-edit-note {
    right: 17px;
    font-size: 16px;
    line-height: 26px;
    background: #ffeab0
}

.sb-panel-notes>div>div>span:first-child i.sb-edit-note:hover {
    color: #028be5
}

.sb-panel-notes>div>div>span:first-child>span {
    font-weight: 400;
    font-size: 12px;
    float: right;
    opacity: .7;
    transition-delay: 1s
}

.sb-panel-notes>div>div>span:first-child.sb-note-hide-info {
    margin-bottom: 0
}

.sb-panel-notes>div>div>span:first-child.sb-note-hide-info+span {
    padding-right: 35px
}

.sb-panel-notes>div>div>span:last-child {
    font-size: 13px;
    line-height: 21px;
    display: block;
    opacity: .9
}

.sb-panel-notes>div>div:hover>span i {
    opacity: 1
}

.sb-panel-notes>div>div:hover>span>span {
    opacity: 0;
    transition: none
}

.sb-panel-notes>div>div+div {
    margin-top: 10px
}

.sb-panel-notes>div:empty {
    margin-bottom: -15px
}

.sb-note-text a {
    color: #24272a;
    text-decoration: underline
}

.sb-panel-tags>div:empty {
    margin-bottom: -15px
}

.sb-tags-box .sb-main {
    float: left;
    width: calc(100% - 40px)
}

.sb-tags-cnt,
.sb-panel-tags>div {
    margin: -5px
}

.sb-tags-cnt>span,
.sb-panel-tags>div>span {
    padding: 5px 10px;
    margin: 5px;
    letter-spacing: .3px;
    font-size: 13px;
    line-height: 15px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    float: left;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.4s
}

.sb-tags-cnt>span {
    border: 1px dashed transparent
}

.sb-tags-cnt>span:not(.sb-active):not(:hover) {
    background: none;
    color: #24272a;
    border-color: #fff
}

.sb-tags-cnt [data-color=""].sb-active,
.sb-tags-cnt [data-color=""]:hover {
    background-color: #028be5;
    color: #fff !important
}

.sb-panel-tags>div {
    margin: 10px
}

.sb-panel-tags>div span {
    cursor: default;
    letter-spacing: 0.3px;
    font-size: 12px
}

.sb-panel-tags>div [data-color=""] {
    background-color: #028be5;
    color: #FFF
}

#sb-add-tag {
    margin: 5px;
    height: 25px;
    width: 25px;
    display: block;
    float: left
}

#sb-add-tag:before {
    font-size: 15px;
    line-height: 25px
}

.sb-popup {
    bottom: 70px
}

.sb-popup .sb-scroll-area {
    height: calc(100% - 65px)
}

.sb-popup .sb-scroll-area>p,
.sb-popup .sb-scroll-area ul>p {
    padding: 0 30px 15px 15px
}

.sb-popup .sb-scroll-area ul.sb-loading {
    height: 100%;
    text-indent: unset
}

.sb-popup .sb-scroll-area ul.sb-loading:not(:empty) {
    height: auto
}

.sb-popup .sb-scroll-area ul.sb-loading:not(:empty):before {
    top: auto;
    bottom: 0
}

.sb-popup .sb-popup-close {
    position: fixed;
    right: -25px;
    top: -25px;
    cursor: pointer;
    display: none;
    transition: all 0.4s
}

.sb-popup .sb-popup-close:hover {
    color: #ca3434
}

.sb-popup.sb-popup-lightbox {
    left: 50% !important;
    top: 50%;
    transform: translateY(-50%) translateX(-50%)
}

.sb-popup.sb-popup-lightbox .sb-popup-close {
    display: block
}

.sb-popup.sb-popup-lightbox:after {
    display: none
}

.sb-popup.sb-replies .sb-replies-list ul li {
    display: flex;
    white-space: nowrap;
    font-size: 13px;
    height: 30px;
    line-height: 33px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden
}

.sb-popup.sb-replies .sb-replies-list ul li div {
    transition: all 0.4s
}

.sb-popup.sb-replies .sb-replies-list ul li div:first-child {
    margin-right: 15px;
    font-weight: 500;
    letter-spacing: .2px;
    position: relative;
    padding-left: 15px;
    color: #fff
}

.sb-popup.sb-replies .sb-replies-list ul li div:first-child:before {
    content: "#";
    position: absolute;
    left: 0;
    font-size: 12px;
    line-height: 37px;
    opacity: 0.5
}

.sb-popup.sb-replies .sb-replies-list ul li div:first-child:empty {
    display: none
}

.sb-popup.sb-replies .sb-replies-list ul li div:last-child {
    text-overflow: ellipsis;
    overflow: hidden
}

.sb-popup.sb-replies .sb-replies-list ul li:hover {
    cursor: pointer
}

.sb-popup.sb-replies .sb-replies-list ul li:hover>div {
    color: #028be5;
    opacity: 1
}

.sb-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999995;
    font-family: "Support Board Font", "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial, sans-serif;
    display: none
}

.sb-tooltip:before {
    content: "";
    background: url(../media/triangle.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    width: 20px;
    height: 15px;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    margin-left: 1px
}

.sb-tooltip.n:before {
    top: auto;
    bottom: -11px;
    transform: translateX(-50%)
}

.sb-tooltip>div {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 12px;
    max-width: 250px;
    text-align: center;
    letter-spacing: 0.3px;
    white-space: nowrap;
    color: #030406
}

.sb-collapse>div,
.sb-collapse>ul {
    overflow: hidden;
    position: relative
}

.sb-collapse>.sb-collapse-btn {
    margin: 15px 0 -5px 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .3px;
    padding-right: 20px
}

.sb-collapse>.sb-collapse-btn:after {
    content: "\61";
    font-family: "Support Board Icons";
    position: absolute;
    right: 1px;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    text-transform: none
}

.sb-collapse>.sb-collapse-btn.sb-active:after {
    transform: rotate(180deg)
}

.sb-collapse .sb-btn+.sb-collapse-btn {
    transform: translateY(10px)
}

.sb-filter-btn i {
    z-index: 0
}

.sb-filter-btn>div {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    background: #030406;
    z-index: 4;
    padding: 15px;
    padding-right: 60px
}

.sb-filter-btn .sb-select {
    display: block;
    margin: 0 !important
}

.sb-filter-btn .sb-select ul {
    width: 100%
}

.sb-filter-btn.sb-active {
    position: static
}

.sb-filter-btn.sb-active i {
    z-index: 5;
    top: 25px;
    right: 15px
}

.sb-filter-btn.sb-active>div {
    display: block;
    border-bottom: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-filter-btn.sb-active:after {
    display: none
}

.sb-filter-btn[data-badge]:after {
    content: attr(data-badge);
    position: absolute;
    right: -17px;
    top: 5px;
    background: #ca3434;
    color: #fff;
    font-size: 10px;
    line-height: 15px;
    height: 15px;
    width: 15px;
    text-align: center;
    border-radius: 50%;
    font-weight: 500
}

.sb-filter-btn[data-badge="0"]:after {
    display: none
}

.sb-filter-star {
    cursor: pointer;
    font-size: 20px;
    height: 20px;
    transition: all 0.4s
}

.sb-filter-star:not(:hover):not(.sb-active) {
    color: #24272a
}

.sb-admin>.sb-header>.sb-admin-nav>img {
    height: 35px;
    margin: 18px 15px
}

.sb-admin>.sb-header>.sb-admin-nav>div {
    padding: 5px 0
}

.sb-admin>.sb-header>.sb-admin-nav>div>a {
    height: 50px;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.4s;
    color: #24272a
}

.sb-admin>.sb-header>.sb-admin-nav>div>a:before {
    content: "";
    position: absolute;
    left: 20px;
    font-size: 22px;
    line-height: 50px;
    opacity: 0.6;
    background-size: contain;
    background-repeat: no-repeat;
    font-family: "Support Board Icons";
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important
}

.sb-admin>.sb-header>.sb-admin-nav>div>a:hover,
.sb-admin>.sb-header>.sb-admin-nav>div>a.sb-active {
    color: #028be5
}

.sb-admin>.sb-header>.sb-admin-nav>div>a:hover span {
    transition-delay: 1s;
    visibility: visible;
    opacity: 1;
    left: 65px
}

.sb-admin>.sb-header>.sb-admin-nav>div>a>span,
.sb-account>div {
    margin: 8px 0px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    padding: 8px 12px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #282828;
    position: absolute;
    left: 185px !important;
    z-index: 9999995;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s
}

.sb-admin>.sb-header>.sb-admin-nav>div>a>span:before,
.sb-account>div:before {
    content: "";
    background: url(../media/triangle.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    width: 20px;
    height: 15px;
    top: 10px;
    left: -13px;
    transform: rotate(90deg)
}

.sb-admin>.sb-header>.sb-admin-nav>div>a>span:after,
.sb-account>div:after {
    content: "";
    position: absolute;
    width: 10px;
    top: 10px;
    bottom: 10px;
    left: 0px;
    background-color: #fff
}




.sb-admin>.sb-header>.sb-admin-nav-right>div a.sb-profile {
    padding-left: 35px
}

.sb-admin>.sb-header>.sb-admin-nav-right>div a.sb-profile img {
    width: 25px;
    height: 25px
}

.sb-admin>.sb-header>.sb-admin-nav-right>div a>i {
    font-size: 16px;
    opacity: 0.8
}

.sb-admin>.sb-header>.sb-admin-nav-right>div a>i:hover {
    opacity: 1
}

.sb-account {
    cursor: pointer;
    margin-bottom: 24px;
    text-align: center
}

.sb-account>img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
    margin: 0
}

.sb-account>div {
    position: absolute;
    bottom: 0px;
    text-align: left;
    min-width: 200px;
    padding: 0;
    transition-delay: 0.5s
}

.sb-admin>.sb-header {
    z-index: 100;
}

.sb-account>div:before {
    top: auto;
    bottom: 15px
}

.sb-account .sb-profile {
    padding: 20px 20px 20px 65px;
    border-bottom: 1px solid #d7d7d7;
    text-decoration: none;
    z-index: 9
}

.sb-account .sb-profile img {
    left: 20px
}

.sb-account .sb-profile span {
    white-space: nowrap;
    color: #030406;
    margin-left: 15px;
}

.sb-account:hover>div {
    visibility: visible;
    opacity: 1;
    left: 65px
}

.sb-account .sb-menu {
    position: relative;
    box-shadow: none;
    padding: 20px;
    margin: 0;
    z-index: 9
}

.sb-account .sb-menu li {
    padding: 6px 0;
    position: relative
}

.sb-account .sb-menu li.sb-active {
    color: #24272a
}

.sb-account .sb-menu li:hover,
.sb-account .sb-menu li.sb-active:hover {
    background: none;
    color: #028be5
}

.sb-account .sb-menu a {
    text-decoration: none;
    color: #24272a
}

.sb-account .sb-menu a:hover {
    color: #028be5
}

.sb-admin>.sb-header>.sb-admin-nav-right>div>a+a,
.sb-admin>.sb-header>.sb-admin-nav-right>div>div+a {
    margin-top: 10px
}


.sb-admin #sb-automations:before {
    content: "\e915"
}



@media (min-width: 465px) and (max-height: 475px) {
    .sb-admin>.sb-header>.sb-admin-nav>div>a {
        height: 35px
    }

    .sb-admin>.sb-header>.sb-admin-nav>div>a:before {
        line-height: 35px
    }
}

.sb-enlarger:not(.sb-active) {
    cursor: pointer;
    position: relative
}

.sb-enlarger:not(.sb-active)>div {
    display: none !important
}

.sb-enlarger:not(.sb-active):before {
    content: "\4d";
    font-family: "Support Board Icons";
    position: absolute;
    left: 1px;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    text-transform: none
}

.sb-admin {
    height: 100%;
    width: calc(100% - 220px);
    padding-left: 220px;
    position: fixed;
    font-size: 14px;
    line-height: 17px;
    background: linear-gradient(153deg, rgba(3, 4, 6, 0) 51%, rgba(125, 94, 255, 0.20) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(125, 94, 255, 0.20) 100%), #030406;
    top: 0;
    z-index: 9;
}

.sb-admin.sb-pwa {
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-admin.sb-admin-start {
    width: auto;
    padding: 30px;
    position: static
}

.sb-admin>main {
    padding: 0;
    height: 100%;
    overflow: hidden
}

.sb-admin>main>div:not(.sb-active) {
    display: none
}

.sb-admin>main>div {
    height: 100%
}

.sb-admin>main>div.sb-active {
    animation: sb-fade-animation 0.4s
}

.sb-admin>main>div>.sb-top-bar {
    height: 40px;
    margin: 0;
    padding: 15px 20px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-admin>main>div>.sb-top-bar h2 {
    margin: 0;
    font-size: 22px;
    line-height: 35px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Space Grotesk", sans-serif;
}

.label-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 14px;
    font-family: sans-serif;
}

/* USER – Blue */
.user {
    background-color: #e0f2ff;
    /* light blue */
    color: #1e40af;
    /* blue-800 */
}

/* LEAD – Green */
.lead {
    background-color: #d1fae5;
    /* light green */
    color: #065f46;
    /* green-800 */
}

/* VISITOR – Purple */
.visitor {
    background-color: #f5ebff;
    /* light purple */
    color: #6b21a8;
    /* purple-800 */
}

.sb-admin>main>div>.sb-top-bar>div {
    display: flex;
    align-items: center
}

.sb-admin>main>div>.sb-top-bar>div h2 {
    margin-right: 60px
}

.sb-admin>main>div>.sb-top-bar>div h3+.sb-setting {
    margin-left: 15px
}

.sb-admin>main>div>.sb-top-bar>div:first-child {
    overflow: hidden;
    padding-right: 30px
}

.sb-admin>main>div>.sb-top-bar>div:first-child>ul li {
    flex-shrink: 0
}

.sb-admin>main>div>.sb-top-bar>div:last-child .sb-search-btn {
    margin-right: 30px
}

.sb-admin>main>div>.sb-top-bar>div:last-child .sb-btn+.sb-btn,
.sb-admin>main>div>.sb-top-bar>div:last-child .sb-btn-icon+.sb-btn,
.sb-admin>main>div>.sb-top-bar>div:last-child .sb-btn+.sb-btn-icon {
    margin-left: 15px
}

.sb-admin>main>div>.sb-tab {
    height: calc(100% - 70px)
}

.sb-search-dropdown {
    min-width: 391px;
    position: relative;
    text-align: right
}

.sb-search-dropdown .sb-search-btn {
    margin-left: auto
}

.sb-search-dropdown .sb-search-btn input {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 0px 5px rgba(39, 156, 255, 0.5)
}

.sb-search-dropdown .sb-search-dropdown-items {
    position: absolute;
    right: 30px;
    left: -1px;
    top: 40px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border: 1px solid #028be5;
    box-shadow: 0 0px 5px rgba(39, 156, 255, 0.5);
    clip-path: inset(0px -10px -10px -10px);
    border-top: none;
    text-align: left;
    display: none;
    z-index: 4
}

.sb-search-dropdown .sb-search-dropdown-items div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 25px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.4s
}

.sb-search-dropdown .sb-search-dropdown-items div:hover {
    color: #028be5
}

.sb-search-dropdown .sb-search-dropdown-items:empty {
    padding: 2px;
    margin-top: -2px
}

.sb-search-dropdown .sb-active+.sb-search-dropdown-items {
    display: block
}

.sb-board {
    display: flex;
    justify-content: space-between;
    height: 100%
}

.sb-board>div>.sb-top {
    border-bottom: 1px rgba(140, 140, 145, 0.30) solid;
    padding: 15px 20px;

    box-sizing: border-box
}

.sb-board>div>.sb-top .sb-flex {
    justify-content: flex-end
}

.sb-board>.sb-admin-list {
    max-width: 360px;
    min-width: 360px;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    position: relative
}

.sb-board>.sb-admin-list>.sb-top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sb-board>.sb-admin-list>.sb-top>.sb-select>p span {
    padding-left: 5px
}

.sb-board>.sb-admin-list .sb-scroll-bar {
    opacity: 0.2 !important
}

.sb-board>.sb-admin-list>.sb-loading {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 9
}

.sb-board>.sb-admin-list>.sb-scroll-area {
    height: calc(100% - 90px);
    padding: 10px 0
}

.sb-board>.sb-admin-list>.sb-scroll-area li {
    position: relative;
    padding: 18px 20px 15px 20px;
    max-height: 85px;
    opacity: 0.8;
    cursor: pointer;
    margin: 0 10px;
    margin-top: 10px;
    border-radius: 5px;
    z-index: 3;
    background: transparent;
    transition: all 0.4s
}

.sb-board>.sb-admin-list>.sb-scroll-area li>.sb-notification-counter {
    position: absolute;
    right: 19px;
    bottom: 17px;
    height: 21px;
    width: 21px;
    line-height: 21px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    background: #028be5;
    color: #fff;
    z-index: 9;
    letter-spacing: 0.3px;
    animation: sb-fade-animation .3s
}

.sb-board>.sb-admin-list>.sb-scroll-area li:hover:after {
    opacity: 0
}

/* For Chrome, Edge, Safari */
.sb-scroll-area::-webkit-scrollbar {
    width: 12px;
    background: #181824;
    /* Scrollbar track background color */
    border-radius: 8px;
}

.sb-scroll-area::-webkit-scrollbar-thumb {
    background: #7d5eff;
    /* Scrollbar thumb color */
    border-radius: 8px;
}

.sb-scroll-area::-webkit-scrollbar-track {
    background: #181824;
    /* Track background ensures full coverage */
    border-radius: 8px;
}

/* For Firefox */
.sb-scroll-area {
    scrollbar-width: thin;
    scrollbar-color: #7d5eff #181824;
    overflow-y: auto;
    /* thumb and track */
}


.sb-board>.sb-admin-list>.sb-scroll-area li.sb-active {
    opacity: 1;
}

.sb-board>.sb-admin-list>.sb-scroll-area li.sb-active .sb-name {
    color: #c7c7c7
}

.sb-board>.sb-admin-list>.sb-scroll-area li.sb-active:after {
    opacity: 0
}

.sb-board>.sb-admin-list>.sb-scroll-area li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    top: 10px;
    width: 2px;
    background-color: transparent;
    border-radius: 3px;
    transition: all 0.4s;
    z-index: 2
}



.sb-board>.sb-admin-list>.sb-scroll-area li:last-child:after {
    display: none
}

.sb-board>.sb-admin-list>.sb-scroll-area li .sb-profile {
    align-items: flex-start;
    padding-left: 58px
}

.sb-board>.sb-admin-list>.sb-scroll-area li .sb-profile img {
    width: 45px;
    height: 45px;
    transform: none;
    top: 0
}

.sb-board>.sb-admin-list>.sb-scroll-area li .sb-profile .sb-name {
    height: 23px;
    line-height: 23px;
    padding-right: 10px;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.3px;
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-board>.sb-admin-list>.sb-scroll-area li .sb-profile .sb-time {
    margin-left: auto;
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0.8
}

.sb-board>.sb-admin-list>.sb-scroll-area li p {
    font-size: 14px;
    height: 22px;
    line-height: 22px;
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.3px;
    padding-left: 58px;
    font-weight: 500;
    margin: 0;
    color: #8C8C91;
    font-family: "Manrope", sans-serif;

}

.sb-board>.sb-admin-list>.sb-scroll-area li b {
    font-weight: 400
}

.sb-board>.sb-admin-list>.sb-scroll-area li .sb-notification-counter+div+p {
    margin-right: 30px
}

.sb-board>.sb-admin-list>.sb-scroll-area li[data-conversation-status="2"] {
    opacity: 1;
    font-weight: 500
}

.sb-board>.sb-admin-list>.sb-scroll-area li[data-conversation-status="2"]:not(.sb-active) {
    background-color: transparent
}

.sb-board>.sb-admin-list>.sb-scroll-area li[data-conversation-status="2"] .sb-name {
    font-size: 16px;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    color: #fff;
}

.sb-board>.sb-admin-list>.sb-scroll-area li[data-conversation-status="2"] .sb-time {
    font-weight: 500;
    color: #8C8C91
}

.sb-board>.sb-admin-list>.sb-scroll-area li[data-conversation-status="-1"] .sb-name {
    font-weight: 600
}

.sb-board>.sb-admin-list>.sb-scroll-area>ul>p {
    margin: 20px
}

.sb-board>.sb-admin-list>.sb-scroll-area>ul>li+p {
    display: none
}

.sb-board>.sb-admin-list>.sb-scroll-area.sb-loading {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 0;
    text-indent: initial;
    overflow: hidden;
    overflow-y: scroll
}

.sb-board>.sb-admin-list>.sb-scroll-area.sb-loading>ul {
    opacity: 0
}

.sb-board>.sb-admin-list.sb-departments-show li.sb-active:before {
    background-color: #028be5 !important
}

.sb-board .sb-conversation {
    width: 100%;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column
}

.sb-board .sb-conversation>.sb-top {
    width: auto;
    display: flex;
    align-items: center;
    flex-grow: 0;
    justify-content: flex-start
}

.sb-board .sb-conversation>.sb-top .sb-menu-mobile {
    position: absolute;
    right: 15px
}

.sb-board .sb-conversation>.sb-top>.sb-btn-back {
    display: none
}

.sb-board .sb-conversation>.sb-top>a {
    font-weight: 500;
    position: relative;
    padding: 0 15px 0 0;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s;
    position: relative;
    white-space: nowrap
}

.sb-board .sb-conversation>.sb-top i {
    color: #fff;
    transition: color 0.5s
}

.sb-board .sb-conversation>.sb-top a:hover i {
    color: #028be5
}

.sb-board .sb-conversation .sb-list {
    height: 100%;
    padding: 10px 0 5px 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #7d5eff #181824;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    background: #181824;
    /* Scrollbar track background color */
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: #7d5eff;
    /* Scrollbar thumb color */
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: #181824;
    /* Track background ensures full coverage */
    border-radius: 8px;
}

.sb-board .sb-conversation .sb-list>div {
    max-width: calc(100% - 275px)
}

.sb-board .sb-conversation .sb-list>div .sb-menu {
    width: 170px;
    right: -183px;
    top: 0;
    display: none;
    margin-bottom: 15px;
    z-index: 9
}

.sb-board .sb-conversation .sb-list>div .sb-menu li {
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 8px 0;
    cursor: pointer;
    padding: 7px;
}

.sb-board .sb-conversation .sb-list>div .sb-menu.sb-active {
    display: block
}

.sb-board .sb-conversation .sb-list>div .sb-menu:empty {
    display: none
}

.sb-board .sb-conversation .sb-list>div .sb-menu-btn {
    display: block;
    height: 15px;
    width: 30px;
    position: absolute;
    right: -24px;
    text-align: right;
    top: 11px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s;
    opacity: 0;
    z-index: 9
}

.sb-board .sb-conversation .sb-list>div .sb-menu-btn:hover {
    color: #028be5
}

.sb-board .sb-conversation .sb-list>div[data-type="slider"],
.sb-board .sb-conversation .sb-list>div[data-type="card"] {
    max-width: 380px
}

.sb-board .sb-conversation .sb-list>div:hover .sb-menu-btn {
    opacity: 1
}

.sb-board .sb-conversation .sb-list>div.sb-right .sb-menu-btn {
    right: auto;
    left: -24px;
    text-align: left
}

.sb-board .sb-conversation .sb-list>div.sb-right .sb-menu {
    right: auto;
    left: -181px
}

.sb-board .sb-conversation .sb-list>div.sb-right .sb-menu:empty {
    display: none
}

.sb-board .sb-conversation .sb-list>div img {
    max-width: 600px
}

.sb-board .sb-conversation .sb-list>div .sb-message img {
    max-width: 100%
}

.sb-board .sb-conversation .sb-list>div .sb-image {
    max-width: 500px
}

.sb-board .sb-conversation .sb-list>div:last-child {
    animation: none
}

.sb-board .sb-conversation .sb-list .sb-highlight:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0000002b;
    border-radius: 5px;
    opacity: 0;
    animation: sb-fade-in-out 3s linear .5s
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) {
    position: relative;
    z-index: 1
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list):before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    right: -15px;
    top: -15px;
    z-index: 995;
    transition: all 0.4s
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list):hover>div {
    opacity: .5;
    transition: all 0.4s
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) .sb-card-img+div+.sb-card-extra {
    left: 0
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) .sb-slider .sb-card-img+div+.sb-card-extra {
    left: 15px;
    top: 15px
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) .sb-input-btn>div,
.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) .sb-btn,
.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) .sb-select p {
    transition: none
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) input,
.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) textarea,
.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) select {
    color: #E6F2FC;
    background-color: #E6F2FC
}

.sb-board .sb-conversation .sb-list .sb-rich-message:not(.sb-rich-list) .sb-input>span.sb-active {
    background: transparent !important;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 13px;
    line-height: 44px;
    color: #fff
}

.sb-board .sb-conversation .sb-list .sb-delivery-failed {
    font-size: 14px;
    transform: translateY(2px);
    margin-right: 5px;
    display: inline-block;
    cursor: help;
    position: relative;
    z-index: 2
}

.sb-board .sb-conversation .sb-list iframe:not([height]) {
    height: 165px
}

.sb-board .sb-conversation .sb-list.sb-touchmove {
    overflow: hidden
}

.sb-board .sb-conversation .sb-editor {
    flex-shrink: 0;
    margin: 1px 15px 15px 15px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow linear 40ms, border-color linear 0.2s;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    outline: 1px rgba(255, 255, 255, 0.20) solid;
    outline-offset: -1px;
    backdrop-filter: blur(107px);
}

.sb-board .sb-conversation .sb-editor .sb-textarea {
    border: none;
    padding: 0 !important
}

.sb-board .sb-conversation .sb-editor .sb-bar {
    margin-top: 10px;
    position: relative;
    justify-content: space-between;
}

.sb-board .sb-conversation .sb-editor .sb-bar .sb-btn-attachment {
    display: block !important
}

.sb-board .sb-conversation .sb-editor .sb-bar .sb-btn {
    background-color: #028be5;
    color: #fff;
    border-color: #028be5;
    font-size: 12px;
    line-height: 27px;
    height: 25px;
    transition: all 0.4s
}

.sb-board .sb-conversation .sb-editor .sb-bar .sb-btn:hover {
    background-color: #004c7d;
    border-color: #004c7d
}

.sb-board .sb-conversation .sb-editor .sb-attachments:not(:empty) {
    padding-top: 15px
}

.sb-board .sb-conversation .sb-editor .sb-suggestions {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -5px 0 -5px
}

.sb-board .sb-conversation .sb-editor .sb-suggestions:empty {
    display: none
}

.sb-board .sb-conversation .sb-editor .sb-suggestions span {
    display: block;
    max-width: calc(50% - 50px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 7px 15px;
    background: #eef1f6;
    border-radius: 15px;
    font-size: 13px;
    letter-spacing: 0.3px;
    margin: 5px;
    cursor: pointer;
    transition: background-color .5s, color .5s
}

.sb-board .sb-conversation .sb-editor .sb-suggestions span:hover {
    color: #fff;
    background-color: #8C8C91
}

.sb-board .sb-conversation .sb-editor .sb-suggestions span.sb-suggestion-full {
    max-width: 100%;
    white-space: normal
}

.sb-board .sb-conversation .sb-editor.sb-audio-message-active .sb-textarea,
.sb-board .sb-conversation .sb-editor.sb-audio-message-active .sb-bar-icons,
.sb-board .sb-conversation .sb-editor.sb-audio-message-active .sb-suggestions,
.sb-board .sb-conversation .sb-editor.sb-audio-message-active .sb-attachments {
    display: none
}

.sb-board .sb-conversation .sb-editor.sb-audio-message-active .sb-bar {
    margin-top: 0;
    justify-content: right
}

.sb-board .sb-conversation[data-conversation-status="4"] [data-value="delete"],
.sb-board .sb-conversation [data-value="inbox"],
.sb-board .sb-conversation [data-value="empty-trash"],
.sb-board .sb-conversation[data-conversation-status="3"] [data-value="archive"],
.sb-board .sb-conversation [data-value="read"] {
    display: none
}

.sb-board .sb-conversation[data-conversation-status="3"] [data-value="inbox"],
.sb-board .sb-conversation[data-conversation-status="4"] [data-value="inbox"],
.sb-board .sb-conversation[data-conversation-status="4"] [data-value="empty-trash"],
.sb-board .sb-conversation [data-value="read"].sb-active {
    display: block
}

.sb-board .sb-conversation [data-value="archive"] {
    color: #028be5;
    margin-right: 5px
}

.sb-board .sb-conversation [data-value="archive"] i {
    color: #1a9260 !important;
    font-size: 20px
}

.sb-board .sb-conversation [data-value="archive"]:hover {
    border-color: #1a9260;
}

.sb-board .sb-conversation [data-value="delete"]:hover i {
    color: #ca3434 !important
}

.sb-board .sb-user-details {
    min-width: 400px;
    width: 400px;
    border-left: 1px solid rgba(140, 140, 145, 0.30);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: width .3s
}

.sb-board .sb-user-details .sb-top {
    line-height: 42px;
    font-size: 18px;
    font-weight: 600;
    height: 71px;
    align-items: center;
    display: flex;
    justify-content: end;
}

.sb-board .sb-user-details h3 {
    font-size: 15px;
    line-height: 25px;
    font-weight: 600
}

.sb-board .sb-user-details>div>h3 {
    margin: 0;
    padding: 15px;
}

.sb-board .sb-user-details .sb-profile {
    cursor: pointer;
    line-height: 17px;
    transition: opacity .3s
}

hr {
    background: rgba(140, 140, 145, 0.30);
    margin: 0 -20px;
}

.sb-board .sb-user-details .sb-profile:hover {
    opacity: .7
}

.profile-heading {
    font-size: 16px;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    color: #fff;
    margin: 10px 0;
}


.bottom-background {
    position: absolute;
    bottom: -5px;
    right: 0;
    z-index: 0;
}

.sb-scroll-sidearea {
    overflow: auto;
    /* or scroll */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    z-index: 1;
    padding: 25px;
}

.sb-scroll-sidearea::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}


.top-box {
    padding-top: 30px !important;
    padding-bottom: 0 !important;
}

.sb-board .sb-user-details .sb-profile-list,
.top-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    border: 1px rgba(255, 255, 255, 0.20) solid;
    outline-offset: -0.50px;
    margin: 20px 0;
    color: #fff;
}

.sb-board .sb-user-details .sb-profile-list ul {
    margin-top: 0
}

.sb-board .sb-user-details .sb-profile-list [data-id="telegram_bcid"],
.sb-board .sb-user-details .sb-profile-list [data-id="token"],
.sb-board .sb-user-details .sb-profile-list [data-id="woocommerce_session_key"],
.sb-board .sb-user-details .sb-profile-list [data-id="perfex-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="whmcs-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="aecommerce-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="facebook-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="viber-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="zalo-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="telegram-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="wechat-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="martfury-session"],
.sb-board .sb-user-details .sb-profile-list [data-id="line-id"],
.sb-board .sb-user-details .sb-profile-list [data-id="opencart_id"],
.sb-board .sb-user-details .sb-profile-list [data-id="shopify_id"] {
    display: none
}

.sb-board .sb-user-details .sb-profile-list [data-id="cc"] {
    margin-left: 15px
}

.sb-board .sb-user-details .sb-profile-list [data-id="cc"],
.sb-board .sb-user-details .sb-profile-list [data-em] {
    transition: all 0.4s
}

.sb-board .sb-user-details .sb-profile-list [data-id="cc"] label,
.sb-board .sb-user-details .sb-profile-list [data-em] label {
    cursor: pointer
}

.sb-board .sb-user-details .sb-profile-list [data-id="cc"]:hover,
.sb-board .sb-user-details .sb-profile-list [data-em]:hover {
    color: #028be5
}

.sb-board .sb-user-details .sb-user-details-close {
    position: absolute;
    right: 15px;
    top: 15px
}

.sb-board .sb-user-details .sb-user-details-close i {
    line-height: 35px
}

.sb-board .sb-user-details .sb-user-details-close i:before {
    font-size: 11px;
    line-height: 11px
}

.sb-board .sb-user-details:not(.sb-active) {
    width: 0;
    min-width: 0;
    overflow: hidden
}

.sb-board .sb-user-details .sb-select {
    padding: 0 15px 15px 15px
}

.sb-board .sb-user-details .sb-scroll-bar {
    opacity: 0.2 !important
}

.sb-board .sb-user-details .sb-scroll-area {
    height: calc(100% - 70px)
}

.sb-board .sb-user-details .sb-user-conversations {
    margin: 0 0 15px 15px
}

.sb-board .sb-user-details .sb-user-conversations li {
    border-left: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-board .sb-user-details .sb-user-conversations li>div {
    padding-left: 45px
}

.sb-board .sb-user-details .sb-user-conversations li>div .sb-message {
    font-weight: 400
}

.sb-board .sb-user-details .sb-user-conversations li:hover,
.sb-board .sb-user-details .sb-user-conversations li.sb-active {
    background-color: #eef1f6
}

.sb-board .sb-user-details .sb-user-conversations li:first-child {
    border-top: 1px solid rgba(140, 140, 145, 0.30);
    border-top-left-radius: 5px
}

.sb-board .sb-user-details .sb-user-conversations li:last-child {
    border-bottom-left-radius: 5px
}

.sb-board .sb-user-details .sb-user-conversations img {
    top: 6px;
    width: 30px;
    height: 30px
}

.sb-board .sb-user-details .sb-user-conversations span {
    line-height: 21px
}

.sb-board .sb-user-details .sb-user-conversations .sb-message {
    height: 20px;
    line-height: 20px
}

.sb-board .sb-user-details .sb-inline {
    display: flex;
    align-content: center;
    align-items: center;
    margin-top: 20px;
}

.sb-board .sb-user-details .sb-inline h3 {
    margin-right: 15px;
    line-height: 55px
}

.sb-board .sb-user-details .sb-inline>* {
    margin: 0;
    padding: 0
}

.sb-board .sb-user-details .sb-inline>.sb-select {
    width: 100%;
    height: 55px
}

.sb-board .sb-user-details .sb-inline>.sb-select>p {
    font-weight: 400;
    font-size: 13px !important;
    line-height: 55px !important;
    border-radius: 0
}

.sb-board .sb-user-details .sb-inline>.sb-select>p:after {
    line-height: 55px;
    right: 15px
}

.sb-board .sb-user-details .sb-inline>.sb-select>ul {
    width: 100%
}

.sb-board .sb-no-conversation-message {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #030406;
    padding: 15px;
    display: none;
    z-index: 9
}

.sb-board .sb-no-conversation-message>div {
    max-width: 650px
}

.sb-board .sb-no-conversation-message label {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    line-height: 30px
}

.sb-board .sb-no-conversation-message p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 25px;
    color: #fff
}

.sb-board .sb-labels {
    padding-left: 10px;
    display: flex;
    align-items: center
}

.sb-board .sb-labels span {
    font-size: 14px;
    line-height: 30px;
    padding: 1px 10px 0 10px;
    border-radius: 3px;
    margin: 0 5px;
    display: block;
    font-weight: 600;
    white-space: nowrap;
    cursor: default;
    position: relative
}

.sb-board .sb-labels .sb-status-online {
    background: rgba(19, 202, 126, 0.21);
    color: #009341
}

.sb-board .sb-labels .sb-status-warning {
    background: #f2e37c;
    color: #625705
}

.sb-board .sb-labels .sb-status-typing {
    background-color: #e7f2fc;
    color: #028be5;
    padding-right: 32px
}

.sb-board .sb-labels .sb-status-typing:after {
    content: "...";
    position: absolute;
    width: 15px;
    left: calc(100% - 27px);
    bottom: 0;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden;
    animation: sb-typing 1s infinite;
    text-indent: 0
}

.sb-board .sb-editor .sb-labels {
    position: absolute;
    left: -15px;
    top: -45px;
    z-index: 95
}

.sb-board .sb-editor .sb-labels>span {
    animation: sb-fade-bottom-animation .5s
}

.sb-board .sb-list>div:not(.sb-right) .sb-thumb .sb-tooltip {
    top: 40px;
    left: -10px
}

.sb-board .sb-list>div:not(.sb-right) .sb-thumb .sb-tooltip:before {
    top: -11px;
    left: 21px
}

.sb-board .sb-list>div:not(.sb-right) .sb-thumb:hover .sb-tooltip {
    display: block;
    opacity: 0;
    animation: sb-fade-bottom-animation .5s;
    animation-fill-mode: forwards;
    animation-delay: 1s
}

.sb-board.sb-no-conversation .sb-no-conversation-message {
    display: flex
}

.sb-board .sb-tags-area {
    display: flex;
    align-items: center;
    padding-right: 10px
}

.sb-board .sb-tags-area>i {
    line-height: 8px;
    font-weight: 400;
    background: none
}

.sb-area-conversations>.sb-btn-collapse {
    display: none;
    position: fixed;
    left: 70px;
    top: 20px;
    transition: color 0.4s;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 35px;
    font-size: 15px;
    text-align: center;
    z-index: 3
}

.sb-area-conversations>.sb-btn-collapse.sb-left:not(.sb-active) {
    transform: rotate(180deg);
    left: 67px
}

.sb-area-conversations>.sb-btn-collapse.sb-right:not(.sb-active) {
    transform: rotate(180deg);
    right: 2px
}

.sb-area-conversations>.sb-btn-collapse.sb-right {
    left: auto;
    right: 10px
}

#sb-audio-clip {
    bottom: 0;
    right: auto;
    left: 0;
    top: 0;
    border-radius: 5px;
    background: #fff
}

#sb-audio-clip .sb-icon:before {
    line-height: 50px
}

.sb-notes-box .sb-setting textarea {
    min-height: 200px
}

#note-ai-scraping {
    margin-right: 15px;
    max-width: 200px
}

#note-ai-scraping select {
    min-width: auto
}

.sb-list .sb-select-phone>div>p {
    display: none
}

.sb-cc-box .sb-setting .repeater-item+.repeater-item {
    border-top: none;
    padding-top: 0;
    margin-top: 10px
}

.sb-cc-box .sb-setting .repeater-item+.repeater-item i {
    margin-top: -6px
}

.sb-shopify-orders>div>span {
    display: flex !important
}

.sb-shopify-orders>div>span>span+span+span {
    margin-right: 35px;
    margin-left: auto !important
}

.sb-shopify-orders [data-status] {
    padding: 5px 8px;
    background: #ffeb78;
    color: #4f4700;
    font-size: 11px;
    line-height: 13px;
    border-radius: 4px
}

.sb-shopify-orders [data-status="Fulfilled"] {
    color: #014b40;
    background: #affebf
}

.sb-shopify-orders [data-product-id] {
    cursor: pointer
}

.sb-shopify-orders [data-product-id]+.sb-title {
    margin-top: 5px
}

.sb-shopify-cart>a>span:first-child,
.sb-shopify-orders [data-product-id]>span:first-child {
    padding: 3px 5px;
    background: #00000012;
    font-size: 11px;
    line-height: 13px;
    margin-right: 10px;
    border-radius: 4px
}

.sb-shopify-cart>a>span:last-child {
    float: right
}

.sb-editor .sb-bar-icons>.sb-btn-shopify:before {
    content: "\e900";
    font-size: 25px;
    left: 5px
}

.sb-area-users {
    height: 100%
}

.sb-area-users .sb-scroll-area {
    overflow: hidden;
    overflow-y: scroll;
    margin: 15px 0 0 15px;
    padding-right: 15px;
    height: calc(100% - 85px)
}

.sb-area-users .sb-scroll-area:hover+.sb-scroll-bar {
    opacity: 0.1 !important
}

.sb-area-users>.sb-loading-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%
}

.sb-area-users .sb-filter-btn>div {
    left: auto;
    right: 0;
    top: 56px;
    width: auto;
    padding: 15px;
    z-index: 5
}

.sb-area-users .sb-filter-btn>div .sb-select:last-child {
    margin-right: 0
}

.sb-area-users .sb-filter-btn.sb-active {
    position: relative
}

.sb-area-users .sb-filter-btn.sb-active i {
    top: 10px;
    right: 0
}

.sb-area-users .sb-filter-star {
    display: none
}

.sb-area-users .sb-top-bar>div:first-child {
    overflow: visible !important
}

.sb-table-users .sb-profile {
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize
}

.sb-table-users th:first-child {
    max-width: 15px;
    width: 15px;
    border-bottom-color: rgba(140, 140, 145, 0.30) !important
}

.sb-table-users th {
    cursor: pointer;
    transition: all 0.4s;
    position: relative
}

.sb-table-users th.sb-active,
.sb-table-users th:hover {
    border-bottom: 1px solid #838383;
    color: #C9C7C7
}

.sb-table-users th.sb-active:after {
    content: "\61";
    font-family: "Support Board Icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 25px;
    font-size: 12px;
    position: absolute;
    right: 15px
}

.sb-table-users th.sb-order-asc:after {
    transform: rotate(180deg)
}

.sb-table-users td:not(:first-child),
.sb-table-users th:not(:first-child) {
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-table-users.sb-loading tbody,
.sb-table-users.sb-loading thead {
    display: none
}

.sb-profile-box .sb-profile-list {
    padding-right: 30px
}

.sb-profile-box .sb-user-conversations>p {
    padding: 10px 15px 8px 15px
}

.sb-profile-box .sb-top-bar .sb-profile {
    font-weight: 600
}

.sb-profile-box .sb-top-bar .sb-profile img {
    width: 45px;
    height: 45px
}

.sb-profile-box .sb-top-bar .sb-profile span {
    margin-left: 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    line-height: 45px;
    white-space: nowrap;
    color: #fff;
}

.sb-profile-box .sb-top-bar>div>[data-value]+.sb-btn {
    margin-left: 15px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    font-family: "Manrope", sans-serif;
}

.sb-profile-box .sb-top-bar>div>[data-value]:not(.sb-active) {
    display: none
}

.sb-profile-box .sb-user-conversations {
    max-width: 600px;
    border-radius: 4px
}

.sb-profile-box .sb-user-conversations>li {
    padding: 15px;
    border-left: none;
    margin-top: 10px;
}

.sb-profile-box .sb-user-conversations>li:first-child {
    border-top: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.sb-profile-box .sb-user-conversations>li:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.sb-profile-box .sb-user-conversations .sb-profile {
    padding: 0 0 5px 0
}

.sb-profile-box .sb-user-conversations .sb-profile .sb-name {
    font-size: 14px
}

.sb-profile-box .sb-user-conversations .sb-profile img {
    display: none
}

.sb-profile-box .sb-user-conversations .sb-profile .sb-time {
    float: right
}

.sb-profile-box .sb-agent-area {
    padding-top: 30px
}

.sb-profile-box .sb-agent-area .sb-title {
    margin-bottom: 30px
}

.sb-profile-box .sb-agent-area .sb-rating-area {
    min-height: 30px
}

.sb-profile-box .sb-agent-area .sb-rating-area>div {
    display: flex;
    height: 35px;
    align-items: center
}

.sb-profile-box .sb-agent-area .sb-rating-area>div>div:first-child {
    font-weight: 500;
    padding-right: 10px;
    font-size: 13px;
    width: 80px
}

.sb-profile-box .sb-agent-area .sb-rating-area>div>span {
    height: 3px;
    background-color: #1a9260;
    margin-right: 10px
}

.sb-profile-box .sb-agent-area .sb-rating-area>div>span[data-count="0"] {
    display: none
}

.sb-profile-box .sb-agent-area .sb-rating-area>div+div>span {
    background-color: #ca3434
}

.sb-profile-box .sb-agent-area .sb-rating-area>div>div:last-child {
    font-size: 13px
}

.sb-profile-box .sb-agent-area .sb-rating-area .sb-rating-count {
    font-size: 12px;
    line-height: 40px;
    color: #fff;
    opacity: 0.7
}

.sb-profile-box .sb-agent-area .sb-rating-area:before {
    left: 10px
}

.sb-profile-box.sb-type-agent .sb-start-conversation,
.sb-profile-box.sb-type-admin .sb-start-conversation,
.sb-profile-box .sb-agent-area,
.sb-profile-box .sb-hide+.sb-user-conversations {
    display: none
}

.sb-profile-box.sb-type-agent .sb-agent-area,
.sb-profile-box.sb-type-admin .sb-agent-area {
    display: block
}

.sb-profile-edit-box .sb-top-bar .sb-profile {
    font-weight: 600;
    padding-left: 65px;
    padding-right: 15px
}

.sb-profile-edit-box .sb-top-bar .sb-profile img {
    width: 45px;
    height: 45px
}

.sb-profile-edit-box .sb-top-bar .sb-profile span {
    font-size: 20px;
    line-height: 45px;
    white-space: nowrap;
    color: #fff;
}

.sb-profile-edit-box .sb-main {
    justify-content: flex-start
}

.sb-profile-edit-box .sb-main>div {
    width: 50%
}

.sb-profile-edit-box .sb-main>div+div {
    margin-left: 30px
}

.sb-profile-edit-box.sb-user-new .sb-top-bar .sb-profile {
    padding-left: 0
}

.sb-profile-edit-box.sb-user-new .sb-top-bar .sb-profile img {
    display: none
}

.sb-profile-edit-box.sb-user-new .sb-delete {
    display: none
}

.sb-profile-edit-box .sb-delete {
    margin-top: 60px;
    font-size: 14px;
    display: none
}

.sb-profile-edit-box #user_type,
.sb-profile-edit-box #department {
    display: none
}

.sb-profile-edit-box.sb-agent-admin.sb-type-admin #user_type,
.sb-profile-edit-box.sb-agent-admin.sb-type-admin #department,
.sb-profile-edit-box.sb-agent-admin.sb-type-agent #user_type,
.sb-profile-edit-box.sb-agent-admin.sb-type-agent #department,
.sb-profile-edit-box.sb-agent-admin.sb-user-new #user_type {
    display: flex
}

.sb-profile-edit-box.sb-agent-admin .sb-delete {
    display: inline-block
}

.sb-direct-message-subject:not(.sb-active) {
    display: none
}

.sb-area-settings .sb-input {
    align-items: flex-start;
    margin-bottom: 30px
}

.sb-area-settings>.sb-tab>.sb-content {
    padding-left: 30px
}

.sb-area-settings>.sb-tab>.sb-content>div {
    max-width: 1000px
}

.sb-area-settings>.sb-tab>.sb-content>div>.sb-setting+.sb-setting {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-area-settings>.sb-tab>.sb-content .sb-inner-tab>.sb-nav {
    border: none;
    padding: 0
}

.sb-area-settings>.sb-tab>.sb-content .sb-inner-tab>.sb-content {
    margin-top: -37px;
    padding: 0
}

#registration-fields .input>div:nth-child(2n) {
    margin-top: -10px
}

#user-additional-fields .repeater-item>div:nth-child(2) {
    display: none !important
}

#messenger-path-btn:not(.sb-active),
#messenger-key:not(.sb-active),
#open-ai-assistant-id:not(.sb-active) {
    display: none !important
}

#tags [data-id="tag-name"] {
    min-width: 230px;
    margin-right: 50px
}

#tags .repeater-item div+div {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0
}

#tags .repeater-item div+div label {
    display: none
}

.sb-type-multi-input>.input>div:not(.multi-input-textarea),
.sb-setting .sb-language-switcher-cnt,
.sb-select-checkbox>div,
#open-ai-prompt {
    display: flex;
    align-items: center
}

.sb-type-multi-input>.input>div:not(.multi-input-textarea)>label,
.sb-setting .sb-language-switcher-cnt>label,
.sb-select-checkbox>div>label,
#open-ai-prompt>label {
    margin: 0 15px 0 0
}

#open-ai-prompt {
    align-items: baseline
}

.sb-type-multi-input>.input>div input,
.sb-type-multi-input>.input>div select {
    min-width: 285px
}

@media (max-width: 1490px) {

    .sb-type-multi-input>.input>div:not(.multi-input-textarea),
    .sb-setting .sb-language-switcher-cnt,
    .sb-select-checkbox>div {
        display: block
    }
}

.sb-type-select-checkbox>.input,
.multi-input-select-checkbox {
    position: relative
}

.sb-select-checkbox-input {
    opacity: 1;
    cursor: pointer
}

.sb-select-checkbox-input.sb-active+div {
    display: block
}

.sb-select-checkbox {
    position: absolute;
    z-index: 2;
    background: #fff;
    right: 0;
    left: 0;
    top: 40px;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    display: none
}

.sb-select-checkbox>div {
    margin: 5px 0
}

.sb-select-checkbox label {
    margin: 0 0 0 15px !important
}

.sb-select.sb-select-colors>p {
    border-radius: 4px;
    transition: none;
    background: none !important
}

.sb-select.sb-select-colors>p span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-left: 10px;
    opacity: 1
}

.sb-select.sb-select-colors>p:after {
    right: 15px
}

.sb-select.sb-select-colors>p:not(:hover):after {
    color: #fff
}

.sb-select.sb-select-colors>p:not([data-value]),
.sb-select.sb-select-colors>p[data-value=""],
.sb-select.sb-select-colors>p[data-value="-1"] {
    background-color: #fff
}

.sb-select.sb-select-colors>ul {
    padding: 0 !important
}

.sb-select.sb-select-colors:not(.sb-disabled)>p:hover span {
    background-color: #028be5
}

.sb-select.sb-select-colors.sb-loading>ul {
    display: none
}

.sb-select.sb-select-colors.sb-loading:before {
    line-height: 30px
}

.sb-select.sb-select-colors:hover:before {
    color: #fff
}

.sb-setting .sb-language-switcher-cnt {
    margin-top: 10px
}

.sb-setting p,
.sb-text-gray {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.3px;
    margin: 5px 0 0 0;
    color: #788692
}

.sb-setting {
    display: flex;
    justify-content: flex-start
}

.sb-setting>.sb-setting-content {
    max-width: 420px;
    width: 420px;
    padding-right: 60px;
    flex-shrink: 0
}

.sb-setting>.input {
    width: 100%
}

.sb-setting h2 {
    display: inline-block;
    min-width: 150px;
    flex-grow: 1;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff
}

.sb-setting .sb-icon-help {
    transform: translateY(1px);
    margin: 0 0 0 5px;
    color: #889aaa;
    text-decoration: none;
    display: inline-block
}

.sb-setting .sb-icon-help:hover {
    color: #028be5
}

.sb-setting input,
.sb-setting select,
.sb-setting textarea {
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    outline: none;
    font-size: 13px;
    line-height: 35px;
    height: 35px;
    padding: 0 10px;
    transition: all 0.4s;
    width: 100%;
    min-width: 300px;
    box-sizing: border-box;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.12)
}

.sb-setting input:focus,
.sb-setting select:focus,
.sb-setting textarea:focus {
    border: 1px solid #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2);
    color: #c7c7c7;
    outline: none
}

.sb-setting input.sb-error,
.sb-setting select.sb-error,
.sb-setting textarea.sb-error {
    border: 1px solid #ca3434;
    box-shadow: 0 0 5px rgba(202, 52, 52, 0.25)
}

.sb-setting select {
    padding: 0 5px
}

.sb-setting textarea {
    box-sizing: content-box;
    width: calc(100% - 22px);
    min-width: 280px;
    line-height: 22px;
    padding: 6px 10px;
    min-height: 86px
}

.sb-setting input[type="checkbox"] {
    background: rgba(255, 255, 255, 0.12);
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 35px;
    min-height: 35px;
    outline: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    min-width: 35px !important;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none
}

.sb-setting input[type="checkbox"]:checked:before {
    content: "\77" !important;
    font-family: "Support Board Icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 35px;
    font-size: 15px;
    color: #028be5;
    margin: 0;
    width: 100%;
    height: 100%
}

.sb-setting label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
    margin: 0 30px 15px 0;
    display: block;
    min-width: 220px;
    letter-spacing: 0.3px
}

.sb-setting label:empty {
    display: none !important
}

.sb-setting input[type="number"] {
    padding-right: 0
}

.sb-setting .input>.sb-loading:not(.sb-btn):not(.image) {
    width: 30px;
    height: 30px
}

.sb-setting .multi-input-upload-image[data-type="upload-image"] .image {
    min-width: 50px;
    width: 100%
}

.sb-setting.sb-type-multi-input .input>div {
    margin-bottom: 15px
}

.sb-setting.sb-type-input-button .input {
    display: flex;
    width: 100%
}

.sb-setting.sb-type-input-button .input input {
    min-width: 0;
    flex-shrink: 10
}

.sb-setting.sb-type-input-button .input a {
    margin-left: 15px;
    min-width: 0
}

.sb-setting.sb-type-upload-image .image,
.sb-setting [data-type="upload-image"] .image {
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    height: 150px;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s
}

.sb-setting.sb-type-upload-image .image:before,
.sb-setting [data-type="upload-image"] .image:before {
    content: "\70";
    font-family: "Support Board Icons" !important;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 9px;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: -15px 0 0 -15px;
    text-align: center;
    transform: rotate(45deg)
}

.sb-setting.sb-type-upload-image .image:hover,
.sb-setting [data-type="upload-image"] .image:hover {
    border: 1px solid #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2)
}

.sb-setting.sb-type-upload-image .image:hover:before,
.sb-setting [data-type="upload-image"] .image:hover:before {
    color: #028be5
}

.sb-setting.sb-type-upload-image .image>i,
.sb-setting [data-type="upload-image"] .image>i {
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 10px;
    height: 21px;
    width: 21px;
    font-size: 7px;
    text-align: center;
    line-height: 23px;
    cursor: pointer;
    background: #fff;
    color: #fff;
    border-radius: 50%;
    display: none
}

.sb-setting.sb-type-upload-image .image[data-value]:before,
.sb-setting [data-type="upload-image"] .image[data-value]:before {
    display: none
}

.sb-setting.sb-type-upload-image .image[data-value]>i,
.sb-setting [data-type="upload-image"] .image[data-value]>i {
    display: block
}

.sb-setting.sb-type-upload-image .image[data-value]>i:hover,
.sb-setting [data-type="upload-image"] .image[data-value]>i:hover {
    background-color: #ca3434
}

.sb-setting.sb-type-upload-image .image[data-value=""]>i,
.sb-setting [data-type="upload-image"] .image[data-value=""]>i {
    display: none
}

.sb-setting.sb-type-upload-image .image[data-value=""]:before,
.sb-setting [data-type="upload-image"] .image[data-value=""]:before {
    display: block
}

.sb-setting .multi-input-upload-image .image {
    height: 100px;
    background-size: auto 64px
}

.sb-setting.sb-type-color .input {
    position: relative
}

.sb-setting.sb-type-color .input i {
    position: absolute;
    right: 12px;
    font-size: 10px;
    top: 11px;
    cursor: pointer;
    opacity: 0.5;
    z-index: 2
}

.sb-setting.sb-type-color .input i:hover {
    opacity: 1
}

.sb-setting.sb-type-color .input:after {
    content: "";
    position: absolute;
    background: #fff;
    right: 1px;
    top: 1px;
    width: 32px;
    height: 33px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 0
}

.sb-setting.sb-type-double-select .input>div {
    display: flex;
    align-items: center;
    margin: 0 0 8px 0
}

.sb-setting.sb-type-double-select .input label {
    margin: 0 30px 0 0;
    font-weight: 400;
    font-size: 13px;
    color: #24272a
}

.sb-setting.sb-type-double-select .input select {
    min-width: 100px
}

.sb-setting.sb-type-repeater>.input {
    width: 100%
}

.sb-setting .sb-repeater {
    margin-bottom: 15px;
    display: block
}

.sb-setting .repeater-item {
    position: relative
}

.sb-setting .repeater-item .sb-repeater-add {
    padding: 0;
    margin-top: -5px;
    width: 30px
}

.sb-setting .repeater-item+.repeater-item {
    border-top: 1px solid #e2e2e2;
    padding-top: 20px;
    margin-top: 20px
}

.sb-setting .repeater-item>div {
    display: flex
}

.sb-setting .repeater-item>div+div {
    margin-top: 10px
}

.sb-setting .repeater-item>div:empty {
    display: none
}

.sb-setting .repeater-item>div [readonly] {
    min-width: 0 !important;
    border: none;
    padding: 0;
    text-align: center;
    font-weight: 500;
    opacity: .5;
    width: 20px
}

.sb-setting .repeater-item>div [readonly]:hover {
    opacity: 1
}

.sb-setting .repeater-item>div label {
    margin: 0 15px 0 0
}

.sb-setting .repeater-item>div label+div {
    flex-grow: 1
}

.sb-setting .repeater-item input,
.sb-setting .repeater-item select {
    min-width: 285px
}

.sb-setting .repeater-item textarea {
    min-width: 260px
}

.sb-setting .repeater-item .sb-enlarger:before {
    font-size: 13px;
    top: 4px;
    transition: all 0.4s
}

.sb-setting .repeater-item .sb-enlarger:hover:before {
    color: #028be5
}

.sb-setting .repeater-item>i {
    position: absolute;
    right: -30px;
    top: 50%;
    margin-top: 4px;
    width: 14px;
    font-size: 9px;
    height: 14px;
    line-height: 16px;
    text-align: center;
    cursor: pointer
}

.sb-setting .repeater-item>i:hover {
    color: #ca3434
}

.sb-setting .repeater-item:first-child>i {
    margin-top: -6px
}

.sb-setting .sb-repeater-add+.sb-btn-icon {
    transform: translate(11px, 13px);
    margin-top: -35px
}

.sb-setting .sb-repeater-add+.sb-btn-icon.sb-icon-clip:before {
    font-size: 16px
}

.sb-setting input+input {
    margin-top: 8px
}

.sb-setting.sb-type-select-images .input {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 27px
}

.sb-setting.sb-type-select-images .input>div {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    position: relative;
    cursor: pointer;
    opacity: .6;
    transition: all 0.4s
}

.sb-setting.sb-type-select-images .input>div.sb-icon-close {
    text-align: center;
    line-height: 82px;
    color: rgba(140, 140, 145, 0.30);
    border: none !important;
    box-shadow: none !important;
    font-size: 20px;
    opacity: 1
}

.sb-setting.sb-type-select-images .input>div:hover,
.sb-setting.sb-type-select-images .input>div.sb-active:not(.sb-icon-close) {
    color: #028be5;
    border-color: #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2);
    opacity: 1
}

.sb-setting [data-type="upload-file"] {
    width: 100%;
    overflow: hidden
}

.sb-setting [data-type="upload-file"] input {
    min-width: 100px
}

.sb-setting [data-type="upload-file"] .sb-btn {
    margin-left: 5px;
    flex: 0 0 auto
}

.sb-setting #push-notifications-onesignal-app-id:not(.sb-active),
.sb-setting #push-notifications-onesignal-api-key:not(.sb-active),
.sb-setting #push-notifications-sw-path:not(.sb-active) {
    display: none !important
}

.repeater-item .sb-enlarger label {
    min-width: 160px
}

.repeater-item .repeater-item>div input:last-child,
.repeater-item .repeater-item>div select:last-child,
.repeater-item .repeater-item>div textarea:last-child {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.repeater-item .repeater-item>div+div {
    margin-top: 0
}

.repeater-item .repeater-item>div+div input:first-child,
.repeater-item .repeater-item>div+div select:first-child,
.repeater-item .repeater-item>div+div textarea:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.repeater-item .repeater-item>div:last-of-type input,
.repeater-item .repeater-item>div:last-of-type select,
.repeater-item .repeater-item>div:last-of-type textarea {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.repeater-item .repeater-item input:focus,
.repeater-item .repeater-item select:focus,
.repeater-item .repeater-item textarea:focus {
    z-index: 2
}

.repeater-item .repeater-item .sb-sub-repeater-close {
    right: 10px;
    background: #fff;
    border-radius: 50%;
    color: #fff;
    z-index: 9
}

.repeater-item .repeater-item+.repeater-item {
    border-top: none;
    padding-top: 0;
    margin-top: 10px
}

.repeater-item .repeater-item+.repeater-item>i {
    margin-top: -6px
}

.sb-translations .sb-setting,
.sb-automations-area .sb-setting {
    display: block;
    margin-bottom: 15px
}

.sb-type-select.sb-loading select {
    visibility: hidden;
    transition: none
}

.sb-area-settings .sb-tab .sb-btn,
.sb-btn-white,
a.sb-btn-white,
.sb-lightbox .sb-btn-white {
    background-color: #fff;
    color: #030406;
    border: 1px solid #ccd2d5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    padding: 0 10px;
    white-space: nowrap;
    border-radius: 4px;
    height: 33px;
    line-height: 33px;
}

.sb-area-settings .sb-tab .sb-btn.sb-icon,
.sb-btn-white.sb-icon,
a.sb-btn-white.sb-icon,
.sb-lightbox .sb-btn-white.sb-icon {
    padding-left: 30px
}

.sb-area-settings .sb-tab .sb-btn.sb-icon>i,
.sb-btn-white.sb-icon>i,
a.sb-btn-white.sb-icon>i,
.sb-lightbox .sb-btn-white.sb-icon>i {
    left: 10px;
    font-size: 10px;
    line-height: 33px
}

.sb-area-settings .sb-tab .sb-btn.sb-icon>i:before,
.sb-btn-white.sb-icon>i:before,
a.sb-btn-white.sb-icon>i:before,
.sb-lightbox .sb-btn-white.sb-icon>i:before {
    line-height: 33px
}

.sb-area-settings .sb-tab .sb-btn:hover,
.sb-btn-white:hover,
a.sb-btn-white:hover,
.sb-lightbox .sb-btn-white:hover {
    color: #fff;
    border-color: #028be5;
    background-color: #028be5
}

.sb-area-settings .sb-tab .sb-btn.sb-loading,
.sb-btn-white.sb-loading,
a.sb-btn-white.sb-loading,
.sb-lightbox .sb-btn-white.sb-loading {
    width: 15px;
    background: #fff;
    color: #028be5;
    border-color: #ccd2d5;
    cursor: default
}

.sb-area-settings .sb-tab .sb-btn.sb-loading:before,
.sb-area-settings .sb-tab .sb-btn.sb-loading:hover:before,
.sb-btn-white.sb-loading:before,
.sb-btn-white.sb-loading:hover:before,
a.sb-btn-white.sb-loading:before,
a.sb-btn-white.sb-loading:hover:before,
.sb-lightbox .sb-btn-white.sb-loading:before,
.sb-lightbox .sb-btn-white.sb-loading:hover:before {
    color: #26435c
}

.sb-translations {
    width: 100%
}

.sb-translations h2 {
    font-size: 15px;
    line-height: 27px;
    margin: 2px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sb-translations .sb-content {
    padding: 0
}

.sb-translations .sb-content>div:first-child {
    display: flex;
    justify-content: space-between
}

.sb-translations .sb-content.sb-loading:before {
    top: 15px
}

.sb-translations .sb-translations-list {
    padding-top: 30px
}

.sb-translations .sb-translations-list>div:not(.sb-active) {
    display: none
}

.sb-translations .sb-nav {
    padding: 0;
    border: none
}

.sb-translations .sb-nav li {
    padding-left: 30px !important;
    position: relative
}

.sb-translations .sb-nav li img {
    position: absolute;
    left: 0;
    width: 17px;
    top: 13px;
    border-radius: 2px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3)
}

.sb-translations .sb-new-translation {
    margin-bottom: 25px
}

.sb-automations-area>.sb-tab>.sb-content {
    margin-top: -35px
}

.sb-automations-area .sb-nav-only {
    margin-right: 30px
}

.sb-automation-values [data-id="profile_image"],
.sb-automation-values [data-id="icon"],
.sb-automation-values [data-id="brand"] {
    width: 70px;
    height: 70px;
    max-height: 70px
}

[data-automation-type="more"] .sb-automation-values>h2+div+h2,
[data-automation-type="more"] .sb-automation-values>h2+div+h2+div {
    display: none
}

.sb-conditions>div,
.sb-flow-conditions>div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px
}

.sb-conditions select,
.sb-conditions input,
.sb-flow-conditions select,
.sb-flow-conditions input {
    min-width: 50px
}

.sb-timetable>div>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.sb-timetable>div>div span {
    padding: 0 10.5px;
    font-size: 12px
}

.sb-timetable>div>div>div {
    font-size: 13px;
    line-height: 30px;
    height: 30px;
    min-width: 88px;
    padding: 0 0 0 7px;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    transition: all 0.4s
}

.sb-timetable>div>div>div:after {
    content: "\61";
    font-family: "Support Board Icons";
    position: absolute;
    right: 8px;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: 30px
}

.sb-timetable>div>div>div:hover {
    cursor: pointer;
    border: 1px solid #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2)
}

.sb-timetable>div+div {
    margin-top: 12px
}

.sb-timetable label {
    min-width: 95px;
    margin: 0 0 10px 0
}

.sb-timetable .sb-custom-select {
    position: absolute;
    top: 31px;
    left: -1px;
    width: 95px;
    margin: 0;
    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    z-index: 9;
    margin: 2px 0 0 0;
    font-size: 14px;
    line-height: 25px;
    height: 250px;
    overflow-y: scroll
}

.sb-timetable .sb-custom-select span {
    display: block;
    cursor: pointer;
    padding: 5px;
    white-space: nowrap;
    min-height: 22px
}

.sb-timetable .sb-custom-select span:hover {
    background-color: #028be5;
    color: #fff
}

.sb-timetable .sb-custom-select span:empty {
    position: relative
}

.sb-timetable .sb-custom-select span:empty:before {
    content: "--";
    position: absolute;
    left: 5px
}

.sb-timetable>.sb-custom-select {
    display: none
}

.sb-color-palette {
    background: none !important
}

.sb-color-palette span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    transition: all 0.4s;
    position: relative
}

.sb-color-palette span:hover {
    opacity: 0.7
}

.sb-color-palette span.sb-active+ul {
    display: block
}

.sb-color-palette ul {
    padding: 5px 10px;
    position: absolute;
    margin: 15px 0 0 -10px;
    display: none
}

.sb-color-palette ul li {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    margin: 5px 0;
    transition: all 0.4s
}

.sb-color-palette ul li:hover {
    opacity: 0.7
}

.sb-color-palette ul li[data-value=""] {
    box-shadow: inset 0px 0px 1px #919191;
    margin-bottom: 6px
}

.sb-color-palette:not([data-value]) span,
.sb-color-palette[data-value=""] span {
    background-color: #f2f5f5
}

[data-color="red"],
[data-value="red"],
[data-value="red"]>span {
    background-color: #e22424;
    color: #fff
}

[data-color="yellow"],
[data-value="yellow"],
[data-value="yellow"]>span {
    background-color: #f5a212;
    color: #fff
}

[data-color="green"],
[data-value="green"],
[data-value="green"]>span {
    background-color: #1fa839;
    color: #fff
}

[data-color="pink"],
[data-value="pink"],
[data-value="pink"]>span {
    background-color: #5b31f1;
    color: #fff
}

[data-color="gray"],
[data-value="gray"],
[data-value="gray"]>span {
    background-color: #282828;
    color: #fff
}

[data-color="blue"],
[data-value="blue"],
[data-value="blue"]>span {
    background-color: #008db5;
    color: #fff
}

[data-color-text="red"] {
    color: #e22424
}

[data-color-text="yellow"] {
    color: #f5a212
}

[data-color-text="green"] {
    color: #1fa839
}

[data-color-text="pink"] {
    color: #5b31f1
}

[data-color-text="gray"] {
    color: #282828
}

[data-color-text="blue"] {
    color: #008db5
}

.sb-select-colors>[data-value="red"] {
    color: #e22424
}

.sb-select-colors>[data-value="yellow"] {
    color: #f5a212
}

.sb-select-colors>[data-value="green"] {
    color: #1fa839
}

.sb-select-colors>[data-value="pink"] {
    color: #5b31f1
}

.sb-select-colors>[data-value="gray"] {
    color: #282828
}

.sb-select-colors>[data-value="blue"] {
    color: #008db5
}

.sb-board>.sb-admin-list .sb-scroll-area li[data-color="red"]:before {
    background-color: #e22424
}

.sb-board>.sb-admin-list .sb-scroll-area li[data-color="yellow"]:before {
    background-color: #f5a212
}

.sb-board>.sb-admin-list .sb-scroll-area li[data-color="green"]:before {
    background-color: #1fa839
}

.sb-board>.sb-admin-list .sb-scroll-area li[data-color="pink"]:before {
    background-color: #5b31f1
}

.sb-board>.sb-admin-list .sb-scroll-area li[data-color="gray"]:before {
    background-color: #282828
}

.sb-board>.sb-admin-list .sb-scroll-area li[data-color="blue"]:before {
    background-color: #008db5
}

#departments>.input {
    width: 100%
}

#departments .repeater-item {
    display: flex;
    border: none;
    padding-top: 0
}

#departments .repeater-item>div {
    margin: 0
}

#departments .repeater-item>div:first-child {
    min-width: calc(100% - 128px)
}

#departments .repeater-item input:not([readonly]) {
    min-width: 100px !important
}

#departments .repeater-item>div+div {
    padding-left: 15px
}

#departments .repeater-item>div+div label {
    display: none
}

#departments .repeater-item>i {
    top: 50%;
    margin-top: -7px
}

#departments .repeater-item label {
    margin-bottom: 0;
    line-height: 35px;
    min-width: 80px
}

#departments .repeater-item .image {
    width: 33px;
    height: 33px;
    border-radius: 50%
}

#departments .repeater-item .image:before {
    font-size: 7px;
    color: #b6b6b6;
    margin: -15px 0 0 -16px
}

#departments .repeater-item .image:hover:before {
    color: #028be5
}

#chat-sb-icons .input>div:not(.sb-icon-close) {
    background-color: #d4d4d4;
    border-radius: 50%
}

#chat-sb-icons .input>.sb-active:not(.sb-icon-close),
#chat-sb-icons .input>div:not(.sb-icon-close):hover {
    background-color: #028be5 !important
}

.sb-open-ai-faq-box {
    top: 30px !important;
    bottom: 30px;
    margin-top: 0 !important;
    max-height: none !important
}

.sb-open-ai-faq-box textarea {
    min-height: 66px
}

.sb-area-reports>.sb-tab>.sb-content {
    display: flex;
    padding-left: 0
}

.sb-area-reports>.sb-tab>.sb-content>.sb-reports-chart {
    width: 80%;
    padding-left: 15px
}

.sb-area-reports>.sb-tab>.sb-content>.sb-reports-sidebar {
    flex: 1 1 auto;
    max-width: 280px;
    padding: 5px 0 0 15px
}

.sb-area-reports>.sb-tab>.sb-content>.sb-reports-sidebar .sb-collapse {
    padding-bottom: 30px
}

.sb-area-reports>.sb-tab>.sb-content.sb-no-results-active {
    overflow-y: hidden;
    justify-content: center;
    align-items: center
}

.sb-area-reports>.sb-tab>.sb-content>.sb-no-results {
    display: none
}

.sb-area-reports>.sb-tab .sb-nav>ul li:not(.sb-tab-nav-title) {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px
}

.sb-area-reports p {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.3px;
    margin: 5px 0 15px 0;
    color: #788692
}

.sb-area-reports .sb-table th,
.sb-area-reports .sb-table td {
    padding: 9px 0
}

.sb-area-reports table td {
    font-size: 13px
}

.sb-area-reports .sb-reports-text {
    margin-top: 15px
}

.sb-area-reports .sb-report-export {
    margin-left: 5px
}

.sb-area-reports .sb-report-export:not(:hover) {
    border: 1px solid rgba(140, 140, 145, 0.30);
    opacity: 1
}

.sb-area-reports td .sb-icon-check,
.sb-area-reports td .sb-icon-close,
.sb-area-reports td .sb-icon-like,
.sb-area-reports td .sb-icon-dislike {
    color: #1a9260;
    font-size: 13px;
    transform: translateY(1px);
    display: inline-block
}

.sb-area-reports td .sb-icon-close,
.sb-area-reports td .sb-icon-dislike {
    color: #ca3434
}

.sb-area-reports td .sb-icon-close {
    font-size: 11px
}

.sb-area-reports td div {
    margin: 5px 0 0 0
}

.sb-area-reports td img {
    border-radius: 3px;
    width: 20px;
    margin: 0 10px 0 0;
    transform: translateY(2px)
}

.sb-area-reports td img.sb-flag {
    height: 13px
}

.sb-area-reports td:first-child>div {
    margin: 0 15px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.chart-cnt {
    padding-bottom: 30px
}

#sb-date-picker {
    text-align: center;
    font-weight: 500;
    min-width: 255px
}

.sb-report-agents-ratings td .sb-icon-check,
.sb-report-agents-ratings td .sb-icon-like,
.sb-report-articles-ratings td .sb-icon-check,
.sb-report-articles-ratings td .sb-icon-like {
    margin: 0 10px 0 0
}

.sb-report-agents-ratings td .sb-icon-close,
.sb-report-agents-ratings td .sb-icon-dislike,
.sb-report-articles-ratings td .sb-icon-close,
.sb-report-articles-ratings td .sb-icon-dislike {
    margin: 0 10px 0 15px
}

.sb-qea-repeater-answer>label {
    position: relative
}

.sb-qea-repeater-answer>label i {
    position: absolute;
    right: 0;
    top: 0
}

.sb-qea-repeater-answer>label i:before {
    font-size: 17px;
    line-height: 35px
}

.sb-qea-repeater-answer>label i:not(.sb-active) {
    display: none
}

.sb-area-chatbot .sb-repeater {
    margin-right: 30px
}

.sb-area-chatbot .sb-repeater .sb-repeater {
    margin-right: 0
}

.sb-area-chatbot>[data-id]:not(.sb-active) {
    display: none
}

#sb-table-chatbot-files,
#sb-table-chatbot-website {
    letter-spacing: .3px
}

#sb-table-chatbot-files td:first-child,
#sb-table-chatbot-files td:last-child,
#sb-table-chatbot-website td:first-child,
#sb-table-chatbot-website td:last-child {
    max-width: 25px;
    width: 25px
}

#sb-table-chatbot-files td:last-child,
#sb-table-chatbot-website td:last-child {
    padding-right: 0
}

#sb-table-chatbot-files td:last-child i,
#sb-table-chatbot-website td:last-child i {
    right: 5px;
    top: 12px
}

#sb-table-chatbot-files td,
#sb-table-chatbot-website td {
    position: relative;
    transition: background-color .4s
}

#sb-table-chatbot-files td:nth-child(3),
#sb-table-chatbot-website td:nth-child(3) {
    width: 100px;
    max-width: 100px
}

#sb-table-chatbot-files label,
#sb-table-chatbot-website label {
    letter-spacing: 0.3px;
    font-size: 12px;
    line-height: 12px;
    color: #f69e00;
    font-weight: 500;
    margin: 0 15px
}

#sb-table-chatbot-files:empty+div .sb-btn-red,
#sb-table-chatbot-website:empty+div .sb-btn-red {
    display: none
}

.sb-enlarger-function-calling.sb-active>div,
.sb-enlarger-rest-api.sb-active>div {
    display: flex
}

.sb-enlarger-function-calling.sb-active>div:not(:last-child),
.sb-enlarger-rest-api.sb-active>div:not(:last-child) {
    margin-bottom: 10px
}

[data-id="open-ai-faq-set-data"] .sb-setting {
    width: 50%
}

[data-id="open-ai-faq-set-data"] .sb-setting+.sb-setting {
    margin-left: 10px
}

#sb-chatbot-info {
    min-height: calc(100% - 2px);
    color: #fff;
}

#sb-chatbot-info p {
    line-height: 30px;
    font-size: 13px
}

[data-id="playground"] {
    height: 100%
}

[data-id="playground"]>div {
    height: calc(100% - 70px)
}

[data-id="playground"]>div>div {
    height: calc(100% - 35px);
    padding: 15px 20px 20px 20px;
    position: relative
}

.sb-playground {
    flex-grow: 1
}

.sb-playground .sb-scroll-area {
    height: calc(100% - 110px);
    letter-spacing: .3px
}

.sb-playground .sb-scroll-area>div {
    margin: 0 15px 0 0;
    min-width: 70px;
    animation: none !important
}

.sb-playground .sb-scroll-area>div>div:first-child {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 5px;
    color: #fff;
}

.sb-playground .sb-scroll-area>div>div:first-child div {
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all 0.4s
}

.sb-playground .sb-scroll-area>div>div:first-child i {
    width: 17px;
    height: 17px
}

.sb-playground .sb-scroll-area>div>div:first-child i:before {
    font-size: 10px;
    line-height: 18px
}

.sb-playground .sb-scroll-area>div>div:last-child,
.sb-playground .sb-scroll-area>div>div a:not(.sb-btn) {
    color: #fff;
    font-size: 13px;
    line-height: 21px
}

.sb-playground .sb-scroll-area>div:hover div div {
    opacity: 1
}

.sb-playground .sb-scroll-area>div+div {
    margin-top: 15px
}

.sb-playground .sb-scroll-area .sb-menu-btn,
.sb-playground .sb-scroll-area .sb-menu,
.sb-playground .sb-scroll-area .sb-time {
    display: none !important
}

.sb-playground .sb-scroll-area:empty {
    height: 0
}

.sb-playground .sb-scroll-area:empty+.sb-no-results {
    display: block
}

.sb-playground .sb-scroll-area .sb-rich-message .sb-slider {
    margin: 0
}

.sb-playground .sb-scroll-area .sb-rich-message .sb-card .sb-card-img+div+.sb-card-extra {
    top: 45px;
    left: 25px
}

.sb-playground .sb-no-results {
    display: none;
    min-height: 50px
}

.sb-playground .sb-rich-cnt[data-type="chips"] .sb-text {
    padding: 0
}

#sb-playground-query-panel {
    max-width: 800px
}

#sb-playground-query-panel pre {
    text-align: left;
    margin: 0;
    line-height: 20px;
    font-size: 15px
}

#sb-playground-embeddings-panel p {
    text-align: left;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400
}

#sb-playground-embeddings-panel p b {
    font-weight: 500
}

#sb-playground-embeddings-panel p a {
    margin: 0;
    color: #24272a
}

#sb-playground-embeddings-panel p span {
    display: block
}

#sb-playground-embeddings-panel p span+span {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

#sb-playground-embeddings-panel p span span {
    line-height: 20px;
    margin-top: 10px
}

.sb-playground-info {
    min-width: 250px;
    border-left: 1px solid rgba(140, 140, 145, 0.30);
    line-height: 25px;
    font-size: 13px;
    letter-spacing: .3px;
    color: #fff;
}

.sb-playground-info b {
    font-weight: 500
}

.sb-playground-info .sb-btn-text {
    text-decoration: underline;
    margin-top: 15px
}

.sb-playground-info .sb-btn-text+.sb-btn-text {
    margin-left: 15px
}

.sb-playground-editor {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px
}

.sb-playground-editor>.sb-flex {
    justify-content: space-between;
    margin: 15px 0 0 0
}

.sb-playground-editor>.sb-flex [data-value=add]:not(:hover) {
    opacity: .6
}

.sb-playground-editor textarea {
    min-height: 25px
}

.sb-playground-editor [data-value="clear"]:before {
    font-size: 10px
}

[data-id="flows"]>.sb-content {
    overflow: hidden;
    overflow-x: scroll;
    position: relative;
    display: flex;
    padding-top: 0;
    padding-bottom: 0
}

[data-id="flows"]>.sb-content>div {
    width: 200px;
    min-width: 200px;
    margin-right: 50px;
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative
}

[data-id="flows"]>.sb-content>div>div:not(.sb-flow-add-step) {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
    width: 100%
}

[data-id="flows"]>.sb-content>div:first-child .sb-flow-add-block,
[data-id="flows"]>.sb-content>div:last-child .sb-flow-add-step {
    display: none
}

.sb-flow-add-block {
    height: 40px;
    text-align: center;
    line-height: 45px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px dashed #fff;
    position: relative;
    transition: all 0.4s
}

.sb-flow-add-block:hover {
    background: #028be5;
    border-color: #028be5
}

.sb-flow-add-block:hover:before {
    color: #fff
}

.sb-flow-add-step {
    position: absolute;
    right: -40px;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    cursor: default;
    transition: all 0.4s
}

.sb-flow-block {
    border-radius: 4px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    transition: all 0.4s;
    background: #fff;
    cursor: pointer;
    letter-spacing: .3px
}

.sb-flow-block>div {
    padding: 10px;
    font-size: 13px;
    line-height: 23px;
    user-select: none;
    position: relative
}

.sb-flow-block>div:first-child {
    transition: all 0.4s;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none
}

.sb-flow-block>div+div {
    transition: all 0.4s;
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-flow-block>div+div:empty {
    display: none
}

.sb-flow-block+div {
    margin-top: 10px
}

.sb-flow-block:hover {
    border-color: #028be5
}

.sb-flow-block[data-type="video"]>div+div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-flow-block[data-type="set_data"]>div>div,
.sb-flow-block[data-type="action"]>div>div,
.sb-flow-block[data-type="rest_api"]>div,
.sb-flow-block[data-type="condition"]>div>div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sb-flow-connectors {
    padding: 0 !important
}

.sb-flow-connectors>div {
    padding: 5px 50px 5px 10px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    transition: all 0.4s
}

.sb-flow-connectors>div:hover,
.sb-flow-connectors>div.sb-active {
    color: #028be5
}

.sb-flow-connectors>div+div {
    border-top: 1px solid rgba(140, 140, 145, 0.30)
}

.sb-flow-connectors:empty {
    display: none
}

.sb-flow-connectors>div>span,
.sb-flow-block-cnt-name {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    border-left: 1px solid rgba(140, 140, 145, 0.30)
}

#sb-flows-blocks-nav {
    position: fixed
}

#sb-flows-blocks-nav:not(.sb-active) {
    display: none
}

.sb-flow-block-cnt {
    background: #f5f7fa;
    padding: 10px;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s
}

.sb-flow-block-cnt+.sb-flow-block-cnt {
    margin-top: 15px
}

.sb-flow-block-cnt.sb-active {
    background: #E6F2FC
}

.sb-flow-block-cnt.sb-active .sb-flow-block-cnt-name {
    color: #028be5;
    border-color: #028be5
}

.sb-flow-block-cnt-name {
    left: auto;
    right: 0;
    bottom: auto;
    background: #f5f7fa;
    border-radius: 4px;
    line-height: 25px;
    width: 30px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    transition: all 0.4s;
    z-index: 1
}

.sb-flows-blocks-nav-box {
    background: none;
    box-shadow: none;
    width: 170px !important
}

.sb-flows-blocks-nav-box .sb-top-bar {
    padding: 0 !important;
    border: none !important;
    margin: 0 0 10px 0 !important
}

.sb-flows-blocks-nav-box .sb-top-bar .sb-close {
    background-color: #fff;
    opacity: 1;
    padding: 0;
    z-index: 0
}

.sb-flows-blocks-nav-box .sb-main {
    padding: 0 !important
}

.sb-flows-blocks-nav-box .sb-menu {
    width: 100%;
    position: relative
}

#sb-block-delete {
    margin-top: 60px;
    font-size: 15px;
    letter-spacing: .3px
}

#sb-block-delete:hover {
    color: #ca3434
}

.sb-flow-block-box {
    height: calc(100% - 50px) !important
}

.sb-flow-block-box .sb-setting+.sb-setting {
    margin-top: 30px
}

.sb-flow-block-box .sb-setting .repeater-item+.repeater-item,
.sb-flow-block-box .sb-flow-conditions>div+div {
    border-top: none;
    padding-top: 10px;
    margin-top: 0
}

.sb-flow-block-box .sb-setting .repeater-item+.repeater-item>i,
.sb-flow-block-box .sb-flow-conditions>div+div>i {
    margin-top: -1px
}

.sb-flow-block-box .sb-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px
}

.sb-flow-block-box .sb-title.sb-hide+.sb-setting {
    display: none
}

.sb-flow-block-box .sb-flow-conditions .sb-setting {
    margin-top: 0
}

.sb-flow-block-box .sb-flow-conditions:empty+div {
    margin-top: 0
}

.sb-flow-block-box .sb-flow-conditions [value="custom_variable"],
.sb-flow-block-box .sb-flow-conditions [value="repeat"],
.sb-flow-block-box .sb-flow-conditions [value="browsing_time"],
.sb-flow-block-box .sb-flow-conditions [value="scroll_position"] {
    display: none !important
}

.sb-flow-block-box .sb-main .sb-add-condition {
    margin: 10px 0 30px 0;
    width: auto
}

.sb-repeater-block-user-details .repeater-item>div {
    display: block
}

.sb-repeater-block-user-details .repeater-item+.repeater-item {
    padding-top: 20px !important
}

.sb-repeater-block-user-details .sb-setting label {
    margin: 0 15px 0 0;
    min-width: 0;
    line-height: 25px;
    font-weight: 400;
    font-size: 13px
}

.sb-repeater-block-user-details .sb-setting+.sb-setting {
    margin: 10px 0 0 0;
    align-items: center
}

.sb-repeater-block-user-details input[type="checkbox"] {
    height: 25px;
    min-height: 25px;
    width: 25px;
    min-width: 25px !important
}

.sb-repeater-block-user-details input[type="checkbox"]:checked:before {
    line-height: 25px;
    font-size: 12px
}

.sb-repeater-block-data .sb-setting+.sb-setting,
.sb-repeater-block-actions .sb-setting+.sb-setting,
.sb-repeater-block-rest-api .sb-setting+.sb-setting {
    margin: 0 0 0 15px
}

.sb-repeater-block-actions input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none
}

.sb-flow-scroll {
    position: fixed;
    z-index: 1;
    bottom: 15px;
    right: 15px;
    width: 35px;
    line-height: 40px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s
}

.sb-flow-scroll:not(.sb-active) {
    display: none
}

.sb-flow-scroll:before {
    color: #fff
}

.sb-flow-scroll:hover {
    background-color: #028be5;
    border-color: #028be5
}

.sb-flow-scroll:hover:before {
    color: #fff
}

.sb-flow-scroll.sb-icon-arrow-left {
    right: 60px
}

.sb-flow-start-messages [data-id="message"] {
    min-height: 45px
}

.sb-area-articles>.sb-tab>.sb-content .sb-loading:before {
    left: 20px;
    top: 30px
}

.sb-area-articles>.sb-tab>.sb-content .sb-article-content {
    padding-left: 40px;
    max-width: 1326px
}

.sb-area-articles .sb-add-category,
.sb-area-articles .ul-categories {
    display: none !important
}

.sb-area-articles #editorjs {
    margin-top: -5px
}

.sb-area-articles[data-type="categories"] .sb-nav .sb-add-category {
    display: inline-block !important
}

.sb-area-articles[data-type="categories"] .sb-nav .ul-categories {
    display: block !important
}

.sb-area-articles[data-type="categories"] .sb-nav .ul-articles,
.sb-area-articles[data-type="categories"] .sb-nav .sb-add-article,
.sb-area-articles[data-type="categories"] .sb-nav+.sb-content-articles {
    display: none !important
}

.sb-area-articles[data-type="categories"] .sb-nav+div+.sb-content-categories:not(.sb-hide) {
    display: block !important
}

.sb-area-articles[data-type="categories"] .sb-view-article {
    display: none
}

.sb-area-articles .sb-content-categories {
    display: none !important
}

.sb-area-articles .sb-content-categories .sb-setting {
    display: block
}

.sb-area-articles #sb-article-id {
    display: block;
    margin-bottom: 0
}

.sb-area-articles #sb-article-id span {
    font-weight: 400;
    padding-left: 15px
}

.sb-area-articles .sb-setting+h2,
.sb-area-articles .sb-article-categories,
.sb-area-articles #sb-article-id {
    margin-top: 30px
}

.sb-content-articles:not([data-id]) .sb-language-switcher {
    display: none
}

.sb-article-categories .sb-setting>div {
    width: 100%
}

.sb-view-article[href=""] {
    display: none
}

#category-image {
    max-width: 100px;
    background-size: 60px
}

.sb-menu-articles .sb-docs,
.sb-menu-chatbot .sb-docs {
    text-decoration: none;
    color: #fff;
    line-height: 42px;
    opacity: .8
}

#sb-whatsapp-alert-btn {
    transform: translate(10px, 2px);
    display: inline-block;
    transition: all 0.4s
}

#sb-whatsapp-alert-btn:hover {
    opacity: .6
}

.sb-btn-app-disable {
    display: none !important
}

@keyframes sb-lightbox-animation {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

[data-provider="twilio"] .sb-whatsapp-box-header,
[data-provider="twilio"] .sb-whatsapp-box-header+div {
    display: none
}

.sb-lightbox {
    position: fixed;
    width: calc(100% - 50px);
    height: auto;
    padding: 0;
    max-width: 700px;
    max-height: 700px;
    color: #fff;
    left: 50%;
    top: 50%;
    margin-left: 150px;
    margin-top: 150px;
    display: none;
    transition: opacity 0.4s, transform 0.4s;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    border-radius: 10px;
    outline: 1px rgba(255, 255, 255, 0.20) solid;
    outline-offset: -0.50px;
    backdrop-filter: blur(15px);
}

.sb-lightbox.sb-active {
    display: block;
    animation: sb-lightbox-animation 0.5s;
    overflow: auto;
}

.sb-lightbox.sb-dialogflow-intent-box,
.sb-lightbox.sb-updates-box {
    height: calc(100% - 100px)
}

.sb-lightbox .sb-top-bar {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(140, 140, 145, 0.30);
    margin-bottom: 30px
}

.sb-lightbox .sb-top-bar>div {
    display: flex;
    align-items: center
}

.sb-lightbox .sb-top-bar>div:first-child {
    font-weight: 600;
    font-size: 20px;
    line-height: 45px;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 15px
}

.sb-lightbox .sb-top-bar>div:first-child a {
    text-decoration: none
}

.sb-lightbox .sb-top-bar>div:first-child a i {
    font-size: 13px;
    color: #b1c2d1;
}

.sb-lightbox .sb-top-bar>div:first-child a i:hover {
    color: #028be5
}

.sb-lightbox .sb-main {
    display: block;
    padding: 0 20px 30px 20px;
    justify-content: space-between;
    height: calc(100% - 145px)
}

.sb-lightbox .sb-main>div {
    height: auto;
    width: 100%
}

.sb-lightbox .sb-main>.sb-title+*,
.sb-lightbox .sb-main>div>.sb-title+*,
.sb-lightbox .sb-main p+.sb-title {
    margin-top: 20px
}

.sb-lightbox .sb-main>.sb-title+* *:first-child,
.sb-lightbox .sb-main>div>.sb-title+* *:first-child,
.sb-lightbox .sb-main p+.sb-title *:first-child {
    margin-top: 0
}

.sb-lightbox .sb-main>.sb-setting+.sb-title,
.sb-lightbox .sb-main>div>.sb-setting+.sb-title {
    margin-top: 30px
}

.sb-lightbox .sb-main p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff
}

.sb-lightbox .sb-main p a:not([class]) {
    color: #028be5;
    text-decoration: none
}

.sb-lightbox .sb-main p b {
    font-weight: 500
}

.sb-lightbox .sb-main>.sb-bottom {
    padding-top: 30px;
    display: flex;
    align-items: center
}

.sb-lightbox .sb-info {
    padding: 20px;
    background: #ca3434;
    color: #fff;
    font-size: 14px;
    line-height: 23px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    letter-spacing: 0.3px;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 5;
    height: 45px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    display: none
}

.sb-lightbox .sb-info a {
    color: #FFF;
    padding-left: 4px
}

.sb-lightbox .sb-info.sb-active {
    display: flex;
    animation: sb-fade-animation 0.4s
}

.sb-lightbox .sb-repeater {
    width: calc(100% - 25px)
}

.sb-lightbox.sb-lightbox-media {
    animation: none;
    background: #000
}

.sb-lightbox-overlay {
    z-index: 995 !important;
    background-color: rgba(0, 0, 0, 0.8) !important
}

.sb-lightbox-overlay.sb-active {
    display: block
}

.sb-lightbox-media.sb-active+.sb-lightbox-overlay {
    background-color: rgba(0, 0, 0, 0.6) !important
}

.sb-profile-edit-box,
.sb-profile-box {
    height: calc(100% - 50px);
    max-width: 1000px
}

.sb-profile-edit-box .sb-main,
.sb-profile-box .sb-main {
    display: flex;
    padding: 0 20px
}

.sb-profile-edit-box .sb-main>div,
.sb-profile-box .sb-main>div {
    height: 100%;
    width: 50%
}

.sb-direct-message-box,
#sb-whatsapp-send-template-box {
    height: calc(100% - 50px);
    max-width: 1000px
}

.sb-direct-message-box .sb-bottom div+a,
#sb-whatsapp-send-template-box .sb-bottom div+a {
    margin-left: 15px
}

.sb-direct-message-box .sb-bottom>div,
#sb-whatsapp-send-template-box .sb-bottom>div {
    font-weight: 500;
    margin: 0 15px;
    color: #028be5
}

.sb-direct-message-box .sb-bottom>div:empty,
#sb-whatsapp-send-template-box .sb-bottom>div:empty {
    display: none
}

.sb-updates-box .sb-input,
.sb-requirements-box .sb-input {
    justify-content: flex-start
}

.sb-updates-box .sb-input>span,
.sb-requirements-box .sb-input>span {
    max-width: 200px;
    min-width: 200px
}

.sb-updates-box .sb-input>div,
.sb-requirements-box .sb-input>div {
    font-size: 13px;
    letter-spacing: 0.3px;
    background: rgba(255, 196, 88, 0.15);
    color: #9b7424;
    width: 100%;
    line-height: 20px;
    padding: 13px;
    border-radius: 4px
}

.sb-updates-box .sb-input>div.sb-green,
.sb-requirements-box .sb-input>div.sb-green {
    background-color: rgba(26, 146, 96, 0.07);
    color: #15744d
}

.sb-requirements-box .sb-input>div {
    display: inline-block;
    padding: 5px 10px;
    width: auto
}

.sb-requirements-box .sb-main>p {
    margin-top: 30px
}

.sb-dialog-box {
    max-width: 500px;
    height: auto;
    min-height: 75px;
    text-align: center;
    padding: 30px;
    z-index: 999998
}

.sb-dialog-box p {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 20px 0
}

.sb-dialog-box a {
    margin: 0 7px
}

.sb-dialog-box .sb-link-text {
    margin: 0;
    color: #24272a
}

.sb-dialog-box[data-type="choice"] .sb-close,
.sb-dialog-box[data-type="alert"] .sb-close,
.sb-dialog-box[data-type="info"] .sb-cancel,
.sb-dialog-box[data-type="info"] .sb-confirm,
.sb-dialog-box[data-type="map"] .sb-cancel,
.sb-dialog-box[data-type="map"] .sb-confirm {
    display: none
}

.sb-dialog-box[data-type="alert"] {
    padding: 60px 30px
}

.sb-dialog-box iframe {
    width: 100%;
    height: 400px;
    border: none;
    margin: 0;
    display: block
}

.sb-dialog-box pre {
    font-family: monospace;
    margin: 10px 0 0 0;
    overflow-x: scroll;
    padding: 5px 5px 7px 5px;
    border-radius: 3px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    font-weight: 400
}

.sb-dialog-box#error pre {
    white-space: normal
}

.sb-dialog-box .sb-title {
    font-size: 21px;
    line-height: 50px;
    margin-top: -10px;
    color: #028be5
}

.sb-dialog-box .sb-title:empty {
    display: none
}

.sb-dialog-box[data-type="map"] {
    max-width: 1000px;
    padding: 0
}

.sb-dialog-box[data-type="map"] p {
    margin: 0
}

.sb-dialog-box[data-type="map"]>div {
    position: absolute;
    z-index: 9;
    top: 10px;
    right: 0
}

.sb-dialogflow-intent-box .sb-intent-add,
.sb-dialogflow-intent-box .sb-bot-response {
    position: relative
}

.sb-dialogflow-intent-box .sb-intent-add i,
.sb-dialogflow-intent-box .sb-bot-response i {
    position: absolute;
    margin-left: 15px;
    top: -8px
}

.sb-dialogflow-intent-box .sb-intent-add i:before,
.sb-dialogflow-intent-box .sb-bot-response i:before {
    font-size: 16px
}

.sb-dialogflow-intent-box .sb-intent-add i.sb-loading:before,
.sb-dialogflow-intent-box .sb-bot-response i.sb-loading:before {
    line-height: 30px;
    font-size: 20px
}

.sb-dialogflow-intent-box .sb-intent-add {
    margin-top: 10px
}

.sb-dialogflow-intent-box .sb-intent-add i {
    position: absolute;
    margin-left: 15px;
    top: -8px
}

.sb-dialogflow-intent-box .sb-intent-add i+i {
    margin-left: 60px
}

.sb-dialogflow-intent-box .sb-intent-add i+i+i {
    margin-left: 105px
}

.sb-dialogflow-intent-box .sb-type-text+.sb-type-text {
    margin-top: 5px
}

.sb-dialogflow-intent-box .sb-title.sb-title-search .sb-search-btn {
    right: 36px
}

.sb-bot-response.sb-disabled {
    position: relative
}

.sb-bot-response.sb-disabled textarea {
    opacity: 0.5
}

.sb-bot-response.sb-disabled i {
    display: none !important
}

.sb-bot-response.sb-disabled:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

#sb-intent-preview,
#sb-qea-preview {
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s
}

#sb-intent-preview:hover,
#sb-qea-preview:hover {
    color: #028be5
}

#sb-envato-box p,
.sb-bold-list p {
    font-weight: 400;
    text-align: left
}

#sb-envato-box b,
.sb-bold-list b {
    display: inline-block;
    width: 150px;
    font-weight: 500
}

#opencart-order-details {
    padding: 20px 30px
}

#opencart-order-details .sb-title {
    text-align: left
}

#opencart-order-details .sb-panel-details {
    border: none
}

#opencart-order-details .sb-title-opencart-products {
    color: #24272a;
    margin-top: -30px;
    font-weight: 500;
    font-size: 16px
}

#opencart-order-details .sb-list-links {
    text-align: left
}

#opencart-order-details .sb-list-links>a {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px
}

#opencart-order-details .sb-list-links>a span:last-child {
    float: right
}

#opencart-order-details .sb-panel-details {
    display: inline-block;
    width: calc(100% - 150px);
    padding: 0
}

#opencart-order-details .oc-b-products {
    transform: translateY(-10px)
}

#intent-preview-box,
#qea-preview-box {
    max-width: 350px;
    padding: 30px;
    text-align: left
}

#intent-preview-box>p,
#qea-preview-box>p {
    font-weight: 400;
    font-size: 13px;
    text-align: left
}

#intent-preview-box>p span,
#qea-preview-box>p span {
    display: block;
    line-height: 20px;
    overflow: hidden
}

#intent-preview-box>p span+span,
#qea-preview-box>p span+span {
    margin-top: 8px
}

#intent-preview-box .sb-btn,
#qea-preview-box .sb-btn {
    margin: 0
}

#sb-errors-list-box {
    max-width: 600px
}

#sb-errors-list-box pre {
    white-space: normal;
    text-align: left;
    padding: 7px 10px
}

.sb-loading-global {
    height: 36px;
    width: 36px;
    max-width: 36px;
    max-height: 36px;
    margin: -18px 0 0 -18px;
    color: #028be5;
    border-radius: 3px
}

.sb-admin-box {
    max-width: 500px;
    margin: 30px auto;
    padding: 48px 40px 36px;
    border-radius: 5px;
    border: 1px solid rgba(140, 140, 145, 0.30);
    background: #fff;
    position: relative
}

.sb-admin-box .sb-top-bar {
    padding-bottom: 30px
}

.sb-admin-box .sb-top-bar img {
    max-width: 300px
}

.sb-admin-box .sb-top-bar .sb-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 30px 0px 15px 0px
}

.sb-admin-box .sb-text {
    font-size: 15px;
    line-height: 25px;
    color: #fff
}

.sb-admin-box .sb-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px
}

.sb-admin-box .sb-info {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    background-color: #ca3434;
    right: 0;
    left: 0;
    top: 0;
    margin: 0 0 40px 0;
    padding: 15px 20px;
    border-radius: 4px;
    display: none
}

.sb-admin-box .sb-info.sb-active {
    display: block;
    animation: sb-fade-animation 0.4s
}

.sb-admin-box .sb-text+.sb-input,
.sb-admin-box .sb-input+.sb-text {
    margin-top: 30px
}

.sb-rich-login {
    max-width: 500px
}

.sb-rich-login .sb-forgot {
    font-size: 12px;
    margin-top: 15px;
    text-align: right;
    color: #fff
}

.sb-rich-login .sb-register {
    font-weight: 600;
    font-size: 15px
}

.sb-rich-login .sb-forgot,
.sb-rich-login .sb-register {
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none
}

.sb-rich-login .sb-forgot:hover,
.sb-rich-login .sb-register:hover {
    color: #028be5
}

#sb-error-check {
    display: none !important
}

.sb-language-switcher {
    display: flex;
    align-items: center
}

.sb-language-switcher img,
.sb-language-switcher>i {
    display: block;
    opacity: .5;
    transition: all 0.4s;
    cursor: pointer
}

.sb-language-switcher img {
    border-radius: 2px;
    margin: 0 5px;
    width: 20px;
    height: 13px;
    position: relative;
    z-index: 2
}

.sb-language-switcher span {
    position: relative;
    transition: all 0.4s
}

.sb-language-switcher span i {
    position: absolute;
    top: 0;
    left: 5px;
    line-height: 18px;
    cursor: pointer;
    font-size: 9px;
    opacity: 0;
    z-index: 0;
    transition: all 0.4s
}

.sb-language-switcher span i:hover {
    color: #ca3434
}

.sb-language-switcher span:hover {
    padding-left: 15px;
    transition-delay: 1s
}

.sb-language-switcher span:hover i {
    opacity: 1;
    transition-delay: 1s
}

.sb-language-switcher span:hover i:hover {
    transition-delay: 0s
}

.sb-language-switcher>i {
    font-size: 12px;
    line-height: 12px;
    height: 12px;
    margin-left: 10px
}

.sb-language-switcher .sb-active img,
.sb-language-switcher span:hover i,
.sb-language-switcher span:hover img {
    opacity: 1
}

.sb-language-switcher>i:hover {
    opacity: 1;
    color: #028be5
}

.sb-languages-box .sb-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    max-height: 300px;
    margin-bottom: 30px;
    padding-bottom: 0
}

.sb-languages-box .sb-main>div {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
    transition: all 0.4s
}

.sb-languages-box .sb-main>div>img {
    margin-right: 15px;
    border-radius: 3px;
    width: 26px;
    height: 15px
}

.sb-languages-box .sb-main>div:hover {
    color: #028be5
}

.sb-apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px
}

.sb-apps>div {
    min-height: 0;
    min-width: 0;
    position: relative;
    overflow: hidden;
    padding: 30px 30px 30px 130px;
    border-radius: 5px;
    border: 1px solid #cdd2d7;
    cursor: pointer;
    transition: all 0.4s
}

.sb-apps>div img {
    max-width: 60px;
    position: absolute;
    left: 30px;
    top: 30px
}

.sb-apps>div h2 {
    font-size: 19px;
    padding: 0;
    margin: 0;
    color: #fff
}

.sb-apps>div p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin: 5px 0 0 0;
    color: #788692
}

.sb-apps>div i {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #1a9260
}

.sb-apps>div:hover {
    border-color: #028be5;
    box-shadow: 0 0 5px rgba(39, 156, 255, 0.2)
}

.sb-apps>div.sb-disabled {
    opacity: 0.5
}

.sb-panel-details .sb-whmcs-link {
    margin: 15px 15px 0 15px
}

.sb-panel-whmcs .sb-list-items {
    margin: 0 15px 0 15px
}

.sb-panel-aecommerce .sb-list-items>a>span:first-child,
.sb-panel-martfury .sb-list-items>a>span:first-child,
.sb-panel-opencart .sb-list-items>a>span:first-child {
    opacity: .6;
    margin-right: 5px
}

.sb-panel-aecommerce .sb-list-links>a>span:last-child,
.sb-panel-martfury .sb-list-links>a>span:last-child,
.sb-panel-opencart .sb-list-links>a>span:last-child {
    float: right
}

.sb-panel-zendesk .sb-list-items>a {
    margin-bottom: 5px
}

.sb-panel-zendesk .sb-list-items>a>span:first-child {
    display: block;
    line-height: 15px;
    padding-left: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.sb-panel-zendesk .sb-list-items>a>span:first-child i {
    right: auto;
    left: 15px;
    font-style: normal;
    height: 15px;
    width: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 3px;
    font-size: 9px;
    opacity: 1;
    font-weight: 500;
    color: #fff
}

.sb-panel-zendesk .sb-btn {
    margin-left: 15px
}

.sb-panel-zendesk #sb-zendesk-update-ticket {
    top: 10px
}

.sb-panel-zendesk #sb-zendesk-update-ticket:hover {
    color: #028be5
}

.sb-zendesk-status-n {
    background-color: #ffb057;
    color: #703815 !important
}

.sb-zendesk-status-o {
    background-color: #e34f32
}

.sb-zendesk-status-c {
    background-color: #13ca7e
}

.sb-zendesk-status-p {
    background-color: #3091ec;
    color: #fff
}

.sb-zendesk-status-s {
    background-color: #87929d
}

.sb-zendesk-sync:before {
    content: "";
    position: absolute;
    width: 2px;
    background: #028be5;
    height: calc(100% - 7px);
    left: 0;
    top: 0
}

.sb-aecommerce-orders>a>span:last-child {
    margin-left: 15px
}

.sb-panel-details .sb-woocommerce-cart>a {
    padding-right: 35px
}

.sb-btn-app-setting:not(.sb-active) {
    display: none
}

.sb-btn-app-setting:not(.sb-active)+.sb-btn {
    margin-left: 0
}

#sb-embeddings-box {
    min-height: 25px
}

#sb-embeddings-box p {
    margin: 0
}

#sb-embeddings-box p span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    margin: 10px 0 0 0
}

#sb-embeddings-box p+div {
    display: none !important
}

.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    right: 20px !important;
    left: 20px;
    z-index: 3001;
    display: none;
    font-size: 15px;
    line-height: 1em
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
    float: none
}

.daterangepicker.single .drp-selected {
    display: none
}

.daterangepicker.show-calendar .drp-calendar {
    display: block
}

.daterangepicker.show-calendar .drp-buttons {
    display: block
}

.daterangepicker.auto-apply .drp-buttons {
    display: none
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px
}

.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px
}

.daterangepicker .drp-calendar.right {
    padding: 8px
}

.daterangepicker .drp-calendar.single .calendar-table {
    border: none
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px
}

.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg)
}

.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg)
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer
}

.daterangepicker .calendar-table th {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .3px
}

.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit
}

.daterangepicker td.week,
.daterangepicker th.week {
    font-size: 80%;
    color: #ccc
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999
}

.daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px
}

.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0
}

.daterangepicker td.start-date.end-date {
    border-radius: 4px
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #028be5;
    border-color: transparent;
    color: #fff
}

.daterangepicker th.month {
    width: auto;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .3px
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%
}

.daterangepicker select.yearselect {
    width: 40%
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0
}

.daterangepicker.show-calendar .ranges {
    margin-top: 8px
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer
}

.daterangepicker .ranges li:hover {
    background-color: #eee
}

.daterangepicker .ranges li.active {
    background-color: #028be5;
    color: #fff
}

@media (min-width: 564px) {
    .daterangepicker {
        width: auto
    }

    .daterangepicker .ranges ul {
        width: 140px
    }

    .daterangepicker.single .ranges ul {
        width: 100%
    }

    .daterangepicker.single .drp-calendar.left {
        clear: none
    }

    .daterangepicker.single .ranges,
    .daterangepicker.single .drp-calendar {
        float: left
    }

    .daterangepicker {
        direction: ltr;
        text-align: left;
        box-shadow: 0 0 10px #0000001f
    }

    .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .daterangepicker .drp-calendar.right {
        margin-left: 0
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        padding-right: 8px
    }

    .daterangepicker .ranges,
    .daterangepicker .drp-calendar {
        float: left
    }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto
    }

    .daterangepicker .ranges {
        float: left
    }

    .daterangepicker.rtl .ranges {
        float: right
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important
    }
}

.codex-editor:after {
    content: "\4d";
    font-family: "Support Board Icons";
    position: absolute;
    left: 0;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    bottom: 25px;
    opacity: .5;
    z-index: -1
}

.ce-block a {
    color: #24272a
}

.ce-header {
    font-size: 16px !important;
    color: #24272a !important
}

.ce-toolbar__actions {
    padding-right: 15px
}

.ce-block__content,
.ce-toolbar__content {
    max-width: 100% !important;
    margin: 0
}

.cdx-input {
    width: auto
}

.ce-rawtool__textarea {
    min-height: 0 !important;
    background: #f5f7fa !important
}

.cdx-search-field__icon {
    height: 35px !important
}

.ct__content {
    color: #fff
}

.cdx-block {
    max-width: 100% !important
}

.image-tool__image-picture {
    border-radius: 3px
}

#whatsapp-cloud-sync-btn,
#whatsapp-cloud-reconnect-btn {
    display: none
}

.sb-cloud-admin [id="user_type"],
.sb-cloud-admin [id="first_name"],
.sb-cloud-admin [id="last_name"],
.sb-cloud-admin [id="password"],
.sb-cloud-admin [id="email"],
.sb-cloud-admin .sb-delete {
    display: none !important
}

.sb-cloud #whatsapp-cloud-sync-btn,
.sb-cloud #whatsapp-cloud-reconnect-btn {
    display: flex
}

.sb-cloud #admin-title,
.sb-cloud #login-icon,
.sb-cloud #login-message,
.sb-cloud #envato-purchase-code,
.sb-cloud #envato-validation,
.sb-cloud #email-piping-disable-cron,
.sb-cloud #auto-updates,
.sb-cloud #pusher,
.sb-cloud #cookie-domain,
.sb-cloud #system-requirements,
.sb-cloud #sb-path,
.sb-cloud #tab-aecommerce,
.sb-cloud #admin-icon,
.sb-cloud #push-notifications-provider,
.sb-cloud #push-notifications-id,
.sb-cloud #push-notifications-key,
.sb-cloud #tab-whmcs,
.sb-cloud #tab-perfex,
.sb-cloud #tab-ump,
.sb-cloud #tab-armember,
.sb-cloud #tab-martfury,
.sb-cloud #logs,
.sb-cloud .sb-version,
.sb-cloud #amazon-s3,
.sb-cloud #whatsapp-twilio-btn.sb-active+#whatsapp-cloud-sync-btn,
.sb-cloud #whatsapp-twilio-btn.sb-active+#whatsapp-cloud-sync-btn+#whatsapp-cloud-reconnect-btn {
    display: none !important
}

.sb-cloud #google-client-id:not(.sb-active),
.sb-cloud #google-client-secret:not(.sb-active),
.sb-cloud #google-refresh-token:not(.sb-active),
.sb-cloud #open-ai-key:not(.sb-active) {
    display: none !important
}

.sb-cloud #whatsapp-cloud-key:not(.sb-active),
.sb-cloud #whatsapp-twilio-btn:not(.sb-active) {
    display: none !important
}

.sb-cloud .sb-app-box .sb-setting,
.sb-cloud .sb-app-box .sb-main .sb-title,
.sb-cloud .sb-app-box .sb-btn-app-puchase {
    display: none !important
}

.sb-cloud .sb-active-app .sb-btn-app-disable {
    display: block !important
}

.sb-cloud .sb-active-app .sb-activate {
    display: none
}

.sb-main:not(.sb-cloud) #google-sync-mode,
.sb-main:not(.sb-cloud) #open-ai-sync-mode,
.sb-main:not(.sb-cloud) #whatsapp-cloud-sync-mode,
.sb-main:not(.sb-cloud) #open-ai-training-cron-job {
    display: none !important
}

.sb-credits-panel-box p b a {
    display: none !important
}

.sb-onboarding-box {
    height: calc(100% - 50px)
}

.sb-onboarding-box .sb-setting {
    align-items: center
}

.sb-onboarding-box .sb-setting>div:first-child {
    padding-right: 30px;
    width: 100%
}

.sb-onboarding-box .sb-setting>div:last-child {
    flex: 1
}

.sb-onboarding-box .sb-setting h2 {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.sb-onboarding-box .sb-setting h2 img,
.sb-onboarding-box .sb-setting h2 i {
    font-size: 18px;
    line-height: 20px;
    margin-left: 15px;
    height: 18px;
    display: block;
    transform: none
}

.sb-onboarding-box .sb-setting h2 a {
    text-decoration: none
}

.sb-onboarding-box .sb-setting .sb-btn {
    width: 70px
}

.sb-onboarding-box .sb-setting .sb-btn.sb-active {
    background-color: #1a9260;
    color: #1a9260;
    cursor: default
}

.sb-onboarding-box .sb-setting .sb-btn.sb-active:after {
    content: "\77";
    font-family: "Support Board Icons";
    position: absolute;
    left: 0;
    right: 0;
    color: #fff
}

.sb-onboarding-box .sb-setting+div {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e6e6e6
}

.sb-onboarding-box .sb-main>p {
    margin-bottom: 30px
}

.sb-menu [data-value="switch"] {
    position: static !important
}

.sb-menu [data-value="switch"]>div {
    position: absolute;
    left: calc(100% - 1px);
    top: -61px;
    height: calc(100% + 45px);
    padding: 8px 15px;
    background: #FFF;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    opacity: 0;
    transition: all 0.4s linear .2s
}

.sb-menu [data-value="switch"]>div a {
    display: block;
    padding: 6px 0
}

.sb-menu [data-value="switch"]:hover>div {
    opacity: 1
}

@media (max-width: 1600px) {
    .sb-admin>main>.sb-area-users>.sb-top-bar h2 {
        max-width: 200px;
        margin-right: 30px
    }
}

@media (max-width: 1300px) {
    .sb-admin>main>.sb-area-users>.sb-top-bar h2 {
        max-width: 100px
    }

    .sb-area-users .sb-menu-wide ul li {
        margin-right: 10px
    }

    .sb-setting .repeater-item>div label {
        margin: 0 0 15px 0
    }

    .sb-setting .repeater-item>div,
    .sb-setting .repeater-item>div,
    .sb-setting .input>div:not([data-type="textarea"]):not(.sb-repeater-add) {
        display: block
    }

    .sb-setting .input>div:not([data-type="textarea"]):not(.sb-repeater-add)>label {
        margin: 0 30px 10px 0
    }

    .sb-setting>.sb-setting-content {
        flex-shrink: 1
    }

    .sb-setting input,
    .sb-setting select,
    .sb-setting textarea,
    .sb-setting input,
    .sb-setting select,
    .sb-setting textarea {
        min-width: 0
    }

    [data-id="open-ai-faq-set-data"] .repeater-item>div {
        display: flex
    }

    #sb-chatbot-qea .sb-enlarger {
        min-height: 30px
    }

    .sb-type-timetable>.input {
        overflow: hidden
    }

    .sb-type-timetable .sb-timetable>div>div {
        flex-wrap: wrap
    }

    .sb-type-timetable .sb-timetable>div>div [data-day] {
        margin-bottom: 5px
    }

    .sb-area-reports>.sb-tab>.sb-content {
        display: block
    }

    .sb-area-reports>.sb-tab>.sb-content .sb-reports-chart {
        width: auto
    }

    .sb-area-reports>.sb-tab>.sb-content .sb-reports-sidebar {
        max-width: 100%
    }

    .sb-repeater-block-data .sb-setting+.sb-setting,
    .sb-repeater-block-actions .sb-setting+.sb-setting,
    .sb-repeater-block-rest-api .sb-setting+.sb-setting {
        margin: 5px 0 0 0
    }
}

@media (min-width: 465px) {
    .sb-menu-mobile>ul {
        box-shadow: none
    }
}

@media (min-width: 465px) and (max-width: 1200px) {
    .sb-board>.sb-admin-list {
        min-width: 300px
    }

    .sb-board .sb-labels .sb-status-online {
        text-indent: 999px;
        width: 10px;
        height: 10px;
        padding: 0;
        overflow: hidden;
        border-radius: 50%;
        background: #1a9260
    }

    .sb-board .sb-labels .sb-status-typing {
        padding: 0;
        text-indent: 999px;
        width: 30px;
        height: 25px;
        overflow: hidden;
        background: none
    }

    .sb-board .sb-conversation .sb-list>div {
        max-width: calc(100% - 100px)
    }
}

@media (min-width: 465px) and (max-width: 1366px) {

    .sb-board>.sb-admin-list,
    .sb-board .sb-user-details {
        max-width: 330px;
        min-width: 330px
    }

    .sb-admin-list .sb-search-btn>input {
        min-width: 225px
    }
}

@media (min-width: 465px) and (max-width: 1140px) {
    .sb-admin>main>div>.sb-top-bar>div:first-child>ul {
        overflow-x: scroll
    }
}

@media (min-width: 465px) and (max-width: 1024px) {

    .sb-board>.sb-admin-list,
    .sb-board .sb-user-details {
        max-width: 250px;
        min-width: 250px
    }

    .sb-admin-list .sb-search-btn>input {
        min-width: 145px;
        max-width: 145px
    }

    .sb-setting,
    .sb-setting {
        display: block
    }

    .sb-setting>.sb-setting-content,
    .sb-setting>.sb-setting-content {
        max-width: 100%;
        width: auto;
        padding-right: 0;
        padding-bottom: 15px
    }

    .sb-area-settings>.sb-tab>.sb-nav>ul,
    .sb-area-reports>.sb-tab>.sb-nav>ul {
        min-width: 180px
    }

    .sb-area-users .sb-top-bar h2 {
        display: none
    }

    .sb-menu-wide ul li,
    .sb-tab>.sb-nav>ul li {
        margin: 0 10px 0 0
    }
}

@media (min-width: 465px) and (max-width: 912px) {

    .sb-board>.sb-admin-list,
    .sb-board .sb-user-details {
        position: fixed;
        z-index: 2;
        background: #fff;
        left: 65px;
        top: 0;
        bottom: 0;
        max-width: 330px;
        min-width: 330px;
        display: none
    }

    .sb-board>.sb-admin-list.sb-active,
    .sb-board .sb-user-details.sb-active {
        display: block
    }

    .sb-board>.sb-admin-list .sb-top {
        padding-left: 45px
    }

    .sb-board .sb-user-details {
        left: auto;
        right: 0
    }

    .sb-board .sb-conversation>.sb-top {
        padding-left: 45px
    }

    .sb-board .sb-conversation>.sb-top .sb-menu-mobile {
        right: 35px
    }

    .sb-admin-list .sb-search-btn>input {
        min-width: 200px;
        max-width: 200px
    }

    .sb-admin-list .sb-filter-btn.sb-active>div {
        min-width: 265px;
        max-width: 265px;
        left: auto
    }

    .sb-area-conversations>.sb-btn-collapse {
        display: block
    }
}

/*# sourceMappingURL=admin.css.map */