/*! normalize.css v3.0.2 | MIT License | git.io/normalize */


body {
    -webkit-font-smoothing: subpixel-antialiased;
    font-family: 'Lato', Arial, sans-serif;
}

input {
    font-family: 'Lato', Arial, sans-serif;
}

.top-area {
    display: flex;
    align-items: center;
    
    padding-top: 30px;
    border-bottom: 1px solid transparent;
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
    transition: all .2s ease;
    position: fixed;
    background-color: #fff;
    right: 70px;
    top: 56px;
    

}

.icon-and-name {
    display: flex;
    align-items: center;
}

.icon-and-name i {
    font-size: 24px;
    margin-right: 5px;
    color: #7b3ff2;
    transition: all .2s ease;
}

.icon-and-name .search-name {
    font-size: 14px;
    transition: all .2s ease;
    font-weight: bold;
}

.initial-state .top-area {
    margin-top: 100px;
    margin-bottom: 40px;
    position: relative;
    top: 0px;
    right: auto;
}

.initial-state .top-area .icon-and-name i {
    font-size: 44px;
    margin-right: 8px;
}

.initial-state .icon-and-name .search-name {
    font-size: 30px;
    font-weight: normal;
}



.chatbot {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
    line-height: 1.5em;
    font-family: 'Lato', Arial, sans-serif;
    color: #262626;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
}

* {
    box-sizing: border-box;
}



.chatbot .message-area {
    position: relative;
    

}

.chatbot  .refresh-btn {
    position: absolute;
    right: 20px;
    top: 20px;

}

.chatbot .refresh-btn i {

    font-size: 17px;
    opacity: .5;
    transition: all .2s ease;
    cursor: pointer;
}

.chatbot .refresh-btn:hover i {
    opacity: 1;
    color: #7b3ff2;
}

.chatbot .past-messages {
    padding: 60px 0 50px 0;
    min-height: 215px;

}

.initial-state .chatbot .past-messages {
    display: none;
}


.chatbot .message {
    padding: 30px 50px 20px 30px;
    display: flex;
    border-top: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dadada;
    border: 0px;

    transition: .2s all ease;
}

.chatbot .message-customer {
    border-color: transparent;
    background-color: transparent;
    padding: 20px 50px 20px 30px;
}

.chatbot .message-customer:hover {
    background-color: rgba(0,0,0,.03);
    background-color: transparent;
}

.suggestions {
    padding: 20px 50px 20px 80px;
}

.message-body .suggestions {
    margin: 0;
    padding: 10px 0px;
}

.suggested-question {
    display: flex;
    align-items: center;
    padding: 0px 20px;
    border-radius: 20px;
    height: 35px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #999;
    cursor: pointer;
    transition: all .2s ease;
}

.suggested-question:hover {
    border-color: #7b3ff2;
}

.suggested-question.asked {
    border-color: #7b3ff2;
}

.icon-edit-message {
    margin-left: auto;
    opacity: .7;
    cursor: pointer;
    display: none;
    margin-right: -44px;
    transition: all .2s ease;
}

.icon-cancel {
    opacity: 0;
    cursor: pointer;
    transition: all .2s ease;
    margin-bottom: 3px;
}

.icon-cancel.show {
    animation: fade-in .3s forwards;
    animation-delay: .3s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .7;
  }
}

.icon-cancel:hover {
    opacity: 1;
}

.message:hover .icon-edit-message {
    display: block;
}

.icon-edit-message:hover {
    opacity: 1;
}

.chatbot .message-icon {
    flex: 0 0 50px;
}

.chatbot .icon-dataset {
    width: 28px;
    height: 28px;
    background-color: #7b3ff2;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.chatbot .icon-customer {
    width: 28px;
    height: 28px;
    background-color: #888;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;


}

.chatbot .message-body {
    font-size: 1rem;
    width: 100%;
}

.chatbot .message-body p {
    margin-bottom: 10px;
}

.chatbot .message-body p:first-child {
    margin-top: 0px;
}

.chatbot .message-body p:last-child {
    margin-bottom: 0px;
}

.chatbot .write-message-area {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
    z-index: 1000;
    position: relative;
    
}

body.scrolling .chatbot .write-message-area {
    position: fixed;
    left: 50%;
    margin-left: -350px;
    bottom: 30px;
}

body.scrolling .past-messages {
}

.chatbot #searchbox {
    border: 0px;
    flex: 1 1 auto;
    background-color: rgba(0,0,0,.1);
    background-color: #fff;
    height: 50px;
    border-radius: 34px;
    font-size: 1rem;
    outline: none;
    transition: all .2s ease;
    overflow: hidden;
    resize: none;
    font-family: 'Lato', Arial, sans-serif;
    border: 1px solid #ccc;
    border: 1px solid #7b3ff2;
    box-shadow: 0 0 0 8px rgba(220,220,220,.75);
    display: flex;
    align-items: center;
    padding-right: 7px;


}

#searchbox input {
    line-height: 100%;
    font-size: 16px;
    height: 50px;
    padding-left: 30px;
    flex: 1 1 auto;
    border: 0px;
}

#searchbox input:focus {
    border: 0px;
    outline: 0px;
}

.chatbot #searchbox.focus {
    background-color: rgba(0,0,0,.08);
    background-color: #fff;
    border-color: #7b3ff2;
    
}

#sendButton {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    border-radius: 50px;
}

#sendButton i {
    font-size: 20px;
}

.chatbot .page-footer {
    padding-top: 30px;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 30px;
    font-size: .85rem;
}

.chatbot .page-footer .separator {
    width: 1px;
    height: 24px;
    background-color: #ccc;
    margin: 0 20px;
}


/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.chatbot .dot-flashing {

  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #556eed;
  color: #556eed;
  animation: dot-flashing .8s infinite linear alternate;
  animation-delay: 0.4s;
  margin-left: 20px;
}
.chatbot .dot-flashing::before, .dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.chatbot .dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #556eed;
  color: #556eed;
  animation: dot-flashing .8s infinite alternate;
  animation-delay: 0s;
}
.chatbot .dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #556eed;
  color: #556eed;
  animation: dot-flashing .8s infinite alternate;
  animation-delay: .8s;
}

@keyframes dot-flashing {
  0% {
    background-color: #556eed;
  }
  50%, 100% {
    background-color: rgba(152, 128, 255, 0.2);
  }
}

/* Modal */

.chatbot .modal-backdrop.show {
    opacity: .32;
}

.chatbot .modal-content {
    border: none;
    font-size: .85em;
}
.chatbot .modal-header {
    border-bottom: 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px 20px 0 20px;
}

.chatbot .modal-title {
    font-size: 24px;
    font-weight: 900;
}

.chatbot .modal-body {
    padding: 20px;
}

.chatbot .modal-footer {
    padding: 0 20px 20px 20px;
    border-top: 0px;
}

.chatbot .modal-footer>* {
    margin-top: 0px;
    margin-bottom: 0px;
}

.chatbot .modal-footer>*:last-child {
    margin-right: 0px;
}

.chatbot #feedbackModalFormSubmit {
    padding-left: 16px;
    padding-right: 16px;
    letter-spacing: .5px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
}

.chatbot #feedbackModalForm {
    margin-bottom: 0px;
}

.chatbot .col-form-label, .form-label {
    font-weight: bold;
}

#feedbackText {
    border-color: #D9D9D9;
    border-radius: 3px;
}

.chatbot #feedbackText:focus {
    outline: none;
    border-color: #7b3ff2;
    box-shadow: none;

}

.chatbot .form-check-input {
    border-color: #9D9D9D;
}

.chatbot .form-check-input:checked {
    border-color: #7b3ff2;
    background-color: #7b3ff2;
}

.chatbot .form-check-input:focus{
    box-shadow: 0 0 0 0.25rem rgb(132 63 242 / 12%);
}



/* Rating Star Widgets Style */
.chatbot .rating-stars ul {
  list-style-type:none;
  padding:0;
  -moz-user-select:none;
  -webkit-user-select:none;
}
.chatbot .rating-stars ul > li.star {
  display:inline-block;
  
}

/* Idle State of the stars */
.chatbot .rating-stars ul > li.star > i.fa {
  font-size:1.2rem; /* Change the size of the stars */
  color:#d9d9d9; /* Color on idle state */
  transform: all .2s ease;
}

/* Hover state of the stars */
.chatbot .rating-stars ul > li.star.hover > i.fa {
  color:#FFCC36;
}

/* Selected state of the stars */
.chatbot .rating-stars ul > li.star.selected > i.fa {
  color:#FF912C;
}


/* Alert */

.chatbot .alert-success {
    background-color: #06847D;
    color: #fff;
    border: 0px;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
    position: absolute;
    top: 70px;
    z-index: 1000;
    padding: .75em 2em;
    transition: all .2s ease;
    opacity: 0;
    font-size: 14px;
}

.chatbot .alert-success.show {
    opacity: 1;
    top: 110px;
}

.sample-question {
    color: #7b3ff2;
    cursor: pointer;
}

.list-of-sample-questions {
    display: flex;
    align-items: center;
}

.list-of-sample-questions .sample-question {
    position: relative;
}

.list-of-sample-questions .divider {
    width: 1px;
    height: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #ccc;
}

.content-snippet {
    border: 1px solid #dadada;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content-snippet-header {
    padding: 12px 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #eaeaea;
    border-radius: 4px 4px 0 0;
    
}

.content-snippet-footer {
    padding: 8px 20px;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    border-radius: 0 0 4px 4px;
    
}

.content-snippet-body {
    padding: 30px 20px 20px 20px;
}

.snippet-graph {
    height: 200px;
    margin-bottom: 10px;
    width: 1000px;
}

.content-snippet .pq-table {
    border: 1px solid #dadada;
}

.content-snippet-type {
    color: #888;
    text-transform: uppercase;
    font-size: 13px;
    margin-right: 10px;
    letter-spacing: .5;
    font-weight: bold;
}

.content-snippet .legend {
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    padding: 0px;
}

.snippet-icons {
    margin-left: auto;
    display: flex;
    flex-direction: row;
}

.snippet-icons .material-icons {
    opacity: .7;
    font-size: 20px;
    margin-left: 5px;
    cursor: pointer;
    
}

.content-snippet-toggle {
    margin-right: 18px;
}

.toggle-btn .btn.selected {
    background-color: #e7ebf8;
    border: 1px solid #637be5;
    z-index: 10;
}

.btn-group.toggle-btn .btn + .btn {
    margin-left: -1px;
}

.toggle-btn .btn:first-child {
    margin-left: 0px;
}

.graph-title {
    font-weight: bold;
    font-size: 16px;
}

.legend {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.legend .dot {
    margin-right: 6px;
}

.btn-sm {
    font-size: 13px;
}

.btn-sm .material-icons {
    font-size: 16px;
    margin-right: 5px;
}

.menu.dropdown-menu-right {
    left: auto;
    right: 0px;
}

.snippet-query {
    font-family: "Menlo", monospace;
    padding: 20px;
    font-size: 12px;
}

.table.integration-table td {
    border: 0px;
    padding: 6px 10px;
    font-size: 14px;
    
}


.integration-table td:first-child {
    color: #777;
    text-transform: uppercase;
    font-size: 12px;
    text-align: right;
}


.tag.field-name-lg {
    font-size: 16px;
    padding: 4px 10px;
}

.graph-big-number {
    font-size: 37px;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
}