@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap";
@import "https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap";
/* [project]/pages/styles/googlefonts.css [client] (css) */


/* [project]/pages/styles/kpiDashboard.css [client] (css) */
.kpiDashboard-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  margin: 20px 0;
  display: grid;
}

.kpiDashboard-item {
  background: var(--bg-light);
  cursor: pointer;
  border-radius: 35px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 140px;
  padding: 20px;
  display: flex;
  position: relative;
}

.kpiDashboard-item-not-selectable {
  background: var(--bg-light);
  border-radius: 4px;
  flex-direction: column;
  width: 100%;
  min-height: 140px;
  padding: 20px 40px;
  display: flex;
  position: relative;
}

.kpiDashboard-item.react-tabs__tab--selected {
  border-bottom: 2px solid var(--brand-color);
  border-radius: 6px;
}

.kpiDashboard-item.react-tabs__tab--selected .kpiDashboard-item-icon {
  background: var(--brand-color);
}

.kpiDashboard-item.react-tabs__tab--selected .kpiDashboard-item-icon svg {
  color: var(--white-color);
}

.kpiDashboard-item.react-tabs__tab--selected:focus-visible {
  outline-color: #0000 !important;
}

.kpiDashboard-item-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.kpiDashboard-item-icon {
  background: var(--brand-color-light);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.kpiDashboard-item-icon svg {
  color: var(--brand-color);
  font-size: 40px;
}

.kpiDashboard-item-header h4 {
  color: var(--heading-color);
  font-size: var(--mini-size);
  font-weight: 500;
  line-height: 23px;
}

.kpiDashboard-item-header p {
  text-align: end;
  color: #789;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
}

.kpiDashboard-item-body h2 {
  color: var(--heading-color);
  font-size: 16px;
  line-height: 30px;
}

.kpiDashboard-item-footer {
  background: #e9ecef;
  border-radius: 20px;
  width: 100%;
  height: 6px;
  position: relative;
}

.kpiDashboard-item .kpiDashboard-item-footer:before {
  content: "";
  background: #3b8ad8;
  border-radius: 20px;
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.kpiDashboard-kpiItem .kpiDashboard-item-footer:before, .kpiDashboard-chart-items, .kpiDashboard-statics-wrapper {
  width: 100%;
}

.kpiDashboard-chart-wrapper {
  grid-gap: 20px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
}

.kpiDashboard-chart-item {
  background: var(--bg-light);
  width: 100%;
  max-width: 100%;
  box-shadow: 5px 5px 0px 0px var(--border-color);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 35px;
  margin: 20px 0;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.kpiDashboard-chart-item svg {
  font-size: 12px;
}

.kpiDashboard-chart-item .kpiDashboard-item-icon svg {
  font-size: 40px !important;
}

.kpiDashboard-chart-header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.kpiDashboard-chart-header h3 {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}

.kpiDashboard-chart-header-option svg {
  font-size: 25px;
}

.kpiDashboard-chart-svg-wrapper {
  width: 100%;
  height: 250px;
  padding: 0 40px;
}

.kpiDashboard-thumb-and-content {
  grid-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.kpiDashboard-right-item-wrap {
  color: var(--brand-color);
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(8px, 2vw, 15px);
  width: 100%;
  max-width: 100%;
  padding: 0 8px 0 0;
  display: flex;
  overflow: hidden;
}

.kpiDashboard-chart-header-wrapper {
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .kpiDashboard-chart-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .kpiDashboard-details-thumb-and-content {
    width: 100%;
  }

  .kpiDashboard-right-item-wrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(8px, 2vw, 15px);
    width: 100%;
    padding: 0;
    display: flex;
  }
}

.kpiDashboard-see-all {
  position: absolute;
  bottom: 15px;
  right: 18px;
}

.kpiDashboard-see-all a {
  grid-gap: 5px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.kpiDashboard-see-all svg, .kpiDashboard-see-all span {
  color: var(--brand-color);
  font-size: var(--mini-size);
  font-weight: 500;
}

.kpiDashboard-see-all svg {
  font-size: 15px;
}

.kpiDashboard-not-found-image {
  grid-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80%;
  display: flex;
}

.kpiDashboard-not-found-image span {
  color: #949ba54d;
  font-size: 14px;
}

.kpiDashboard-error-img {
  width: 100px;
  margin-bottom: 5px;
}

.kpiDashboard-custom-date-filter-result {
  font-size: 14px;
}

.kpiDashboard-slick-slider {
  min-height: 200px;
  position: relative;
  overflow: visible;
}

.kpiDashboard-slick-slider .slick-track {
  align-items: stretch;
  display: flex;
}

.kpiDashboard-slick-slider .slick-slide {
  align-items: stretch;
  height: auto;
  display: flex;
}

.kpiDashboard-slick-slider .slick-list {
  box-shadow: 5px 5px 0px 0px var(--border-color);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 35px;
  width: 100%;
  min-height: 180px;
  padding: 15px 20px 45px;
}

.kpiDashboard-slick-slider .slick-slide > div {
  margin: 0 10px;
}

.kpiDashboard-slick-slider.slick-slider {
  pointer-events: auto;
}

.kpiDashboard-slick-slider.slick-slider .slick-track {
  pointer-events: none;
}

.kpiDashboard-slick-slider.slick-slider .slick-slide {
  pointer-events: auto;
}

.kpiDashboard-slick-slider .slick-dots {
  text-align: center;
  z-index: 10;
  width: calc(100% - 40px);
  margin: 0;
  padding: 8px 0;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.kpiDashboard-slick-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px;
  display: inline-block;
}

.kpiDashboard-slick-slider .slick-dots li button {
  cursor: pointer;
  background-color: #3b8ad84d;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  transition: all .3s;
}

.kpiDashboard-slick-slider .slick-dots li button:before {
  display: none;
}

.kpiDashboard-slick-slider .slick-dots li.slick-active button {
  background-color: var(--brand-color);
  transform: scale(1.2);
}

.kpiDashboard-slick-slider .slick-dots li button:hover {
  background-color: var(--brand-color);
  transform: scale(1.1);
}

.kpiDashboard-form-button {
  background: var(--brand-color);
  min-width: 80px;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: var(--mini-size);
  transition: var(--transition);
  grid-gap: 8px;
  border: 1px solid var(--brand-color);
  border-radius: 5px;
  flex-shrink: 1;
  justify-content: center;
  align-items: center;
  height: 42px;
  margin-left: auto;
  padding: 0 clamp(8px, 2vw, 15px);
  font-weight: 500;
  display: flex;
}

.kpiDashboard-form-button p {
  font-size: var(--mini-size);
  margin: 0;
  font-weight: 500;
  color: #fff !important;
}

@media (max-width: 768px) {
  .kpiDashboard-form-button p {
    display: none;
  }

  .kpiDashboard-form-button:after {
    content: "Export";
    color: #fff;
    font-size: var(--mini-size);
    font-weight: 500;
  }
}

.kpiDashboard-form-button svg {
  color: #fff !important;
}

.kpiDashboard-form-button.disabled {
  cursor: not-allowed;
  background: gray;
  border: 1px solid #0000;
}

.kpiDashboard-date-filter-model-wrapper {
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  background: #00000085;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  transition: all .3s ease-in;
  display: flex;
  position: fixed;
  inset: 50px 0 0;
}

.kpiDashboard-date-filter-model-wrapper.active {
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  top: 0;
}

.kpiDashboard-date-filter-model {
  background: #fff;
  border-radius: 5px;
  width: 350px;
  padding: 30px;
  position: relative;
}

.kpiDashboard-dropdown {
  z-index: 1;
  flex-shrink: 1;
  align-self: flex-start;
  min-width: 100px;
  max-width: 185px;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  overflow: visible;
}

.kpiDashboard-download-btn-wrap {
  background: var(--brand-color);
  height: 42px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 5px 20px;
  display: flex;
}

.kpiDashboard-download-btn-wrap svg, .kpiDashboard-download-btn-wrap span {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
}

.kpiDashboard-download-btn-wrap span {
  font-size: var(--mini-size);
}

.kpiDashboard-download-btn-wrap svg {
  font-size: 25px;
}

.kpiDashboard-download-btn-wrap.disabled {
  background: #b7b7b759;
}

.kpiDashboard-dwn-btn {
  text-decoration: none;
}

.kpiDashboard-display-none {
  display: none;
}

.kpiDashboard-status-badge, .kpiDashboard-unique-id {
  font-size: var(--mini-size);
  font-weight: 500;
}

.kpiDashboard-unique-id {
  color: var(--gray-color);
}

.kpiDashboard-status-badge.off-badge {
  color: var(--danger-color);
}

.kpiDashboard-status-badge.on-badge {
  color: var(--green-color);
}

.kpiDashboard-cancel-icon {
  color: #fff;
  cursor: pointer;
  z-index: 999;
  font-size: 30px;
  position: absolute;
  top: -105px;
  right: 0;
}

.kpiDashboard-chat-model-cancel-icon {
  top: -105px;
}

/* [project]/pages/styles/dashboard.css [client] (css) */
:root {
  --font-poppins: "poppins";
  --font-montserrat: "Inter", sans-serif;
  --brand-color: #00796d;
  --brand-color-bold: #007268;
  --brand-color-light: #00968817;
  --secondary-color: #35a989;
  --paragraph-color: #7e7e7e;
  --paragraph-size: 17px;
  --orange-color: #fd346e;
  --gray-color: gray;
  --gray-color-2: #f8f8f8;
  --bg-color: #f2f4f8;
  --border-color: #35a989;
  --font-bold: 500;
  --white-color: white;
  --wip-color: #f92c01;
  --wip-bg-img-color: radial-gradient(circle at top right, #fda40c 0%, #f92c01 100%);
  --secondary-bg: linear-gradient(115deg, #2a27da, #0cf);
  --purpleColor: #c211a1;
  --shadow: 0 1px 1px #0000001a;
  --hover-shadow: 0 2px 5px #0000001a;
  --header-height: 65px;
  --radius: 4px;
  --font-color: #35a989;
  --green-color: #0566ff;
  --danger-color: #c12300db;
  --transition: all .3s ease-in-out;
  --sidebar-width: 5%;
  --sidebar-width-active: 18%;
  --sidebar-body-width: 95%;
  --sidebar-body-width-active: 82%;
  --green-bg: #0566ff;
  --sidebar-icon-width: 68px;
  --blue-color: #35a989;
  --tiny-size: 12px;
  --p-size: 15px;
  --p-line-height: 27px;
  --p-line-height-mobile: 25px;
  --p-color: #000;
  --mini-size: 14px;
  --mini-color: #000000d6;
  --heading-size: 30px;
  --heading-color: #000;
  --title-size: 19px;
  --title-color: var(--black);
  --mini-title-size: 17px;
  --mini-title-color: var(--black);
  --light: "lightgray";
  --fontBold: 600;
  --poppins: "poppins";
  --orange-plate-bg: #e67e22;
  --blue-plate-bg: #2980b9;
  --red-plate-bg: #e74c3c;
  --heading-one: 30px;
  --heading-two: 25px;
  --heading-three: 20px;
  --heading-four: 18px;
  --heading-five: 17px;
  --heading-six: 15px;
}

.dark-theme {
  --bg: #151521;
  --bg-light: #1e1e2d;
  --p-color: #565674;
  --p-light-color: #d7d7d7;
  --h-color: #fff;
  --gray: gray;
  --model-bg: #000c;
  --popup-bg: #ffffffba;
  --loading-dot-bg: #3d3d53;
  --shadowColor: #1e1e2d;
}

.light-theme {
  --bg: #f8f7fa;
  --bg-light: #fff;
  --p-color: #565674;
  --p-light-color: #607d8b;
  --h-color: #565674;
  --model-bg: #ffffffba;
  --popup-bg: #000000d1;
  --loading-dot-bg: #3d3d53;
  --shadowColor: lightgray;
}

.overscroll-off {
  overscroll-behavior: contain;
}

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

body {
  color: var(--p-color);
  transition: var(--transition);
  overscroll-behavior: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  overflow-x: hidden;
  background: none !important;
  font-family: Poppins, sans-serif !important;
}

a {
  text-decoration: none;
  transition: all .3s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-montserrat);
  color: var(--heading-color);
  font-weight: var(--font-bold);
  margin-top: 0;
  line-height: 1.2;
  transition: all .3s ease-out;
}

h1 {
  font-size: 40px;
}

h2, h3 {
  font-size: var(--title-size);
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--font-poppins);
  font-size: var(--p-size);
  color: var(--paragraph-color);
  font-weight: 400;
}

.z-index {
  z-index: 3;
  position: relative;
}

.common-button {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
  background: #009688;
  align-items: center;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.common-button span {
  grid-gap: 3px;
  align-items: center;
  display: flex;
}

.common-button svg {
  color: #fff;
}

a, .btn, button, input, select, textarea, li, img, svg, .transition-3, h1, h2, h3, h4, h5, h6 {
  font-family: var(--poppins);
  transition: all .3s ease-out;
}

input, textarea, select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: var(--mini-size);
  width: 100%;
  color: var(--heading-color);
  font-family: var(--poppins);
  background: var(--bg);
  outline: none;
  padding: 10px;
}

input:focus, textarea:focus, select:focus {
  border: 1px solid var(--brand-color) !important;
}

textarea {
  resize: vertical;
  line-height: 26px;
}

li {
  list-style: none;
}

a:focus, .button:focus {
  outline: none;
  text-decoration: none;
}

.btn {
  width: max-content !important;
}

a:focus, a:hover {
  color: inherit;
  text-decoration: none;
}

svg {
  color: var(--gray-color);
  cursor: pointer;
  font-size: 22px;
}

a, button {
  color: inherit;
  font-family: var(--font-poppins);
  background: none;
  border: none;
  outline: none;
}

button {
  transition: all .3s ease-in;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  font-family: var(--font-poppins);
  outline: none;
}

input[type="color"] {
  appearance: none;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 0;
}

::-moz-selection {
  background: var(--green-color);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--green-color);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-placeholder {
  color: #bdbdbd;
  opacity: 1;
  font-size: 15px;
  font-weight: 200;
}

::placeholder {
  color: #adadad;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 600;
}

.p-20 {
  padding: 20px;
}

section.main-section {
  width: 100%;
}

.dashboard-wrapper {
  background: var(--bg-light);
  width: 100%;
}

aside.sidebar {
  background: var(--bg-light);
  width: 100%;
  height: 100%;
}

aside.sidebar ul {
  flex-direction: column;
  display: flex;
}

aside.sidebar ul li a {
  color: #000;
  grid-gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
}

.grouped-item {
  border-bottom: 1.8px solid #d3d3d32e;
  padding-top: 15px;
}

.grouped-item:last-child {
  border-bottom: unset;
}

.grouped-item p {
  white-space: nowrap;
}

.sub-heading {
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.flex-label-icon {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.flex-label-icon svg {
  width: 20px;
}

.active-link svg, .active-link span {
  color: var(--brand-color);
}

aside.sidebar ul li svg {
  font-size: 25px;
}

main {
  box-sizing: border-box;
  width: 100%;
  transition: var(--transition);
}

header {
  transition: var(--transition);
  z-index: 999;
  height: var(--header-height);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}

header.plain-header {
  padding: 0 50px;
}

header.active {
  z-index: 999;
  width: 80%;
  transition: var(--transition);
  position: fixed;
  top: 0;
  right: 0;
}

.header-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.header-option {
  grid-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.search-box {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.search-box input {
  border: 1px solid var(--bg);
  background: var(--bg);
  border-radius: 5px;
  width: 400px;
  height: 40px;
  padding-left: 40px;
}

.search-box svg {
  position: absolute;
  left: 10px;
}

.burger-menu-icon {
  cursor: pointer;
  font-size: 30px;
}

.header-profile {
  grid-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.header-profile p {
  font-size: var(--p-size);
  color: var(--p-light-color);
  font-weight: 500;
  line-height: 22px;
}

.header-profile img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.header-profile svg {
  color: var(--gray-color);
}

.body-container {
  width: 100%;
  min-height: 90vh;
}

.body-wrapper {
  width: 100%;
  transition: var(--transition);
}

.breadcrumb {
  grid-gap: 3px;
  color: var(--gray-color);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  display: flex;
}

.breadcrumb li {
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--brand-color);
}

.breadcrumbs-and-filter {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.blank {
  display: none;
}

.date-filter {
  background: var(--bg-light);
  box-shadow: var(--shadow);
  grid-gap: 5px;
  color: var(--gray-color);
  cursor: pointer;
  border-radius: 30px 0 0 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 7px 20px;
  display: flex;
}

.date-filter h6 {
  color: #789;
  font-weight: 500;
}

.date-filter svg {
  font-size: 20px;
}

.header-section {
  background: var(--bg-light);
  box-shadow: var(--shadow);
  margin-bottom: 35px;
}

.header-logo-wrap {
  grid-gap: 6px;
  text-transform: capitalize;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-logo {
  width: 35px;
  height: 35px;
  box-shadow: var(--hover-shadow);
  border-radius: 50%;
}

.header-logo-content {
  cursor: pointer;
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-logo-content svg {
  font-size: 17px;
}

.header-logo-content p, .header-logo-content svg {
  color: var(--brand-color);
}

.role-badge {
  text-align: center;
  background: #00968917;
  border-radius: 30px;
  width: max-content;
  padding: 0 5px;
  font-weight: 500;
  color: #009686 !important;
  font-size: 11px !important;
  line-height: 17px !important;
}

.featured-status-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 10px;
  display: grid;
}

.featured-status-item {
  background: var(--bg-light);
  box-shadow: var(--hover-shadow);
  cursor: pointer;
  border: 3px solid #0000;
  border-radius: 8px;
  width: 100%;
  min-height: 158px;
  padding: 30px;
  transition: all .3s ease-in-out;
}

.react-tabs {
  width: 100%;
}

.featured-status-item.react-tabs__tab--selected {
  border: 3px solid #fff;
}

.featured-status-item:hover {
  box-shadow: var(--shadow);
}

.featured-status-item:first-child {
  background: #2155cd;
}

.featured-status-item:nth-child(2) {
  background: #9c27b0;
}

.featured-status-item:nth-child(3) {
  background: #009688;
}

.featured-status-item:nth-child(4) {
  background: #683ab72c;
}

.featured-status-item:nth-child(5) {
  background: #683ab79c;
}

.featured-status-item:nth-child(6) {
  background: #673ab7 !important;
}

.featured-status-content h3, .featured-status-content h1, .featured-bottom-content svg, .featured-bottom-content span {
  color: #fff;
}

.featured-status-thumb {
  width: 80px;
  height: 80px;
  box-shadow: var(--hover-shadow);
  border-radius: 50%;
  overflow: hidden;
}

.featured-status-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.percent-of-down {
  background: var(--wip-color);
  color: #fff;
  border-radius: 30px;
  padding: 0 10px;
}

.down-icon {
  color: var(--wip-color);
}

.header-profile-dropdown {
  background: var(--bg-light);
  width: 200px;
  box-shadow: var(--hover-shadow);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  border-radius: 3px;
  padding: 13px;
  position: absolute;
  top: 20px;
  right: 0;
}

.header-profile-dropdown.active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  top: 52px;
}

.header-profile-dropdown ul li {
  width: 100%;
  color: var(--gray-color);
  border-bottom: 1px solid #d3d3d326;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 400;
}

.header-profile-dropdown ul li:last-child {
  border-bottom: unset;
}

.header-profile-dropdown ul li:hover {
  background: var(--bg-light);
  border-radius: 5px;
}

.header-profile-dropdown ul li a {
  grid-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-profile-dropdown ul li a svg {
  font-size: var(--title-size);
}

.mobile-sidebar-cross {
  color: red;
  cursor: pointer;
  z-index: 9999;
  font-size: 33px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.admin-page-wrapper {
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  display: flex;
}

.admin-header {
  background: var(--bg-light);
  background-color: #fff;
  background-color: var(--bs-sidebar-bg);
  z-index: 9;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 75px;
  max-width: 75px;
  height: 100vh;
  min-height: 570px;
  padding: 20px 0;
  display: flex;
  box-shadow: 0 2px 4px #0f223a1f;
}

.admin-header ul {
  grid-gap: 20px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.admin-header ul li img {
  width: 30px;
}

.admin-header ul li svg {
  color: var(--gray-color);
  font-size: 23px;
}

.admin-header ul li svg:hover {
  text-align: center;
  color: #7269ef;
  margin: 0 auto;
  padding: 0;
}

.admin-header svg.active {
  color: #7269ef;
}

.chat-body-wrapper {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  grid-template-columns: 3fr 6fr;
  display: grid;
  position: relative;
}

.chat-body-wrapper.active {
  z-index: 2147483647;
  background: var(--bg-light);
  width: 100%;
  position: fixed;
  inset: 0;
}

.chat-body-sidebar {
  background: var(--bg);
  height: 100%;
  padding: 20px;
  padding-bottom: unset;
  min-width: 370px;
  margin-top: 1px;
}

.chatbox-sidebar-wrap {
  overflow: hidden;
}

.chat-body-search {
  width: 100%;
  position: relative;
}

.chat-body-search input {
  border: unset;
  background: var(--bg-light);
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: 10px;
  font-family: poppins;
  font-size: 15px;
}

.featured-chats {
  grid-gap: 5px;
  justify-content: flex-start;
  display: flex;
}

.featured-chat-item {
  background: var(--bg-light);
  border-radius: 5px;
  padding: 4px 13px;
}

.featured-chat-item p {
  color: var(--gray-color);
  text-align: center;
  margin-top: 3px;
  font-size: 12px;
}

.featured-chat-thumb {
  width: 50px;
  height: 50px;
  position: relative;
}

.featured-chat-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.chatbox, .chat-message-body {
  width: 100%;
}

.chatbox-wrapper {
  width: 100%;
  position: relative;
}

.chat-title {
  color: var(--gray-color);
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 8px;
  display: flex;
}

.create-group-btn {
  background: var(--brand-color);
  border-radius: var(--radius);
  color: #fff;
  width: fit-content;
  margin-top: 7px;
  padding: 10px 20px;
  font-size: 16px;
}

.chat-title:first-child {
  margin-top: unset;
  margin-bottom: 0;
}

.chat-title:last-child {
  margin-bottom: 10px !important;
}

.chat-title h2 {
  color: var(--gray);
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  font-family: montserrat;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.chat-title-big h2 {
  font-size: var(--title-size);
  color: var(--gray);
  font-weight: 700;
}

.recent-chat {
  scrollbar-width: thin;
  grid-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 65vh;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden auto;
}

.recent-chat::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.recent-chat::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.recent-chat::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.recent-chat::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.recent-chat-wrap {
  grid-gap: 7px;
  flex-direction: column;
  display: flex;
}

.recent-chat-item {
  background: var(--bg-light);
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 3px;
  width: 100%;
  padding: 10px;
  transition: background .3s ease-in;
  box-shadow: 0 0 4px #add8e6;
}

.recent-chat-item.active {
  border: 2px solid var(--brand-color);
}

.recent-chat-item.active .recent-chatbox-content h2 {
  color: var(--blue-color) !important;
}

.recent-chat-item.active .recent-chatbox-user-chat svg, .recent-chat-item.active .recent-chatbox-user-chat span, .recent-chat-item.active .recent-chat-item-inner p, .recent-chat-item.active .channel-right svg {
  color: var(--p-light-color) !important;
}

.recent-chat-item:hover {
  background: #cedeff;
}

.recent-chat-item:hover .channel-right {
  visibility: visible;
  opacity: 1;
  background: #cedeff;
}

.recent-chat-item-inner {
  color: #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.recent-chat-item-inner p {
  color: #7a7f9a;
  font-size: 12px;
}

.recent-chat-item-content {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.recent-chatbox-content h2 {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}

.recent-chatbox-content p {
  color: #7a7f9a;
  font-size: 13px;
}

.recent-chatbox-user-chat {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.recent-chatbox-user-chat svg, .recent-chatbox-user-chat span {
  color: #7a7f9a;
  font-size: 12px;
}

.typing-wrap {
  padding: 9px 13px !important;
}

.typing-in-chat {
  font-weight: 500;
  color: #7269ef !important;
}

.search-model {
  transition: var(--transition);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 150px;
}

.search-model.active {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.search-model input {
  border: unset;
  background: var(--bg-light);
  border-radius: 8px;
  outline: none;
  width: 350px;
  padding: 10px 35px;
  font-family: poppins;
}

.search-model svg {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  display: flex;
  position: absolute;
  right: 10px;
  color: var(--gray-color) !important;
}

.chatbot-widget-header-left {
  grid-gap: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.chatbot-widget-recipient-details {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.chatbot-widget-recipient-details p {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.chatbot-widget-recipient-details h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 10px;
}

.chatbot-widget-header-right {
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.chatbot-widget-header-right-options {
  grid-gap: 3px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.chatbox-header-right-options {
  grid-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.chatbox-header-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.chatbox-header-icon img {
  filter: brightness(.5);
  cursor: pointer;
  width: 14px;
  transition: var(--transition);
}

.chatbox-header-icon svg {
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
}

.chatbot-creator {
  grid-gap: 5px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.chatbot-creator p {
  color: #fff;
  font-size: 11px;
}

.chatbot-creator img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 3px;
  width: 18px;
}

.chatbot-widget-options, .chatbot-widget-minimize {
  fill: #fff;
  cursor: pointer;
  border-radius: 50%;
  font-size: 25px;
  position: relative;
}

.chatbot-widget-options svg, .chatbot-widget-minimize svg {
  fill: #fff;
  width: 25px;
  height: 25px;
  transition: var(--transition);
  border-radius: 50%;
  padding: 3px;
}

.chatbot-widget-options svg:hover, .chatbot-widget-minimize svg:hover {
  background: #00245c29;
  border-radius: 50%;
}

.chat-conversation-wrapper {
  background: var(--bg-light);
  scrollbar-width: thin;
  flex: 0 auto;
  width: 100%;
  height: 78vh;
  padding: 0 15px;
  transition: all .3s;
  position: relative;
  overflow: hidden auto;
}

.chatbox-conversation {
  border-left: 2px solid var(--bg-light);
}

.chatbox-conversation-form {
  z-index: 999;
  background: var(--bg-light);
}

.chat-conversation-wrapper::-webkit-scrollbar {
  width: 7px;
}

.chat-conversation-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chat-conversation-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.chat-conversation-wrapper::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.message-body {
  float: left;
  width: 100%;
  margin-top: 10px;
  position: relative;
}

.message-body li {
  overflow-wrap: break-word;
  clear: both;
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 70px;
  max-width: 90%;
  margin: 0 0 5px;
  transition: margin .28s ease-in-out;
  display: flex;
  position: relative;
}

.chat-bubble-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: -webkit-fill-available;
  display: flex;
}

.chat-bubble-wrap div {
  color: #000;
  font-size: 13px;
  line-height: 20px;
}

.message-bubble-agent, .bubble-iframe-agent {
  color: #000;
  grid-gap: 5px;
  border-radius: 0 30px 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  padding: 8px 8px 12px;
  line-height: 22px;
  display: flex;
  background: #f8f7fa !important;
  margin: 10px 0 !important;
  font-size: 14px !important;
}

.message-bubble-agent a {
  color: var(--secondary-color);
  font-weight: 500;
}

.message-bubble-visitor, .chatbot-config-bubble-user {
  float: right;
  background: var(--brand-color);
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  border-radius: 30px 30px 0;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  max-width: 50%;
  margin-bottom: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 23px;
  display: flex;
  position: relative;
  margin: 10px 0 !important;
}

.agent-logo {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  padding: 2px;
  box-shadow: 0 0 4px #d3d3d3;
}

.bubble-iframe-agent .agent-logo {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 2px;
  box-shadow: 0 0 4px #d3d3d3;
  width: 50px !important;
  height: 50px !important;
}

.logo-and-text-wrap {
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
  display: flex;
}

.messageTimestamp, .bot-date-response-badge {
  color: #8894ab;
  white-space: nowrap;
  opacity: .7;
  text-align: right;
  font-weight: 400;
  transition: all .2s;
  position: relative;
  bottom: -20px;
}

.message-bubble-visitor .messageTimestamp {
  color: #fffc;
  text-align: right;
  opacity: .7;
  width: 100%;
  margin-top: 0;
  padding-right: 5px;
  font-size: 12px;
  display: block;
  bottom: auto;
  right: auto;
}

.message-bubble-agent .messageTimestamp, .bubble-iframe-agent .messageTimestamp, .bubble-iframe-agent-wrap .messageTimestamp {
  color: #8894ab;
  text-align: right;
  opacity: .7;
  width: 100%;
  margin-top: 0;
  padding-right: 5px;
  font-size: 12px;
  display: block;
  bottom: auto;
  right: auto;
}

.animate-typing .dot {
  opacity: .6;
  background-color: #7269ef;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin-right: 5px;
  animation: 1.3s linear infinite wave;
  display: inline-block;
}

.animate-typing .dot:nth-child(2) {
  animation-delay: -1.1s;
}

.animate-typing .dot:nth-child(3) {
  margin-right: 0;
  animation-delay: -.9s;
}

@keyframes wave {
  0%, 60%, to {
    transform: none;
  }

  30% {
    transform: translateY(-5px);
  }
}

.chatbot-footer {
  grid-gap: 10px;
  background-color: var(--white-color);
  z-index: 99;
  border-top: 2px solid #f7f7f7;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0 10px;
  display: flex;
  position: relative;
}

.chatbot-footer form {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 8px;
  display: flex;
}

.chatbot-footer-input-box {
  width: 100%;
  height: 40px;
  position: relative;
}

.chatbot-footer-input-box input {
  background: var(--bg-light);
  color: #000;
  border: 1px solid #80808033;
  border-radius: 7px;
  width: 100%;
  height: 40px;
  padding: 5px 5px 5px 20px;
  font-family: poppins;
  font-size: 14px;
  font-weight: 400;
}

.demo-message-agent {
  text-align: left;
}

.chatbot-footer-input-box input:focus {
  border: 1px solid var(--brand-color);
  outline: none;
}

.chatbot-send-message-button {
  border: unset;
  background: var(--brand-color);
  color: #fff;
  grid-gap: 7px;
  text-align: center;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 37px;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  position: absolute;
  top: 3px;
  bottom: 5px;
  right: 11px;
  overflow: hidden;
}

.send-msg-wrap {
  text-align: center;
  grid-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  display: flex;
}

.chatbot-send-message-button svg {
  color: #fff;
  font-size: 16px;
}

.message-day-slot {
  padding: unset !important;
  margin-top: 10px !important;
}

.message-day-slot-wrap {
  grid-gap: 5px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.message-day-slot-item {
  background: var(--bg-light);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition) !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
}

.message-day-slot-item.active {
  background: var(--secondary-color);
  color: #fff;
}

.message-day-slot-item:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

.message-auto-suggest-buttons {
  grid-gap: 5px;
  flex-flow: wrap;
  justify-content: flex-start;
  width: 370px;
  margin: 10px 0 5px;
  padding: 13px;
  display: flex;
  position: absolute;
  bottom: 60px;
  overflow-x: auto;
}

button.suggest-btn {
  grid-gap: 5px;
  border: 1px solid var(--green-color);
  font-family: var(--font-montserrat);
  background: var(--bg-light);
  color: var(--green-color);
  text-align: left;
  border-radius: 12px 12px 12px 4px;
  justify-content: flex-start;
  align-items: center;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 500;
  transition: all .3s ease-in-out;
  display: flex;
}

.suggest-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  color: #000;
  background: #80808061;
  border: 1px solid gray;
}

.clear-style-message {
  box-shadow: unset;
  padding: unset !important;
  background: unset !important;
}

button.suggest-btn:hover {
  background: var(--green-bg);
  color: #fff;
}

.app-progress-section {
  padding: 70px 0;
}

.app-progress-wrapper {
  grid-gap: 60px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.app-progress-thumb {
  width: 80%;
  height: auto;
}

.app-progress-thumb img {
  width: 100%;
  height: 100%;
}

.app-progress-content {
  width: 100%;
}

.app-progress-content .sub-title {
  color: var(--blueDarkColor);
  font-weight: 500;
}

.app-progress-content h2 {
  margin: 15px 0;
  font-family: montserrat;
  font-size: 40px;
}

.app-progress-content p {
  color: var(--paragraphColor);
  margin-bottom: 10px;
  font-size: 17px;
}

button.app-progress-button {
  background: var(--blueDarkColor);
  color: #fff;
  font-size: var(--title-size);
  transition: var(--transition) 0s;
  border-radius: 30px;
  margin-top: 20px;
  padding: 13px 23px;
  font-family: Montserrat;
  font-weight: 500;
  box-shadow: 0 1px 5px #0000004f;
}

button.app-progress-button:hover {
  transform: translateY(-3px);
}

.partner-section {
  padding: 50px 0;
}

.partner-wrapper {
  grid-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.partner-item {
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: var(--transition);
  padding: 20px;
}

.partner-item:hover, .what-we-offer-item:hover {
  border-radius: 10px;
  transform: translateY(-3px);
  box-shadow: 0 1px 20px #d3d3d375;
}

.partner-item img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.message-product-carousel {
  padding: unset !important;
}

.product-carousel-wrapper {
  grid-gap: 10px;
  justify-content: flex-start;
  width: 135%;
  margin: 10px 0;
  display: flex;
}

.chat-product-carousel-item {
  background: var(--bg-light);
  border-radius: 10px;
  height: fit-content;
  min-height: 165px;
  overflow: hidden;
  box-shadow: 0 8px 36px #00122e29;
  width: 200px !important;
  transition: var(--transition) !important;
}

.chat-product-carousel-item:hover {
  transform: translateY(-2px);
}

.chat-product-carousel-thumb {
  width: 100%;
  height: 120px;
  margin-bottom: 7px;
}

.chat-product-carousel-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100% !important;
}

.chat-product-details {
  padding: 3px 5px;
}

.chat-product-details h2 {
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
}

.chat-product-details p {
  font-size: 12px;
  line-height: 19px;
}

.chat-product-order-button {
  border: unset;
  background: var(--secondary-bg);
  color: #fff;
  width: 100%;
  margin-top: 5px;
  padding: 7px 10px;
  font-family: poppins;
}

.chatbot-footer-options {
  grid-gap: 5px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.chatbot-footer-options svg {
  color: #1189f0;
  font-size: 20px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  background: var(--bg-light);
  width: 15px;
  height: 15px;
  box-shadow: unset;
  color: var(--font-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 15px;
  display: flex;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .1;
}

.featured-thumb {
  background-color: #1189f0;
  width: 100%;
  height: 100%;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
}

.chatbot-widget {
  background: var(--bg-light);
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  overscroll-behavior: contain;
  background-color: #0000;
  border-radius: 10px;
  width: 372px;
  height: 0;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #d3d3d3;
}

.chatbot-widget.active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  height: 475px;
  overflow: unset;
  display: block;
}

.chatbot-widget.active-iframe {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: unset;
  background: var(--white-color);
  border-radius: 10px;
  display: block;
}

.chatbot-widget-header {
  background: var(--secondary-bg);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  display: flex;
}

.chatlogs-header {
  padding: 15px;
}

.chatbox-header {
  background: var(--bg-light);
  transition: var(--transition);
  border-radius: unset;
  z-index: 99;
  border: 1px solid #d3d3d354;
  border-bottom-width: 2px;
  position: sticky;
  top: 0;
}

.chatbox-header p, .chatbox-header h3 {
  color: var(--p-light-color);
  text-transform: capitalize;
}

.chatbot-widget-agent-precence, .chatbot-iframe-precence {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.chatbot-recipient-avatar {
  position: relative;
}

.online-status {
  background: var(--blue-color);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 0;
  right: 0;
}

.chatbot-recipient-avatar {
  width: 45px !important;
  height: 45px !important;
}

.chatbot-recipient-avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  background: var(--bg-light);
  box-shadow: var(--brand-shadow);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
}

.not-found-header {
  width: 100%;
}

.not-found-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 60%;
  height: 100%;
  margin: 40px auto auto;
  display: flex;
}

.not-found-content {
  grid-gap: 20px;
  flex-direction: column;
  display: flex;
}

.not-found-content h1 {
  color: var(--heading-color);
  text-shadow: 6px 6px 1px #fff;
  font-size: 250px;
  line-height: 240px;
}

.not-found-content h2 {
  font-family: var(--font-montserrat);
}

.not-found-wrapper button a {
  background: var(--brand-color);
  color: #fff;
  grid-gap: 5px;
  width: max-content;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  margin: 20px auto auto;
  padding: 12px 25px;
  font-size: 16px;
  display: flex;
}

.not-found-wrapper button:hover {
  transform: translateY(-3px);
}

.not-found-wrapper button svg {
  color: #fff;
}

.integrate-container {
  padding: 20px;
}

.integrate-header {
  background: var(--bg-light);
  border-left: 3px solid #d3d3d3;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.integrate-header h3 {
  font-size: var(--title-size);
  color: var(--gray-color);
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.integrate-wrapper {
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  display: grid;
}

.integrate-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  grid-gap: 10px;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: relative;
}

.integrate-item.bot-demo-item h2 {
  margin-bottom: 5px;
}

.integrate-item.bot-demo-item p {
  line-height: 22px;
}

.integrate-item h2 {
  font-size: 19px;
  font-family: var(--font-montserrat);
  color: var(--heading-color);
  margin-bottom: 10px;
}

.integrate-item p {
  font-size: 15px;
  line-height: 25px;
}

.integrate-icon {
  width: 60px;
  height: auto;
}

.integrate-icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.text-messenger {
  color: #446cff;
}

.text-instagram {
  color: #f52670;
}

.text-whatsapp {
  color: #2db842;
}

.text-telegram {
  color: #5c9ced;
}

.text-email {
  color: #00b2d0;
}

.text-twitter {
  color: #1d83ff;
}

.register-section {
  background: var(--bg);
  padding: 50px 0;
}

.register-container {
  z-index: 99;
  grid-gap: 30px;
  width: 100%;
  height: 100%;
  box-shadow: var(--hover-shadow);
  background: var(--white-color);
  border-radius: 10px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  margin: 0 auto !important;
}

.password-model {
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.password-model.active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

.register-wrapper form {
  background: var(--bg-light);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 100%;
  margin: auto;
  padding: 30px;
}

.form-row {
  grid-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.form-group {
  width: 100%;
  margin-bottom: 10px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  color: var(--gray-color);
  font-size: var(--tiny-size);
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.form-group-input-icon, .form-group-input-icon input {
  position: relative;
}

.form-group-input-icon svg {
  position: absolute;
  top: 10px;
  right: 15px;
}

.form-button {
  background: var(--brand-color);
  width: max-content;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: var(--mini-size);
  transition: var(--transition);
  grid-gap: 8px;
  border: 1px solid var(--brand-color);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 15px;
  font-weight: 500;
  display: flex;
}

.all-bot-action-btn {
  cursor: pointer;
  width: 100%;
  font-weight: 500;
  font-size: var(--p-size);
  background: var(--brand-color);
  color: var(--white-color);
  border: 2px solid #0000;
  border-radius: 5px;
  margin-top: 0;
  padding: 0 15px;
}

.all-bot-action-btn span {
  font-size: var(--mini-size);
}

.all-bot-action-btn.button-outline {
  border: 2px solid var(--brand-color);
}

.all-bot-action-btn.button-outline svg {
  color: var(--brand-color) !important;
}

.all-bot-action-btn svg {
  color: var(--white-color);
  font-size: 20px;
}

.--bg {
  background: var(--bg) !important;
}

.form-button.disabled {
  cursor: not-allowed;
  background: gray;
  border: 1px solid #0000;
}

.already-have-account {
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 20px;
  display: flex;
}

.already-have-account p {
  font-family: var(--font-montserrat);
  font-size: 13px;
}

.link {
  color: var(--brand-color);
  font-weight: 400;
}

.form-title {
  font-family: var(--font-montserrat);
}

.form-title svg {
  color: var(--brand-color);
}

.form-title h2 {
  color: var(--font-color);
  font-size: 22px;
  font-weight: 600;
}

.form-title h3 {
  color: var(--h-color);
  font-size: var(--title-size);
}

.form-title p {
  font-size: var(--p-size);
  font-weight: 400;
}

.form-title p strong {
  color: var(--h-color);
  font-weight: 500;
}

.form-header-wrap {
  border-bottom: 2px solid var(--bg);
  justify-content: space-between;
  margin-bottom: 10px;
  display: flex;
}

.single-logo {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.single-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(1px 1px 1px #00000018);
  border-radius: 7px;
  width: 100%;
  height: 100%;
}

.logo-text h2 {
  color: var(--wip-color);
  font-size: 20px;
  font-family: var(--font-poppins);
}

.forgot-heading {
  margin-bottom: 10px;
}

table {
  font-family: var(--font-poppins);
  border-collapse: collapse;
  width: 100%;
}

tr {
  border: 1px;
  border-bottom: 1px solid #6d6d6d12;
}

.data-table-body tr:first-child {
  text-transform: capitalize;
  font-weight: 600;
}

td, th {
  text-align: left;
  color: #000;
  word-wrap: break-word;
  max-width: 300px;
  padding: 8px;
  font-size: 14px;
}

.table-container {
  background: #fbfbfb;
  border: 1px solid #6d6d6d4f;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.table-wrapper {
  width: 100%;
  height: 75vh;
  overflow: auto;
  background: var(--bg) !important;
}

.table-wrapper::-webkit-scrollbar {
  width: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 30px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #8888882d;
  border-radius: 30px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.table-wrapper table {
  width: 100%;
  padding: 5px;
}

.data-table-body tr {
  font-weight: 500;
}

.data-table-body tr:first-child {
  font-weight: 700 !important;
}

.table-wrapper tbody tr td img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
  width: 110px;
  height: 65px;
}

tbody {
  overflow: auto;
}

.action-wrapper {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: end;
  display: flex;
}

.action-wrapper .edit-icon {
  color: var(--gray-color);
}

.action-wrapper .delete-icon {
  color: var(--danger-color);
}

.badge {
  color: var(--white-color);
  text-transform: capitalize;
  box-shadow: var(--shadow);
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 14px;
}

.marketplace-status {
  color: var(--brand-color);
  font-size: var(--mii-size);
  text-transform: capitalize;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #0096881f;
  border-radius: 40px;
  padding: 3px 18px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  right: 20px;
}

.admin-badge {
  background: var(--brand-color);
}

.editor-badge {
  background: var(--green-color);
}

.table-name {
  font-weight: normal;
}

.user-badge {
  background: var(--paragraph-color);
}

.department-badge {
  color: green;
  background: #00800021;
  font-weight: 500;
}

.table-header {
  border-radius: var(--radius);
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  display: flex;
}

.table-title-wrap {
  grid-gap: 4px;
  flex-direction: column;
}

.table-title {
  grid-gap: 10px;
  justify-content: flex-start;
  display: flex;
}

.table-header-buttons {
  align-items: center;
  gap: 10px;
  display: flex;
}

.table-title h3 {
  font-size: var(--title-size);
  color: #000;
}

.table-title p {
  color: #667085;
  font-size: var(--p-size);
}

.pagination-wrapper {
  background: var(--bg-light);
  border-radius: 3px;
  margin-top: 10px;
  padding: 10px;
}

.pagination {
  justify-content: flex-end;
  display: flex;
}

.pagination a {
  color: var(--paragraph-color);
  float: left;
  border: 1px solid #ddd;
  padding: 0 10px;
  text-decoration: none;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
}

.pagination a:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination a:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.create-user-wrapper {
  background: var(--popup-bg);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: -100px 0 0;
}

.create-user-wrapper.active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  top: 0;
}

.create-user-form {
  background: var(--bg-light);
  border-radius: var(--radius);
  width: 500px;
  height: max-content;
  box-shadow: var(--hover-shadow);
  margin: auto;
  padding: 30px;
  position: relative;
}

.table-filter-container {
  grid-gap: 20px;
  background: var(--bg-light);
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.table-filter {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.table-export {
  grid-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.export-button {
  grid-gap: 1px;
  color: #673ab7;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #673ab703;
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  padding: 3px 10px;
  font-weight: 500;
  display: flex;
}

.export-item {
  grid-gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  background: #3f51b503;
  border: 2px solid #d3d3d352;
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
  box-shadow: 0 1px 2px #d3d3d3ad;
}

.export-wrapper .export-item:hover {
  border: 2px dotted #0080006e;
}

.export-button svg {
  color: #673ab7;
  font-size: 20px;
}

.export-item span {
  color: green;
  font-size: 16px;
  font-weight: 500;
}

.import-item {
  border: 2px dotted var(--blue-color) 57;
  box-shadow: unset;
  cursor: pointer;
}

.import-item:hover {
  border: 2px solid dotted var(--blue-color) !important;
}

.import-item label {
  grid-gap: 10px;
  color: var(--blue-color);
  cursor: pointer;
  justify-content: flex-start;
  font-weight: 500;
  display: flex;
}

.import-item label svg {
  color: var(--blue-color);
}

.table-export svg {
  cursor: pointer;
}

.excel-text {
  color: green;
}

.pdf-text {
  color: var(--danger-color);
}

.word-text {
  color: #639;
}

.reset-button {
  color: #8e8e8e;
  background: var(--bg);
  cursor: pointer;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 2px;
  font-size: 28px;
  display: flex;
}

.paid-badge {
  color: #009686;
  border: 1px solid var(--green-color) 70;
  background: #00968917;
  font-weight: 500;
}

.overdue-badge {
  color: var(--danger-color);
  background: #dd33330d;
  border: 1px solid #dd333359;
  font-weight: 500;
}

.pending-badge {
  color: #ff9800;
  background: #ff980012;
  border: 1px solid #ff98007a;
  font-weight: 500;
}

.price-badge {
  color: #3f51b5;
  background: #fff;
  border-radius: 30px;
  font-weight: 600;
}

.settings-container {
  background: #fff;
}

.settings-wrapper {
  background: var(--bg-light);
}

.settings-wrapper form, .settings-left-wrapper {
  width: 100%;
}

.settings-left-wrapper button {
  text-align: end;
}

.settings-right-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg-light);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px -1px #d3d3d3;
}

.settings-right-header {
  grid-gap: 10px;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow);
  background: #79dae826;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 20px;
  display: flex;
  position: relative;
}

.settings-card-body {
  margin-top: 10px;
  padding: 10px;
}

.setting-title h2 {
  font-size: var(--title-size);
  margin-bottom: 10px;
}

.setting-title p {
  color: var(--p-color);
  font-size: 15px;
  line-height: 20px;
}

.analytics-container {
  position: relative;
}

.analytics-wrapper {
  grid-gap: 10px;
  grid-template-columns: 10fr 3fr;
  display: grid;
}

.analytics-header {
  background-color: var(--bg-light);
  grid-gap: 15px;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.analytics-header svg {
  color: gray;
}

.analytics-header-icons {
  grid-gap: 15px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.analytics-body {
  grid-gap: 20px;
  background-color: var(--bg-light);
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow);
  border-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 10px;
  padding: 10px;
  display: flex;
}

.analytics-sidebar {
  position: sticky;
  top: 0;
}

.chat-init-not-found {
  height: 85vh;
}

.analytics-guide {
  grid-gap: 10px;
  text-align: center;
  border-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 100%;
  display: flex;
}

.analytics-guide h2 {
  color: #d3d3d3;
  font-family: Montserrat;
}

.analytics-guide p {
  color: #d3d3d3;
  font-size: 16px;
}

.analytics-guide img {
  opacity: .4;
}

.analytics-guide svg {
  opacity: .4;
  font-size: 35px;
}

.analytics-sidebar-item {
  grid-gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 202px;
  display: flex;
  overflow: hidden auto;
}

.analytics-sidebar-fileds, .analytics-sidebar-labels {
  background: var(--bg-light);
  border-radius: 3px;
  padding: 10px;
}

.analytics-sidebar-labels {
  margin-top: 10px;
}

.analytics-sidebar-item::-webkit-scrollbar {
  width: 7px;
}

.analytics-sidebar-item::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 30px;
}

.analytics-sidebar-item::-webkit-scrollbar-thumb {
  background: #8888882d;
  border-radius: 30px;
}

.analytics-sidebar-item::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.field-item-wrap {
  grid-gap: 3px;
  cursor: pointer;
  background: #009688;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  height: 40px;
  padding: 4px;
  font-size: 17px;
  transition: height .3s ease-in-out;
  display: flex;
}

.field-item-wrap.active {
  height: max-content;
  overflow-y: scroll;
}

.field-item {
  grid-gap: 6px;
  cursor: pointer;
  background: #3f51b5;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  font-size: 17px;
  display: flex;
  position: relative;
}

.x-axis-item {
  background: #9c27b0;
}

.field-item span {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.field-item.active {
  background: #add8e64a;
}

.field-item.active svg, .field-item.active span {
  color: var(--brand-color);
  font-weight: 400;
}

.field-item svg {
  color: #fff !important;
}

.field-child-item {
  color: gray;
  cursor: move;
  transition: var(--transition);
  background: #8080800d;
  border-radius: 3px;
  padding: 3px 10px;
  font-size: 15px;
  font-weight: 400;
}

.field-child-item.active {
  background: #000;
}

.field-child-item:hover {
  color: #009688;
  background: #0058501c;
}

.label-item {
  justify-content: space-between;
}

.label-content {
  grid-gap: 5px;
  display: inline-flex;
}

.label-action {
  display: inline-flex;
}

.analytics-sidebar-title {
  background-color: var(--bg-light);
  border-bottom: 2px solid #d3d3d321;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.analytics-sidebar-title h3 {
  font-weight: 600;
  font-size: var(--title-size);
  color: #a9a9a9;
}

.chart-text {
  border-radius: 3px;
  padding: 4px;
  font-size: 30px;
}

.chart-text.green {
  color: var(--green-color);
}

.chart-text.purple {
  color: #f44336;
}

.chart-text.orange {
  color: #9c27b0;
}

.chart-text.blue {
  color: #3f51b5;
}

.chart-text.skyblue {
  color: #2196f3;
}

.settings-wrapper .form-group input, .settings-wrapper .form-group select, .settings-wrapper .form-group textarea {
  color: var(--gray);
  border: 1px solid var(--bg-light);
}

.export-wrapper {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.export-wrapper svg {
  font-size: 25px;
}

.error-text {
  font-size: 13px;
  line-height: 20px;
  color: var(--danger-color) !important;
}

.error-input {
  border: 1px solid var(--danger-color) !important;
}

.logout-btn {
  grid-gap: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #0000;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  display: flex;
}

.logout-btn:hover {
  border: 1px solid #f080801f;
  transform: translateY(-1px);
}

.logout-btn, .logout-btn svg {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--wip-color) !important;
  font-weight: 600 !important;
}

.logout-btn svg {
  font-size: var(--title-size);
}

.loading-wrapper {
  z-index: 999;
  background: #00000028;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.loading {
  z-index: 9999;
  background-color: #0000;
  border-left: 3px solid #4c4c4c;
  border-radius: 5rem;
  width: 30px;
  height: 30px;
  animation: 1s linear infinite spinning;
  position: relative;
  transform: rotate(0);
}

@keyframes spinning {
  0% {
    transform: rotate(-360deg);
  }
}

.loader3 {
  text-align: left;
  width: 50px;
  height: 50px;
  padding: 0;
  display: inline-block;
}

.loader3 span {
  background: #3f51b5;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  animation: 1.5s linear infinite loader3;
  display: inline-block;
  position: absolute;
}

.loader3 span:last-child {
  animation-delay: -.9s;
}

@keyframes loader3 {
  0% {
    opacity: .8;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.error-box {
  background: #f443360d;
  border-radius: 3px;
  margin-bottom: 7px;
  padding: 13px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.table-data-not-found {
  color: red;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px 0;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.email-span {
  color: #009686;
}

.edit-disabled {
  cursor: not-allowed;
  color: #c1c1c1 !important;
}

.btn-disabled {
  cursor: not-allowed !important;
  color: #fff !important;
  background: #c1c1c1 !important;
}

.delete-disabled {
  cursor: not-allowed;
  color: #e91e1e6e !important;
}

.btn-disabled button {
  cursor: not-allowed;
  background: #c1c1c1 !important;
}

.export-disabled, .export-disabled span, .export-disabled svg {
  cursor: not-allowed;
  color: #c1c1c1 !important;
}

.btn-import {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
  background: var(--blue-color);
  height: 100%;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 500;
}

.group-right-buttons {
  grid-gap: 5px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.clear-data button {
  grid-gap: 5px;
  background: #f44336;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.clear-data button svg {
  color: #fff;
  font-size: 16px;
}

.import-data-body-btn {
  transition: var(--transition);
  margin-top: 10px;
  background: var(--blue-color) !important;
  padding: 10px 15px !important;
  font-size: 15px !important;
}

.import-data-body-btn:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-2px);
}

.mini-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
  display: flex;
}

.filename-span {
  color: #607d8b;
  text-transform: capitalize;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 500;
}

.sheets {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sheet {
  color: var(--green-color);
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  background: #00968812;
  border-radius: 5px;
  width: max-content;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 0 #0000;
}

.sheet.active {
  color: var(--white-color);
  background: var(--green-color);
  box-shadow: var(--shadow);
}

.save-data-btn {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  background: var(--green-color) !important;
}

.save-data-btn svg {
  font-size: 16px;
  color: #fff !important;
}

.table-add-new button svg {
  font-size: 20px;
}

.saved-btn {
  background: #a0a0a0 !important;
}

.not-found-data {
  z-index: 9999;
  inset: 0;
}

.not-found-data svg {
  font-size: 40px;
  color: #d3d3d3 !important;
}

.not-found-data .analytics-body {
  margin-top: unset;
}

.accordion-wrapper {
  border: 2px solid #d3d3d3;
  border-right: unset;
  border-left: unset;
  border-bottom: unset;
  border-radius: 3px;
  border-radius: unset;
  padding: 10px 0;
  position: relative;
}

.accordion-item {
  height: auto;
  max-height: 9999px;
  transition: max-height .3s cubic-bezier(1, 0, 1, 0);
  overflow: hidden;
}

.accordion-item.collapsed {
  max-height: 0;
  transition: max-height .35s cubic-bezier(0, 1, 0, 1);
}

.accordion-title {
  cursor: pointer;
  color: var(--heading-color);
  transition: var(--transition);
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  padding: .5em 0;
  font-family: Poppins;
  font-weight: 700;
  display: flex;
  position: relative;
}

.accordion-title h4 {
  color: var(--accent-color);
  text-transform: capitalize;
  align-items: center;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 600;
}

.accordion-list {
  margin-top: 10px;
  margin-left: 10px;
}

.accordion-title:after {
  content: "";
  border-left: 5px solid #0000;
  border-right: 5px solid #0000;
  border-top: 5px solid var(--loading-dot-bg);
  width: 0;
  height: 0;
}

.accordion-title.open {
  width: 100%;
}

.accordion-title.open:after {
  content: "";
  border-top: 0;
  border-bottom: 5px solid;
}

.accordion-title.open .accordion-item {
  overflow: unset !important;
}

.accordion-content {
  grid-gap: 4px;
  flex-direction: column;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.analytics-table {
  background: var(--bg-light);
  border-radius: 5px;
  height: 80vh;
  margin-top: 10px;
  padding: 20px;
  overflow-y: auto;
}

.analytics-table::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.analytics-table::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.analytics-table::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.analytics-table::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.y-axis-drag-canvas {
  background: var(--bg-light);
  grid-gap: 5px;
  border: 2px dotted #8080804f;
  border-radius: 4px;
  flex-direction: column;
  min-height: 40px;
  padding: 5px;
  display: flex;
}

.board {
  background: var(--bg-light);
  border: 2px dotted gray;
  border-radius: 5px;
  min-height: 200px;
  margin-bottom: 20px;
  padding: 20px;
}

.board.active {
  border: 2px dotted green;
}

.main_content {
  grid-gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px;
  display: flex;
}

.analytics-chart-mask {
  background: var(--bg-light);
  box-shadow: var(--shadow);
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  height: 470px;
  margin-top: 10px;
  padding: 15px;
}

.analytics-chart-mask svg {
  font-size: 13px;
}

.react-tabs__tab, .react-tabs__tab:focus, .react-tabs__tab.react-tabs__tab--selected:focus {
  border: unset !important;
}

.react-tabs__tab.react-tabs__tab--selected {
  border-radius: 3px;
  border: unset !important;
}

.react-tabs__tab.react-tabs__tab--selected svg {
  background: #00968714;
}

.text-chart-analytics-tbody tr:first-child {
  font-weight: normal !important;
}

.recharts-text.yAxis-value {
  fill: #3f51b5;
  font-weight: 500;
  position: relative;
}

.new-shape {
  background: red;
  width: 20px;
  height: 20px;
}

.recharts-text.xAxis-value {
  fill: #9c27b0;
  text-transform: capitalize;
  font-weight: 300;
}

.pie-chart-analytics-wrapper {
  width: 100%;
  height: 100%;
}

.pie-chart-analytics-wrapper canvas {
  margin: auto;
  width: auto !important;
  height: 100% !important;
}

.user-profile-section {
  background: var(--bg-light);
  border-radius: var(--radius);
  margin: 15px;
  position: relative;
}

.user-profile-header-wrapper {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}

.user-profile-header-card {
  grid-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.user-profile-header-thumb {
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  position: relative;
}

.user-profile-header-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.user-update-profile {
  background: var(--bg-light);
  width: 40px;
  height: 40px;
  box-shadow: var(--hover-shadow);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.user-profile-content {
  grid-gap: 20px;
  flex-direction: column;
  display: flex;
}

.user-profile-content .settings-title {
  background: var(--bg-light);
  box-shadow: var(--shadow);
  color: var(--h-color);
  border-radius: 30px;
  padding: 3px 10px;
  font-size: 20px;
}

.settings-profie-content {
  margin-top: 10px;
}

.user-profile-content h2 {
  color: var(--h-color);
  font-size: 26px;
}

.user-profile-role-and-department {
  grid-gap: 10px;
  justify-content: flex-start;
  display: flex;
}

.user-profile-role-and-department span {
  padding: 2px 14px;
}

.user-profile-body {
  margin-top: 30px;
}

.user-profile-body .form-field-wrapper {
  max-width: 600px;
}

.user-title-name {
  color: var(--brand-color);
}

.create-user-profile {
  width: 70px;
  height: 70px;
}

.create-user-profile .create-user-profile-img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.create-user-profile-update-icon-wrapper {
  width: 30px;
  height: 30px;
  right: -8px !important;
}

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

.mode svg {
  height: 100%;
}

.no-number-badge {
  background: #ffe50033;
  border-radius: 30px;
  padding: 2px 5px;
  font-size: 13px;
}

.user-join-date p {
  background: var(--bg-light);
  width: fit-content;
  box-shadow: var(--hover-shadow);
  border-radius: 30px;
  padding: 1px 10px;
  font-size: 12px;
  font-weight: 500;
}

.user-join-date {
  margin-top: -5px;
}

.user-update-date {
  position: absolute;
  bottom: -11px;
  right: 30px;
}

.settings-thumb {
  border-radius: unset;
  width: fit-content;
  height: 100px;
  box-shadow: unset;
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 3px;
  margin: auto;
  padding: 8px;
}

.settings-thumb img {
  border-radius: unset;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 3px;
}

.settings-upload-icon {
  bottom: -11px;
  right: -11px;
}

.header-site-title {
  font-size: var(--title-size);
}

.header-sidebar-logo {
  justify-content: flex-start;
  width: 100%;
  height: 35px;
}

.header-sidebar-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .header-logo-wrap .header-sidebar-logo {
    display: none;
  }
}

.pie-chart-column-wrap {
  grid-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mini-loading-wrapper {
  background: #fffffff7;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.loading {
  border: 6px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  width: 0;
  height: 0;
  padding: 15px;
  animation: 1s linear infinite spin;
  position: absolute;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.disabled {
  cursor: not-allowed !important;
  background: #b7b7b759 !important;
}

.disabled span, .disabled svg {
  color: #fff !important;
}

.color-green, .text-green {
  color: green;
  font-weight: 300;
}

.active-user-row {
  border-left: 3px solid var(--brand-color);
  background: #0080001c !important;
}

.xui-loader {
  color: #000a1ea6;
  justify-content: center;
  align-items: center;
  display: flex;
}

.xui-loader-retain-layout {
  z-index: 999;
  background: var(--model-bg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.xui-loader--dot {
  background-color: var(--loading-dot-bg);
  box-shadow: 0 0 1px var(--loading-dot-bg);
  transform-style: preserve-3d;
  vertical-align: middle;
  border-radius: 50%;
  animation: 1.3s cubic-bezier(.455, .03, .515, .955) infinite both xui-loader-animation;
  display: inline-block;
}

.xui-loader--dot:first-child {
  animation-delay: -.32s;
}

.xui-loader--dot:nth-child(2) {
  animation-delay: -.16s;
}

.xui-loader--dot:nth-child(3) {
  animation-delay: 0s;
}

.xui-loader-medium .xui-loader--dot {
  width: 14px;
  height: 14px;
  margin-right: 3px;
}

.xui-loader-small .xui-loader--dot {
  width: 12px;
  height: 12px;
  margin-right: 2px;
}

.xui-loader-xsmall .xui-loader--dot {
  width: 10px;
  height: 10px;
  margin-right: 2px;
}

@keyframes xui-loader-animation {
  0%, 100%, 80% {
    transform: scale(.5)rotate(0);
  }

  40% {
    transform: scale(1)rotate(.02deg);
  }
}

.xero-table-wrapper {
  background: var(--bg);
  height: 70vh;
  margin-top: 10px;
  position: relative;
  overflow-x: auto;
}

.xero-table-wrapper table {
  border-radius: 3px;
  background: var(--bg-light) !important;
}

.xero-error {
  color: #f44336;
  text-align: center;
  background: #ff45001c;
  border-radius: 5px;
  width: 100%;
  padding: 20px;
  font-size: 20px;
}

.table-header-button-wrapper {
  grid-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.table-header-button-wrapper .table-header-button {
  text-align: center;
  transition: var(--transition);
}

.table-header-button-wrapper .table-header-button:nth-child(2) {
  background: #08c;
}

.table-header-button-wrapper .table-header-button:nth-child(2):hover {
  background: var(--green-color);
}

.notify-container {
  z-index: 99;
  box-shadow: var(--hover-shadow);
  grid-gap: 8px;
  background: #fff;
  border-radius: 5px;
  flex-direction: column;
  padding: 20px 25px;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 46px;
  right: -8px;
}

.choose-amount-filed input {
  text-align: center;
  width: 100px;
}

.choose-option {
  grid-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.choose-option .choose-button {
  color: #08c;
  width: 100%;
  box-shadow: unset;
  transition: var(--transition);
  background: #f2f4f81a;
  border: 2px dotted #c3c3c3;
  min-width: min-content;
  font-weight: 500;
}

.choose-option .choose-button svg {
  color: #08c !important;
}

.react-tabs__tab--selected .choose-button {
  color: #fff;
  background: #607d8b;
  border: 2px solid #0000;
}

.react-tabs__tab--selected .choose-button svg {
  color: #fff !important;
}

.choose-table-header select {
  font-size: 14px;
}

.choose-item button {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
  background: var(--brand-color);
  grid-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  min-width: 100px;
  min-height: 33px;
  padding: 8px 9px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.choose-send-button button {
  text-align: center;
  background: #009688 linear-gradient(270deg, #64b5ef00 48.44%, #00a797 75.52%, #64b5ef00 100%) no-repeat;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  animation: 5s linear infinite bg-move;
}

button.disabled {
  background: #a9a9a9;
}

.api-header-wrapper {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.api-item {
  color: #607d8b;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  cursor: pointer;
  background: #80808024;
  padding: 5px 10px;
  font-weight: 400;
}

.api-item.react-tabs__tab--selected {
  background: var(--blue-color);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--hover-shadow);
  text-align: center;
  cursor: pointer;
  padding: 5px 10px;
}

.api-item.react-tabs__tab--selected:focus {
  border: unset !important;
  outline: none !important;
}

.aged-title {
  inset: 0;
}

.analytics-filter-container {
  width: 300px;
  height: 100%;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  background: #fff;
  padding: 20px;
  position: fixed;
  top: 0;
  right: -100px;
  box-shadow: 0 0 7px #d3d3d3;
}

.analytics-filter-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
  right: 0;
}

.dropdown-value-filter {
  width: 100%;
  height: inherit;
}

.dropdown-value-filter form {
  height: 100%;
}

.value-filter-container {
  box-shadow: unset;
  border-radius: unset;
  position: unset;
  grid-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  height: 78vh;
  padding-right: 10px;
  display: flex;
  overflow-y: scroll;
}

.value-filter-container::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.value-filter-container::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.value-filter-container::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.value-filter-container::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.filter-title {
  color: var(--brand-color);
  font-size: 20px;
}

.filter-header {
  border-bottom: 2px solid #fafafa;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
}

.filter-times {
  color: var(--orange-color);
  font-size: 30px;
}

.analytics-choose-amount-filed {
  width: 100%;
}

.analytics-filter-btn {
  margin-top: 12px;
}

@keyframes bg-move {
  0% {
    background-position: -500px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.filter-sidebar-title-and-reset {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.filter-sidebar-title-and-reset svg {
  color: var(--orange-color);
  font-size: 20px;
}

.filter-sidebar-title-and-reset h5 {
  text-transform: capitalize;
  color: #009688;
  font-size: 15px;
  font-weight: 600;
  line-height: 0;
}

.item-action-btn {
  display: flex;
}

.label-wrapper {
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.label-wrapper li {
  display: inline-block;
}

.Custom-Tooltip {
  color: #fff;
  background: green;
  outline: none;
  padding: 10px;
  border: unset !important;
}

.tooltip-label {
  color: wheat;
}

.chat-send-time {
  width: max-content;
  margin-top: 16px;
  font-size: 9px;
  position: absolute;
  bottom: -4px;
  right: 17px;
}

.chat-message-wrapper {
  width: 100%;
  position: relative;
}

.channel-right {
  grid-gap: 10px;
  visibility: hidden;
  opacity: 0;
  justify-content: flex-start;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.channel-right svg {
  z-index: 999;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 16px !important;
}

.required {
  color: red !important;
  border: 1px solid red !important;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.not-shadow {
  box-shadow: unset !important;
}

.chat-cov-flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-wrap {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.integrate-btn {
  border: 1px solid var(--green-color);
  color: var(--green-color);
  box-shadow: var(--shadow);
  border-radius: 30px;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.integrate-btn:hover {
  background: var(--green-color);
  color: #fff;
  transform: translateY(-3px);
}

.integrate-status {
  color: #009688;
  background: #0096880d;
  border-radius: 30px;
  padding: 1px 11px;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 10px;
}

.not-connected {
  color: #b22222;
  background: #b2222211;
}

.notification-tbody tr {
  border-bottom: 1px solid #9e9e9e26;
  transition: all .3s ease-in-out;
  cursor: pointer !important;
}

.hover-icons {
  grid-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  transition: all .3s ease-in-out;
  display: flex;
}

.hover-icons svg {
  margin-left: 5px;
  font-size: 20px;
}

.hover-icons {
  display: none;
}

.hover-date-item {
  grid-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-right: 8px;
  display: flex;
}

.date-item input {
  font-size: 15px;
}

.notification-tbody tr:hover {
  background: #f2f4f8;
}

.notification-tbody tr:hover .hover-icons {
  text-align: end;
  margin-top: 5px;
  display: block !important;
}

.notification-tbody tr:hover .date-item {
  display: none;
}

.notification-tbody td {
  border: unset !important;
}

.notification-tbody tr:first-child {
  border-top: unset !important;
}

.notification-tbody tr:last-child {
  border-bottom: unset !important;
}

.noti-title {
  color: #2c404a;
  font-size: 15px;
  font-weight: 600;
}

.noti-title p {
  width: max-content;
}

.flex-noti-title {
  grid-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.reset-noti {
  background: unset;
  width: unset;
  height: unset;
  font-size: 22px;
}

.noti-filter input, .noti-filter select {
  background: unset;
  height: 40px;
  border: 1px solid #d3d3d363 !important;
}

.details-sidebar-container {
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  background: #0000006e;
  width: 100%;
  height: auto;
  transition: all .3s ease-in-out;
  position: absolute;
  inset: 0 -400px 0 0;
}

.details-sidebar-container.active {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.details-sidebar {
  z-index: 9999;
  background: #fff;
  width: 600px;
  height: 100%;
  padding: 40px;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100px;
  box-shadow: 0 0 4px -1px #607d8b;
}

.details-sidebar.active {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.details-sidebar-header {
  border-bottom: 2px solid #607d8b0f;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 20px;
  display: flex;
}

.left-sidebar-details {
  grid-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.left-sidebar-details h2 {
  color: var(--green-color);
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 500;
}

.left-sidebar-details h3 {
  color: #4c4c4c;
  font-size: 16px;
  font-weight: 500;
}

.right-sidebar-icons {
  grid-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.mb-unset {
  margin-bottom: unset;
}

.mb-unset select {
  font-size: 14px;
}

.action-icons {
  grid-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.action-icons svg {
  font-size: 20px;
}

.close-icon {
  grid-gap: 20px;
  background: #e91e630f;
  border-radius: 50%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.close-icon svg {
  color: red;
  padding: 4px;
  font-size: 31px;
}

.left-sidebar-details-thumb {
  width: 40px;
  height: auto;
}

.left-sidebar-details-thumb img {
  width: 100%;
  height: 100%;
}

.details-sidebar-body {
  min-height: fit-content;
  max-height: 415px;
  padding-right: 10px;
  overflow-y: auto;
}

.details-sidebar-body::-webkit-scrollbar {
  width: 7px;
}

.details-sidebar-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 30px;
}

.details-sidebar-body::-webkit-scrollbar-thumb {
  background: #88888863;
  border-radius: 30px;
}

.details-sidebar-body::-webkit-scrollbar-thumb:hover {
  background: #55555542;
}

.table-social-icon {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  width: 20px !important;
  height: 20px !important;
}

.sidebar-agent {
  grid-gap: 10px;
  justify-content: flex-start;
  margin-top: 20px;
  display: flex;
}

.agent-thumb {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.agent-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.agent-details h3 {
  text-transform: capitalize;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.agent-details p {
  color: gray;
  font-size: 13px;
}

.details-sidebar-wrap {
  margin-top: 5px;
}

.details-sidebar-wrap h2 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 500;
}

.details-sidebar-wrap p {
  text-transform: capitalize;
  font-size: 15px;
}

.sub-menu-wrapper {
  margin-left: 20px;
}

.sub-menu-wrapper ul {
  display: unset !important;
}

.sub-menu-wrapper ul li {
  border: unset !important;
  height: unset !important;
}

.dropdown-menu-item {
  height: 43px;
  overflow: hidden;
}

.bot-demo-launch-btn {
  color: var(--green-color);
  letter-spacing: .2px;
  background: #0096880f;
  border: 1px solid #00968821;
  font-weight: 500;
}

.editor-not-allow {
  box-shadow: var(--shadow);
  grid-gap: 20px;
  background: #fff;
  border-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  margin: 20px;
  display: flex;
}

.editor-not-allow h1 {
  color: var(--gray-color);
}

.editor-na-alart {
  grid-gap: 5px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.editor-na-alart span {
  color: #cd5c5c;
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
}

.editor-na-alart svg {
  color: red;
  font-size: 60px;
}

.appointment-form {
  border-radius: 10px;
  width: 90%;
  margin-top: 10px;
  padding: 10px;
  box-shadow: 0 0 4px #d3d3d399;
}

.appointment-btn {
  background: var(--green-bg);
  color: #fff;
  border-radius: 30px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 500;
}

.form-group.appo-group {
  grid-gap: 10px;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.space-between {
  align-items: center;
  margin-top: 10px;
  display: flex;
  flex-direction: unset !important;
  justify-content: space-between !important;
}

.form-group.appo-group input, .form-group.appo-group select {
  font-size: 14px;
}

.form-group.appo-group:last-child {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 7px;
  display: flex;
}

.form-group.appo-group label {
  width: 30%;
}

.form-group.appo-group input, .form-group.appo-group select {
  width: 70%;
}

.factory-btns {
  grid-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.factory-btns svg {
  background: #0096880f;
  border-radius: 30px;
  padding: 8px;
  font-size: 40px;
}

.appo-title {
  margin-bottom: 10px;
}

.appo-title h4 {
  color: #145da0;
  width: max-content;
  margin-bottom: 10px;
  font-size: 16px;
}

.appo-title p {
  font-size: 13px;
  line-height: 18px;
}

.error-notifi {
  color: #e62f22;
  font-weight: 500;
}

.curosul-wrapper {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.slider-item {
  box-shadow: var(--hover-shadow);
  border-radius: 5px;
}

.slider-item li {
  border-bottom: 1px solid #d3d3d366;
  padding: 3px 10px;
  font-size: 11px;
  line-height: 16px;
  margin-bottom: unset !important;
}

.slider-item li:last-child {
  border-bottom: unset;
}

.slider-item img {
  width: 50px;
  padding: 3px 10px;
}

.renew-btn {
  color: var(--brand-color);
  font-weight: 500;
}

.featured-list-bot-thumb {
  width: 70px;
  height: 60px;
}

.featured-list-bot-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: unset !important;
}

.chatbot-section {
  position: relative;
}

.chatbot-widget-wrapper {
  grid-gap: 15px;
  z-index: 99999;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 30px;
}

.chatbot-times-icon {
  box-shadow: var(--brand-shadow);
  cursor: pointer;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  transition: all .2s ease-in;
  display: flex;
  position: absolute;
  top: 0;
  left: -35px;
  overflow: hidden;
}

.chatbot-times-icon:hover .chatbot-times-icon svg {
  color: green;
}

.chatbot-message-body {
  padding: 5px 0 !important;
}

.factory-error-box {
  background: #f2f4f8;
  border-radius: 16px;
  padding: 10px;
}

.factory-error-box li {
  line-height: 22px;
  margin: unset !important;
}

.chatlogs-send-btn {
  height: 33px;
  width: 80px !important;
}

.emoji-wrap {
  visibility: hidden;
  opacity: 0;
  transition: all .1s ease-in-out;
}

.emoji-wrap.active {
  visibility: visible;
  opacity: 1;
  position: absolute;
  bottom: 60px;
  overflow: hidden;
}

.sub-group-wrap {
  grid-gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
  display: flex;
}

.api-sub-item {
  background: var(--bg-light);
  color: var(--blue-color);
  cursor: pointer;
  border: 1px solid #196d6342;
  border-radius: 4px;
  padding: 0 7px;
  font-size: 13px;
  transition: all .3s ease-in-out;
}

.api-sub-item-active {
  background: var(--blue-color);
  color: #fff;
  cursor: pointer;
  border: 1px solid #196d6342;
  border-radius: 4px;
  padding: 0 7px;
  font-size: 13px;
  transition: all .3s ease-in-out;
}

.api-sub-item:hover {
  background: var(--blue-color);
  color: #fff;
}

.chatbot-mini-preview-wrap {
  background: var(--secondary-bg);
  grid-gap: 35px;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-top-right-radius: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  display: flex;
}

.chatbot-mini-preview-wrap.active {
  display: none;
}

.chatbot-mini-preview-left {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bot-preview-img {
  width: 19px;
}

.send-us-message {
  color: #fff;
  font-weight: 400;
}

.chatbot-mini-preview-right h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.report-block {
  border-radius: 20px;
  margin-top: 10px;
  padding: 5px;
}

.report-block h5 {
  border-bottom: 1px solid #607d8b;
  width: fit-content;
  margin: 10px 0;
  padding-bottom: 3px;
  font-size: 15px;
  font-weight: 600;
}

.report-block h6 {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
}

.refill-item {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  width: 100px;
  height: 100px;
  margin-top: 20px;
  display: flex;
  box-shadow: 0 3px 8px #0000003d;
}

.refill-img {
  border-top: 1px solid #0393d6;
  border-bottom: 1px solid #0393d6;
  flex-direction: column;
  display: flex;
}

.refill-img img {
  margin: 0 auto;
  width: 60% !important;
}

.refill-item h6 {
  text-align: center;
  padding: 6px 0 0;
  font-size: 14px;
}

.refill-item button {
  color: #fff;
  background-color: #036694;
  border-radius: 50px;
  margin: 8px auto;
  padding: 3px 8px;
  font-size: 10px;
}

.delete-chat-icon {
  grid-gap: 5px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.delete-chat-icon span {
  font-size: 13px;
}

.refresh-icon {
  background: unset !important;
}

.refresh-icon svg {
  color: #fff;
  fill: unset !important;
}

.welcome-the-bot {
  background: green;
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.extarnal-link {
  border: 1px solid var(--green-bg);
  color: var(--green-bg);
  grid-gap: 4px;
  border-radius: 12px 12px 12px 4px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 15px;
  font-weight: 600;
  display: flex;
}

.extarnal-link:hover {
  color: var(--green-color) !important;
}

.extarnal-link svg {
  color: var(--brand-color);
  font-size: 15px;
}

.booking-date-wrapper {
  margin-top: 10px;
}

.bot-form {
  margin-bottom: unset;
}

.bot-form:last-child {
  margin-bottom: 10px;
}

.bot-form input {
  background: #fff;
  border: 1px solid #d3d3d382;
  width: auto;
  font-size: 14px;
  display: block;
}

.bot-form-btn {
  margin-top: 10px;
}

.chat-bot-colse-img, .chat-bot-colse-img img {
  width: 100%;
  height: 100%;
}

.curosol-wrap {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.curosol-item {
  cursor: pointer;
}

.curosol-item img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
  width: 90px;
  height: 70px;
}

.curosol-item p {
  font-size: 13px;
  line-height: 14px;
}

.bot-demo-wrapper {
  background: #fff url("https://images.unsplash.com/photo-1553095066-5014bc7b7f2d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8bGlnaHRpbmd8ZW58MHx8MHx8&w=1000&q=80") center / cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: var(--font-montserrat);
  text-transform: none !important;
  color: var(--brand-color) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.chatbot-swiper-container {
  margin-top: 10px;
  margin-bottom: 10px;
}

.booking-summery-wrap {
  border-top-left-radius: unset;
  grid-gap: 0px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5px;
}

.booking-summery-wrap li {
  color: #4e4e4e;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin: unset !important;
}

.booking-end-msg {
  border-top-left-radius: unset;
  margin-top: 5px;
}

.sum-item-room-type-badge {
  color: #fff;
  background: #3f51b5;
  border-radius: 15px;
  padding: 1px 11px;
  font-size: 13px;
  font-weight: 500;
}

.sum-item-badge {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.highlight-name {
  color: #009688;
  font-weight: 600;
  display: contents;
}

.payment-question-text {
  margin-top: 15px;
}

.mobile-version-kpi-wrapper {
  grid-gap: 10px;
  text-align: center;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  display: flex;
}

.mobile-version-kpi-wrapper .featured-status-item {
  width: 100%;
  min-height: unset;
  height: unset;
  border: unset;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  padding: 10px;
  display: flex;
  position: relative;
  box-shadow: 0 0 4px #000;
}

.mobile-version-kpi-wrapper .featured-status-item .featured-status-content {
  grid-gap: 5px;
  flex-direction: column-reverse;
}

.mobile-version-kpi-wrapper .featured-status-item .featured-status-content h3 {
  font-size: 13px;
}

.mobile-version-kpi-wrapper .featured-status-item .featured-status-content h1 {
  font-size: 31px;
}

.temp {
  width: 500px;
  height: 100%;
}

.featured-status-item.mobile-kpi-item {
  background: #fff !important;
  border: 2px solid green !important;
}

.mobile-kpi-content h1, .mobile-kpi-content h3 {
  color: green !important;
}

.mobile-version-kpi-wrapper .featured-status-item .featured-status-thumb {
  display: unset;
  width: unset;
  height: unset;
  box-shadow: unset;
  border-radius: unset;
}

.mobile-version-kpi-wrapper .featured-status-item .featured-status-thumb img {
  display: none;
}

.mobile-version-kpi-wrapper .featured-status-item .featured-status-thumb svg {
  color: #ffffff24;
  font-size: 30px;
  position: absolute;
  bottom: 3px;
  right: 5px;
}

.dashboard-new-design-wrapper {
  margin: 20px 0;
  margin-top: unset;
  margin-bottom: 10px;
}

.dashboard-new-design-header {
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
}

.dashboard-header-group {
  z-index: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  display: flex;
  position: relative;
}

.create-chatbot-btn {
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.dashboard-header-left {
  grid-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.dashboard-title-wrap {
  grid-gap: 15px;
  flex-direction: row;
  align-items: center;
  margin: 20px 0;
}

.dashboard-header-left svg {
  font-size: 23px;
}

.dashboard-header-left h3 {
  color: var(--heading-color);
  font-size: var(--title-size);
  font-weight: 600;
  color: #000 !important;
}

.dashboard-header-right {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 0;
  display: flex;
}

.dashboard-header-right p {
  color: var(--brand-color);
  font-size: medium;
  font-weight: 500;
}

.download-btn-wrap {
  background: var(--brand-color);
  height: 42px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 5px 20px;
  display: flex;
}

.download-btn-wrap svg, .download-btn-wrap span {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
}

.download-btn-wrap span {
  font-size: var(--mini-size);
}

.download-btn-wrap svg {
  font-size: 25px;
}

.download-btn-wrap.disabled {
  background: #b7b7b759;
}

.dwn-btn {
  color: #fff;
  font-size: 25px;
}

.display-none {
  display: none;
}

.status-badge, .unique-id {
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
}

.unique-id {
  color: #009688;
  background: #0096880d;
}

.status-badge.off-badge {
  color: #fff;
  background: #e91e63;
}

.status-badge.on-badge {
  color: #fff;
  background: #009688;
}

.reset-filter-btn {
  grid-gap: 6px;
  cursor: pointer;
  border: 1px solid #d3d3d363;
  border-radius: 3px;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
  display: flex;
}

.reset-filter-btn span {
  width: max-content;
}

.notification-sidebar-details-wrapper li span:first-child {
  margin-right: 70px;
}

.kpi-tab-header-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 0 40px;
  display: flex;
}

.kpi-tab-header-wrap li {
  color: var(--brand-color);
  border-radius: 7px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: var(--p-size);
  background: #e2f0ec;
  padding: 8px;
}

.interaction-count-badge {
  background: #5956e912;
  padding: 3px 8px;
  font-weight: 700;
  color: #929292 !important;
  font-size: 12px !important;
}

.kpi-tab-header-wrap li.react-tabs__tab.react-tabs__tab--selected {
  color: #fff;
  background: var(--brand-color);
  border-radius: 7px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  font-weight: 500;
}

.kpi-tab-header-wrap li.react-tabs__tab.react-tabs__tab--selected .interaction-count-badge {
  color: var(--blue-color) !important;
}

.noti-date-filter {
  box-shadow: unset;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 0 10px;
}

.noti-date-filter input {
  border: unset !important;
}

.sec-badge {
  margin-left: 3px;
  font-size: 16px;
}

.new-area-chart {
  margin-top: 50px;
}

.chatlog-profile-card {
  background: var(--bg-light);
  min-width: 290px;
  margin: 10px;
  position: relative;
}

.chatlog-card-thumb {
  background: var(--blue-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  height: 80px;
}

.chatlog-card-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: none;
}

.chatlog-card-wrapper {
  padding: 15px;
  padding-top: unset;
}

.chatlog-card-content {
  background: var(--bg-light);
  text-align: center;
  border-radius: 20px;
  max-width: 90%;
  margin: -15px auto auto;
  padding: 30px 10px;
  display: none;
  position: relative;
}

.chatlog-card-content.active {
  display: block;
}

.chatlog-card-content h2, .chatlog-card-content h3, .chatlog-card-content h4 {
  font-size: 17px;
  line-height: 25px;
}

.chatlog-card-content h3 {
  color: gray;
  font-size: 15px;
  font-weight: 400;
}

.chatlog-card-content h4 {
  color: #a9a9a9;
  font-size: 13px;
}

.chatlog-info-title {
  border-top: 2px solid #d3d3d324;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding-top: 10px;
  display: flex;
}

.chatlog-info-title p {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.chatlog-info-title svg {
  font-size: 15px;
}

.info-group label {
  color: #8080808a;
  font-size: 12px;
}

.info-group p {
  font-size: 15px;
  font-weight: 500;
}

.chatlog-card-media {
  grid-gap: 7px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.chatlog-card-media img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  width: 80px;
  height: 80px;
}

.chatlog-media-wrapper {
  cursor: pointer;
}

.card-avatar {
  border: 3px solid #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: -65px auto 10px;
}

.card-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.tab-dynamic-content {
  background: #fff;
  width: 100%;
  padding: 10px;
}

.w-100, .react-tabs__tab-panel {
  width: 100%;
}

.kpi-dynamic-title {
  cursor: pointer;
  color: var(--blue-color);
  border: 1px solid #0000;
  border-bottom: none;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-weight: 600;
  list-style: none;
  display: inline-block;
  position: relative;
  bottom: -1px;
  border: 1px solid #5956e924 !important;
}

.kpi-dynamic-title.react-tabs__tab--selected .interaction-count-badge {
  color: var(--blue-color) !important;
}

.specialist-suggestion {
  font-size: 14px;
}

.specialist-suggestion p {
  font-size: 14px;
  color: #000000e3 !important;
}

.noti-table {
  grid-gap: 65px;
  justify-content: flex-start;
  display: flex;
}

.analytics-tab-icon {
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.analytics-tab-icon.react-tabs__tab--selected {
  background: #add8e661;
}

.mini-bot-footer input {
  border-radius: 30px;
}

.mini-bot-footer button {
  border-radius: 30px;
  width: 62px;
  height: 33px;
}

.mini-bot-footer svg {
  color: #fff !important;
}

.ref-li {
  margin-bottom: 0 !important;
}

.bot-message-wrapper {
  height: 350px !important;
}

.bot-final-msg-body {
  height: 285px !important;
}

.bot-demo-message-wrapper {
  height: 322px !important;
}

.lang-child-wrap {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  padding: 30px;
}

.sales-bot-wrapper {
  background-image: url("https://static.vecteezy.com/system/resources/previews/004/243/021/original/abstract-template-background-white-and-bright-blue-squares-overlapping-with-halftone-and-texture-free-vector.jpg");
}

.init-bulk-message {
  box-sizing: border-box;
  border-radius: 3px;
  width: 100%;
  height: 70vh;
  transition: all .3s ease-in-out;
}

.init-bulk-wrap {
  grid-gap: 15px;
  width: 100%;
  height: 100%;
  font-family: var(--font-poppins);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.init-bulk-wrap h2 {
  color: gray;
  font-size: 20px;
  font-weight: 600;
}

.init-bulk-wrap p {
  color: #808080b3;
  font-size: 16px;
}

.init-button {
  background: var(--brand-color);
  color: var(--white-color);
  box-shadow: var(--shadow);
  font-family: var(--font-poppins);
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
}

.init-button svg {
  color: #fff;
}

.bulk-msg-create-user-form {
  width: 520px;
}

.number-import-item svg, .number-import-item span {
  color: gray;
}

.bulk-message-container {
  background: #fff;
  margin: 10px;
  padding: 20px;
}

.bulk-message-wrapper {
  grid-gap: 30px;
  grid-template-columns: 4fr 9fr;
  display: grid;
}

.full-width {
  width: 100%;
  position: relative;
}

.bulk-message-wrapper.full-width {
  grid-template-columns: 1fr;
}

.bulk-table-wrap, .bulk-field-wrap {
  width: 100%;
}

.bulk-selected-box {
  grid-gap: 7px;
  border: 2px solid #d3d3d34a;
  border-radius: 3px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 20px;
  padding: 10px;
  display: flex;
  overflow-y: auto;
}

.bulk-selected-box::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.bulk-selected-box::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.bulk-selected-box::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 5px;
  overflow-y: hidden;
}

.bulk-selected-box::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.bulk-selected-box li {
  grid-gap: 2px;
  color: var(--brand-color);
  background: #5d86f617;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.bulk-selected-box li svg {
  cursor: pointer;
  font-size: 19px;
}

.bulk-message-header {
  border-bottom: 2px solid #d3d3d31f;
  justify-content: space-between;
  align-items: center;
  margin-top: -10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
}

.bulk-message-header h3 {
  font-size: var(--title-size);
  color: var(--gray-color);
  font-weight: 600;
}

.c-btn {
  background: var(--blue-color);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--hover-shadow);
  text-align: center;
  cursor: pointer;
  width: max-content;
  min-width: 120px;
  min-height: 40px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

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

.bulk-media-thumb {
  border: 2px dotted #d3d3d3;
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
}

.bulk-media-thumb img {
  border-radius: unset;
  width: 100%;
  height: 100%;
}

.bulk-update-profile {
  position: unset;
  width: 100%;
  height: auto;
  box-shadow: unset;
}

.bulk-profile {
  position: unset;
  border-radius: unset;
  width: 100%;
  box-shadow: unset;
  grid-gap: 8px;
  margin: 0 auto;
}

.bulk-group input, .bulk-group textarea {
  background: #fff;
  border: 1px solid #d8d8d8;
}

.bulk-group input:focus, .bulk-group textarea:focus {
  border: 1px solid var(--brand-color) !important;
}

.bulk-group textarea {
  height: 100px;
}

.bulk-group input::-moz-placeholder {
  font-size: 14px;
}

.bulk-group textarea::-moz-placeholder {
  font-size: 14px;
}

.bulk-group input::placeholder, .bulk-group textarea::placeholder {
  font-size: 14px;
}

.bulk-table td, .bulk-table th {
  border: unset;
  padding: 5px;
}

.table-wrap-bulk {
  height: 75vh;
  overflow-y: auto;
}

.table-wrap-bulk::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.table-wrap-bulk::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.table-wrap-bulk::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.table-wrap-bulk::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.list-of-bulk-title {
  grid-gap: 15px;
  border-bottom: 2px solid #fafafa;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.list-of-bulk-title p {
  color: unset;
  font-size: 14px;
}

.list-of-bulk-title svg {
  color: #a4a4a4;
}

.list-of-bulk-title .bulk-clear-icon {
  z-index: 9999;
  background: #fff;
  font-size: 25px;
  position: absolute;
  top: 5px;
  right: 6px;
}

.bulk-search-input-wrap {
  position: relative;
}

.not-yet-selected {
  color: var(--brand-color);
  text-align: center;
  background: #e9565612;
  border-radius: 4px;
  margin-bottom: 5px;
  padding: 10px;
}

.not-yet-selected p {
  font-size: 13px;
  font-weight: 500;
}

.form-check-input {
  width: 17px;
  height: 17px;
}

.bulk-media-preview {
  width: 100%;
  height: 300px;
  position: relative;
}

.bulk-media-preview img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.media-icon {
  background: #ffffffb4;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
}

.media-remove-icon {
  color: #b22222;
  font-size: 28px;
}

.loading-wrap {
  background: #80808033;
  border-radius: 4px;
}

.bulk-import-title {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bulk-import-title span {
  color: var(--blue-color);
  font-size: 17px;
  font-weight: 500;
}

.bulk-import-title svg {
  color: var(--blue-color);
}

.init-bulk-btn-wrapper {
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.bulk-not-found-icon {
  color: var(--blue-color);
  font-size: 26px;
}

.init-exl-wrap {
  background: #3b8ad81a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.exp-btn {
  background: var(--blue-color);
}

.sample-btn {
  border: unset;
  background: #808080b3;
}

.number-btn {
  background: var(--blue-color);
  color: #fff;
  border-radius: 3px;
  padding: 6px 14px;
  position: absolute;
  top: 7px;
  right: 7px;
}

.add-number-wrap {
  position: relative;
}

.search-number-input {
  height: 35px;
}

.c-btn:disabled {
  color: #fff;
  cursor: not-allowed;
  background-color: gray;
}

.c-btn-remove {
  color: #b22222d0;
  background: #fff;
  border: 1px solid #b2222236;
}

.faq-recipient-avatar {
  width: 45px;
  height: 45px;
}

.faq-recipient-avatar img {
  -o-object-fit: contain;
  object-fit: contain;
  background: unset;
  width: 100%;
  height: 100%;
  box-shadow: var(--brand-shadow);
  border: unset;
  border-radius: 11px;
}

.article-body {
  width: 100%;
}

.article-body p {
  font-size: 12px;
  line-height: 17px;
  color: #000 !important;
}

.article-body img {
  width: 100%;
}

.article-body ul li {
  margin: unset;
  display: unset;
}

.faq-bubble-agent {
  font-family: var(--font-montserrat);
  font-size: 14px;
}

.faq-bubble-visitor {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 10px 12px;
  font-size: 13px;
  margin: 10px 0 !important;
  margin-top: unset !important;
}

.faq-bubble-wrap p {
  color: #000;
  font-size: 13px;
  line-height: 20px;
}

.faq-bubble-wrap h2 {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.faq-bubble-wrap ul {
  margin: 10px 15px;
}

.faq-bubble-wrap ul li {
  margin: unset;
  color: #000;
  line-height: 21px;
  display: block;
}

.faq-bubble-wrap br {
  margin-bottom: 2px;
  font-size: 2px;
  line-height: 2px;
  display: block;
}

.faq-message-body ul li {
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 20px;
}

.message-bubble-filled {
  background: var(--bg) !important;
  color: var(--paragraph-color) !important;
  border: 1px solid var(--bg) !important;
  border-top-left-radius: 0 !important;
}

.faq-select-wrap input {
  color: #000 !important;
}

.language-select-box {
  background: unset;
  color: #fff;
  padding: 6px 4px;
  font-size: 12px;
  border: 1px solid #ffffff75 !important;
}

.language-select-box option {
  color: #fff;
  background: #5c7287;
  border-bottom: 1px solid #fff;
}

.faq-swiper-container {
  margin-bottom: unset !important;
}

.date-bubble-item {
  margin-bottom: 22px !important;
}

.header-nav {
  margin-right: 30px;
}

.header-nav ul {
  grid-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-nav ul a li {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-nav ul a li span {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 400;
}

.header-nav ul a li svg {
  font-size: var(--title-size);
  color: var(--gray-color);
}

.plain-header-logo {
  width: 100%;
  height: 35px;
}

.plain-header-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.middle-container {
  background: var(--bg);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.bot-select-wrap {
  grid-gap: 10px;
  background: #fff;
  border: 2px solid #d3d3d3e0;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  margin: 15px 20px;
  padding: 10px;
  display: flex;
  box-shadow: 1px 2px 4px #d3d3d382;
}

.bot-avatar {
  width: 45px;
  height: 45px;
  overflow: hidden;
}

.bot-avatar img {
  border: 3px solid #f7f7f7;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 3px #d3d3d3;
}

.bot-select {
  width: 100%;
}

.bot-select select {
  padding: unset;
  border: unset;
  background: unset;
  margin-top: unset;
  margin-left: -5px;
  font-size: 16px;
  font-weight: 600;
}

.bot-select p {
  color: #80808085;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}

.alart-error {
  grid-gap: 20px;
  background: #fff;
  border: 1px solid #c123004a;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  padding: 20px 30px;
  display: flex;
}

.alart-icon svg {
  color: var(--danger-color);
  font-size: 30px;
}

.alart-content {
  max-width: 80%;
}

.alart-content h2 {
  color: var(--danger-color);
  font-size: 20px;
}

.alart-content p {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
}

.alert-content {
  color: #000;
  background-color: #ffe106;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  padding: 20px;
  display: flex;
}

.alert-content p {
  color: #000;
}

.alert-content a {
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-color: #fd0101;
}

.embadded-form {
  position: relative;
}

.embadded-form input {
  border: 1px solid var(--border-color);
  font-size: var(--paragraph-size);
  background: #fff;
  margin-top: 10px;
  padding: 15px;
  box-shadow: 0 1px #d3d3d357;
}

.embadded-btn {
  grid-gap: 4px;
  background: var(--brand-color);
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 9px 13px;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 19px;
  right: 10px;
}

.embadded-btn:hover {
  background: var(--secondary-color);
}

.embadded-btn svg, .embadded-btn span {
  color: #fff;
  font-weight: 600;
}

.embadded-code {
  margin-top: 20px;
}

.embadded-title {
  margin-top: 30px;
}

.embadded-title p {
  font-size: 14px;
}

.create-chatbot-container {
  background: #fbfbfb;
  width: 100%;
  min-height: 560px;
  max-height: 585px;
  padding: 40px;
  position: relative;
}

.chatbot-steps-wrapper {
  margin-bottom: 20px;
}

.create-chatbot-file-body {
  min-height: 400px;
  max-height: 475px;
  padding-right: 58px;
}

.create-bot-scroll {
  overflow-y: scroll;
}

.create-chatbot-file-body::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.create-chatbot-file-body::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.create-chatbot-file-body::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.create-chatbot-file-body::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.create-chatbot-container:after {
  content: "";
  background: #d9d9d9;
  height: 100%;
  position: absolute;
  top: 0;
  right: 445px;
}

.create-chatbot-file-wrapper {
  grid-gap: 110px;
  grid-template-columns: 6fr 3fr;
  width: 100%;
  display: grid;
}

.create-title {
  text-align: left;
  margin-bottom: 5px;
}

.create-title p {
  font-size: var(--p-size);
}

.create-title h2 {
  font-size: var(--title-size);
  font-weight: 600;
}

.create-chatbot-steps {
  background: #35a9891f;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.create-chatbot-step-item {
  cursor: pointer;
  color: #000;
  font-size: var(--mini-size);
  justify-content: center;
  align-items: center;
  min-width: 130px;
  height: 42px;
  padding: 0 15px;
  font-weight: 500;
  display: flex;
}

.create-chatbot-step-item.react-tabs__tab--selected {
  color: #fff;
  background: #009688;
  border-radius: 5px;
  font-weight: 600;
  box-shadow: 0 2px 2px -1px #8d8d8d5e;
}

.create-chatbot-step-item.react-tabs__tab--selected:hover {
  color: #fff;
  background: #009687dc;
}

.chatbot-upload-image-wrap {
  cursor: pointer;
}

.chatbot-upload-content-wrap {
  grid-gap: 7px;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 2px dotted #d3d3d3;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 35px;
  display: flex;
}

.chatbot-upload-content-wrap h3 {
  font-size: var(--title-size);
  color: #696969;
  font-weight: 600;
}

.chatbot-upload-content-wrap p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.chatbot-upload-content-wrap svg {
  font-size: 30px;
}

.avatar-template-wrap {
  grid-gap: 5px;
  background: #fff;
  border: 2px solid #d3d3d3;
  border-radius: 5px;
  grid-template-columns: repeat(5, 1fr);
  max-height: 200px;
  padding: 5px;
  display: grid;
  overflow-y: scroll;
}

.chatbot-action-wrap {
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.chatbot-action-item {
  grid-gap: 2px;
  background: #8080800d;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 7px 20px;
  display: flex;
}

.chatbot-action-item svg {
  color: var(--brand-color);
}

.chatbot-action-item.active {
  background: var(--brand-color);
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--mini-size);
  padding: 10px 12px;
  box-shadow: 0 2px 2px -1px #8d8d8d5e;
}

.prompt-second-title {
  margin-top: 20px;
}

.chatbot-action-item.active:hover {
  background: var(--brand-color-bold);
}

.create-chatbot-input-wrap {
  text-align: left;
}

.title-label {
  font-weight: 500;
  color: gray !important;
  font-size: 14px !important;
}

.or {
  background: #d3d3d34d;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2px;
  margin: 20px 0;
  display: flex;
}

.or span {
  color: gray;
  background: #fff;
  padding: 0 10px;
  font-weight: 600;
}

.uploaded-file-wrap {
  grid-gap: 10px;
  flex-direction: column;
  height: 200px;
  margin-bottom: 20px;
  padding-right: 5px;
  display: flex;
  overflow-y: scroll;
}

.added-link-item {
  min-height: 410px;
}

.scrollbar-hide {
  overflow: unset;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 7px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #88888849;
  border-radius: 20px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.uploaded-file-item {
  grid-gap: 15px;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
}

.uploaded-file-action {
  justify-content: flex-end;
  display: flex;
}

.uploaded-file-item.selected-item {
  border: 1px dotted var(--brand-color);
}

.selected-item .uploaded-file-icon-and-name span, .selected-item .uploaded-file-icon-and-name svg {
  color: var(--brand-color);
}

.selected-icon {
  color: #7a7f9a;
  height: 100%;
  font-size: 22px;
  color: var(--brand-color) !important;
}

.chatlog-search-icon {
  position: absolute;
  top: 0;
  left: 10px;
}

.uploaded-file-icon-and-name {
  grid-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 5px;
  display: flex;
}

.uploaded-file-icon-and-name span, .uploaded-file-icon-and-name svg {
  color: #a5a5a5;
  word-break: break-all;
}

.uploaded-file-icon-and-name span {
  width: 100%;
  line-height: 24px;
}

.uploaded-file-action svg {
  color: #a5a5a5;
}

.uploaded-label {
  text-align: left;
  color: gray;
  margin-bottom: 2px;
  font-size: 13px;
}

.sub-ancor {
  padding: 3px 20px !important;
}

.sub-lable {
  font-size: 11px;
}

.chatbot-config-bot {
  justify-content: center;
  align-items: center;
  display: flex;
}

.config-bot-widget {
  z-index: 9 !important;
}

.list-of-the-bot-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.list-of-the-bot-wrap {
  grid-gap: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.list-of-the-bot-item {
  grid-gap: 7px;
  background: var(--bg-light);
  box-shadow: 5px 5px 0px 0px var(--border-color);
  border: 1px solid var(--border-color);
  border-radius: 35px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  padding: 30px;
  display: flex;
}

.list-bot-profile {
  grid-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.list-bot-profile .all-bot-list {
  width: auto;
  min-width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.list-bot-logo {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 0;
  display: flex;
}

.list-bot-logo.no-bot {
  background: var(--brand-color) !important;
}

.list-bot-logo svg {
  color: var(--bg-light);
  font-size: 30px;
}

.list-bot-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.list-bot-content h3 {
  font-size: clamp(14px, 2.5vw, var(--title-size));
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.list-bot-option-wrap {
  grid-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.list-span-flex {
  grid-gap: 7px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.list-span-flex span {
  font-weight: 500;
  font-size: var(--p-size);
}

.underline {
  background: #e9e9e959;
  width: 100%;
  height: 3px;
  margin: 10px 0;
}

.billing-cards {
  grid-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin: 40px 0;
  display: flex;
}

.billing-card {
  grid-gap: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 7px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  display: flex;
}

.billing-card svg {
  color: var(--brand-color);
  font-size: 30px;
}

.billing-btn-wrap {
  margin: 20px 0;
}

.outline-button {
  background: var(--bg-light);
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.outline-button svg, .outline-button span {
  color: var(--brand-color);
}

.new-header-logo-wrap {
  grid-gap: 6px;
  text-transform: capitalize;
  border-left: 2px solid #d3d3d32b;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.color-title {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
}

.color-title span {
  color: #000;
  font-weight: 500;
}

.chrome-picker {
  margin-top: 10px !important;
}

.bot-config-header, .chatbot-config-footer-btn, .chatbot-config-bubble-user {
  background: var(--brand-color);
}

.chatbot-config-emoji svg {
  color: var(--brand-color);
}

.botchat-demo-wrapper {
  grid-gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px 0 70px;
  display: flex;
  position: unset !important;
}

.bot-demo-widget {
  position: unset !important;
}

.suggest-links {
  margin-top: 20px;
}

.loading-wrap {
  width: 70px;
  height: 22px;
}

.selected-color {
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.brand-color-selected {
  grid-gap: 20px;
  color: #000;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.setting-panel {
  grid-gap: 20px;
  grid-template-columns: 1fr 3fr;
  display: grid;
}

.setting-menu-wrap {
  grid-gap: 15px;
  border-bottom: 2px solid #d3d3d340;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.setting-menu-item {
  color: #939393;
  font-size: var(--title-size);
  background: unset;
  cursor: pointer;
  padding: 10px 20px;
  font-weight: 500;
}

.setting-menu-item.react-tabs__tab--selected {
  color: var(--brand-color);
  border-bottom: 2px solid var(--brand-color);
}

.prompt-body-wrapper {
  grid-gap: 40px;
}

.prompt-wrapper {
  width: 350px;
  max-width: 350px;
  height: 370px;
  margin-top: 20px;
  padding-right: 10px;
}

.prompt-action-wrap {
  justify-content: flex-start;
  margin-top: 15px;
}

.created-prompt-item {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.created-prompt-delete-icon {
  color: var(--danger-color) !important;
}

.chat-not-found {
  grid-gap: 10px;
  background: #f7bda733;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px;
  display: flex;
}

.bot-delete-icon svg {
  color: #9e9e9e;
  font-size: 25px;
}

.list-of-the-bot-item:hover .bot-delete-icon svg {
  visibility: visible;
  opacity: 1;
}

.list-of-the-bot-item.active {
  border-left: 3px solid var(--brand-color);
}

.currently-selected-badge {
  color: var(--brand-color);
  font-size: 13px;
}

.bot-launch-wrap {
  grid-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 400px;
  display: flex;
}

.bot-launch-wrap h3 {
  color: #667085;
  font-size: 20px;
}

.bot-launch-btn {
  background: var(--brand-color);
  grid-gap: 10px;
  color: #fff;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 10px 20px;
  font-size: 19px;
  font-weight: 500;
  display: flex;
}

.bot-launch-btn svg {
  color: #fff;
  font-size: 30px;
}

.text-and-date-wrap {
  position: relative;
}

.date-badge {
  font-size: 10px;
  position: absolute;
  bottom: -70px;
  right: 0;
}

.text-and-date-wrap .date-badge-bot {
  bottom: -20px;
  left: 0;
}

.chat-list-sub-content {
  grid-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  display: flex;
}

.dot {
  background: #cccccc7c;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.chat-filter-wrapper {
  grid-gap: 6px;
  background: #fff;
  border: 2px solid #0000;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.chat-filter-icon-and-text-wrap {
  grid-gap: 6px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.PhoneInput {
  grid-gap: 0px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.PhoneInputCountrySelect {
  width: 170px;
}

.PhoneInputCountryIconImg {
  width: 40px;
}

.PhoneInputCountry {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.change-email-phone {
  margin: 10px 0;
}

.change-email-phone p {
  color: var(--brand-color);
  cursor: pointer;
  border-bottom: 1px solid #00968840;
  width: max-content;
  margin-bottom: 10px;
  font-size: 14px;
}

.email-change-modal-container {
  z-index: 999;
  background: #0006;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
}

.email-change-modal {
  grid-gap: 15px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 0;
  min-width: 0;
  padding: 30px;
  transition: min-width .3s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #d3d3d3;
}

.email-change-modal.active {
  visibility: visible;
  opacity: 1;
  min-width: 480px;
}

.model-title h2 {
  color: #6a6a6a;
  font-size: 20px;
  font-weight: 600;
}

.email-change-inputs {
  grid-gap: 25px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.email-change-inputs input {
  background: #fff;
  border: 1px solid #d3d3d3b6 !important;
}

.email-change-inputs input:focus {
  border: 1px solid var(--brand-color);
}

.change-button-wrap {
  grid-gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.default-button {
  background: var(--brand-color);
  color: var(--white-color);
  font-size: var(--mini-size);
  border-radius: 5px;
  padding: 10px 16px;
  font-weight: 500;
  transition: all .2s ease-in;
}

.default-button:hover {
  background: var(--brand-color-bold);
}

.button-danger {
  color: var(--danger-color);
  background: var(--gray-color-2);
}

.dropdown-wrapper {
  grid-gap: 8px;
  cursor: pointer;
  border-radius: 5px;
  justify-content: flex-end;
  align-items: center;
  width: -moz-fit-content;
  display: flex;
  top: 50px;
  right: 0;
}

.dropdown-wrapper p {
  width: max-content;
}

.dropdown-wrapper ul {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.dropdown-wrapper li {
  grid-gap: 10px;
  border-bottom: 1px solid #d3d3d359;
  justify-content: flex-start;
  padding: 10px 20px;
  display: flex;
}

.relative {
  position: relative;
}

.verify-btn {
  margin-top: 10px;
}

.verify-svg {
  color: var(--brand-color);
  font-size: 15px;
}

.verify-fail-svg, .verify-fail-heading {
  color: var(--danger-color) !important;
}

.verify-fail-btn {
  background: var(--danger-color);
}

.verify-fail-wrap {
  border: 1px solid var(--danger-color);
}

.prompt-bot-select-container {
  background: var(--bg-light);
  width: 100%;
}

.select-bot-wrap {
  border-radius: 5px;
  width: 300px;
  height: 125px;
  padding: 20px 20px 10px 50px;
}

.landing-page-canvas {
  background: var(--bg);
}

.landing-container {
  max-width: 80%;
  margin: 30px auto;
}

.landing-header-wrapper {
  z-index: 999;
  background: #fff;
  width: 100%;
  padding: 10px 50px;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 7px 2px #d3d3d352;
  max-width: 100% !important;
}

.desktop-header-menu-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 10ms ease-in-out;
  display: flex;
}

.landing-page-menu {
  grid-gap: 25px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.landing-page-menu li {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.footer-menu-wrap {
  grid-gap: 35px;
}

.footer-menu-wrap li:before {
  content: "";
  background: #e1e1e1;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  right: -24px;
}

.footer-menu-wrap li:last-child:before {
  content: unset;
  position: unset;
  width: unset;
  height: unset;
}

.landing-page-menu li img {
  width: 65px;
  height: auto;
}

.landing-page-menu a:hover {
  color: var(--brand-color);
}

.landing-hero-wrap {
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-top: 30px;
  display: grid;
}

.landing-hero-content h2 {
  font-size: var(--heading-three);
}

.landing-hero-content h1 {
  margin-bottom: 6px;
  font-size: 38px;
  font-weight: 800;
}

.landing-hero-action {
  grid-gap: 10px;
  text-align: center;
  flex-direction: column;
  width: fit-content;
  margin-top: 20px;
  display: flex;
}

.landing-hero-action-btn {
  background: var(--brand-color);
  color: #fff;
  font-size: var(--p-size);
  border: 0 solid #0000;
  border-radius: 5px;
  width: max-content;
  padding: 10px 20px;
  font-weight: 500;
}

.landing-hero-action-btn:hover {
  background: #061410;
}

.landing-hero-action span {
  color: #000;
  font-size: 14px;
}

.landing-hero-thumb {
  width: 100%;
  height: -webkit-fill-available;
}

.landing-hero-thumb img {
  width: 100%;
  height: 100%;
}

.brand-color {
  color: var(--brand-color);
}

.landing-title {
  text-align: center;
  grid-gap: 10px;
  flex-direction: column;
  justify-content: center;
  margin: 40px 0;
  display: flex;
}

.landing-title h2, .landing-title h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 43.5px;
}

.landing-title p {
  max-width: 60%;
  margin: auto;
}

.landing-step-ss {
  grid-gap: 10px;
  background: var(--bg);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.landing-ss-item {
  background: var(--white-color);
  grid-gap: 10px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 5px #d3d3d3;
}

.landing-ss-item p {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.ss-thumb {
  width: 100%;
  height: 100%;
}

.landing-ss-item img {
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.step-button {
  background: var(--brand-color);
  color: var(--white-color);
  font-size: var(--title-size);
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 500;
}

.link-badge, .design-badge, .publish-badge {
  font-weight: 500;
}

.link-badge {
  color: #ff0303;
  border-bottom: 1px solid #ff0303;
}

.design-badge {
  color: #c5b30a;
  border-bottom: 1px solid #c5b30a;
}

.publish-badge {
  color: #14af2d;
  border-bottom: 1px solid #14af2d;
}

.video-demo-wrapper {
  max-width: 60%;
  margin: auto;
}

.video-demo-wrapper h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 43.5px;
}

.video-demo-wrapper iframe {
  border-radius: 5px;
  margin-top: 20px;
}

.call-to-action-wrapper {
  background: var(--bg-light);
  border-radius: 20px;
  max-width: 75%;
  margin: auto;
  padding: 50px;
  box-shadow: 0 0 5px #d3d3d3;
}

.call-to-action-wrapper .landing-hero-content {
  text-align: center;
  flex-direction: column;
  display: flex;
}

.call-to-action-wrapper .landing-hero-action {
  margin: 20px auto;
}

.call-to-action-wrapper .landing-hero-action button {
  padding: 11px 22px;
  font-size: 16px;
  font-weight: 600;
}

.contact-us-content {
  margin: 50px 0 !important;
}

.landing-title-center .landing-hero-content {
  text-align: center;
  margin-bottom: 20px;
}

.landing-accordion-wrapper {
  margin-top: 20px;
}

.accordion-container {
  max-width: 60%;
  margin: 50px auto;
}

.accordion-wrapper.open {
  background: #fff;
}

.footer-wrapper {
  grid-gap: 25px;
  background: #fff;
  border-top: 2px solid #d3d3d324;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.footer-logo {
  width: 80px;
  height: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  margin-left: -10px;
}

.footer-menu .landing-page-menu li a {
  font-size: 16px;
  font-weight: 600;
}

.footer-bottom-info p {
  font-size: 16px;
}

.sign-in-btn {
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}

.spacing {
  padding-top: 30px;
}

.header-list-logo {
  margin-right: 30px;
}

.page-details-meta {
  text-align: center;
  grid-gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  display: flex;
}

.page-details-content h2 {
  margin-bottom: 15px;
  font-size: 27px;
}

.page-details-content p {
  color: var(--heading-color);
  margin-bottom: 10px;
}

.page-details-content-block {
  margin-bottom: 20px;
}

.page-details-content-block:last-child {
  margin-bottom: 40px;
}

.page-details-content-block h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.landing-hero-content p {
  color: var(--heading-color);
  font-size: 16px;
  line-height: 30px;
}

.pricing-plan-type {
  cursor: pointer;
  padding: 12px 20px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.pricing-plan-type.selected {
  background: var(--brand-color);
  color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 500;
}

.addon-select {
  padding: unset;
  width: auto;
  margin: 0 7px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 42px;
}

.bold {
  color: #000;
  font-weight: 700;
}

.landing-header-menu {
  grid-gap: 40px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.action-header-wrap {
  grid-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.landing-header-toggle svg {
  font-size: 35px;
}

.botdemo-menu-option-item {
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--poppins);
  background: var(--brand-color);
  border-radius: 5px;
  padding: 1px 8px;
  display: inline-block;
}

.suggest-link {
  text-align: center;
  justify-content: flex-start;
  width: 100%;
  margin: 60px auto;
  display: flex;
}

.suggest-link a {
  grid-gap: 10px;
  color: var(--brand-color);
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.suggest-link a svg {
  color: var(--brand-color);
}

.bot-upgrate-alart {
  color: #fff;
  grid-gap: 10px;
  background: #ffe106;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 15px 0;
  padding: 10px 25px;
  transition: all .3s ease-in-out;
  display: flex;
}

.bot-upgrate-alart a {
  grid-gap: 10px;
  color: #000;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.bot-upgrate-alart:hover {
  color: unset;
}

.bot-alart-cancel-icon {
  width: 18px !important;
  height: 18px !important;
}

.bot-upgrate-alart svg {
  fill: #000;
  width: 7px;
  height: 7px;
  font-size: 10px;
}

.payment-status-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.payment-status-wrap {
  border: unset;
  text-align: center;
  border-radius: 8px;
  width: 350px;
  padding: 30px;
  box-shadow: 0 0 4px #d3d3d3;
}

.payment-status-action {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.payment-status-title p {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.payment-status-title h2 {
  color: var(--brand-color) !important;
}

.payment-status-title svg {
  border: 3px solid #00968824;
  border-radius: 50%;
  font-size: 45px;
}

.payement-btn {
  background: var(--brand-color);
}

.payment-status-fail-title p {
  color: var(--gray-color);
}

.payment-status-fail-title h2 {
  color: var(--danger-color) !important;
}

.payment-status-fail-title svg {
  color: var(--danger-color);
  border: 3px solid #c1230029;
}

.payment-btn-fail {
  background: var(--danger-color);
}

.upgrate-btn {
  background: var(--brand-color);
  width: 100%;
  color: var(--white-color);
  grid-gap: 6px;
  border-radius: 15px;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  display: flex;
}

.upgrate-btn svg {
  fill: #fff;
  color: #fff;
  width: 18px;
}

.upgrate-btn span {
  font-weight: 500;
  font-size: var(--mini-size);
}

.upgrate-progress p {
  width: max-content;
  font-size: var(--p-size);
  font-weight: 500;
}

.chatbot-iframe-widget {
  background: var(--bg-light);
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  overscroll-behavior: contain;
  background-color: #0000;
  border-radius: 10px;
  width: 372px;
  height: 0;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #d3d3d3;
}

.chatbot-iframe-widget.active-iframe {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: unset;
  background: var(--white-color);
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  box-shadow: -1px 2px 6px #d3d3d3 !important;
}

.chatbot-iframe-widget-header {
  border-radius: 8px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  padding: 10px 25px;
}

.chatbot-iframe-left {
  grid-gap: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.chatbot-iframe-left h3, .chatbot-iframe-left p {
  color: var(--white-color) !important;
}

.chatbot-iframe-right {
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.chatbot-iframe-right svg {
  color: var(--white-color) !important;
  fill: var(--white-color) !important;
}

.bot-message-wrapper-iframe {
  background: var(--bg-light);
  scrollbar-width: thin;
  flex: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 160px;
  padding: 0 15px;
  transition: all .3s;
  position: relative;
  overflow: hidden auto;
  padding-bottom: 117px !important;
}

.chatbot-iframe-body {
  float: left;
  width: 100%;
  margin-top: 10px;
  position: relative;
  padding: 5px !important;
}

.logo-and-text-wrap {
  width: 100%;
  display: flex;
}

.chatbot-iframe-footer-container {
  z-index: 9999;
  width: 100%;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
}

.aceva-gpt-input {
  overflow-wrap: break-word;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  height: 45px;
  max-height: 140px;
  line-height: 22px;
  font-size: 14px !important;
}

.chatbot-iframe-suggest-buttons {
  grid-gap: 5px;
  margin-bottom: 5px;
  margin: unset;
  background: #fff;
  border-top: 1px solid #d3d3d31f;
  flex-flow: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 10px;
  display: flex;
  overflow-x: auto;
}

.chatbot-iframe-footer-wrap {
  width: 100%;
  position: relative;
}

.chatbot-iframe-footer-wrap form input {
  border: 1px solid #d3d3d3;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 15px !important;
}

.chatbot-iframe-ft-btn {
  color: var(--white-color);
  right: 12px;
}

.bubble-iframe-agent {
  color: #000;
  background: var(--bg);
  grid-gap: 5px;
  border-radius: 30px 30px 30px 0;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  padding: 8px;
  line-height: 22px;
  display: flex;
  margin-bottom: 10px !important;
  font-size: 14px !important;
}

.bubble-iframe-agent-wrap {
  color: #000;
  grid-gap: 5px;
  border-radius: 0 25px 25px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  padding: 8px 8px 12px;
  line-height: 22px;
  display: flex;
  background: #f8f7fa !important;
  margin: 10px 0 !important;
  font-size: 14px !important;
}

.welcome-message-wrap p {
  color: #000;
  padding: 0 5px;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

.bubble-iframe-agent {
  width: 300px !important;
  max-width: 300px !important;
}

.bubble-iframe-agent .welcome-message-wrap {
  width: calc(100% - 40px) !important;
  max-width: 400px !important;
}

.chatbot-iframe-ft-btn {
  cursor: pointer;
}

.bubble-iframe-agent-wrap p {
  word-wrap: break-word;
  width: 100%;
  padding: 5px 8px !important;
}

.bubble-iframe-p, .message-bubble-agent p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  padding: unset !important;
}

.bubble-iframe-p-user {
  color: #fff;
}

.chatbot-config-footer-btn {
  right: 4px;
}

.message-time-left, .bot-date-response-badge {
  left: 25px;
}

.typing-container {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.bot-iframe-footer {
  position: unset;
}

.toggle-bot-icon {
  cursor: pointer;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 50px;
  box-shadow: 0 0 3px #d3d3d3;
}

.company-name {
  font-size: 11px;
  font-weight: 500;
}

.demo-video-tut {
  grid-gap: 10px;
  font-size: var(--p-size);
  color: var(--brand-color);
  border-left: 2px solid #d3d3d3;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  font-weight: 500;
  display: flex;
}

.demo-video-tut-icon {
  color: #cd201f;
}

.tut-demo-model-container {
  visibility: hidden;
  opacity: 0;
  height: 0;
  display: none;
}

.tut-demo-model-container.active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  background: #00000075;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: fixed;
  inset: 0;
}

.demo-video-modal-wrapper {
  background: #fff;
  border-radius: 7px;
  width: 800px;
  padding: 25px 40px;
  position: relative;
}

.demo-video-modal-wrapper iframe {
  border-radius: 5px;
}

.cancel {
  z-index: 9999999;
  color: #000;
  border-radius: 58px;
  padding: 2px;
  font-size: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.fullscreen-image {
  z-index: 9999;
  background: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0;
}

.close-button {
  z-index: 9999999;
  color: #fff;
  background: red;
  border-radius: 58px;
  padding: 7px 20px;
  font-size: 17px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  right: 20px;
}

.fullscreen-image-overlay {
  width: 100%;
  height: 100%;
}

.fullscreen-image-overlay img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.login-with-google-icon {
  grid-gap: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid #d3d3d370;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  box-shadow: 0 4px 6px -2px #d3d3d3a8;
}

.login-with-google-icon img {
  width: 20px;
}

.login-with-google-icon span {
  font-weight: 500;
}

.forgot-password-label span a {
  color: var(--brand-color);
  font-weight: 400;
}

.excl-icon {
  font-size: 15px;
}

.mobile-sidebar-wrapper {
  background: #00000069;
  width: 100%;
}

.bot-action-wrap {
  grid-gap: 25px;
  display: flex;
}

.max-content {
  width: max-content;
}

.menu-list-text-item.active {
  color: var(--brand-color);
}

.desktop-header-menu-wrapper.active-sticky {
  z-index: 100;
  border-radius: unset;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 10px 130px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 6px #0000001a;
}

.full-width-container {
  background: var(--white-color);
  margin: auto;
  padding: 20px 0;
}

.cross {
  color: #8b0000;
}

.h-100 {
  height: 100vh;
}

.cancel-icon, .search-btn {
  height: 100%;
  font-size: 22px;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  color: gray !important;
}

.search-btn {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-color) !important;
}

.cancel-icon {
  right: 50px;
}

.select-all-wrap {
  grid-gap: 5px;
  border-right: 2px solid #f7f7f7;
  justify-content: flex-start;
  align-items: center;
  padding-right: 10px;
  display: flex;
}

.select-all-wrap p {
  color: var(--p-light-color);
  font-size: 14px;
  font-weight: 500;
}

.select-all-icon {
  position: unset;
}

.search-box-wrap {
  background: #fff;
  border-bottom: 1px solid #d3d3d3;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 10px;
  display: flex;
}

.chat-filter-wrap {
  background: #fff;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.export-btn {
  cursor: pointer;
  border: 1px solid #d3d3d385;
  border-radius: 5px;
  padding: 1px 10px;
  font-size: 13px;
  font-weight: 600;
}

.chat-search-input {
  border: unset !important;
}

.chat-filter-opt {
  grid-gap: 10px;
  justify-content: flex-end;
  display: flex;
}

.add-link-model {
  background: #fbfbfb;
  border-radius: 5px;
  width: 80%;
  position: relative;
}

.prompt-edit-model {
  width: 530px;
  padding: 45px;
}

.chat-model-cancel-icon {
  z-index: 9999;
  font-size: 31px;
  top: -105px;
  right: 10px !important;
}

.addlink-modal-cancel-icon {
  float: right;
  margin: -25px;
  font-size: 30px;
  transition: all .3s ease-in-out;
  color: gray !important;
}

.select-icon {
  font-size: 17px !important;
}

.header-wrap {
  max-width: 80%;
  margin: auto;
}

.step-content-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.brand-big-title {
  color: var(--brand-color);
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  line-height: 43.5px;
}

.landing-full-title {
  width: 100%;
  padding: 50px 0;
  padding-top: unset;
  background: #fff;
}

.our-process-steps-section {
  background: var(--white-color);
  padding: 50px 0;
}

.step-container {
  background: var(--white-color);
}

.video-section {
  background: var(--bg);
}

.live-demo-section {
  background: var(--white-color);
  padding: 50px 0;
}

.call-to-action-section {
  padding: 80px 0;
}

.faq-section {
  background: var(--white-color);
  padding: 50px 0;
}

.right-arr-icon {
  width: 25px;
}

.hero-container {
  margin: 0 auto;
}

.register-thumb {
  width: 100%;
  height: auto;
}

.register-thumb img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  height: 100%;
}

.tooltip {
  margin-top: 6px;
  display: inline-block;
  position: relative;
}

.tooltip .tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: left;
  z-index: 1;
  opacity: 0;
  width: 200px;
  line-height: 17px;
  font-size: var(--tiny-size);
  background-color: #333;
  border-radius: 4px;
  padding: 10px;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip .tooltip-text:after {
  content: "";
  border: 5px solid #0000;
  border-top-color: #333;
  margin-left: -5px;
  position: absolute;
  top: 100%;
  left: 50%;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  bottom: 125%;
}

.ant-dropdown-menu-item svg {
  font-size: 15px !important;
}

.plan-and-action-button-wrap {
  grid-gap: 10px;
  background: var(--bg);
  padding: 0 20px;
  padding-right: unset;
  border-radius: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  box-shadow: 0 3px 1px -2px #e3e3e3;
}

.ant-drawer-content-wrapper {
  z-index: 10000 !important;
  width: 320px !important;
}

.ant-drawer-mask {
  z-index: 9999 !important;
}

.ant-drawer {
  z-index: 10000 !important;
}

.dashboard-footer-wrapper {
  gap: 0;
  margin-top: 30px;
}

.ant-drawer-header.ant-drawer-header-close-only, .ant-drawer-body {
  padding: 16px 40px !important;
}

.drawer-header-logo {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.drawer-logo {
  -o-object-fit: contain;
  object-fit: contain;
  width: auto;
  height: 35px;
}

.ant-drawer-header {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  padding: 16px 24px !important;
}

.ant-drawer-title {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  margin: 0 !important;
}

.ant-drawer-close {
  margin-left: 8px;
}

.center-container {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.center-wrapper {
  grid-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: auto;
  display: flex;
}

.center-wrapper h2, .center-wrapper p {
  text-align: center;
}

.center-wrapper h2 {
  color: var(--heading-color);
}

.center-button {
  width: max-content;
  margin: 20px auto auto;
}

.center-logo-wrap {
  text-align: center;
  border-bottom: 2px solid #d3d3d326;
  width: 100%;
  margin: auto auto 25px;
  padding-bottom: 20px;
}

.site-bot-iframe-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 450px;
  margin: auto;
  display: flex;
  position: relative;
}

.overlay-header {
  border-top-right-radius: 8px;
  border-bottom-right-radius: unset;
  width: 75%;
  height: 60px;
  box-shadow: unset;
  position: absolute;
  top: 1px;
  left: 0;
}

.overlay-header.landing {
  width: 358px;
  background: #039083 !important;
}

.chatbot-step-title {
  margin-bottom: 30px;
}

.chatbot-step-title h1 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
}

.chatbot-step-title p {
  font-size: 16px;
}

.ant-btn-primary {
  font-family: var(--poppins);
  background: var(--brand-color) !important;
}

.ant-btn-default {
  height: unset;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  margin-left: unset !important;
  padding: 10px 45px !important;
}

.ant-btn-default:hover {
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.ant-steps-item-title, .ant-steps-icon, .ant-steps-item-active .ant-steps-item-icon .ant-steps-icon {
  font-weight: 600;
}

.ant-steps-item-title {
  font-family: var(--poppins);
  font-weight: 500;
  line-height: 25px !important;
}

.ant-steps-item-active .ant-steps-item-content .ant-steps-item-title {
  font-weight: 600;
  color: var(--brand-color) !important;
}

.ant-steps-item-process .ant-steps-item-active, .ant-steps-item-finish .ant-steps-item-icon {
  background: var(--brand-color) !important;
}

.ant-steps-item-finish .ant-steps-item-icon .ant-steps-icon {
  font-weight: 600;
}

.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  font-weight: 600;
  color: var(--brand-color) !important;
}

.ant-steps-item-finish .ant-steps-item-title:after {
  background-color: var(--brand-color) !important;
  top: -20px !important;
}

.ant-steps-item-title {
  padding-inline-end: unset !important;
}

.delete-icon {
  color: #607d8b !important;
  font-size: 21px !important;
}

.remove-scroll {
  overflow: unset;
}

.prompt-group {
  margin-bottom: 10px !important;
}

.prompt-group input {
  border: 1px solid var(--border-color);
  font-size: var(--mini-size);
  background: #fff;
  padding: 10px;
  box-shadow: 0 1px 5px -1px #d3d3d3a1;
}

.prompt-group label {
  font-size: var(--mini-size);
  width: max-content;
  font-weight: 400;
  font-family: var(--poppins);
  margin-bottom: 3px;
}

.language-input-wrapper {
  grid-gap: 15px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: block;
}

.remove-language {
  background: #ff110008;
  border-radius: 3px;
  padding: 7px;
}

.css-b62m3t-container {
  width: 350px;
}

.ant-steps-item-process .ant-steps-item-icon {
  font-family: var(--poppins);
  background-color: var(--brand-color) !important;
  border-color: var(--brand-color) !important;
}

.ant-steps-label-vertical .ant-steps-item-content {
  margin-top: 4px !important;
}

.ant-steps .ant-steps-item-tail:after {
  height: 4px !important;
}

.ant-steps.ant-steps-label-vertical .ant-steps-item-tail {
  margin-inline-start: 56px;
  padding: 3px 15px !important;
}

.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail:after {
  background-color: var(--brand-color) !important;
  height: 5px !important;
}

.add-another-language {
  grid-gap: 5px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.add-another-language svg, .add-another-language p {
  color: var(--brand-color);
}

.add-another-language p {
  font-weight: 500;
}

.sync-wrapper {
  grid-gap: 20px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.sync-item {
  grid-gap: 10px;
  border-bottom: 2px solid #d3d3d352;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
}

.sync-item-content {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.sync-item img {
  width: 30px;
}

.sync-item p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.sync-input-wrap {
  width: 100%;
}

.create-chatbot-final-step {
  grid-gap: 40px;
  grid-template-columns: 2fr 3fr;
  display: grid;
}

.create-chatbot-final-container:after {
  right: 700px;
}

.remove-line-container:after {
  content: unset;
}

.create-chatbot-final-wrapper {
  grid-template-columns: 1fr 2fr;
  display: grid;
}

.create-chatbot-final-content {
  grid-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.create-chatbot-final-content button {
  border-radius: 5px;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 600;
}

.ant-switch.ant-switch-checked {
  background: var(--brand-color) !important;
}

.ant-switch {
  min-width: 60px;
  height: 30px;
}

.ant-steps-finish-icon svg {
  margin-top: 3px;
  color: #fff !important;
}

.promp-item {
  margin-bottom: unset;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  display: flex;
}

.promp-item.active {
  height: 100%;
  overflow: unset;
}

.promp-item .uploaded-file-icon-and-name {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.prompt-icon-text-wrap {
  grid-gap: 10px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.prompt-icon-text-wrap svg, .prompt-icon-text-wrap span {
  color: #000;
  font-weight: 500;
  font-size: var(--p-size);
}

.prompt-icon-text-wrap svg {
  font-size: 35px;
}

.preview-btn {
  box-shadow: unset;
  border: 1px solid #e6e6e6;
  background: #b7b7b759 !important;
}

.prompt-title {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.prompt-content {
  border-top: 1px solid #d3d3d354;
  width: 100%;
  padding: 5px;
}

.prompt-content p {
  text-align: left;
  font-size: 15px;
}

.prompt-item.active {
  background: #fff;
  padding: 5px;
}

.prompt-item {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 5px;
}

.prompt-item .prompt-title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.prompt-item .prompt-content {
  display: none;
}

.prompt-item.active .prompt-content {
  display: block;
}

.chevron {
  transition: all .3s ease-in-out;
}

.chevron.active {
  transform: rotate(180deg);
}

.bold-lan {
  color: #000;
  font-weight: 600;
}

.sync-input-btn {
  top: 20px;
}

.fetch-link-item {
  flex-direction: row;
}

.error-message {
  margin-top: 5px;
  color: red !important;
}

.ap-content {
  padding: 4px 0;
}

.ap-content form {
  padding-top: 15px;
}

.ap-content .form-group input, .ap-content .form-group textarea {
  font-size: var(--p-size);
  padding: 15px;
  border: 1px solid var(--border-color) !important;
  background: #fff !important;
}

.ap-content .form-group label, .ap-content .form-group label {
  font-weight: 400;
  font-size: var(--mini-size);
  color: #000;
  margin-bottom: 4px;
}

.req {
  color: red;
}

.ap-wrapper {
  border-top: unset;
  border-bottom: 2px solid var(--border-color);
  padding: 10px 0;
  background: #fbfbfb !important;
}

.chatbot-upload-file {
  background: #fff;
  width: 100%;
}

.file-text-preview {
  text-align: left;
  font-size: 16px;
  line-height: 25px;
}

.create-chatbot-preview-wrapper {
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

.upload-cb-wrapper {
  overflow: hidden;
}

.img-icon {
  -o-object-fit: contain;
  object-fit: contain;
  width: 40px;
}

.button-wrap {
  grid-gap: 10px;
  justify-content: flex-start;
  display: flex;
}

.button-outline {
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
  background: var(--white-color);
}

.language-mask {
  z-index: 999;
  background: #000000bf;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
  display: flex;
  position: absolute;
  inset: 0;
}

.language-mask-wrap {
  grid-gap: 7px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.language-mask-wrap p {
  color: #fff;
  margin-bottom: 10px;
}

.language-mask-wrap li {
  color: #000;
  cursor: pointer;
  min-width: 170px;
  font-weight: 500;
  font-size: var(--mini-size);
  background: #fff;
  border-radius: 5px;
  padding: 9px 10px;
}

.css-qbdosj-Input input {
  box-shadow: unset !important;
  border: unset !important;
}

.prompt-item-group {
  border-bottom: 1px solid #d3d3d354;
  padding-top: 10px;
  padding-bottom: 8px;
}

.prompt-item-group:last-child {
  border-bottom: unset;
  padding-bottom: unset;
  overflow-x: auto;
}

.prompt-item-group p {
  color: #000;
  font-weight: 600;
  font-size: var(--p-size);
  width: fit-content;
}

.prompt-item-group h3 {
  font-size: var(--tiny-size);
  color: #777;
  font-weight: 500;
}

.mask-blur {
  filter: blur(3px);
}

.update-chatbot-container {
  margin-top: 40px;
}

.ant-tabs-nav-wrap {
  width: 300px;
}

.ant-tabs-tab.ant-tabs-tab-active {
  background: var(--brand-color);
}

.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #fff !important;
}

.ant-tabs-tab {
  font-family: var(--poppins);
  border: 1px solid #d3d3d3 !important;
  border-right: unset !important;
  margin: unset !important;
  padding: 16px !important;
}

.ant-tabs-tab:last-of-type {
  border-bottom: 1px solid #d3d3d3 !important;
}

.ant-tabs-tab-btn {
  font-size: var(--p-size);
  color: #000;
  font-weight: 500;
}

.ant-tabs-tab-btn span {
  grid-gap: 10px;
  font-family: var(--poppins);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ant-tabs-tab-btn span svg {
  color: #000 !important;
}

.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn span svg {
  color: #fff !important;
}

.ant-tabs .ant-tabs-ink-bar {
  background: var(--brand-color) !important;
}

.update-tab-item {
  padding-left: unset !important;
  border: 1px solid #d3d3d3 !important;
}

.update-tab-item span {
  grid-gap: 10px;
  font-size: var(--mini-size);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.update-tab-item svg {
  color: #000;
}

.preview-title h2 {
  font-size: 25px;
  line-height: 40px;
}

.remove-after-line:after {
  content: unset;
  position: unset;
}

.update-grid-gap {
  grid-gap: 10px;
}

.remove-padding {
  padding-right: 30px;
}

.update-upload-file {
  width: 100%;
}

.update-change-btn {
  font-size: var(--mini-size);
  margin: -50px 0 0 auto;
}

.lan-save-btn {
  margin-top: -30px;
}

.retrain-badge {
  color: var(--brand-color);
  font-weight: 600;
}

#components-dropdown-demo-arrow .ant-btn {
  margin-bottom: 8px;
  margin-right: 8px;
}

.ant-row-rtl #components-dropdown-demo-arrow .ant-btn {
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 0;
}

.upload-avatar-wrapper {
  grid-gap: 20px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 20px;
  display: flex;
}

.avatar-sections-row {
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.avatar-panel {
  grid-gap: 10px;
  flex-direction: column;
  display: flex;
}

.avatar-preview-wrap {
  justify-content: flex-start;
  display: flex;
}

.avatar-template-wrap {
  grid-gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  max-height: 240px;
  padding: 8px;
  overflow-y: auto;
}

.upload-ava-title {
  color: #000;
  text-align: left;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.avatar-logo-wrap {
  background: var(--brand-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.avatar-logo-wrap img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.avatar-logo-wrap svg {
  color: #fff;
  font-size: 30px;
}

.custom-avatar-wrapper {
  grid-gap: 20px;
  grid-template-columns: 1fr 100%;
  display: grid;
}

.avatar-item {
  width: 90%;
}

.avatar-profile {
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: auto;
}

.avatar-profile.selected {
  border: 4px solid var(--brand-color);
  box-shadow: 0 0 6px 2px #00968847;
}

.landing-right-action-btn-wrap {
  grid-gap: 15px;
}

.create-steps-btn-wrap {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.chatbot-iframe-send-message-btn {
  border: unset;
  background: var(--brand-color);
  color: gray;
  grid-gap: 7px;
  text-align: center;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  right: 5px;
  overflow: hidden;
}

.avatar-template-wrap::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.avatar-template-wrap::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.avatar-template-wrap::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.avatar-template-wrap::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.avatar-logo-wrap.blank {
  background: unset !important;
}

.iframe-container {
  z-index: 999999999;
  background-color: #0000;
  border: none;
  width: 100%;
  height: 100vh;
}

.bot-message-wrapper-iframe::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

.bot-message-wrapper-iframe::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

.bot-message-wrapper-iframe::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

.bot-message-wrapper-iframe::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.three-dot-icon svg {
  font-size: 20px !important;
}

.payload-container {
  z-index: 1500;
  position: relative;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .payload-container .bot-dropdown__menu {
    margin-right: 30px !important;
  }

  .payload-container .bot-dropdown__menu-list {
    padding-right: 15px !important;
  }

  .tab-container-wrapper {
    padding: unset;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator {
    z-index: 10;
    pointer-events: none;
    background: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .scroll-indicator-left {
    left: 8px;
  }

  .scroll-indicator-right {
    right: 8px;
  }

  .chevron-container {
    width: 24px;
    height: 75%;
    position: relative;
  }

  .chevron {
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff !important;
  }

  .chevron svg {
    fill: #fff !important;
    color: #fff !important;
  }

  .chevron-1 {
    animation: 3s ease-in-out infinite chevron-move-1;
  }

  .chevron-2 {
    animation: 3s ease-in-out infinite chevron-move-2;
  }

  @keyframes chevron-move-1 {
    0% {
      opacity: 0;
      transform: translateX(0);
    }

    20% {
      opacity: 1;
      transform: translateX(0);
    }

    40% {
      opacity: 1;
      transform: translateX(8px);
    }

    60% {
      opacity: 0;
      transform: translateX(8px);
    }

    100% {
      opacity: 0;
      transform: translateX(8px);
    }
  }

  @keyframes chevron-move-2 {
    0% {
      opacity: 0;
      transform: translateX(0);
    }

    40% {
      opacity: 0;
      transform: translateX(0);
    }

    60% {
      opacity: 1;
      transform: translateX(0);
    }

    80% {
      opacity: 1;
      transform: translateX(8px);
    }

    100% {
      opacity: 0;
      transform: translateX(8px);
    }
  }

  .scroll-indicator-left .chevron-1 {
    animation: 3s ease-in-out infinite chevron-move-left-1;
  }

  .scroll-indicator-left .chevron-2 {
    animation: 3s ease-in-out infinite chevron-move-left-2;
  }

  @keyframes chevron-move-left-1 {
    0% {
      opacity: 0;
      transform: translateX(0);
    }

    20% {
      opacity: 1;
      transform: translateX(0);
    }

    40% {
      opacity: 1;
      transform: translateX(-8px);
    }

    60% {
      opacity: 0;
      transform: translateX(-8px);
    }

    100% {
      opacity: 0;
      transform: translateX(-8px);
    }
  }

  @keyframes chevron-move-left-2 {
    0% {
      opacity: 0;
      transform: translateX(0);
    }

    40% {
      opacity: 0;
      transform: translateX(0);
    }

    60% {
      opacity: 1;
      transform: translateX(0);
    }

    80% {
      opacity: 1;
      transform: translateX(-8px);
    }

    100% {
      opacity: 0;
      transform: translateX(-8px);
    }
  }

  .tab-container {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    width: 100%;
    padding: 8px 0;
    padding: unset;
    border: unset;
    background: #e6e6e6;
    border-radius: 35px;
    gap: 8px;
    display: flex;
    overflow: auto hidden;
  }

  .tab-container::-webkit-scrollbar {
    padding: unset;
    display: none;
  }

  .tab-item {
    min-width: 120px;
    height: 42px;
    padding: unset;
    border-radius: 5px;
    flex-shrink: 0;
  }

  .dashboard-parent-tab-header.third-edition {
    padding: unset;
    background: #e6e6e6;
    border-radius: 35px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 6px;
    display: flex;
    overflow-x: auto;
  }

  .dashboard-parent-header-tab.third-edition {
    min-width: 120px;
    height: 42px;
    padding: unset;
    border-radius: 30px;
    flex-shrink: 0;
    width: 100%;
    transition: all .3s;
  }

  .dashboard-parent-header-tab.third-edition.react-tabs__tab--selected {
    background: var(--brand-color);
    color: #fff;
    padding: unset;
    border-radius: 30px;
  }

  :root {
    --mobile-footer-height: 150px;
  }

  .message-bubble-agent, .bubble-iframe-agent, .bubble-iframe-agent-wrap {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: calc(100% - 60px) !important;
    max-width: calc(100vw - 80px) !important;
    margin: 5px 0 !important;
  }

  .message-bubble-agent p, .bubble-iframe-agent-wrap p, .bubble-iframe-p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    width: 100% !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .agent-logo {
    width: 35px !important;
    height: 35px !important;
    margin-right: 8px !important;
  }

  .typing-wrap {
    padding: 6px 10px !important;
    font-size: 13px !important;
  }

  .message-bubble-visitor, .chatbot-config-bubble-user {
    float: right !important;
    text-align: left !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: fit-content !important;
    max-width: 50% !important;
    margin: 5px 0 !important;
    padding: 10px 12px !important;
  }

  .chatbot-config-bubble-user .bubble-iframe-p-user, .message-bubble-visitor .bubble-iframe-p-user {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .chatbot-iframe-body {
    padding: 5px 10px !important;
  }

  .bot-message-wrapper-iframe {
    padding: 0 10px !important;
  }

  .chatbot-iframe-footer-container {
    padding-bottom: unset !important;
  }

  .chatbot-iframe-send-message-btn {
    height: 45px !important;
    min-height: 45px !important;
  }

  .aceva-gpt-input {
    height: 45px !important;
    min-height: 45px !important;
    font-size: 16px !important;
  }

  .chatbot-iframe-footer-wrap .aceva-gpt-input {
    font-size: 14px !important;
  }

  .payload-container .bot-dropdown, .payload-container .bot-dropdown .bot-dropdown__control {
    width: 100% !important;
  }

  .welcome-message-wrap {
    width: calc(100% - 20px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  .welcome-message-wrap p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .bubble-iframe-agent .welcome-message-wrap {
    width: calc(100% - 20px) !important;
    max-width: calc(100vw - 20px) !important;
  }

  .bubble-iframe-agent .welcome-message-wrap p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .bubble-iframe-agent .agent-logo {
    width: 50px !important;
    height: 50px !important;
    margin-right: 8px !important;
  }

  .logo-and-text-wrap {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin: 5px 0 !important;
  }

  .message-bubble-agent, .bubble-iframe-agent, .bubble-iframe-agent-wrap, .message-bubble-visitor, .chatbot-config-bubble-user {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .messageTimestamp {
    opacity: .6 !important;
    font-size: 8px !important;
    bottom: -16px !important;
    right: 4px !important;
  }

  .message-bubble-visitor .messageTimestamp, .chatbot-config-bubble-user .messageTimestamp, .message-bubble-agent .messageTimestamp, .bubble-iframe-agent .messageTimestamp, .bubble-iframe-agent-wrap .messageTimestamp {
    text-align: right !important;
    opacity: .6 !important;
    margin-top: 3px !important;
    font-size: 10px !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
  }
}

iframe::-webkit-scrollbar {
  width: 7px;
  overflow-y: hidden;
}

iframe::-webkit-scrollbar-track {
  background: #f1f1f193;
  overflow-y: hidden;
}

iframe::-webkit-scrollbar-thumb {
  background: #cccccc7c;
  border-radius: 10px;
  overflow-y: hidden;
}

iframe::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3;
}

.all-bot-list {
  z-index: 2;
  border-radius: 5px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  position: relative;
}

.ant-switch .ant-switch-handle {
  top: 4px;
  inset-inline-start: 2px;
  border-radius: 43px;
  width: 20px;
  height: 20px;
  transition: all .2s ease-in-out;
  position: absolute;
  left: 6px;
}

.ant-switch.ant-switch-checked .ant-switch-handle {
  inset-inline-start: calc(100% - 25px) !important;
}

.icon-and-text-wrap {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  min-width: 140px;
  display: flex;
}

.whatsapp-sync-label {
  grid-gap: 10px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.whatsapp-sync-label svg, .whatsapp-sync-label span {
  color: var(--brand-color);
  font-weight: 500;
}

.whatsapp-sync-label span {
  font-size: 16px;
}

.whatsapp-sync-label svg {
  font-size: 17px;
}

.marketplace-title {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.marketplace-title .form-group {
  width: max-content;
}

.marketplace-title h2 {
  font-size: var(--title-size);
  font-weight: 600;
}

.marketplace-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  margin-bottom: 30px;
  display: grid;
}

.marketplace-container {
  width: 100%;
}

.marketplace-header-row {
  grid-gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.marketplace-header-left {
  grid-gap: 12px;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.marketplace-header-right {
  text-align: right;
  font-size: var(--mini-size);
  color: #374151;
  white-space: nowrap;
  font-weight: 500;
}

.marketplace-loading-skeleton {
  background: #e5e7eb;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.marketplace-loading-placeholder {
  grid-gap: 8px;
  background: #d8dee8;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
  display: flex;
  position: relative;
}

.marketplace-loading-skeleton-bot-logo {
  background: #e5e7eb;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.marketplace-loading-skeleton-dropdown {
  background: #e5e7eb;
  border-radius: 8px;
  width: 210px;
  height: 48px;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.marketplace-character-count {
  text-align: right;
  font-size: var(--mini-size);
  color: #374151;
  white-space: nowrap;
  font-weight: 500;
}

.marketplace-character-count-box {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: .5rem 1rem;
  display: inline-block;
}

.marketplace-character-label {
  color: #6b7280;
}

.marketplace-character-value {
  color: var(--brand-color);
  font-weight: 600;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.marketplace-item {
  text-align: center;
  grid-gap: 15px;
  background: #d8dee8;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.marketplace-item h2 {
  font-size: var(--p-size);
  font-weight: 500;
  line-height: 30px;
}

.marketplace-btn {
  background: var(--brand-color);
  color: var(--white-color);
  font-size: var(--mini-size);
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 500;
  transition: all .3s ease-in;
}

.marketplace-btn:hover {
  background: var(--brand-color-bold);
}

.marketplace-btn.disabled {
  cursor: not-allowed;
  background: gray;
}

.marketplace-item-thumb {
  width: auto;
  height: 60px;
}

.marketplace-item-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.button-row {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marketplace-details-item {
  text-align: unset;
  grid-gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 800px;
  margin-bottom: 30px;
  padding: 40px;
}

.marketplace-details-item p, .marketplace-popup-wrap p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.marketplace-details-title h2 {
  font-size: var(--title-size);
  font-weight: 700;
}

.marketplace-popup-container {
  z-index: 999;
  background: #00000047;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0;
}

.marketplace-popup-wrap {
  text-align: center;
  grid-gap: 20px;
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 300px;
  padding: 60px;
  display: flex;
  position: relative;
  box-shadow: 0 0 5px #d3d3d3;
}

.cancel-icon {
  color: gray;
  height: unset;
  font-size: 32px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.marketplace-popup-wrap h3 {
  font-size: var(--title-size);
}

.add-file-or-link-btn-wrap {
  justify-content: right;
  min-height: 50px;
  margin: -60px 0 20px;
  display: flex;
}

.guide-content-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;
  display: flex !important;
}

.guide-content-wrap h3 {
  font-size: 20px;
}

.img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px !important;
}

.swiper-pagination-bullet-active {
  background: var(--brand-color);
  box-shadow: 0 0 3px gray;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.code-wrapper {
  white-space: pre-line;
  max-height: 500px;
  margin: 30px 0;
  margin-top: unset;
  background-color: #f4f4f5;
  border: 1px solid #f4f4f5;
  border-radius: 4px;
  padding: 10px;
  overflow: hidden;
}

code {
  color: #000;
  font-size: var(--p-size);
}

.code-content {
  grid-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin: auto auto 20px;
  display: flex;
}

.code-content h2 {
  font-size: var(--title-size);
  font-weight: 600;
}

.code-content p {
  font-size: var(--mini-size);
  line-height: 24px;
}

.code-actions {
  grid-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bot-copy-wrap {
  width: 150px;
}

.code-btn {
  font-size: var(--p-size);
}

.code-btn svg {
  color: var(--white-color);
  font-size: 17px;
}

.code-btn-outline svg {
  color: var(--brand-color);
}

.code-modal-wrapper {
  width: 700px;
}

.code-modal-wrapper.whatsapp-bot {
  height: auto;
  padding: 30px;
  overflow-y: auto;
}

.guide-slider h3 {
  margin: 10px 0;
  font-size: 20px;
}

.calendly-bot-section {
  z-index: 999;
  position: fixed;
  bottom: 0;
  right: 20px;
}

.marketplace-btn.outline {
  background: #006bff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.calender-board {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 15px 20px;
  display: flex;
}

.calender-board h6 {
  text-align: center;
}

.calender-board p {
  font-size: 12px;
}

.meeting-time-wrap {
  grid-gap: 3px;
  display: flex;
}

.meeting-time-wrap p {
  color: #fff;
  font-size: 10px;
  line-height: 14px;
}

.meeting-active-title {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.calendar-meeting-details-wrap h3 {
  margin-top: 5px;
  margin-bottom: 15px;
}

.calendar-meeting-details-content p, .meeting-location {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.meeting-location span {
  text-transform: capitalize;
}

.calendar-meeting-details {
  font-size: var(--title-size);
  color: #000;
  margin-bottom: 30px;
  font-weight: 400;
}

.calendar-meeting-details p {
  display: unset;
  font-size: var(--title-size);
  color: #000;
  font-weight: 400;
}

.calendar-meeting-details-btn {
  grid-gap: 5px;
  color: var(--brand-color);
  background: #0096881f;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 6px 25px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s ease-in;
  display: flex;
  box-shadow: 0 3px 1px #0096886e;
}

.calendar-meeting-details-btn:hover {
  box-shadow: 0px 3px 1px 0px var(--brand-color);
}

.calendar-meeting-details-btn img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 40px;
  height: 40px;
}

.calendar-meeting-details-dates {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.time-slot-container {
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 10px;
}

.time-slots {
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.time-slot {
  border: 1px dotted var(--brand-color);
  text-align: center;
  color: var(--brand-color);
  cursor: pointer;
  border-radius: 3px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
}

.time-slot:hover, .time-slot.selected {
  background: var(--brand-color);
  color: #fff;
}

.time-slot.disabled {
  color: gray;
  background: #d3d3d3;
  border: #0000;
}

.time-slot-title {
  text-align: center;
  border-bottom: 2px solid #d3d3d3;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.time-slot-title h2 {
  font-size: var(--title-size);
  line-height: 35px;
}

.time-slot-title p {
  font-size: var(--mini-size);
}

.submit-calendar-btn {
  margin-bottom: 10px;
  width: 100% !important;
}

.bot-calendar-widget {
  margin-bottom: 30px;
}

.copy-link-wrap {
  margin-top: 10px;
}

.copy-link-group {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.copy-link-group input {
  border-top-right-radius: unset;
  font-size: 14px;
}

.copy-link-group input:focus {
  border: unset;
  outline: unset;
}

.copy-site-link-btn {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  grid-gap: 5px;
  background: #607d8b;
  border: 1px solid #0000;
  width: 155px;
  padding: 8px;
}

.copy-site-link-btn:hover {
  transform: unset;
}

.copy-site-link-btn svg {
  font-size: var(--title-size);
  color: #fff !important;
}

.calendar-btn-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.login-with-google-calendar-btn {
  padding: 10px;
}

.calendar-container {
  height: 650px;
  margin-top: 10px;
  padding-bottom: 30px;
}

.title-and-filter-result-wrap {
  flex-direction: column;
  align-items: flex-start;
}

.dashboard-parent-tab-wrapper {
  margin-bottom: 30px;
}

.dashboard-parent-tab-header {
  background: #e6e6e6;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding: 6px;
  display: flex;
}

.dashboard-parent-header-tab {
  color: gray;
  transition: var(--transition);
  grid-gap: 8px;
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.dashboard-parent-header-tab.react-tabs__tab--selected {
  background: var(--brand-color);
  color: #fff;
  border-radius: 35px;
  outline: none;
}

.custom-accordion-title {
  color: var(--accent-color);
  align-items: center;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 600;
}

.custom-accordion-title p {
  font-size: var(--mini-size);
  font-family: Poppins;
}

.custom-accordion-icon {
  font-size: 22px !important;
}

.marketplace-btn.dangar {
  background: #b22222;
}

.marketplace-modal table tr, .marketplace-modal table tr td {
  font-family: var(--font-poppins);
  padding: 10px !important;
}

.marketplace-modal .ant-modal-title {
  font-size: 20px;
  font-family: var(--font-poppins);
}

.marketplace-modal .ant-modal-header {
  margin-bottom: 20px;
}

.select-all-links {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.select-all-links span {
  color: gray;
  font-weight: 400;
  font-family: var(--font-poppins);
  font-size: 13px;
}

.fetched-link-file-icon-wrap {
  flex-direction: row;
}

.ant-checkbox-checked .ant-checkbox-inner {
  background-color: var(--brand-color) !important;
  border-color: var(--brand-color) !important;
}

.whatsapp-dropdown {
  background: var(--brand-color);
  color: #fff;
  border-radius: 10px;
  height: 40px;
}

.whatsapp-dropdown .ant-select-selector {
  color: #fff;
  background: var(--brand-color) !important;
}

.ant-select-selection-item {
  font-family: var(--font-poppins);
  font-weight: 500;
}

.whatsapp-dropdown .ant-select-arrow svg {
  color: #fff !important;
}

.whatsapp-action-wrap {
  flex-direction: flex-start;
  grid-gap: 10px;
  align-items: center;
  display: flex;
}

.whatsapp-action-wrap p {
  color: gray;
}

.price-radio-group {
  grid-gap: 10px;
  font-family: var(--font-poppins);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.price-radio {
  border: 1px dotted var(--brand-color);
  width: max-content;
  max-height: 200px;
  font-family: var(--font-poppins);
  background: #fff;
  border-radius: 5px;
  padding: 12px 50px 12px 20px;
  position: relative;
}

.price-tag-label {
  font-size: 15px;
  font-weight: 600;
}

.price-tag-value {
  font-size: 14px;
  font-weight: 400;
}

.price-radio-group .ant-radio-wrapper-checked.price-radio {
  background: var(--brand-color);
}

.price-radio .ant-radio-checked .ant-radio-inner {
  background: var(--white-color) !important;
  border-color: var(--white-color) !important;
}

.price-radio .ant-radio-checked .ant-radio-inner:after {
  background: var(--brand-color) !important;
}

.price-radio-group .ant-radio-wrapper-checked.price-radio .price-tag-label, .price-radio-group .ant-radio-wrapper-checked.price-radio .price-tag-value {
  color: #fff;
}

.popover-wrap {
  position: absolute;
  top: 7px;
  right: 7px;
}

.popover-wrap svg {
  color: #d3d3d3;
  font-size: 22px;
}

.ant-popover-content p {
  font-size: 14px;
}

.ant-popover-content {
  width: 265px;
}

.subscribe-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.subscribe-btn.unsubscribe {
  color: #b22222;
  background: #ff000014;
}

.billing-kpi-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 30px;
  display: grid;
}

.billing-kpi-item {
  border: 1px solid #d3d3d369;
  border-radius: 5px;
  padding: 20px;
}

.billing-kpi-item p {
  font-size: var(--p-size);
  color: var(--brand-color);
  font-weight: 600;
}

.billing-kpi-item p:last-child {
  font-size: var(--mini-size);
  color: var(--gray-color);
  font-weight: 500;
}

.billing-kpi-item svg {
  color: var(--gray-color);
}

.addon-billing-table-wrap {
  margin-top: 30px;
}

.addon-billing-table-wrap h3 {
  font-size: var(--title-size);
  color: var(--h-color);
  font-size: var(--p-size);
  margin-bottom: 10px;
  font-weight: 600;
}

.addon-billing-table-wrap table {
  border: 1px solid var(--border-color);
  border-radius: 3px;
}

.addon-billing-table-wrap table tr th {
  border: 1px solid var(--border-color);
  color: var(--h-color);
  font-weight: 600;
  font-size: var(--mini-size);
  padding: 15px;
}

.addon-billing-table-wrap tbody tr td {
  border: 1px solid var(--border-color);
  color: var(--gray-color);
  font-size: var(--mini-size);
  padding: 10px 15px;
  font-weight: 400;
}

.dashboard-pricing-plan-title {
  margin-top: 40px;
}

.not-found {
  border: 1px solid var(--border-color);
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 30px;
}

.table-admin-badge {
  color: var(--brand-color);
  font-weight: 500;
  font-size: var(--tiny-size);
  background: #0096880f;
  border-radius: 20px;
  padding: 5px 10px;
  line-height: 0;
}

.table-admin-badge.user {
  color: var(--purpleColor);
  background: #c211a112;
}

.table-admin-badge.subscriber {
  color: var(--orange-color);
  background: #fd346e12;
}

.balance-badge {
  color: var(--brand-color);
  font-weight: 500;
}

.img-fluid {
  background: #fff;
  border-radius: 30px;
  width: 37px;
  margin-right: 5px;
}

.prompt-badge {
  background: #0096882b;
  border-radius: 20px;
  margin-top: 5px;
  padding: 0 10px;
  color: var(--brand-color) !important;
  font-size: var(--tiny-size) !important;
}

.static-details {
  margin-top: 10px;
}

.page-details-content-block a {
  color: var(--brand-color);
  border-bottom: 1px dotted #d3d3d3;
  font-weight: 500;
}

.page-details-content-block ul {
  grid-gap: 10px;
  flex-direction: column;
  margin-top: 10px;
  display: flex;
}

.page-details-content-block ul li {
  font-size: var(--p-size);
}

.page-details-content-block p, .page-details-content-block ul li {
  color: #000;
}

.privacy-check {
  margin-bottom: 10px;
}

.privacy-check a {
  color: var(--brand-color);
  font-weight: 500;
  font-family: var(--poppins);
  font-size: var(--tiny-size);
  border-bottom: 1px dotted #d3d3d3;
}

.privacy-check span, .privacy-check label {
  font-family: var(--poppins);
  font-size: var(--tiny-size);
}

.privacy-checkbox .ant-checkbox {
  border: 1px solid #0000;
}

.privacy-checkbox.active .ant-checkbox {
  border: 1px solid red;
}

.chatbot-type-section {
  border: 1px solid #d3d3d32e;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  display: flex;
}

.chatbot-type-wrapper {
  grid-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chatbot-type-content h2 {
  font-size: var(--heading-two);
  margin-bottom: 10px;
}

.chatbot-type-action {
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: green;
}

.wa-integration-section {
  border: 1px solid #d3d3d32e;
  border-radius: 5px;
  padding: 40px 20px;
}

.wa-form, .wa-integration-wrapper .chatbot-type-content {
  width: 610px;
  margin: auto;
}

.wa-integration-wrapper .chatbot-type-content {
  text-align: center;
  margin-bottom: 10px;
}

.waba-id-btn {
  background: #b22222;
}

.waba-id-btn:hover {
  background: #a21717 !important;
}

.wa-details-action {
  align-items: flex-end;
}

.marketplace-popup-wrap ul {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.marketplace-popup-wrap ul li {
  color: #000;
  font-size: var(--mini-size);
  margin-left: 18px;
  list-style: outside;
}

.view-details-popup {
  height: auto !important;
  padding: 35px !important;
}

.view-details-content {
  grid-gap: 10px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon-img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 2px;
  width: 30px;
}

.select-language-item .ant-select-selector {
  border: unset !important;
  padding: unset !important;
}

.bot-type-img {
  width: 20px;
}

.bot-type-img-wrap {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.list-bot-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.list-bot-content a {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  display: flex;
  overflow: hidden;
}

.disabled-bot .list-bot-logo.no-bot, .disabled-bot .form-button {
  background: gray !important;
}

.disabled-bot .all-bot-action-btn.button-outline {
  background: #fff !important;
  border: 2px solid gray !important;
}

.disabled-bot .all-bot-action-btn.button-outline svg, .disabled-bot .all-bot-action-btn.button-outline span, .disabled-bot .retrain-badge {
  color: gray !important;
}

.wa-check-box {
  margin-top: 10px;
}

.ant-radio-wrapper {
  font-family: var(--poppins);
}

.wa-check-box .ant-radio-checked .ant-radio-inner {
  background-color: var(--brand-color) !important;
}

.inline-radio-wrap {
  grid-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.wa-check-box .ant-radio-wrapper {
  font-weight: 500;
  font-size: var(--mini-size);
}

.select-language-item .ant-select-arrow {
  left: 70px !important;
}

.bot-dropdown {
  z-index: 1000;
  width: 200px;
  font-family: var(--font-poppins);
  position: relative;
}

.css-1dimb5e-singleValue {
  font-weight: 500;
}

.gc-connect {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  display: flex;
}

.gc-item {
  width: min-content;
}

.gc-chatbots .ant-select-selector, .gc-google-calendars .ant-select-selector {
  font-family: var(--poppins);
  width: 230px !important;
  height: 42px !important;
}

.gc-google-calendars .ant-select-selector {
  height: auto !important;
  min-height: 42px !important;
}

.gc-chatbots, .gc-google-calendars {
  font-family: var(--poppins);
  width: 230px !important;
  height: 42px !important;
}

.gc-chatbots svg, .gc-google-calendars svg {
  font-size: 13px !important;
}

.ant-select-item-option-content, .ant-progress-text {
  font-family: var(--poppins);
}

.progress-wrap {
  width: 420px;
}

.ant-progress-bg {
  background: var(--brand-color) !important;
}

.progress-wrap svg {
  color: var(--brand-color) !important;
}

.tab-container-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.tab-container {
  background: #e6e6e6;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  padding: 6px;
  display: flex;
}

.scroll-indicator {
  display: none;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: flex;
  }

  .dashboard-parent-tab-header.third-edition {
    padding: unset;
    background: #e6e6e6;
    border-radius: 35px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 6px;
    display: flex;
    overflow-x: auto;
  }

  .dashboard-parent-header-tab.third-edition {
    min-width: 120px;
    height: 42px;
    padding: unset;
    border-radius: 30px;
    flex-shrink: 0;
    width: 100%;
    transition: all .3s;
  }

  .dashboard-parent-header-tab.third-edition.react-tabs__tab--selected {
    background: var(--brand-color);
    color: #fff;
    padding: unset;
    border-radius: 30px;
  }
}

.dashboard-parent-header-tab.second-edition {
  min-width: 185px;
  height: 42px;
  padding: unset;
  border-radius: 5px;
  width: 100%;
  transition: all .3s;
}

.dashboard-parent-header-tab.second-edition.react-tabs__tab--selected {
  box-shadow: var(--shadow);
  border-radius: 5px;
}

.dashboard-parent-header-tab.second-edition.react-tabs__tab--selected svg {
  color: #fff;
  font-size: 20px;
}

.dashboard-parent-tab-header.second-edition {
  padding: unset;
  border-radius: 50px;
}

.rbc-month-view {
  border-radius: 8px;
}

.gc-btn-wrap {
  grid-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.disconnect-btn {
  color: #fff;
  border: 1px solid #0000;
  background: #b22222 !important;
}

.rbc-toolbar .rbc-btn-group:last-child button:last-child {
  display: none;
}

.ant-picker-content thead tr th, .ant-picker-content tbody tr td {
  text-align: unset;
  padding: 8px !important;
}

.ant-radio-group label, .ant-btn {
  font-family: var(--poppins);
}

.ant-picker-calendar-header .ant-radio-button-wrapper.ant-radio-button-wrapper-checked {
  color: var(--brand-color) !important;
  border-color: var(--brand-color) !important;
}

.ant-picker-calendar-header .anticon.anticon-down.ant-select-suffix {
  width: var(--mini-size) !important;
}

.ant-picker-cell-inner.ant-picker-calendar-date.ant-picker-calendar-date-today {
  background: var(--brand-color) !important;
  color: #fff !important;
}

.connected-gc-chatbots {
  padding: unset;
  position: relative;
}

.bot-dropdown input:focus {
  border: unset !important;
}

.dashboard-bot-content {
  grid-gap: 5px;
  flex-direction: column;
  display: flex;
}

.bot-content-details svg {
  color: #d9d9d9;
}

.bot-content-details {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bot-content-details a {
  font-weight: 400;
}

.bot-content-details a:hover {
  color: var(--brand-color);
}

.bot-content-details .desktop-text {
  display: inline;
}

.bot-content-details .mobile-text {
  display: none;
}

.bot-last-updated {
  margin-top: 8px;
}

.bot-last-updated span {
  color: #6b7280;
  font-size: 13px;
}

.ctr-box {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  padding: 20px;
  display: flex;
}

.ctr-content {
  grid-gap: 5px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ctr-content h3:hover {
  color: var(--brand-color);
}

.ctr-content svg {
  color: var(--gray-color);
  font-size: 30px;
}

.dashboard-bot-item {
  background: var(--brand-color-light);
}

.dashboard-bot-item p, .dashboard-bot-item span, .dashboard-bot-item svg {
  color: var(--brand-color);
}

.blog-landing-page {
  margin: 50px 0;
}

.featured-blog-wrapper {
  grid-gap: 25px;
  background: var(--bg-color);
  border-radius: 5px;
  grid-template-columns: 5fr 6fr;
  padding: 30px;
  display: grid;
}

.featured-blog-thumb {
  width: 100%;
  height: 340px;
}

.featured-blog-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.featured-blog-content h2 {
  font-size: var(--heading-size);
  margin: 10px 0;
  font-weight: 700;
  line-height: 45px;
}

.featured-blog-content p {
  color: #000000d6;
}

.category-badge, .author-badge {
  color: var(--brand-color);
  font-weight: 500;
}

.category-badge {
  background: var(--brand-color-light);
  font-size: var(--mini-size);
  border-radius: 25px;
  padding: 5px 13px;
}

.author-badge {
  margin-right: 15px;
}

.featured-excerpt {
  margin-top: 10px;
}

.latest-blog-section {
  margin: 50px 0;
}

.latest-blog-container {
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.latest-blog-wrapper {
  padding: unset;
  background: unset;
  flex-direction: column;
  display: flex;
}

.latest-blog-thumb {
  height: 225px;
}

.latest-blog-content .category-badge {
  font-size: 13px;
}

.latest-blog-content h2 {
  font-size: 23px;
  font-weight: 600;
  line-height: 35px;
}

.blog-title {
  margin-bottom: 20px;
}

.blog-title h2 {
  font-size: var(--heading-size);
}

.single-main-container {
  margin: 50px 0;
}

.single-title {
  grid-gap: 15px;
  flex-direction: column;
  display: flex;
}

.single-container {
  grid-gap: 35px;
  grid-template-columns: 8fr 3fr;
  display: grid;
  position: relative;
}

.single-content p {
  color: var(--black);
  margin-bottom: 15px;
}

.single-sidebar {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
}

.single-sidebar img {
  width: 100%;
  box-shadow: var(--shadow);
  border-radius: 3px;
  position: sticky;
  top: 100px;
}

.single-thumb {
  width: 100%;
  height: 400px;
  margin: 20px 0;
}

.single-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.single-wrapper .single-cat-badge {
  font-size: var(--mini-size);
}

.single-cat-badge {
  margin-bottom: 10px;
}

.author-wrapper {
  grid-gap: 20px;
  border-bottom: 1px solid var(--border-color);
  grid-template-columns: 1fr 11fr;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: grid;
}

.author-profile {
  width: 110px;
  height: 110px;
}

.author-profile img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.author-content p {
  font-size: var(--mini-size);
}

.author-content h1 {
  font-size: var(--title-size);
}

.author-social {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.author-social svg {
  font-size: 18px;
}

.author-social svg:hover {
  color: var(--brand-color);
}

.help-center-wrapper {
  grid-gap: 25px;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
  display: grid;
}

.help-center-box {
  border-radius: 5px;
}

.help-center-video {
  width: 100%;
}

.help-center-video iframe {
  border-radius: 5px;
  width: 100%;
  height: 250px;
}

.help-center-content {
  margin-bottom: 10px;
}

.help-center-content h2 {
  font-size: var(--title-size);
}

.title h2 {
  font-size: var(--heading-one);
}

.copy-modal-tabs {
  margin-top: 15px;
}

.copy-modal-tabs .ant-tabs-tab {
  border: unset !important;
  padding: 9px 15px !important;
}

.copy-modal-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  font-weight: 500;
  color: #fff !important;
  font-size: var(--mini-size) !important;
}

.copy-modal-tabs .ant-tabs .ant-tabs-ink-bar {
  background: unset !important;
}

.copy-modal-tab-input {
  margin-top: unset;
  margin-bottom: 20px;
}

.new-hero-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  display: flex;
}

.new-hero-wrap .hero-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  display: flex;
}

.new-hero-wrap .landing-hero-action {
  width: 100%;
  margin: 20px auto;
}

.new-hero-wrap .landing-hero-thumb {
  width: unset;
  height: unset;
}

.new-hero-wrap .landing-hero-thumb iframe {
  border-radius: 10px;
  margin: auto;
}

.marquee-section {
  padding: 40px 0;
}

.marquee-img {
  width: 200px;
  height: auto;
}

.landing-title {
  margin: 20px 0;
}

.landing-title h3 {
  text-align: center;
  font-size: var(--heading-size);
  text-transform: capitalize;
  padding: 20px 0;
}

.process-section {
  background: #f5f6fa;
  padding: 40px 0;
}

.process-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.process-box {
  box-shadow: var(--shadow);
  grid-gap: 10px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.process-box p {
  color: #000;
}

.process-box svg {
  background: #00968812;
  border-radius: 50%;
  width: 55px;
  padding: 13px;
  font-size: 18px;
}

.testimonial-section {
  background-image: url("https://lp.simplified.com/607f32d6309ca31d63c6724d/65d890d31cb64788c9ca28ca_Ellipse%20164.svg");
  background-position: 50% 13%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 100px;
  position: relative;
}

.testimonial-box {
  grid-gap: 10px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 20px;
  display: flex;
  box-shadow: 3px 3px 0 1px #000;
}

.tes-profile {
  grid-gap: 10px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 5px;
  display: flex;
}

.tes-profile img {
  border-radius: 50%;
  width: 50px;
  overflow: hidden;
}

.tes-profile-content p {
  line-height: 20px;
  font-size: var(--mini-size);
}

.tes-profile-content h3 {
  line-height: 24px;
  font-size: var(--p-size);
}

.tes-review {
  justify-content: flex-start;
  align-items: center;
  margin-top: 3px;
  display: flex;
}

.tes-review svg {
  color: #ff4500;
  margin-right: 2px;
  font-size: 15px;
}

.left-side-flex-section {
  padding: 40px 0;
}

.left-side-flex-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  display: grid;
}

.left-side-flex-content {
  grid-gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.left-side-flex-content h2 {
  text-align: flex-start;
  text-transform: capitalize;
  font-size: 50px;
  line-height: 70px;
}

.left-side-flex-video {
  border-radius: 12px;
}

.ant-dropdown.ant-dropdown-placement-bottomRight {
  z-index: 2147483647 !important;
}

.loading-img {
  background: #fff;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.ant-select-selection-item {
  margin-right: 10px;
}

.form-control {
  padding: 10px;
  font-size: 16px;
  height: 45px !important;
}

.no-spinner::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.orders-table-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.triangle-dropdown-container {
  z-index: 1001;
  transition: all .3s;
  position: absolute;
  top: -32px;
  left: -27px;
}

@media (max-width: 480px) {
  .triangle-dropdown-container {
    top: -18px;
    left: -17.5px;
  }
}

.triangle-dropdown-btn {
  cursor: pointer;
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  background: none;
  background: linear-gradient(90deg, var(--brand-color) 0%, #a8e6e1 50%, var(--brand-color) 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 35px 0 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  animation: 3s ease-in-out infinite gradientShift;
  display: flex;
  position: relative;
  overflow: hidden;
}

.triangle-dropdown-btn:hover {
  background: linear-gradient(180deg, var(--brand-color-bold) 25%, var(--brand-color) 50%, var(--brand-color-bold) 100%);
  background-size: 200% 100%;
  animation-duration: 1.5s;
}

.triangle-dropdown-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  animation: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.triangle-internal-icon {
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  background-color: #fff;
  border-radius: 35px 0 0;
  width: 70%;
  height: 70%;
  position: absolute;
  top: 15%;
  left: 15%;
}

.triangle-menu-container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 35px;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.triangle-menu-item {
  text-align: left;
  cursor: pointer;
  color: #374151;
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  transition: background-color .2s;
  display: flex;
}

.triangle-menu-item:hover {
  background-color: #f3f4f6;
}

.triangle-click-away-overlay {
  z-index: 1000;
  position: fixed;
  inset: 0;
}

@keyframes bot-banner-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.bot-banner-skeleton-pulse {
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite bot-banner-pulse;
}

.forms-grouped-section {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  flex-direction: column;
  padding: 1rem;
  display: flex;
  box-shadow: 0 1px 2px #0000000d;
}

.forms-grouped-section-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.forms-grouped-section-title {
  color: #374151;
  font-size: .875rem;
  font-weight: 500;
}

.forms-grouped-section-buttons {
  gap: .5rem;
  display: flex;
}

.forms-btn-remove {
  color: #fff;
  cursor: pointer;
  background-color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .375rem;
  display: flex;
}

.forms-btn-remove:hover {
  background-color: #dc2626;
}

.forms-btn-add {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .375rem;
  display: flex;
}

.forms-btn-add:hover {
  background-color: #007268;
}

.forms-icon-sm {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 639px) {
  .forms-grouped-section-header {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }

  .forms-grouped-section-buttons {
    justify-content: center;
    width: 100%;
  }
}

/* [project]/pages/styles/responsive.css [client] (css) */
@media only screen and (min-width: 768px) {
  .desktop-hide, .mobile-sidebar-cross, .mobile-version-kpi-wrapper, .landing-header-toggle {
    display: none;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select, textarea, input {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .avatar-sections-row {
    grid-template-columns: 1fr;
  }

  .avatar-preview-wrap {
    justify-content: center;
  }

  .mobile-version-kpi-wrapper, .mobile-hide, .breadcrumbs {
    display: none;
  }

  header {
    padding: 0 10px;
  }

  aside.sidebar {
    width: 50px;
  }

  aside.sidebar.active {
    width: 80% !important;
  }

  .featured-status-wrapper, .chart-wrapper {
    flex-direction: column;
  }

  .chart-wrapper {
    grid-gap: 10px;
    margin-top: 15px;
    display: none;
  }

  .date-filter {
    width: 100%;
  }

  .billing-kpi-wrapper {
    grid-gap: 10px;
    grid-template-columns: 1fr;
    margin: 10px 0;
    display: grid;
  }

  .p-20 {
    padding: 0;
  }

  .analytics-wrapper {
    grid-template-columns: 1fr;
  }

  .table-container {
    margin: 0;
  }

  .table-filter-container {
    flex-direction: column;
    display: none;
  }

  .table-filter {
    flex-direction: column;
  }

  .create-user-form {
    max-width: 95%;
  }

  .pagination-wrapper {
    margin-top: unset;
  }

  .integrate-container {
    padding: 0;
  }

  .integrate-wrapper {
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }

  .settings-wrapper form {
    flex-direction: column-reverse;
    display: flex;
  }

  main {
    width: 100%;
    margin: 0;
  }

  main.active {
    width: 100%;
    margin-left: 0;
  }

  .body-wrapper {
    width: 100%;
  }

  .search-box input {
    width: 230px;
    height: 38px;
  }

  .breadcrumbs-and-filter {
    justify-content: flex-end;
  }

  .featured-status-wrapper {
    grid-gap: 10px;
    margin-top: 10px;
    overflow-x: scroll;
  }

  .search-box {
    display: none;
  }

  .chart-svg-wrapper {
    height: 170px;
    overflow: hidden;
  }

  aside.sidebar.mobile-active {
    z-index: 999;
    width: 100%;
    position: fixed;
  }

  .not-found-content h1 {
    font-size: 120px;
    line-height: 160px;
  }

  .not-found-wrapper {
    max-width: 95%;
  }

  .chat-body-sidebar {
    min-width: unset;
    min-height: unset;
    max-height: unset;
    max-width: 100%;
    height: 100%;
    padding: 10px;
  }

  .admin-header {
    width: 100%;
    min-width: unset;
    max-width: unset;
    height: unset;
    min-height: unset;
    z-index: 1;
    padding: unset;
    flex-direction: column;
  }

  .admin-page-wrapper {
    height: unset;
    flex-direction: column;
  }

  .admin-header ul:last-child {
    display: none;
  }

  .admin-header ul {
    grid-gap: 0px;
    flex-direction: column;
    flex-direction: revert;
    background: #fff;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 10px;
    display: flex;
    position: fixed;
    bottom: 0;
    box-shadow: 0 0 5px #d3d3d3;
  }

  .recent-chat {
    height: unset;
    max-height: unset;
  }

  .chatbox-message-body {
    display: none;
  }

  .recent-chat-wrap {
    padding-bottom: 30px;
  }

  .chat-title-big h2 {
    font-size: 23px;
    font-weight: 600;
  }

  .admin-header ul li svg {
    color: var(--gray);
    font-size: 20px;
  }

  .admin-header ul li img {
    width: 21px;
  }

  .chat-body-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .chatbox-message-body.active {
    background: #fff;
    display: block;
  }

  .chatbox-header.active {
    z-index: 999999999;
    background: #fff;
    width: 100%;
    position: sticky;
    top: 60px;
    box-shadow: 0 0 5px #d3d3d3;
  }

  .chatbot-creator {
    display: none;
  }

  .chatbox-header-right-options {
    grid-gap: 10px;
  }

  .chatbox-header-icon svg {
    font-size: 18px;
  }

  .chatbox-creator p {
    color: gray;
    font-size: 10px;
  }

  .chatbot-creator img {
    border-radius: 2px;
    width: 15px;
  }

  .mobile-header-burger-menu {
    cursor: pointer;
  }

  .mobile-header-burger-menu img {
    cursor: pointer;
    width: 30px;
  }

  .chatbox-footer {
    background: #fff;
    width: 100%;
    position: fixed;
    bottom: 0;
  }

  .chat-conversation-wrapper {
    padding: 0 5px;
  }

  .message-body li {
    grid-gap: 5px;
    margin-bottom: 20px;
  }

  .chatbox-conversation {
    height: 100%;
    max-height: 100%;
  }

  .chatbox {
    position: fixed;
    inset: 0;
  }

  ul.message-body {
    padding: 60px 0 0;
  }

  .analytics-guide {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  header.active {
    z-index: 999;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 3px #d3d3d3;
  }

  .chatbox-close-icon {
    font-size: 25px !important;
  }

  .message-day-slot-item {
    padding: 1px 10px;
  }

  .chatbot-widget-header-right {
    position: static;
  }

  .chatbot-widget {
    transition: unset;
  }

  .search-model.active {
    width: 90%;
    margin: auto;
    right: 20px;
  }

  .search-model input {
    width: 100%;
  }

  .register-wrapper form {
    width: 100%;
    padding: 30px 15px 20px;
  }

  .user-profile-section {
    margin: 5px;
  }

  .user-profile-body form {
    max-width: 100%;
    padding: 15px;
  }

  .user-profile-body {
    margin-top: 0;
    padding: 12px;
  }

  .user-profile-header-thumb {
    width: 100px;
    height: 100px;
  }

  .user-profile-header-wrapper {
    background: #b4e6ff;
    padding: 10px;
  }

  .user-join-date p {
    display: none;
  }

  .chatbot-widget-wrapper {
    position: unset;
    width: 100%;
    height: 100%;
  }

  .chatbot-widget.active {
    border-radius: unset;
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
  }

  .chat-conversation-wrapper {
    height: 100%;
    min-height: unset;
    max-height: unset;
    padding-bottom: 0;
  }

  .chatbot-footer {
    z-index: 99;
    background: #fff;
    width: 100%;
    padding: 10px;
  }

  .chatbot-footer form {
    width: 100%;
    margin: auto;
  }

  .chatbot-recipient-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
    box-shadow: 0 0 5px #d3d3d3;
  }

  .chatbot-widget-header {
    border-radius: unset;
    border-bottom: 2px solid #d3d3d31f;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    display: flex;
    overflow: hidden;
  }

  .chatlogs-chatbot-widget-header {
    background: unset;
  }

  .chatbot-iframe-widget-header {
    border-radius: unset;
  }

  .chatbot-iframe-footer-container {
    width: 100% !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .chatbot-widget-recipient-details h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 13px;
  }

  .chatbot-mini-preview-wrap {
    border-top-left-radius: 20px;
    padding: 8px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  aside.sidebar ul li a {
    justify-content: flex-start;
  }

  .featured-status-thumb {
    display: none;
  }

  .featured-status-item {
    width: 200px;
    height: 150px;
    padding: 20px;
  }

  .blank {
    display: none;
  }

  .date-item input {
    font-size: 13px;
  }

  .dashboard-kpi-wrapper {
    grid-gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 10px;
    display: grid;
  }

  .dashboard-new-design-header {
    grid-gap: 14px;
    padding-top: unset;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .chatlog-profile-card, .chatbot-widget-recipient-details p {
    display: none;
  }

  .kpi-item-header {
    grid-gap: 5px;
  }

  .chatbox-conversation-form {
    width: 100%;
  }

  .details-sidebar {
    width: 100%;
    padding: 15px;
    right: -100px;
  }

  .refresh-icon svg {
    fill: #607d8b;
    border-radius: unset;
    width: unset;
    height: unset;
    font-size: 25px !important;
  }

  .bot-message-wrapper {
    height: 45vh !important;
  }

  .bulk-message-wrapper {
    grid-template-columns: 1fr;
  }

  .bulk-media-thumb {
    width: 100%;
  }

  .bulk-message-container {
    margin: unset;
    background: #fff;
    padding: 10px;
  }

  .bulk-message-header {
    grid-gap: 10px;
    margin-top: 0;
  }

  .bulk-message-header h3 {
    font-size: 16px;
  }

  .table-wrap-bulk {
    height: 300px;
    overflow-y: auto;
  }

  .language-select-box {
    color: gray;
  }

  .chatbot-widget-options svg, .chatbot-widget-minimize svg, .delete-chat-icon svg {
    fill: gray;
    color: gray;
  }

  .header-profile {
    grid-gap: 10px;
    align-items: center;
  }

  .header-profile p {
    padding: 2px;
    font-size: 13px;
    line-height: 18px;
  }

  .header-profile .flex {
    padding-left: 0 !important;
  }

  .upgrate-progress {
    background: #0096881a;
    border-radius: 15px;
    align-items: center;
    width: fit-content;
    height: 100%;
    margin: 0;
    padding: 4px;
    display: flex;
  }

  .upgrate-progress p {
    white-space: nowrap;
    margin: 0;
    font-size: 12px;
  }

  .chatbot-message-body {
    padding: 5px !important;
  }

  .landing-header-wrapper {
    border-radius: unset;
    max-width: 100%;
    padding: 10px 20px;
  }

  .landing-step-ss {
    grid-gap: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .video-demo-wrapper {
    max-width: 100%;
    margin: auto;
  }

  .footer-menu .landing-page-menu {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu-wrap li:before {
    display: none;
  }

  .footer-logo img {
    margin-left: unset;
  }

  .landing-page-menu {
    grid-gap: 8px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .landing-page-menu li {
    width: max-content;
  }

  .accordion-container {
    max-width: 95%;
    margin: 20px auto;
  }

  .landing-hero-thumb {
    display: none;
  }

  .landing-hero-wrap {
    grid-template-columns: 1fr;
  }

  .call-to-action-wrapper .landing-hero-action button {
    width: fit-content;
  }

  .call-to-action-wrapper {
    max-width: 95%;
    padding: 25px;
  }

  .landing-container {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .register-thumb {
    display: none;
  }

  .landing-header-menu {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .landing-header-menu.show-menu {
    grid-gap: 5px;
    flex-direction: column;
    align-items: flex-end;
  }

  .menu-list-text-item.active {
    display: block;
  }

  .menu-list-text-item.active a {
    font-size: 16px;
  }

  .landing-header-right.active {
    display: block;
  }

  .landing-header-wrapper.menu-open {
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
  }

  .sign-in-btn, .landing-hero-action-btn {
    padding: 7px 12px;
    font-size: 14px;
  }

  .spacing {
    display: none;
  }

  .action-header-wrap {
    justify-content: flex-end;
    width: 100%;
  }

  .hero-content h1 {
    max-width: 95%;
    font-size: 42px;
  }

  .bot-message-wrapper-iframe {
    max-height: unset;
    padding-bottom: var(--mobile-footer-height) !important;
  }

  .bot-message-wrapper-iframe::-webkit-scrollbar {
    width: 7px;
    overflow-y: hidden;
  }

  .bot-message-wrapper-iframe::-webkit-scrollbar-track {
    background: #f1f1f193;
    overflow-y: hidden;
  }

  .bot-message-wrapper-iframe::-webkit-scrollbar-thumb {
    background: #cccccc7c;
    border-radius: 10px;
    overflow-y: hidden;
  }

  .bot-message-wrapper-iframe::-webkit-scrollbar-thumb:hover {
    background: #d3d3d3;
  }

  .chatbot-iframe-left p {
    display: unset;
  }

  .register-container {
    padding-top: unset;
  }

  .already-have-account {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-button {
    width: 100%;
  }

  .login-with-google-icon {
    margin-bottom: unset;
  }

  .header-nav, .upgrate-btn {
    display: none;
  }

  .setting-panel {
    grid-gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 25px;
    padding: 15px;
  }

  .mobile-sidebar-cross {
    color: red;
    cursor: pointer;
    z-index: 9999999;
    font-size: 35px;
    position: absolute;
    top: 70px;
    right: 15px;
  }

  .mobile-sidebar-wrapper.active {
    z-index: 999;
    background: #00000069;
    width: 100%;
    height: 100vh;
    position: fixed;
  }

  .header-logo {
    width: 35px;
    height: 35px;
  }

  .sidebar .form-button, .active-link svg, .active-link span {
    width: max-content;
  }

  .bot-upgrate-alart {
    grid-gap: 10px;
    bottom: 20px;
    left: 10px;
    right: 10px;
  }

  .bot-upgrate-alart a {
    grid-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }

  .list-bot-option-wrap a {
    width: 100%;
  }

  .dot-badge {
    display: none;
  }

  .table-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .table-title {
    grid-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .table-header-buttons {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .table-header .header-content h3 {
    text-align: center;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .table-header .button-group {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .table-header .button-group button {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 120px;
    height: 32px;
    padding: 4px 8px;
    display: flex;
  }

  .table-header .button-group button .anticon {
    margin-right: 4px;
  }

  .list-of-the-bot-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .list-bot-option-wrap {
    grid-gap: 14px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .bot-action-wrap {
    grid-gap: 10px;
    border-top: 1px solid #d3d3d34a;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 10px;
    display: flex;
  }

  .list-bot-logo {
    width: 50px;
    height: 50px;
    margin-right: 0;
    margin-left: 0 !important;
  }

  .list-bot-logo svg, .demo-video-tut-icon {
    font-size: 30px;
  }

  .demo-video-tut {
    text-align: inherit;
    border: 1px solid #d3d3d34a;
    border-radius: 5px;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .chatbot-config-wrapper {
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    padding: 15px 0;
    display: grid;
    padding-top: 20px !important;
  }

  .demo-video-modal-wrapper iframe {
    border-radius: 5px;
    width: 100%;
  }

  .demo-video-modal-wrapper {
    width: 95%;
    padding: 10px;
  }

  .list-bot-profile {
    grid-gap: 8px;
    border-bottom: 1px solid #d3d3d34a;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .list-bot-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .list-bot-content h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 14px;
    overflow: hidden;
  }

  .landing-header-wrapper.active-sticky {
    padding: unset;
  }

  .accordion-title {
    padding: 10px 0;
  }

  .desktop-header-menu-wrapper {
    width: 100%;
    max-width: 100%;
    margin: unset;
    border-radius: unset;
    justify-content: center;
    align-items: center;
  }

  .desktop-header-menu-wrapper.active-sticky {
    padding: 10px 20px;
  }

  .mobile-header-left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .mobile-header-left .menu-list-text-item {
    border-bottom: 1px solid #d3d3d373;
    width: 100%;
    padding-bottom: 10px;
  }

  .mobile-header-left .menu-list-text-item:last-child {
    border-bottom: unset;
  }

  .mobile-header-menu-wrapper {
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border-top: 1px solid #d3d3d3;
    width: 100%;
    height: 100vh;
    padding: 30px;
    transition: all .3s ease-in-out;
    position: fixed;
    top: 55px;
  }

  .mobile-header-menu-wrapper.active {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
    top: 66px;
  }

  .mobile-header-right {
    margin-top: 20px;
  }

  .alart-error {
    padding: unset;
    margin-top: unset;
    grid-gap: 10px;
    border: 1px solid #b22222;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding: 20px 10px;
  }

  .alart-content h2 {
    margin-bottom: 10px;
  }

  .alart-content h2, .alart-content p {
    text-align: center;
  }

  .alart-content p {
    line-height: 20px;
  }

  .plan-and-action-button-wrap {
    display: none;
  }

  .ant-drawer-header.ant-drawer-header-close-only, .ant-drawer-body {
    padding: 20px 25px !important;
  }

  .ant-drawer-header {
    padding: 16px 20px !important;
  }

  .drawer-logo {
    height: 30px;
  }

  .flex-label-icon span {
    width: max-content;
  }

  .three-dot-icon svg {
    font-size: 20px !important;
  }

  .toggle-bot-icon {
    cursor: pointer;
    width: 60px;
    height: 60px;
    margin: 30px;
    position: fixed;
    bottom: 0;
    right: 0;
  }

  .update-chatbot-container {
    flex-direction: column;
    margin-top: 15px;
  }

  .ant-tabs-nav-wrap {
    width: 100%;
  }

  .update-change-btn {
    margin: unset;
    width: max-content;
    margin-top: 10px;
    padding: 10px 30px;
  }

  .config-bot-widget {
    width: unset !important;
    height: unset !important;
    position: unset !important;
  }

  .create-chatbot-final-wrapper {
    grid-gap: 10px;
    flex-direction: column-reverse;
    display: flex;
  }

  .create-chatbot-final-step {
    grid-template-columns: 1fr;
  }

  .create-chatbot-file-wrapper {
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }

  .download-btn-wrap {
    width: 100%;
    padding: 10px;
  }

  .create-chatbot-container {
    background: #fbfbfb;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    padding: 20px;
    position: relative;
  }

  .create-chatbot-file-body {
    min-height: 100%;
    max-height: 100%;
    padding-right: unset;
  }

  .chatbot-upload-file {
    width: 100%;
  }

  .css-b62m3t-container {
    width: 100% !important;
  }

  .remove-scroll {
    padding-right: unset;
  }

  .form-group label {
    flex-wrap: wrap;
    line-height: 17px;
  }

  .prompt-group {
    margin-bottom: 15px !important;
  }

  .create-title {
    margin-bottom: 3px;
  }

  .prompt-group input {
    margin-top: 5px;
    padding: 10px;
  }

  .ap-content .form-group input, .ap-content .form-group textarea {
    padding: 10px;
  }

  .remove-padding {
    padding-right: 10px;
  }

  .custom-avatar-wrapper {
    grid-gap: 0px;
    grid-template-columns: 1fr;
    display: grid;
  }

  .chatbot-upload-image-wrap {
    width: 100% !important;
  }

  .chatbot-upload-content-wrap h3 {
    text-align: center;
    font-size: 18px;
  }

  .embadded-btn {
    position: unset;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }

  .prompt-wrapper {
    padding-right: unset;
  }

  .preview-title h2 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
  }

  .uploaded-file-icon-and-name {
    padding: 0 5px;
  }

  .ant-tabs-tab {
    padding: 10px !important;
  }

  .marketplace-wrapper {
    grid-gap: 10px;
    grid-template-columns: 1fr;
    display: grid;
  }

  .marketplace-title h2 {
    font-size: 20px;
  }

  .marketplace-details-item {
    width: 100%;
    padding: 20px;
  }

  .marketplace-popup-wrap {
    grid-gap: 15px;
    width: 95%;
    height: auto;
    padding: 40px;
  }

  .all-bot-list {
    margin-bottom: 10px;
    margin-left: 0;
    padding-left: 0;
  }

  .list-bot-profile .all-bot-list {
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .dashboard.all-bot-list {
    width: 100%;
    margin-bottom: 10px;
  }

  .add-file-or-link-btn-wrap {
    margin: unset;
    min-height: auto;
  }

  .sub-heading {
    width: max-content;
    font-size: 12px;
  }

  .code-btn {
    padding: 10px 0;
    font-size: 13px;
  }

  .bot-copy-wrap {
    width: 100%;
  }

  .ant-popover-content {
    width: 98%;
  }

  .price-radio-group {
    flex-direction: column;
    width: 100%;
  }

  .price-radio {
    width: 100%;
    padding: 5px 10px;
  }

  .subscribe-btn {
    position: unset;
  }

  .dashboard-title-wrap {
    margin: 5px 0;
  }

  .copy-site-link-btn {
    padding: 8px;
    font-size: 13px;
    width: 140px !important;
  }

  .copy-site-link-btn svg {
    font-size: 15px;
  }

  .code-content {
    max-width: 100%;
  }

  .code-container {
    margin-top: 0;
    padding: 10px;
  }

  .code-wrapper {
    margin: 10px 0;
  }

  .chatbot-step-title {
    margin-bottom: 20px;
  }

  .marketplace-btn {
    padding: 10px 15px;
    font-size: 12px;
  }

  .marketplace-item {
    grid-gap: 10px;
    border-radius: 5px;
    padding: 15px 20px;
  }

  .marketplace-status {
    padding: 0 10px;
    font-size: 12px;
    top: 15px;
    right: 15px;
  }

  .marketplace-item-thumb {
    height: 45px;
  }

  .header-section {
    margin-bottom: 20px;
  }

  .marketplace-title {
    grid-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .marketplace-title .form-group {
    width: 100%;
  }

  .marketplace-header-row {
    grid-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .marketplace-header-left {
    width: 100%;
  }

  .marketplace-header-right {
    text-align: left;
    width: 100%;
  }

  .marketplace-character-count {
    text-align: left;
  }

  .bot-dropdown {
    width: 100% !important;
  }

  .bot-content-details {
    grid-gap: 0px;
    flex-wrap: wrap;
  }

  .bot-content-details .desktop-text {
    display: none !important;
  }

  .bot-content-details .mobile-text {
    display: inline !important;
  }

  .bot-content-details a .desktop-text, .bot-content-details button .desktop-text {
    display: none !important;
  }

  .bot-content-details a .mobile-text, .bot-content-details button .mobile-text {
    display: inline !important;
  }

  .react-tabs {
    grid-gap: 10px;
    flex-direction: column;
    width: 100%;
  }
}

@media only screen and (min-width: 640px) {
  .marketplace-header-row, .marketplace-header-left {
    align-items: center;
  }

  .bot-dropdown {
    width: auto !important;
  }

  .landing-title h2 {
    font-size: 32px;
  }

  .landing-title p {
    max-width: 90%;
  }

  .landing-title {
    margin-top: unset;
  }

  .billing-kpi-item {
    border: 1px solid #d3d3d369;
    border-radius: 5px;
    padding: 15px;
  }

  .dashboard-header-group .all-bot-list {
    margin-bottom: unset;
  }

  .chart-header-wrapper {
    grid-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .export-xlsx-btn {
    background: var(--white-color);
    cursor: pointer;
    border: 1px solid var(--brand-color-light);
    box-shadow: unset;
    padding: 10px;
  }

  .new-kpi-item {
    padding: 15px;
  }

  .dashboard-parent-tab-header {
    width: 100%;
  }

  .dashboard-header-group {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .code-modal-wrapper.whatsapp-bot {
    height: auto;
    padding: 15px 10px;
  }

  .thumb-and-content-kpi {
    grid-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .single-container {
    grid-template-columns: 1fr;
  }

  .latest-blog-container {
    grid-gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }

  .breadcrumb li {
    font-size: 13px;
    display: none;
  }

  .author-wrapper {
    grid-gap: 20px;
    box-shadow: var(--shadow);
    background: #fff;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    padding: 20px;
  }

  .featured-blog-wrapper {
    grid-gap: 25px;
    background: var(--bg-color);
    border-radius: 5px;
    grid-template-columns: 1fr;
    padding: 15px;
    display: grid;
  }

  .featured-blog-thumb {
    width: 100%;
    height: 200px;
  }

  .help-center-wrapper {
    grid-gap: 15px;
    grid-template-columns: 1fr;
  }

  .help-center-video iframe {
    height: 180px;
  }

  .title h2 {
    font-size: var(--title-size);
  }

  .details-thumb-and-content {
    flex-direction: row;
  }

  .dashboard-kpi-item {
    min-height: 170px;
    padding: 15px;
  }

  .kpi-item-icon svg {
    font-size: 25px;
  }

  .kpi-item-icon {
    width: 50px;
    height: 50px;
  }

  .dashboard-dropdown .bot-date-filter-dropdown {
    min-width: 130px;
  }

  .export-xlsx-btn p {
    font-size: var(--tiny-size);
    font-weight: 500;
  }

  .error-img {
    width: 70px;
  }

  .list-bot-logo img {
    width: 40px;
    height: 40px;
  }

  .ctr-content {
    grid-gap: 10px;
  }

  .ctr-content p {
    font-size: var(--mini-size);
  }

  .slick-prev {
    left: -20px;
  }

  .slick-next {
    right: -20px;
  }

  .chatbot-type-action {
    flex-direction: column;
  }

  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .add-link-model {
    width: 90%;
    height: 95vh;
    overflow-y: scroll;
  }

  .addlink-modal-cancel-icon {
    position: fixed;
    top: 65px;
    right: 85px;
    color: gray !important;
  }

  .dashboard-header-right {
    width: 100%;
  }

  .kpi-right-item-wrap {
    flex-direction: column;
    width: 100%;
  }

  .dashboard-dropdown {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .orders-table-header {
    flex-direction: column;
    align-items: center;
  }

  .orders-table-header h3 {
    text-align: center;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .orders-table-header .ant-space {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .orders-table-header .ant-space button {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 120px;
    height: 32px;
    padding: 4px 8px;
    display: flex;
  }

  .orders-table-header .ant-space button .anticon {
    margin-right: 4px;
  }

  .bulk-actions-bar {
    margin-top: 10px;
  }

  .responsive-table-container {
    margin-top: 10px;
    overflow-x: auto;
  }

  .responsive-table-container .ant-table-wrapper {
    width: 100%;
  }

  .responsive-table-container .ant-table {
    min-width: 700px;
  }

  .responsive-table-container .ant-table-pagination {
    justify-content: center;
    padding: 10px 0;
    display: flex;
  }

  .create-chatbot-btn {
    display: none;
  }

  .orders-management-title-mobile {
    font-size: 16px !important;
  }
}

/* [project]/pages/styles/leadgen-config.css [client] (css) */
.leadgen-input {
  width: 100%;
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: .625rem .75rem;
}

.leadgen-input:focus {
  border-color: #009688;
  outline: none;
  box-shadow: 0 0 0 3px #0096881a;
}

.leadgen-input-edit {
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  width: 100%;
  padding: .5rem .75rem;
}

.leadgen-input-edit:focus {
  border-color: #009688;
  outline: none;
  box-shadow: 0 0 0 3px #0096881a;
}

.leadgen-btn-remove-large {
  color: #fff;
  cursor: pointer;
  background-color: #b91c1c;
  border: 1px solid #b91c1c;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  width: 100%;
  min-width: 6rem;
  padding: .375rem .5rem;
  font-size: .75rem;
  display: flex;
}

.leadgen-btn-add-large {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  width: 100%;
  min-width: 9rem;
  padding: .375rem .5rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.leadgen-btn-add-large:hover {
  background-color: #007268;
}

.leadgen-category-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.leadgen-category-card.collapsed {
  max-height: 60px;
}

.leadgen-category-card.expanded {
  max-height: 1000px;
}

.leadgen-category-header {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-bottom: 1px solid #e5e7eb;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  padding: 1rem;
  display: flex;
}

.leadgen-category-header:hover {
  background-color: #f3f4f6;
}

@media (min-width: 640px) {
  .leadgen-category-header {
    flex-direction: row;
    align-items: center;
  }
}

.leadgen-category-title {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .leadgen-category-title {
    font-size: 1.125rem;
  }
}

.leadgen-category-actions {
  gap: .5rem;
  display: flex;
}

.leadgen-category-content {
  opacity: 1;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  transition: all .3s ease-in-out;
  display: flex;
  transform: translateY(0);
}

.leadgen-category-card.collapsed .leadgen-category-content {
  opacity: 0;
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  transform: translateY(-10px);
}

.leadgen-form-field {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.leadgen-form-label {
  color: #374151;
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.leadgen-select-container {
  width: 100%;
  font-family: Poppins, sans-serif;
}

.leadgen-modal-overlay {
  z-index: 9999;
  background-color: #00000080;
  transition: opacity .3s;
  position: fixed;
  inset: 0;
}

.leadgen-modal-overlay-visible {
  opacity: 1;
}

.leadgen-modal-overlay-hidden {
  opacity: 0;
  pointer-events: none;
}

.leadgen-modal-container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
}

.leadgen-modal-content {
  background-color: #fff;
  border-radius: .5rem;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px #00000040;
}

.leadgen-modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.leadgen-modal-title {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
}

.leadgen-modal-body {
  padding: 1.5rem;
}

.leadgen-modal-footer {
  border-top: 1px solid #e5e7eb;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  display: flex;
}

.leadgen-preview-section {
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px #0000000d;
}

.leadgen-preview-header {
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.leadgen-preview-title-container {
  align-items: flex-start;
  display: flex;
}

.leadgen-preview-title {
  color: #1f2937;
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.leadgen-preview-subtitle {
  color: #4b5563;
}

.leadgen-tooltip-container {
  margin-top: .375rem;
  margin-left: .5rem;
  display: inline-block;
  position: relative;
}

.leadgen-tooltip-icon {
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
}

.leadgen-tooltip-content {
  z-index: 9999;
  width: 16rem;
  margin-bottom: .5rem;
  display: none;
  position: absolute;
  bottom: 100%;
  left: -10rem;
}

@media (min-width: 640px) {
  .leadgen-tooltip-content {
    width: 12rem;
    left: 0;
  }
}

.leadgen-tooltip-container:hover .leadgen-tooltip-content {
  display: block;
}

.leadgen-tooltip-inner {
  color: #fff;
  background-color: #1f2937;
  border-radius: .75rem;
  padding: .75rem;
  font-size: .75rem;
  position: relative;
  box-shadow: 0 10px 15px -3px #0000001a;
}

@media (min-width: 640px) {
  .leadgen-tooltip-inner {
    font-size: .875rem;
  }
}

.leadgen-empty-state {
  width: 100%;
  margin-top: 2rem;
}

.leadgen-empty-state-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  display: flex;
}

.leadgen-action-button {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  padding: .5rem 1rem;
}

.leadgen-action-button:hover {
  background-color: #007268;
}

.leadgen-action-button-secondary {
  color: #374151;
  cursor: pointer;
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  padding: .5rem 1rem;
}

.leadgen-action-button-secondary:hover {
  background-color: #f9fafb;
}

.leadgen-grid-main {
  grid-template-columns: 1fr;
  gap: 1rem;
  display: grid;
}

@media (min-width: 1024px) {
  .leadgen-grid-main {
    grid-template-columns: 1fr 1fr;
  }
}

.leadgen-grid-form {
  z-index: 10;
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 1px 2px #0000000d;
}

.leadgen-form-section-title {
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.leadgen-icon-sm {
  width: 1rem;
  height: 1rem;
}

.leadgen-icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.leadgen-prompt-item {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 5px;
}

.leadgen-prompt-item.active {
  background: #fff;
  padding: 5px;
}

.leadgen-prompt-item .leadgen-prompt-content {
  display: none;
}

.leadgen-prompt-item.active .leadgen-prompt-content {
  display: block;
}

.leadgen-prompt-title {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.leadgen-prompt-icon-text-wrap {
  grid-gap: 10px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  transition: all .3s ease-in-out;
  display: flex;
}

.leadgen-prompt-icon-text-wrap:hover {
  background-color: #f3f4f6;
  border-radius: .375rem;
  padding: .25rem;
}

.leadgen-prompt-icon-text-wrap svg, .leadgen-prompt-icon-text-wrap span {
  color: #000;
  font-size: .875rem;
  font-weight: 500;
}

.leadgen-prompt-icon-text-wrap svg {
  font-size: 35px;
}

.leadgen-prompt-icon-text-wrap .leadgen-chevron {
  transition: transform .3s ease-in-out;
}

.leadgen-prompt-icon-text-wrap .leadgen-chevron.active {
  transform: rotate(180deg);
}

.leadgen-uploaded-file-icon-and-name {
  grid-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 5px;
  display: flex;
}

.leadgen-uploaded-file-icon-and-name span, .leadgen-uploaded-file-icon-and-name svg {
  color: #a5a5a5;
  word-break: break-all;
}

.leadgen-uploaded-file-icon-and-name span {
  width: 100%;
  line-height: 24px;
}

.leadgen-uploaded-file-action {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.leadgen-uploaded-file-action svg {
  color: #a5a5a5;
}

.leadgen-created-prompt-item {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.leadgen-created-prompt-delete-icon {
  color: var(--danger-color, #ef4444) !important;
}

.leadgen-delete-icon {
  cursor: pointer;
  color: #607d8b !important;
  font-size: 21px !important;
}

.leadgen-selected-icon {
  cursor: pointer;
  font-size: 22px;
  color: var(--brand-color, #009688) !important;
}

.leadgen-chevron {
  transition: all .3s ease-in-out;
}

.leadgen-chevron.active {
  transform: rotate(180deg);
}

.leadgen-prompt-item-group {
  border-bottom: 1px solid #d3d3d354;
  padding-top: 10px;
  padding-bottom: 8px;
}

.leadgen-prompt-item-group:last-child {
  border-bottom: unset;
  padding-bottom: unset;
  overflow-x: auto;
}

.leadgen-prompt-item-group p {
  color: #000;
  width: fit-content;
  font-size: .875rem;
  font-weight: 600;
}

.leadgen-prompt-item-group h3 {
  color: #777;
  font-size: .75rem;
  font-weight: 500;
}

.leadgen-prompt-badge {
  background: #0096882b;
  border-radius: 20px;
  margin-top: 5px;
  padding: 0 10px;
  display: inline-block;
  color: #009688 !important;
  font-size: .75rem !important;
}

/* [project]/pages/styles/ordering-config.css [client] (css) */
.ordering-input {
  width: 100%;
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: .625rem .75rem;
}

.ordering-input:focus {
  border-color: #009688;
  outline: none;
  box-shadow: 0 0 0 3px #0096881a;
}

.ordering-input-edit {
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  width: 100%;
  padding: .5rem .75rem;
}

.ordering-input-edit:focus {
  border-color: #009688;
  outline: none;
  box-shadow: 0 0 0 3px #0096881a;
}

.ordering-category-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: all .3s ease-in-out;
  overflow: visible;
}

.ordering-category-card.collapsed {
  max-height: 60px;
}

.ordering-category-card.expanded {
  max-height: 1000px;
}

.ordering-category-header {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-bottom: 1px solid #e5e7eb;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  padding: 1rem;
  display: flex;
}

.ordering-category-header:hover {
  background-color: #f3f4f6;
}

@media (min-width: 640px) {
  .ordering-category-header {
    flex-direction: row;
    align-items: center;
  }
}

.ordering-category-title {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .ordering-category-title {
    font-size: 1.125rem;
  }
}

.ordering-category-actions {
  gap: .5rem;
  display: flex;
}

.ordering-category-content {
  opacity: 1;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  transition: all .3s ease-in-out;
  display: flex;
  overflow: visible;
  transform: translateY(0);
}

.ordering-category-card.collapsed .ordering-category-content {
  opacity: 0;
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  transform: translateY(-10px);
}

.ordering-form-field {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.ordering-form-label {
  color: #374151;
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.ordering-select-container {
  width: 100%;
  font-family: Poppins, sans-serif;
}

.ordering-modal-overlay {
  z-index: 9999;
  background-color: #00000080;
  transition: opacity .3s;
  position: fixed;
  inset: 0;
}

.ordering-modal-overlay-visible {
  opacity: 1;
}

.ordering-modal-overlay-hidden {
  opacity: 0;
  pointer-events: none;
}

.ordering-modal-container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
}

.ordering-modal-content {
  background-color: #fff;
  border-radius: .5rem;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px #00000040;
}

.ordering-modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.ordering-modal-title {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
}

.ordering-modal-body {
  padding: 1.5rem;
}

.ordering-modal-footer {
  border-top: 1px solid #e5e7eb;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  display: flex;
}

.ordering-preview-section {
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px #0000000d;
}

.ordering-preview-header {
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.ordering-preview-title-container {
  align-items: flex-start;
  display: flex;
}

.ordering-preview-title {
  color: #1f2937;
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.ordering-preview-subtitle {
  color: #4b5563;
}

.ordering-empty-state {
  width: 100%;
  margin-top: 2rem;
}

.ordering-empty-state-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  display: flex;
}

.ordering-action-button {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  padding: .5rem 1rem;
}

.ordering-action-button:hover {
  background-color: #007268;
}

.ordering-action-button-secondary {
  color: #374151;
  cursor: pointer;
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  padding: .5rem 1rem;
}

.ordering-action-button-secondary:hover {
  background-color: #f9fafb;
}

.ordering-grid-main {
  grid-template-columns: 1fr;
  gap: 1rem;
  display: grid;
}

@media (min-width: 1024px) {
  .ordering-grid-main {
    grid-template-columns: 1fr 1fr;
  }
}

.ordering-grid-form {
  z-index: 10;
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 1px 2px #0000000d;
}

.ordering-form-section-title {
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.ordering-icon-sm {
  width: 1rem;
  height: 1rem;
}

.ordering-icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.question-prompt-box {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: .5rem;
  margin-top: 1rem;
  padding: .5rem;
}

.ordering-btn-remove {
  color: #fff;
  cursor: pointer;
  background-color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .375rem;
  display: flex;
}

.ordering-btn-remove:hover {
  background-color: #dc2626;
}

.ordering-btn-add {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .375rem;
  display: flex;
}

.ordering-btn-add:hover {
  background-color: #007268;
}

.ordering-btn-remove-large {
  color: #fff;
  cursor: pointer;
  background-color: #b91c1c;
  border: 1px solid #b91c1c;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  width: 100%;
  min-width: 4rem;
  padding: .375rem .5rem;
  font-size: .75rem;
  display: flex;
}

@media (max-width: 640px) {
  .ordering-btn-remove-large {
    min-width: 3rem;
    padding: .25rem .375rem;
    font-size: .625rem;
  }
}

.ordering-btn-add-large {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  width: 100%;
  min-width: 6rem;
  padding: .375rem .5rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

@media (max-width: 640px) {
  .ordering-btn-add-large {
    min-width: 4rem;
    padding: .25rem .375rem;
    font-size: .625rem;
  }
}

.ordering-btn-add-large:hover {
  background-color: #007268;
}

.ordering-prompt-icon-text-wrap {
  cursor: pointer;
  flex-wrap: nowrap;
  flex: 1;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  transition: all .3s ease-in-out;
  display: flex;
}

.ordering-prompt-icon-text-wrap:hover {
  background-color: #f3f4f6;
  border-radius: .375rem;
  padding: .25rem;
}

.ordering-prompt-icon-text-wrap .ordering-chevron {
  transition: transform .3s ease-in-out;
}

.ordering-prompt-icon-text-wrap .ordering-chevron.active {
  transform: rotate(180deg);
}

.ordering-prompt-icon-text-wrap span {
  white-space: nowrap;
  flex-shrink: 2;
  overflow: visible;
}

.disabled-delete {
  pointer-events: none;
  opacity: .5 !important;
  cursor: not-allowed !important;
}

.disabled-delete:hover {
  opacity: .5 !important;
  cursor: not-allowed !important;
}

.ordering-prompt-title {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  width: 100%;
  min-width: 0;
  display: flex;
}

.ordering-prompt-title span {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .ordering-prompt-title span {
    max-width: 120px;
  }
}

.required-badge {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .025em;
  text-align: center;
  white-space: nowrap;
  background-color: #f87171;
  border-radius: .25rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 4rem;
  margin-left: auto;
  padding: .125rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  display: inline-flex;
}

.ordering-category-header, .ordering-category-actions, .ordering-grid-form, .ordering-preview-section {
  overflow: visible;
}

.ordering-tooltip {
  z-index: 50;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: #1f2937;
  border-radius: .75rem;
  padding: .75rem;
  font-size: .75rem;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  position: absolute;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

@media (min-width: 640px) {
  .ordering-tooltip {
    width: 20rem;
    max-width: 20rem;
  }
}

@media (max-width: 639px) {
  .ordering-tooltip {
    width: 12rem;
    max-width: 12rem;
  }
}

.ordering-tooltip.right-full {
  margin-right: .5rem;
  bottom: 0;
  right: 100%;
}

.ordering-tooltip.left-full {
  margin-left: .5rem;
  bottom: 0;
  left: 100%;
}

.ordering-tooltip.bottom-full {
  margin-bottom: .5rem;
  bottom: 100%;
  right: 0;
}

@media (max-width: 639px) {
  .ordering-tooltip.right-full {
    margin-bottom: .5rem;
    margin-right: 0;
    bottom: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .ordering-tooltip.left-full {
    margin-bottom: .5rem;
    margin-left: 0;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .ordering-tooltip.bottom-full {
    margin-bottom: .5rem;
    bottom: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.group:hover .ordering-tooltip {
  opacity: 1;
  visibility: visible;
}

.has-quantity-container {
  flex-direction: column;
  display: flex;
}

.desktop-quantity-text {
  display: inline;
}

.mobile-quantity-text {
  display: none;
}

@media (max-width: 639px) {
  .desktop-quantity-text {
    display: none;
  }

  .mobile-quantity-text {
    margin-top: .5rem;
    display: block;
  }
}

.ordering-prompt-item {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 5px;
}

.ordering-prompt-item.active {
  background: #fff;
  padding: 5px;
}

.ordering-prompt-item .ordering-prompt-content {
  display: none;
}

.ordering-prompt-item.active .ordering-prompt-content {
  display: block;
}

.ordering-uploaded-file-icon-and-name {
  grid-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 5px;
  display: flex;
}

.ordering-uploaded-file-action, .ordering-created-prompt-item {
  grid-gap: 10px;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.ordering-created-prompt-delete-icon {
  color: var(--danger-color, #ef4444) !important;
}

.ordering-delete-icon {
  cursor: pointer;
  color: #607d8b !important;
  font-size: 21px !important;
}

.ordering-selected-icon {
  cursor: pointer;
  font-size: 22px;
  color: var(--brand-color, #009688) !important;
}

.ordering-chevron {
  transition: all .3s ease-in-out;
}

.ordering-chevron.active {
  transform: rotate(180deg);
}

.ordering-prompt-item-group {
  border-bottom: 1px solid #d3d3d354;
  padding-top: 10px;
  padding-bottom: 8px;
}

.ordering-prompt-item-group:last-child {
  border-bottom: unset;
  padding-bottom: unset;
  overflow-x: auto;
}

.ordering-prompt-item-group p {
  color: #000;
  width: fit-content;
  font-size: .875rem;
  font-weight: 600;
}

.ordering-prompt-item-group h3 {
  color: #777;
  font-size: .75rem;
  font-weight: 500;
}

.ordering-prompt-badge {
  background: #0096882b;
  border-radius: 20px;
  margin-top: 5px;
  padding: 0 10px;
  display: inline-block;
  color: #009688 !important;
  font-size: .75rem !important;
}

.desktop-required-badge {
  display: inline;
}

.desktop-required-badge.required-badge {
  color: #000;
}

.mobile-required-badge {
  display: none;
}

@media (max-width: 639px) {
  .desktop-required-badge {
    display: none;
  }

  .mobile-required-badge {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: .5rem;
    margin-bottom: .75rem;
    display: flex;
  }

  .mobile-required-badge .required-badge {
    color: #000;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 640px) {
  .ordering-category-card {
    z-index: 1;
    margin-bottom: 1rem;
    position: relative;
  }

  .ordering-category-card.collapsed {
    max-height: 60px;
    overflow: hidden;
  }

  .ordering-category-card.expanded {
    max-height: none;
    overflow: visible;
  }

  .ordering-category-header {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border-bottom: 1px solid #e5e7eb;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    display: flex;
  }

  .ordering-category-header:hover {
    background-color: #f3f4f6;
  }

  .ordering-category-content {
    opacity: 1;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    transition: all .3s ease-in-out;
    display: flex;
    overflow: visible;
    transform: translateY(0);
  }

  .ordering-category-card.collapsed .ordering-category-content {
    opacity: 0;
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    transform: translateY(-10px);
  }
}

@media (max-width: 639px) {
  .ordering-category-card {
    z-index: 1;
    margin-bottom: 1rem;
    position: relative;
  }

  .ordering-category-card.collapsed {
    max-height: 60px;
    overflow: hidden;
  }

  .ordering-category-card.expanded {
    max-height: none;
    overflow: visible;
  }

  .ordering-category-header {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border-bottom: 1px solid #e5e7eb;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    display: flex;
  }

  .ordering-category-header:hover {
    background-color: #f3f4f6;
  }

  .ordering-category-content {
    opacity: 1;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    transition: all .3s ease-in-out;
    display: flex;
    overflow: visible;
    transform: translateY(0);
  }

  .ordering-category-card.collapsed .ordering-category-content {
    opacity: 0;
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    transform: translateY(-10px);
  }

  .ordering-preview-section, .bg-white.rounded-lg.shadow {
    overflow: visible !important;
  }
}

/* [project]/pages/styles/ordersTable.css [client] (css) */
.ant-table {
  border: 1px solid #d9d9d9 !important;
}

.ant-table-thead > tr > th, .ant-table-tbody > tr > td {
  border-bottom: 1px solid #d9d9d9 !important;
  border-right: 1px solid #d9d9d9 !important;
}

.ant-table-tbody > tr:last-child > td {
  border-bottom: none !important;
}

.ant-table-thead > tr > th:last-child, .ant-table-tbody > tr > td:last-child {
  border-right: none !important;
}

.ant-table-thead th.ordering-column-dynamic, .ant-table-tbody td.ordering-column-dynamic {
  color: #333 !important;
  background: #f8f9fa !important;
  border: 1px solid #d9d9d9 !important;
}

.ant-table-thead th.section-0, .ant-table-tbody td.section-0 {
  background: #8ad7fa !important;
}

.ant-table-tbody tr:hover td.section-0 {
  background: #bae7ff !important;
}

.ant-table-thead th.section-1, .ant-table-tbody td.section-1 {
  background: #c6f9fc !important;
}

.ant-table-tbody tr:hover td.section-1 {
  background: #c6f1a0 !important;
}

.ant-table-thead th.section-2, .ant-table-tbody td.section-2 {
  background: #fadd9f !important;
}

.ant-table-tbody tr:hover td.section-2 {
  background: #ffe7ba !important;
}

.ant-table-tbody tr:hover td.ordering-column-dynamic {
  background: #e6f7ff !important;
}

.ant-table-tbody td.ordering-column-dynamic input {
  color: #333 !important;
  background: #fff !important;
  border: 1px solid #d9d9d9 !important;
}

.ant-table-tbody td.ordering-column-dynamic input::placeholder {
  color: #999 !important;
}

.ant-table-tbody td.ordering-column-dynamic .ant-select {
  background: #fff !important;
}

.ant-table-tbody td.ordering-column-dynamic .ant-select .ant-select-selector {
  color: #333 !important;
  background: #fff !important;
  border: 1px solid #d9d9d9 !important;
}

.ant-table-tbody tr.order-row-pending, .ant-table-tbody tr.order-row-pending td {
  background-color: #fff7e6 !important;
}

.ant-table-tbody tr.order-row-completed, .ant-table-tbody tr.order-row-completed td {
  background-color: #f6ffed !important;
}

.ant-table-tbody tr.order-row-cancelled, .ant-table-tbody tr.order-row-cancelled td {
  background-color: #fff1f0 !important;
}

.ant-table-tbody tr.order-row-approved, .ant-table-tbody tr.order-row-approved td {
  background-color: #e6f7ff !important;
}

.ant-table-tbody tr, .ant-table-tbody tr td {
  transition: background-color .15s !important;
}

.ant-table-tbody tr:hover, .ant-table-tbody tr:hover td {
  background-color: #0000000a !important;
  transition: background-color .15s !important;
}

.ant-table-tbody tr.order-row-pending:hover, .ant-table-tbody tr.order-row-pending:hover td {
  background-color: #ffe7ba !important;
  transition: background-color .15s !important;
}

.ant-table-tbody tr.order-row-completed:hover, .ant-table-tbody tr.order-row-completed:hover td {
  background-color: #d9f7be !important;
  transition: background-color .15s !important;
}

.ant-table-tbody tr.order-row-cancelled:hover, .ant-table-tbody tr.order-row-cancelled:hover td {
  background-color: #ffccc7 !important;
  transition: background-color .15s !important;
}

.ant-table-tbody tr.order-row-approved:hover, .ant-table-tbody tr.order-row-approved:hover td {
  background-color: #bae7ff !important;
  transition: background-color .15s !important;
}

.ant-modal .important-notes ul {
  list-style: outside !important;
}

.ant-modal .important-notes li {
  margin-left: 10px !important;
  list-style-type: disc !important;
  display: list-item !important;
}

.bulk-actions-bar {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border: 1px solid #b3d9ff;
  border-radius: 8px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  animation: .3s ease-out slideDown;
  display: flex;
  box-shadow: 0 2px 4px #0000000d;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bulk-actions-text {
  color: #0c5460;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 500;
}

.bulk-actions-bar .approve-btn.ant-btn {
  color: #fff !important;
  background: #1890ff !important;
  border-color: #1890ff !important;
  border-radius: 6px !important;
  min-width: 80px !important;
  height: 32px !important;
  padding: 4px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 4px #1890ff33 !important;
}

.bulk-actions-bar .approve-btn.ant-btn:hover, .bulk-actions-bar .approve-btn.ant-btn:focus {
  color: #fff !important;
  background: #40a9ff !important;
  border-color: #40a9ff !important;
  box-shadow: 0 2px 6px #1890ff4d !important;
}

.bulk-actions-bar .complete-btn.ant-btn {
  color: #fff !important;
  background: #52c41a !important;
  border-color: #52c41a !important;
  border-radius: 6px !important;
  min-width: 80px !important;
  height: 32px !important;
  padding: 4px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 4px #52c41a33 !important;
}

.bulk-actions-bar .complete-btn.ant-btn:hover, .bulk-actions-bar .complete-btn.ant-btn:focus {
  color: #fff !important;
  background: #73d13d !important;
  border-color: #73d13d !important;
  box-shadow: 0 2px 6px #52c41a4d !important;
}

.bulk-actions-bar .cancel-btn.ant-btn {
  color: #fff !important;
  background: #faad14 !important;
  border-color: #faad14 !important;
  border-radius: 6px !important;
  min-width: 80px !important;
  height: 32px !important;
  padding: 4px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 4px #faad1433 !important;
}

.bulk-actions-bar .cancel-btn.ant-btn:hover, .bulk-actions-bar .cancel-btn.ant-btn:focus {
  color: #fff !important;
  background: #ffc53d !important;
  border-color: #ffc53d !important;
  box-shadow: 0 2px 6px #faad144d !important;
}

.bulk-actions-bar .ant-btn-dangerous.ant-btn {
  color: #fff !important;
  background: #ff4d4f !important;
  border-color: #ff4d4f !important;
  border-radius: 6px !important;
  min-width: 80px !important;
  height: 32px !important;
  padding: 4px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 4px #ff4d4f33 !important;
}

.bulk-actions-bar .ant-btn-dangerous.ant-btn:hover, .bulk-actions-bar .ant-btn-dangerous.ant-btn:focus {
  color: #fff !important;
  background: #ff7875 !important;
  border-color: #ff7875 !important;
  box-shadow: 0 2px 6px #ff4d4f4d !important;
}

.ant-table-filter-trigger svg {
  width: 15px !important;
  height: 15px !important;
}

.ant-table-column-sorter svg {
  width: 10px !important;
  height: 10px !important;
}

.bulk-actions-bar .ant-btn .anticon svg, .bulk-actions-bar .approve-btn .anticon svg {
  fill: #fff !important;
  stroke: currentColor !important;
  stroke-width: 1.5px !important;
}

.bulk-actions-bar .complete-btn .anticon svg {
  stroke: #2d5016 !important;
}

.bulk-actions-bar .cancel-btn .anticon svg {
  stroke: #8b4513 !important;
}

.bulk-actions-bar .ant-btn-dangerous .anticon svg {
  stroke: #a8071a !important;
}

.ant-modal-confirm .ant-modal-confirm-btns .ant-btn, .ant-modal-confirm .ant-modal-confirm-btns .ant-btn-default, .ant-modal-confirm .ant-modal-confirm-btns .ant-btn-primary {
  border-radius: 6px !important;
  min-width: 80px !important;
  height: 40px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.ant-modal .ant-modal-footer .ant-btn, .ant-modal .ant-modal-footer .ant-btn-default, .ant-modal .ant-modal-footer .ant-btn-primary {
  border-radius: 6px !important;
  min-width: 120px !important;
  height: 40px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.bulk-actions-bar .ant-btn:disabled {
  color: #bfbfbf !important;
  cursor: not-allowed !important;
  opacity: .6 !important;
  background-color: #f5f5f5 !important;
  border-color: #d9d9d9 !important;
}

.bulk-actions-bar .ant-btn:disabled:hover {
  color: #bfbfbf !important;
  background-color: #f5f5f5 !important;
  border-color: #d9d9d9 !important;
  transform: none !important;
}

.bulk-actions-text .ant-tag {
  border-radius: 3px !important;
  margin-left: 4px !important;
  padding: 2px 6px !important;
  font-size: 11px !important;
}

.ant-table-tbody .ant-tag {
  border-radius: 12px !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 4px 8px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  display: inline-flex !important;
}

.ant-table-tbody .channel-whatsapp {
  color: #25d366 !important;
  background-color: #f0f9f0 !important;
  border: 1px solid #25d36633 !important;
}

.ant-table-tbody .channel-web {
  color: #1890ff !important;
  background-color: #f0f8ff !important;
  border: 1px solid #1890ff33 !important;
}

.ant-table-tbody .channel-messenger {
  color: #0d47a1 !important;
  background-color: #e3f2fd !important;
  border: 1px solid #0d47a133 !important;
}

.ant-table-tbody .ant-tag svg {
  vertical-align: middle !important;
  width: 14px !important;
  height: 14px !important;
}

.ant-table-tbody .ant-tag .anticon {
  vertical-align: middle !important;
  font-size: 12px !important;
}

.orders-table-wrapper {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.responsive-table-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.button-group.ant-space, .button-group.ant-space .ant-space-item {
  margin: 0 !important;
  padding: 0 !important;
}

.loading-container {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 20px;
  padding: 20px;
}

.skeleton-item {
  background-color: #f3f4f6;
  border-radius: 6px;
  height: 50px;
  margin-bottom: 16px;
}

.table-header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  display: flex;
}

.header-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.header-content p {
  color: #6b7280;
  margin: 0% 0% 5%;
  font-size: 14px;
}

.button-group {
  align-items: right;
  flex-direction: row;
  margin: 0% 0% 5%;
  display: flex;
}

.order-details-content {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
}

@media only screen and (min-width: 769px) {
  .ant-modal.order-details-modal, .ant-modal-mask.order-details-modal + .ant-modal-mask {
    display: none !important;
  }

  .ant-table-tbody tr {
    cursor: default !important;
  }
}

.order-section {
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px;
}

.order-section:first-child {
  background-color: #e6f7ff;
  border-color: #91d5ff;
}

.order-section:nth-child(2) {
  background-color: #f6ffed;
  border-color: #b7eb8f;
}

.order-section:nth-child(3) {
  background-color: #fff7e6;
  border-color: #ffd591;
}

.order-section:nth-child(4) {
  background-color: #f9f0ff;
  border-color: #d3adf7;
}

.order-section:nth-child(5) {
  background-color: #fff1f0;
  border-color: #ffccc7;
}

.order-section h4 {
  color: #1890ff;
  border-bottom: 2px solid #1890ff;
  margin: 0 0 16px;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.order-section h5 {
  color: #595959;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin: 0 0 12px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
}

.order-details-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  display: grid;
}

.detail-item {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.detail-item label {
  color: #262626;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 13px;
  font-weight: 600;
}

.detail-item span {
  color: #595959;
  word-break: break-word;
  font-size: 14px;
}

.ordering-section {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}

.ordering-fields {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 12px;
  display: grid;
}

.ordering-field {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.ordering-field label {
  color: #262626;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 600;
}

.ordering-field span {
  color: #595959;
  word-break: break-word;
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 13px;
}

.ordering-field span a {
  color: #1890ff;
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.ordering-field span a:hover {
  color: #0050b3;
  background-color: #bae7ff;
  border-color: #40a9ff;
  text-decoration: none;
}

.ordering-field span a:active {
  background-color: #91d5ff;
  border-color: #1890ff;
}

.order-actions {
  border-top: 2px solid #f0f0f0;
  margin-top: 24px;
  padding-top: 20px;
}

.action-buttons-grid {
  border-radius: 25px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  grid-template-rows: 1fr 1fr !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  display: grid !important;
}

.action-btn {
  border-radius: 0 !important;
  flex: 1 !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 50px !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: flex !important;
}

.action-btn:first-child {
  grid-area: 1 / 1;
}

.action-btn:nth-child(2) {
  grid-area: 1 / 2;
}

.action-btn:nth-child(3) {
  grid-area: 2 / 1;
}

.action-btn:nth-child(4) {
  grid-area: 2 / 2;
}

.action-btn.approve-btn {
  color: #fff !important;
  background: #1890ff !important;
  border-color: #1890ff !important;
}

.action-btn.approve-btn:hover {
  background: #40a9ff !important;
  border-color: #40a9ff !important;
}

.action-btn.complete-btn {
  color: #fff !important;
  background: #52c41a !important;
  border-color: #52c41a !important;
}

.action-btn.complete-btn:hover {
  background: #73d13d !important;
  border-color: #73d13d !important;
}

.action-btn.cancel-btn {
  color: #fff !important;
  background: #faad14 !important;
  border-color: #faad14 !important;
}

.action-btn.cancel-btn:hover {
  background: #ffc53d !important;
  border-color: #ffc53d !important;
}

.action-btn.delete-btn {
  color: #fff !important;
  background: #ff4d4f !important;
  border-color: #ff4d4f !important;
}

.action-btn.delete-btn:hover {
  background: #ff7875 !important;
  border-color: #ff7875 !important;
}

.action-btn:disabled {
  color: #bfbfbf !important;
  cursor: not-allowed !important;
  opacity: .6 !important;
  background-color: #f5f5f5 !important;
  border-color: #d9d9d9 !important;
}

.action-btn:disabled:hover {
  color: #bfbfbf !important;
  background-color: #f5f5f5 !important;
  border-color: #d9d9d9 !important;
  transform: none !important;
}

.action-btn:not(:disabled) .anticon, .action-btn:not(:disabled) svg {
  color: #fff !important;
  fill: #fff !important;
}

.action-btn:disabled .anticon, .action-btn:disabled svg {
  color: #bfbfbf !important;
  fill: #bfbfbf !important;
}

@media only screen and (max-width: 768px) {
  .responsive-table-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative !important;
    left: -10px !important;
    overflow-x: auto !important;
  }

  .responsive-table-container .ant-table {
    min-width: 100vw !important;
    max-width: 100vw !important;
  }

  .responsive-table-container .ant-table-wrapper, .responsive-table-container .ant-table-content {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .responsive-table-container .ant-table-tbody > tr > td, .responsive-table-container .ant-table-thead > tr > th {
    padding: 0 4px !important;
    font-size: 12px !important;
  }

  .responsive-table-container .ant-table-tbody > tr > td:first-child, .responsive-table-container .ant-table-thead > tr > th:first-child {
    padding-left: 8px !important;
  }

  .responsive-table-container .ant-table-tbody > tr > td:last-child, .responsive-table-container .ant-table-thead > tr > th:last-child {
    border-right: 1px solid #d9d9d9 !important;
    padding-right: 8px !important;
  }

  .responsive-table-container .ant-table {
    border-right: 1px solid #d9d9d9 !important;
  }

  .order-details-grid, .ordering-fields {
    grid-template-columns: 1fr;
  }

  .action-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-btn {
    height: 44px !important;
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 480px) {
  .action-buttons-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .orders-table-wrapper {
    padding: 0;
  }

  .button-group {
    align-items: right;
    flex-direction: row;
    margin: 0% 0% 10%;
    display: flex;
  }
}

/* [project]/pages/styles/leadsTable.css [client] (css) */
.ant-table-tbody > tr.selected-row {
  background-color: #f0f9ff !important;
}

.ant-table-tbody > tr.selected-row:hover > td {
  background-color: #e0f2fe !important;
}

.ant-table-tbody > tr.selected-row > td.ant-table-selection-column {
  background-color: #f0f9ff !important;
}

.reset-button {
  align-items: center;
  gap: 6px;
  min-width: 80px;
  height: 32px;
  display: flex;
  padding: 10px 20px !important;
}

.export-button {
  color: #fff;
  background-color: #10b981;
  border-color: #10b981;
  align-items: center;
  gap: 6px;
  min-width: 100px;
  height: 32px;
  display: flex;
  padding: 10px 20px !important;
}

.export-button .anticon {
  color: #fff !important;
}

.export-button:hover {
  color: #fff;
  background-color: #059669;
  border-color: #059669;
}

.export-button:focus {
  color: #fff;
  background-color: #10b981;
  border-color: #10b981;
}

.table-container {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.loading-container {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 20px;
  padding: 20px;
}

.skeleton-item {
  background-color: #f3f4f6;
  border-radius: 6px;
  height: 50px;
  margin-bottom: 16px;
}

.footer-info {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  margin-top: 16px;
  padding: 12px;
  font-size: 14px;
}

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

.table-header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.header-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.header-content p {
  color: #6b7280;
  margin: 0% 0% 10%;
  font-size: 14px;
}

.button-group {
  align-items: right;
  flex-direction: row;
  margin: 0% 0% 10%;
  display: flex;
}

.leads-table-wrapper {
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .leads-table-wrapper {
    padding: 0;
  }

  .button-group {
    align-items: right;
    flex-direction: row;
    margin: 0% 0% 10%;
    display: flex;
  }
}

/* [project]/pages/styles/chatWindow.css [client] (css) */
[class*="chatWindow-"] {
  font-family: Mulish, sans-serif !important;
}

.chatWindow-container {
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
}

.chatWindow-widget {
  background: var(--bg-light);
  border-radius: 8px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  pointer-events: auto;
  background-color: #0000;
  width: 372px;
  height: 0;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #d3d3d3;
}

.chatWindow-widget.chatWindow-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  background: var(--white-color);
  pointer-events: auto;
  border-radius: 8px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: -1px 2px 6px #d3d3d3 !important;
}

.chatWindow-header {
  border-radius: 8px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 95% calc(100% - 5px), 90% calc(100% - 2px), 85% 100%, 80% calc(100% - 2px), 75% calc(100% - 5px), 70% calc(100% - 10px), 65% calc(100% - 15px), 60% calc(100% - 18px), 55% calc(100% - 20px), 50% calc(100% - 18px), 45% calc(100% - 15px), 40% calc(100% - 10px), 35% calc(100% - 5px), 30% calc(100% - 2px), 25% 100%, 20% calc(100% - 2px), 15% calc(100% - 5px), 10% calc(100% - 8px), 5% calc(100% - 10px), 0 calc(100% - 10px));
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 25px 25px;
  display: flex;
  position: relative;
}

.chatWindow-left {
  grid-gap: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.chatWindow-left h3, .chatWindow-left p {
  color: var(--white-color) !important;
}

.chatWindow-right {
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.chatWindow-right svg {
  color: var(--white-color) !important;
  fill: var(--white-color) !important;
}

.chatWindow-recipientAvatar {
  position: relative;
}

.chatWindow-onlineStatus {
  background: #06d6a0;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.chatWindow-recipientDetails {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.chatWindow-recipientDetails p {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.chatWindow-recipientDetails h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 10px;
}

.chatWindow-companyName {
  font-size: 11px;
  font-weight: 500;
}

.chatWindow-headerRightOptions {
  grid-gap: 3px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.chatWindow-minimize {
  fill: #fff;
  cursor: pointer;
  border-radius: 50%;
  font-size: 25px;
  position: relative;
}

.chatWindow-minimize svg {
  fill: #fff;
  width: 25px;
  height: 25px;
  transition: var(--transition);
  border-radius: 50%;
  padding: 3px;
}

.chatWindow-minimize svg:hover {
  background: #00245c29;
  border-radius: 50%;
}

.chatWindow-messageWrapper {
  background: var(--bg-light);
  scrollbar-width: thin;
  flex: auto;
  width: 100%;
  min-height: 160px;
  padding: 0 15px;
  transition: all .3s;
  position: relative;
  overflow: hidden auto;
}

.chatWindow-body {
  float: left;
  width: 100%;
  margin-top: 10px;
  position: relative;
  padding: 5px !important;
}

.chatWindow-messageList {
  overscroll-behavior: contain;
}

.chatWindow-bubbleAgent {
  color: #1a1a1a;
  grid-gap: 5px;
  clear: both;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  max-width: 75vw;
  margin: 0 0 10px;
  padding: 12px 14px 14px;
  line-height: 22px;
  list-style: none;
  display: flex;
  position: relative;
  background: #fafbfc !important;
  font-size: 14px !important;
}

.chatWindow-bubbleAgent a {
  color: var(--secondary-color);
  font-weight: 500;
}

.chatWindow-welcomeMessageWrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.chatWindow-welcomeMessageWrap p {
  color: #000;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

.chatWindow-bubbleAgent .chatWindow-welcomeMessageWrap {
  width: 100% !important;
}

.chatWindow-bubbleAgentWrap {
  color: #1a1a1a;
  grid-gap: 5px;
  clear: both;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  min-width: 100px;
  max-width: 75vw;
  margin: 0 0 10px;
  padding: 12px 14px 10px;
  line-height: 22px;
  list-style: none;
  display: flex;
  position: relative;
  background: #fafbfc !important;
  font-size: 14px !important;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-buttonContainer .chatWindow-button) {
  padding-bottom: 30px;
}

.chatWindow-menuMessage {
  clear: both;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: fit-content;
  min-width: 15rem;
  max-width: 75vw;
  margin: 0 0 10px;
  list-style: none;
  overflow: hidden;
  box-shadow: 0 1px 2px #0000000d;
}

.chatWindow-menuText {
  color: #1a1a1a;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 22px;
}

.chatWindow-bubbleP {
  color: #1a1a1a;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  max-width: 100%;
  margin: 0;
  padding: 0 10px 0 0;
  display: inline;
}

.chatWindow-bubbleP:after {
  content: "        ";
  white-space: nowrap;
  display: inline;
}

.chatWindow-bubbleUser {
  float: right;
  background: var(--brand-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  clear: both;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  min-width: 100px;
  max-width: 75vw;
  margin: 0 0 10px;
  padding: 8px 14px 14px;
  font-size: 14px;
  line-height: 23px;
  list-style: none;
  display: flex;
  position: relative;
}

.chatWindow-bubbleUser:has(.chatWindow-messageFailed) {
  padding-bottom: 28px;
}

.chatWindow-bubblePUser {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  color: inherit;
  margin: 0;
  padding: 0 16px 0 0;
  display: inline;
}

.chatWindow-bubblePUser:after {
  content: "        ";
  white-space: nowrap;
  display: inline;
}

.chatWindow-messageTimestampRow {
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.chatWindow-messageTimestampRow:has(.chatWindow-messageFailed) {
  align-items: center;
  bottom: 2px;
}

.chatWindow-messageTimestamp {
  color: #00000073;
  white-space: nowrap;
  pointer-events: none;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
}

.chatWindow-bubbleAgentWrap .chatWindow-messageTimestamp {
  position: absolute;
  bottom: 2px;
  right: 10px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="email"]) .chatWindow-messageTimestamp {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="email"]) {
  position: relative;
  padding-bottom: 25px !important;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="email"]) .chatWindow-payloadContainer {
  margin-top: 8px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="tel"]) .chatWindow-messageTimestamp {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="tel"]) {
  position: relative;
  padding-bottom: 25px !important;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="tel"]) .chatWindow-payloadContainer {
  margin-top: 8px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="number"]) .chatWindow-messageTimestamp {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="number"]) {
  position: relative;
  padding-bottom: 25px !important;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="number"]) .chatWindow-payloadContainer {
  margin-top: 8px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-dropdownPayloadContainer) .chatWindow-messageTimestamp {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-dropdownPayloadContainer) {
  position: relative;
  padding-bottom: 25px !important;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-dropdownPayloadContainer) .chatWindow-payloadContainer {
  margin-top: 8px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="text"]) .chatWindow-messageTimestamp {
  z-index: 1;
  position: absolute;
  bottom: -3px;
  right: 10px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="text"]) {
  position: relative;
  padding-bottom: 20px !important;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-payloadInput[type="text"]) .chatWindow-payloadContainer {
  margin-top: 8px;
}

.chatWindow-bubbleAgentWrap:has(.chatWindow-buttonContainer .chatWindow-button) .chatWindow-messageTimestamp {
  bottom: 8px;
  right: 14px;
}

.chatWindow-bubbleUser .chatWindow-messageTimestamp {
  color: #ffffffb3;
}

.chatWindow-typingContainer {
  clear: both;
  margin: 0 0 10px;
  list-style: none;
}

.chatWindow-typingBelowUser {
  clear: both;
  justify-content: flex-start;
  margin-top: 5px;
  margin-bottom: 10px;
  display: flex;
}

.chatWindow-typingWrap {
  background: #fafbfc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  align-items: center;
  width: fit-content;
  display: inline-flex;
  padding: 9px 13px !important;
}

.chatWindow-typing {
  font-weight: 500;
  color: #1a1a1a !important;
}

.chatWindow-animateTyping {
  align-items: center;
  margin-left: 5px;
  display: inline-flex;
}

.chatWindow-animateTyping .chatWindow-dot {
  opacity: .6;
  background-color: #1a1a1a;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin-right: 5px;
  animation: 1.3s linear infinite wave;
  display: inline-block;
}

.chatWindow-animateTyping .chatWindow-dot:nth-child(2) {
  animation-delay: -1.1s;
}

.chatWindow-animateTyping .chatWindow-dot:nth-child(3) {
  margin-right: 0;
  animation-delay: -.9s;
}

@keyframes wave {
  0%, 60%, to {
    transform: none;
  }

  30% {
    transform: translateY(-5px);
  }
}

.chatWindow-ms1 {
  margin-left: .25rem;
}

:is(.chatWindow-bubbleAgentWrap:has( + .chatWindow-bubbleAgentWrap), .chatWindow-bubbleAgentWrap:has( + .chatWindow-bubbleAgent), .chatWindow-bubbleAgentWrap:has( + .chatWindow-typingContainer), .chatWindow-bubbleAgentWrap:has( + .chatWindow-menuMessage), .chatWindow-bubbleAgent:has( + .chatWindow-bubbleAgentWrap), .chatWindow-bubbleAgent:has( + .chatWindow-bubbleAgent), .chatWindow-bubbleAgent:has( + .chatWindow-typingContainer), .chatWindow-bubbleAgent:has( + .chatWindow-menuMessage), .chatWindow-typingContainer:has( + .chatWindow-bubbleAgentWrap), .chatWindow-typingContainer:has( + .chatWindow-bubbleAgent), .chatWindow-typingContainer:has( + .chatWindow-typingContainer), .chatWindow-typingContainer:has( + .chatWindow-menuMessage), .chatWindow-menuMessage:has( + .chatWindow-bubbleAgentWrap), .chatWindow-menuMessage:has( + .chatWindow-bubbleAgent), .chatWindow-menuMessage:has( + .chatWindow-typingContainer), .chatWindow-menuMessage:has( + .chatWindow-menuMessage)) {
  margin-bottom: 5px !important;
}

.chatWindow-bubbleUser:has( + .chatWindow-bubbleUser) {
  margin-bottom: 5px !important;
}

.chatWindow-refLi {
  margin-bottom: 0 !important;
}

.chatWindow-footerContainer {
  z-index: 9999;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.chatWindow-suggestButtons {
  grid-gap: 5px;
  margin-bottom: 5px;
  margin: unset;
  background: #f5f5f5;
  border-top: 1px solid #d3d3d31f;
  flex-flow: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 10px;
  display: flex;
  overflow-x: auto;
}

.chatWindow-suggestButtonsInChat {
  background: none;
  border-top: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 10px;
  font-size: 20px !important;
}

.chatWindow-promptButtonsWrapper {
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  list-style: none;
  display: flex;
}

.chatWindow-menuOptionItem {
  color: #fff;
  cursor: pointer;
  background: var(--brand-color);
  border-radius: 5px;
  padding: 6px 14px;
  font-family: Mulish, sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}

.chatWindow-suggestButtonsInChat .chatWindow-menuOptionItem {
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
}

.chatWindow-footer {
  background-color: var(--white-color);
  z-index: 99;
  border-top: 2px solid #f7f7f7;
  flex-direction: column;
  width: 100%;
  min-height: 70px;
  display: flex;
  position: relative;
}

.chatWindow-footer form {
  grid-gap: 5px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 4px;
  display: flex;
}

.chatWindow-iframeFooter {
  position: unset;
}

.chatWindow-inputArea {
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  padding-top: 5px;
  display: flex;
}

.chatWindow-emojiContainer {
  align-items: flex-end;
  display: flex;
  position: relative;
}

.chatWindow-inputArea form {
  flex: 1;
  align-items: flex-end;
  gap: 8px;
  display: flex;
}

.chatWindow-brandingArea {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.chatWindow-brandingArea p {
  color: #6c757d;
  margin: 0;
  font-size: 12px;
}

.chatWindow-brandingArea .chatWindow-companyName {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.chatWindow-brandingArea .chatWindow-companyName:hover {
  text-decoration: underline;
}

.chatWindow-emojiBtn {
  cursor: pointer;
  color: #6c757d;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0 0 16px;
  font-size: 24px;
  transition: color .2s;
  display: flex;
}

.chatWindow-emojiBtn:hover:not(:disabled) {
  color: #495057;
}

.chatWindow-emojiBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.chatWindow-emojiPickerWrapper {
  z-index: 1000;
  position: absolute;
  bottom: 45px;
  left: 0;
}

.chatWindow-inputArea form input {
  border: 1px solid #d3d3d3;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 15px !important;
}

.chatWindow-input {
  overflow-wrap: break-word;
  box-sizing: border-box;
  resize: none;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  width: 100%;
  height: 45px;
  min-height: 45px;
  max-height: 140px;
  padding: 10px 15px;
  font-family: Mulish, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-y: auto;
  font-size: 14px !important;
}

.chatWindow-input:focus {
  border: 1px solid var(--brand-color);
  outline: none;
}

.chatWindow-sendMessageBtn {
  border: unset;
  background: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  height: 45px;
  padding: 10px 12px;
  font-size: 17px;
  transition: all .2s;
  display: flex;
}

.chatWindow-sendMessageBtn:hover {
  opacity: .9;
}

.chatWindow-sendMessageBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.chatWindow-sendIcon {
  color: var(--white-color);
  font-size: 18px;
}

.chatWindow-payloadContainer {
  align-items: center;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.chatWindow-payloadContainer form {
  align-items: center;
  gap: 15px;
  width: 100%;
  display: flex;
}

.chatWindow-payloadInput {
  flex: 1;
}

.chatWindow-buttonContainer {
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  display: flex;
}

.chatWindow-payloadContainer .chatWindow-buttonContainer {
  box-shadow: none;
  background: none;
  border: none;
  border-radius: 0;
  flex-flow: wrap;
  gap: 8px;
  margin-top: 8px;
  overflow: visible;
}

.chatWindow-menuMessage .chatWindow-buttonContainer {
  box-shadow: none;
  background: none;
  border: none;
  border-radius: 0;
  margin-top: 0;
}

.chatWindow-button {
  cursor: pointer;
  text-align: left;
  border: none;
  border-bottom: 1px solid #ffffff4d;
  border-radius: 0;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  font-family: Mulish, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: opacity .2s, filter .2s;
  display: block;
}

.chatWindow-payloadContainer .chatWindow-button {
  text-align: center;
  border: none;
  border-radius: 8px;
  width: auto;
  padding: 10px 20px;
}

.chatWindow-menuMessage .chatWindow-button {
  text-align: center;
  box-sizing: border-box;
  border: 1px solid;
  border-bottom-width: .5px;
  border-radius: 0;
  background: none !important;
}

.chatWindow-menuMessage .chatWindow-button:first-child {
  border-top-width: 1px;
  border-radius: 0;
}

.chatWindow-menuMessage .chatWindow-button:nth-child(2) {
  border-radius: 0;
}

.chatWindow-menuMessage .chatWindow-button:nth-child(3), .chatWindow-menuMessage .chatWindow-button:last-child:not(:nth-child(3)) {
  border-bottom-width: 1px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.chatWindow-menuMessage .chatWindow-button:hover {
  transition: background .2s;
  background: var(--hover-bg) !important;
}

.chatWindow-button:last-child {
  border-bottom: none;
}

.chatWindow-button:hover {
  opacity: .9;
  filter: brightness(1.05);
}

.chatWindow-button:active {
  opacity: .8;
  filter: brightness(.95);
}

.chatWindow-dropdown {
  min-width: 0;
  font-family: Mulish, sans-serif;
}

@media screen and (max-width: 768px) {
  .chatWindow-dropdown {
    flex: 1;
    width: 100%;
  }
}

.chatWindow-dropdownPayloadContainer {
  gap: 15px;
  max-width: 100%;
  transition: margin-bottom .2s;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .chatWindow-dropdownPayloadContainer {
    padding-right: 0;
  }
}

.chatWindow-dropdownActiveWrap {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chatWindow-toggleIcon {
  cursor: pointer;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: auto;
  border-radius: 50%;
  margin: 20px;
  transition: all .2s;
  box-shadow: 0 2px 10px #0003;
}

.chatWindow-toggleIcon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px #d3d3d3;
}

.chatWindow-loadingImg {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 2px;
  animation: 1.5s ease-in-out infinite pulse;
  box-shadow: 0 0 4px #d3d3d3;
}

.chatWindow-logoImg {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 2px;
  box-shadow: 0 0 4px #d3d3d3;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@media screen and (max-width: 768px) {
  .chatWindow-container {
    width: 100vw;
    height: 100dvh;
    inset: 0;
  }

  .chatWindow-widget.chatWindow-active {
    border-radius: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    inset: 0;
  }

  .chatWindow-header {
    clip-path: path("M-1.97,64.64 C202.88,87.34 399.83,22.22 501.41,76.48 L500.00,0.00 L0.00,0.00 Z");
    border-radius: 0;
  }

  .chatWindow-bubbleUser, .chatWindow-bubbleAgent, .chatWindow-bubbleAgentWrap {
    max-width: 75vw;
  }

  .chatWindow-toggleIcon {
    width: 60px;
    height: 60px;
    margin: 20px;
  }

  .chatWindow-recipientDetails p {
    font-size: 10px;
  }

  .chatWindow-recipientDetails h3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .chatWindow-suggestButtons {
    padding: 8px;
  }

  .chatWindow-footer {
    min-height: 60px;
    padding: 0 8px;
  }

  .chatWindow-inputArea {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    display: flex;
  }

  .chatWindow-emojiContainer {
    align-items: flex-end;
    display: flex;
  }

  .chatWindow-inputArea form {
    flex: 1;
    align-items: flex-end;
    gap: 8px;
    display: flex;
  }

  .chatWindow-brandingArea {
    justify-content: flex-end;
    margin-bottom: 8px;
  }

  .chatWindow-emojiPickerWrapper {
    width: calc(100vw - 20px);
    max-width: 300px;
    bottom: 45px;
    left: 0;
  }

  .chatWindow-emojiBtn {
    margin-bottom: 0;
    padding: 14px 0;
    font-size: 22px;
  }

  .chatWindow-brandingArea p {
    font-size: 11px;
  }
}

.chatWindow-messageStatus {
  opacity: .85;
  pointer-events: auto;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  display: flex;
}

.chatWindow-statusIcon {
  flex-shrink: 0;
  line-height: 1;
}

.chatWindow-statusText {
  font-size: 11px;
  line-height: 1;
}

.chatWindow-retryButton {
  cursor: pointer;
  background: none;
  border: 1px solid;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  padding: 2px;
  transition: opacity .2s;
  display: flex;
}

.chatWindow-retryButton:hover {
  opacity: .8;
}

@keyframes chatWindow-spinnerRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.chatWindow-statusSpinner {
  animation: 1s linear infinite chatWindow-spinnerRotate;
}

.chatWindow-connectionStatus {
  text-align: center;
  color: #666;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  display: flex;
}

.chatWindow-connectionStatus.chatWindow-connecting, .chatWindow-connectionStatus.chatWindow-reconnecting {
  color: #856404;
  background: #fff3cd;
  border-bottom-color: #ffeaa7;
}

.chatWindow-connectionStatus.chatWindow-error {
  color: #721c24;
  background: #f8d7da;
  border-bottom-color: #f5c6cb;
}

.chatWindow-connectionDot {
  background: currentColor;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.chatWindow-reconnectButton {
  cursor: pointer;
  color: inherit;
  background: none;
  border: 1px solid;
  border-radius: 4px;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  transition: opacity .2s;
}

.chatWindow-reconnectButton:hover {
  opacity: .7;
}

@keyframes chatWindow-skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.chatWindow-skeleton-header {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0 0 / 200% 100%;
  animation: 1.5s infinite chatWindow-skeleton-shimmer;
}

@keyframes chatWindow-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.chatWindow-skeleton-avatar {
  background-color: #ffffff4d;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: 1.5s ease-in-out infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-text-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.chatWindow-skeleton-title {
  background-color: #ffffff4d;
  border-radius: 4px;
  width: 120px;
  height: 16px;
  animation: 1.5s ease-in-out infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-subtitle {
  background-color: #ffffff4d;
  border-radius: 4px;
  width: 80px;
  height: 12px;
  animation: 1.5s ease-in-out .2s infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-icon {
  background-color: #ffffff4d;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  animation: 1.5s ease-in-out .3s infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-message-bubble {
  background-color: #f5f5f5;
  border-radius: 12px;
  flex-direction: column;
  gap: 8px;
  max-width: 80%;
  padding: 15px;
  display: flex;
}

.chatWindow-skeleton-line {
  background-color: #e0e0e0;
  border-radius: 4px;
  height: 12px;
  animation: 1.5s ease-in-out infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-line-long {
  width: 100%;
}

.chatWindow-skeleton-line-medium {
  width: 85%;
  animation-delay: .1s;
}

.chatWindow-skeleton-line-short {
  width: 60%;
  animation-delay: .2s;
}

.chatWindow-skeleton-button {
  background-color: #f0f0f0;
  border-radius: 8px;
  height: 40px;
  margin-bottom: 8px;
  animation: 1.5s ease-in-out infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-button:nth-child(2) {
  animation-delay: .1s;
}

.chatWindow-skeleton-button:nth-child(3) {
  animation-delay: .2s;
}

.chatWindow-skeleton-input-wrapper {
  align-items: center;
  gap: 8px;
  width: 100%;
  display: flex;
}

.chatWindow-skeleton-input {
  background-color: #f0f0f0;
  border-radius: 20px;
  flex: 1;
  height: 40px;
  animation: 1.5s ease-in-out infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-send-button {
  background-color: #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: 1.5s ease-in-out .2s infinite chatWindow-skeleton-pulse;
}

.chatWindow-skeleton-powered-by {
  background-color: #f0f0f0;
  border-radius: 4px;
  width: 120px;
  height: 16px;
  margin: 8px auto 0;
  animation: 1.5s ease-in-out .3s infinite chatWindow-skeleton-pulse;
}

/* [project]/pages/styles/pricingPage.css [client] (css) */
.pricingPage-container {
  margin-top: unset;
}

.pricingPage-wrapper {
  grid-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 30px auto;
  display: flex;
}

.pricingPage-item {
  grid-gap: 20px;
  background: var(--white-color);
  border: 1px solid #d3d3d308;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 380px;
  min-height: 540px;
  padding: 30px;
  transition: all .3s ease-in;
  display: flex;
  box-shadow: 0 0 8px #d3d3d385;
}

.pricingPage-item:hover {
  box-shadow: 0 4px 3px #d3d3d3;
}

.pricingPage-content {
  grid-gap: 15px;
  flex-direction: column;
  display: flex;
}

.pricingPage-list {
  grid-gap: 7px;
  flex-direction: column;
  display: flex;
}

.pricingPage-list li {
  grid-gap: 10px;
  font-size: var(--mini-size);
  font-weight: 400;
  font-family: var(--font-poppins);
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.pricingPage-list-dot {
  background: #ccc;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
}

.pricingPage-title {
  text-align: center;
  width: 100%;
}

.pricingPage-title p {
  font-size: var(--p-size);
}

.pricingPage-name {
  text-align: center;
  max-width: 100%;
  color: var(--heading-color);
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  display: flex;
}

.pricingPage-action {
  text-align: center;
  width: 100%;
}

.pricingPage-price {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.pricingPage-priceBadge {
  font-size: 28px;
  font-weight: 700;
}

.pricingPage-planType {
  cursor: pointer;
  padding: 12px 20px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.pricingPage-planType.is-selected {
  background: var(--brand-color);
  color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 500;
}

.pricingPage-ctaButton {
  background: var(--brand-color);
  color: #fff;
  border-radius: 5px;
  width: max-content;
  padding: 11px 22px;
  transition: all .3s ease-in;
  box-shadow: 0 0 8px #d3d3d385;
}

.pricingPage-addonsSection {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  padding: 4rem 1rem;
}

.pricingPage-addonsContainer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricingPage-addonsGrid {
  grid-gap: 1.5rem;
  grid-template-columns: 1fr;
  display: grid;
}

@media (min-width: 768px) {
  .pricingPage-addonsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricingPage-addonCard:hover {
  border-color: #e5e7eb;
  box-shadow: 0 8px 24px #00000014;
}

.pricingPage-addonHeader {
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: auto;
  display: flex;
}

.pricingPage-addonHeaderText {
  flex: 1;
}

.pricingPage-addonIcon {
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0;
  display: inline-flex;
}

.pricingPage-addonTitle {
  margin-bottom: 0;
  font-size: 1.0625rem;
  font-weight: 600;
}

.pricingPage-addonDescription {
  color: #4b5563;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
}

.pricingPage-addonFooter {
  border-top: 1px solid #f3f4f6;
  justify-content: space-between;
  align-items: center;
  padding-top: 5rem;
  display: flex;
}

.pricingPage-addonPrice {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricingPage-addonUnit {
  color: #6b7280;
  font-size: .875rem;
}

.pricingPage-addonSelect {
  appearance: none;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: .375rem;
  outline: none;
  width: 100%;
  padding: .75rem 2rem;
  line-height: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
}

.pricingPage-addonSelect:focus {
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px #00968840;
}

.pricingPage-addonSelectChevron {
  color: #374151;
  align-items: center;
  padding-left: .5rem;
  display: flex;
  position: absolute;
  inset: 0 .5rem 0 0;
}

.pricingPage-compareSection {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pricingPage-compareContainer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.pricingPage-compareTitle {
  color: #111827;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.pricingPage-compareToggle {
  justify-content: center;
  margin-bottom: 2rem;
  display: flex;
}

.pricingPage-compareToggleInner {
  background: var(--brand-color);
  border-radius: 9999px;
  align-items: center;
  padding: .25rem;
  display: flex;
}

.pricingPage-compareToggleBtn {
  color: #f3f4f6;
  border-radius: 9999px;
  padding: .5rem 1.5rem;
  transition: all .3s;
}

.pricingPage-compareToggleBtn.is-active {
  color: var(--brand-color);
  background: #fff;
  font-weight: 600;
}

.pricingPage-compareTableWrap {
  flex: 1;
  overflow-x: auto;
}

.pricingPage-comparePlanHeader {
  border-radius: .75rem;
  min-width: 200px;
  padding: 1.5rem;
}

.pricingPage-comparePlanName {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.pricingPage-comparePlanPrice {
  color: #000;
  font-size: 1.25rem;
  font-weight: 600;
}

.pricingPage-comparePlanPrice small {
  font-size: .875rem;
  font-weight: 400;
}

.pricingPage-ctaSection {
  color: #fff;
  background: #e4e4e6;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.pricingPage-ctaContainer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricingPage-ctaCard {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: .75rem;
  padding: 2.5rem;
  transition: all 1s;
}

.pricingPage-ctaTitle {
  background: linear-gradient(90deg, var(--brand-color), var(--brand-color-bold));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: .75rem;
  font-size: 2rem;
  font-weight: 700;
}

.pricingPage-ctaSubtitle {
  background: linear-gradient(180deg, var(--brand-color), var(--brand-color-bold));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.pricingPage-ctaButtonRow {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.pricingPage-ctaButton {
  width: 100%;
  color: var(--brand-color);
  background: #fff;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: background-color .3s, box-shadow .3s, transform .2s;
  display: flex;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

.pricingPage-ctaButton:hover {
  background: #d1fae5;
}

.pricingPage-ctaButtonIcon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-color);
  margin-left: .5rem;
}

.pricingPage-ctaButton:hover .pricingPage-ctaButtonIcon {
  transform: translateX(.25rem);
}

.pricingPage-section {
  background: #f3f4f6;
}

.pricingPage-tierContainer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricingPage-tierHeaderBadge {
  color: var(--brand-color-bold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricingPage-tierTitle {
  color: #1f2937;
}

.pricingPage-tierSubtitle {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.pricingPage-tierGrid {
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  display: grid;
}

@media (min-width: 1024px) {
  .pricingPage-tierGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricingPage-tierColumn {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.pricingPage-tierCard {
  background: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px #1018280d;
}

.pricingPage-tierCardHeader {
  min-height: 140px;
}

.pricingPage-tierCardTitle {
  color: #374151;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.pricingPage-tierCardDesc {
  color: #6b7280;
  min-height: 25px;
}

.pricingPage-tierCardPrice {
  min-height: 30px;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.pricingPage-tierButton {
  border-radius: .5rem;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  transition: background-color .2s, color .2s;
}

.pricingPage-tierButton--essential {
  background: var(--brand-color);
  color: #fff;
}

.pricingPage-tierButton--default {
  color: #374151;
  background: #e2e8f0;
}

.pricingPage-tierButton--spacer {
  margin-top: 52px;
}

.pricingPage-tierFeatures {
  grid-row-gap: .5rem;
  grid-auto-rows: minmax(0, auto);
  display: grid;
}

.pricingPage-tierAdvancedTitle {
  color: var(--brand-color-bold);
  border-top: 1px solid #f3f4f6;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-weight: 600;
}

.pricingPage-tierAdvancedTitle--custom {
  margin-top: 3rem;
}

.pricingPage-tierPriceCustom {
  color: var(--brand-color);
}

.pricingPage-tierPricePeriod {
  font-size: 1.125rem;
  font-weight: 400;
}

.pricingPage-tierFeatureItem {
  align-items: flex-start;
  display: flex;
}

.pricingPage-tierFeatureIcon {
  color: var(--brand-color);
  cursor: default;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .25rem;
  margin-right: .25rem;
  display: inline-block;
}

.pricingPage-sectionContainer {
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pricingPage-headerContainer {
  text-align: center;
}

.pricingPage-mainTitle {
  text-align: center;
  max-width: 80rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .pricingPage-mainTitle {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .pricingPage-mainTitle {
    font-size: 3rem;
  }
}

.pricingPage-mainTitleH2 {
  text-align: center;
  max-width: 80rem;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .pricingPage-mainTitleH2 {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .pricingPage-wrapper {
    flex-direction: column;
  }

  .pricingPage-container {
    margin: 50px auto;
  }
}

.pricingPage-addonsTitle {
  text-align: center;
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.pricingPage-addonsSubtitle {
  text-align: center;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.pricingPage-bgYellow500 {
  background-color: #eab308;
}

.pricingPage-bgRed500 {
  background-color: #ef4444;
}

.pricingPage-bgBlue500 {
  background-color: #3b82f6;
}

.pricingPage-addonIconSvg {
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
}

.pricingPage-addonTextSmall {
  color: #4b5563;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 500;
}

.pricingPage-compareHead {
  background: #f9fafb;
}

.pricingPage-compareTh, .pricingPage-compareCell {
  padding: 1rem 1.5rem;
}

.pricingPage-compareFeatureTh {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
}

.pricingPage-compareRow {
  border-top: 1px solid #e5e7eb;
}

.pricingPage-compareRow:hover {
  background: #f9fafb;
}

.pricingPage-compareCell {
  text-align: center;
}

.pricingPage-compareFeatureCell {
  text-align: left;
  font-weight: 500;
}

.pricingPage-combinedSection {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pricingPage-combinedContainer {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 2rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: .5rem;
  padding-right: 1rem;
  display: grid;
}

@media (min-width: 1024px) {
  .pricingPage-combinedContainer {
    grid-template-columns: 2.2fr 1fr;
    gap: 1.5rem;
  }
}

.pricingPage-compareSide, .pricingPage-addonsSide {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.pricingPage-addonsColumn {
  grid-template-rows: repeat(4, 1fr);
  gap: .75rem;
  height: 100%;
  display: grid;
}

.pricingPage-compareTable {
  color: #1f2937;
  background: #fff;
  border-radius: .75rem;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

.pricingPage-addonCard {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .75rem;
  flex-direction: column;
  padding: 1rem;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
  box-shadow: 0 1px 2px #1018280d;
}

.pricingPage-tooltip {
  cursor: help;
  border-bottom: 1px dotted #9ca3af;
  position: relative;
}

.pricingPage-tooltip:after {
  content: attr(data-tip);
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  background: #111827f2;
  border-radius: 6px;
  margin-left: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 400;
  transition: opacity .2s;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.pricingPage-tooltip:hover:after {
  opacity: 1;
}

.pricingPage-tierCarousel {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 3rem;
  display: none;
  position: relative;
}

.pricingPage-carouselTrack {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  overflow-x: hidden;
}

.pricingPage-carouselTrack::-webkit-scrollbar {
  display: none;
}

.pricingPage-carouselSlide {
  scroll-snap-align: start;
  min-width: 100%;
  padding: 0 .5rem;
}

.pricingPage-carouselDoubleSlide {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.pricingPage-carouselBtn {
  color: var(--brand-color);
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.pricingPage-carouselBtn:hover {
  color: var(--brand-color-bold);
}

.pricingPage-carouselBtn--prev {
  left: 0;
}

.pricingPage-carouselBtn--next {
  right: 0;
}

.pricingPage-carouselDots {
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  display: flex;
}

.pricingPage-carouselDot {
  cursor: pointer;
  background: #d1d5db;
  border: none;
  border-radius: 50%;
  width: .625rem;
  height: .625rem;
  padding: 0;
  transition: all .3s;
}

.pricingPage-carouselDot.is-active {
  background: var(--brand-color);
  border-radius: .3125rem;
  width: 1.5rem;
}

.pricingPage-mobilePlanSelector {
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  display: none;
}

.pricingPage-mobilePlanLabel {
  color: #374151;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.pricingPage-mobilePlanSelect {
  color: #1f2937;
  cursor: pointer;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right .75rem center / 1.25rem no-repeat;
  border: 2px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  padding: .75rem 2.5rem .75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.pricingPage-mobilePlanSelect:focus {
  border-color: var(--brand-color);
  outline: none;
  box-shadow: 0 0 0 3px #0096881a;
}

.pricingPage-compareTableDesktop {
  display: table;
}

.pricingPage-compareTableMobile {
  display: none;
}

.pricingPage-addonsMobileSection {
  margin-top: 2rem;
  padding: 0 1rem;
  display: none;
}

.pricingPage-addonsMobileGrid {
  grid-template-columns: 1fr;
  gap: 1rem;
  display: grid;
}

@media (min-width: 640px) {
  .pricingPage-addonsMobileGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .pricingPage-tierCarousel {
    display: block;
  }

  .pricingPage-tierGrid {
    display: none;
  }

  .pricingPage-mobilePlanSelector {
    display: block;
  }

  .pricingPage-compareTableDesktop {
    display: none;
  }

  .pricingPage-compareTableMobile {
    display: table;
  }

  .pricingPage-combinedContainer {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricingPage-addonsSide {
    display: none;
  }

  .pricingPage-addonsMobileSection {
    display: block;
  }

  .pricingPage-compareTitle {
    padding: 0 1rem;
    font-size: 1.5rem;
  }

  .pricingPage-compareToggle {
    padding: 0 1rem;
  }

  .pricingPage-compareTable {
    border-radius: .5rem;
    margin: 0 1rem;
  }

  .pricingPage-addonCard {
    padding: 1.25rem;
  }

  .pricingPage-addonIcon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .pricingPage-addonTitle {
    font-size: 1.125rem;
  }

  .pricingPage-comparePlanHeader {
    min-width: auto;
    padding: 1rem;
  }

  .pricingPage-comparePlanName {
    margin-bottom: .5rem;
    font-size: 1rem;
  }

  .pricingPage-comparePlanPrice {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .pricingPage-compareTitle {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .pricingPage-addonsTitle {
    margin-bottom: .75rem;
    font-size: 1.5rem;
  }

  .pricingPage-addonsSubtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .pricingPage-carouselBtn {
    width: 2rem;
    height: 2rem;
  }

  .pricingPage-tierCarousel {
    padding: 0 2.5rem;
  }

  .pricingPage-tierCard {
    padding: 1.25rem;
  }

  .pricingPage-tierCardTitle {
    font-size: 1.25rem;
  }

  .pricingPage-tierCardPrice {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricingPage-tierCarousel {
    display: none;
  }

  .pricingPage-tierGrid {
    display: grid;
  }

  .pricingPage-mobilePlanSelector {
    display: none;
  }

  .pricingPage-compareTableDesktop {
    display: table;
  }

  .pricingPage-compareTableMobile {
    display: none;
  }

  .pricingPage-addonsSide {
    display: flex;
  }

  .pricingPage-addonsMobileSection {
    display: none;
  }
}

/* [project]/pages/styles/faqPage.css [client] (css) */
.faqPage-container {
  background-color: #fff;
  min-height: 100vh;
}

.dark .faqPage-container {
  background-color: #111827;
}

.faqPage-header {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.dark .faqPage-header {
  background-color: #1f2937;
  border-bottom-color: #374151;
}

.faqPage-header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faqPage-header-flex {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

@media (min-width: 768px) {
  .faqPage-header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.faqPage-title {
  color: #111827;
  margin-bottom: .5rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.dark .faqPage-title {
  color: #f3f4f6;
}

.faqPage-subtitle {
  color: #4b5563;
}

.dark .faqPage-subtitle {
  color: #9ca3af;
}

.faqPage-header-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.faqPage-main-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faqPage-layout {
  gap: 2rem;
  display: flex;
  position: relative;
}

.faqPage-main-content {
  flex: 1;
  min-width: 0;
}

.faqPage-sidebar {
  flex-shrink: 0;
  width: 16rem;
  display: none;
}

@media (min-width: 1024px) {
  .faqPage-sidebar {
    display: block;
  }
}

.faqPage-sidebar-sticky {
  max-height: calc(100vh - 7rem);
  padding-bottom: 2.5rem;
  position: sticky;
  top: 6rem;
  overflow-y: auto;
}

.faqPage-sidebar-title {
  color: #111827;
  margin-bottom: 1rem;
  padding: 0 .75rem;
  font-size: .875rem;
  font-weight: 600;
}

.dark .faqPage-sidebar-title {
  color: #f3f4f6;
}

.faqPage-sidebar-list {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.faqPage-sidebar-item {
  align-items: center;
  display: flex;
}

.faqPage-sidebar-toggle {
  cursor: pointer;
  border-radius: .25rem;
  padding: .25rem;
  transition: background-color .2s;
}

.faqPage-sidebar-toggle:hover {
  background-color: #f3f4f6;
}

.dark .faqPage-sidebar-toggle:hover {
  background-color: #1f2937;
}

.faqPage-sidebar-link {
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .375rem;
  flex: 1;
  width: 100%;
  padding: .5rem .75rem;
  font-size: .875rem;
  transition: all .2s;
}

.faqPage-sidebar-link-active {
  color: #009688;
  background-color: #0096881a;
  font-weight: 500;
}

.faqPage-sidebar-link-inactive {
  color: #4b5563;
}

.dark .faqPage-sidebar-link-inactive {
  color: #9ca3af;
}

.faqPage-sidebar-link-inactive:hover {
  color: #111827;
  background-color: #f9fafb;
}

.dark .faqPage-sidebar-link-inactive:hover {
  color: #f3f4f6;
  background-color: #1f2937;
}

.faqPage-sidebar-submenu {
  border-left: 2px solid #e5e7eb;
  flex-direction: column;
  gap: .25rem;
  margin-top: .25rem;
  margin-left: 2rem;
  padding-left: .75rem;
  display: flex;
}

.dark .faqPage-sidebar-submenu {
  border-left-color: #374151;
}

.faqPage-breadcrumb {
  color: #4b5563;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  display: flex;
}

.dark .faqPage-breadcrumb {
  color: #9ca3af;
}

.faqPage-breadcrumb-link {
  cursor: pointer;
  transition: color .2s;
}

.faqPage-breadcrumb-link:hover, .dark .faqPage-breadcrumb-link:hover {
  color: #009688;
}

.faqPage-breadcrumb-separator {
  color: #9ca3af;
}

.faqPage-breadcrumb-current {
  color: #111827;
  font-weight: 500;
}

.dark .faqPage-breadcrumb-current {
  color: #f3f4f6;
}

.faqPage-content {
  max-width: 100%;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.faqPage-content h2, .faqPage-content h3 {
  scroll-margin-top: 6rem;
}

.faqPage-content a {
  color: #009688;
  text-decoration: none;
}

.faqPage-content a:hover {
  color: #00796b;
}

.faqPage-content img, .faqPage-content video {
  border-radius: .5rem;
}

.faqPage-search-wrapper {
  width: 100%;
  max-width: 28rem;
  position: relative;
}

.faqPage-search-input-wrapper {
  position: relative;
}

.faqPage-search-icon {
  color: #9ca3af;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: .75rem;
  transform: translateY(-50%);
}

.faqPage-search-input {
  color: #111827;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  width: 100%;
  padding: .5rem 2.5rem;
  font-size: .875rem;
}

.faqPage-search-input::placeholder {
  color: #6b7280;
}

.dark .faqPage-search-input {
  color: #f3f4f6;
  background-color: #1f2937;
  border-color: #4b5563;
}

.dark .faqPage-search-input::placeholder {
  color: #9ca3af;
}

.faqPage-search-input:focus {
  ring: 2px;
  ring-color: #009688;
  border-color: #0000;
  outline: none;
}

.faqPage-search-clear {
  color: #9ca3af;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem;
  transition: color .2s;
  position: absolute;
  top: 50%;
  right: .75rem;
  transform: translateY(-50%);
}

.faqPage-search-clear:hover {
  color: #4b5563;
}

.dark .faqPage-search-clear:hover {
  color: #d1d5db;
}

.faqPage-search-results {
  z-index: 50;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  max-height: 24rem;
  margin-top: .5rem;
  position: absolute;
  overflow-y: auto;
  box-shadow: 0 10px 15px -3px #0000001a;
}

.dark .faqPage-search-results {
  background-color: #1f2937;
  border-color: #374151;
}

.faqPage-search-results-list {
  padding: .5rem 0;
}

.faqPage-search-result-item {
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: .75rem 1rem;
  transition: background-color .2s;
}

.faqPage-search-result-item:hover {
  background-color: #f9fafb;
}

.dark .faqPage-search-result-item:hover {
  background-color: #374151;
}

.faqPage-search-result-title {
  color: #111827;
  margin-bottom: .25rem;
  font-weight: 500;
}

.dark .faqPage-search-result-title {
  color: #f3f4f6;
}

.faqPage-search-result-snippet {
  color: #4b5563;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .875rem;
  display: -webkit-box;
  overflow: hidden;
}

.dark .faqPage-search-result-snippet {
  color: #9ca3af;
}

.faqPage-search-no-results {
  z-index: 50;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: 1rem;
  position: absolute;
  box-shadow: 0 10px 15px -3px #0000001a;
}

.dark .faqPage-search-no-results {
  background-color: #1f2937;
  border-color: #374151;
}

.faqPage-search-no-results-text {
  color: #4b5563;
  text-align: center;
  font-size: .875rem;
}

.dark .faqPage-search-no-results-text {
  color: #9ca3af;
}

.faqPage-version-wrapper {
  display: inline-block;
  position: relative;
}

.faqPage-version-select {
  appearance: none;
  color: #111827;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  padding: .5rem 2.5rem .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .2s;
}

.faqPage-version-select:hover {
  background-color: #f9fafb;
}

.dark .faqPage-version-select {
  color: #f3f4f6;
  background-color: #1f2937;
  border-color: #4b5563;
}

.dark .faqPage-version-select:hover {
  background-color: #374151;
}

.faqPage-version-select:focus {
  ring: 2px;
  ring-color: #009688;
  outline: none;
}

.faqPage-version-icon {
  color: #6b7280;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: .75rem;
  transform: translateY(-50%);
}

.faqPage-mobile-toggle {
  color: #4b5563;
  cursor: pointer;
  background-color: #f3f4f6;
  border: none;
  border-radius: .5rem;
  padding: .5rem;
  transition: background-color .2s;
  display: block;
}

@media (min-width: 1024px) {
  .faqPage-mobile-toggle {
    display: none;
  }
}

.faqPage-mobile-toggle:hover {
  background-color: #e5e7eb;
}

.dark .faqPage-mobile-toggle {
  color: #9ca3af;
  background-color: #374151;
}

.dark .faqPage-mobile-toggle:hover {
  background-color: #4b5563;
}

.faqPage-mobile-overlay {
  z-index: 40;
  background-color: #00000080;
  display: block;
  position: fixed;
  inset: 0;
}

@media (min-width: 1024px) {
  .faqPage-mobile-overlay {
    display: none;
  }
}

.faqPage-mobile-sidebar {
  z-index: 50;
  background-color: #fff;
  width: 16rem;
  padding: 1rem;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px #0000001a;
}

@media (min-width: 1024px) {
  .faqPage-mobile-sidebar {
    display: none;
  }
}

.dark .faqPage-mobile-sidebar {
  background-color: #111827;
}

.faqPage-mobile-sidebar-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.faqPage-mobile-sidebar-title {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
}

.dark .faqPage-mobile-sidebar-title {
  color: #f3f4f6;
}

.faqPage-mobile-close {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .5rem;
  padding: .5rem;
  transition: background-color .2s;
}

.faqPage-mobile-close:hover {
  background-color: #f3f4f6;
}

.dark .faqPage-mobile-close:hover {
  background-color: #1f2937;
}

.faqPage-loading {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.faqPage-loading-pulse {
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.faqPage-loading-bar {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 33.3333%;
  height: 2rem;
  margin-bottom: 1rem;
}

.dark .faqPage-loading-bar {
  background-color: #374151;
}

.faqPage-loading-line {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 100%;
  height: 1rem;
  margin-bottom: .5rem;
}

.dark .faqPage-loading-line {
  background-color: #374151;
}

.faqPage-loading-line-short {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 83.3333%;
  height: 1rem;
}

.dark .faqPage-loading-line-short {
  background-color: #374151;
}

.faqPage-cta {
  background-color: #0096881a;
  border: 1px solid #009688;
  border-radius: .5rem;
  margin-top: 3rem;
  padding: 1.5rem;
}

.dark .faqPage-cta {
  background-color: #1f2937;
  border-color: #374151;
}

.faqPage-cta-title {
  color: #111827;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.dark .faqPage-cta-title {
  color: #f3f4f6;
}

.faqPage-cta-text {
  color: #4b5563;
  margin-bottom: 1rem;
}

.dark .faqPage-cta-text {
  color: #9ca3af;
}

.faqPage-cta-button {
  color: #fff;
  background-color: #009688;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
}

.faqPage-cta-button:hover {
  background-color: #00796b;
}

.faqPage-back-to-top {
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
  padding-top: 2rem;
}

.dark .faqPage-back-to-top {
  border-top-color: #374151;
}

.faqPage-back-to-top-button {
  color: #009688;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color .2s;
}

.faqPage-back-to-top-button:hover {
  color: #00796b;
}

.faqPage-theme-toggle {
  color: #4b5563;
  cursor: pointer;
  background-color: #f3f4f6;
  border: none;
  border-radius: .5rem;
  padding: .5rem;
  transition: background-color .2s;
}

.faqPage-theme-toggle:hover {
  background-color: #e5e7eb;
}

.dark .faqPage-theme-toggle {
  color: #9ca3af;
  background-color: #1f2937;
}

.dark .faqPage-theme-toggle:hover {
  background-color: #374151;
}

.faqPage-icon-rotate {
  transition: transform .2s;
}

.faqPage-icon-rotate-90 {
  transform: rotate(90deg);
}

.faqPage-highlight mark {
  color: #000;
  background-color: #ffeb3b;
  border-radius: 2px;
  padding: 0 2px;
}

.dark .faqPage-highlight mark {
  color: #000;
  background-color: #ffc107;
}

/* [project]/pages/styles/chatlogsPage.css [client] (css) */
.chatlogs-container {
  background-color: #f1f5f9;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.chatlogs-main-content {
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.chatlogs-header {
  z-index: 20;
  background-color: #fff;
  border-bottom: 1px solid #e2e8f0;
  height: 4rem;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
}

.chatlogs-header-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.chatlogs-header-left {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.chatlogs-header-menu-button {
  border-radius: .5rem;
  padding: .25rem;
  transition: background-color .2s;
}

.chatlogs-header-menu-button:hover {
  background-color: #f1f5f9;
}

.chatlogs-header-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.chatlogs-header-title {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.chatlogs-header-actions {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-enable-ai-button {
  color: #15803d;
  background-color: #dcfce7;
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  transition: background-color .2s;
}

.chatlogs-enable-ai-button:hover {
  background-color: #bbf7d0;
}

.chatlogs-messages-container {
  background-color: var(--bg-light);
  scrollbar-width: thin;
  flex: 1;
  padding: 0 15px;
  transition: all .3s;
  position: relative;
  overflow-y: auto;
}

.chatlogs-messages-wrapper {
  overscroll-behavior: contain;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
}

.chatlogs-messages-loading-wrapper {
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.chatlogs-message-group {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.chatlogs-message-bot-content, .chatlogs-message-agent-content, .chatlogs-message-user-content {
  margin-bottom: 10px;
}

:is(.chatlogs-message-bot-wrapper:has( + .chatlogs-message-bot-wrapper) .chatlogs-message-bot-content, .chatlogs-message-agent-wrapper:has( + .chatlogs-message-agent-wrapper) .chatlogs-message-agent-content, .chatlogs-message-agent-wrapper:has( + .chatlogs-message-bot-wrapper) .chatlogs-message-agent-content, .chatlogs-message-bot-wrapper:has( + .chatlogs-message-agent-wrapper) .chatlogs-message-bot-content) {
  margin-bottom: 5px !important;
}

.chatlogs-message-user-wrapper:has( + .chatlogs-message-user-wrapper) .chatlogs-message-user-content {
  margin-bottom: 5px !important;
}

.chatlogs-message-user-wrapper {
  justify-content: flex-end;
  display: flex;
}

.chatlogs-message-user-content {
  background: var(--brand-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  clear: both;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  min-width: 100px;
  max-width: 75vw;
  margin: 0 0 10px;
  padding: 8px 14px 14px;
  font-size: 14px;
  line-height: 23px;
  list-style: none;
  display: flex;
  position: relative;
}

.chatlogs-message-user-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  color: inherit;
  margin: 0;
  padding: 0 16px 0 0;
  display: inline;
}

.chatlogs-message-user-text:after {
  content: "        ";
  white-space: nowrap;
  display: inline;
}

.chatlogs-message-user-timestamp {
  white-space: nowrap;
  pointer-events: none;
  opacity: .7;
  margin-top: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.chatlogs-message-bot-wrapper {
  justify-content: flex-start;
  display: flex;
}

.chatlogs-message-bot-content {
  color: #1a1a1a;
  grid-gap: 5px;
  clear: both;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  min-width: 100px;
  max-width: 75vw;
  margin: 0 0 10px;
  padding: 12px 14px 10px;
  line-height: 22px;
  list-style: none;
  display: flex;
  position: relative;
  background: #fafbfc !important;
  font-size: 14px !important;
}

.chatlogs-message-bot-content a {
  color: var(--secondary-color);
  font-weight: 500;
}

.chatlogs-message-bot-text {
  color: #1a1a1a;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  max-width: 100%;
  margin: 0;
  padding: 0 10px 0 0;
  display: inline;
}

.chatlogs-message-bot-text:after {
  content: "        ";
  white-space: nowrap;
  display: inline;
}

.chatlogs-message-bot-timestamp {
  color: #00000073;
  white-space: nowrap;
  pointer-events: none;
  margin-top: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  position: absolute;
  bottom: 2px;
  right: 10px;
}

.chatlogs-message-agent-wrapper {
  justify-content: flex-start;
  display: flex;
}

.chatlogs-message-agent-content {
  color: #1a1a1a;
  grid-gap: 5px;
  clear: both;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  min-width: 100px;
  max-width: 75vw;
  margin: 0 0 10px;
  padding: 12px 14px 14px;
  line-height: 22px;
  list-style: none;
  display: flex;
  position: relative;
  background: #fafbfc !important;
  font-size: 14px !important;
}

.chatlogs-message-bot-content a, .chatlogs-message-agent-content a {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: underline;
}

.chatlogs-message-agent-text {
  color: #1a1a1a;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  max-width: 100%;
  margin: 0;
  padding: 0 70px 0 0;
  display: inline;
}

.chatlogs-message-agent-text:after {
  content: "        ";
  white-space: nowrap;
  display: inline;
}

.chatlogs-message-agent-footer {
  white-space: nowrap;
  pointer-events: none;
  align-items: center;
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 2px;
  right: 10px;
}

.chatlogs-message-agent-footer svg, .chatlogs-message-agent-footer span {
  pointer-events: auto;
}

.chatlogs-message-agent-timestamp {
  color: #00000073;
  white-space: nowrap;
  pointer-events: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
}

.chatlogs-message-status-sending {
  color: #6b7280;
  font-size: 11px;
  line-height: 1;
}

.chatlogs-message-status-sent-icon {
  color: #10b981;
  flex-shrink: 0;
  width: .75rem;
  height: .75rem;
  line-height: 1;
}

.chatlogs-message-status-failed {
  color: #ef4444;
  font-size: 11px;
  line-height: 1;
}

.chatlogs-input-container {
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 1rem;
  position: sticky;
  bottom: 0;
}

.chatlogs-limit-warning {
  color: #991b1b;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: .5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: .75rem;
}

.chatlogs-limit-warning-title {
  font-weight: 500;
}

.chatlogs-limit-warning-text {
  font-size: .875rem;
}

.chatlogs-limit-warning-link {
  color: #009688;
  margin-top: .5rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: -webkit-text-decoration .2s, text-decoration .2s;
  display: inline-block;
}

.chatlogs-limit-warning-link:hover {
  text-decoration: underline;
}

.chatlogs-input-form {
  align-items: center;
  gap: .75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.chatlogs-input-label {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.chatlogs-input-field {
  box-sizing: border-box;
  border: 1px solid #d3d3d3;
  border-radius: 30px;
  outline: none;
  flex: 1;
  height: 45px;
  min-height: 45px;
  font-size: 15px;
  font-weight: 400;
  transition: border-color .2s;
  padding: 10px 15px !important;
}

.chatlogs-input-field:focus {
  border: 1px solid var(--brand-color);
  outline: none;
}

.chatlogs-input-field:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.chatlogs-send-button {
  border: unset;
  background: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  height: 45px;
  padding: 10px 12px;
  font-size: 17px;
  transition: all .2s;
  display: flex;
}

.chatlogs-send-button:hover:not(:disabled) {
  opacity: .9;
}

.chatlogs-send-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.chatlogs-send-button-icon {
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-send-button-spinner {
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  animation: 1s linear infinite spin;
}

.chatlogs-send-button-spinner-circle {
  opacity: .25;
}

.chatlogs-send-button-spinner-path {
  opacity: .75;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.chatlogs-sidebar-overlay {
  z-index: 20;
  background-color: #0003;
  position: fixed;
  inset: 0;
}

.chatlogs-sidebar {
  inset-y: 0;
  z-index: 30;
  background-color: #fff;
  border-right: 1px solid #e2e8f0;
  flex-direction: column;
  width: 20rem;
  transition: transform .3s ease-in-out;
  display: flex;
  position: fixed;
  left: 0;
  transform: translateX(-100%);
}

.chatlogs-sidebar.chatlogs-sidebar-visible {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .chatlogs-sidebar {
    position: relative;
    transform: translateX(0);
  }
}

.chatlogs-sidebar-header {
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid #e2e8f0;
  height: 4rem;
  padding: 1rem;
  position: sticky;
  top: 0;
}

.chatlogs-sidebar-header-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.chatlogs-sidebar-header-left {
  justify-content: flex-start;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-sidebar-header-link {
  color: #475569;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

.chatlogs-sidebar-header-link:hover {
  color: #009688;
}

.chatlogs-sidebar-header-title {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.chatlogs-sidebar-close-button {
  border-radius: 9999px;
  padding: .25rem;
  transition: background-color .2s;
}

.chatlogs-sidebar-close-button:hover {
  background-color: #f1f5f9;
}

.chatlogs-sidebar-close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.chatlogs-sidebar-content {
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.chatlogs-sidebar-section {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem;
}

.chatlogs-bot-selector-wrapper {
  align-items: center;
  gap: .5rem;
  width: 100%;
  display: flex;
}

.chatlogs-bot-selector {
  width: 100% !important;
  height: 3rem !important;
}

.chatlogs-channel-filters {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.chatlogs-channel-button {
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  font-size: .875rem;
  transition: background-color .2s;
  display: flex;
}

.chatlogs-channel-button-all {
  padding: .25rem .75rem;
}

.chatlogs-channel-button-active {
  color: #fff;
  background-color: #009688;
}

.chatlogs-channel-button-active:not(.chatlogs-channel-button-all) {
  background-color: #00766824;
}

.chatlogs-channel-button-inactive {
  color: #475569;
  background-color: #f1f5f9;
}

.chatlogs-channel-button-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-channel-button-icon-active {
  color: #009688;
}

.chatlogs-limits-container {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  margin-top: 1rem;
  padding: .75rem;
  position: relative;
}

.chatlogs-limits-title {
  color: #374151;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 500;
}

.chatlogs-limits-item {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.chatlogs-limits-item-left {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-limits-item-icon {
  color: #3b82f6;
}

.chatlogs-limits-item-label {
  color: #475569;
  font-size: .875rem;
}

.chatlogs-limits-item-help {
  cursor: help;
  position: relative;
}

.chatlogs-limits-item-help-icon {
  color: #94a3b8;
  width: .75rem;
  height: .75rem;
}

.chatlogs-limits-item-help-tooltip {
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  background-color: #1e293b;
  border-radius: .25rem;
  width: 10rem;
  margin-top: .25rem;
  padding: .5rem;
  font-size: .75rem;
  transition: opacity .2s;
  position: absolute;
  top: 100%;
  left: 0;
}

.chatlogs-limits-item-help:hover .chatlogs-limits-item-help-tooltip {
  opacity: 1;
}

.chatlogs-limits-item-help-tooltip:before {
  content: "";
  border-bottom: 2px solid #1e293b;
  border-left: 2px solid #0000;
  border-right: 2px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: .5rem;
}

.chatlogs-limits-item-right {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-limits-item-value {
  font-size: .875rem;
  font-weight: 500;
}

.chatlogs-limits-item-value-positive {
  color: #10b981;
}

.chatlogs-limits-item-value-negative {
  color: #ef4444;
}

.chatlogs-limits-item-chevron {
  color: #94a3b8;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  transition: transform .2s;
}

.chatlogs-limits-item-chevron-expanded {
  transform: rotate(180deg);
}

.chatlogs-limits-expandable {
  transition: all .2s;
  overflow: hidden;
}

.chatlogs-limits-expandable-expanded {
  opacity: 1;
  max-height: 5rem;
  margin-top: .5rem;
}

.chatlogs-limits-expandable-collapsed {
  opacity: 0;
  max-height: 0;
}

.chatlogs-limits-expandable-content {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: .375rem;
  padding: .5rem;
}

.chatlogs-limits-expandable-item {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.chatlogs-limits-expandable-item-left {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-limits-expandable-item-icon {
  color: #10b981;
}

.chatlogs-limits-expandable-item-label {
  color: #475569;
  font-size: .75rem;
}

.chatlogs-limits-expandable-item-value {
  font-size: .75rem;
  font-weight: 500;
}

.chatlogs-limits-expandable-item-value-positive {
  color: #10b981;
}

.chatlogs-limits-expandable-item-value-negative {
  color: #ef4444;
}

.chatlogs-filter-panel {
  background-color: #f8fafc;
  border-radius: .5rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.chatlogs-filter-form {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.chatlogs-filter-field {
  display: block;
}

.chatlogs-filter-label {
  color: #475569;
  margin-bottom: .25rem;
  font-size: .75rem;
  display: block;
}

.chatlogs-filter-input {
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: .25rem;
  outline: none;
  width: 100%;
  padding: .375rem .75rem;
  font-size: .875rem;
  transition: box-shadow .2s;
}

.chatlogs-filter-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #009688;
}

.chatlogs-filter-actions {
  gap: .5rem;
  display: flex;
}

.chatlogs-filter-apply-button {
  color: #fff;
  background-color: #009688;
  border-radius: .25rem;
  flex: 1;
  padding: .375rem .75rem;
  transition: background-color .2s;
}

.chatlogs-filter-apply-button:hover {
  background-color: #007268;
}

.chatlogs-filter-reset-button {
  color: #475569;
  background-color: #e2e8f0;
  border-radius: .25rem;
  padding: .375rem .75rem;
  transition: background-color .2s;
}

.chatlogs-filter-reset-button:hover {
  background-color: #cbd5e1;
}

.chatlogs-search-container, .chatlogs-search-form {
  margin-bottom: 1rem;
  position: relative;
}

.chatlogs-search-input {
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  outline: none;
  width: 100%;
  padding: .375rem 1rem;
  transition: box-shadow .2s;
}

.chatlogs-search-input:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #009688;
}

.chatlogs-search-actions {
  align-items: center;
  gap: .5rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: .5rem;
  transform: translateY(-50%);
}

.chatlogs-search-clear-button {
  color: #94a3b8;
  transition: color .2s;
}

.chatlogs-search-clear-button:hover {
  color: #475569;
}

.chatlogs-search-clear-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-search-submit-button {
  color: #fff;
  background-color: #009688;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  transition: background-color .2s;
}

.chatlogs-search-submit-button:hover {
  background-color: #007268;
}

.chatlogs-actions {
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-action-button {
  color: #475569;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  transition: color .2s;
  display: flex;
}

.chatlogs-action-button:hover {
  color: #0f172a;
}

.chatlogs-action-button-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-select-all-button {
  color: #475569;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  transition: color .2s;
  display: flex;
}

.chatlogs-select-all-button:hover {
  color: #0f172a;
}

.chatlogs-select-all-checkbox {
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-select-all-checkbox-checked {
  color: #009688;
}

.chatlogs-select-all-checkbox-unchecked {
  color: #94a3b8;
}

.chatlogs-unselect-button {
  color: #475569;
  cursor: pointer;
  background: none;
  border: none;
  padding-left: 1.75rem;
  font-size: .875rem;
  transition: color .2s;
}

.chatlogs-unselect-button:hover {
  color: #0f172a;
}

.chatlogs-export-button {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: none;
  border-radius: .25rem;
  padding: .25rem .75rem;
  font-size: .875rem;
  transition: background-color .2s;
}

.chatlogs-export-button:hover:not(:disabled) {
  background-color: #007268;
}

.chatlogs-export-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.chatlogs-filter-date-info {
  color: #64748b;
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
  padding-top: .5rem;
  font-size: .875rem;
}

.chatlogs-filter-date-value {
  color: #009688;
  font-weight: 500;
}

.chatlogs-sidebar-scrollable {
  flex: 1;
  overflow-y: auto;
}

.chatlogs-chat-list {
  flex: 1;
}

.chatlogs-chat-list-loading {
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.chatlogs-chat-list-loading-item {
  background-color: #f1f5f9;
  border-radius: .5rem;
  height: 4rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.chatlogs-chat-list-empty {
  color: #64748b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 1.75rem;
  display: flex;
}

.chatlogs-chat-list-empty-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: .5rem;
}

.chatlogs-chat-list-divider {
  border-top: 1px solid #e2e8f0;
}

.chatlogs-chat-list-no-data {
  text-align: center;
  color: #64748b;
  padding: 1rem;
}

.chatlogs-pagination-container {
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
  position: sticky;
  bottom: 0;
}

.chatlogs-pagination {
  border-top: 1px solid #e2e8f0;
  padding: 1rem;
}

.chatlogs-pagination-content {
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-pagination-button {
  cursor: pointer;
  border: none;
  border-radius: .25rem;
  padding: .375rem .75rem;
  font-size: .75rem;
  transition: background-color .2s, color .2s;
}

.chatlogs-pagination-button-enabled {
  color: #009688;
  background-color: #fff;
  border: 1px solid #009688;
}

.chatlogs-pagination-button-enabled:hover {
  color: #fff;
  background-color: #009688;
}

.chatlogs-pagination-button-disabled {
  color: #94a3b8;
  cursor: not-allowed;
  background-color: #f1f5f9;
}

.chatlogs-pagination-info {
  color: #475569;
  font-size: .75rem;
}

.chatlogs-list-item {
  cursor: pointer;
  padding: 1rem;
  transition: background-color .2s;
}

.chatlogs-list-item:hover {
  background-color: #f8fafc;
}

.chatlogs-list-item-selected {
  background-color: #f0fdf4;
}

.chatlogs-list-item-content {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.chatlogs-list-item-checkbox {
  cursor: pointer;
}

.chatlogs-list-item-checkbox-checked {
  color: #009688;
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-list-item-checkbox-unchecked {
  color: #94a3b8;
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-list-item-main {
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.chatlogs-list-item-name-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.chatlogs-list-item-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.chatlogs-list-item-name-editing {
  border-radius: .25rem;
  outline: 1px solid #009688;
  padding: 0 .25rem;
}

.chatlogs-list-item-name-disabled {
  cursor: not-allowed;
  opacity: .7;
}

.chatlogs-list-item-timestamp {
  color: #64748b;
  font-size: .75rem;
}

.chatlogs-list-item-edit-button {
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  padding-bottom: .75rem;
  transition: color .2s;
}

.chatlogs-list-item-edit-button:hover {
  color: #009688;
}

.chatlogs-list-item-edit-icon {
  width: 1rem;
  height: 1rem;
}

.chatlogs-list-item-delete-button {
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  padding-bottom: .75rem;
  transition: color .2s;
}

.chatlogs-list-item-delete-button:hover {
  color: #ef4444;
}

.chatlogs-list-item-delete-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.chatlogs-list-item-unread-badge-wrapper {
  align-items: center;
  padding-bottom: .75rem;
  display: flex;
}

.chatlogs-list-item-unread-badge {
  color: #fff;
  background-color: #ef4444;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.chatlogs-empty-state {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 28rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  display: flex;
}

.chatlogs-empty-state-content {
  width: 100%;
}

.chatlogs-empty-state-icon-wrapper {
  margin-bottom: 1rem;
}

.chatlogs-empty-state-icon-circle {
  background-color: #0096881a;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.chatlogs-empty-state-icon {
  color: #009688;
  width: 2rem;
  height: 2rem;
}

.chatlogs-empty-state-title {
  color: #1e293b;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.chatlogs-empty-state-text {
  color: #64748b;
  font-size: .875rem;
  line-height: 1.625;
}

.chatlogs-empty-state-button {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .15s ease-in-out;
  display: inline-flex;
}

.chatlogs-empty-state-button:hover {
  background-color: #007268;
}

.chatlogs-empty-state-button-icon {
  width: 1rem;
  height: 1rem;
}

.chatlogs-ai-disabled-badge {
  color: #ef4444;
  background-color: #fef2f2;
  border-radius: 9999px;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: flex;
}

.chatlogs-ai-disabled-label {
  margin-right: .25rem;
}

.chatlogs-bot-option {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.chatlogs-bot-option-logo {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 9999px;
  width: 1.5rem;
  height: 1.5rem;
}

.chatlogs-bot-option-icon {
  color: #94a3b8;
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 767px) {
  .chatlogs-sidebar {
    height: 100%;
  }

  .chatlogs-message-user-content, .chatlogs-message-bot-content, .chatlogs-message-agent-content {
    max-width: 75vw;
  }
}

/* [project]/pages/styles/registerPage.css [client] (css) */
.register-section {
  background-color: #f9fafb;
  padding: 4rem 1rem;
  overflow: visible;
}

.register-container {
  background-color: #fff;
  border-radius: .5rem;
  flex-direction: column;
  width: 70vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  overflow: visible;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

@media (min-width: 768px) {
  .register-container {
    flex-direction: row;
  }
}

.register-form-container {
  flex-direction: column;
  flex: 1;
  padding: 2rem;
  display: flex;
  overflow: visible;
}

.register-form {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
  overflow: visible;
}

.register-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.register-title {
  color: var(--brand-color);
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.register-subtitle {
  color: #4b5563;
}

.register-logo-link {
  width: 6rem;
  display: block;
}

.register-logo-image {
  width: 100%;
}

.register-label {
  color: #6b7280;
  font-size: .875rem;
  font-weight: 400;
  display: block;
}

.register-label-flex {
  color: #6b7280;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.register-input-wrapper {
  position: relative;
}

.register-input {
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: .75rem;
  font-size: .875rem;
  display: block;
}

.register-input:focus {
  border-color: var(--brand-color);
  outline: 0;
  box-shadow: 0 0 0 3px #00796d1a;
}

.register-input-error {
  border: 1px solid #ef4444;
  border-radius: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: .75rem;
  font-size: .875rem;
  display: block;
}

.register-input-error:focus {
  border-color: var(--brand-color);
  outline: 0;
  box-shadow: 0 0 0 3px #00796d1a;
}

.register-name-fields {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

@media (min-width: 768px) {
  .register-name-fields {
    flex-direction: row;
    gap: 1rem;
  }

  .register-name-fields > div {
    flex: 1;
  }
}

.register-password-fields {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
  overflow: visible;
}

@media (min-width: 768px) {
  .register-password-fields {
    flex-direction: row;
    gap: 1rem;
  }

  .register-password-fields > div {
    flex: 1;
  }
}

.register-field-overflow {
  overflow: visible;
}

.register-tooltip-container {
  position: relative;
}

.register-tooltip-icon {
  color: #6b7280;
  cursor: help;
  width: 1rem;
  height: 1rem;
}

.register-tooltip {
  visibility: hidden;
  color: #fff;
  z-index: 50;
  white-space: normal;
  background-color: #000;
  border-radius: .25rem;
  width: 18rem;
  margin-top: .5rem;
  padding: .5rem;
  font-size: .75rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.register-tooltip-container:hover .register-tooltip {
  visibility: visible;
}

.register-toggle-button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  right: .75rem;
  transform: translateY(-50%);
}

.register-icon {
  color: #6b7280;
}

.register-submit-button {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  font-weight: 500;
  transition: all .15s;
  display: flex;
}

.register-submit-button:hover:not(:disabled) {
  background-color: #00796de6;
}

.register-submit-button:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.register-submit-button-loading {
  opacity: .8;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
  position: relative;
}

.register-submit-button-loading:after {
  content: "";
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  animation: .8s linear infinite register-spin;
}

@keyframes register-spin {
  to {
    transform: rotate(360deg);
  }
}

.register-footer-text {
  text-align: left;
  color: #9ca3af;
  font-size: .875rem;
}

.register-link {
  color: var(--brand-color);
  text-decoration: none;
}

.register-link:hover {
  text-decoration: underline;
}

.register-google-button {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  transition: background-color .2s;
  display: flex;
}

.register-google-button:hover {
  background-color: #f9fafb;
}

.register-google-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.register-image-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .register-image-wrapper {
    flex: 1;
    width: 50%;
    display: block;
  }
}

.register-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.register-image {
  -o-object-fit: contain;
  object-fit: contain;
  background-color: #f9fafb;
  width: 100%;
  height: 100%;
  display: block;
}

/* [project]/pages/styles/loginPage.css [client] (css) */
.login-section {
  background-color: #f9fafb;
  padding: 4rem 1rem;
  overflow: visible;
}

.login-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.login-grid {
  background-color: #fff;
  border-radius: .5rem;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  display: grid;
  overflow: visible;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

@media (min-width: 768px) {
  .login-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.login-form-container {
  padding: 2rem;
  overflow: visible;
}

.login-form {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
  overflow: visible;
}

.login-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.login-title {
  color: var(--brand-color);
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.login-subtitle {
  color: #4b5563;
}

.login-logo-link {
  width: 6rem;
  display: block;
}

.login-logo-image {
  width: 100%;
}

.login-error-message {
  color: #ef4444;
  background-color: #fef2f2;
  border-radius: .5rem;
  padding: .75rem;
  font-size: .875rem;
}

.login-label {
  color: #6b7280;
  font-size: .875rem;
  font-weight: 400;
  display: block;
}

.login-label-flex {
  color: #6b7280;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.login-input {
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: .75rem;
  font-size: .875rem;
  display: block;
}

.login-input:focus {
  border-color: var(--brand-color);
  outline: 0;
  box-shadow: 0 0 0 3px #00796d1a;
}

.login-input-error {
  border: 1px solid #ef4444;
  border-radius: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: .75rem;
  font-size: .875rem;
  display: block;
}

.login-input-error:focus {
  border-color: #ef4444;
  outline: 0;
  box-shadow: 0 0 0 3px #ef44441a;
}

.login-input-wrapper, .login-tooltip-container {
  position: relative;
}

.login-tooltip-icon {
  color: #6b7280;
  cursor: help;
  width: 1rem;
  height: 1rem;
}

.login-tooltip {
  visibility: hidden;
  color: #fff;
  z-index: 50;
  white-space: normal;
  background-color: #000;
  border-radius: .25rem;
  width: 18rem;
  margin-top: .5rem;
  padding: .5rem;
  font-size: .75rem;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.login-tooltip-container:hover .login-tooltip {
  visibility: visible;
}

.login-toggle-button {
  cursor: pointer;
  color: #6b7280;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  right: .75rem;
  transform: translateY(-50%);
}

.login-icon {
  color: #6b7280;
}

.login-links-row {
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  display: flex;
}

.login-link {
  color: var(--brand-color);
}

.login-link:hover {
  text-decoration: underline;
}

.login-privacy-container {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.login-privacy-text {
  font-size: .875rem;
}

.login-privacy-error {
  color: #ef4444;
}

.login-submit-button {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.login-submit-button:hover:not(:disabled) {
  opacity: .9;
}

.login-submit-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.login-divider {
  text-align: center;
  position: relative;
}

.login-divider-line-container {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.login-divider-line {
  border-top: 1px solid #e5e7eb;
  width: 100%;
}

.login-divider-text-container {
  text-transform: uppercase;
  justify-content: center;
  font-size: .75rem;
  display: flex;
  position: relative;
}

.login-divider-text {
  color: #6b7280;
  background-color: #fff;
  padding: 0 .5rem;
}

.login-google-button {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  transition: background-color .2s;
  display: flex;
}

.login-google-button:hover {
  background-color: #f9fafb;
}

.login-image-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .login-image-wrapper {
    display: block;
  }
}

.login-image {
  -o-object-fit: contain;
  object-fit: contain;
  background-color: #f9fafb;
  width: 100%;
  height: 100%;
}

/* [project]/pages/styles/404Page.css [client] (css) */
.notFound-container {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 1rem;
  display: flex;
}

@media (min-width: 640px) {
  .notFound-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .notFound-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.notFound-inner-container {
  text-align: center;
  width: 100%;
  max-width: 28rem;
}

.notFound-inner-container > * + * {
  margin-top: 2rem;
}

.notFound-content-wrapper {
  margin-bottom: 1rem;
}

.notFound-content-wrapper > * + * {
  margin-top: 1.5rem;
}

.notFound-title {
  color: #111827;
  font-size: 8rem;
  font-weight: 800;
}

.notFound-heading {
  color: #111827;
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
}

.notFound-description {
  color: #4b5563;
  margin-top: .5rem;
  font-size: .875rem;
}

.notFound-button {
  color: #fff;
  cursor: pointer;
  background-color: #009688;
  border: 1px solid #0000;
  border-radius: .375rem;
  justify-content: center;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  display: flex;
  position: relative;
}

.notFound-button:hover {
  background-color: #007268;
}

.notFound-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007268;
}

.notFound-icon {
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .5rem;
}

/* [project]/pages/styles/blogPage.css [client] (css) */
.blog-error-container {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.blog-error-content {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.blog-error-heading {
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.blog-error-text {
  color: #4b5563;
  margin-bottom: 2rem;
}

.blog-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9fafb !important;
}

.blog-section-bg {
  background-color: #f9fafb;
}

.blog-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: .5rem;
  padding-right: .5rem;
}

@media (min-width: 640px) {
  .blog-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .blog-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.blog-header {
  text-align: left;
  margin-bottom: 2rem;
}

.blog-section-title {
  color: #111827;
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .blog-section-title {
    font-size: 3rem;
  }
}

.blog-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
}

.blog-card {
  background-color: #fff;
  border-radius: .5rem;
  transition-property: transform;
  transition-duration: .3s;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.blog-card:hover {
  transform: translateY(-.25rem);
}

.blog-card-image-wrapper {
  cursor: pointer;
  width: 100%;
  height: 12rem;
  display: block;
  position: relative;
}

.blog-card-image {
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title-wrapper {
  margin-bottom: 1rem;
}

.blog-card-title-link {
  color: #111827;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.25rem;
  font-weight: 700;
  transition-property: color;
  transition-duration: .2s;
  display: -webkit-box;
  overflow: hidden;
}

.blog-card-title-link:hover {
  color: #009688;
}

.blog-card-excerpt {
  color: #4b5563;
}

.blog-skeleton {
  background-color: #fff;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.blog-skeleton-image {
  background-color: #e5e7eb;
  height: 12rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

@media (min-width: 640px) {
  .blog-skeleton-image {
    height: 14rem;
  }
}

@media (min-width: 768px) {
  .blog-skeleton-image {
    height: 16rem;
  }
}

.blog-skeleton-content {
  padding: 1rem;
}

@media (min-width: 640px) {
  .blog-skeleton-content {
    padding: 1.5rem;
  }
}

.blog-skeleton-text {
  flex-direction: column;
  display: flex;
}

.blog-skeleton-text > * + * {
  margin-top: .5rem;
}

.blog-skeleton-text-line {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 100%;
  height: 1rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-skeleton-footer {
  justify-content: space-between;
  display: flex;
}

.blog-skeleton-badge {
  background-color: #e5e7eb;
  border-radius: 9999px;
  width: 6rem;
  height: 1.5rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-skeleton-date {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 8rem;
  height: 1rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-related-card {
  background-color: #fff;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.blog-related-image-wrapper {
  height: 12rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .blog-related-image-wrapper {
    height: 14rem;
  }
}

@media (min-width: 768px) {
  .blog-related-image-wrapper {
    height: 16rem;
  }
}

.blog-related-image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-duration: .5s;
  transform: scale(1);
}

.blog-related-image:hover {
  transform: scale(1.05);
}

.blog-related-content {
  padding: 1rem;
}

@media (min-width: 640px) {
  .blog-related-content {
    padding: 1.5rem;
  }
}

.blog-related-title-wrapper {
  margin-bottom: .5rem;
}

@media (min-width: 640px) {
  .blog-related-title-wrapper {
    margin-bottom: 1rem;
  }
}

.blog-related-title-link {
  color: #111827;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
  font-weight: 700;
  transition-property: color;
  transition-duration: .2s;
  display: -webkit-box;
  overflow: hidden;
}

@media (min-width: 640px) {
  .blog-related-title-link {
    font-size: 1.25rem;
  }
}

.blog-related-title-link:hover {
  color: #009688;
}

.blog-related-section {
  background-color: #f9fafb;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .blog-related-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.blog-related-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: .5rem;
  padding-right: .5rem;
}

@media (min-width: 640px) {
  .blog-related-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .blog-related-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.blog-related-title {
  color: #111827;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .blog-related-title {
    margin-bottom: 2rem;
    font-size: 1.875rem;
  }
}

.blog-related-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
}

.blog-error-message {
  color: #ef4444;
}

.blog-main {
  background-color: #f9fafb;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.blog-skeleton-main {
  background-color: #f9fafb;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-detail-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .blog-detail-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.blog-detail-wrapper {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-detail-content {
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
}

.blog-breadcrumb {
  color: #6b7280;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  display: flex;
}

.blog-breadcrumb-link {
  transition-property: color;
  transition-duration: .15s;
}

.blog-breadcrumb-link:hover {
  color: #009688;
}

.blog-breadcrumb-separator {
  color: #6b7280;
}

.blog-breadcrumb-current {
  color: #374151;
}

.blog-detail-header {
  margin-bottom: .5rem;
}

.blog-detail-title {
  color: #111827;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 45px;
}

@media (min-width: 640px) {
  .blog-detail-title {
    font-size: 2.25rem;
    line-height: 50px;
  }
}

.blog-detail-meta {
  color: #6b7280;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  display: flex;
}

.blog-detail-date {
  color: #6b7280;
  text-transform: capitalize;
  align-items: center;
  gap: .25rem;
  display: flex;
}

.blog-detail-date-icon {
  width: 1rem;
  height: 1rem;
}

.blog-detail-date-text {
  margin-left: .25rem;
}

.blog-detail-image-wrapper {
  border-radius: .5rem;
  height: auto;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .blog-detail-image-wrapper {
    height: 28.125rem;
  }
}

.blog-detail-image {
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-detail-prose {
  max-width: none;
  padding: 0 !important;
}

.blog-video-link-wrapper {
  margin-top: 2rem;
}

.blog-video-link {
  color: #009688;
  border: 1px solid #009688;
  border-radius: .5rem;
  padding: .5rem 1rem;
  transition-property: color;
  transition-duration: .15s;
  display: inline-block;
}

.blog-video-link:hover {
  color: #007268;
}

.blog-skeleton-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .blog-skeleton-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.blog-skeleton-wrapper {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-skeleton-card {
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
}

.blog-skeleton-badge {
  background-color: #e5e7eb;
  border-radius: 9999px;
  width: 6rem;
  height: 1.5rem;
  margin-bottom: 1rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-skeleton-header {
  flex-direction: column;
  margin-bottom: 1.5rem;
  display: flex;
}

.blog-skeleton-header > * + * {
  margin-top: .75rem;
}

.blog-skeleton-title {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 75%;
  height: 2rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-skeleton-subtitle {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 50%;
  height: 1rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-skeleton-image {
  background-color: #e5e7eb;
  border-radius: .5rem;
  width: 100%;
  height: 25rem;
  margin-bottom: 2rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-skeleton-content {
  flex-direction: column;
  display: flex;
}

.blog-skeleton-content > * + * {
  margin-top: 1rem;
}

.blog-skeleton-line {
  background-color: #e5e7eb;
  border-radius: .25rem;
  width: 100%;
  height: 1rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

.blog-not-found-main {
  background-color: #f9fafb;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-not-found-container {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .blog-not-found-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.blog-not-found-heading {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}

.blog-cta-wrapper {
  margin-top: 1.75rem;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

/* [project]/pages/styles/contactPage.css [client] (css) */
.contact-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contact-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .contact-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.contact-content-wrapper {
  flex-direction: column;
  gap: 3rem;
  display: flex;
}

@media (min-width: 1024px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
    display: grid;
  }
}

.contact-left-column {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.contact-title {
  color: #009688;
  margin-bottom: .5rem;
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-subtitle {
  color: #4b5563;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact-right-column {
  width: 100%;
}

.contact-info-inline {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.contact-info-inline .contact-info-title {
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-info-inline .contact-info-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.contact-info-inline .contact-info-item {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-form-container {
  background-color: #fff;
  border-radius: .5rem;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.contact-form-title {
  color: #111827;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .contact-form-title {
    font-size: 1.875rem;
  }
}

.step-indicator {
  border-bottom: 2px solid #e5e7eb;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  display: flex;
}

.step-indicator-text {
  color: #009688;
  font-size: .875rem;
  font-weight: 600;
}

.step-dots {
  gap: .5rem;
  display: flex;
}

.step-dot {
  background-color: #e5e7eb;
  border-radius: 50%;
  width: .75rem;
  height: .75rem;
  transition: background-color .3s;
}

.step-dot-active {
  background-color: #009688;
}

.contact-form {
  flex-direction: column;
  display: flex;
}

.form-step {
  flex-direction: column;
  gap: 1.5rem;
  animation: .3s ease-in-out slideIn;
  display: flex;
}

.contact-button-group {
  gap: 1rem;
  display: flex;
}

.contact-button-group .contact-button {
  flex: 1;
}

.contact-success-message {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.contact-success-content {
  display: flex;
}

.contact-success-icon-wrapper {
  flex-shrink: 0;
}

.contact-success-icon {
  color: #4ade80;
  width: 1.25rem;
  height: 1.25rem;
}

.contact-success-text-wrapper {
  margin-left: .75rem;
}

.contact-success-text {
  color: #166534;
  font-size: .875rem;
  font-weight: 500;
}

.contact-error-message {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.contact-error-content {
  display: flex;
}

.contact-error-icon-wrapper {
  flex-shrink: 0;
}

.contact-error-icon {
  color: #f87171;
  width: 1.25rem;
  height: 1.25rem;
}

.contact-error-text-wrapper {
  margin-left: .75rem;
}

.contact-error-text {
  color: #991b1b;
  font-size: .875rem;
  font-weight: 500;
}

.contact-label {
  color: #374151;
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.contact-input {
  border: 1px solid;
  border-radius: .5rem;
  width: 100%;
  margin-top: .25rem;
  padding: .75rem;
  font-size: .875rem;
  display: block;
}

.contact-input:focus {
  border-color: #009688;
  outline: 0;
  box-shadow: 0 0 0 3px #0096881a;
}

@media (min-width: 640px) {
  .contact-input {
    font-size: .875rem;
  }
}

.contact-input-normal {
  border-color: #e5e7eb;
}

.contact-input-error {
  border-color: #fca5a5;
}

.contact-input-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px #ef44441a;
}

.contact-textarea {
  height: 8rem;
}

.contact-field-error {
  color: #dc2626;
  margin-top: .25rem;
  font-size: .875rem;
}

.contact-button {
  border-radius: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  font-weight: 600;
  transition-property: all;
  transition-duration: .15s;
}

.contact-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #009688;
}

.contact-button-disabled {
  color: #e5e7eb;
  cursor: not-allowed;
  background-color: #9ca3af;
}

.contact-button-active {
  color: #fff;
  background-color: #009688;
}

.contact-button-active:hover {
  background-color: #007268;
}

.contact-button-secondary {
  color: #374151;
  background-color: #e5e7eb;
}

.contact-button-secondary:hover {
  background-color: #d1d5db;
}

.contact-button-loading {
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-spinner {
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: -.25rem;
  margin-right: .75rem;
  animation: 1s linear infinite spin;
}

.contact-spinner circle {
  opacity: .25;
}

.contact-spinner path {
  opacity: .75;
}

.contact-info-section, .contact-info-card {
  display: none;
}

.contact-info-link {
  color: #009688;
  align-items: center;
  font-size: 1.125rem;
  transition-property: color;
  transition-duration: .15s;
  display: flex;
}

.contact-info-link:hover {
  color: #007268;
}

.contact-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .75rem;
}

.contact-info-text {
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-active {
  animation: .3s ease-in-out slideIn;
}

/* [project]/pages/styles/privacyPage.css [client] (css) */
.privacy-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .privacy-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .privacy-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.privacy-content-wrapper {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .privacy-content-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.privacy-header-section {
  text-align: center;
  background-color: #f9fafb;
  border-radius: .5rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .privacy-header-section {
    padding: 2rem;
  }
}

.privacy-title {
  color: #111827;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .privacy-title {
    font-size: 2.25rem;
  }
}

.privacy-intro {
  color: #4b5563;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .privacy-intro {
    font-size: 1.125rem;
  }
}

.privacy-content {
  flex-direction: column;
  display: flex;
}

.privacy-content > * + * {
  margin-top: 1.5rem;
}

.privacy-section-title {
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.privacy-subsection-title {
  color: #1f2937;
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.privacy-definitions-wrapper {
  color: #4b5563;
  flex-direction: column;
  display: flex;
}

.privacy-definitions-wrapper > * + * {
  margin-top: 1rem;
}

.privacy-text {
  color: #4b5563;
  font-size: 1rem;
}

.privacy-list {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.privacy-list-item {
  color: #4b5563;
  margin-bottom: .5rem;
  font-size: 1rem;
}

/* [project]/pages/styles/marketplacePage.css [client] (css) */
.marketplace-title {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.marketplace-title .form-group {
  width: max-content;
}

.marketplace-title h2 {
  font-size: var(--title-size);
  font-weight: 600;
}

.marketplace-wrapper {
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  margin-bottom: 30px;
  display: grid;
}

.marketplace-container {
  width: 100%;
}

.marketplace-header-row {
  grid-gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.marketplace-header-left {
  grid-gap: 12px;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.marketplace-header-right {
  text-align: right;
  font-size: var(--mini-size);
  color: #374151;
  white-space: nowrap;
  font-weight: 500;
}

.marketplace-loading-skeleton {
  background: #e5e7eb;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite marketplace-pulse;
}

.marketplace-loading-placeholder {
  grid-gap: 8px;
  background: #d8dee8;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite marketplace-pulse;
  display: flex;
  position: relative;
}

.marketplace-loading-skeleton-bot-logo {
  background: #e5e7eb;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite marketplace-pulse;
}

.marketplace-loading-skeleton-dropdown {
  background: #e5e7eb;
  border-radius: 8px;
  width: 210px;
  height: 48px;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite marketplace-pulse;
}

.marketplace-character-count {
  text-align: right;
  font-size: var(--mini-size);
  color: #374151;
  white-space: nowrap;
  font-weight: 500;
}

.marketplace-character-count-box {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: .5rem 1rem;
  display: inline-block;
}

.marketplace-character-label {
  color: #6b7280;
}

.marketplace-character-value {
  color: var(--brand-color);
  font-weight: 600;
}

@keyframes marketplace-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.marketplace-item {
  text-align: center;
  grid-gap: 15px;
  background: #d8dee8;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.marketplace-item h2 {
  font-size: var(--p-size);
  font-weight: 500;
  line-height: 30px;
}

.marketplace-btn {
  background: var(--brand-color);
  color: var(--white-color);
  font-size: var(--mini-size);
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 500;
  transition: all .3s ease-in;
}

.marketplace-btn:hover {
  background: var(--brand-color-bold);
}

.marketplace-btn.disabled {
  cursor: not-allowed;
  background: gray;
}

.marketplace-item-thumb {
  width: auto;
  height: 60px;
}

.marketplace-item-thumb img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.button-row {
  grid-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marketplace-details-item {
  text-align: unset;
  grid-gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 800px;
  margin-bottom: 30px;
  padding: 40px;
}

.marketplace-details-item p, .marketplace-popup-wrap p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.marketplace-details-title h2 {
  font-size: var(--title-size);
  font-weight: 700;
}

.marketplace-popup-container {
  z-index: 999;
  background: #00000047;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0;
}

.marketplace-popup-wrap {
  text-align: center;
  grid-gap: 20px;
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 300px;
  padding: 60px;
  display: flex;
  position: relative;
  box-shadow: 0 0 5px #d3d3d3;
}

.cancel-icon {
  color: gray;
  height: unset;
  font-size: 32px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.marketplace-popup-wrap h3 {
  font-size: var(--title-size);
}

.add-file-or-link-btn-wrap {
  justify-content: right;
  min-height: 50px;
  margin: -60px 0 20px;
  display: flex;
}

.guide-content-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;
  display: flex !important;
}

.gSheets-container {
  background-color: #d8dee8;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 2.5rem;
  display: flex;
  position: relative;
}

.gSheets-active-badge {
  color: var(--brand-color);
  background-color: #f1f5f9;
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .875rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.gSheets-icon-container {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
}

.gSheets-icon-container img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.gSheets-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.gSheets-button-container {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  display: flex;
}

.gSheets-button {
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.gSheets-button .xui-loader {
  align-items: center;
  gap: 2px;
  margin-left: 0;
  display: flex;
}

.gSheets-button-connect {
  background-color: var(--brand-color);
  color: #fff;
}

.gSheets-button-connect:hover {
  background-color: var(--brand-color-bold);
}

.gSheets-button-connect:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-button-connect:disabled:hover {
  background-color: var(--brand-color);
}

.gSheets-button-update {
  background-color: var(--brand-color);
  color: #fff;
}

.gSheets-button-update:hover {
  background-color: var(--brand-color-bold);
}

.gSheets-button-update:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-button-update:disabled:hover {
  background-color: var(--brand-color);
}

.gSheets-button-disconnect {
  color: #fff;
  background-color: #ef4444;
}

.gSheets-button-disconnect:hover {
  background-color: #dc2626;
}

.gSheets-button-disconnect:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-button-disconnect:disabled:hover {
  background-color: #ef4444;
}

.gSheets-button-disabled {
  color: #fff;
  background-color: #94a3b8;
}

.gSheets-button-disabled:hover {
  background-color: var(--brand-color-bold);
}

.gSheets-button-freemium {
  color: #fff;
  background-color: #ef4444;
}

.gSheets-button-freemium:hover {
  background-color: #b91c1c;
}

.gSheets-button-library {
  z-index: 10;
  background-color: var(--brand-color);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.gSheets-button-library:hover {
  background-color: var(--brand-color-bold);
}

.gSheets-button-view {
  background-color: var(--brand-color);
  color: #fff;
}

.gSheets-button-view:hover {
  background-color: var(--brand-color-bold);
}

.gSheets-button-view:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-button-view:disabled:hover {
  background-color: var(--brand-color);
}

.gSheets-table-container {
  width: 100%;
  margin-top: 1.25rem;
}

.gSheets-table-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  overflow-x: auto;
  box-shadow: 0 1px 2px #0000000d;
}

.gSheets-table {
  table-layout: fixed;
  width: 100%;
}

.gSheets-table thead {
  background-color: var(--brand-color);
  color: #fff;
}

.gSheets-table thead tr {
  text-align: left;
}

.gSheets-table th {
  vertical-align: middle;
  white-space: nowrap;
  text-align: left;
  color: #fff;
  height: 3rem;
  padding: .75rem;
  font-size: 14px;
  font-weight: 600;
}

.gSheets-table th:first-child {
  width: 40%;
}

.gSheets-table th:nth-child(2) {
  width: 25%;
}

.gSheets-table tbody {
  border-top: 1px solid #e2e8f0;
}

.gSheets-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.gSheets-table tbody tr:nth-child(2n) {
  background-color: #f8fafc;
}

.gSheets-table td {
  padding: 1rem;
}

.gSheets-table-cell-name {
  white-space: nowrap;
  cursor: pointer;
}

.gSheets-table-cell-name:hover {
  color: var(--brand-color);
}

.gSheets-table-cell-id {
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  display: block;
  overflow: hidden;
}

.gSheets-table-cell-id:hover {
  color: var(--brand-color);
}

.gSheets-sheet-row {
  vertical-align: top;
}

.gSheets-sheet-tree-item {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.gSheets-sheet-name {
  font-size: .95rem;
  font-weight: 600;
}

.gSheets-tabs-tree {
  flex-direction: column;
  gap: .25rem;
  margin-top: .5rem;
  margin-left: .5rem;
  display: flex;
}

.gSheets-tab-tree-item {
  color: #4b5563;
  align-items: center;
  gap: .5rem;
  padding: .125rem 0;
  font-size: .875rem;
  display: flex;
}

.gSheets-tree-indent {
  color: #9ca3af;
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
  font-family: monospace;
}

.gSheets-tab-name {
  color: #4b5563;
  font-weight: 400;
}

.gSheets-tab-name:hover {
  color: var(--brand-color);
}

.gSheets-popup-container {
  z-index: 10000;
  background: #00000047;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0;
}

.gSheets-confirm-modal-container {
  z-index: 10002 !important;
}

.swal2-container {
  z-index: 99999 !important;
}

.swal2-backdrop-show {
  z-index: 99998 !important;
}

.gSheets-popup-wrap {
  z-index: 10001;
  background: #fff;
  border-radius: .625rem;
  flex-direction: column;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  padding: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px #d3d3d3;
}

@media (max-width: 768px) {
  .gSheets-popup-wrap {
    width: 100% !important;
    max-width: 95% !important;
    max-height: 90vh !important;
    padding: 1rem !important;
  }
}

.gSheets-popup-cancel-icon {
  color: gray;
  cursor: pointer;
  height: unset;
  font-size: 32px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.gSheets-popup-cancel-icon:hover {
  color: var(--brand-color);
}

.gSheets-popup-content {
  flex: 1;
  padding-right: .5rem;
  overflow: hidden auto;
}

.gSheets-popup-header-row {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
  display: flex;
}

.gSheets-popup-title {
  font-size: var(--title-size);
  flex-shrink: 0;
  margin-bottom: 0;
}

.gSheets-refetch-button {
  color: #333;
  cursor: pointer;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex-shrink: 0;
  padding: .5rem 2rem;
  font-size: .875rem;
  transition: background-color .2s;
}

.gSheets-refetch-button:hover:not(:disabled) {
  background-color: #e0e0e0;
}

.gSheets-refetch-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-popup-description {
  color: #4b5563;
  flex-shrink: 0;
  margin-bottom: 1rem;
  font-size: .875rem;
}

.gSheets-sheet-list-container {
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 1rem;
}

.gSheets-sheet-list {
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  display: flex;
}

.gSheets-sheet-item {
  cursor: pointer;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: background-color .2s, border-color .2s;
}

.gSheets-sheet-item:hover {
  border-color: var(--brand-color);
}

.gSheets-sheet-item-selected {
  background-color: var(--brand-color-light);
  color: var(--brand-color);
  border-color: var(--brand-color);
}

.gSheets-sheet-item-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.gSheets-sheet-item-info {
  flex: 1;
}

.gSheets-sheet-item-title-row {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.gSheets-sheet-item-name {
  margin: 0;
  font-weight: 600;
}

.gSheets-sheet-item-date {
  color: #6b7280;
  white-space: nowrap;
  margin: 0;
  font-size: .75rem;
}

.gSheets-sheet-item-date-selected {
  color: var(--brand-color);
  opacity: .8;
}

.gSheets-sheet-item-checkbox-container {
  margin-left: 1rem;
}

.gSheets-sheet-item-checkbox {
  width: 1.25rem;
  height: 1.25rem;
}

.gSheets-confirm-popup {
  max-width: 400px;
}

.gSheets-confirm-popup .gSheets-action-bar {
  justify-content: flex-end;
  gap: .75rem;
}

.gSheets-action-bar {
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
}

.gSheets-save-button-content {
  white-space: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: .375rem;
  display: flex;
}

.gSheets-save-button-text-desktop {
  display: inline;
}

.gSheets-save-button-text-mobile {
  display: none;
}

.gSheets-view-button-text-desktop {
  display: inline;
}

.gSheets-view-button-text-mobile {
  display: none;
}

.gSheets-selected-count {
  color: #4b5563;
  font-size: .875rem;
}

.gSheets-selected-count-button {
  color: #374151;
  cursor: default;
  white-space: nowrap;
  background-color: #e5e7eb;
  border: none;
  border-radius: .5rem;
  padding: .375rem .75rem;
  font-size: .875rem;
  font-weight: 500;
}

.gSheets-action-buttons {
  gap: .75rem;
  display: flex;
}

.gSheets-button-cancel {
  color: #374151;
  cursor: pointer;
  background-color: #e5e7eb;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.gSheets-button-cancel:hover {
  background-color: #d1d5db;
}

.gSheets-button-save {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.gSheets-button-save:hover {
  background-color: var(--brand-color-bold);
}

.gSheets-button-save:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-button-danger {
  color: #fff;
  cursor: pointer;
  background-color: #ef4444;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.gSheets-button-danger:hover {
  background-color: #dc2626;
}

.gSheets-button-danger:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.gSheets-button-danger:disabled:hover {
  background-color: #ef4444;
}

@keyframes gSheets-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.gSheets-button-clearing {
  animation: 1.5s ease-in-out infinite gSheets-pulse;
}

.gSheets-empty-state {
  text-align: center;
  color: #6b7280;
  padding: 2rem 0;
}

.gSheets-view-table-container {
  width: 100%;
  max-height: 400px;
  margin: 1rem 0;
  overflow-y: auto;
}

.gSheets-available-chars-box {
  background-color: #f0f0f0;
  border-radius: 4px;
  width: 100%;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem .75rem;
  display: block;
}

.gSheets-available-chars-text {
  font-weight: bold;
}

.gSheets-selected-chars-text {
  color: #666;
  margin-left: .5rem;
}

.gSheets-sheet-item-disabled {
  opacity: .6;
  cursor: not-allowed;
}

.gSheets-sheet-item-enabled {
  opacity: 1;
  cursor: pointer;
}

.gSheets-sheet-item-content-disabled {
  cursor: not-allowed;
}

.gSheets-sheet-item-content-enabled {
  cursor: pointer;
}

.gSheets-sheet-item-meta {
  margin-top: .25rem;
  font-size: .875rem;
  font-weight: 600;
}

.gSheets-exceeds-quota-text {
  color: #dc3545;
  margin-left: .5rem;
}

.gSheets-tabs-subsection {
  border-left: 3px solid var(--brand-color);
  margin-top: .75rem;
  padding-left: 1rem;
}

.gSheets-tabs-subsection-selected {
  background-color: #00000005;
}

.gSheets-tabs-subsection-unselected {
  background-color: #0000;
}

.gSheets-worksheets-label {
  color: #666;
  margin-bottom: .5rem;
  font-size: .8rem;
  font-weight: 600;
}

.gSheets-tab-item {
  border-radius: 4px;
  margin-bottom: .25rem;
  padding: .5rem;
  font-size: .875rem;
}

.gSheets-tab-item-selected {
  background-color: #ffffff80;
}

.gSheets-tab-item-unselected {
  background-color: #00000005;
}

.gSheets-tab-item-enabled {
  opacity: 1;
  cursor: pointer;
}

.gSheets-tab-item-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gSheets-tab-item-content {
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  display: flex;
}

.gSheets-tab-item-left {
  flex: 1;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  display: flex;
  overflow: hidden;
}

.gSheets-tab-item-right {
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.gSheets-tab-checkbox {
  cursor: pointer;
  flex-shrink: 0;
  width: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  height: 1rem;
}

.gSheets-tab-checkbox-disabled {
  cursor: not-allowed;
  flex-shrink: 0;
  width: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  height: 1rem;
}

.gSheets-tab-name {
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 100px;
  max-width: 200px;
  font-weight: 500;
  overflow: hidden;
}

.gSheets-tab-meta {
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .8rem;
}

.gSheets-tab-header-input-container {
  flex-shrink: 0;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.gSheets-tab-header-input-label {
  color: #666;
  white-space: nowrap;
  font-size: .75rem;
}

.gSheets-tab-header-input {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 60px;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.gSheets-tab-header-input:focus {
  border-color: var(--brand-color);
  outline: none;
}

.gSheets-exceeds-text {
  color: #dc3545;
  margin-left: .25rem;
}

.gSheets-error-message {
  color: #c33;
  white-space: pre-line;
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  max-height: 400px;
  padding: 1rem;
  font-family: monospace;
  font-size: .875rem;
  line-height: 1.6;
  overflow-y: auto;
}

.gSheets-progress-modal {
  text-align: center;
  max-width: 500px;
}

.gSheets-progress-content {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
}

.gSheets-progress-loader {
  justify-content: center;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.gSheets-spinner {
  border: 4px solid #e0e0e0;
  border-top: 4px solid var(--brand-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: 1s linear infinite gSheets-spin;
}

@keyframes gSheets-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.gSheets-progress-counter-box {
  background-color: #f5f5f5;
  border-radius: 8px;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  padding: 1rem;
  display: flex;
}

.gSheets-progress-counter {
  color: #333;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  display: flex;
}

.gSheets-progress-counter-item {
  border-top: 1px solid #e0e0e0;
  padding-top: .75rem;
}

.gSheets-progress-label {
  color: #666;
  font-weight: 600;
}

.gSheets-progress-value {
  color: var(--brand-color);
  font-weight: 700;
}

.gSheets-progress-name {
  color: #333;
  font-weight: 500;
}

.gSheets-progress-bar-container {
  background-color: #e0e0e0;
  border-radius: 12px;
  width: 100%;
  height: 24px;
  position: relative;
  overflow: hidden;
}

.gSheets-progress-bar-fill {
  background-color: var(--brand-color);
  border-radius: 12px;
  height: 100%;
  transition: width .3s;
  position: relative;
}

.gSheets-progress-bar-fill:after {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff4d, #0000);
  animation: 1.5s infinite gSheets-shimmer;
  position: absolute;
  inset: 0;
}

@keyframes gSheets-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.gSheets-progress-percentage {
  color: var(--brand-color);
  margin-top: .5rem;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gSheets-popup-title {
    margin-bottom: .5rem;
    font-size: 1.125rem;
  }

  .gSheets-popup-description {
    margin-bottom: .75rem;
    font-size: .8125rem;
  }

  .gSheets-view-table-container {
    max-height: calc(90vh - 200px);
    margin: .5rem 0;
  }

  .gSheets-table-wrapper {
    overflow-x: visible;
  }

  .gSheets-table, .gSheets-table thead, .gSheets-table tbody, .gSheets-table th, .gSheets-table td, .gSheets-table tr {
    width: 100%;
    display: block;
  }

  .gSheets-table thead {
    display: none;
  }

  .gSheets-table tbody tr {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    display: block;
    box-shadow: 0 1px 3px #0000001a;
  }

  .gSheets-table tbody tr:nth-child(odd), .gSheets-table tbody tr:nth-child(2n) {
    background-color: #fff;
  }

  .gSheets-table td {
    text-align: left;
    border: none;
    flex-direction: column;
    padding: .5rem 0;
    display: flex;
  }

  .gSheets-table td:before {
    content: attr(data-label);
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: .05em;
    margin-bottom: .25rem;
    font-size: .75rem;
    font-weight: 600;
  }

  .gSheets-table td:first-child:before {
    display: none;
  }

  .gSheets-sheet-tree-item {
    width: 100%;
  }

  .gSheets-sheet-name {
    margin-bottom: .5rem;
    font-size: .875rem;
  }

  .gSheets-tabs-tree {
    margin-top: .25rem;
    margin-left: .25rem;
  }

  .gSheets-tab-tree-item {
    gap: .25rem;
    font-size: .8125rem;
  }

  .gSheets-table-cell-id {
    word-break: break-all;
    font-size: .8125rem;
  }

  .gSheets-action-bar {
    flex-direction: column;
    gap: .2rem;
    padding-top: .75rem;
  }

  .gSheets-action-bar button {
    width: 100%;
    padding: .625rem 1rem;
  }

  .gSheets-button-update, .gSheets-button-cancel {
    font-size: .875rem;
  }

  .gSheets-popup-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .75rem;
  }

  .gSheets-refetch-button {
    width: 100%;
    padding: .625rem 1rem;
    font-size: .875rem;
  }

  .gSheets-available-chars-box {
    width: 100%;
    margin-top: .75rem;
    margin-bottom: .5rem;
    padding: .75rem;
    font-size: .8125rem;
    display: block;
  }

  .gSheets-popup-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 0 !important;
  }

  .gSheets-popup-content::-webkit-scrollbar {
    display: none;
  }

  .gSheets-sheet-list-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    margin-bottom: .5rem;
  }

  .gSheets-sheet-list-container::-webkit-scrollbar {
    display: none;
  }

  .gSheets-sheet-item {
    margin-bottom: .75rem;
    padding: .75rem;
  }

  .gSheets-sheet-item-content {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .gSheets-sheet-item-info {
    width: 100%;
  }

  .gSheets-sheet-item-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }

  .gSheets-sheet-item-name {
    margin-bottom: 0;
    font-size: .875rem;
  }

  .gSheets-sheet-item-date {
    white-space: normal;
    margin-top: 0;
    font-size: .6875rem;
  }

  .gSheets-sheet-item-meta {
    word-wrap: break-word;
    text-align: left;
    margin-top: .25rem;
    font-size: .75rem;
    line-height: 1.4;
  }

  .gSheets-sheet-item {
    position: relative;
  }

  .gSheets-sheet-item-checkbox-container {
    z-index: 10;
    margin: 0;
    position: absolute;
    top: .75rem;
    right: .75rem;
  }

  .gSheets-sheet-item-checkbox {
    width: 1.25rem;
    height: 1.25rem;
  }

  .gSheets-tabs-subsection {
    border-left-width: 2px;
    margin-top: .5rem;
    padding-left: .75rem;
  }

  .gSheets-worksheets-label {
    margin-bottom: .375rem;
    font-size: .75rem;
  }

  .gSheets-tab-item {
    margin-bottom: .375rem;
    padding: .625rem;
    font-size: .8125rem;
    position: relative;
  }

  .gSheets-tab-item-left {
    padding-right: 2rem;
    position: relative;
  }

  .gSheets-tab-item-left .gSheets-tab-checkbox, .gSheets-tab-item-left .gSheets-tab-checkbox-disabled {
    z-index: 10;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
  }

  .gSheets-tab-item-content {
    white-space: normal;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .gSheets-tab-item-left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding-right: 2rem;
  }

  .gSheets-tab-item-right {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    width: 100%;
    padding-left: 1.5rem;
  }

  .gSheets-tab-name {
    word-break: break-word;
    font-size: .8125rem;
  }

  .gSheets-tab-meta {
    text-align: left;
    font-size: .75rem;
    line-height: 1.4;
  }

  .gSheets-tab-checkbox {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
  }

  .gSheets-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    padding-top: .75rem;
  }

  .gSheets-selected-count {
    display: none;
  }

  .gSheets-action-buttons {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    width: 100%;
  }

  .gSheets-action-buttons button {
    flex: 1;
    padding: .3125rem .625rem;
    font-size: .8125rem;
  }

  .gSheets-save-button-content {
    white-space: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .375rem;
    display: flex;
  }

  .gSheets-save-button-text-desktop {
    display: none;
  }

  .gSheets-save-button-text-mobile {
    display: block;
  }

  .gSheets-view-button-text-desktop {
    display: none !important;
  }

  .gSheets-view-button-text-mobile {
    display: inline !important;
  }

  .gSheets-save-button-counter {
    opacity: .9;
    white-space: nowrap;
    font-size: .75rem;
    font-weight: 400;
  }

  .gSheets-selected-count-button {
    display: none;
  }

  .gSheets-popup-cancel-icon {
    padding: .125rem;
    font-size: 28px;
    top: 10px;
    right: 10px;
  }

  .gSheets-button-cancel, .gSheets-button-save {
    padding: .3125rem .625rem;
    font-size: .8125rem;
  }

  .gSheets-selected-count-button {
    color: #374151;
    cursor: default;
    white-space: nowrap;
    background-color: #e5e7eb;
    border: none;
    border-radius: .5rem;
    padding: .375rem .75rem;
    font-size: .875rem;
    font-weight: 500;
  }
}

.gCalendar-container {
  background-color: #d8dee8;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 2.5rem;
  display: flex;
  position: relative;
}

.gCalendar-active-badge {
  color: var(--brand-color);
  background-color: #f1f5f9;
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .875rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.gCalendar-icon-container {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
}

.gCalendar-icon-container img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.gCalendar-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.gCalendar-button-container {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  display: flex;
}

.gCalendar-button {
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  width: fit-content;
  margin: 0 auto;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.gCalendar-button-connect {
  background-color: var(--brand-color);
  color: #fff;
}

.gCalendar-button-connect:hover {
  background-color: var(--brand-color-bold);
}

.gCalendar-button-update {
  background-color: var(--brand-color);
  color: #fff;
}

.gCalendar-button-update:hover {
  background-color: var(--brand-color-bold);
}

.gCalendar-button-disconnect {
  color: #fff;
  background-color: #ef4444;
}

.gCalendar-button-disconnect:hover {
  background-color: #dc2626;
}

.gCalendar-button-disabled {
  color: #fff;
  background-color: #94a3b8;
}

.gCalendar-button-disabled:hover {
  background-color: var(--brand-color-bold);
}

.gCalendar-button-freemium {
  color: #fff;
  background-color: #ef4444;
}

.gCalendar-button-freemium:hover {
  background-color: #b91c1c;
}

.gCalendar-button-view {
  background-color: var(--brand-color);
  color: #fff;
}

.gCalendar-button-view:hover {
  background-color: var(--brand-color-bold);
}

.gCalendar-view-table-container {
  width: 100%;
  max-height: 400px;
  margin: 1rem 0;
  overflow-y: auto;
}

.gCalendar-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.gCalendar-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .875rem;
}

.gCalendar-table thead {
  background-color: var(--brand-color);
}

.gCalendar-table th {
  text-align: left;
  color: #fff;
  padding: 1rem;
}

.gCalendar-table th:first-child {
  width: 33.3333%;
}

.gCalendar-table th:nth-child(2) {
  width: 66.6667%;
}

.gCalendar-table tbody {
  border-top: 1px solid #e2e8f0;
}

.gCalendar-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.gCalendar-table tbody tr:nth-child(2n) {
  background-color: #f8fafc;
}

.gCalendar-table td {
  padding: 1rem;
}

.gCalendar-table-cell-name {
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.gCalendar-table-cell-name:hover {
  color: var(--brand-color);
}

.gCalendar-table-cell-id {
  text-overflow: ellipsis;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.gCalendar-table-cell-id:hover {
  color: var(--brand-color);
}

.gCalendar-primary-badge {
  background-color: var(--brand-color-light);
  color: var(--brand-color);
  border-radius: .25rem;
  padding: .125rem .5rem;
  font-size: .75rem;
}

.gCalendar-popup-container {
  z-index: 10000;
  background: #00000047;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0;
}

.gCalendar-popup-wrap {
  z-index: 10001;
  background: #fff;
  border-radius: .625rem;
  width: 90%;
  max-width: 800px;
  height: auto;
  padding: 2.1875rem;
  position: relative;
  box-shadow: 0 0 5px #d3d3d3;
}

.gCalendar-popup-cancel-icon {
  cursor: pointer;
  color: #6b7280;
  font-size: 1.5rem;
  transition: color .2s;
  position: absolute;
  top: 15px;
  right: 15px;
}

.gCalendar-popup-cancel-icon:hover {
  color: #374151;
}

.gCalendar-popup-title {
  color: #111827;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.gCalendar-popup-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: .875rem;
}

.gCalendar-action-bar {
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.gCalendar-button-cancel {
  color: #374151;
  cursor: pointer;
  background-color: #e5e7eb;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.gCalendar-button-cancel:hover {
  background-color: #d1d5db;
}

.gCalendar-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gCalendar-empty-state {
  text-align: center;
  color: #6b7280;
  padding: 2rem 0;
}

.gCalendar-sheet-list-container {
  max-height: 24rem;
  margin-bottom: 1rem;
  overflow-y: auto;
}

.gCalendar-sheet-list {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.gCalendar-sheet-item {
  cursor: pointer;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  padding: 1rem;
  transition: background-color .2s, border-color .2s;
}

.gCalendar-sheet-item:hover {
  border-color: var(--brand-color);
}

.gCalendar-sheet-item-selected {
  background-color: var(--brand-color-light);
  color: var(--brand-color);
  border-color: var(--brand-color);
}

.gCalendar-sheet-item-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.gCalendar-sheet-item-info {
  flex: 1;
}

.gCalendar-sheet-item-name {
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  display: flex;
}

.gCalendar-sheet-item-date {
  color: #6b7280;
  margin-top: .25rem;
  font-size: .75rem;
}

.gCalendar-sheet-item-date-selected {
  color: var(--brand-color);
  opacity: .8;
}

.gCalendar-sheet-item-checkbox-container {
  margin-left: 1rem;
}

.gCalendar-sheet-item-checkbox {
  width: 1.25rem;
  height: 1.25rem;
}

.gCalendar-selected-count {
  color: #4b5563;
  font-size: .875rem;
}

.gCalendar-action-buttons {
  gap: .75rem;
  display: flex;
}

.gCalendar-button-save {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.gCalendar-button-save:hover {
  background-color: var(--brand-color-bold);
}

.gCalendar-button-save:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gCalendar-button-flex, .whatsapp-button-flex, .messenger-button-flex, .gSheets-button-flex {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.gCalendar-button-spinner, .whatsapp-button-spinner, .messenger-button-spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin: 0;
  animation: 1s linear infinite gSheets-spin;
}

.gSheets-button-spinner-small {
  border: 2px solid #e0e0e0;
  border-top-color: #333;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin: 0;
  animation: 1s linear infinite gSheets-spin;
}

.gSheets-refetch-button-flex {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.gSheets-save-button-content-flex {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.gSheets-modal-overlay {
  z-index: 10;
  background-color: #fffc;
  border-radius: .625rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.gSheets-popup-content-relative {
  position: relative;
}

.gSheets-completion-content {
  text-align: center;
  padding: 20px;
}

.gSheets-completion-icon {
  color: #28a745;
  margin-bottom: 16px;
  font-size: 64px;
}

.gSheets-completion-title {
  color: #28a745;
  margin-bottom: 16px;
}

.gSheets-completion-description {
  margin-bottom: 24px;
}

.gSheets-completion-summary-container {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px;
}

.gSheets-completion-summary-item {
  margin-bottom: 8px;
}

.gSheets-completion-button-full {
  width: 100%;
}

.gSheets-error-title {
  color: #dc3545;
}

.gSheets-view-empty-container {
  justify-content: center;
  align-items: center;
  min-height: 200px;
  display: flex;
}

.whatsapp-empty-state-container {
  width: 300px;
  margin-top: 10px;
  padding: 10px;
}

.whatsapp-table-col-25 {
  width: 25%;
  max-width: 25%;
  overflow: hidden;
}

.whatsapp-table-col-50 {
  width: 50%;
  max-width: 50%;
  overflow: hidden;
}

.whatsapp-table-cell-content {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.gSheets-notification-container {
  z-index: 9999;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.gSheets-button-relative {
  position: relative;
}

.xui-loader-flex {
  gap: 2px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .marketplace-wrapper {
    grid-gap: 10px;
    grid-template-columns: 1fr;
    display: grid;
  }

  .marketplace-title h2 {
    font-size: 20px;
  }

  .marketplace-details-item {
    width: 100%;
    padding: 20px;
  }

  .marketplace-popup-wrap {
    grid-gap: 15px;
    width: 95%;
    height: auto;
    padding: 40px;
  }

  .marketplace-title {
    grid-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .marketplace-title .form-group {
    width: 100%;
  }

  .marketplace-header-row {
    grid-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .marketplace-header-left {
    width: 100%;
  }

  .marketplace-header-right {
    text-align: left;
    width: 100%;
  }

  .marketplace-character-count {
    text-align: left;
  }

  .marketplace-btn {
    padding: 10px 15px;
    font-size: 12px;
  }

  .marketplace-item {
    grid-gap: 10px;
    border-radius: 5px;
    padding: 15px 20px;
  }
}

@media only screen and (min-width: 640px) {
  .marketplace-header-row, .marketplace-header-left {
    align-items: center;
  }
}

.whatsapp-container, .messenger-container {
  background-color: #d8dee8;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 2.5rem;
  display: flex;
  position: relative;
}

.whatsapp-icon-wrapper, .messenger-icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
}

.whatsapp-icon-wrapper img, .messenger-icon-wrapper img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.whatsapp-title, .messenger-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.whatsapp-button-container, .messenger-button-container {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  display: flex;
}

.whatsapp-button-primary, .messenger-button-primary {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  width: fit-content;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.whatsapp-button-primary:hover, .messenger-button-primary:hover {
  background-color: var(--brand-color-bold);
}

.whatsapp-button-primary:disabled, .messenger-button-primary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.whatsapp-button-primary:disabled:hover, .messenger-button-primary:disabled:hover {
  background-color: var(--brand-color);
}

.whatsapp-button-red {
  color: #fff;
  cursor: pointer;
  background-color: #ef4444;
  border: none;
  border-radius: .5rem;
  width: fit-content;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.whatsapp-button-red:hover {
  background-color: #b91c1c;
}

.whatsapp-button-red:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.whatsapp-button-red:disabled:hover {
  background-color: #ef4444;
}

.whatsapp-button-slate {
  color: #fff;
  cursor: pointer;
  background-color: #94a3b8;
  border: none;
  border-radius: .5rem;
  width: fit-content;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.whatsapp-button-slate:hover {
  background-color: var(--brand-color-bold);
}

.whatsapp-button-slate:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.whatsapp-button-slate:disabled:hover {
  background-color: #94a3b8;
}

.whatsapp-button-submit {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  width: fit-content;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.whatsapp-button-submit:hover {
  background-color: var(--brand-color-bold);
}

.whatsapp-button-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.whatsapp-button-submit:disabled:hover {
  background-color: var(--brand-color);
}

.messenger-button-red {
  color: #fff;
  cursor: pointer;
  background-color: #ef4444;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

.messenger-button-red:hover {
  background-color: #dc2626;
}

.whatsapp-button-disabled, .messenger-button-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.whatsapp-table-container, .messenger-table-container {
  width: 100%;
  margin-top: 1.25rem;
}

.whatsapp-table-wrapper, .messenger-table-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  overflow-x: auto;
  box-shadow: 0 1px 2px #0000000d;
}

.whatsapp-table, .messenger-table {
  table-layout: fixed;
  width: 100%;
  min-width: 100%;
  font-size: .875rem;
}

.whatsapp-table thead, .messenger-table thead {
  background-color: var(--brand-color);
  color: #fff;
}

.whatsapp-table th, .messenger-table th {
  vertical-align: middle;
  white-space: nowrap;
  text-align: left;
  color: #fff;
  height: 3rem;
  padding: .75rem;
  font-size: 11px;
  font-weight: 600;
}

.whatsapp-table th.text-center, .messenger-table th.text-center {
  text-align: center;
}

.whatsapp-table tbody, .messenger-table tbody {
  border-top: 1px solid #e2e8f0;
}

.whatsapp-table tbody tr, .messenger-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.whatsapp-table tbody tr.odd-row, .messenger-table tbody tr.odd-row {
  background-color: #fff;
}

.whatsapp-table tbody tr.even-row, .messenger-table tbody tr.even-row {
  background-color: #f8fafc;
}

.whatsapp-table td, .messenger-table td {
  padding: 1rem;
}

.whatsapp-table-cell, .messenger-table-cell {
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.whatsapp-table-cell:hover, .messenger-table-cell:hover {
  color: var(--brand-color);
}

.whatsapp-table-cell-nowrap, .messenger-table-cell-nowrap {
  white-space: nowrap;
}

.whatsapp-table-cell-text-right {
  text-align: right;
}

.whatsapp-table-cell-text-left {
  text-align: left;
}

.whatsapp-warning-box {
  background-color: #fffbeb;
  border-left: 4px solid #fbbf24;
  border-radius: .5rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px #0000000d;
}

.whatsapp-warning-content {
  align-items: flex-start;
  display: flex;
}

.whatsapp-warning-icon {
  color: #f59e0b;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: .125rem;
}

.whatsapp-warning-text-wrapper {
  flex: 1;
  margin-left: 1rem;
}

.whatsapp-warning-title {
  color: #78350f;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
}

.whatsapp-warning-description {
  color: #92400e;
  font-size: .875rem;
  line-height: 1.625;
}

.whatsapp-warning-strong {
  font-weight: 600;
}

.whatsapp-success-container {
  margin-bottom: .75rem;
}

.whatsapp-success-title {
  margin-bottom: .25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.whatsapp-success-description {
  color: #374151;
  margin-bottom: .25rem;
  font-size: .875rem;
}

.whatsapp-success-description-small {
  color: #6b7280;
  margin-bottom: .5rem;
  font-size: .75rem;
}

.whatsapp-link-text {
  color: var(--brand-color);
  text-decoration: none;
}

.whatsapp-link-text:hover {
  text-decoration: underline;
}

.whatsapp-copy-group {
  align-items: stretch;
  display: flex;
}

.whatsapp-copy-input {
  border: 1px solid #d1d5db;
  border-right: none;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
  flex: 1;
  padding: .5rem .75rem;
}

.whatsapp-copy-button {
  border-radius: 0 .5rem .5rem 0;
}

.whatsapp-icon-margin {
  margin-right: .5rem;
}

.messenger-table-header, .messenger-table-header-row {
  text-align: left;
}

.messenger-table-width-25 {
  width: 25%;
}

.messenger-table-width-50 {
  width: 50%;
}

.messenger-table-width-75 {
  width: 75%;
}

.whatsapp-full-width, .messenger-full-width {
  width: 100%;
}

.whatsapp-full-width-margin, .messenger-full-width-margin {
  width: 100%;
  margin-top: 1.25rem;
}

.whatsapp-flex-center, .messenger-flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.whatsapp-margin-bottom, .messenger-margin-bottom {
  margin-bottom: 1rem;
}

.gCalendar-empty-state, .gSheets-empty-state-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  display: flex;
}

.gCalendar-empty-image, .gSheets-empty-image {
  opacity: .75;
  width: 6rem;
  height: 6rem;
  margin-bottom: 1rem;
}

.gCalendar-empty-text, .gSheets-empty-text {
  color: #6b7280;
}

.gSheets-icon-container img, .gCalendar-icon-container img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* [project]/pages/styles/libraryPage.css [client] (css) */
.library-bot-selector {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  gap: .75rem;
  width: 100%;
  display: flex;
}

@media (min-width: 640px) {
  .library-bot-selector {
    align-items: center;
  }
}

.library-header-row {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.library-flex-row {
  flex-direction: row;
  display: flex;
}

.library-flex-col {
  flex-direction: column;
  display: flex;
}

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

.library-flex-end {
  justify-content: flex-end;
  display: flex;
}

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

.library-grid-2col {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.library-tabs-margin {
  flex-direction: column;
  min-height: 0;
  max-height: none;
  margin-top: 30px;
  display: flex;
}

.library-tab-panel {
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
}

.library-sheets-tab-icon {
  align-items: center;
  gap: 8px;
  display: flex;
}

.library-empty-state {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 48px 24px;
  display: flex;
}

.library-empty-state-header {
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  display: flex;
}

.library-empty-state-title {
  color: #495057;
  font-size: 16px;
  font-weight: 500;
}

.library-empty-state-text {
  color: #6c757d;
  text-align: center;
  margin: 0;
  font-size: 14px;
}

.library-stats-block {
  text-align: right;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 5px 10px;
}

.library-stats-label {
  color: #4a5568;
  font-weight: 500;
}

.library-stats-value {
  font-size: .9rem;
}

.library-stats-value-success {
  color: #2f855a;
}

.library-stats-value-warning {
  color: #e53e3e;
}

.library-btn-secondary {
  box-shadow: none;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
  background: none;
  margin: 0 0 0 10px;
}

.library-btn-icon-only {
  box-shadow: none;
  border: 1px solid var(--brand-color);
  background: none;
  margin: 0 0 0 10px;
}

.library-btn-delete-all {
  align-items: center;
  gap: 8px;
  margin: 0 0 0 10px;
  display: flex;
  color: #fff !important;
  background-color: #ef4444 !important;
  border: 1px solid #ef4444 !important;
}

.library-btn-delete-all:hover {
  color: #fff !important;
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
}

.library-btn-cancel {
  color: #fff;
  cursor: pointer;
  background-color: #ccc;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
}

.library-btn-cancel:hover {
  background-color: #bbb;
}

.library-btn-save {
  padding: 8px 16px;
}

.library-btn-add-entry {
  align-items: center;
  gap: 8px;
  display: flex;
}

.library-btn-icon-white {
  color: #fff;
}

.library-pagination-container {
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 0 16px;
  display: flex;
}

.library-pagination-btn {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 100px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.library-pagination-btn:hover:not(:disabled) {
  color: #000;
  background-color: #f5f5f5;
  border-color: #d0d0d0;
}

.library-pagination-btn:active:not(:disabled) {
  background-color: #eee;
  transform: translateY(1px);
}

.library-pagination-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  background-color: #fafafa;
}

.library-pagination-btn-prev, .library-pagination-btn-next {
  flex-direction: row;
}

.library-pagination-icon {
  stroke-width: 2px;
  width: 18px;
  height: 18px;
}

.library-pagination-info-wrapper {
  background-color: #f8f9fa;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding: 8px 16px;
  display: flex;
}

.library-pagination-info {
  color: #666;
  font-size: 14px;
  font-weight: 400;
}

.library-pagination-info strong {
  color: #333;
  font-weight: 600;
}

@media (max-width: 768px) {
  .library-pagination-container {
    box-sizing: border-box;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding: 0 8px 90px;
  }

  .library-pagination-btn {
    flex-shrink: 1;
    min-width: 70px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .library-pagination-btn span {
    display: inline;
  }

  .library-pagination-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .library-pagination-info-wrapper {
    flex-shrink: 1;
    min-width: 90px;
    padding: 6px 10px;
  }

  .library-pagination-info {
    white-space: nowrap;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .library-pagination-container {
    gap: 6px;
    padding: 0 4px 90px;
  }

  .library-pagination-btn {
    min-width: 60px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .library-pagination-btn span {
    display: inline;
  }

  .library-pagination-info-wrapper {
    min-width: 80px;
    padding: 6px 8px;
  }

  .library-pagination-info {
    font-size: 11px;
  }
}

.library-marketplace-notice-container {
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 40px;
  display: flex;
}

.library-marketplace-notice-card {
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 8px;
  max-width: 500px;
  padding: 40px;
  box-shadow: 0 2px 4px #0000001a;
}

.library-marketplace-notice-text {
  color: #4a5568;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.library-marketplace-notice-btn {
  margin-top: 16px;
}

.library-input {
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1;
  padding: 6px 10px;
  font-size: 14px;
  transition: border-color .2s;
}

.library-input-error {
  background-color: #fff5f5;
  border-width: 2px !important;
  border-color: #dc3545 !important;
}

.library-input-error:focus {
  border-color: #dc3545;
  outline: none;
  box-shadow: 0 0 0 3px #dc35451a;
}

.library-textarea {
  resize: vertical;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  transition: border-color .2s;
}

.library-textarea-error {
  background-color: #fff5f5;
  border-width: 2px !important;
  border-color: #dc3545 !important;
}

.library-textarea-error:focus {
  border-color: #dc3545;
  outline: none;
  box-shadow: 0 0 0 3px #dc35451a;
}

.library-custom-text-error-message {
  color: #dc3545;
  margin-top: 4px;
  padding-left: 2px;
  font-size: 12px;
  line-height: 1.2;
}

.library-label {
  align-items: center;
  gap: .5rem;
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
}

.library-tooltip-container {
  margin-left: 0;
  display: inline-block;
  position: relative;
}

.library-tooltip-icon {
  cursor: pointer;
  color: #6b7280;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.library-tooltip-content {
  z-index: 999999;
  pointer-events: none;
  width: 20rem;
  max-width: calc(100vw - 2rem);
  margin-bottom: .5rem;
  position: fixed;
}

@media (min-width: 640px) {
  .library-tooltip-content {
    width: 18rem;
    max-width: 18rem;
  }
}

.library-tooltip-inner {
  color: #fff;
  background-color: #1f2937;
  border-radius: .75rem;
  padding: .75rem;
  font-size: .75rem;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 10px 15px -3px #0000001a;
}

@media (min-width: 640px) {
  .library-tooltip-inner {
    font-size: .875rem;
  }
}

.library-keyword-tag {
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}

.library-keyword-tags-container {
  flex-wrap: wrap;
  gap: 4px;
  display: flex;
}

.library-keyword-input-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.library-keyword-input-wrapper {
  flex-direction: column;
  gap: 4px;
  width: 100%;
  display: flex;
}

.library-keyword-input-row {
  align-items: center;
  gap: 8px;
  width: 100%;
  display: flex;
}

.library-keyword-error-message {
  color: #dc3545;
  margin-top: 2px;
  padding-left: 2px;
  font-size: 12px;
  line-height: 1.2;
}

.library-keyword-remove-btn {
  color: #fff;
  cursor: pointer;
  background-color: #f44;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
}

.library-keyword-remove-btn:hover {
  background-color: #c00;
}

.library-keyword-add-btn {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 6px 12px;
  display: flex;
}

.library-keyword-add-btn:hover {
  background-color: var(--brand-color-bold);
}

.library-form-container {
  border: 2px solid var(--brand-color);
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px;
}

.library-form-title {
  margin-bottom: 16px;
}

.library-form-actions {
  justify-content: flex-end;
  gap: 8px;
  display: flex;
}

.library-data-source-info {
  color: #666;
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
}

.library-data-source-custom-text {
  color: #666;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #e5e7eb;
  border-radius: 4px;
  max-width: 100%;
  margin-top: 4px;
  padding: 6px 8px;
  font-size: 12px;
  font-style: italic;
}

.library-data-source-auto-text {
  color: #666;
  margin-top: 4px;
  font-size: 12px;
}

.library-loading-container {
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  display: flex;
}

.library-icon-brand {
  color: var(--brand-color);
}

.library-icon-gray {
  color: #6c757d;
}

.library-icon-white {
  color: #fff;
}

.library-action-wrapper {
  justify-content: flex-start;
  align-items: end;
  gap: 10px;
  display: flex;
}

.library-action-wrapper .edit-icon {
  color: var(--gray-color);
}

.library-action-wrapper .delete-icon {
  color: var(--danger-color);
}

.library-action-wrapper-item {
  cursor: pointer;
  margin-right: 8px;
  transition: opacity .2s;
}

.library-action-wrapper-item.library-action-disabled {
  cursor: not-allowed;
  opacity: .5;
  pointer-events: none;
}

.library-action-wrapper-delete {
  cursor: pointer;
  transition: opacity .2s;
}

.library-action-wrapper-delete.library-action-disabled {
  cursor: not-allowed;
  opacity: .5;
  pointer-events: none;
}

.library-dates-stacked {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.library-dates-stacked div {
  flex-direction: column;
  font-size: 14px;
  display: flex;
}

.library-date-label {
  color: #6b7280;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 600;
}

.library-mb-16 {
  margin-bottom: 16px;
}

.library-mt-16 {
  margin-top: 16px;
}

.library-gap-8 {
  gap: 8px;
}

.library-gap-12 {
  gap: 12px;
}

.library-tabs-list {
  background: #35a9891f;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.library-tab-item {
  cursor: pointer;
  color: #000;
  font-size: var(--mini-size);
  border: none;
  outline: none;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  height: 42px;
  padding: 0 15px;
  font-weight: 500;
  display: flex;
}

.library-tab-item:focus, .library-tab-item:focus-visible {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.library-tab-item.react-tabs__tab--selected {
  color: #fff;
  background: #009688;
  border-radius: 5px;
  font-weight: 600;
  box-shadow: 0 2px 2px -1px #8d8d8d5e;
  border: none !important;
  outline: none !important;
}

.library-tab-item.react-tabs__tab--selected:hover {
  color: #fff;
  background: #009687dc;
}

.library-tabs-header-container {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.library-tabs-header {
  flex: 1;
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (max-width: 768px) {
  .library-tabs-header-container {
    flex-direction: column;
    gap: 12px;
  }

  .library-tabs-header {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .library-scroll-indicator {
    z-index: 10;
    cursor: pointer;
    width: 32px;
    height: 32px;
    box-shadow: none;
    pointer-events: auto;
    background: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .library-scroll-indicator-left {
    left: 8px;
  }

  .library-scroll-indicator-right {
    right: 8px;
  }

  .library-scroll-chevron {
    color: #fff;
    width: 20px;
    height: 20px;
    animation: 2s ease-in-out infinite library-chevron-pulse;
  }

  @keyframes library-chevron-pulse {
    0%, 100% {
      opacity: 1;
      filter: brightness();
    }

    50% {
      opacity: .6;
      filter: brightness(1.5);
    }
  }

  .library-tabs-list {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    background: #e6e6e6;
    border-radius: 35px;
    gap: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    scroll-padding: 0;
    display: flex;
    overflow: auto hidden;
  }

  .library-tabs-list::-webkit-scrollbar {
    display: none;
  }

  .library-tab-item {
    white-space: nowrap;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    border-radius: 30px;
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 42px;
    padding: 0 16px;
    transition: all .3s;
  }

  .library-tab-item.react-tabs__tab--selected {
    background: var(--brand-color);
    color: #fff;
    box-shadow: none;
    border-radius: 30px;
    border: none !important;
    outline: none !important;
  }

  .library-desktop-number {
    display: inline;
  }

  .library-mobile-number, .library-stats-block .library-desktop-number {
    display: none;
  }

  .library-stats-block .library-mobile-number {
    display: inline;
  }

  .library-header-row {
    align-items: stretch;
    gap: 16px;
    flex-direction: column !important;
  }

  .library-stats-block, .table-stats {
    text-align: left !important;
  }

  .library-add-file-or-link-btn-wrap {
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .library-add-file-or-link-btn-wrap button, .library-add-file-or-link-btn-wrap .library-btn {
    flex: 1;
    width: 100% !important;
    max-width: 100% !important;
  }

  .library-add-file-or-link-btn-wrap.hide-on-selection button {
    display: none !important;
  }

  .library-grid-2col {
    grid-template-columns: 1fr;
  }

  .library-table-wrapper {
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
  }

  .library-table-wrapper::-webkit-scrollbar {
    display: none;
  }

  .library-table-wrapper table, .library-table-wrapper thead, .library-table-wrapper tbody, .library-table-wrapper th, .library-table-wrapper td, .library-table-wrapper tr {
    width: 100%;
    display: block;
  }

  .library-table-wrapper thead {
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
    overflow: hidden !important;
  }

  .library-table-wrapper tbody tr {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 1rem;
    display: flex;
    position: relative;
    box-shadow: 0 1px 3px #0000001a;
  }

  .library-table-wrapper tbody tr:nth-child(odd), .library-table-wrapper tbody tr:nth-child(2n) {
    background-color: #fff;
  }

  .library-table-wrapper td {
    text-align: left;
    border: none;
    flex-direction: column;
    padding: .5rem 0;
    display: flex;
    position: relative;
  }

  .library-table-wrapper .library-checkbox-cell {
    z-index: 1;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
    display: flex;
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0 !important;
  }

  .library-table-wrapper .library-checkbox-cell > div {
    align-items: center;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .library-table-wrapper .library-checkbox-cell ~ td:nth-child(2) {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    margin: 0;
    line-height: 1;
    display: block;
    overflow: hidden;
    padding: 0 0 0 2rem !important;
  }

  .library-table-wrapper .library-checkbox-cell ~ td:nth-child(2) .library-url-container {
    width: 100%;
  }

  .library-table-wrapper .library-checkbox-cell ~ td:nth-child(2) .library-url-button {
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    display: block;
    overflow: hidden;
  }

  .library-table-wrapper .library-checkbox-cell ~ td:nth-child(2) .library-url-button.library-url-expanded {
    white-space: normal;
    word-break: break-all;
    text-overflow: clip;
    overflow: visible;
  }

  .library-table-wrapper .library-checkbox-cell ~ td:nth-child(2) .library-copy-url-btn {
    width: auto;
    margin-top: .5rem;
  }

  .library-url-container {
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    display: flex;
  }

  .library-table-name {
    color: #1f2937;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    max-width: 100%;
    font-size: .95rem;
    font-weight: 600;
    -webkit-text-decoration: underline #0000;
    text-decoration: underline #0000;
    transition: text-decoration-color .2s;
    display: block;
    overflow: hidden;
  }

  .library-url-button {
    text-align: left;
    color: #1f2937;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    padding: 0;
    font-size: .95rem;
    font-weight: 600;
    -webkit-text-decoration: underline #0000;
    text-decoration: underline #0000;
    transition: text-decoration-color .2s;
    overflow: hidden;
  }

  .library-url-button:hover {
    text-decoration-color: #1f2937;
  }

  .library-url-button:focus {
    outline: none;
    text-decoration-color: #1f2937;
  }

  .library-copy-url-btn {
    background-color: var(--brand-color);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: .375rem;
    align-self: flex-start;
    align-items: center;
    gap: .375rem;
    padding: .5rem .75rem;
    font-size: .875rem;
    font-weight: 500;
    transition: background-color .2s;
    display: flex;
  }

  .library-copy-url-btn:hover {
    background-color: var(--brand-color-bold);
  }

  .library-copy-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .library-copy-icon-success {
    color: #10b981;
  }

  .library-url-tooltip {
    color: #fff;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    text-overflow: ellipsis;
    background-color: #1f2937;
    border-radius: .375rem;
    max-width: 90vw;
    padding: .5rem .75rem;
    font-size: .75rem;
    position: fixed;
    overflow: hidden;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
  }

  .library-url-tooltip-copied {
    color: #10b981;
    margin-left: .25rem;
    font-weight: 600;
  }

  .library-table-name:hover {
    text-decoration-color: #1f2937;
  }

  .library-table-wrapper td[data-label]:not(:first-child):not(:nth-child(2)):before, .library-table-wrapper td[data-label="Question Keywords"]:before {
    content: attr(data-label);
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: .05em;
    margin-bottom: .25rem;
    font-size: .75rem;
    font-weight: 600;
    display: block;
  }

  .library-table-wrapper td[data-label="Question Keywords"] {
    min-width: 0;
    max-width: 100%;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
    width: 100% !important;
  }

  .library-table-wrapper td[data-label="Question Keywords"] > * {
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .library-table-wrapper td[data-label="Question Keywords"] .library-keyword-tags-container {
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
    flex-flow: wrap !important;
    gap: 4px !important;
    width: 100% !important;
    display: flex !important;
  }

  .library-table-wrapper td[data-label="Question Keywords"] .library-keyword-tag {
    box-sizing: border-box;
    max-width: 100%;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    flex-shrink: 0 !important;
    min-width: fit-content !important;
    display: inline-block !important;
  }

  .library-table-wrapper td[data-label="Data Source"]:before {
    content: attr(data-label);
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: .05em;
    margin-bottom: .25rem;
    font-size: .75rem;
    font-weight: 600;
    display: block;
  }

  .library-table-wrapper td[data-label="Actions"] {
    border-top: 1px solid #e5e7eb;
    margin-top: .5rem;
    padding-top: .75rem;
  }

  .library-table-wrapper td[data-label="Actions"]:before {
    display: none;
  }

  .library-action-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem;
    display: flex;
  }

  .library-table-wrapper td[data-label="Data Source"] {
    word-break: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    min-height: auto;
    margin-top: .5rem;
  }

  .library-table-wrapper td[data-label="Data Source"]:before {
    margin-bottom: .5rem;
  }

  .library-table-wrapper td[data-label="Data Source"] .library-data-source-custom-text {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
  }

  .library-table-wrapper td[colspan] {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    display: block;
    overflow: visible;
  }

  .library-table-wrapper td[colspan] .library-form-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: visible;
  }

  .library-table-wrapper td[colspan] .library-grid-2col {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .library-table-wrapper td[colspan] .library-form-actions {
    box-sizing: border-box;
    width: 100%;
    margin-top: 1rem;
  }

  .library-table-wrapper tbody tr {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .library-table-wrapper tbody tr td[colspan] {
    min-width: 0;
  }

  .library-label {
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: .05em;
    font-size: .75rem;
    font-weight: 600;
  }

  .library-badge {
    padding: .375rem .75rem;
    font-size: .875rem;
  }

  .library-link-tab-footer {
    z-index: 100;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    gap: .75rem;
    width: 100%;
    padding: 1rem;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 8px #0000001a;
  }

  .library-footer-btn {
    cursor: pointer;
    border: none;
    border-radius: .5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: .625rem .875rem;
    font-size: .75rem;
    font-weight: 500;
    transition: all .2s;
    display: flex;
  }

  .library-footer-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
  }

  .library-footer-btn-select {
    color: #374151;
    background-color: #f3f4f6;
  }

  .library-footer-btn-select:not(:disabled):hover {
    background-color: #e5e7eb;
  }

  .library-footer-btn-retrain {
    background-color: var(--brand-color);
    color: #fff;
  }

  .library-footer-btn-retrain:not(:disabled):hover {
    background-color: var(--brand-color-bold);
  }

  .library-footer-btn-delete {
    color: #fff;
    background-color: #ef4444;
  }

  .library-footer-btn-delete:not(:disabled):hover {
    background-color: #dc2626;
  }
}

@media (min-width: 769px) {
  .library-desktop-number {
    display: inline;
  }

  .library-mobile-number, .library-scroll-indicator, .library-link-tab-footer {
    display: none;
  }
}

.library-add-file-or-link-btn-wrap {
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  min-height: 50px;
  display: flex;
}

.library-table-wrapper {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: var(--bg) !important;
}

.library-table-wrapper::-webkit-scrollbar {
  width: 10px;
}

.library-table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 30px;
}

.library-table-wrapper::-webkit-scrollbar-thumb {
  background: #8888882d;
  border-radius: 30px;
}

.library-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.library-table-wrapper table {
  width: 100%;
  padding: 5px;
}

.library-table-wrapper td[colspan] {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.library-table-wrapper td[colspan] .library-form-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.library-table-wrapper tbody tr {
  height: auto;
  min-height: auto;
}

.library-table-wrapper table {
  table-layout: auto;
  width: 100%;
}

.library-table-wrapper th:first-child, .library-table-wrapper td[data-label="Question Keywords"] {
  white-space: normal;
  width: 1%;
}

.library-table-wrapper td[data-label="Question Keywords"] .library-keyword-tags-container {
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
  display: flex;
}

.library-table-wrapper td[data-label="Data Source"] .library-data-source-custom-text {
  background-color: #e5e7eb;
  border-radius: 4px;
  margin-top: 4px;
  padding: 8px;
}

.library-row-loading {
  opacity: .7;
  pointer-events: none;
  position: relative;
}

.library-row-loading td {
  padding: .75rem !important;
}

.library-saving-skeleton {
  min-height: 200px;
  padding: 16px;
}

.library-saving-skeleton .react-loading-skeleton {
  background-color: #e0e0e0 !important;
  background-image: linear-gradient(90deg, #e0e0e0 0, #f0f0f0 40px, #e0e0e0 80px) !important;
  background-size: 200px 100% !important;
  animation: 1.5s linear infinite library-skeleton-shimmer, 2s ease-in-out infinite library-skeleton-pulse !important;
}

@keyframes library-skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.react-loading-skeleton, .library-row-loading .react-loading-skeleton {
  animation: 1.5s ease-in-out infinite library-skeleton-pulse !important;
}

.react-loading-skeleton {
  background-color: #e0e0e0 !important;
  background-image: linear-gradient(90deg, #e0e0e0 0, #f0f0f0 40px, #e0e0e0 80px) !important;
  background-size: 200px 100% !important;
  animation: 1.5s linear infinite library-skeleton-shimmer !important;
}

@keyframes library-skeleton-shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.library-table-wrapper tbody tr td img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
  width: 110px;
  height: 65px;
}

.library-modal-relative {
  position: relative;
}

.library-modal-close-btn {
  z-index: 99;
  position: absolute;
  top: 10px;
  right: 10px;
}

.library-modal-container {
  border-radius: 10px;
  height: auto;
  min-height: 220px;
  padding: 20px;
}

.library-file-info-current {
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 10px;
}

.library-file-info-new {
  background-color: #eaf7ea;
  border-radius: 8px;
  margin-top: 20px;
  padding: 10px;
}

.library-file-info-header {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.library-file-icon-spacing {
  margin-right: 5px;
}

.library-file-info-text {
  color: #666;
  font-size: 14px;
}

.library-update-btn {
  opacity: 1;
  cursor: pointer;
  margin: 30px 0 0;
}

.library-update-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.library-update-hint {
  color: #666;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.library-modal-overlay {
  z-index: 9999;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.library-modal-overlay-visible {
  visibility: visible;
}

.library-modal-overlay-invisible {
  visibility: hidden;
}

.library-modal-content {
  background-color: #fff;
  border-radius: .5rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 1rem;
}

.library-modal-panel {
  flex-direction: column;
  min-height: 580px;
  display: flex;
}

@media (min-width: 640px) {
  .library-modal-panel {
    flex-direction: row;
  }
}

.library-modal-left-panel {
  flex-direction: column;
  width: 100%;
  padding: 1.5rem;
  display: flex;
}

@media (min-width: 640px) {
  .library-modal-left-panel {
    width: 50%;
  }
}

.library-modal-right-panel {
  border-top: 1px solid #e5e7eb;
  width: 100%;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .library-modal-right-panel {
    border-top: 0;
    border-left: 1px solid #e5e7eb;
    width: 50%;
  }
}

.library-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .library-modal-title {
    font-size: 1.5rem;
  }
}

.library-modal-tab-list {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  display: flex;
}

.library-modal-tab-item {
  cursor: pointer;
  padding: .5rem 1rem;
  font-weight: 500;
}

.library-modal-tab-active {
  border-bottom: 2px solid var(--brand-color);
  color: var(--brand-color);
}

.library-modal-tab-inactive {
  color: #6b7280;
}

.library-modal-tab-inactive:hover {
  color: #374151;
}

.library-modal-btn-primary {
  color: #fff;
  background-color: var(--brand-color);
  border-radius: .25rem;
  width: 100%;
  padding: .5rem 1rem;
  transition: background-color .2s;
}

.library-modal-btn-primary:hover {
  background-color: var(--brand-color-bold);
}

.library-modal-btn-primary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.library-modal-upload-info {
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.library-modal-upload-filename {
  color: #374151;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 1rem;
  overflow: hidden;
}

.library-modal-upload-progress {
  width: 50%;
}

.library-modal-progress-container {
  margin-top: 1rem;
}

.library-modal-progress-text {
  color: #374151;
  font-size: .875rem;
}

.library-modal-close-btn-absolute {
  color: #6b7280;
  position: absolute;
  top: 0;
  right: 0;
}

.library-modal-close-btn-absolute:hover {
  color: #374151;
}

.library-modal-preview-scroll {
  overflow-y: auto;
}

.library-modal-preview-scroll-max {
  max-height: 450px;
}

.library-modal-preview-item {
  background-color: #f9fafb;
  border-radius: .25rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  padding: .75rem;
  display: flex;
}

.library-modal-preview-item-text {
  color: #374151;
}

.library-modal-preview-item-btn {
  color: #6b7280;
}

.library-modal-preview-item-btn:hover {
  color: #ef4444;
}

.library-modal-preview-item-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.library-modal-empty-state {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
}

@media (min-width: 640px) {
  .library-modal-empty-state {
    padding: 2.5rem;
  }
}

.library-modal-empty-state-img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .library-modal-empty-state-img {
    width: 8rem;
    height: 8rem;
  }
}

.library-modal-empty-state-text {
  color: #6b7280;
}

.library-table-header {
  font-weight: 600;
}

.library-url-container {
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  display: flex;
  position: relative;
}

.library-url-tooltip {
  color: #fff;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  text-overflow: ellipsis;
  background-color: #1f2937;
  border-radius: .375rem;
  max-width: 90vw;
  padding: .5rem .75rem;
  font-size: .75rem;
  position: fixed;
  overflow: hidden;
  transform: translateX(-50%);
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

.library-url-tooltip-copied {
  color: #10b981;
  margin-left: .25rem;
  font-weight: 600;
}

.library-table-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  max-width: 100%;
  font-weight: normal;
  -webkit-text-decoration: underline #0000;
  text-decoration: underline #0000;
  transition: text-decoration-color .2s;
  display: inline-block;
  overflow: hidden;
  padding: 0 !important;
}

.library-url-button {
  text-align: left;
  color: #1f2937;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  font-size: .95rem;
  font-weight: 600;
  -webkit-text-decoration: underline #0000;
  text-decoration: underline #0000;
  transition: text-decoration-color .2s;
  overflow: hidden;
}

.library-url-button:hover {
  text-decoration-color: #1f2937;
}

.library-url-button:focus {
  outline: none;
  text-decoration-color: #1f2937;
}

.library-copy-url-btn {
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .375rem;
  align-self: flex-start;
  align-items: center;
  gap: .375rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.library-copy-url-btn:hover {
  background-color: var(--brand-color-bold);
}

.library-copy-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.library-copy-icon-success {
  color: #10b981;
}

.library-table-name:hover {
  text-decoration-color: #1f2937;
}

.library-badge {
  color: var(--white-color);
  text-transform: capitalize;
  box-shadow: var(--shadow);
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 14px;
}

.library-badge-admin {
  background: var(--brand-color);
}

.library-delete-icon {
  color: var(--danger-color);
}

.library-update-modal-wrapper {
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  transition: visibility .3s, opacity .3s;
  display: flex;
  position: fixed;
  inset: 0;
}

.library-update-modal-wrapper.active {
  visibility: visible;
  opacity: 1;
}

.library-create-chatbot-container {
  background: #fbfbfb;
  width: 100%;
  min-height: 560px;
  max-height: 585px;
  padding: 40px;
  position: relative;
}

.library-create-chatbot-steps {
  background: #35a9891f;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.library-form-button {
  background: var(--brand-color);
  width: max-content;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: var(--mini-size);
  transition: var(--transition);
  border: 1px solid var(--brand-color);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 15px;
  font-weight: 500;
  display: flex;
}

.library-auto-rescraping-panel {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px;
}

.library-auto-rescraping-title {
  color: #111827;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
}

.library-auto-rescraping-loading {
  padding: 20px 0;
}

.library-auto-rescraping-checkbox-wrapper {
  margin-bottom: 16px;
}

.library-auto-rescraping-checkbox-label {
  cursor: pointer;
  color: #374151;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: flex;
}

.library-auto-rescraping-checkbox-input {
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.library-auto-rescraping-time-wrapper {
  margin-bottom: 16px;
}

.library-auto-rescraping-time-label {
  color: #374151;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.library-auto-rescraping-time-input {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  width: 100%;
  max-width: 200px;
  padding: 8px 12px;
  font-size: 14px;
}

.library-auto-rescraping-time-help {
  color: #6b7280;
  margin: 6px 0 0;
  font-size: 12px;
}

.library-auto-rescraping-last-sync-wrapper {
  margin-bottom: 16px;
}

.library-auto-rescraping-last-sync-text {
  color: #6b7280;
  margin: 0;
  font-size: 13px;
}

.library-auto-rescraping-button-wrapper {
  gap: 8px;
  display: flex;
}

.library-auto-rescraping-save-btn {
  min-width: 80px;
}

.library-form-field-wrapper {
  width: 100%;
}

.library-textarea-full-width {
  box-sizing: border-box;
  width: 100%;
}

.library-skeleton-mb-12 {
  margin-bottom: 12px;
}

.library-skeleton-mb-8 {
  margin-bottom: 8px;
}

.library-skeleton-mb-16 {
  margin-bottom: 16px;
}

.library-skeleton-mt-4 {
  margin-top: 4px;
}

.library-saving-skeleton-btn-wrapper {
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

/* [project]/pages/styles/promoBanner.css [client] (css) */
.promoBanner {
  z-index: 100;
  cursor: pointer;
  background-color: #000;
  width: 100%;
  padding: 12px 16px;
  transition: background-color .3s;
  position: relative;
  overflow: hidden;
}

.promoBanner:hover {
  background-color: #1a1a1a;
}

.promoBanner-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.promoBanner-text {
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0 50px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.promoBanner-price-old {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  display: inline-block;
}

.promoBanner-price-new {
  font-weight: 700;
  display: inline-block;
}

.promoBanner-arrow {
  vertical-align: middle;
  color: #009688;
  flex-shrink: 0;
  display: inline-block;
}

.promoBanner-register {
  color: #fff;
  background-color: #009688;
  border-radius: 4px;
  margin: 0 2px;
  padding: 2px 8px;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 768px) {
  .promoBanner {
    padding: 10px 12px;
  }

  .promoBanner-text {
    padding: 0 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .promoBanner {
    padding: 8px 10px;
  }

  .promoBanner-text {
    padding: 0 20px;
    font-size: 13px;
  }
}

/* [project]/pages/styles/global.css [client] (css) */
.swal-confirm-brand {
  background-color: var(--brand-color) !important;
  border-color: var(--brand-color) !important;
}

.swal-confirm-brand:hover {
  background-color: var(--brand-color-bold) !important;
  border-color: var(--brand-color-bold) !important;
}

.swal-cancel-neutral {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.swal-cancel-neutral:hover {
  background-color: #5a6268 !important;
  border-color: #5a6268 !important;
}

*, :before, :after, ::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3b82f680;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

*, :before, :after {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}

:before, :after {
  --tw-content: "";
}

html, :host {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

body {
  line-height: inherit;
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, input:where([type="button"]), input:where([type="reset"]), input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button, [role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  vertical-align: middle;
  display: block;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.\!container {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1400px) {
  .\!container {
    max-width: 1400px !important;
  }

  .container {
    max-width: 1400px;
  }
}

.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  font-size: 1.25em;
  line-height: 1.6;
}

.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: #009688;
  font-weight: 500;
  text-decoration: underline;
}

.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)):hover {
  color: #007268;
}

.prose :where(strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(blockquote strong):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(thead th strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
  list-style-type: decimal;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
  list-style-type: disc;
}

.prose :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker {
  color: var(--tw-prose-counters);
  font-weight: 400;
}

.prose :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  margin-top: 1.25em;
  font-weight: 600;
}

.prose :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-quotes);
  border-inline-start-width: .25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "“""”""‘""’";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
  font-style: italic;
  font-weight: 500;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *)):before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *)):after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  margin-top: 0;
  margin-bottom: .888889em;
  font-size: 2.25em;
  font-weight: 800;
  line-height: 1.11111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
  font-weight: 900;
}

.prose :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.33333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
  font-weight: 800;
}

.prose :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  margin-top: 1.6em;
  margin-bottom: .6em;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
  font-weight: 700;
}

.prose :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  margin-top: 1.5em;
  margin-bottom: .5em;
  font-weight: 600;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
  font-weight: 700;
}

.prose :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
  display: block;
}

.prose :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  padding-top: .1875em;
  padding-inline-end: .375em;
  padding-bottom: .1875em;
  border-radius: .3125rem;
  padding-inline-start: .375em;
  font-family: inherit;
  font-size: .875em;
  font-weight: 500;
}

.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-size: .875em;
  font-weight: 600;
}

.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)):before, .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)):after {
  content: "";
}

.prose :where(a code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h1 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
  font-size: .875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
  font-size: .9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(blockquote code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(thead th code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  padding-top: .857143em;
  padding-inline-end: 1.14286em;
  padding-bottom: .857143em;
  border-radius: .375rem;
  margin-top: 1.71429em;
  margin-bottom: 1.71429em;
  padding-inline-start: 1.14286em;
  font-size: .875em;
  font-weight: 400;
  line-height: 1.71429;
  overflow-x: auto;
}

.prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  background-color: #0000;
  border-width: 0;
  border-radius: 0;
  padding: 0;
}

.prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)):before, .prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)):after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  table-layout: auto;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: .875em;
  line-height: 1.71429;
}

.prose :where(thead):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  vertical-align: bottom;
  padding-inline-end: .571429em;
  padding-bottom: .571429em;
  padding-inline-start: .571429em;
  font-weight: 600;
}

.prose :where(tbody tr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  vertical-align: top;
}

.prose :where(th, td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  text-align: start;
}

.prose :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  margin-top: .857143em;
  font-size: .875em;
  line-height: 1.42857;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: #1118271a;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: #ffffff1a;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: #00000080;
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .5em;
  margin-bottom: .5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: .375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .75em;
  margin-bottom: .75em;
}

.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .75em;
  margin-bottom: .75em;
}

.prose :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .5em;
  padding-inline-start: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: .571429em;
  padding-inline-end: .571429em;
  padding-bottom: .571429em;
  padding-inline-start: .571429em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose :where(h2, h3, h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  scroll-margin-top: 5rem;
}

.prose-sm {
  font-size: .875rem;
  line-height: 1.71429;
}

.prose-sm :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.14286em;
  margin-bottom: 1.14286em;
}

.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .888889em;
  margin-bottom: .888889em;
  font-size: 1.28571em;
  line-height: 1.55556;
}

.prose-sm :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
  padding-inline-start: 1.11111em;
}

.prose-sm :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: .8em;
  font-size: 2.14286em;
  line-height: 1.2;
}

.prose-sm :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.6em;
  margin-bottom: .8em;
  font-size: 1.42857em;
  line-height: 1.4;
}

.prose-sm :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.55556em;
  margin-bottom: .444444em;
  font-size: 1.28571em;
  line-height: 1.55556;
}

.prose-sm :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.42857em;
  margin-bottom: .571429em;
  line-height: 1.42857;
}

.prose-sm :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.71429em;
  margin-bottom: 1.71429em;
}

.prose-sm :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-sm :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.71429em;
  margin-bottom: 1.71429em;
}

.prose-sm :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: .142857em;
  padding-inline-end: .357143em;
  padding-bottom: .142857em;
  border-radius: .3125rem;
  padding-inline-start: .357143em;
  font-size: .857143em;
}

.prose-sm :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .857143em;
}

.prose-sm :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .9em;
}

.prose-sm :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .888889em;
}

.prose-sm :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: .666667em;
  padding-inline-end: 1em;
  padding-bottom: .666667em;
  border-radius: .25rem;
  margin-top: 1.66667em;
  margin-bottom: 1.66667em;
  padding-inline-start: 1em;
  font-size: .857143em;
  line-height: 1.66667;
}

.prose-sm :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.14286em;
  margin-bottom: 1.14286em;
  padding-inline-start: 1.57143em;
}

.prose-sm :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .285714em;
  margin-bottom: .285714em;
}

.prose-sm :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: .428571em;
}

.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .571429em;
  margin-bottom: .571429em;
}

.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.14286em;
}

.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 1.14286em;
}

.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.14286em;
}

.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 1.14286em;
}

.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .571429em;
  margin-bottom: .571429em;
}

.prose-sm :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.14286em;
  margin-bottom: 1.14286em;
}

.prose-sm :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.14286em;
}

.prose-sm :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .285714em;
  padding-inline-start: 1.57143em;
}

.prose-sm :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 2.85714em;
  margin-bottom: 2.85714em;
}

.prose-sm :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-sm :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .857143em;
  line-height: 1.5;
}

.prose-sm :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 1em;
  padding-bottom: .666667em;
  padding-inline-start: 1em;
}

.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: .666667em;
  padding-inline-end: 1em;
  padding-bottom: .666667em;
  padding-inline-start: 1em;
}

.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose-sm :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.71429em;
  margin-bottom: 1.71429em;
}

.prose-sm :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-sm :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .666667em;
  font-size: .857143em;
  line-height: 1.33333;
}

.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.77778;
}

.prose-lg :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
}

.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.09091em;
  margin-bottom: 1.09091em;
  font-size: 1.22222em;
  line-height: 1.45455;
}

.prose-lg :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.66667em;
  margin-bottom: 1.66667em;
  padding-inline-start: 1em;
}

.prose-lg :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: .833333em;
  font-size: 2.66667em;
  line-height: 1;
}

.prose-lg :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.86667em;
  margin-bottom: 1.06667em;
  font-size: 1.66667em;
  line-height: 1.33333;
}

.prose-lg :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.66667em;
  margin-bottom: .666667em;
  font-size: 1.33333em;
  line-height: 1.5;
}

.prose-lg :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.77778em;
  margin-bottom: .444444em;
  line-height: 1.55556;
}

.prose-lg :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.77778em;
  margin-bottom: 1.77778em;
}

.prose-lg :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-lg :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.77778em;
  margin-bottom: 1.77778em;
}

.prose-lg :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: .222222em;
  padding-inline-end: .444444em;
  padding-bottom: .222222em;
  border-radius: .3125rem;
  padding-inline-start: .444444em;
  font-size: .888889em;
}

.prose-lg :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .888889em;
}

.prose-lg :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .866667em;
}

.prose-lg :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .875em;
}

.prose-lg :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  border-radius: .375rem;
  margin-top: 2em;
  margin-bottom: 2em;
  padding-inline-start: 1.5em;
  font-size: .888889em;
  line-height: 1.75;
}

.prose-lg :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
  padding-inline-start: 1.55556em;
}

.prose-lg :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .666667em;
  margin-bottom: .666667em;
}

.prose-lg :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: .444444em;
}

.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .888889em;
  margin-bottom: .888889em;
}

.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
}

.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 1.33333em;
}

.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
}

.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 1.33333em;
}

.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .888889em;
  margin-bottom: .888889em;
}

.prose-lg :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
}

.prose-lg :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.33333em;
}

.prose-lg :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: .666667em;
  padding-inline-start: 1.55556em;
}

.prose-lg :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 3.11111em;
  margin-bottom: 3.11111em;
}

.prose-lg :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  font-size: .888889em;
  line-height: 1.5;
}

.prose-lg :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: .75em;
  padding-bottom: .75em;
  padding-inline-start: .75em;
}

.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-top: .75em;
  padding-inline-end: .75em;
  padding-bottom: .75em;
  padding-inline-start: .75em;
}

.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose-lg :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1.77778em;
  margin-bottom: 1.77778em;
}

.prose-lg :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-lg :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 1em;
  font-size: .888889em;
  line-height: 1.5;
}

.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-bottom: 0;
}

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

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0;
}

.inset-y-0 {
  top: 0;
  bottom: 0;
}

.-top-10 {
  top: -2.5rem;
}

.bottom-3 {
  bottom: .75rem;
}

.bottom-full {
  bottom: 100%;
}

.left-0 {
  left: 0;
}

.left-1\/2 {
  left: 50%;
}

.left-full {
  left: 100%;
}

.right-0 {
  right: 0;
}

.right-\[-8px\] {
  right: -8px;
}

.top-0 {
  top: 0;
}

.top-full {
  top: 100%;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.z-\[10000\] {
  z-index: 10000;
}

.z-\[9999\] {
  z-index: 9999;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.m-0 {
  margin: 0;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.-ml-0 {
  margin-left: 0;
}

.-mt-1 {
  margin-top: -.25rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: .25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-3 {
  margin-bottom: .75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-14 {
  margin-left: 3.5rem;
}

.ml-2 {
  margin-left: .5rem;
}

.ml-3 {
  margin-left: .75rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-1 {
  margin-right: .25rem;
}

.mr-2 {
  margin-right: .5rem;
}

.mr-2\.5 {
  margin-right: .625rem;
}

.mr-3 {
  margin-right: .75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-0\.5 {
  margin-top: .125rem;
}

.mt-1 {
  margin-top: .25rem;
}

.mt-1\.5 {
  margin-top: .375rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: .5rem;
}

.mt-3 {
  margin-top: .75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-0 {
  height: 0;
}

.h-1\.5 {
  height: .375rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-2 {
  height: .5rem;
}

.h-24 {
  height: 6rem;
}

.h-4 {
  height: 1rem;
}

.h-48 {
  height: 12rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-\[26px\] {
  height: 26px;
}

.h-\[400px\] {
  height: 400px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-h-0 {
  max-height: 0;
}

.max-h-96 {
  max-height: 24rem;
}

.max-h-\[500px\] {
  max-height: 500px;
}

.min-h-\[100px\] {
  min-height: 100px;
}

.min-h-\[30px\] {
  min-height: 30px;
}

.min-h-\[75px\] {
  min-height: 75px;
}

.min-h-\[80vh\] {
  min-height: 80vh;
}

.min-h-screen {
  min-height: 100vh;
}

.w-0 {
  width: 0;
}

.w-1 {
  width: .25rem;
}

.w-1\.5 {
  width: .375rem;
}

.w-1\/2 {
  width: 50%;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-2 {
  width: .5rem;
}

.w-2\/3 {
  width: 66.6667%;
}

.w-24 {
  width: 6rem;
}

.w-28 {
  width: 7rem;
}

.w-4 {
  width: 1rem;
}

.w-44 {
  width: 11rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-64 {
  width: 16rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-80 {
  width: 20rem;
}

.w-\[26px\] {
  width: 26px;
}

.w-auto {
  width: auto;
}

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.min-w-10 {
  min-width: 2.5rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-\[320px\] {
  max-width: 320px;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.max-w-\[70\%\] {
  max-width: 70%;
}

.max-w-\[700px\] {
  max-width: 700px;
}

.max-w-\[80\%\] {
  max-width: 80%;
}

.max-w-\[900px\] {
  max-width: 900px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.flex-1 {
  flex: 1;
}

.flex-none {
  flex: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.border-collapse {
  border-collapse: collapse;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-6 {
  --tw-rotate: -6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-\[270deg\] {
  --tw-rotate: 270deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: 1s linear infinite spin;
}

.cursor-default {
  cursor: default;
}

.cursor-help {
  cursor: help;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

.resize-y {
  resize: vertical;
}

.resize {
  resize: both;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

.appearance-none {
  appearance: none;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.\!items-start {
  align-items: flex-start !important;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-items-center {
  justify-items: center;
}

.\!gap-4 {
  gap: 1rem !important;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: .25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-2 {
  gap: .5rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-\[5px\] {
  gap: 5px;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(.5rem * var(--tw-space-x-reverse));
  margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-7 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity, 1));
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.break-words {
  overflow-wrap: break-word;
}

.\!rounded {
  border-radius: .25rem !important;
}

.\!rounded-lg {
  border-radius: var(--radius) !important;
}

.\!rounded-md {
  border-radius: calc(var(--radius)  - 2px) !important;
}

.rounded {
  border-radius: .25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: var(--radius);
}

.rounded-md {
  border-radius: calc(var(--radius)  - 2px);
}

.rounded-xl {
  border-radius: .75rem;
}

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-br-3xl {
  border-bottom-right-radius: 1.5rem;
}

.rounded-tr-3xl {
  border-top-right-radius: 1.5rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-brand-color {
  --tw-border-opacity: 1;
  border-color: rgb(0 150 136 / var(--tw-border-opacity, 1));
}

.border-brand-color-light {
  border-color: #00726824;
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}

.border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}

.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.border-transparent {
  border-color: #0000;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}

.border-t-gray-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-blue-50\/50 {
  background-color: #eff6ff80;
}

.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.bg-brand-color {
  --tw-bg-opacity: 1;
  background-color: rgb(0 150 136 / var(--tw-bg-opacity, 1));
}

.bg-brand-color-bold {
  --tw-bg-opacity: 1;
  background-color: rgb(0 114 104 / var(--tw-bg-opacity, 1));
}

.bg-brand-color-light {
  background-color: #00726824;
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}

.bg-green-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}

.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.bg-red-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color: #0000;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/5 {
  background-color: #ffffff0d;
}

.bg-white\/50 {
  background-color: #ffffff80;
}

.bg-yellow-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}

.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}

.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}

.bg-opacity-10 {
  --tw-bg-opacity: .1;
}

.bg-opacity-50 {
  --tw-bg-opacity: .5;
}

.bg-opacity-75 {
  --tw-bg-opacity: .75;
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-bg-brand-color, .from-brand-color {
  --tw-gradient-from: #009688 var(--tw-gradient-from-position);
  --tw-gradient-to: #00968800 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-900 {
  --tw-gradient-from: #111827 var(--tw-gradient-from-position);
  --tw-gradient-to: #11182700 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-indigo-100 {
  --tw-gradient-from: #e0e7ff var(--tw-gradient-from-position);
  --tw-gradient-to: #e0e7ff00 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white {
  --tw-gradient-from: #fff var(--tw-gradient-from-position);
  --tw-gradient-to: #fff0 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-gray-800 {
  --tw-gradient-to: #1f293700 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #1f2937 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-purple-50 {
  --tw-gradient-to: #faf5ff00 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #faf5ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-bg-brand-color-bold, .to-brand-color-bold {
  --tw-gradient-to: #007268 var(--tw-gradient-to-position);
}

.to-gray-50 {
  --tw-gradient-to: #f9fafb var(--tw-gradient-to-position);
}

.to-gray-900 {
  --tw-gradient-to: #111827 var(--tw-gradient-to-position);
}

.to-teal-100 {
  --tw-gradient-to: #ccfbf1 var(--tw-gradient-to-position);
}

.bg-\[length\:200\%_100\%\] {
  background-size: 200% 100%;
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-0 {
  padding: 0;
}

.p-0\.5 {
  padding: .125rem;
}

.p-1 {
  padding: .25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-2 {
  padding: .5rem;
}

.p-2\.5 {
  padding: .625rem;
}

.p-3 {
  padding: .75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-\[6px\] {
  padding: 6px;
}

.\!py-40 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.\!py-\[15px\] {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-2 {
  padding-left: .5rem;
  padding-right: .5rem;
}

.px-2\.5 {
  padding-left: .625rem;
  padding-right: .625rem;
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.py-1\.5 {
  padding-top: .375rem;
  padding-bottom: .375rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.py-2\.5 {
  padding-top: .625rem;
  padding-bottom: .625rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-\[40px\] {
  padding-top: 40px;
  padding-bottom: 40px;
}

.\!pb-1 {
  padding-bottom: .25rem !important;
}

.pb-1 {
  padding-bottom: .25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-3 {
  padding-bottom: .75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-3 {
  padding-top: .75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-\[56\.25\%\] {
  padding-top: 56.25%;
}

.\!text-left {
  text-align: left !important;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.\!text-sm {
  font-size: .875rem !important;
  line-height: 1.25rem !important;
}

.\!text-xs {
  font-size: .75rem !important;
  line-height: 1rem !important;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.\!leading-\[45px\] {
  line-height: 45px !important;
}

.\!leading-\[50px\] {
  line-height: 50px !important;
}

.\!leading-relaxed {
  line-height: 1.625 !important;
}

.leading-7 {
  line-height: 1.75rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-\[35px\] {
  line-height: 35px;
}

.leading-\[45px\] {
  line-height: 45px;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.\!text-brand-color {
  --tw-text-opacity: 1 !important;
  color: rgb(0 150 136 / var(--tw-text-opacity, 1)) !important;
}

.\!text-gray-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1)) !important;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.text-brand-color {
  --tw-text-opacity: 1;
  color: rgb(0 150 136 / var(--tw-text-opacity, 1));
}

.text-brand-color-bold {
  --tw-text-opacity: 1;
  color: rgb(0 114 104 / var(--tw-text-opacity, 1));
}

.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-transparent {
  color: #0000;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}

.text-zinc-200 {
  --tw-text-opacity: 1;
  color: rgb(228 228 231 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: .5;
}

.opacity-75 {
  opacity: .75;
}

.mix-blend-plus-lighter {
  mix-blend-mode: plus-lighter;
}

.\!shadow-none {
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px #00000040;
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 #0000000d;
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline-offset: 2px;
  outline: 2px solid #0000;
}

.outline-0 {
  outline-width: 0;
}

.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}

.blur, .blur-\[8px\] {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.transition-all {
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.transition-transform {
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.duration-1000 {
  transition-duration: 1s;
}

.duration-150 {
  transition-duration: .15s;
}

.duration-200 {
  transition-duration: .2s;
}

.duration-300 {
  transition-duration: .3s;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.05);
  }
}

.flash-animation {
  animation: 1.5s ease-in-out infinite flash;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.descriptions {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
}

.descriptions table {
  border-radius: calc(var(--radius)  - 2px);
  --tw-border-opacity: 1;
  border-width: 1px;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  margin-bottom: 1rem;
  padding: .5rem;
}

.descriptions th, .descriptions td, .descriptions tr {
  --tw-border-opacity: 1;
  border-width: 1px;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  padding: .5rem;
}

.descriptions h1 {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.25rem;
}

.descriptions h2 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.descriptions h2 strong {
  font-weight: 700;
}

.descriptions h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.descriptions h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.descriptions h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.descriptions h6 {
  margin-bottom: .75rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1rem;
}

.descriptions p {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.625;
}

.descriptions ul {
  flex-direction: column;
  margin-bottom: 1rem;
  margin-left: .25rem;
  list-style-type: disc;
  list-style-position: inside;
  display: flex;
}

.descriptions ol {
  margin-bottom: 1rem;
  list-style-type: decimal;
  list-style-position: inside;
}

.descriptions li {
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  display: inline-flex;
  position: relative;
}

.descriptions li:before {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
  --tw-content: "";
  content: var(--tw-content);
  border-radius: .25rem;
  width: .75rem;
  height: .75rem;
  position: absolute;
  top: .5rem;
  left: 0;
}

.descriptions blockquote {
  border-radius: var(--radius);
  --tw-border-opacity: 1;
  border-left-width: 2px;
  border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  margin-bottom: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.descriptions code {
  border-radius: calc(var(--radius)  - 2px);
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  margin-bottom: 1rem;
  padding: .25rem;
}

.descriptions hr {
  --tw-border-opacity: 1;
  border-top-width: 2px;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  margin-bottom: 1rem;
}

.descriptions img, .descriptions video, .descriptions iframe {
  border-radius: calc(var(--radius)  - 2px);
  margin-bottom: 1rem;
}

.descriptions a {
  --tw-text-opacity: 1;
  color: rgb(0 150 136 / var(--tw-text-opacity, 1));
  text-decoration-line: underline;
}

.descriptions .ProseMirror {
  padding: 1rem;
}

.descriptions .ProseMirror:focus {
  outline-offset: 2px;
  outline: 2px solid #0000;
}

.descriptions ul li::marker {
  color: red;
  font-size: 1.5em;
}

.html-content a {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.html-content a:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

input, textarea, .form-button, .ant-modal-confirm-paragraph {
  font-family: Poppins, sans-serif !important;
}

.css-13cymwt-control {
  min-width: 210px !important;
}

.calendar-container .rbc-active {
  --tw-border-opacity: 1 !important;
  border-color: rgb(0 150 136 / var(--tw-border-opacity, 1)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 150 136 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

.rbc-header {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 1rem !important;
}

.payment-status-container {
  background-color: #f8f9fa;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
  display: flex;
}

.payment-status-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  display: flex;
  box-shadow: 0 4px 15px #00000014;
}

.status-icon {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
}

.success-icon {
  color: #28a745;
  background-color: #28a7451a;
}

.error-icon {
  color: #dc3545;
  background-color: #dc35451a;
}

.status-title {
  color: #333;
  margin: 10px 0;
  font-size: 28px;
}

.error-message-title {
  color: #555;
  margin: 15px 0 10px;
  font-size: 18px;
}

.status-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.error-message-container {
  width: 100%;
  margin: 10px 0 20px;
}

.error-message-box {
  text-align: left;
  color: #333;
  word-break: break-word;
  background-color: #f8f8f8;
  border-left: 4px solid #dc3545;
  border-radius: 4px;
  margin: 10px 0;
  padding: 15px;
  font-size: 15px;
}

.error-help-text {
  color: #777;
  margin-top: 10px;
  font-size: 14px;
}

.status-button {
  cursor: pointer;
  border: none;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.success-button {
  color: #fff;
  background-color: #28a745;
}

.success-button:hover {
  background-color: #218838;
}

.error-button {
  color: #fff;
  background-color: #dc3545;
}

.error-button:hover {
  background-color: #c82333;
}

.react-loading-skeleton {
  box-shadow: none !important;
}

.bubble-iframe-p-user {
  color: #fff;
}

.payload-container {
  align-items: center;
  margin-top: 10px;
  padding-left: 15px;
  display: flex;
}

.payload-input {
  resize: none;
  width: 300px;
  padding: 10px;
}

.chatbot-iframe-send-message-btn {
  height: 45px;
}

.chatbot-iframe-button {
  background: var(--brand-color);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 6px;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color .3s;
}

.chatbot-iframe-button:hover {
  background: var(--brand-color-dark);
}

.button-container {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  display: flex;
}

.dark {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

.dark .prose {
  --tw-prose-body: #d1d5db;
  --tw-prose-headings: #f3f4f6;
  --tw-prose-links: #009688;
  --tw-prose-bold: #f3f4f6;
  --tw-prose-code: #f3f4f6;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-quotes: #d1d5db;
  --tw-prose-quote-borders: #4b5563;
  --tw-prose-hr: #374151;
  --tw-prose-th-borders: #4b5563;
  --tw-prose-td-borders: #374151;
}

mark {
  color: #000;
  background-color: #ffeb3b;
  border-radius: 2px;
  padding: 0 2px;
}

.dark mark {
  color: #000;
  background-color: #ffc107;
}

html {
  scroll-behavior: smooth;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.dark\:prose-invert:is(.dark *) {
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}

.last\:pb-0:last-child {
  padding-bottom: 0;
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-brand-color:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 150 136 / var(--tw-border-opacity, 1));
}

.hover\:border-gray-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-brand-color:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 150 136 / var(--tw-bg-opacity, 1));
}

.hover\:bg-brand-color-bold:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 114 104 / var(--tw-bg-opacity, 1));
}

.hover\:bg-brand-color-light:hover {
  background-color: #00726824;
}

.hover\:bg-emerald-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-opacity-90:hover {
  --tw-bg-opacity: .9;
}

.hover\:text-brand-color:hover {
  --tw-text-opacity: 1;
  color: rgb(0 150 136 / var(--tw-text-opacity, 1));
}

.hover\:text-brand-color-bold:hover {
  --tw-text-opacity: 1;
  color: rgb(0 114 104 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.hover\:text-red-500:hover {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.hover\:text-red-700:hover {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow:hover {
  --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-\[color\:var\(--brand-color\)\]:focus {
  border-color: var(--brand-color);
}

.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.focus\:border-brand-color:focus {
  --tw-border-opacity: 1;
  border-color: rgb(0 150 136 / var(--tw-border-opacity, 1));
}

.focus\:border-indigo-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}

.focus\:border-red-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.focus\:border-transparent:focus {
  border-color: #0000;
}

.focus\:outline-none:focus {
  outline-offset: 2px;
  outline: 2px solid #0000;
}

.focus\:outline-0:focus {
  outline-width: 0;
}

.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-brand-color:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 150 136 / var(--tw-ring-opacity, 1));
}

.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}

.focus\:ring-indigo-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}

.focus\:ring-red-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}

.focus\:ring-red-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.active\:bg-gray-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: .5;
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

.group:hover .group-hover\:block {
  display: block;
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: .25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:bg-gray-50\/50 {
  background-color: #f9fafb80;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.data-\[selected\=true\]\:border-brand-color[data-selected="true"] {
  --tw-border-opacity: 1;
  border-color: rgb(0 150 136 / var(--tw-border-opacity, 1));
}

.data-\[selected\=true\]\:bg-blue-50[data-selected="true"] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.dark\:text-gray-100:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}

.dark\:text-zinc-100:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
  .sm\:left-0 {
    left: 0;
  }

  .sm\:order-1 {
    order: 1;
  }

  .sm\:order-2 {
    order: 2;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:-ml-4 {
    margin-left: -1rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:mr-3 {
    margin-right: .75rem;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-20 {
    height: 5rem;
  }

  .sm\:h-3 {
    height: .75rem;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-64 {
    height: 16rem;
  }

  .sm\:w-16 {
    width: 4rem;
  }

  .sm\:w-3 {
    width: .75rem;
  }

  .sm\:w-32 {
    width: 8rem;
  }

  .sm\:w-48 {
    width: 12rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:w-96 {
    width: 24rem;
  }

  .sm\:w-\[150px\] {
    width: 150px;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:max-w-\[100\%\] {
    max-width: 100%;
  }

  .sm\:max-w-\[65\%\] {
    max-width: 65%;
  }

  .sm\:max-w-md {
    max-width: 28rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:gap-12 {
    gap: 3rem;
  }

  .sm\:gap-28 {
    gap: 7rem;
  }

  .sm\:gap-32 {
    gap: 8rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.75rem * var(--tw-space-x-reverse));
    margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .sm\:rounded-lg {
    border-radius: var(--radius);
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:p-2 {
    padding: .5rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .sm\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:pl-4 {
    padding-left: 1rem;
  }

  .sm\:pt-28 {
    padding-top: 7rem;
  }

  .sm\:pt-8 {
    padding-top: 2rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sm\:\!leading-\[1\.2\] {
    line-height: 1.2 !important;
  }

  .sm\:leading-\[80px\] {
    line-height: 80px;
  }

  .sm\:leading-\[90px\] {
    line-height: 90px;
  }
}

@media (min-width: 768px) {
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-96 {
    width: 24rem;
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:gap-10 {
    gap: 2.5rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:mr-20 {
    margin-right: 5rem;
  }

  .lg\:mt-16 {
    margin-top: 4rem;
  }

  .lg\:h-20 {
    height: 5rem;
  }

  .lg\:h-80 {
    height: 20rem;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-1\/3 {
    width: 33.3333%;
  }

  .lg\:w-2\/3 {
    width: 66.6667%;
  }

  .lg\:w-80 {
    width: 20rem;
  }

  .lg\:max-w-\[500px\] {
    max-width: 500px;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1fr\,auto\] {
    grid-template-columns: 1fr auto;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:gap-0 {
    gap: 0;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:p-12 {
    padding: 3rem;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .xl\:h-20 {
    height: 5rem;
  }
}

/*# sourceMappingURL=pages_styles_d6a796a6._.css.map*/