.chatbox-wrapper * {
  font-family: "Manrope", sans-serif;
}

/* ------- Chat toggle button --------*/
.chat-toggle {
  position: fixed;
  bottom: 4%;
  right: 2%;
  z-index: 999;
}

.chat-toggle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ezd_brand_color);
  padding: 15px;
  height: 65px;
  width: 65px;
  border-radius: 50%;
}

.wp-spotlight-chat {
  animation: icon-animation2 0.3s ease;
  width: auto;
  max-width: 35px;
  height: auto;
}

.wp-spotlight-hide {
  display: none;
  max-width: 25px;
  animation: icon-animation 0.3s ease;
}

@keyframes icon-animation {
  0% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes icon-animation2 {
  0% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* ------- Chatbox --------*/
.chatbox-wrapper {
  display: none;
  width: 370px;
  overflow: hidden;
  position: fixed;
  z-index: 999;
  right: 1%;
  bottom: 10%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.kb-body-height {
  min-height: 570px;
}

.chatbox-posts.kb-body-no-search {
  height: 494px;
}

.show-chatbox {
  display: block;
  animation: chatbox-animation 0.4s;
  -webkit-animation: chatbox-animation 0.4s;
}

@-webkit-keyframes chatbox-animation {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes chatbox-animation {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* ------- Chatbox Header --------*/
.chatbox-header {
  background-color: var(--ezd_brand_color);
  padding: 15px 15px 100px;
}

.chatbox-header.chatbox-header-top-padding {
  padding-top: 0;
}

.chatbox-header .search-box {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.027), 0 1px 4px rgba(0, 0, 0, 0.013);
}

.chatbox-form.contact-body-block {
  display: block !important;
}

.chatbox-header .search-box input {
  width: 100%;
  margin-top: 20px;
  height: 45px;
  font-size: 14px;
  padding: 0 10px;
  border: 2px solid transparent;
  border-radius: 5px;
  background-color: #fff;
}

.chatbox-header .search-box input:focus {
  outline: none;
}

.chatbox-tab {
  display: flex;
  gap: 20px;
}

.chatbox-tab a {
  color: #fff;
  text-decoration: none !important;
  font-size: 14px;
  position: relative;
}

.chatbox-tab a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: -2px;
  transition: 0.15s width linear;
  -webkit-transition: 0.15s width linear;
  -moz-transition: 0.15s width linear;
  -ms-transition: 0.15s width linear;
  -o-transition: 0.15s width linear;
}

.chatbox-tab a:hover::before,
.chatbox-tab a.active::before {
  width: 100%;
}

/* ------- Chatbox Body --------*/
.chatbox-body {
  padding: 15px;
  height: 100%;
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
}

.chatbox-body {
  background-color: #eaf3ff;
}

/* ------- Posts --------*/
.chatbox-posts {
  margin-top: -95px;
  overflow: hidden auto;
  height: 429px;
  width: 100%;
}
.chatbox-posts::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}
.chatbox-posts::-webkit-scrollbar-track {
  border-radius: 5px;
}
.chatbox-posts::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--black_100);
}
.chatbox-posts .post-item {
  background: #fff;
  padding: 10px 12px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.chatbox-posts .post-item h2 {
  font-size: 16px;
  margin: 3px 0 8px;
  position: relative;
}
.chatbox-posts .post-item h2 a {
  text-align: left;
  font-size: inherit;
  text-decoration: none;
  color: var(--black_700);
}
.chatbox-posts .post-item h2 a:hover {
  color: var(--ezd_brand_color);
}
.chatbox-posts .breadcrumb {
  padding: 0;
  margin: 0;
}
.chatbox-posts .breadcrumb .breadcrumb-item {
  padding-left: 0;
  font-size: 13px;
  line-height: 21px;
  display: flex;
}

.post-item p {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black_500);
}

/* ------- Chatbox Contact --------*/
.chatbox-form-wrapper {
  margin-top: -95px;
  background-color: #fff;
  padding: 15px;
  overflow: hidden auto;
  border-radius: 5px;
}

.chatbox-form input,
.chatbox-form textarea {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 15px;
  width: 100%;
  border: 1px solid #ececec;
  background: #fff;
  text-indent: 10px;
  border-radius: 5px;
}

.chatbox-form textarea {
  padding: 10px 0;
}

.chatbox-form input:focus,
.chatbox-form textarea:focus {
  border-color: var(--ezd_brand_color);
  outline: none;
}

.chatbox-form input {
  background-color: #fff;
  height: 40px;
  margin-bottom: 15px;
  padding: 0;
}

#chatbox-search-results .docs-not-found {
  color: white;
  font-size: 14px;
}

.chatbox-form input[type=submit] {
  padding: 13px 25px;
  margin-top: 10px;
  width: auto;
  height: auto;
  border-radius: 5px;
  background-color: var(--ezd_brand_color);
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* ------- chatbox-breadcrumb --------*/
.chatbox-breadcrumb {
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  list-style: none;
}

.chatbox-breadcrumb .breadcrumb-item {
  color: var(--black_300);
  font-size: 13px;
  line-height: 21px;
  padding-left: 3px;
  margin: 0;
}

.chatbox-breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}

.chatbox-breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--black_400);
}

.chatbox-breadcrumb .breadcrumb-item a:hover {
  color: var(--ezd_brand_color);
}

.chatbox-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: url("../img/arrow-right.svg");
  color: #b7b9be;
  padding-right: 3px;
}

.chatbox-breadcrumb .active {
  color: var(--secondary_color);
}

/*------- AJAX Search --------*/
.post-item.keyword-alert {
  border: 2px solid orange;
  border-left: 8px solid orange;
}

.post-item.keyword-danger {
  border: 2px solid #ff3333;
  border-left: 4px solid #ff3333;
}

.post-item.keyword-alert p,
.post-item.keyword-danger {
  font-weight: 500;
  color: #000;
}

#chatbox-search-results .breadcrumb .breadcrumb-item:first-child,
#chatbox-search-results .breadcrumb .breadcrumb-item:nth-child(2):before,
#chatbox-search-results .breadcrumb .breadcrumb-item:last-child {
  display: none;
}

/*# sourceMappingURL=assistant.css.map */
