@import "all.css";
@import "slick.css";
@import "slick-theme.css";
@import "animate.min.css";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.c-shadow {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

::selection {
  color: #fff;
  background: #095095;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #095095;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

[class*=success]:not(.toast-success) {
  color: #27bf57 !important;
}

[class*=danger] {
  color: #ff2134 !important;
}

.fade-text {
  color: #999 !important;
}

.dark-bg {
  background-color: #f5f8fc !important;
}

.title {
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-family: "Manrope", sans-serif;
  text-transform: capitalize;
  line-height: 1.2;
}

p {
  line-height: 1.8;
  font-size: 1rem;
  margin: 0.5rem auto;
  font-family: "Roboto", sans-serif;
  color: #737b9a;
}

.highlighted {
  color: #095095 !important;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-clamp-one {
  -webkit-line-clamp: 1 !important;
}

.line-clamp-two {
  -webkit-line-clamp: 2 !important;
}

.line-clamp-three {
  -webkit-line-clamp: 3 !important;
}

.line-clamp-four {
  -webkit-line-clamp: 4 !important;
}

.line-clamp-five {
  -webkit-line-clamp: 5 !important;
}

.line-clamp-six {
  -webkit-line-clamp: 6 !important;
}

.line-clamp-seven {
  -webkit-line-clamp: 7 !important;
}

.line-clamp-eight {
  -webkit-line-clamp: 8 !important;
}

.line-clamp-nine {
  -webkit-line-clamp: 9 !important;
}

.line-clamp-ten {
  -webkit-line-clamp: 10 !important;
}

/* .line-clamp-one {
	-webkit-line-clamp: 3;
} */
.theme-btn {
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  border-radius: 6em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 500;
  color: #fff;
  background-color: #095095;
}
@media (min-width: 991px) {
  .theme-btn {
    padding: 1rem 2rem;
  }
}
.theme-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.theme-btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: rgba(9, 80, 149, 0.5);
}
.theme-btn:hover {
  background-color: transparent;
  border: 1px solid #095095;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.theme-btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.theme-btn.dark-theme-btn {
  background-color: #fff;
  color: #095095;
}
.theme-btn.dark-theme-btn::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.theme-btn.dark-theme-btn:hover {
  border: 1px solid #fff;
}

.theme-basic-btn {
  border: 1px solid #095095;
  background-color: #095095;
  color: #fff;
}
.theme-basic-btn:hover {
  border: 1px solid #095095;
  background-color: rgba(9, 80, 149, 0.95);
  color: #fff;
  opacity: 0.8;
}

.fancy-btn {
  display: block;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  border: 2px solid #095095;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  transition: all 0.15s ease;
}
.fancy-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #095095;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
.fancy-btn:hover, .fancy-btn:active {
  color: #fff !important;
}
.fancy-btn:hover::before, .fancy-btn:active::before {
  transform: translateX(0);
}

.form-check-input:checked {
  background-color: #095095;
  border-color: #095095;
}

.form-switch .form-check-input {
  border-radius: 2em !important;
}

.dropdown-item a, .dropdown-item button {
  border: 0;
}

.dropdown-toggle.no-arrow::after {
  content: initial;
}

select {
  display: none;
}

.form-check {
  text-align: left;
}

.btn.disabled,
.btn:disabled {
  pointer-events: none;
  color: gray;
  text-decoration: none;
  cursor: not-allowed;
}

.btn-ai,
.btn-ai:active,
.btn-ai:focus {
  background-color: #fff !important;
  color: #333 !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
}

#toggleSidebar,
#toggleSidebar:active,
#toggleSidebar:focus {
  color: #fff;
  border: 0;
  font-size: 14px;
  border-radius: 5px;
}
#toggleSidebar .close-sidebar,
#toggleSidebar .open-sidebar,
#toggleSidebar:active .close-sidebar,
#toggleSidebar:active .open-sidebar,
#toggleSidebar:focus .close-sidebar,
#toggleSidebar:focus .open-sidebar {
  color: #fff;
}
#toggleSidebar.btn-fixed,
#toggleSidebar:active.btn-fixed,
#toggleSidebar:focus.btn-fixed {
  position: fixed;
  left: 20px;
  color: #fff;
  z-index: 1;
}
@media (max-width: 991px) {
  #toggleSidebar.btn-fixed,
  #toggleSidebar:active.btn-fixed,
  #toggleSidebar:focus.btn-fixed {
    top: 25px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  #toggleSidebar.btn-fixed,
  #toggleSidebar:active.btn-fixed,
  #toggleSidebar:focus.btn-fixed {
    top: 15px;
  }
}
#toggleSidebar.btn-fixed .open-sidebar,
#toggleSidebar:active.btn-fixed .open-sidebar,
#toggleSidebar:focus.btn-fixed .open-sidebar {
  color: #fff;
}

@media (min-width: 767px) {
  .toggle-sidebar-btn .close-sidebar {
    display: none;
  }
}
@media (max-width: 767px) {
  .toggle-sidebar-btn:not(.btn-fixed) .open-sidebar {
    display: none;
  }
  .toggle-sidebar-btn.btn-fixed .close-sidebar {
    display: none;
  }
}
.search-chat-btn {
  color: #333;
  border: 0;
  font-size: 14px;
  border-radius: 5px;
}
.search-chat-btn svg * {
  stroke: #333;
}

.sidebar-search-bar {
  display: none;
  border-radius: 8px 8px 0 0;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #095095;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.sidebar-search-bar .sidebar-search-wrapper {
  display: flex;
}
.sidebar-search-bar .close-btn {
  color: #fff;
}
.sidebar-search-bar .form-control {
  width: calc(100% - 40px);
  margin-right: 10px;
  padding: 0.5rem;
}

.btn-danger {
  color: #fff !important;
}

.section {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

.grid-btn {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 14rem));
  grid-gap: 1rem 1.5rem;
}

.centerGrid {
  display: grid;
  place-content: center;
}

.center-flex, .pricing-section .pricing-wrapper .pricing-item .number-price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-styling {
  position: relative;
}
.list-styling li {
  position: relative;
}
.list-styling li p {
  margin: 2px;
}
.list-styling li::before {
  content: "";
  line-height: 1.75;
  font-size: 13px;
  display: block;
  position: absolute;
  background-color: #095095;
  height: 10px;
  width: 10px;
  top: 13px;
  left: -3%;
  border-radius: 50%;
}

.input-group-text {
  background-color: #fff;
  padding: 0.375rem 0.5rem;
}

.logo-link {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
}

/* other styles */
/* .svg svg {
    display: none
}
*/
.inlinesvg .svg svg {
  display: inline;
}

/* .svg img {
    display: none
} */
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: #333;
  --bs-table-bg-type: #f5f8fc;
}

.table > :not(caption) > * > * {
  border: none;
  padding: 0.75rem 0.5rem;
}

@keyframes cursor {
  from {
    border-color: #095095;
  }
  to {
    border-color: transparent;
  }
}
.badge {
  padding: 3.5px 10px;
  display: inline;
  border-radius: 0.25rem;
  border: 1px solid;
  border-color: #999;
  background-color: transparent;
  font-size: 0.85rem;
  font-weight: 400;
  color: #095095;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-control {
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
}
.form-control::placeholder {
  color: #999;
  font-weight: 500;
}
.form-control:hover, .form-control:active, .form-control:focus {
  border: 1px solid #095095;
}

select {
  display: none;
}

.nice-select .list {
  z-index: 99;
}
.nice-select .list li {
  background-color: #fff;
  color: #333;
}
.nice-select .list li .option.selected.focus {
  color: #333 !important;
}
.nice-select .list li:hover {
  background-color: #095095 !important;
  color: #fff;
}

.form-control {
  font-weight: 500;
}

.input-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.input-box input:not(input[type=radio]),
.input-box input:not(input[type=checkbox]) textarea,
.input-box select {
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
}
.input-box textarea.form-control {
  font-weight: 400;
}
.input-box .input-box-icon {
  color: #333;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  pointer-events: none;
}
.input-box .input-box-icon a {
  color: #333;
}
.input-box .input-box-icon a:hover, .input-box .input-box-icon a:active, .input-box .input-box-icon a:focus {
  color: #095095;
}
.input-box textarea + .input-box-icon {
  transform: initial;
  top: 1rem;
}

.form-link {
  color: #333;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-link:hover {
  text-decoration: none;
  color: #095095;
}

.checkbox-theme .cl-checkbox {
  position: relative;
  display: inline-flex;
  /* Input */
  /* Checked, Indeterminate */
  /* Hover, Focus */
  /* Active */
  /* Disabled */
}
.checkbox-theme .cl-checkbox .label-text {
  cursor: pointer;
}
.checkbox-theme .cl-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.checkbox-theme .cl-checkbox > .check-box {
  display: inline-block;
  width: auto;
  cursor: pointer;
  /* Box */
}
.checkbox-theme .cl-checkbox > .check-box::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 3px 11px 3px 1px;
  border: solid 2px;
  /* Safari */
  border-color: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s;
}
.checkbox-theme .cl-checkbox > .check-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 2px;
  width: 10px;
  height: 5px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
}
.checkbox-theme .cl-checkbox > input:checked, .checkbox-theme .cl-checkbox > input:indeterminate {
  background-color: #095095;
}
.checkbox-theme .cl-checkbox > input:checked + .check-box::before, .checkbox-theme .cl-checkbox > input:indeterminate + .check-box::before {
  border-color: #095095;
  background-color: #095095;
}
.checkbox-theme .cl-checkbox > input:checked + .check-box::after, .checkbox-theme .cl-checkbox > input:indeterminate + .check-box::after {
  border-color: #fff;
}
.checkbox-theme .cl-checkbox > input:indeterminate + .check-box::after {
  border-left: none;
  transform: translate(4px, 3px);
}
.checkbox-theme .cl-checkbox .cl-checkbox:hover > input {
  opacity: 0.04;
}
.checkbox-theme .cl-checkbox > input:focus {
  opacity: 0.12;
}
.checkbox-theme .cl-checkbox .cl-checkbox:hover > input:focus {
  opacity: 0.16;
}
.checkbox-theme .cl-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
.checkbox-theme .cl-checkbox > input:active + .check-box::before {
  border-color: rgba(9, 80, 149, 0.3);
}
.checkbox-theme .cl-checkbox > input:checked:active + .check-box::before {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.6);
}
.checkbox-theme .cl-checkbox > input:disabled {
  opacity: 0;
}
.checkbox-theme .cl-checkbox > input:disabled + .check-box {
  color: rgba(0, 0, 0, 0.38);
  cursor: initial;
}
.checkbox-theme .cl-checkbox > input:disabled + .check-box::before {
  border-color: currentColor;
}
.checkbox-theme .cl-checkbox > input:checked:disabled + .check-box::before, .checkbox-theme .cl-checkbox > input:indeterminate:disabled + .check-box::before {
  border-color: transparent;
  background-color: currentColor;
}
.checkbox-theme .cl-checkbox.cl-radio > .check-box::before {
  border-radius: 50%;
}
.checkbox-theme .cl-checkbox.cl-radio > .check-box::after {
  border-radius: 50%;
  border: 0 !important;
  height: 10px;
  transform: translate(3px, 3px) rotate(0);
  background-color: #fff;
}

.sec-header .title {
  position: relative;
  margin-bottom: 2rem;
  text-transform: capitalize;
}
.sec-header .title::after {
  content: "";
  width: 100px;
  background: #095095;
  background: linear-gradient(90deg, #095095 50%, #165053 50%);
  height: 4px;
  border-radius: 10px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.offcanvas.show:not(.hiding), .offcanvas.showing {
  transform: none;
}
.offcanvas.offcanvas-top, .offcanvas.offcanvas-bottom {
  height: fit-content;
}
.offcanvas.offcanvas-top .offcanvas-dialog, .offcanvas.offcanvas-bottom .offcanvas-dialog {
  padding: 0;
  background-color: #fff;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .section-inner-expanded, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .section-inner-expanded {
  padding: 2rem 0.25rem;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .section-inner-expanded.fit-over-scrollbar, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .section-inner-expanded.fit-over-scrollbar {
  width: 100%;
  margin-left: -8.5px;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .title, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .title {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid;
  color: #333;
  border-color: #999;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .tag-cloud .link, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .tag-cloud .link {
  position: relative;
  z-index: 5;
  color: #095095;
  pointer-events: all;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .tag-cloud .link .badge, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .tag-cloud .link .badge {
  width: auto;
  height: 25px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  margin: 2.5px 0;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .tag-cloud .link .badge:hover, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .tag-cloud .link .badge:hover {
  border-color: #095095;
  color: #fff;
  background-color: #095095;
}
.offcanvas.offcanvas-top .offcanvas-dialog .offcanvas-content .megamenu .form-area, .offcanvas.offcanvas-bottom .offcanvas-dialog .offcanvas-content .megamenu .form-area {
  width: 100%;
}
.offcanvas.search-bar {
  z-index: 999999;
}
.offcanvas.search-bar .offcanvas-dialog {
  background-color: #fff;
}
.offcanvas .close-button {
  position: absolute;
  z-index: 2;
  top: 1.75rem;
  right: 1.75rem;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.offcanvas .close-button:hover {
  color: #095095;
}

main {
  padding-top: 200px;
}

@media (min-width: 576px) {
  .align-items-sm-unset {
    align-items: unset !important;
  }
}
.theme-sec {
  padding: 4rem 2rem;
  background: linear-gradient(90deg, rgb(254, 212, 141) 0%, rgb(187, 248, 255) 94%);
}
@media (max-width: 475px) {
  .theme-sec {
    padding: 3rem 1rem;
  }
}

.sub-title {
  color: #095095;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.sec-header h2 {
  font-weight: 800;
  margin-bottom: 15px;
  color: #333;
}

@keyframes toBottom {
  0%, 100% {
    transform: translateY(0px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  50% {
    transform: translateY(15px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.modal {
  z-index: 99999;
}

.modal-header {
  background-color: #333;
}
.modal-header .modal-title {
  color: #fff;
}

.modal-close-btn {
  color: #fff !important;
}

.section {
  scroll-margin-top: 150px;
}
@media (max-width: 567px) {
  .section {
    scroll-margin-top: 90px;
  }
}

.modal-close-btn {
  color: #fff !important;
}

p.isTyping::after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: #45d6b5;
  border-radius: 50%;
  animation-name: animateBall;
  animation-delay: 0.75s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: transform 0.75s ease-in-out;
}
p.isTyping code {
  position: relative;
}
p.isTyping code::after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: #45d6b5;
  border-radius: 50%;
  animation-name: animateBall;
  animation-delay: 0.75s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: transform 0.75s ease-in-out;
}

@keyframes animateBall {
  0% {
    transform: scale(0.75);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.75);
  }
}
.scrollBtn {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(54, 75, 92, 0.5) !important;
  color: #fff !important;
  position: fixed;
  bottom: 90px;
  font-size: 1.125rem;
  z-index: 999;
}

.regenerate-btn {
  border: 1px solid #095095 !important;
  margin: 10px auto;
  background: #095095 !important;
  color: #fff !important;
  padding: 5px 10px !important;
}

.dropdown-toggle[aria-expanded=true] .plus-icon {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in;
}

.dropdown-toggle[aria-expanded=false] .plus-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease-out;
}

.uploadFilesIcon {
  color: #095095;
}

.clear-btn {
  color: #095095 !important;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.agent-turn {
  width: 100%;
}

.code-wrapper {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.code-wrapper code {
  border-radius: 9px;
  box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.6);
  font-size: 1rem;
}
.code-wrapper .hljs {
  background: rgb(35, 35, 65) !important;
  padding: 1.5rem !important;
}
@media (max-width: 567px) {
  .code-wrapper .hljs {
    padding: 1rem !important;
  }
}
.code-wrapper .contains-code {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.code-wrapper .contains-code pre {
  border-radius: 9px;
}
.code-wrapper .contains-code .copy-code-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgb(55, 55, 95);
  color: #eee;
  padding: 8px 10px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.code-wrapper .contains-code .copy-code-button:hover {
  background-color: #095095;
  color: white;
}
.code-wrapper .contains-code::-webkit-scrollbar {
  width: 8px;
}
.code-wrapper .contains-code::-webkit-scrollbar-track {
  background: rgb(35, 35, 65);
}
.code-wrapper .contains-code::-webkit-scrollbar-thumb {
  background: rgb(55, 55, 95);
}
.code-wrapper .contains-code::-webkit-scrollbar-thumb:hover {
  background: rgb(20, 20, 160);
}

body {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #333;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

header {
  position: absolute;
  background: transparent;
  width: 100%;
  white-space: nowrap;
  user-select: none;
  z-index: 99999;
  top: 0;
  -webkit-transition: all linear 100ms;
  -moz-transition: all linear 100ms;
  -o-transition: all linear 100ms;
  transition: all linear 100ms;
  top: 0px;
}
header .user-element .dropdown-toggle::after {
  content: initial !important;
}
@media (max-width: 475px) {
  header .user-element .dropdown-toggle {
    padding: 0.125rem !important;
  }
}
header .user-element .dropdown-menu {
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.6);
  border: none;
}
header.header-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  background-color: #fff !important;
  z-index: 999;
  -o-box-shadow: 0px 0px 25px -10px;
  -ms-box-shadow: 0px 0px 25px -10px;
  -moz-box-shadow: 0px 0px 25px -10px;
  -webkit-box-shadow: 0px 0px 25px -10px;
  box-shadow: 0px 0px 25px -10px;
}
header .burger-menu {
  width: 35px;
  height: auto;
  background-color: transparent;
  margin-left: 20px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  border: 0;
}
header .burger-menu .line {
  display: block;
  width: 35px;
  height: 3px;
  background: #095095;
  transition: 0.5s ease;
  border-radius: 30px;
  margin-left: auto;
  margin-bottom: 4px;
}
header .burger-menu .line:nth-child(3) {
  margin-bottom: 0;
  width: 28px;
  margin-left: auto;
}
header .burger-menu:hover .line:nth-child(3) {
  width: 35px;
}
header .navbar-brand img {
  width: 100px;
}
@media (max-width: 500px) {
  header .navbar-brand img {
    width: 70px;
  }
}
header .navbar {
  background: transparent !important;
}
header .navbar .navbar-brand {
  color: #333;
}
header .navbar .navbar-nav .nav-item {
  padding: 0.5rem 1rem;
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: #333;
  font-size: 1.125rem;
  padding: 0.5rem 0;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
}
header .navbar .navbar-nav .nav-item .nav-link:not(header .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle)::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  border-bottom: 2px solid #095095;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
header .navbar .navbar-nav .nav-item .nav-link:hover:not(header .navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle, header .navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle, header .navbar .navbar-nav .nav-item .nav-link:active.dropdown-toggle)::after, header .navbar .navbar-nav .nav-item .nav-link.active:not(header .navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle, header .navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle, header .navbar .navbar-nav .nav-item .nav-link:active.dropdown-toggle)::after, header .navbar .navbar-nav .nav-item .nav-link:active:not(header .navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle, header .navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle, header .navbar .navbar-nav .nav-item .nav-link:active.dropdown-toggle)::after {
  opacity: 1;
  visibility: visible;
}
header .navbar .navbar-nav > li.dropdown > .dropdown-menu {
  padding: 0.75rem 1rem;
  border: 0;
}
header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item {
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 0.5rem 0;
  border: 0;
}
header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 2px solid #095095;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item:hover, header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item.active, header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item:active {
  color: inherit;
}
header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item:hover::after, header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item.active::after, header .navbar .navbar-nav > li.dropdown > .dropdown-menu .dropdown-item:active::after {
  opacity: 1;
  width: 100%;
}
header .navbar .close-wrap {
  display: none;
}
@media (max-width: 991px) {
  header .navbar .navbar-collapse {
    background-color: #fff;
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.6);
  }
}

.banner-section {
  background: #bdf3fd;
  padding-top: 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner-section::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: #aaecf8;
  z-index: -1;
}
@media (min-width: 1600px) {
  .banner-section .container-fluid {
    padding-left: 120px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .banner-section {
    padding-top: 200px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 500px) {
  .banner-section {
    padding-top: 160px;
  }
}
.banner-section .banner-content {
  max-width: 620px;
  position: relative;
  top: -50px;
}
.banner-section .banner-content h1 {
  font-weight: 800;
  margin-bottom: 15px;
}
.banner-section .banner-content h1 span {
  color: #095095;
}
.banner-section .banner-image {
  position: relative;
  z-index: 1;
}
.banner-section .banner-image img {
  animation: toBottom 7s infinite linear;
}
@media (max-width: 991px) {
  .banner-section .banner-image img {
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 567px) {
  .banner-section .banner-image img {
    max-width: 400px;
  }
}

.about-main-section {
  background-color: #202231;
}
.about-main-section .about-main-wrapper .text-content {
  height: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 6% 9% !important;
}
@media (max-width: 767px) {
  .about-main-section .about-main-wrapper .text-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.about-main-section .about-main-wrapper .text-content h2 {
  color: #fff;
  text-transform: uppercase;
}
.about-main-section .about-main-wrapper .text-content .more-info {
  color: rgba(255, 255, 255, 0.75);
  width: 90%;
  line-height: 24px;
  font-size: 15px;
  margin: 1rem auto;
}
.about-main-section .about-main-wrapper .bgImg {
  background-color: #333;
  background-image: url("../img/buzzai-bot.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 40vw;
  height: 100%;
  min-height: 750px;
}
@media (max-width: 1900px) {
  .about-main-section .about-main-wrapper .bgImg {
    background-size: 100% 45vw;
  }
}
@media (max-width: 1200px) {
  .about-main-section .about-main-wrapper .bgImg {
    background-size: 100% 50vw;
  }
}
@media (max-width: 1600px) {
  .about-main-section .about-main-wrapper .bgImg {
    min-height: 500px;
  }
}
.about-main-section .about-main-wrapper .bgImg img {
  display: none !important;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 991px) {
  .about-main-section .about-main-wrapper .bgImg {
    min-height: 400px;
    background-size: cover;
  }
  .about-main-section .about-main-wrapper .bgImg img {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 567px) {
  .about-main-section .about-main-wrapper .bgImg {
    min-height: 350px;
    background-size: 100% 100vw;
  }
  .about-main-section .about-main-wrapper .bgImg img {
    max-width: 400px;
  }
}

.feature-section {
  background: linear-gradient(90deg, rgb(254, 212, 141) 40%, rgb(234, 154, 253) 100%);
}
.feature-section .features-wrapper .feature-box {
  text-align: center;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  transition: all 1s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
@media (max-width: 567px) {
  .feature-section .features-wrapper .feature-box {
    padding: 0.5rem 1rem;
  }
}
.feature-section .features-wrapper .feature-box .feature-icon {
  font-weight: 400;
  font-size: 3rem;
  color: #095095;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 1rem 1.25rem;
}
.feature-section .features-wrapper .feature-box .feature-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-section .features-wrapper .feature-box .overlay-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms ease, visibility 500ms ease;
  opacity: 0;
  visibility: hidden;
}
.feature-section .features-wrapper .feature-box .overlay-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: -1;
  height: 100%;
  width: 100%;
}
.feature-section .features-wrapper .feature-box .overlay-hover .overlay-content {
  padding: 1.5rem 0.5rem;
}
@media (max-width: 567px) {
  .feature-section .features-wrapper .feature-box .overlay-hover .overlay-content {
    padding: 0.5rem 0.5rem;
  }
}
.feature-section .features-wrapper .feature-box .overlay-hover .overlay-title {
  transform: translateY(-100px) scale(0);
  transition: transform 0.3s ease;
}
.feature-section .features-wrapper .feature-box .overlay-hover img {
  border-radius: 5px;
  max-width: 90%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.feature-section .features-wrapper .feature-box:hover {
  border: 2px solid #095095;
}
.feature-section .features-wrapper .feature-box:hover .overlay-hover {
  opacity: 1;
  visibility: visible;
}
.feature-section .features-wrapper .feature-box:hover .overlay-hover .overlay-title {
  transform: translateY(0) scale(1);
}
.feature-section .features-wrapper .feature-box:hover .overlay-hover img {
  opacity: 1;
}

.pricing-section {
  background-image: url("../img/grid-bg.jpeg");
  background-size: contain;
  background-attachment: fixed;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-section .pricing-wrapper .pricing-item {
  padding: 2.5rem 3rem 1.75rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  overflow: hidden;
}
.pricing-section .pricing-wrapper .pricing-item .plan-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1px;
  border: 1px solid #f9b132;
  padding: 0.5rem 1rem;
  background-color: #f9b132;
  color: #0a4f95;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.pricing-section .pricing-wrapper .pricing-item .plan-title {
  padding-top: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.pricing-section .pricing-wrapper .pricing-item .number-price {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -1.44px;
  margin-bottom: 1.25rem;
  border: 10px solid rgba(9, 80, 149, 0.15);
  border-radius: 50%;
  height: 4em;
  width: 4em;
  margin: 1.25rem auto 1.5rem;
  background-color: #095095;
}
.pricing-section .pricing-wrapper .pricing-item .list-plans li {
  padding-left: 0.25rem;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
}
.pricing-section .pricing-wrapper .pricing-item .list-plans li .icon {
  position: absolute;
  left: -2.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  font-size: 14px;
  background-color: #500b95;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pricing-section .pricing-wrapper .pricing-item .btn-wrapper {
  margin-bottom: 1rem;
}
.pricing-section .pricing-wrapper .pricing-item:hover {
  transform: scale(0.99);
  box-shadow: 0px 10px 60px rgba(9, 80, 149, 0.2);
  border-color: #095095;
}

.testimonial-section .testimonial-wrapper .slick-track {
  display: flex;
  gap: 1rem;
}
.testimonial-section .testimonial-wrapper .testimonial-box {
  -webkit-transition: transform 1s ease;
  -moz-transition: transform 1s ease;
  -o-transition: transform 1s ease;
  transition: transform 1s ease;
  border: 0;
  height: inherit;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
}
.testimonial-section .testimonial-wrapper .testimonial-box .t-lead {
  width: 100px;
  height: 100px;
  border: 2px solid #e6e3d1;
  border-radius: 50%;
  padding: 3px;
  margin: 0 auto;
}
.testimonial-section .testimonial-wrapper .testimonial-box .t-lead img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-section .testimonial-wrapper .testimonial-box .t-text {
  padding-top: 1rem;
}
.testimonial-section .testimonial-wrapper .testimonial-box .t-text h5 {
  font-size: 1.5rem;
  font-weight: 600;
}
.testimonial-section .testimonial-wrapper .testimonial-box .t-avatar {
  padding-top: 10px;
}
.testimonial-section .testimonial-wrapper .testimonial-box .t-avatar h6 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}
.testimonial-section .testimonial-wrapper .testimonial-box:hover {
  transform: scale(0.99);
}

.contact-us-section {
  background-color: #095095;
  color: #fff;
  padding: 4rem 2rem;
  overflow: hidden;
}
.contact-us-section .contact-form-wrapper .img-wrapper img {
  max-width: 80%;
  animation: toBottom 7s infinite linear;
}

footer {
  background-color: #fff;
  color: #333;
}
footer a {
  color: #333;
}
footer a:hover {
  color: #095095;
  text-decoration: underline;
}

.progress-wrap {
  position: fixed;
  right: 12px;
  bottom: 25px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
  -o-box-shadow: inset 0 0 0 2px rgba(75, 64, 237, 0.2);
  -ms-box-shadow: inset 0 0 0 2px rgba(75, 64, 237, 0.2);
  -moz-box-shadow: inset 0 0 0 2px rgba(75, 64, 237, 0.2);
  -webkit-box-shadow: inset 0 0 0 2px rgba(75, 64, 237, 0.2);
  box-shadow: inset 0 0 0 2px rgba(75, 64, 237, 0.2);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f077";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 35px;
  font-size: 17px;
  color: #095095;
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg.progress-circle path {
  stroke: #095095;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.chat-playground-section .dropdown-menu {
  background-color: #095095;
}
.chat-playground-section .dropdown-menu .dropdown-item,
.chat-playground-section .dropdown-menu .dropdown-item a {
  color: #fff;
}
.chat-playground-section .dropdown-menu .dropdown-item:focus,
.chat-playground-section .dropdown-menu .dropdown-item:hover {
  background: #212638;
}

.chat-playground-section {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f1f9f9;
}
@media (max-width: 475px) {
  .chat-playground-section {
    min-height: initial;
    height: 100vh;
    height: 100dvh;
  }
}
.chat-playground-section .logout-btn {
  background-color: #f5f8fc;
  margin: 0;
  padding: 0;
  display: flex;
  cursor: pointer;
}
.chat-playground-section .sidebar {
  position: relative;
  flex-shrink: 0;
  color: #fff;
  width: 250px;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition-duration: 0.15s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background: #aaecf8;
  border-radius: 10px;
  margin: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: rgb(199, 188, 193) 0px 10px 39px, rgba(218, 211, 214, 0.11) 0px 10px 30px;
}
@media (min-width: 991px) {
  .chat-playground-section .sidebar {
    z-index: 1;
  }
}
@media (max-width: 991px) {
  .chat-playground-section .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1050;
    width: 250px;
  }
}
.chat-playground-section .sidebar.sidebar-hidden {
  margin-left: -250px;
}
@media (max-width: 991px) {
  .chat-playground-section .sidebar.sidebar-hidden {
    margin-left: -300px;
  }
}
.chat-playground-section .sidebar .sidebar-header {
  padding: 5px 10px;
  display: flex;
  gap: 5px;
  border-bottom: 2px solid #095095;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.chat-playground-section .sidebar .sidebar-header .new-chat-btn {
  flex-grow: 1;
  color: #095095 !important;
  border-color: #095095 !important;
}
.chat-playground-section .sidebar .sidebar-header .new-chat-btn i {
  color: inherit !important;
}
.chat-playground-section .sidebar .sidebar-header .new-chat-btn .btn-text {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px;
}
.chat-playground-section .sidebar .sidebar-header .new-chat-btn:hover {
  background-color: rgba(51, 51, 51, 0.05);
}
.chat-playground-section .sidebar .sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats {
  font-size: 14px;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .chat-time {
  margin-bottom: 4px;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .chat-time span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.75);
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn {
  cursor: pointer;
  border-radius: 5px;
  padding: 4px 8px;
  color: #095095;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn .chat-icon {
  color: inherit !important;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn .title-chat {
  word-break: break-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  flex: 1 1 0%;
  max-height: 1.25rem;
  position: relative;
  color: inherit !important;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn .title-chat::after {
  position: absolute;
  content: "";
  right: 0;
  width: 2rem;
  z-index: 10;
  bottom: 0;
  top: 0;
  background: linear-gradient(to left, rgb(170, 236, 248), rgba(247, 249, 250, 0.05));
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn.active, .chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn:hover {
  background-color: rgba(241, 249, 249, 0.75);
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn.active .title-chat::after, .chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn:hover .title-chat::after {
  background: linear-gradient(to left, rgb(233, 244, 245), rgba(211, 211, 211, 0.1));
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn .recent-chat-btns .btn {
  border-radius: 0;
  font-size: 14px;
  color: #fff !important;
}
.chat-playground-section .sidebar .sidebar-content .recent-chats .recent-chat-wrap .recent-chats-lists .recent-chat-btn .recent-chat-btns .btn.dropdown-toggle {
  color: #095095 !important;
}
.chat-playground-section .sidebar .sidebar-footer {
  padding: 1rem 10px 10px;
  border-top: 2px solid #095095;
  display: flex;
  justify-content: space-between;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents {
  width: 100%;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .upgrade-plan-wrapper {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .upgrade-plan-wrapper .upgrade-btn {
  width: 100%;
  text-align: start;
  border-radius: 8px;
  font-weight: 600;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .upgrade-plan-wrapper .upgrade-btn .plan-icon {
  margin-right: 5px;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .upgrade-plan-wrapper .upgrade-btn .plan-icon,
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .upgrade-plan-wrapper .upgrade-btn .btn-text {
  color: #333;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .upgrade-plan-wrapper .upgrade-btn:hover {
  background-color: rgba(51, 51, 51, 0.05);
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .user-opt {
  border-radius: 10px;
  background-color: #095095;
  border: 1px solid rgba(247, 247, 247, 0.4);
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .user-opt:hover {
  background-color: rgba(9, 80, 149, 0.85);
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .dropdown-toggle::after {
  content: initial !important;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .user-info {
  font-weight: 600;
  display: flex;
  align-items: center;
}
.chat-playground-section .sidebar .sidebar-footer .sidebar-footer-contents .user-info .user-avatar {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
.chat-playground-section .chat-playground {
  flex: 1 1 0%;
  overflow: hidden;
  flex-direction: column;
  display: flex;
  position: relative;
  padding: 20px 0px;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .chat-playground-section .chat-playground {
    padding-top: 0;
  }
}
.chat-playground-section .chat-playground .playground-header-mob {
  border-bottom: 1px solid #ccc;
  height: 60px;
  align-items: center;
  margin-bottom: 1rem;
  background-color: #272e48;
  background-color: #095095;
}
.chat-playground-section .chat-playground .playground-header-mob .header-wrapper {
  width: 100%;
  padding: 5px 2.5rem;
}
.chat-playground-section .chat-playground .playground-header-mob .header-wrapper nav ul .navbar-brand img {
  max-width: 120px;
}
.chat-playground-section .chat-playground .playground-header-mob .header-wrapper nav ul .upgrade-btn {
  background-color: #fff;
  border-radius: 100em;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.chat-playground-section .chat-playground .playground-header-mob .header-wrapper nav ul .upgrade-btn * {
  color: #333;
}
@media (max-width: 475px) {
  .chat-playground-section .chat-playground .playground-header-mob .header-wrapper nav ul .upgrade-btn {
    height: 35px;
    padding: 5px 8px;
  }
}
.chat-playground-section .chat-playground .chat-playground-wrapper {
  padding: 0 20px;
  flex: 1 1 0%;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
@media (max-width: 475px) {
  .chat-playground-section .chat-playground .chat-playground-wrapper {
    padding: 0 10px;
  }
}
.chat-playground-section .chat-playground .chat-playground-wrapper.is_welcome {
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-playground-section .chat-playground .message {
  margin-bottom: 10px;
}
.chat-playground-section .suggestion-chat-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion {
  cursor: pointer;
  height: 100%;
  box-shadow: none !important;
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .card {
  box-shadow: none;
  background: #272e48;
  border: none !important;
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .card-header {
  border: 0;
  background-color: #151822;
  display: flex;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .avatar-ai {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .avatar-ai img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .avatar-ai img {
    width: 20px;
    height: auto;
  }
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .suggestion-ai {
  text-align: left;
}
.chat-playground-section .suggestion-chat-wrapper .chat-suggestion-lists .chat-suggestion .suggestion-ai p {
  color: #fff;
  margin: 0;
  font-weight: 600;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs {
  display: none;
  margin-top: 1.5rem;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs .card {
  box-shadow: none !important;
  border: 1px solid rgba(33, 37, 41, 0.3) !important;
  cursor: default;
  border-radius: 0;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs .card:hover {
  background-color: #fff !important;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs .nav-link {
  color: #333;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid inherit;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs .nav-link img {
  width: 20px;
}
@media (max-width: 500px) {
  .chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs .nav-link {
    font-size: 13px;
    border: 0;
    padding: 6px 8px;
  }
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs .nav-link.active {
  background-color: rgba(9, 80, 149, 0.1);
  border-bottom: 2px solid #095095;
}
.chat-playground-section .suggestion-chat-wrapper .toggle-choose * {
  cursor: pointer;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestCardsMob .chat-suggestion .card .card-header {
  padding: 4px;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestCardsMob .chat-suggestion .card .card-header .avatar-ai {
  text-align: center;
}
.chat-playground-section .suggestion-chat-wrapper .chatSuggestCardsMob .chat-suggestion .card .suggestion-ai p {
  font-size: 13px;
}
@media (max-width: 567px) {
  .chat-playground-section .suggestion-chat-wrapper .chatSuggestCardsMob .chat-suggestion .card .suggestion-ai {
    display: none;
  }
}
@media (max-width: 600px) {
  .chat-playground-section .suggestion-chat-wrapper .chatSuggestCardsMob .chat-suggestion .card .toggle-choose {
    margin-right: -5px;
  }
}
.chat-playground-section .suggestion-chat-wrapper .DesktopHeader.chat-suggestion-lists .chat-suggestion {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 10px !important;
}
.chat-playground-section .suggestion-chat-wrapper .DesktopHeader.chat-suggestion-lists .chat-suggestion .card .card-header {
  background: #095095 !important;
}
.chat-playground-section .suggestion-chat-wrapper .DesktopHeader.chat-suggestion-lists .chat-suggestion .card .card-header .suggestion-ai p {
  color: #fff !important;
}
@media (max-width: 767px) {
  .chat-playground-section .suggestion-chat-wrapper .DesktopHeader {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .chat-playground-section .suggestion-chat-wrapper .chatSuggestTabs {
    display: none !important;
  }
}
.chat-playground-section .user-input {
  max-width: 1024px;
  width: 100%;
  margin: 1rem auto 0;
  background-color: rgba(9, 80, 149, 0.05);
  background-color: #f6f7fb;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding: 14px 16px 14px 8px;
}
.chat-playground-section .user-input .user-question {
  flex: 1;
  padding: 5px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  height: 40px;
  color: #333;
  background-color: #fff;
}
@media (max-width: 567px) {
  .chat-playground-section .user-input .user-question {
    font-size: 14px !important;
  }
}
.chat-playground-section .user-input .ask-btn {
  height: 40px;
  background-color: #095095;
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1;
}
.chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-img-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
.chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-img-wrapper .uploaded-img img {
  height: 50px;
  object-fit: cover;
}
@media (max-width: 567px) {
  .chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-img-wrapper .uploaded-img img {
    height: 30px;
    width: 30px;
  }
}
.chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-img-wrapper .delete-img {
  position: absolute;
  right: -15px;
  top: -10px;
  cursor: pointer;
}
.chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-doc-wrapper {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-doc-wrapper .uploaded-doc {
  background: #272e48;
  color: #fff !important;
  max-width: 220px;
}
@media (max-width: 567px) {
  .chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-doc-wrapper .uploaded-doc span {
    display: none !important;
  }
}
.chat-playground-section .user-input .uploaded-assets-wrapper .uploaded-doc-wrapper .delete-img {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
}

.ai_card .error-btn {
  display: none;
}
.ai_card.error-occur .chat-suggestion .card {
  border-color: #ff2134 !important;
}
.ai_card.error-occur .chat-suggestion .error-btn {
  display: inline-block !important;
}

.skeleton-load {
  display: none;
  padding: 10px;
  border-radius: 5px;
  gap: 5px;
  align-items: center;
}
.skeleton-load .loading-text {
  font-weight: 500;
  font-size: 14px;
  color: #333;
}
.skeleton-load .globe-animate-icon svg {
  color: #45d6b5;
}
.skeleton-load .skeleton-round {
  position: relative;
}
.skeleton-load .loading-icon {
  color: #45d6b5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.skeleton-load .square {
  height: 40px;
  border-radius: 5px;
  background: rgba(130, 130, 130, 0.2);
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(130, 130, 130, 0.2)), color-stop(18%, rgba(130, 130, 130, 0.3)), color-stop(33%, rgba(130, 130, 130, 0.2)));
  background: linear-gradient(to right, rgba(10, 79, 149, 0.5) 8%, rgba(211, 227, 231, 0.4) 18%, rgb(241, 249, 249) 33%);
  background-size: 800px 100px;
  animation: wave-squares 1.5s infinite ease-out;
}
.skeleton-load .circle {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
}

@keyframes wave-lines {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes wave-squares {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.data-loading .skeleton-load {
  display: flex !important;
}

.welcome-text {
  color: #333;
}

.chatSuggestCards .logo_img {
  visibility: hidden;
}
@media (max-width: 567px) {
  .chatSuggestCards .logo_img {
    display: none !important;
  }
}
.chatSuggestCards .user-message {
  background: #fff;
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.15);
  padding: 0.5rem 1rem;
  margin: 0.75rem 0;
  border-radius: 0.375rem;
}
.chatSuggestCards .ai_card .card {
  background: #fff !important;
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12) !important;
}
.chatSuggestCards .ai-message .ai-name {
  position: static;
  top: -16px;
  margin-top: -16px;
  padding: 16px 0;
  background: transparent;
  margin-left: -40px;
  color: #000;
}
@media (max-width: 567px) {
  .chatSuggestCards .ai-message .ai-name {
    margin-left: -10px;
  }
}

.regenerate-btn {
  position: absolute;
  bottom: -2px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.user-question {
  resize: none;
  min-height: 40px;
  max-height: 150px;
  line-height: 1.5rem;
}
.user-question::-webkit-scrollbar-track {
  -webkit-box-shadow: none !important;
}
.user-question::-webkit-scrollbar-thumb {
  background-color: #e1dcdc;
  -webkit-box-shadow: none !important;
}
.user-question::-webkit-scrollbar {
  width: 2px;
}

.fn-btn-wrapper .fn-btn {
  z-index: 1;
  color: #095095 !important;
}

.action-chat-btn {
  color: rgb(172, 172, 190);
  border: none;
}
.action-chat-btn:not(.regenerate-btn):hover, .action-chat-btn:not(.regenerate-btn):focus, .action-chat-btn:not(.regenerate-btn):active {
  color: #333 !important;
}

.message-group {
  color: #333;
}
.message-group .suggested-queries p {
  color: aliceblue;
  color: #333;
  white-space: pre-line;
  cursor: auto;
}

.upgrade-plan-main-wrapper .choose-plan-btn {
  font-weight: 600;
}
.upgrade-plan-main-wrapper .plan-icon {
  color: #095095;
}
.upgrade-plan-main-wrapper .flex-shrink-0 + span {
  color: #333;
  font-weight: 600;
}

.editProfileModal-body .img-wrapper .edit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
}
.editProfileModal-body .img-wrapper .edit-icon:hover {
  background-color: rgba(7, 39, 78, 0.5) !important;
}
.editProfileModal-body .form-control::file-selector-button {
  background-color: transparent !important;
}

#progressBar {
  width: 100%;
  height: 5px;
  background-color: #ccc;
}

#progress {
  width: 0;
  height: 100%;
  background-color: #007bff;
}

#msg {
  visibility: hidden;
  color: red;
  font-weight: bold;
  font-size: 22px;
  font-family: Verdana;
}

.audio-controls {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.audio-controls button {
  margin: 0px 5px;
}

.record-canvas {
  position: absolute;
  z-index: 0;
  left: -6px;
}

.audio-preview-canvas {
  width: 100%;
  max-width: 150px;
  min-width: 150px;
  height: 30px !important;
  background: #3a4561;
  border-radius: 5px;
  overflow: hidden;
}

.audio-preview-wrapper {
  background: #3a4561;
  border-radius: 0;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
}

.audio-preview-btn {
  color: #fff !important;
}

.fn-btn-wrapper {
  left: 6px;
  position: relative;
}
.fn-btn-wrapper .play-btn {
  left: 2px;
  position: relative;
}

.record-user-preview {
  position: absolute;
  left: 36px;
  right: 125px;
  z-index: 2;
}
.record-user-preview .audio-preview-wrapper {
  display: flex;
}
.record-user-preview .audio-preview-canvas {
  max-width: 500px;
}
@media (max-width: 390px) {
  .record-user-preview .audio-preview-canvas {
    min-width: 100px;
  }
}

.record-user-preview-chat {
  border: 1px solid #095095;
  display: inline-block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-left: 30px;
  margin-top: 10px;
}
.record-user-preview-chat .icon-wrap {
  color: #095095;
}

.ai_card .record-user-preview-chat {
  margin-left: 0;
  margin-top: 0;
}

.login-sec {
  background: linear-gradient(90deg, rgb(254, 212, 141) 0%, rgb(187, 248, 255) 94%);
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  align-items: center;
  width: 100%;
  background-size: cover;
  padding: 1rem;
  position: relative;
}
.login-sec .content {
  padding: 65px 90px 45px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.07);
}
@media (max-width: 567px) {
  .login-sec .content {
    padding: 25px 30px 35px;
  }
}
@media (max-width: 425px) {
  .login-sec .content {
    padding: 30px 15px 40px;
  }
}

.choose-ai-wrapper .link {
  color: #333;
}
.choose-ai-wrapper .link:hover {
  color: #095095;
}

.zoom-modal {
  z-index: 1050 !important;
  position: absolute; /* Stay in place */
  z-index: 1; /* 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) */
  /* The Close Button */
}
.zoom-modal .img-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@media (max-width: 700px) {
  .zoom-modal .img-modal-content {
    width: 100%;
  }
}
.zoom-modal .close-zoom {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.zoom-modal .close-zoom:hover, .zoom-modal .close-zoom:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoom {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
.content-wrapper .choose-option-card {
  overflow: hidden;
  border: 0 !important;
  min-height: 200px;
  background: transparent;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(90deg, rgb(254, 212, 141) 40%, rgb(234, 154, 253) 100%);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: top right;
  -webkit-transition: background-size 200ms linear;
  -moz-transition: background-size 200ms linear;
  -o-transition: background-size 200ms linear;
  transition: background-size 200ms linear;
}
.content-wrapper .choose-option-card .header-wrap .card-title {
  color: #095095;
  font-size: 1.5rem;
}
@media (max-width: 567px) {
  .content-wrapper .choose-option-card .header-wrap .card-title {
    font-size: 1.25rem;
  }
}
.content-wrapper .choose-option-card .header-wrap .card-arrow {
  color: #095095;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px;
  transform: rotate(-30deg);
  width: 30px;
  -webkit-transition: transform 200ms linear;
  -moz-transition: transform 200ms linear;
  -o-transition: transform 200ms linear;
  transition: transform 200ms linear;
}
.content-wrapper .choose-option-card:hover {
  background-size: 100% 100%;
}
.content-wrapper .choose-option-card:hover .card-arrow {
  transform: rotate(0);
}

@media only screen and (max-width: 991px) {
  header .navbar-toggler {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    color: #333;
  }
  header .navbar-toggler:focus {
    box-shadow: none;
    border-color: none;
  }
}
/* transition duration to control the speed of fade effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: opacity 0.7s ease-out;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 1024px) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}
@supports (-webkit-touch-callout: none) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}/*# sourceMappingURL=style.css.map */