/* **********************************
Reset CSS
************************************** */

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


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/********************************
 Typography Style
******************************** */

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 15px;
}

a {
    text-decoration: none;
    font-size: 15px;
}

* {
  margin-bottom: 0;
}


/* *******************************
message-area
******************************** */

.message-area {
    height: 100vh;
    overflow: hidden;
    padding: 30px 0;
    /*background: #f5f5f5;*/
    background: #ffffff;
}

.chat-area {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0.3rem;
    height: 90vh;
    overflow: hidden;
    min-height: calc(100% - 1rem);
}

.chatlist {
    outline: 0;
    height: 100%;
    overflow: hidden;
    width: 300px;
    float: left;
    padding: 15px;
}

.chat-area .modal-content {
    border: none;
    border-radius: 0;
    outline: 0;
    height: 100%;
}

.chat-area .modal-dialog-scrollable {
    height: 100% !important;
}

.chatbox {
    width: auto;
    overflow: hidden;
    height: 100%;
    border-left: none;
}

.chatbox .modal-dialog,
.chatlist .modal-dialog {
    max-width: 100%;
    margin: 0;
}

.msg-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-area .form-control {
    display: block;
    width: 80%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.chat-area .form-control:focus {
    outline: 0;
    box-shadow: inherit;
}

a.add img {
    height: 36px;
}

.chat-area .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    align-items: center;
    justify-content: space-between;
    flex-wrap: inherit;
}

.chat-area .nav-tabs .nav-item {
    width: 100%;
}

.chat-area .nav-tabs .nav-link {
    width: 100%;
    color: #180660;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize;
    margin-top: 5px;
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.chat-area .nav-tabs .nav-item.show .nav-link,
.chat-area .nav-tabs .nav-link.active {
    color: #222;
    background-color: #fff;
    border-color: transparent transparent #000;
}

.chat-area .nav-tabs .nav-link:focus,
.chat-area .nav-tabs .nav-link:hover {
    border-color: transparent transparent #000;
    isolation: isolate;
}

.chat-list h3 {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}

.chat-list p {
    color: #343434;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}

.chat-list a.d-flex {
    margin-bottom: 15px;
    position: relative;
    text-decoration: none;
}

.chat-list .active {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    bottom: 3px;
    left: 34px;
    height: 12px;
    width: 12px;
    background: #00DB75;
    border-radius: 50%;
    border: 2px solid #fff;
}

.msg-head h3 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}

.msg-head p {
    color: #343434;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}

.msg-head {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.moreoption {
    display: flex;
    align-items: center;
    justify-content: end;
}

.moreoption .navbar {
    padding: 0;
}

.moreoption li .nav-link {
    color: #222;
    font-size: 16px;
}

.moreoption .dropdown-toggle::after {
    display: none;
}

.moreoption .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: auto;
    right: 0;
    margin-top: 0.125rem;
}

.msg-body ul {
    overflow: hidden;
}

.msg-body ul li {
    list-style: none;
    margin: 15px 0;
}

.msg-body ul li.sender {
    display: block;
    width: 100%;
    position: relative;
}

.msg-body ul li.sender:before {
    display: block;
    clear: both;
    content: '';
    position: absolute;
    top: -6px;
    left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 15px 12px;
    border-color: transparent transparent #f5f5f5 transparent;
    -webkit-transform: rotate(-37deg);
    -ms-transform: rotate(-37deg);
    transform: rotate(-37deg);
}

.msg-body ul li.sender p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    padding: 15px;
    background: #f5f5f5;
    display: inline-block;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0;
}

.msg-body ul li.sender p b {
    display: block;
    color: #180660;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.msg-body ul li.repaly {
    display: block;
    width: 100%;
    text-align: right;
    position: relative;
}

/*.msg-body ul li.repaly:before {
    display: block;
    clear: both;
    content: '';
    position: absolute;
    bottom: 15px;
    right: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 15px 12px;
    border-color: transparent transparent #4b7bec transparent;
    -webkit-transform: rotate(37deg);
    -ms-transform: rotate(37deg);
    transform: rotate(37deg);
}*/

.msg-body ul li.repaly p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    padding: 15px;
    background: #4b7bec;
    display: inline-block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 0;
}

.msg-body ul li.repaly p b {
    display: block;
    color: #061061;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.msg-body ul li.repaly:after {
    display: block;
    content: '';
    clear: both;
}

.time {
    display: block;
    color: #000;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

li.repaly .time {
    margin-right: 20px;
}

.divider {
    position: relative;
    z-index: 1;
    text-align: center;
}

.msg-body h6 {
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
    background: #fff;
    display: inline-block;
    padding: 0 5px;
    margin-bottom: 0;
}

.divider:after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 12px;
    left: 0;
    border-top: 1px solid #EBEBEB;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.send-box {
    padding: 15px;
    border-top: 1px solid #ccc;
}

.send-box form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 10px;
}

.send-box .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.send-box button {
    border: none;
    background: none;
    padding: 0.375rem 5px;
    color: #444;
    border-radius: 0.25rem;
    font-size: 14px;
    font-weight: 400;
    width: auto;
    margin-left: 0;
    position: absolute;
    right: 0;
}

.send-box button i {
    margin-right: 5px;
}

.send-btns .button-wrapper {
    position: relative;
    width: 125px;
    height: auto;
    text-align: left;
    margin: 0 auto;
    display: block;
    background: #F6F7FA;
    border-radius: 3px;
    padding: 5px 15px;
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.send-btns .button-wrapper span.label {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    color: #343945;
    font-weight: 400;
    /*text-transform: capitalize;*/
    font-size: 13px;
}

#upload {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.send-btns .attach .form-control {
    display: inline-block;
    width: 120px;
    height: auto;
    padding: 5px 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #343945;
    background-color: #F6F7FA;
    background-clip: padding-box;
    border: 1px solid #F6F7FA;
    border-radius: 3px;
    margin-bottom: 5px;
}

.send-btns .button-wrapper span.label img {
    margin-right: 5px;
}

.button-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0 auto;
}

button:focus {
    outline: 0;
}

.add-apoint {
    display: inline-block;
    margin-left: 5px;
}

.add-apoint a {
    text-decoration: none;
    background: #F6F7FA;
    border-radius: 8px;
    padding: 8px 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: #343945;
}

.add-apoint a svg {
    margin-right: 5px;
}

.chat-icon {
    display: none;
}

.closess i {
    display: none;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background: #000;
}

/* Handle on hover */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.chat-image {
    max-width: 80px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.nav-sticky.navbar {
    background: #fff !important;
    margin-top: 0px;
    box-shadow: 0px 3px 10px 0px rgba(24,59,86,.2);
    margin: 0;
}
.form{
        display: flex;
        margin-top: 10px;
        position: relative;
    }
.send-btns .button-wrapper{
        width: auto;
        height: auto;
        margin: 0 0 5px;
        border-radius: 18px;
    }
    .send-btns{
        display: flex;
        flex-wrap: wrap;
    }

.send-box {
 background: #fff;

}
.modal-body{
padding: 15px;
}

span.messages-credit {
    display: block;
    width: 100%;
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}
.stop-generating-wrapper{
    text-align:center;
    margin:0 auto;

}
.stop_generating{
    background: #fff;
    color: #beb9b9;
    border-radius: 25px;
    padding: 5px;
    cursor: pointer;
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    max-width: 200px;
    margin: 5px auto;
    border: 2px solid;
}
.stop_generating:hover {
    background: #f0f0f0;
}


span.messages-credit a{font-size:11px;}
@media (max-width: 767px) {
    .chat-icon {
        display: block;
        margin-right: 5px;
    }
    .chatlist {
        width: 100%;
    }
    .chatbox {
        width: 100%;
        position: absolute;
        left: 1000px;
        right: 0;
        background: #fff;
        transition: all 0.5s ease;
        border-left: none;
    }
    .showbox {
        left: 0 !important;
        transition: all 0.5s ease;
    }
    .msg-head h3 {
        font-size: 14px;
    }
    .msg-head p {
        font-size: 12px;
    }
    .msg-head .flex-shrink-0 img {
        height: 30px;
    }
    .send-box button {
        width: auto;
    }
    .send-box .form-control {
        width: 100%;
    }
    .chat-list h3 {
        font-size: 14px;
    }
    .chat-list p {
        font-size: 12px;
    }
    .msg-body ul li.sender p {
        font-size: 13px;
        padding: 8px;
        border-bottom-left-radius: 6px;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    .msg-body ul li.repaly p {
        font-size: 13px;
        padding: 8px;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        border-bottom-left-radius: 6px;
    }
    .chatbox{
        left: 0;
    }


}



/* chat sidebar */
.message-area{
    display: flex;
    padding: 0;
}
.message-area .container{
    width: 100%;
    max-width: 70% !important;
}
.message-area .chat-sidebar {
    background: #333;
    width: 25%;
    max-width: 375px;
}
.message-area .recent-queries ul{
    padding-top: 5px;
}
.message-area .recent-queries ul li a {
    color: #fff;
    opacity: 0.75;
    padding: 10px 10px 10px 30px;
    display: block;
    border-bottom: 1px solid #666;
    position: relative;
}
.message-area .recent-queries ul li a:hover{
    opacity: 1;
}
.message-area .recent-queries ul li a::before {
    content: '\f27b';
    font-family: 'FontAwesome';
    position: absolute;
    left: 8px;
}
.message-area .recent-queries ul li.doc a::before {
    content: url(../images/attach-file-w.png);
    font-family: 'FontAwesome';
    position: absolute;
    left: 8px;
}
.message-area .user-bar {
    position: fixed;
    bottom: 0;
    width: 25%;
    max-width: 375px;
    background: #222;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.message-area .user-details{
    display: flex;
    align-items: center;
    color: #fff;
    
}
.message-area .user-details a{
    
}
.message-area .user-details img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
}
.message-area .user-details .user-name{
    display: inline-block;
    margin-left: 10px;
}
.message-area .user-bar .dropdown-toggle {
    color: #fff;
    width: 15px;
    display: block;
    text-align: center;
}
.message-area .user-bar .dropdown-toggle::before{
    display: none;
}
.message-area .recent-queries {
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
}
.message-area .recent-queries::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.message-area .recent-queries::-webkit-scrollbar-track {
  background: #111; 
}
 
/* Handle */
.message-area .recent-queries::-webkit-scrollbar-thumb {
  background: #555; 
}

/* Handle on hover */
.message-area .recent-queries::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.chat-area{
    margin-top: 30px;
    border: 1px solid #ccc;
}

#settingsModal .modal-content, #channelchatbotModal_skip .modal-content{
    background: #333;
    color: #fff;
}
#settingsModal .modal-body, #channelchatbotModal .modal-body{
    padding: 30px;
}
#settingsModal .modal-header,
#settingsModal .modal-footer
#channelchatbotModal .modal-header,
#channelchatbotModal .modal-footer
{
    border: none;
    padding: 30px;
    padding-bottom: 0;
}
#settingsModal .btn-close, #channelchatbotModal .btn-close{
    filter:invert(1);
}

#settingsModal .plans-row ul li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
#settingsModal .plans-row ul li::before{
    content: '\f05d';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0px;
    
}
.btn-modal-adjustment{
    margin: 0 auto;
    max-width: 200px;
}
.free-plan a {
    background: #ddd;
    display: block;
    color: #000;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}
.plus-plan a {
    background: rgb(16, 163, 127);
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    font-weight: bold;
}

#settingsModal .plans-row .plus-plan ul li::before{
    color: rgb(16, 163, 127);
    
}
#settingsModal .free-plan {
    border-right: 2px solid #666;
}
.plans-row h4 {
    font-size: 20px;
}

.message-area a.toggle-searches{
    display: none;
    font-size: 14px;
}

.thumbs-up-down{
    display: flex;
    margin-top: 15px;
}
.thumbs-up-down .thumbs-icon{
    width: 30px;
    height: 30px;
    display: block;
    background-size: 30px;
    background-repeat: no-repeat;
    margin:0 10px 0 0;
    cursor:pointer
}
.thumbs-up-down .thumbs-up {
    background-image: url(../images/thumb_up_rounded_corners.svg);

}
.thumbs-up-down .thumbs-down {
    background-image: url(../images/thumb_down_rounded_corners.svg);

}
.thumbs-up-down .thumbs-up.active {
    background-image: url(../images/thumb_up_active.svg);
    filter:invert(0) !important;

}
.thumbs-up-down .thumbs-down.active {
    background-image: url(../images/thumb_down_active.svg);

}
.thumbs-up-down .thumbs-icon{
    filter: invert(1);
}
.thumbs-down.active{
    filter: invert(0);
}

.thumbs-up-down .thumbs-icon:hover {
    filter: invert(0);
}

a.copy-icon img {
    max-width: 100%;
    vertical-align: middle;
    filter: invert(0.5);

}
a.copy-icon {
    width: 29px;
    border: 1px solid #bbb;
    border-radius: 5px;
    margin-right:10px;
}
a.copy-icon img:hover {
    filter: invert(0);
}

a.copy-link img {
    max-width: 100%;
    vertical-align: middle;
    filter: invert(0.7);

}
a.copy-link {
    width: 29px;
    border: 1px solid #bbb;
    border-radius: 5px;
    margin-right:10px;
}
a.copy-link img:hover {
    filter: invert(0.5);
}
.message-area.embedded-widget .powered-by {
    background: #f5f5f5;
    text-align: center;
    padding: 5px;
    font-size: 14px;
    margin-top: 10px;
}
.message-area.embedded-widget  .chat-area {
    height: 90vh;
}
.message-area.embedded-widget {
    background: none;
}
.message-area .powered-by {
display: none;
}

.empty-chatbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
    text-align:center;
    margin:0 auto;
}

.message-area .recent-queries ul li {
    position: relative;
}

.message-area .recent-queries ul li .action-icons {
    position: absolute;
    top: 10px;
    right: 0;
    color: #fff;
    margin-right:5px;
}
.message-area .recent-queries ul li .action-icons span{
    cursor: pointer;
}
.message-area .recent-queries ul li .action-icons img{
    filter:invert(1);
    width: 12px;
    padding: 0 !important;
}

@media screen and (min-width:320px) and (max-width:767px){
    section.message-area {
        flex-direction: column;
    }
    .message-area .user-bar {
        position: fixed;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid #ddd;
        top: 0;
    }
    .message-area .chat-sidebar{
        width: 100%;
        max-width: 100%;
        position: absolute;
        z-index: 1111;
    }
    .message-area .recent-queries {
        max-height: calc(50vh - 50px);
        overflow-y: auto;
    }
    a.toggle-searches {
        position: fixed;
        top: 50px;
        background: #111;
        color: #fff;
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
    }
    .message-area .recent-queries {
        max-height: calc(50vh - 50px);
        overflow-y: auto;
        margin-top: 75px;
        display: none;
    }
    .message-area .container{
        margin-top: 100px;
        max-width: 100% !important;
    }
    .chat-area{
        height: 77vh;
    }
    #settingsModal{
        z-index: 1111111;
    }
    #settingsModal .free-plan {
        border-right: none;
        border-bottom: 2px solid #444;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    #settingsModal .modal-header h3 {
        font-size: 18px;
    }
    .plans-row h4 {
        font-size: 16px;
    }
    #settingsModal .plans-row ul li {

        font-size: 14px;
    }
    #settingsModal .modal-body{
        padding: 20px;
    }
    #settingsModal .modal-header{
        padding: 20px;
    }
    .message-area .recent-queries ul li a{
        font-size: 14px;
        padding-left: 40px;
        padding-right: 30px;
    }
    .message-area .recent-queries ul li a::before{
        left: 15px;
    }
    .plus-plan ul li {
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }
    .plus-plan ul li:last-child {
        border: none;
    }
    .message-area a.toggle-searches{
        display: block;
    }

   .message-area.has-sidebar .container {
       margin-top: 100px;
    }
    .message-area .container {
        margin-top: 0;

    }
}



.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 2;
    width: 100px;
    color: white;
    font-size: 12px;
    background-color: #192733;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
  }
  
  .tooltip-text::before {
    content: "";
    position: absolute;
    transform: rotate(45deg);
    background-color: #192733;
    padding: 5px;
    z-index: 1;
  }
  
  #uploadImage:hover ~ .tooltip-text {
    visibility: visible;
  }
  #uploadImage:hover{
    background: #000;
  }

  #top {
    top: -70%;
    left: 22%;
    width: 315px;
  }

  #top::before {
    top: 80%;
    left: 45%;
  }

  .red_btn{
    color: #ff0000;
    border-color:#ff0000;
  }
  .other_pastors{
    margin-top: 25px;
    color: #999;
    font-size: 15px;
    font-weight: bold;
    padding: 0 10px 0 10px;
    margin-bottom:5px;
  }

  .message-area .recent-queries ul li.doc a::before {
    background: url(../images/attach-file-w.png);
    position: absolute;
    left: 8px;
    background-size: 16px !important;
    background-repeat: no-repeat !important;
    content: '' !important;
    width: 20px;
    height: 20px;
    background-position: 0 3px;
}
.deleteIt{
    color: red;
    font-weight: bold;
    cursor: pointer;
    margin: 40px -20px 0px 0px;
}
.pre-questions-in-modal{
    width:97% !important;
    display:inline-block !important;
}


.preview-box{
    /* background-image: url(../images/phone-image1.png); */
    position: absolute;
    /*  background: url(../images/phone-image1.png);*/
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.preview-container{
    position: absolute;
    left: 30px;
    width: 100%;
    max-width: 214px;
    text-align: center;
}

.preview-container.top{
    /* top: 70px; */
    top: 120px;
}
.preview-container.center{
    /* top: 250px; */
    top: 300px;
}
.preview-container.bottom{
    /* bottom: 50px; */
    bottom: 100px;
}
.preview-container.bottom_center{
    /* bottom: 125px; */
    bottom: 200px;
}
.preview-text{
    color: #fff;
    line-height: 15px;
    font-size: 15px;
    display: inline-block;
}
/* .preview-text{
    position: absolute;
    left: 31px;
    color: #fff;
    width: 210px;
    text-align: center;
    line-height: 15px;
    font-size: 15px;
} */

/* .preview-text.top{
    top: 140px;
}
.preview-text.center{
    top: 310px;
}
.preview-text.bottom{
    bottom: 115px;
}
.preview-text.bottom_center{
    bottom: 170px;
} */




.preview-text.textbold{
    font-weight: bold;
}


.highlight-text{
    color: #00DB75;
    line-height: 25px;
    margin-left: 5px;
}

#loading_icon_model{
    position: absolute;
    background-color: gray;
    height: 100%;
    width: 100%;
    z-index: 100;
    opacity: 0.5;
}

#loading_icon_model img{
    width: 50px;
    margin: 36% 50%;
}

.upgradePlanLink{
    text-align: center;
    font-size: 8px;
    margin-top: 5px;
}
.upgradePlanLink .advancePlan{
    font-size: 8px;
}

.bounce{
    font-weight: bolder;
    font-size: 2vw;
    background-color: transparent !important;
}
.underline{
    text-decoration: underline;
    background-color: transparent !important;
}
.box{
    padding: 2px;
    color: #000;
    /* color: #000 !important; */
    /* background-color: #00DB75; */
}
.box_all{
    padding: 2px;
    color: #000;
    /* color: #000 !important; */
    /* background-color: #00DB75; */
}
.color{
    background-color: transparent !important;
}
.uppercaseall {
    text-transform: uppercase;
}

.addshadoweffect{
    /* text-shadow: 0px 2px #558abb; */
    /* text-shadow: 0px -1px 1px #FF29ED; */
    -webkit-text-stroke-width: 0.6px;
    -webkit-text-stroke-color: #FF29ED;
}

.clipButton a img{
    height: 200px;
    /* width: 100px; */
    /* object-fit: cover; */
    object-position: center top;
    /* margin-top: 10px; */
}


.cliptooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.cliptooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 60px;
}

.cliptooltip:hover .tooltiptext {
    visibility: visible;
}

.clipVideoTimestamp{
    /* display: none !important; */
}