/* your styles go here */
.mainpage {
    padding: 45px 35px 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.mainpage > .row {
    margin-top: 50px;
}

.mainpage > .row > div {
    padding: 20px;
}

.mainpage .bot {
    width: 100%;
    cursor: pointer;
    padding: 25px 25px 15px;
    border-radius: 5px;
    background-color: #FFFFFF;
}

.mainpage .bot:hover {
    /*transform: scale(1.1);*/
    /*-webkit-transform: scale(1.1);*/
    transition: transform .2s;
    box-shadow: 3px 3px 20px #d3d3d3;
}

.mainpage .bot:hover .btn-menu-bot {
    visibility: visible !important;
}

.mainpage .botHeader {
    width: 100%;
    padding: 5px 0 30px;
    text-align: left;
    font-size: 22px;
}

.mainpage .botInfo {
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding-bottom: 10px;
}

.btnSettingBot {
    position: absolute;
    right: 40px;
    background-color: transparent;
    border: 0;
    font-size: 18px;
}

.btn-bot-setting-home {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
    border: 0;
    font-size: 18px;
    /*display: none;*/
    z-index: 1000;
}

.main-btn-setting {
    position: fixed;
    right: 30px;
    top: 10%;
}

.main-modal-setting {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */

}

.main-setting {
    height: 100%;
    position: fixed;
    right: -500px;
    top: 0;
    width: 500px;
    background-color: white;
    z-index: 1000;
    border-left: 1px solid #888;
    opacity: 0;
    transition: right 0.4s, opacity 0.4s ease;
    -webkit-transition: right 0.4s, opacity 0.4s ease;

}

.main-setting .setContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-setting .setContainer > div {
    padding: 20px;
}

.height-fit-content-style {
    height: fit-content !important;
    height: -moz-fit-content !important;
}

.contain-action-selected {
    Opacity: 0.8;
    height: 60px;
    background-color: #0D0E2C;
}

.modal-open {
    overflow: hidden;
}

#mainpage .modal-dialog {
    top: 25%;
}

#keyword .modal-dialog {
    /*top: 25%;*/
}

#keyword .modal.test.fade .modal-dialog {
    top: 0;
}

#keyword .span-tooltip {
    position: relative;
    top: -6px;
    font-size: 14px;
    padding-left: 10px;
    color: red;
}

#keyword #dlKeyword .uc-chips {
    max-height: 400px;
    overflow-y: auto;
}

.icon-btn {
    border: 0;
    background-color: transparent;
}

/*-------AUTOCOMPLETE-------*/
.autocomp_div {
    width: 100%;
    position: relative;
}

.autocomp_input {
    width: 100%;
}

.autocomp_ul {
    position: absolute;
    min-width: 100%;
    width: fit-content;
    width: -moz-fit-content;
    max-height: 146px;
    overflow-y: auto;
    z-index: 100;
    background-color: white;
    border: 1px solid #CCC;
}

.autocomp_ul li {
    background-color: #fff;

}

.autocomp_ul li:hover {
    cursor: pointer;
    background: linear-gradient(253.37deg, #54C6D4 0.92%, #75CBC5 98.85%);
    color: #FFFFFF;
}

/*--------------END---------------*/

/* ------------ BOT SETTING -----------*/
.btn-editing {
    position: absolute;
    right: 0.5em;
    border: 0;
    background: transparent;
    font-size: 1.6em;
    display: block;
    width: 40px;
    height: 40px;
}

/* ----------------END -------------------*/

/* ------------- SAMPLE DETAIL -------------*/

.sample-detail-container {
    height: 100%;
    position: fixed;
    right: -1000px;
    top: 0;
    width: 1000px;
    background-color: white;
    z-index: 1000;
    border-left: 1px solid #888;
    opacity: 0;
    transition: right 0.5s, opacity 0.5s ease;
    -webkit-transition: right 0.5s, opacity 0.5s ease;
    -moz-transition: right 0.5s, opacity 0.5s ease;
    padding: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    text-overflow: ellipsis;

}

.sample-detail-container .sd-title {
    margin-bottom: 10px;
}

.sample-detail-container .tagging-area {
    text-align: center;
    margin-top: 30px;
}

.sample-detail-container .tagging-box {
    padding: 15px;
    border: 1px solid #d3d3d3;
    font-size: 20px;
    word-break: break-word;
    margin-bottom: 20px;
    font-family: Roboto, Noto Sans, Noto, sans-serif;
}

.sample-detail-container .btn-entity-act {
    background: transparent;
    border: none;
    box-shadow: none;
}

.sample-detail-container .display-entity-tag-header {
    border-bottom: 1px solid rgb(211, 211, 211);
    line-height: 35px;
}

.sample-detail-container .display-entity-tag-body {
    border-bottom: 1px solid rgb(211, 211, 211);
    line-height: 35px;
    text-align: left;
}

.blind-area {
    pointer-events: none;
    opacity: 0.4;
}

.text-italic-gray {
    font-style: italic;
    background-color: lightgray;
    color: #565656;
}

.text-underline {
    text-decoration: underline;
    /* font-style: italic;
          background-color: lightgray; */
    color: #565656;
}

.text-underline:hover {
    text-decoration: underline;
    color: #565656;
}

/* V-CLOAK */
/* https://vuejs.org/v2/api/#v-cloak */
[v-cloak] {
    display: none;
}

.padding-left-10 {
    padding-left: 10px;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

/* ------------------- END ----------------------*/

/*--------------------CHIPS----------------------*/
.uc-chips {
    width: 100%;
    float: left;
}

.uc-chips .badge {
    font-size: 90%;
    margin-right: 5px;
    margin-bottom: 2px;
    /*max-width: 100%;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
}

.uc-chips .badge > button {
    padding: 2px;
    border-radius: 50%;
    border: 0;
    width: 16px;
    height: 16px;
    font-size: 10px;
}

.uc-chips .badge > span {
    cursor: pointer;
    word-break: break-all;
    white-space: initial;

}

.uc-chips > input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #D3D3D3;
}

.uc-chips > input:focus {
    border-bottom: 2px solid #796AEE;
}

/*---------------------END-----------------------*/

/*-----------CSS for statistic ------------------*/

.statistic-btn-radio {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/*-----------End CSS for statistic ------------------*/

/*-------------- ZALO GUIDE --------------*/

.btn-zalo-guide {
    position: absolute;
    right: 0.5em;
    border: 0;
    background: transparent;
    font-size: 1.2em;
    display: block;
    width: 40px;
    height: 40px;
}

/* The Modal (background) */
.modal_zalo_guide {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.zalo_guide_modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
}

/* Caption of Modal Image */
#zalo_guide_caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.zalo_guide_modal-content, #zalo_guide_caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */
.zalo_guide_close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.zalo_guide_close:hover,
.zalo_guide_close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 900px) {
    .zalo_guide_modal-content {
        width: 100%;
    }
}

/*-------------- ZALO GUIDE - END --------*/

/*-------------- Broadcast Start --------*/
.statistic-block-text {
    display: block;
    width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.broadcast-block {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 38px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    background-color: #00bcd4;
    cursor: pointer;
    width: 29%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
}

.broadcast-block span {
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    line-height: 120%;
}

.broadcast-block-active {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 38px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    background: #796AEE;
    color: #fff;
    cursor: pointer;
    width: 29%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
}

.broadcast-block-active span {
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    line-height: 120%;
}

/* The switch - the box around the slider */
.broadcast-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 26px;
}

/* Hide default HTML checkbox */
.broadcast-switch input {
    display: none;
}

/* The slider */
.broadcast-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.broadcast-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 8px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .broadcast-slider {
    background-color: #2196F3;
}

input:focus + .broadcast-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .broadcast-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.broadcast-slider.round {
    border-radius: 24px;
}

.broadcast-slider.round:before {
    border-radius: 50%;
}

/*-------------- Broadcast End --------*/

/*-------------- Intro Styles ----------*/
.introjs-tooltipReferenceLayer .introjs-helperNumberLayer {
    display: none;
}

.active.introjs-showElement.introjs-relativePosition > a {
    background: #263035;
    color: #ffffff !important;
}

.custom-bg.introjs-helperLayer {
    background: #263035;
}

.introjs-helperLayer[id^='dm-card-'] {
    background-color: #ffffff !important;
}

h4.intro__title {
    font: 16px 'Poppins-SemiBold';
}

.introjs-overlay {
    opacity: 0.4 !important;
}

.introjs-tooltip {
    min-width: 400px !important;
    font: 14px 'Poppins-Regular';
    padding: 20px !important;
}

.introjs-tooltip .introjs-bullets ul li a.active {
    background-color: #263035;
}

.introjs-tooltip .introjs-bullets ul li a {
    background-color: rgba(0, 0, 0, 0.08);
    width: 10px;
    height: 10px;
}

.introjs-tooltip .introjs-bullets {
    text-align: left;
}

.introjs-tooltip .introjs-button {
    border: 0;
    background: transparent none;
}

.introjs-tooltip .introjs-skipbutton {
    position: absolute;
    top: 8px;
    right: 0;
    color: #999999;
    font: 14px 'Poppins-Regular';
    background-image: none;
}

.introjs-tooltipbuttons {
    float: right;
}

.introjs-bullets, .introjs-tooltipbuttons {
    display: inline-block;
}

.introjs-tooltip .introjs-nextbutton, .introjs-tooltip .introjs-prevbutton {
    width: 70px;
    line-height: 40px;
    border-radius: 5px;
    font: 14px 'Poppins-Medium';
    text-align: center;
    padding: 10px 0;
    margin-top: 0;
    text-shadow: none;
    text-decoration: none;
}

.introjs-tooltip .introjs-nextbutton,
.introjs-tooltip .introjs-nextbutton.introjs-button:focus,
.introjs-tooltip .introjs-nextbutton.introjs-button:active {
    background: linear-gradient(246.7deg, #54C6D4 0.85%, #75CBC5 98.94%);
    color: #ffffff;
    margin-left: 8px;
}

.introjs-tooltip .introjs-button:focus,
.introjs-tooltip .introjs-button:active {
    background-image: none;
}

.introjs-tooltip .introjs-prevbutton,
.introjs-tooltip .introjs-prevbutton.introjs-button:focus,
.introjs-tooltip .introjs-prevbutton.introjs-button:active {
    background: none #ffffff;
    color: #7C909A;
    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.introjs-tooltip .introjs-prevbutton.introjs-disabled,
.introjs-tooltip .introjs-nextbutton.introjs-disabled {
    display: none;
}

/*-------------- Navbar icon style -------------*/
nav.side-navbar.shrinked ul li a span {
    margin-top: 10px;
}

.bot__icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url("../img/ic-bot.svg") no-repeat;
}

.container-header {
    padding-right: 15px !important;
    padding-left: 30px !important;
}

.chatbot__icon-arrow {
    width: 12px;
    height: 8px;
    display: inline-block;
    background: url("../img/ic-arrow.svg") no-repeat;
    transform: rotate(180deg);
}

.chatbot__icon-arrow.rotate {
    transform: rotate(0);
}

.chatbot__icon-search {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("../img/ic-search.svg") no-repeat;
}

.chatbot__icon-selected {
    width: 18px;
    height: 14px;
    display: inline-block;
    background: url("../img/ic-selected-bot.svg") no-repeat;
}

#setting .dm_loading {
    top: 50%;
}

.chatbot__icon-excel-file {
    cursor: pointer;
    /*background: url("../img/ic-file-excel.svg") no-repeat;*/
}

#testSidenav {
    position: fixed;
    top: 100px;
    right: 40px;
    z-index: 1041;
}

/*.logo-a {*/
/*position: absolute;*/
/*width: 200px;*/
/*height: 80px;*/
/*}*/

/*!* logo-color *!*/
/*.logo-fptai {*/
/*position: absolute;*/
/*width: 159px;*/
/*height: 72px;*/
/*left: 19px;*/
/*top: 7px;*/
/*display: inline-block;*/
/*display: -webkit-box !important;*/
/*display: -ms-flexbox !important;*/
/*display: flex !important*/
/*!*background: url("../img/FPT.AI-v3.0.png") no-repeat;*!*/
/*}*/

.slidecontainer {
    width: 100%;
    align-items: center;
}

.slider {
    -webkit-appearance: none;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #54C6D4;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #54C6D4;
    cursor: pointer;
}

.buildBlockContainer {
    outline: 1px black dashed;
}

.buildBlock {
    position: relative;
    display: block;
    outline: 1px green solid;
}

.setupBlock {
    display: none;
    position: absolute;
    width: 17px;
    margin: auto;
    height: 17px;
    top: -17px;
    left: 0;
    right: 0;
    bottom: 0;
    outline: black;
}

.setupBlock:hover {
    cursor: pointer;
}

.buildBlock:hover .setupBlock {
    display: block !important;
}

.buildBlockPlaceholder {
    border: 1px dashed #343a40;
    background-color: #DEE2E6;
    float: left;
}

.outline-sortable {
    outline: 1px black solid;
}

i.icon-chatbot-avatar {
    width: 44px;
    height: 44px;
    display: inline-block;
    background: url('../img/ic-avatar.svg') no-repeat;
}

.message__input textarea {
    overflow-y: auto;
    min-height: 20px;
    max-height: 46px;
    height: auto;
    width: 96%;
    background-color: #f2f2f4;
}

.message__input textarea.form-control:focus {
    box-shadow: none;
    background-color: #f2f2f4;
}

/*------------- Live chat style --------------------*/
.list-sender-message li {
    cursor: pointer;
}

.list-sender-message li p:first-child {
    /*width: 15%;*/
}

.list-sender-message li p:last-child, .messenger-information {
    width: 70%;
    height: 54px;
}

.data-user-need-support {
    width: 15px;
    height: 15px;
    right: 20px;
    top: 40%;
}

.container-supporter-user {
    font-size: 12px;
    width: 100%;
    position: absolute;
    /* right: 10px; */
    /* width: fit-content; */
    /* width: 100px; */
    text-align: left;
    padding-right: 28px;
    bottom: 0px;
    left: 8px;
}

.data-user-in-support {
    position: relative;
    width: 8px;
    height: 8px;
    /* right: 30px; */
    top: -2px;
    /*z-index: 10;*/
}

.user-in-supporter {
    position: absolute;
    top: 49px;
    right: 47px;
    font-size: 10px;
}

.box-message {
    max-width: 60%;
}

.box-message__content {
    min-height: 20px;
    font: 16px Muli-Bold;
    /*-webkit-animation-name: zoom;*/
    /*-webkit-animation-duration: 0.6s;*/
    /*animation-name: zoom;*/
    /*animation-duration: 0.6s;*/
    display: inline-block;
    word-break: break-word;
}

.box-message-bot .box-message__content {
    background-color: #3788F6;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    color: #ffffff;
    margin-right: 10px;
}

.box-message-user .box-message__content {
    background-color: #F4F8F9;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    color: #000000;
}

.human-support.box-message-bot .box-message__content {
    background-color: #839798;
}

.icon-send-message {
    width: 24px;
    height: 20px;
    display: inline-block;
    background: url('../img/ic-message.svg') no-repeat;
    margin-right: 10px;
}

.icon-send-message.no-message {
    background: url('../img/ic-no-message.svg') no-repeat;
}

#b-manage-message .broadcast-switch {
    width: 50px;
}

#b-manage-message .broadcast-slider:before {
    height: 26px;
    width: 26px;
    left: 0px;
    bottom: 0px;
}

.icon-chatbot {
    background-image: url('../img/ic-chatbot.svg');
    width: 60px;
    height: 60px;
}

.icon-pro {
    background-image: url('../img/ic-pro.svg');
    background-repeat: no-repeat;
    width: 45px;
    height: 20px;
}

[class^="icon-"] {
    font-size: 1.5rem;
    color: #7C909A;
}

.loader-live-chat {
    width: 30px;
    height: 20px;
    background-color: #f1f0f0;
    border-radius: 15px;
    padding: 4px 3px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.loader-live-chat .dot {
    display: inline-block;
    background-color: #90949c;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation: jump 1.5s linear infinite;
}

.loader-live-chat .dot:nth-of-type(2) {
    animation-delay: 0.1s;
}

.loader-live-chat .dot:nth-of-type(3) {
    animation-delay: 0.2s;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }
    18% {
        transform: translateY(-7px);
    }
    36%, 100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.selected-messenger {
    background-color: rgba(0, 0, 0, .05);
}

.mask-main-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.mask-main-content .dm_loading {
    top: 50%;
    left: 50%;
    position: absolute;
}

#carouselControls ul li {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*padding-top: 52%;*/
}

.carouselControls ul li img {
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
    height: 225px;
    max-height: 225px;
    object-fit: scale-down;
    width: 100%;
    border: 1px solid #f1f1f1;
}

.message__content-chat.scroll-wrapper > .scroll-content {
    width: 100% !important;
    display: flex;
}

.box-message-bot .box-message__content.box-message__content-carousel {
    /*background-color: transparent;*/
    width: 100%;
}

#slideShowModal .modal-dialog {
    max-width: 90% !important;
}

#slideShowModal .modal-content {
    overflow: hidden;
    border: 0;
}

#slideShowModal .modal-dialog img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#slideShowModal .carousel li.active {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-content: center;*/
}

#slideShowModal button.close {
    font-size: 72px;
    color: white;
    position: fixed;
    top: -20px;
    right: -70px;
    z-index: 2;
}

#slideShowModal [class^="icon-arrow-"] {
    color: white;
    font-size: 50px;
    right: -50px;
}

#slideShowModal .carousel-control-next,
#slideShowModal .carousel-control-prev {
    width: 5%;
}

.message__content-chat .carousel-control-next,
.message__content-chat .carousel-control-prev {
    height: 224px;
}

.message__content-chat .carousel-control-next {
    justify-content: flex-end;
    margin-right: 10px;
}

.message__content-chat .carousel-control-prev {
    justify-content: start;
    margin-left: 10px;
}

.message__content-chat .wrapper-carousel-control {
    width: 36px;
    height: 36px;
    border: 1px solid white;
    border-radius: 50%;
    text-align: center;
    line-height: 31px;
    background-color: #3788F6;
}

#slideShowModal .carousel-control-next {
    right: -35px;
}

#slideShowModal .carousel-control-prev {
    left: -35px;
}

.list-messenger-channel {
    overflow-y: auto;
}

.hide-icon-chat .icon-chatbot {
    opacity: 0;
}

.message__content-chat {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.messenger-information .messenger-information--last-message {
    overflow: hidden;
    font-size: 11px;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    width: 100%;
}

.b-fb-at-work--token input {
    width: calc(100% - 42px);
}

.b-fb-at-work--token button {
    right: 16px;
    top: 0;
}

.text-ellipsis {
    white-space: nowrap;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 80%;
}

#b-persistent-menu ul li i:hover, #b-persistent-menu ul li.list-group-item:last-child {
    cursor: pointer;
}

#modal-add-item label {
    line-height: 38px;
}

.billing > div {
    background: white;
}

.billing .green-text-bold {
    padding-left: 5px;
    color: #0f9d58;
    font-weight: bold;
}

.billing .package-name.round {
    border-radius: 24px;
    background: #0f9d58;
}

.item-menu-persistent {
    cursor: pointer;
}

#b-persistent-menu ul li.list-group-item.active i:not(.has-sub-menu) {
    color: #ffffff;
}

#b-persistent-menu .has-sub-menu {
    transform: rotate(-90deg);
    font-size: 70px;
    position: absolute;
    right: -61px;
    top: -10px;
}

/* Domain Intent */
#dlPickDomainIntent .checkbox-template:checked:disabled::before {
    background: grey;
}

#b-persistent-menu .list-group-item:focus,
#b-persistent-menu .list-group-item:hover {
    z-index: 0;
}

#b-manage-message.container-fluid {
    width: auto;
    /**/
}

/* Only iPad*/
@media only screen
  and (min-device-width: 1024px)
  and (max-device-width: 1366px)
  and (-webkit-min-device-pixel-ratio: 1.5) {
    #b-manage-message.container-fluid {
        max-height: 720px;
    }
}

/* Only iPad portrait*/
@media only screen
  and (min-device-width: 1024px)
  and (max-device-width: 1366px)
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 1.5) {

}

#b-manage-message aside.navbar-chanel, #b-manage-message .main-container-chat-log {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 1rem);
}

#b-manage-message .main-container-chat-log aside {
    width: 340px;
}

#b-manage-message .main-container-chat-log aside section ul,
.main-container-chat-log form {
    background-color: #f7f7f7;
}

.message__input {
    height: 59px;
}

.message__input .wrapper-message__input-text {
    display: flex;
    width: 98.5%;
    background-color: #f2f2f4;
    height: 47px;
    justify-content: center;
    align-content: center;
    border-radius: 20px;
    margin: 9px auto;
    align-items: center;
}

.main-container-chat-log form {
    border-left: solid 1px #e4e9f3;
    border-top-left-radius: 5px;
    border-right: solid 1px #e4e9f3;
    border-top-right-radius: 5px;
    border-bottom: solid 1px #e4e9f3;
}

#b-manage-message .main-container-chat-log aside section ul {
    border-left: 1px solid #e4e9f3;
    border-right: 1px solid #e4e9f3;
}

#b-manage-message aside.navbar-chanel {
    width: 90px;
}

#b-manage-message aside ul li {
    cursor: pointer;
}

#b-manage-message ul li span.bg-icon-message {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #7C909A;
    color: #ffffff;
    text-align: center;
    font-style: normal;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -3px;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.line i.icon-line:after {
    content: 'Line';
    color: #fff;
    font-family: Muli-Bold !important;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.fbatwork {
    background-color: #007bff4f;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.livechat i.icon-message1,
#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.facebook i.icon-ic-facebook,
#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.zalo i.icon-ic-zalo,
#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.line i.icon-line {
    color: #fff;
    font-size: 23px;
    height: auto;
    position: relative;
    top: -4px;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.fbatwork i.icon-fbatwork {
    width: 23px;
    height: 23px;
    background: url('../../fptai/img/icon-fbatwork.png') no-repeat;
    position: relative;
    top: -3px;
    left: -1px;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.viber i.icon-ic-viber {
    position: relative;
    top: 4px;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.line {
    background-color: #3ace01;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.line i.icon-line {
    font-size: 18px;
}

#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.facebook i.icon-ic-facebook,
#b-manage-message aside.navbar-chanel ul li span.bg-icon-message.zalo i.icon-ic-zalo {
    font-size: 45px;
}

#b-manage-message ul.list-sender-message li span.bg-icon-message {
    width: 20px;
    height: 20px;
    right: -13px;
    top: 23px;
}

#b-manage-message .main-content-message {
    width: calc(100% - 360px);
}

#b-manage-message .main-content-message .mark-as-done {
    cursor: pointer;
}

#b-manage-message .main-content-message .mark-as-done:hover i {
    color: #ffffff !important;
}

#b-manage-message .main-content-message .mark-as-done:hover {
    color: #ffffff;
    background-color: #27AE60;
}

.box-message-sender__name {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}

#b-manage-message ul.list-sender-message li {
    box-shadow: 0 1px 0 0 #e4e9f3;
    background-color: #f7f7f7;
    border-bottom: solid 1px #e4e9f3;
    border-top: 0;
    /*height: 74px;*/
}

#b-manage-message ul.list-sender-message li:first-child {
    border-top: 0;
}

#b-manage-message ul.list-sender-message li span.bg-icon-message i {
    font-size: 1rem;
    height: 100%;
}

#b-manage-message aside.navbar-chanel ul li:not(:first-child) i {
    font-size: 2rem;
    height: 100%;
}

.main-container-chat-log form i {
    color: rgba(43, 48, 52, 0.4);
    top: 12px;
    left: 15px;
}

.main-container-chat-log form input#txtSearchSender {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.03);
    border: solid 1px #e4e9f3;
    color: #a1a1a1;
    background-color: #ffffff;
    border-radius: 5px;
    padding-left: 40px;
    height: 40px;
    line-height: 40px;
    border-left: 0;
    border-right: 0;
}

.main-container-chat-log form input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 700px) {
    #b-manage-message .main-container-chat-log {
        width: 95%;
        /*margin: 80px 1rem 1rem;*/
    }
}

.bg-icon-message.facebook {
    background-color: #2E78BE !important;
}

.bg-icon-message.viber {
    background-color: rgb(123, 81, 157) !important;
}

.bg-icon-message.zalo {
    background-color: rgb(0, 170, 255) !important;
}

.bg-icon-message.livechat {
    background-color: #7bc1cf !important;
}

.bg-icon-message.api {
    background-color: #FD6A34 !important;
}

.message-box__sender-name {
    height: 70px;
    border: solid 1px #e4e9f3;
    background-color: #f8f8f9;
    border-radius: 5px 5px 0 0;
}

.message-box__icon-input-message {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.message-box__sender-channel {
    height: 70px;
    font-size: 25px;
    line-height: 70px;
}

.message-box__sender-name strong {
    font-size: 20px;
}

.message-box__sender-name span strong {
    font-size: inherit;
}

#b-manage-message aside.navbar-chanel ul li {
    border: solid 1px #ffffff;
}

#b-manage-message .main-container-chat-log aside ul li.active, #b-manage-message aside ul li:hover {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.03);
    border-bottom: solid 1px #e4e9f3;
    border-top: 0;
    background-color: #ffffff;
}

#b-manage-message aside.navbar-chanel ul li.active, #b-manage-message aside.navbar-chanel ul li:hover {
    box-shadow: 0 1px 0 0 #e4e9f3;
    background-color: #f7f7f7;
    border: solid 1px #f7f7f7;
}

#b-manage-message input:checked + .broadcast-slider {
    background-color: #27AE60;
}

#b-manage-message aside.navbar-chanel ul li i.number-messenger-channel {
    position: absolute;
    top: -8px;
    right: -6px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    font-weight: bold;
    font-style: normal;
    border-radius: 50%;
    border: 2px #fff solid;
    background-color: #7C909A;
    line-height: 16px;
}

#b-manage-message aside.navbar-chanel ul li:first-child i.number-messenger-channel {
    /*display: none;*/
}

#b-manage-message ul.list-sender-message {
    overflow: auto;
}

#app_broadcast aside article p.btn-create-broadcast {
    border: 1px dotted #C4C4C4;
    text-align: center;
    word-break: break-word;
    cursor: pointer;
}

#app_broadcast aside article ul {
    max-height: 500px;
    overflow: hidden auto;
}

#app_broadcast aside article ul li {
    text-align: center;
    word-break: break-word;
    border: 3px transparent solid;
    cursor: pointer;
    background-color: #fff;
}

#app_broadcast aside article ul li.active, #app_broadcast p.btn-create-broadcast.active {
    border: 3px #5DC7D0 solid;
    font-weight: bold;
}

#app_broadcast main header input {
    border: 1px solid transparent;
}

#app_broadcast main header input:hover {
    border: 1px solid #dee2e6;
}

#app_broadcast .btn-add-filter {
    background-color: #54C6D4;
    color: #fff;
    font-size: 30px;
    width: 38px;
    height: 38px;
    line-height: 20px;
}

#app_broadcast p.title {
    color: #7C909A;
}

#app_broadcast .main-footer span {
    cursor: pointer;
}

.bootstrap-datetimepicker-widget {
    list-style: none
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    display: block;
    margin: 2px 0;
    padding: 4px;
    width: 19em
}

@media (min-width: 576px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

@media (min-width: 768px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }

    #b-manage-message aside.navbar-chanel {
        width: 95%;
        /*margin: 0 1rem;*/
    }
}

@media (max-width: 768px) {
    #b-manage-message aside.navbar-chanel {
        width: calc(100% - 0rem);
    }

    .content-inner.active {
        width: 100%;
    }

    #b-manage-message aside.navbar-chanel ul li {
        margin-left: 1rem;
        padding: 0px 1rem;
        margin-right: 1rem;
        float: left;
    }

    #b-manage-message .main-container-chat-log aside {
        width: 230px;
    }

    .messenger-information strong:first-child {
        overflow: hidden;
        font-size: 11px;
        -webkit-line-clamp: 1;
        text-overflow: ellipsis;
        display: -webkit-box !important;
        -webkit-box-orient: vertical;
    }

    #b-manage-message .main-content-message {
        width: calc(100% - 240px);
    }
}

@media (min-width: 992px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }

    #b-manage-message aside.navbar-chanel {
        width: 90px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .content-inner.active {
        min-width: 700px;
    }
}

.bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after {
    content: '';
    display: inline-block;
    position: absolute
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    top: -7px;
    left: 7px
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    top: -6px;
    left: 8px
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
    border-top: 7px solid rgba(0, 0, 0, 0.2);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    bottom: -7px;
    left: 6px
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    bottom: -6px;
    left: 7px
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
    left: auto;
    right: 6px
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
    left: auto;
    right: 7px
}

.bootstrap-datetimepicker-widget .list-unstyled {
    margin: 0
}

.bootstrap-datetimepicker-widget a[data-action] {
    padding: 6px 0
}

.bootstrap-datetimepicker-widget a[data-action]:active {
    box-shadow: none
}

.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
    width: 54px;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0
}

.bootstrap-datetimepicker-widget button[data-action] {
    padding: 6px
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Toggle AM/PM"
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Clear the picker"
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Set the date to today"
}

.bootstrap-datetimepicker-widget .picker-switch {
    text-align: center
}

.bootstrap-datetimepicker-widget .picker-switch::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Toggle Date and Time Screens"
}

.bootstrap-datetimepicker-widget .picker-switch td {
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
    line-height: inherit
}

.bootstrap-datetimepicker-widget .picker-switch td span, .bootstrap-datetimepicker-widget .picker-switch td i {
    line-height: 2.5;
    height: 2.5em;
    width: 100%
}

.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0
}

.bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th {
    text-align: center;
    border-radius: .25rem;
    padding: .5em
}

.bootstrap-datetimepicker-widget table th {
    height: 20px;
    line-height: 20px;
    width: 20px
}

.bootstrap-datetimepicker-widget table th.picker-switch {
    width: 145px
}

.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
    background: none;
    color: #dee2e6;
    cursor: not-allowed
}

.bootstrap-datetimepicker-widget table th.prev::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Previous Month"
}

.bootstrap-datetimepicker-widget table th.next::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Next Month"
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
    cursor: pointer
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
    background: #f8f9fa
}

.bootstrap-datetimepicker-widget table td {
    height: 54px;
    line-height: 54px;
    width: 54px
}

.bootstrap-datetimepicker-widget table td.cw {
    font-size: .8em;
    height: 20px;
    line-height: 20px;
    color: #dee2e6
}

.bootstrap-datetimepicker-widget table td.day {
    height: 20px;
    line-height: 20px;
    width: 20px
}

.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
    background: #f8f9fa;
    cursor: pointer
}

.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
    color: #dee2e6
}

.bootstrap-datetimepicker-widget table td.today {
    position: relative
}

.bootstrap-datetimepicker-widget table td.today:before {
    content: '';
    display: inline-block;
    border: solid transparent;
    border-width: 0 0 7px 7px;
    border-bottom-color: #dee2e6;
    border-top-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 4px;
    right: 4px
}

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #dee2e6;
    color: #007bff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.bootstrap-datetimepicker-widget table td.active.today:before {
    border-bottom-color: #fff
}

.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
    background: none;
    color: #dee2e6;
    cursor: not-allowed
}

.bootstrap-datetimepicker-widget table td span, .bootstrap-datetimepicker-widget table td i {
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    margin: 2px 1.5px;
    cursor: pointer;
    border-radius: .25rem
}

.bootstrap-datetimepicker-widget table td span:hover, .bootstrap-datetimepicker-widget table td i:hover {
    background: #f8f9fa
}

.bootstrap-datetimepicker-widget table td span.active, .bootstrap-datetimepicker-widget table td i.active {
    background-color: #dee2e6;
    color: #007bff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.bootstrap-datetimepicker-widget table td span.old, .bootstrap-datetimepicker-widget table td i.old {
    color: #dee2e6
}

.bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td i.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover, .bootstrap-datetimepicker-widget table td i.disabled:hover {
    background: none;
    color: #dee2e6;
    cursor: not-allowed
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
    height: 27px;
    line-height: 27px
}

.bootstrap-datetimepicker-widget.wider {
    width: 21em
}

.bootstrap-datetimepicker-widget .datepicker-decades .decade {
    line-height: 1.8em !important
}

.input-group.date .input-group-addon {
    cursor: pointer
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

/* super user */
.super-user .sp-main-title {
    margin: 0;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.super-user .sp-div-main {
    margin: 0 20px;
    width: calc(100% - 40px);
    padding: 20px;
    background-color: white;
    float: left;
}

.super-user .sp-sub-title {
    font-weight: bold;
}

.super-user .sp-display-table {
    width: 100%;
    padding: 10px 0 20px;
    float: left;
}

.super-user .sp-display-table td {
    font-size: 14px;
}

.super-user .sp-display-table tr.hover-pointer:hover {
    cursor: pointer;
}

.super-user .col-align-right {
    text-align: right;
}

.super-user .stt-active {
    color: #27AE60;
}

.super-user .stt-deactive {
    color: #B3B5B6;
}

.super-user .pagination {
    float: right;
}

.super-user .sp-bill-header {
    width: 100%;
    padding-bottom: 10px;
    float: left;
}

.super-user .sp-bill-header > div {
    float: left;
}

.super-user .p-title {
    font-size: 14px;
    margin: 0;
    line-height: 18px;
}

.super-user .p-content {
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
}

.super-user .sp-bill-table-header {
    width: 100%;
    float: left;
}

.super-user .sp-bill-table-header span {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    opacity: 0.7;
}

.super-user .btn-change-plan {
    font-size: 14px;
    position: relative;
    top: -3px;
    color: #57C7D3;
    font-family: "Muli-Regular", sans-serif !important;
    font-weight: bold !important;
}

/* enable absolute positioning */
.super-user .inner-addon {
    position: relative;
    float: left;
    /*width: 300px;*/
}

.super-user .icon-input-right {
    position: absolute;
    right: 15px;
    top: 30px;
}

.super-user .inner-addon input {
    padding-right: 40px;
}

.icon-information-red:before {
    content: "\ecba";
    color: #DC3545;
}

.toasted-container .error {
    color: #FFFFFF;
}

.error {
    color: #dc3545;
}

/*! nouislider - 11.1.0 - 2018-04-02 11:18:13 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
    direction: ltr;
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
    left: auto;
    right: 0;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
    width: 0;
}

.noUi-horizontal .noUi-origin {
    height: 0;
}

.noUi-handle {
    position: absolute;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
    height: 18px;
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px;
}

.noUi-vertical {
    width: 18px;
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -17px;
    left: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
    border-radius: 3px;
}

.noUi-connect {
    background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
    cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}

.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #E8E7E6;
    left: 14px;
    top: 6px;
}

.noUi-handle:after {
    left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}

.noUi-vertical .noUi-handle:after {
    top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
    background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
    cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-pips {
    position: absolute;
    color: #999;
}

/* Values;
 *
 */
.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
    position: absolute;
    background: #CCC;
}

.noUi-marker-sub {
    background: #AAA;
}

.noUi-marker-large {
    background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}

.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%, 0);
    padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}

#slider-confidence.noUi-target {
    border: none;
    box-shadow: none;
    background-color: #d3d3d3;
}

#slider-confidence.noUi-horizontal {
    height: 15px;
}

#slider-confidence.noUi-connect {
    background-color: #2196f3;
}

#slider-confidence.noUi-horizontal .noUi-handle {
    width: 26px;
    height: 26px;
    top: -6px;
    border-radius: 50%;
    background: #89d7e1;
    box-shadow: none;
    border: none;
}

#slider-confidence .noUi-handle:before, #slider-confidence .noUi-handle:after {
    display: none;
}

#slider-confidence .noUi-tooltip {
    padding: 0;
    border: none;
}

*:focus {
    outline: none;
}

.page-item.active a:focus, .page-item .page-link:focus {
    box-shadow: none;
}

.post-active {
    border: 2px #5DC7D0 solid !important;
    font-weight: bold;
}

/* ---  RADIO BUTTON  --- */
.radio-template {
    position: relative;
    top: -7px;
}

.radio-template::before {
    position: relative;
    top: 3px;
}

.radio-template::after {
    top: 6px;
}

/*.dm-model-margin-bottom > div .custom-control-label {*/
/*line-height: initial;*/
/*}*/

.dm-model-margin-bottom > div .radio-template {
    top: -5px;
}

.dm-model-margin-bottom .custom-control-label::before, .dm-model-margin-bottom .custom-control-label::after {
    top: .65rem;
}

/*------------------------------------------------------------------
[2. Stats / .stats]
*/

.statsTable {
    cursor: pointer;
}

.statsTable thead {
    /* custom CSS styles here for <thead> element */
    background-color: #0097a7;
    color: white;
    font-weight: bold;
}

.stats {
    width: 100%;
    display: table;
    padding: 0 0 0 10px;
    margin-top: .5em;
}

.dp-chart > div {
    padding: 10px !important;
}

.dp-chart > div .card {
    margin: 0 !important;
    width: 100%;
    height: 100%;
}

.dp-chart > div .card-header {
    min-height: 90px !important;
}

.stats .stat {
    display: table-cell;
    width: 60px;
    vertical-align: top;
    text-align: center;
    font-size: 11px;
    font-weight: bolder;
    color: #999;
    border-right: 1px solid #CCC;
    border-left: 1px solid #FFF;
}

.stats .stat-hide {
    display: table-cell;
    width: 40%;
    vertical-align: top;
    text-align: center;
    font-size: 11px;
    font-weight: bolder;
    color: white;
}

.stats .stat .value {
    font-size: 12px;
    font-weight: bold;
    color: #19bc9c;
    text-align: center;
    min-width: 50px;
}

.stats .stat-hide .value {
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.big_stats .stat .value:hover {
    color: #19bc9c;
}

.stats .stat:first-child {
    border-left: none;
}

.stats .stat:last-child {
    border-right: none;
}

.stat-value {
    display: block;
    margin-bottom: .55em;

    font-size: 30px;
    font-weight: bold;
    letter-spacing: -2px;
    color: #444;
}

.stat-time {
    text-align: center;
    padding-top: 1.5em;
}

.stat-time .stat-value {
    color: #19bc9c;
    font-size: 40px;
}

.stats #donut-chart {
    height: 100px;
    margin-left: -20px;
}

.big_stats {
    width: 100%;
    display: table;
    margin-top: 1.5em;

}

.big-stats-container .widget-content {
    border: 0;
}

.big_stats .stat {
    width: 25%;
    /*height: 90px;*/
    text-align: center;
    display: table-cell;
    padding: 0;
    position: relative;
    border-right: 1px solid #CCC;
    border-left: 1px solid #FFF;
}

.big_stats i {
    font-size: 16px;
    display: block;
    line-height: 20px;
    color: #b2afaa;
}

.big_stats .stat:hover i {
    color: #19bc9c;
}

h6.bigstats {
    margin: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 26px;
}

.big_stats .stat:first-child {
    border-left: none;
}

.big_stats .stat:last-child {
    border-right: none;
}

.big_stats .stat h4 {
    font-size: 11px;
    font-weight: bold;
    color: #777;
    margin-bottom: 1.5em;
}

.big_stats .stat .value {
    font-size: 20px;
    font-weight: bold;
    color: #545454;
    line-height: 1em;
    text-align: center;
}

.big_stats .stat .value:hover {
    color: #19bc9c;
}

.stat_td_width {
    max-width: 170px;
}

.btnMessage {
    padding: 15px 0;
    text-align: center;
    width: 100%;
    border: 0;
    border-top: 1px #F4F8F9 solid;
    background-color: #ffffff;
    color: #3788F6;
    cursor: pointer;
    word-break: break-word;
}

/* ============== NEW == HOME == PAGE ================= */
#lstbot {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 30px 13px 20px;
    flex-direction: column;
}

#lstbot .bot-display-area > .row > div {
    margin-bottom: 15px;
    padding: 0 10px;
}

#lstbot .bot-display-area > .row > div > div:hover .bot-style {
    box-shadow: 0 30px 46px 0 rgba(0, 0, 0, 0.12) !important;
    border: solid 2px #bfd3f5 !important;
    background-color: #ffffff !important;
}

#lstbot .bot-display-area {
    width: 100%;
    padding: 30px 0 100px;
}

#lstbot .bot-display-area .bot-style {
    border-radius: 5px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.03);
    border: solid 2px #e4e9f3;
    background-color: #ffffff;
    padding: 0;
    cursor: pointer;
}

#lstbot .bot-display-area .bot-style .bot-header {
    width: 100%;
    height: 80px;
    border-bottom: solid 1px #e6e6e8;
}

#lstbot .bot-display-area .bot-style .bot-header .bot-icon {
    width: 40px;
    height: 40px;
    float: left;
    margin: 20px 19px 0 19px;
    border-radius: 50%;
    background-color: aquamarine;
    text-align: center;
    line-height: 3;
    font-size: 13px;
    font-weight: bold;
}

#lstbot .bot-display-area .bot-style .bot-header .bot-dp-name {
    width: 60%;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.3px;
    color: #333333;
    margin-top: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 1;*/
    -webkit-box-orient: vertical;
    word-break: break-all;
    float: left;
    white-space: nowrap;
}

#lstbot .bot-display-area .bot-style .bot-header .bot-dp-lang {
    width: 60%;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #777777;
    position: relative;
    top: -4px;
}

#lstbot .bot-display-area .bot-style .bot-header .bot-dp-lang i {
    position: relative;
    top: -4px;
}

#lstbot .bot-content {
    border-bottom: solid 1px #e6e6e8;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: #777777;
}

#lstbot .bot-content .row {
    padding: 0 10px;
}

#lstbot .bot-content .row > div {
    height: 40px;
    border-bottom: dashed 0.5px #e6e6e6;
    line-height: 2.8;

}

#lstbot .bot-style .row > div {

    padding-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 1;*/
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

#lstbot .bot-footer {
    padding: 0 10px;
    height: 40px;
    line-height: 2.8;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: #777777;
}

#lstbot .col-md-7 {
    color: #333333;
}

#lstbot .btn-bot-setting-home .icon-btn i {
    font-size: 26px;
    position: relative;
    top: -4px;
}

#lstbot .btn-bot-setting-home li {
    font-size: 15px;
    padding-left: 5px;
    line-height: 2;
    cursor: pointer;
}

#lstbot .btn-bot-setting-home li:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

#lstbot .btn-bot-setting-home li i {
    font-size: 18px;
    position: relative;
    top: -5px;
    left: 1px;
    margin-right: 2px;
}

#lstbot .btn-bot-setting-home .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
    padding: 0;
    cursor: auto;
}

#lstbot .bot-dp-code {
    font-size: 11px;
    color: gray;
    position: relative;
    top: -8px;
    left: 77px;
    width: 60%;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* CSS FOR BUTTON MESSAGE */
.button-msg-p {
    border-top: 1px solid;
    float: left;
    width: calc(100% + 16px);
    background-color: transparent;
    margin-top: 10px;
    padding-top: 5px;
    margin-bottom: 3px;
    margin-left: -8px;
    /* margin-right: -9px; */
}

.button-msg-button {
    white-space: normal;
    background: transparent;
    border: none;
    color: #FFFFFF;
    height: 30px;
    line-height: 1;
    padding: 7px;
    margin-top: 0 !important;
}

/* CSS FOR BUTTON MESSAGE - END */

.panel-default > .panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.panel-default > .panel-heading a {
    display: block;
    padding: 10px 15px;
}

.panel-default > .panel-heading a:after {
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
}

.panel-default > .panel-heading a[aria-expanded="true"] {
    background-color: #eee;
}

.panel-default > .panel-heading a[aria-expanded="true"]:after {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.panel-default > .panel-heading a[aria-expanded="false"]:after {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-option .toggle-accordion {
    float: right;
    font-size: 16px;
    color: #6a6c6f;
}

.accordion-option .toggle-accordion:before {
    content: "Expand All";
}

.accordion-option .toggle-accordion.active:before {
    content: "Collapse All";
}

#b-persistent-menu-accordion .level-active {
    background-color: #81b7f1 !important;
    border-color: #81b7f1;
    color: #fff;
}

#b-persistent-menu-accordion .level-active i {
    color: #fff;
}

#b-persistent-menu-accordion .chatbot__icon-arrow {
    width: 17px;
    height: 12px;
    display: inline-block;
    background: url(../img/ic-arrow.svg) no-repeat;
    transform: rotate(180deg);
    background-size: contain;
    position: absolute;
    top: 42%;
}

#b-persistent-menu-accordion .chatbot__icon-arrow.rotate {
    transform: rotate(0);
}

#b-settings-versions table tr td i {
    cursor: pointer;
}
