@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.barachat-container {
    font-family: "Poppins", sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 150%;
}

.toasted-container {
    font-family: "Poppins", sans-serif !important;
}

.toasted-container.bottom-right {
    position: fixed;
    bottom: 20px;
    right: 42px;
    border-radius: 30px;
}

.toasted-container.bottom-right .toasted {
    margin-top: 8px;
    padding: 10px 15px;
    background-color: #feff6b;
    color: #666;
}

.toasted-container.bottom-right .toasted .action {
    margin: 0 8px;
    padding: 0;
    color: #666;
}

.toasted-container.bottom-right .toasted .action:first-child {
    margin-left: 16px;
}

.toasted-container.bottom-right .toasted .action:last-child {
    color: #34b6ff;
}

.toasted-container.bottom-right .toasted .action:hover {
    color: #ff3b5e;
    text-decoration: none;
}

.toasted-container.bottom-right .toasted.bubble {
    line-height: 150%;
    font-size: 16px;
}

.toasted-container.bottom-right .toasted.bubble.error {
    background-color: #ff3b5e;
    color: #fff;
}

.toasted-container.bottom-right .toasted.bubble.error .action:hover {
    color: #fff;
}

.toasted-container.bottom-right .toasted.bubble.success {
    background-color: #94ca62;
}

.toasted-container.bottom-right .toasted.bubble.info {
    background-color: #34b6ff;
}

.barachat-container {
    color: #444;
    position: fixed;
    bottom: 20px;
    right: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media screen and (max-width: 600px) {
    .barachat-container.barachat-container--open {
        bottom: 0;
        right: 0;
    }
}

.barachat-container.barachat-container--wide {
    position: relative;
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 100%;
}

.barachat-container.barachat-container--wide .barachat-chat-wrapper {
    bottom: 0;
    border-radius: 0;
    width: 100%;
    height: 100% !important;
}

.barachat-connecting-indicator {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.barachat-container *,
.barachat-container :after,
.barachat-container :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInZoom {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.4, 0.4, 0.4) translate3d(85%, 0, 0);
        transform: scale3d(0.4, 0.4, 0.4) translate3d(85%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.4, 0.4, 0.4) translate3d(85%, 0, 0);
        transform: scale3d(0.4, 0.4, 0.4) translate3d(85%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.barachat-trigger-btn {
    background: #94ca62;
    color: #fff;
    padding: 10px;
    border-radius: 19px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 7px 16px rgba(46, 46, 46, 0.15);
    box-shadow: 0 7px 16px rgba(46, 46, 46, 0.15);
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.barachat-trigger-btn>div {
    margin-left: 8px;
}

.barachat-trigger-btn img {
    margin-right: 8px;
    display: block;
    width: 32px;
    height: 32px;
}

.barachat-trigger-btn> :first-child {
    margin: 0;
}

@media screen and (max-width: 600px) {
    .barachat-trigger-btn {
        position: relative;
        z-index: 0;
    }
}

.barachat-trigger-btn:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 7px 16px rgba(46, 46, 46, 0.25);
    box-shadow: 0 7px 16px rgba(46, 46, 46, 0.25);
}

.barachat-container.barachat-container--wide .barachat-trigger-btn {
    display: none;
}

.barachat-chat-wrapper {
    width: 360px;
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 7px 16px rgba(46, 46, 46, 0.15);
    box-shadow: 0 7px 16px rgba(46, 46, 46, 0.15);
    border-radius: 19px;
    overflow: hidden;
    position: absolute;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    bottom: 64px;
    background-color: #fafafa;
}

.barachat-container.barachat-container--open .barachat-chat-wrapper {
    height: 480px;
}

@media screen and (max-width: 600px) {
    .barachat-container.barachat-container--open .barachat-chat-wrapper {
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1;
        border-radius: 0;
    }
}

.barachat-main {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.barachat-window-toggle-btn {
    cursor: pointer;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.barachat-header,
.barachat-window-toggle-btn {
    -webkit-box-flex: 0;
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.barachat-header {
    -ms-flex: 0 0 73px;
    flex: 0 0 73px;
    background: #fff;
    -ms-flex-align: center;
    padding: 13px 16px;
    border-bottom: 0.5px solid #e8e8e8;
}

.barachat-header .barachat-header-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
}

.barachat-header .barachat-header-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-top: 6px;
}

.barachat-header .barachat-header-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #666;
    margin-left: 16px;
}

.barachat-header .barachat-header-info .barachat-user-display-name {
    font-size: 15px;
    font-weight: 600;
}

.barachat-header .barachat-header-info .barachat-user-status {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
}

.barachat-comments {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}

.barachat-comment-form {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px;
    background: #f0f0f0;
    border-top: 0.5px solid #e8e8e8;
}

.barachat-avatar--hide {
    visibility: hidden;
}

.reply-wrapper {
    position: relative;
    padding: 4px 8px 4px 12px;
    background-color: #fafafa;
    margin-bottom: 8px;
    border-radius: 2px;
}

.reply-wrapper.reply-wrapper--me {
    background-color: #f0f0f0;
}

.reply-wrapper .reply-sender {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.reply-wrapper .barachat-comment__content {
    font-size: 13px;
    color: #979797;
    overflow: hidden;
    overflow-y: auto;
    max-height: 150px;
    width: auto;
    white-space: pre-line;
    word-break: break-word;
}

.reply-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #94ca62;
    border-radius: 2px 0 0 2px;
}

.reply-wrapper.reply-wrapper--preview {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    background-color: #fff;
    padding: 8px 8px 8px 12px;
    -webkit-animation: fadeInUp 0.3s ease-out;
    animation: fadeInUp 0.3s ease-out;
    -webkit-box-shadow: 0 -8px 16px hsla(0, 0%, 78%, 0.2);
    box-shadow: 0 -8px 16px hsla(0, 0%, 78%, 0.2);
}

.reply-wrapper.reply-wrapper--preview:before {
    border-radius: 0;
}

.reply-close-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 10px;
    cursor: pointer;
}

.reply-close-btn svg.qc-icon {
    height: 12px;
    width: 12px;
}

.empty-state {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: #fff;
    text-align: center;
}

#qiscus-sdk-sprite {
    display: none;
}

.qc-icon {
    display: inline-block;
    margin-top: 6px;
    width: 20px;
    height: 20px;
    fill: #979797;
    -webkit-transition: fill 0.3s ease-out;
    transition: fill 0.3s ease-out;
}

.qc-icon--light {
    fill: #fff;
}

.hidden {
    display: none !important;
}

.loading-image-container {
    width: 100%;
    height: auto;
    background-color: #fafafa;
    padding: 8px;
    border-radius: 2px;
    text-align: center;
}

.loading-image-container i {
    display: block;
    margin: 0 auto 8px;
}

.loading-image-container i .qc-icon {
    fill: #94ca62;
}

.loading-image-container i svg {
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
}

.barachat-load-more {
    font-size: 9px;
    text-align: center;
    margin: 12px auto;
    font-weight: 700;
}

.barachat-load-more.barachat-top-page {
    width: 100%;
    color: #979797;
}

.barachat-load-more.barachat-load-more-btn {
    width: 90px;
    padding: 2px 0px;
    border-radius: 6px;
    color: #8083A3;
    background-color: #E5E8EB;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.32s ease;
    transition: -webkit-transform 0.32s ease;
    transition: transform 0.32s ease;
    transition: transform 0.32s ease, -webkit-transform 0.32s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.barachat-load-more.barachat-load-more-btn:hover {
    -webkit-transform: translatey(-2px);
    transform: translatey(-2px);
}

.barachat-comment__state--read .qc-icon.ic-double-check__state {
    color: #94ca62;
}

.barachat-comment__state--read .qc-icon.ic-option-menu__state {
    color: #666;
}

.qc-icon.ic-check__state,
.qc-icon.ic-double-check__state,
.qc-icon.ic-load__state,
.qc-icon.ic-option-menu__state {
    margin-right: 8px;
}

.qc-icon.ic-load-more__state,
.qc-icon.ic-load__state {
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
}

.qc-icon.ic-load-more__state {
    fill: #fff;
    margin: 0 4px 0 0;
    height: 12px;
    width: 12px;
}

.inner {
    position: relative;
    padding-top: 1px;
    min-height: 100%;
}

.barachat-load-comment-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, 0.95);
    z-index: 10;
}

.barachat-load-comment-indicator>.loader {
    position: relative;
}

.barachat-comments {
    background: #e3eef7;
    /* background: url('../../assets/images/bg-chats-new.png'); */
}

.barachat-comments::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e0e0e0;
}

.barachat-comments::-webkit-scrollbar {
    width: 8px;
    background-color: #fafafa;
}

.barachat-comments::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #e0e0e0;
}

.barachat-comments ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.barachat-comment-date {
    margin-bottom: 24px;
}

.barachat-group.parent--container {
    margin-top: 20px;
}

/* .barachat-group.parent--container.contain-date {
    margin-top: 0;
    position: sticky;
    top: 20px;
    z-index: 99
} */

.barachat-group.parent--container.contain-date .barachat-comment {
    margin-top: 20px;
}

.barachat-group.parent--container.my--container,
.barachat-group.parent--container.my--container .barachat-comment {
    margin-top: 0;
}

i.delete-btn,
i.reply-btn {
    position: absolute;
    overflow: hidden;
    height: 24px;
    cursor: pointer;
    top: 6px;
    width: 24px;
    border-radius: 50%;
    background: #e8e8e8;
    display: none;
    z-index: 1;
    -webkit-animation: fadeInLeftBig 0.3s ease-out;
    animation: fadeInLeftBig 0.3s ease-out;
    -webkit-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
}

i.delete-btn {
    left: -64px;
}

i.delete-btn svg.qc-icon {
    display: block;
    width: 12px;
    height: 12px;
    margin: 6px auto;
}

i.delete-btn:hover {
    background-color: #ff3b5e;
}

i.delete-btn:hover .qc-icon {
    fill: #fff;
}

i.reply-btn {
    right: -32px;
}

i.reply-btn svg.qc-icon {
    display: block;
    width: 13px;
    height: 13px;
    margin: 5px auto;
}

i.reply-btn.reply-btn--me {
    left: -32px;
}

i.reply-btn.reply-btn--me svg.qc-icon {
    width: 16px;
    height: 14px;
}

i.reply-btn:hover {
    background-color: #94ca62;
}

i.reply-btn:hover .qc-icon {
    fill: #fff;
}

.barachat-comments li:hover .hover-effect i.reply-btn {
    display: inline-block;
}

.barachat-comments li:hover .hover-effect .barachat-comment__state,
.barachat-comments li:hover .hover-effect .barachat-comment__time {
    display: none;
}

.barachat-comments li:hover .hover-effect .delete-btn {
    display: inline-block;
}

.barachat-comments li:hover .hover-effect .barachat-comment__more {
    display: block;
}

.barachat-comment__state {
    -webkit-animation: fadeInDown 0.3s ease-out;
    animation: fadeInDown 0.3s ease-out;
}

.barachat-comment-container {
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.barachat-comment-container.comment--me {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.barachat-comment-container.comment--me .barachat-avatar {
    display: none;
}

.barachat-comment-date {
    text-align: center;
    font-weight: 700;
    font-size: 9px;
    margin-top: 4px;
    -webkit-box-flex: 1;
    -ms-flex: 1 100%;
    flex: 1 100%;
    color: #666;
    text-transform: uppercase;
}

.barachat-comment-date.extra-margin {
    margin-top: 24px;
}

.barachat-comment-date div {
    width: 190px;
    margin: auto;
    padding: 2px 8px;
    background-color: #e8e8e8;
    border-radius: 12px;
}

.barachat-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
}

.barachat-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
}

.barachat-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.comment--me .barachat-avatar {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: right;
}

.barachat-comment__more--menu {
    position: absolute;
    padding: 16px;
    margin: auto;
    top: 0;
    left: auto;
    z-index: 2;
    height: 100%;
    width: 100%;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    display: block;
}

.barachat-comment__more--menu ul {
    display: block;
    width: 145px;
    padding: 5px 0;
    background: #fff;
    font-size: 14px;
    list-style: none;
    top: 25px;
    left: -61px;
    right: auto;
    border-radius: 8px;
    -webkit-box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    margin-bottom: 10px;
    border-radius: 7px;
}

.barachat-comment__more--menu ul li {
    line-height: 35px;
    height: 35px;
    color: #666;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    padding: 0 10px;
}

.barachat-comment__more--menu ul li:hover {
    color: #94ca62;
}

.barachat-comment__info {
    padding-bottom: 7px;
    margin-bottom: 7px;
    -webkit-box-flex: 1;
    -ms-flex: 1 100%;
    flex: 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.barachat-comment__username {
    font-weight: 700;
}

.barachat-comment__state {
    font-size: 11px;
    text-transform: lowercase;
    color: #666;
    position: absolute;
    top: 16px;
}

.barachat-comment__state svg.qc-icon {
    margin-top: 3px;
}

.barachat-comment .barachat-comment__time {
    font-size: 11px;
    text-transform: lowercase;
    color: #666;
    position: absolute;
    min-width: 50px;
    top: 8px;
    right: -58px;
}

.barachat-comment .barachat-comment__username {
    position: absolute;
    font-size: 13px;
    width: 128px;
    top: -20px;
    left: 0;
    text-align: left;
    white-space: nowrap;
}

.barachat-comment .barachat-comment__username.barachat-comment__username--hide {
    display: none;
}

.barachat-comment .barachat-comment__more {
    position: absolute;
    overflow: hidden;
    padding: 5px 0;
    height: 24px;
    width: 24px;
    cursor: pointer;
    top: 6px;
    left: -35px;
    border-radius: 50%;
    background: #e8e8e8;
    display: none;
    z-index: 1;
    -webkit-animation: fadeInLeftBig 0.3s ease-out;
    animation: fadeInLeftBig 0.3s ease-out;
    -webkit-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
}

.barachat-comment .barachat-comment__more svg.qc-icon {
    display: block;
    width: 12px;
    height: 12px;
    margin: 6px auto;
}

.barachat-comment .barachat-comment__more:hover {
    background-color: #94ca62;
}

.barachat-comment .barachat-comment__more:hover .qc-icon {
    fill: #fff;
}

.barachat-comment.comment--me .barachat-comment__username {
    text-align: right;
    right: 0;
    left: auto;
}

.barachat-comment.comment--me .barachat-comment__time {
    top: 2px;
    left: -35px;
}

.barachat-comment.comment--me .barachat-comment__state {
    left: -20px;
}

.barachat-comment.comment--me .barachat-comment__state svg.qc-icon {
    width: 12px;
    height: 9px;
}

.barachat-comment.comment--me .barachat-comment__state--delivered,
.barachat-comment.comment--me .barachat-comment__state--read {
    left: -24px;
}

.barachat-comment__state--error {
    left: -54px !important;
}

.barachat-comment.comment--me .barachat-comment__state--delivered svg.qc-icon,
.barachat-comment.comment--me .barachat-comment__state--read svg.qc-icon {
    width: 16px;
    height: 9px;
    margin: 0 auto;
}

.barachat-comment.comment--me .barachat-comment__state--delivered svg.qc-icon {
    fill: grey;
}

.barachat-comment.comment--me .barachat-comment__state--failed {
    color: #ff3b5e;
    text-transform: capitalize;
    left: -17px;
    cursor: pointer;
}

.barachat-container.barachat-container--wide .barachat-comment__more--menu ul {
    top: 25px;
}

.failed-info {
    text-align: right;
    margin-top: -3px;
    font-size: 11px;
    margin-bottom: 4px;
    width: calc(100% - 27px);
    color: #ff3b5e;
}

.failed-info span {
    color: #94ca62;
}

.failed-info span:hover {
    text-decoration: underline;
    cursor: pointer;
}

.failed-info.failed--last {
    margin-bottom: 24px;
    margin-top: -27px;
}

.barachat-comment--system-event {
    text-align: center;
    padding: 5px 20px;
    border-radius: 8px;
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    margin: 0 auto 24px;
    font-size: 13px;
    background-color: #fff;
    border: 0.5px solid #e8e8e8;
    color: #666;
}

.barachat-comment__message {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    padding: 8px;
    font-size: 14px;
    background: #e8e8e8;
    -webkit-box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    margin-bottom: 4px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 80px;
    max-width: 210px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-radius: 8px;
}

.barachat-comment__message.barachat-comment-prevsession .barachat-file-container a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment--me .barachat-comment__message.barachat-comment-prevsession,
.barachat-comment__message.barachat-comment-prevsession {
    background: #9d9d9d !important;
    color: #fff !important;
    font-size: 9px;
}

.barachat-comment__message.barachat-comment-prevsession blockquote {
    font-size: 14px;
    line-height: 16px;
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.barachat-comment__message.barachat-comment-prevsession blockquote:before {
    content: " ";
    background: #fff;
    height: 1px;
    width: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.barachat-comment__message audio {
    min-width: 250px;
    width: 100%;
}

.comment--parent .barachat-comment__message {
    margin-left: 60px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.comment--me .barachat-comment__message {
    margin-left: 0;
    margin-right: 12px;
    background: #fff;
}

.comment--mid .barachat-comment__message,
.comment--parent .barachat-comment__message {
    margin-left: 12px;
}

.comment--last .barachat-comment__message {
    margin-left: 12px;
    margin-right: 60px;
}

.comment--parent.comment--me .barachat-comment__message {
    margin-left: 60px;
}

.comment--last.comment--me .barachat-comment__message {
    margin-left: 60px;
    margin-right: 12px;
}

.comment--parent.comment--last .barachat-comment__message {
    margin-left: 12px;
}

.comment--parent .barachat-comment__message>.tip {
    position: absolute;
    top: 15px;
    left: -8px;
    pointer-events: none;
    content: " ";
    height: 0;
    width: 0;
    border: 4px solid transparent;
    border-right-color: #e8e8e8;
}

.comment--parent.comment--me .barachat-comment__message>.tip {
    border-left-color: #fff;
    border-right-color: transparent;
    -webkit-box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    left: auto;
    right: -8px;
}

.barachat-comment__message.card {
    max-width: 210px !important;
}

@media only screen and (min-width: 640px) {
    .barachat-container--wide .barachat-comment__message {
        max-width: 400px;
    }
}

@media only screen and (min-width: 1024px) {
    .barachat-container--wide .barachat-comment__message {
        max-width: 800px;
    }
}

.comment--last {
    margin-bottom: 24px;
}

.deleted .barachat-comment__content {
    font-size: 13px;
    color: #ff3b5e;
}

.comment-text {
    width: 100%;
    margin-right: 2.5rem;
}

.comment-text .barachat-comment__content {
    margin: 0;
    word-break: break-word;
    word-wrap: break-word;
    /* white-space: pre-line; */
}

.barachat-comment__content iframe {
    width: 100%;
    height: auto;
    display: block;
}

.barachat-comment__content img.emojione {
    display: inline-block;
    vertical-align: middle;
}

.loader {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin-top: 120px;
    position: fixed;
    border: 5px solid rgba(148, 202, 98, 0.4);
    border-top-color: #94ca62;
    display: inline-block;
    -webkit-animation: rotate 0.9s ease-out infinite;
    animation: rotate 0.9s ease-out infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.reply-wrapper .image-loader {
    margin-top: 4px;
    padding-bottom: 4px;
}

.reply-wrapper .barachat-image-container {
    margin: 0;
    width: 100%;
}

.image-loader+.barachat-comment__content {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 12px;
    word-break: break-word;
}

.image-loader+.barachat-comment__content a {
    word-break: break-all;
}

.loading-image-container {
    min-width: 194px;
    height: 194px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.loading-image-container,
.barachat-comment__message .barachat-image-container,
.reply-wrapper--preview .barachat-image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.barachat-comment__message .barachat-image-container,
.reply-wrapper--preview .barachat-image-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    height: 200px;
}

.barachat-image-container img {
    height: 100%;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.reply-wrapper--preview .barachat-file-container {
    margin: 4px 0 0;
}

.reply-wrapper--preview .barachat-file-container a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.barachat-file-container {
    background-color: #fafafa;
    padding: 4px 8px;
    border-radius: 4px;
    margin: -4px;
    word-break: break-word;
}

.barachat-file-container a {
    color: #666;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.barachat-file-container i {
    margin-top: 4px;
    display: inline-block;
    margin-right: 8px;
}

.barachat-file-container i svg {
    margin: 0;
    fill: #979797;
    width: 36px;
    height: 36px;
}

.barachat-file-container .file-meta {
    font-size: 13px;
    overflow: ellipsis;
}

.barachat-file-container .file-meta .file-name {
    font-weight: 600;
    font-size: 12px;
}

.barachat-file-container .file-meta .file-description {
    font-size: 11px;
    font-weight: 200;
    line-height: 14px;
}

.reload-image-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 7px 15px;
    text-align: center;
    cursor: pointer;
    background: #eee;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    border-radius: 5px;
    color: #444;
}

.barachat-comment__attachment {
    overflow: hidden;
    border-radius: 4px;
    margin-right: 2.5rem;
}

.barachat-comment__attachment video {
    max-height: 150px;
    margin-right: 2.5rem;
}

.reply-wrapper .reply-caption-container[data-v-5a510196] {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.barachat-comment-container.barachat-comment--carousel {
    margin-bottom: 24px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment__time {
    position: absolute;
    top: 28px;
    right: 32px;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment__message {
    margin: 0;
    padding: 0;
    max-width: none;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment__message>.tip {
    display: none;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: visible;
    width: 100%;
    position: relative;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment.comment--me {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment.comment--me .barachat-comment__time {
    position: absolute;
    top: 28px;
    left: 32px;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment.comment--me .barachat-comment__state {
    left: 32px;
    margin-top: 28px;
}

.barachat-comment-container.barachat-comment--carousel .barachat-comment .barachat-comment__username {
    top: 28px;
    left: 64px;
}

.barachat-comment-container.barachat-comment--carousel .barachat-avatar {
    position: absolute;
    top: 24px;
    left: 16px;
}

.comment__carousel {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.comment__carousel:hover>i {
    opacity: 1;
}

.comment__carousel:hover>i:hover .qc-icon {
    fill: #94ca62;
}

.comment__carousel>i {
    -ms-flex-item-align: center;
    align-self: center;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    background: hsla(0, 0%, 100%, 0.8);
}

.comment__carousel>i:first-child {
    padding: 0 8px 0 4px;
    margin-right: 8px;
}

.comment__carousel>i:last-child {
    padding: 0 4px 0 8px;
    margin-left: 8px;
    right: 0;
}

.carousel-container {
    padding: 72px 20px 24px;
    overflow-x: hidden;
}

.carousel-container,
.carousel-container>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.carousel-container>div {
    position: relative;
    -webkit-transition: all 0.75s ease-out;
    transition: all 0.75s ease-out;
}

.carousel-container .barachat-carousel__item {
    margin-left: 8px;
    margin-right: 8px;
}

.carousel-container .barachat-carousel__item .comment__card--container {
    margin-right: 0;
    margin-left: 0;
    width: 256px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
}

.carousel-container .barachat-carousel__item .comment__card--container .comment__card--image {
    margin-top: 0;
    width: 256px;
}

.carousel-container .barachat-carousel__item .comment__card--container .comment__card--image .barachat-image-container {
    width: 256px;
}

.barachat-comment .barachat-comment__message.carousel {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}

.extra-margin {
    margin-bottom: 36px;
}

ul.carousel__bullets {
    position: absolute;
    width: 100%;
    bottom: -36px;
}

ul.carousel__bullets,
ul.barachat-carousel__nav {
    list-style: none;
    overflow: hidden;
    text-align: center;
}

ul.carousel__bullets li {
    display: inline-block;
    cursor: pointer;
    margin: 4px 8px;
    color: #999;
    vertical-align: middle;
}

ul.carousel__bullets li.active {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.ic-bullet {
    border: 2px solid #94ca62;
    height: 8px;
    width: 8px;
    border-radius: 50%;
}

.active>.ic-bullet {
    background-color: #94ca62;
    border: 2px solid #94ca62;
}

.barachat-comment__message.card>.tip {
    display: none;
}

.comment__card--container {
    margin-left: -8px;
    margin-right: -8px;
    background-color: #fff;
    border-radius: 8px;
}

.comment__card--container .comment__card--description {
    padding: 0 8px;
    font-size: 11px;
}

.comment__card--container .comment__card--image {
    border-bottom: 1px solid #e8e8e8;
    height: 160px;
    margin-top: -8px;
}

.comment__card--container .comment__card--image .loading-image-container.loading-image-container {
    height: 100%;
    background-color: #e8e8e8;
    border-radius: 8px 8px 0 0;
}

.comment__card--container .comment__card--image .loading-image-container.loading-image-container i {
    margin-top: 40px;
}

.comment__card--container .comment__card--image .barachat-image-container {
    max-height: 160px;
    height: 160px;
    margin: 0;
    width: 210px;
    background-size: cover;
    background-color: transparent;
    background-position: 50%;
    border-radius: 8px 8px 0 0;
}

.comment__card--container .comment__card--title {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    padding: 8px;
    display: block;
}

.comment__card--container .barachat-comment__buttons {
    margin-left: 8px;
    margin-right: 8px;
}

.barachat-comment__buttons .barachat-comment__content {
    padding: 0 8px;
}

.barachat-comment__buttons {
    margin-top: 8px;
}

.barachat-comment__buttons .action_buttons:last-child {
    margin-bottom: -8px;
}

.barachat-comment__buttons .action_buttons {
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
    width: calc(100% + 16px);
    margin-left: -8px;
}

.barachat-comment__buttons .action_buttons:hover a,
.barachat-comment__buttons .action_buttons:hover button {
    color: #34b6ff;
    cursor: pointer;
}

.barachat-comment__buttons .action_buttons:last-child {
    border-radius: 0 0 7px 7px;
}

.barachat-comment__buttons .action_buttons a,
.barachat-comment__buttons .action_buttons button {
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    background-color: transparent;
    font-size: 13px;
    font-weight: 600;
    font-family: Open sans, sans-serif;
    width: 210px;
    margin: 0;
    height: 48px;
    border: 0;
    color: #666;
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    width: 100%;
}

.barachat-comment__buttons .action_buttons a {
    line-height: 48px;
    text-align: center;
}

.backdrop-enter-active,
.backdrop-leave-active {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.backdrop-enter,
.backdrop-leave-to {
    opacity: 0 !important;
}

.backdrop-enter-to,
.backdrop-leave {
    opacity: 0.5 !important;
}

.fade-enter-active,
.fade-leave-active {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
}

.fade-leave-active {
    position: absolute;
}

.barachat-comment-form {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 8px;
    position: relative;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-transition: all 0.05s ease-out;
    transition: all 0.05s ease-out;
}

.input-form,
.barachat-comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-form {
    border: 1px solid #c4c4c4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 8px;
    overflow-y: auto;
    padding: 16px 30px 16px 16px;
    margin: 0 5px;
}

.barachat-comment-form textarea {
    border: 0;
    padding: 9px 12px 11px;
    border-radius: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 150%;
    resize: none;
    /* position: relative;
    z-index: 1; */
    min-height: 20px;
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 14px;
    font-weight: 400;
    word-wrap: break-word;
    white-space: pre-wrap;
    outline: none;
}

.barachat-comment-form textarea::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fafafa;
}

.barachat-comment-form textarea::-webkit-scrollbar {
    width: 0;
    background-color: #fafafa;
}

.barachat-comment-form textarea::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #e0e0e0;
}

.barachat-comment-form textarea:focus {
    border: 0;
    outline: none;
}

.barachat-comment-form {
    display: inline-block;
    /* text-align: center; */
    -webkit-box-flex: 0;
    -ms-flex: 0 20px;
    flex: 0 20px;
    color: rgb(151, 151, 151);
    padding: 6px 10px 8px;
    cursor: pointer;
    -ms-flex-item-align: center;
    align-self: center;
}

.barachat-icon i {
    font-size: 23px;
}

.btn-send-loading-chat i {
    font-size: 30px;
}

.barachat-comment-form .input-form {
    padding: 4px 0px;
}

.barachat-comment-form label {
    cursor: pointer;
}

.barachat-comment-form a input[type="file"] {
    display: none;
}

.barachat-comment-form a.barachat-icon:hover svg.qc-icon {
    fill: #94ca62;
}

.barachat-upload-toast {
    position: absolute;
    bottom: 64px;
    right: 10px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.barachat-text-warning {
    color: #e55039 !important;
}


/* 
input {
    font-family: Inter, sans-serif;
    font-weight: 400;
    width: 100%;
    color: #8c8c8c;
    padding: 10px 14px;
    background-color: #fff;
    -webkit-box-shadow: 0 7px 17px rgba(51, 51, 51, 0.07);
    box-shadow: 0 7px 17px rgba(51, 51, 51, 0.07);
    border-radius: 6px;
    border: 1px solid transparent;
    outline: none;
    font-size: 14px;
    line-height: 16px;
} */

.barachat-upload-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
}

.barachat-upload-form .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #404040;
    opacity: 0.5;
}

.barachat-upload-form .content {
    z-index: 3;
    width: 100%;
    max-width: 900px;
    height: 95%;
    background-color: #fff;
    border-radius: 8px;
    margin: 0 16px;
    top: 50px;
}

.barachat-upload-form .content header {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 16px;
    border-bottom: 0.5px solid #e8e8e8;
}

.barachat-upload-form .content header h3 {
    margin-right: auto;
    font-weight: 600;
}

.barachat-upload-form .content header .form-icon {
    cursor: pointer;
}

.barachat-upload-form .content header .form-icon svg {
    width: 14px;
    height: 14px;
}

.barachat-upload-form .content section {
    height: calc(100% - 150px);
    /* border-bottom: 0.5px solid #e8e8e8; */
    padding: 16px;
}

.barachat-upload-form .content section .preview-container {
    width: 100%;
    height: 100%;
}

.barachat-upload-form .content section .preview-container .image-container {
    width: 100%;
    height: calc(100% - 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.barachat-upload-form .content section .preview-container .image-container img {
    display: block;
    width: auto;
    height: auto;
    max-height: 300px;
    max-width: 90%;
    margin: 10px 100px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
}

.barachat-upload-form .content section .preview-container .comment-form {
    height: 50px;
}

.barachat-upload-form .content footer,
.barachat-upload-form .content section .preview-container .comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.barachat-upload-form .content footer {
    height: 100px;
    padding: 0 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.barachat-upload-form .content footer .image-list {
    max-width: calc(100% - 100px);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px;
}

.barachat-upload-form .content footer .image-list .image-container {
    position: relative;
    margin-right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.barachat-upload-form .content footer .image-list .image-container:last-child {
    margin: 0;
}

.barachat-upload-form .content footer .image-list .image-container svg {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    padding: 5px;
    margin: 0;
    border-radius: 50%;
    z-index: 2;
    border: 1px solid #b7b7b7;
    cursor: pointer;
}

.barachat-upload-form .content footer .image-list .image-container img {
    width: 70px;
    height: 70px;
    border: 0.5px solid #979797;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

.barachat-upload-form .content footer .image-list .image-container img.selected {
    border-width: 3px;
}

.barachat-upload-form .content footer .image-list .image-container img.onupload {
    cursor: default;
}

.barachat-upload-form .content footer label {
    margin-left: 16px;
}

.barachat-upload-form .content footer label.onupload svg {
    cursor: default;
}

.barachat-upload-form .content footer label input {
    display: none;
}

.barachat-upload-form .content footer label svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin: 0;
}

.barachat-upload-toast__content {
    width: 300px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.075);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.075);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.barachat-upload-toast__content header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px 10px 4px;
    border-bottom: 1px solid #e8e8e8;
}

.barachat-upload-toast__content header label {
    font-size: 12px;
}

.barachat-upload-toast__content header label span {
    font-weight: 600;
}

.barachat-upload-toast__content header .info {
    margin-left: auto;
}

.barachat-upload-toast__content header .info .form-icon {
    cursor: pointer;
}

.barachat-upload-toast__content header .info .form-icon svg {
    margin: 0;
    width: 10px;
    height: 10px;
}

.barachat-upload-toast__content section {
    padding: 10px;
    font-size: 12px;
}

.barachat-upload-toast__content section a {
    color: #34b6ff;
    text-decoration: none;
}

.barachat-upload-toast__content section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 100px;
    overflow: auto;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
}

.barachat-upload-toast__content section ul.hide {
    max-height: 0;
}

.barachat-upload-toast__content section ul.done {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.barachat-upload-toast__content section ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.barachat-upload-toast__content section ul li label {
    width: calc(100% - 100px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.barachat-upload-toast__content section ul li span {
    width: 100px;
    text-align: center;
}

.barachat-upload-toast__content section ul li span.err {
    color: #ff3b5e;
}

.barachat-image-modal__container {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: scroll;
    /* padding: 20px; */
    padding-top: 10%;
    padding-bottom: 10%;
    background: hsl(0deg 0% 59% / 90%);
}

.barachat-image-modal__container,
.barachat-image-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.7);
}

.barachat-image-modal__wrapper {
    min-width: 240px;
    position: relative;
    max-width: 40%;
    max-height: 90%;
    -webkit-animation: fadeInZoom 0.2s ease-out;
    animation: fadeInZoom 0.2s ease-out;
}

.barachat-image-modal__wrapper .image-loader {
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    display: block;
}

.barachat-image-modal__wrapper .loading-image-container {
    padding: 48px 0;
    margin: 0 auto;
    background-color: #fff;
}

.barachat-image-modal__wrapper .barachat-image-container {
    margin: 0;
    width: 100%;
    background-color: #fff;
}

.barachat-image-modal__wrapper .barachat-image-container img {
    border-radius: 0;
    margin-bottom: 16px;
}

.barachat-image-modal__actions {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -36px;
    right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #979797;
}

.barachat-image-modal__action {
    cursor: pointer;
    margin-left: 15px;
    font-size: 35px;
}

.barachat-upload-file {
    position: absolute;
    -webkit-animation: fadeInUp 0.3s ease-out;
    animation: fadeInUp 0.3s ease-out;
    width: calc(100% - 16px);
    top: 81px;
    z-index: 4;
    margin: 0 8px 8px;
    background-color: #fff;
    padding: 8px 12px;
    -webkit-box-shadow: 0 6px 16px hsla(0, 0%, 78%, 0.25);
    box-shadow: 0 6px 16px hsla(0, 0%, 78%, 0.25);
}

.barachat-upload-file .title {
    font-weight: 600;
    font-size: 14px;
}

.barachat-upload-file .meta {
    font-size: 11px;
    color: #979797;
}

.barachat-upload-file .meta .type {
    margin-right: 8px;
}

.barachat-upload-file .meta .size {
    margin-left: 8px;
}

.barachat-upload-file .progress-bar {
    height: 8px;
    background-color: #e8e8e8;
    margin-top: 4px;
    border-radius: 4px;
    position: relative;
}

.barachat-upload-file .progress-bar .progress {
    position: absolute;
    right: 0;
    top: -24px;
}

.barachat-upload-file .progress-bar .uploaded {
    -webkit-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
    background: #94ca62;
    height: 8px;
    border-radius: 8px;
}

.barachat-dropzone-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: auto;
    border: 3px dashed #979797;
    height: calc(100% - 73px);
    width: 100%;
    background: #fafafa;
    z-index: 3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.barachat-dropzone-area.barachat-dropzone-over {
    opacity: 1;
    visibility: visible;
    -webkit-animation: fadeInUp 0.3s ease-out;
    animation: fadeInUp 0.3s ease-out;
}

.barachat-dropzone-area .barachat-dropzone-text {
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 600;
    color: #979797;
}

.barachat-dropzone-area input {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.barachat-container.barachat-container--wide .barachat-dropzone-area {
    border-radius: 0;
}

.barachat-attachment-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    z-index: 999;
}

.barachat-attachment-form label+div {
    cursor: pointer;
}

.barachat-attachment-form__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 16px;
    color: #666;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.barachat-attachment-form__title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.barachat-attachment-form__title h4 {
    margin: 0;
    font-size: 15px;
}

.barachat-attachment-form__title span {
    font-size: 13px;
}

.barachat-attachment-form__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    color: #666;
}

.barachat-attachment-form__caption-txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 10px;
    border: 0;
    outline: none;
    font-size: 15px;
}

.barachat-attachment-form__picker-btn {
    border: 1px solid #979797;
    color: grey;
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.barachat-attachment-form__picker-btn.populated {
    background-color: rgba(148, 202, 98, 0.5);
    color: #fff;
    border: 1px solid #94ca62;
}

.barachat-attachment-form__picker-btn:hover {
    opacity: 1;
    background-color: #94ca62;
    border: 1px solid #94ca62;
    color: #fff;
}

.barachat-attachment-form__input {
    display: none;
}

.barachat-attachment-form__preview-img {
    width: 150px;
    height: 150px;
    margin: 10px auto;
}

.barachat-attachment-form__close-btn {
    margin-left: auto;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 28px;
    flex: 0 28px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.barachat-attachment-form__close-btn .qc-icon {
    width: 14px;
}

.send-button .qc-icon:hover {
    fill: #94ca62;
}

.barachat-message-info {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 320px;
    flex: 1 0 320px;
    border-left: 1px solid #e8e8e8;
}

.barachat-container--wide .barachat-message-info {
    position: relative;
}

.barachat-message-info__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 73px;
    padding: 0 16px;
    border-bottom: 1px solid #e8e8e8;
    color: #777;
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
}

.barachat-message-info__header .qc-icon {
    width: 14px;
    height: 14px;
}

.barachat-message-info__header span:nth-child(2) {
    cursor: pointer;
}

.barachat-message-info__comment {
    background: #fafafa;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
}

.barachat-message-info__comment-text {
    background: #fff;
    -webkit-box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    box-shadow: 0 7px 16px hsla(0, 0%, 78%, 0.25);
    border-radius: 4px;
    padding: 10px 8px;
    margin-right: 15px;
    position: relative;
    word-break: break-all;
    word-wrap: break-word;
}

.barachat-message-info__comment-text:before {
    position: absolute;
    top: 15px;
    right: -8px;
    pointer-events: none;
    content: " ";
    height: 0;
    width: 0;
    border: 4px solid transparent;
    border-left-color: #fff;
}

.barachat-message-info__comment-time {
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #9d9d9d;
}

.barachat-message-info__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 auto;
    flex: 1 auto;
    overflow: hidden;
    overflow-y: auto;
    padding: 25px;
    border-top: 1px solid #e8e8e8;
}

.barachat-message-info__info strong.barachat-message-info__info-header {
    color: #777;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.barachat-message-info__info strong.barachat-message-info__info-header.read .qc-icon {
    width: 22px;
    fill: #94ca62;
}

.barachat-message-info__info strong.barachat-message-info__info-header.delivered .qc-icon {
    width: 22px;
}

.barachat-message-info__info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.barachat-message-info__info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.barachat-message-info__info li img {
    width: 40px;
    height: 40px;
    background: #c4c4c4;
    border-radius: 50%;
    margin-right: 15px;
}

.barachat-message-info__user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.barachat-message-info__user-info strong {
    color: #333;
    font-size: 14px;
    line-height: 25px;
}

.barachat-message-info__user-info small {
    font-size: 10px;
    color: #777;
}

.tree,
.tree ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.tree a {
    color: #272727 !important;
}

.branch {}

.tree ul {
    margin-left: 1em;
    position: relative
}

.tree ul ul {
    margin-left: .5em
}

.tree ul:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 5px;
    left: -5px;
    border-left: 1px solid
}

.tree li {
    margin: 0;
    padding: 0 1em;
    line-height: 2em;
    /* color:#369; */
    font-size: 14px;
    position: relative
}

.tree ul li:before {
    content: "";
    display: block;
    width: 10px;
    height: 0;
    /* border-top:1px solid; */
    margin-top: -1px;
    position: absolute;
    top: 1em;
    left: 0
}

.tree ul li:last-child:before {
    /* background: #fff; */
    height: auto;
    top: 1em;
    bottom: 0
}

.indicator {
    margin-right: 10px;
    top: 3px;
    position: relative;
}

.tree li a {
    text-decoration: none;
}

.tree li button,
.tree li button:active,
.tree li button:focus {
    text-decoration: none;
    border: none;
    background: transparent;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    outline: 0;
}

.barachat-record-audio {
    display: flex;
    align-items: center;
    transition: width .18s ease-in-out;
}

.bg-btn {
    position: relative;
    padding: 8px;
    margin-left: 12px;
    width: 40px;
    height: 40px;
    background-color: #1A83C7;
    border-radius: 50%;
    box-shadow: 0 4px 1px 0 rgb(0 0 0 / 10%), 0 3px 20px 0 rgb(0 0 0 / 16%);
}

.border-radius-bottom {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.barachat-comment-form.form-upload.mt-1.align-items-center.d-flex.border-radius-bottom {
    height: 55px;
}

.caption-upload {
    border: 0px;
    border-radius: 21px;
    height: 40px;
    outline-width: 0;
}

.upload-document {
    height: calc(100% - 50px);
    background-color: #eaeaea;
    padding: 50px 80px;
    margin: 20px 100px 0px;
    border-radius: 15px;
}

.text-caption {
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-previewcard {
    background: url('../../assets/images/bg-chats-new.png');
}
.previewcard-left {
    border: 1px solid #D7E2ED;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    border-radius: 0px 10px 10px 10px;
}

.previewcard-right {
    margin-left: auto;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    border-radius: 10px 0px 10px 10px;
    background-color: #CEDDFA;
}


.inbox-container{
    height: calc(100vh - 106px) !important;
}

.app-chats {
    padding-top: 102px !important;
}

.conversation-list-item{
    height: calc(100vh - 10px) !important;
}

@media (min-width: 767px) and (max-width: 1199px) {
    .barachat-comment-form-container,
    .barachat-email-form-container,
    .chatroom-close,
    .barachat-comment-for-container {
        position: sticky;
        bottom: 0;
    }

    .chatroom-close  {
        flex-direction: column !important;
        justify-content: initial !important;
        align-items: flex-start !important;
    }

    .chatroom-close .btn {
        margin-left: 0 !important;
        margin-top: 8px;
    }

    .chatarea-normal,
    .chatarea-email {
        padding-bottom: 6rem !important;
    }

    .barachat-comments .unread-ball {
        bottom: 10rem;
    }
}

@media (min-width: 768px) and (max-width: 992px)  {
   .app-chats {
    padding-top: 60px !important;
   }
}

/* .barachat-comments {
    overflow: hidden;
}
