@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  color-scheme: light;
  /* light theme scrollbar */

  --bg: #eff1f1;
  --text: #111;
  --offWhite: #fafafa;
  --sideBar-bg: #fafaf8;
  --border: #cdcccc;
  --black: #000;
  --white: #fff;
  --placeholder: #ababab;
  --hover: #e4e4e4;
  --light-grey: #f2f1f1;
  --light-text: #787b7d;
  --violet: #8955d3;
  --filter: invert(1) grayscale(0);
  --text-sm: 14px;
}

body.dark {
  color-scheme: dark;
  /* dark theme scrollbar */

  --bg: #111111;
  --text: #f6f6f4;
  --offWhite: #1a1a1a;
  --sideBar-bg: #1a1a1a;
  --border: #333333;
  --black: #ffffff;
  --white: #000000;
  --placeholder: #777777;
  --hover: #2a2a2a;
  --light-text: #b5b5b5;
  --light-grey: #1a1a1a;
  --violet: #a978f0;
  --filter: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif !important;
}

body {
  background: var(--bg) url(../img/human-chat-bg.png);
  color: var(--text);
  font-family: "Inter", sans-serif !important;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

body.dark {
  background: var(--bg);
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: block;
  }
}

.btn {
  padding: 7px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  background-color: var(--bg);
  color: var(--text);
  text-decoration: none;
}

.btn:hover {
  background-color: var(--hover);
}

.btn.primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn.primary:hover {
  background: var(--light-text);
  color: var(--white);
  border-color: var(--light-text);
}

.row {
  display: flex;
}

h1,
.h1 {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
}

a {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
}

.desktop-hidden {
  display: none;
}

.error {
  color: red;
  font-size: 11.5px;
}

/*--sidebar--*/
.sidebar {
  width: 60px;
  background-color: var(--sideBar-bg);
  border-right: 1px solid var(--border);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar.expanded {
  width: 280px;
}

.sidebar-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  height: 60px;
}

.sidebar-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 28px;
  height: 28px;
}

body.dark .logo-img {
  filter: grayscale(0) invert(1);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  display: none;
}

.sidebar.expanded .logo-text {
  display: block;
}

.sidebar-toggle-btn {
  cursor: pointer;
  color: var(--black);
  /* color: var(--placeholder); */
  transition: color 0.2s;
}

.sidebar-toggle-btn:hover {
  color: var(--black);
}

.sidebar-content {
  flex: 1;
}

.menu-label {
  padding: 20px 18px 10px;
  font-size: 12px;
  color: var(--placeholder);
  font-weight: 600;
  display: none;
}

.sidebar.expanded .menu-label {
  display: block;
}

.user-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.settings-icon {
  margin-left: auto;
  display: none;
}

.sidebar.expanded .settings-icon {
  display: block;
}

.sidebar-menu a svg,
.menu-item svg {
  width: 20px;
  height: 20px;
}

.sidebar .desktop-header {
  display: none;
}

.sidebar-logo a {
  width: 40px;
  height: 40px;
  display: flex;
  background-color: var(--black);
  border-radius: 100px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  padding: 7px;
}

.sidebar.expanded .sidebar-toggle-btn.desktop-header {
  display: block;
}

.sidebar-logo a img {
  filter: var(--filter);
  width: 100%;
  height: auto;
}

.sidebar-in {
  height: 100%;
  position: relative;
}

.sidebar-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  padding: 10px 0;
}

.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  border-top: var(--border) 1px solid;
  padding: 20px 9px;
  flex-flow: column;
  gap: 14px;
  background-color: var(--sideBar-bg);
}

.sidebar-footer .info-icon {
  display: flex;
  padding: 5px;
  width: 100%;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  justify-content: space-between;
  border-radius: 100px;
  transition: all 0.3s ease;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--black);
}

.sidebar.expanded .sidebar-footer .info-icon:hover {
  background-color: var(--hover);
}

.user-profile-row-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-footer .info-icon svg {
  width: 32px;
  height: 18px;
  transition: all 0.3s ease;
}

.hidden {
  display: none;
}

.chat-action-in {
  position: relative;
}

.user-profile-row-icon {
  display: flex;
}

.chat-dropcontent.drop-content {
  background-color: var(--white);
  border-radius: 8px;
  position: fixed;
  z-index: 9;
  min-width: 155px;
  border: var(--border) 1px solid;
  display: none;
  padding: 5px;
}

.chat-dropcontent.drop-content:has(.show-drop) {
  display: block;
}

.chat-dropcontent.drop-content.show {
  display: block;
}

nav.sidebar-menu {
  padding: 15px 8px;
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.sidebar-menu-actions .menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 9px 11.5px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: var(--black);
}

.sidebar-menu-actions .menu-item svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.sidebar-menu-actions .menu-item span.link-text {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--black);
}

.sidebar.expanded .sidebar-menu-actions .menu-item span.link-text {
  opacity: 1;
}

.sidebar-menu-actions {
  display: flex;
  flex-flow: column;
  gap: 0;
}

.sidebar-menu-actions .menu-item:hover,
.sidebar-menu-actions .menu-item.active {
  background-color: var(--hover);
}

.sidebar-menu-chats .chat-label {
  font-size: 14px;
  color: var(--light-text);
  font-weight: 500;
  padding: 20px 11.5px 12px;
}

.sidebar-menu-chats ul li.chat-item {
  padding: 10px 11.5px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}

.sidebar-menu-chats ul li.chat-item .text-box,
.sidebar-menu-chats ul li.chat-item-2 .text-box {
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

.sidebar-menu-chats ul li.chat-item:hover,
.sidebar-menu-chats ul li.chat-item.active {
  background-color: var(--hover);
}

.sidebar-menu-chats ul li.chat-item .chat-action {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.sidebar-menu-chats ul li.chat-item .chat-action:has(.show) {
  opacity: 1;
  visibility: visible;
}

.chat-action-btn {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--text);
}

.sidebar-menu-chats ul li.chat-item:hover .chat-action {
  opacity: 1;
  visibility: visible;
}

.sidebar-menu-chats ul li.chat-item:hover .chat-action .chat-action-btn {
  background-color: var(--hover);
}

.sidebar-menu-chats {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  visibility: visible;
  overflow-y: auto;
  height: 60vh;
}

.sidebar-menu-chats.noscroll {
  overflow: visible;
}

.sidebar-menu-chats:has(.show-drop) {
  overflow: visible;
}

.sidebar.expanded .sidebar-menu-chats {
  opacity: 1;
  visibility: visible;
}

.chat-dropcontent.drop-content.show-drop {
  display: block;
}

.sidebar-menu-chats ul li.chat-item .chat-action:has(.show-drop) {
  opacity: 1;
  visibility: visible;
}

.sidebar-menu-chats ul li.chat-item .chat-action:has(.show) .chat-action-btn {
  background-color: var(--hover);
}

.sidebar-menu-chats ul li.chat-item:has(.show) {
  background-color: var(--hover);
}

.chat-dropcontent-item-list {
  display: flex;
  flex-flow: column;
  gap: 1px;
}

.add2-space-dropcontent.drop-content {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  position: fixed;
  margin-left: 9px;
  margin-top: -32px;
  z-index: 9;
  min-width: 180px;
  border: var(--border) 1px solid;
  display: none;
  padding: 5px;
  max-height: 212px;
  overflow-y: auto;
}

.add2-space-dropcontent.drop-content.show {
  display: block;
}

.add2-space-dropcontent.drop-content.show-drop {
  display: block;
}

.add2-space.drop-btn {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.chat-dropcontent-item-list .item {
  padding: 5px 8px;
  border-radius: 6px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--text);
}

.chat-dropcontent-item-list span {
  display: flex;
}

.chat-dropcontent-item-list span svg {
  width: 12px;
  height: 12px;
}

.chat-dropcontent-item-list .item:hover {
  background-color: var(--hover);
}

.sidebar-footer .menu-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-weight: 500;
  color: var(--black);
  width: 100%;
}

.sidebar-footer .menu-item span.link-text {
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}

.sidebar.expanded .sidebar-footer .menu-item span.link-text {
  opacity: 1;
  visibility: visible;
}

.sidebar-footer .info-icon.user-profile-row span.link-text,
.sidebar-footer .info-icon.user-profile-row svg {
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}

.add2-space-dropcontent .add2-space-dropcontent-title {
  padding: 7px 7px 10px;
  border-bottom: var(--border) 1px solid;
  position: sticky;
  top: 0;
  background: var(--white);
}

.add2-space-dropcontent-list ul {
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.add2-space-dropcontent-list ul li {
  padding: 5px 8px;
  border-radius: 6px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.add2-space-dropcontent-list ul li:hover {
  background-color: var(--hover);
}

.add2-space-dropcontent-list {
  padding: 10px 0;
}

.chat-dropcontent.drop-content:has(.show-drop) .item.add2-space-box {
  background-color: var(--hover);
}

.sidebar.expanded .sidebar-footer .info-icon.user-profile-row span.link-text,
.sidebar.expanded .sidebar-footer .info-icon.user-profile-row svg {
  opacity: 1;
  visibility: visible;
}

/*--sidebar-end--*/

/*--header--*/
.header-sec {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  padding-left: 60px;
}

.header-sec .container {
  padding: 20px;
}

.header-sec .row {
  justify-content: end;
}

/*--header-end--*/

/*--main-sec--*/
.main-sec {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  scroll-behavior: smooth;
}

.body-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
}

.body-content-wrapper {
  display: flex;
  justify-content: center;
  flex-flow: column;
  gap: 40px;
  width: 670px;
}

.form-box-wrapper {
  display: flex;
  flex-flow: column;
  gap: 40px;
  transition: left 0.3s ease;
}

.body-content-wrapper .body-logo img {
  width: 100%;
  max-width: 240px;
}

body.dark .body-content-wrapper .body-logo img {
  filter: invert(1) brightness(1);
}

.body-content-wrapper .body-logo {
  display: flex;
  justify-content: center;
}

.ask-box h1 {
  padding-bottom: 15px;
}

.form-box {
  position: relative;
  border: var(--border) 1px solid;
  width: 100%;
  border-radius: 40px;
  padding: 0;
  background-color: var(--white);
  min-height: 52px;
  display: flex;
  padding: 18px 12px;
  padding-right: 10px;
  overflow: hidden;
}

.form-box .type-box {
  width: 100%;
  display: flex;
  align-items: center;
  /* padding: 12px 85px 12px 20px; */
  color: var(--placeholder);
  cursor: text;
  padding-left: 10px;
}

.type-input {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  overflow: hidden;
  font-size: 16px;
  background: transparent;
  line-height: normal;
  white-space: pre-wrap;
  word-break: break-word;
  /* min-height: 50px; */
  /* padding: 13px 10px 13px 20px !important; */
  color: var(--text);
  max-height: 320px;
  overflow: auto;
  /* height: 2px; */
  margin-right: 80px;
  padding-left: 10px;
}

.type-input::-webkit-scrollbar {
  /* width: 8px;
  cursor: context-menu; */
}

/* Handle */
.type-input::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 10px;
  height: 30px;
}

.form-box .search-ext {
  position: absolute;
  bottom: 13px;
  right: 13px;
}

.search-ext-items {
  display: flex;
  align-items: center;
  position: relative;
  width: 30px;
  height: 30px;
}

.form-box .search-ext span {
  width: 30px;
  height: 30px;
  background-color: var(--bg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  visibility: hidden;
}

.form-box .search-ext span.active {
  opacity: 1;
  visibility: visible;
}

.form-box .search-ext span.record-type svg {
  fill: var(--bg);
}

.form-box .search-ext span.record-type {
  padding: 9px;
  background-color: #fe0000;
}

.form-box .search-ext span.send-type {
  background-color: var(--text);
  padding: 9px;
}

.form-box .search-ext span.send-type svg {
  fill: var(--white);
}

.suggest-prompts-box h3 {
  text-align: center;
  font-weight: 500;
}

.prompts-list {
  display: flex;
  gap: 8px;
  flex-flow: wrap;
  justify-content: center;
  padding: 15px 0 0;
}

.prompts-list li {
  display: block;
}

.prompts-list span {
  background-color: var(--offWhite);
  padding: 12px 18px;
  border-radius: 100px;
  display: block;
  border: var(--border) 1px solid;
  font-size: 12px;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.3s ease;
}

.prompts-list span:hover {
  background-color: var(--hover);
}

.bottom-info-text {
  margin-top: -20px;
}

.bottom-info-text p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

/*--main-sec-end--*/

/*--chat-screen--css */
.question-box {
  text-align: right;
}

.question-box span {
  text-align: left;
  display: inline-block;
  padding: 10px 30px;
  background: var(--hover);
  border-radius: 20px;
  margin: 30px 0px;
  color: var(--black);
  max-width: 80%;
  line-height: 24px;
  word-wrap: break-word;
}

.response-box ul {
  padding-left: 1.25rem;
  margin: 14px 0px;
}

.response-box p {
  margin-bottom: 12px;
  line-height: 1.55;
}

.response-box ul li {
  margin-bottom: 6px;
}

.after-login .sidebar-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.plus {
  background-color: transparent !important;
}

.add-box {
  display: flex;
  cursor: pointer;
}

.add-box svg {
  width: 22px;
  height: 22px;
  margin-left: 15px;
}

.plus svg {
  height: 20px;
  width: 100%;
}

.login-icons {
  margin-top: 20px;
}

.login-icons a {
  padding: 0px 0px !important;
}

.login-header .row {
  justify-content: start !important;
}

body.chat-screen .main-sec .body-content-wrapper {
  gap: 0px;
}

body.chat-screen .body-content {
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
}

body.chat-screen .body-content-wrapper {
  width: 100%;
  max-width: 750px;
  padding: 0 20px 130px 20px;
  display: flex;
  flex-direction: column;
}

body.chat-screen .form-box-wrapper {
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 0;
  background: linear-gradient(to top, var(--bg) 70%, transparent);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

body.expanded-sidebar .form-box-wrapper {
  left: 280px;
}

.ask-box {
  width: 100%;
  max-width: 750px;
  padding: 0;
}

.ask-box .body-icon {
  text-align: center;
}

/*--popup-code--*/
.about-popup {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  height: 100%;
  padding-left: 60px;
  justify-content: center;
  align-items: center;
}

.about-popup.active {
  display: flex;
  background: #0000003b;
  backdrop-filter: blur(2px);
}

.about-page-content {
  display: none;
}

.about-page-content.active-page {
  display: block;
}

.about-popup-box {
  width: 650px;
  height: 60vh;
  background-color: var(--offWhite);
  border-radius: 14px;
  box-shadow: 0 0 10px var(--hover);
  display: flex;
  overflow: hidden;
}

body.dark .about-popup-box {
  box-shadow: none;
}

.about-popup-sidebar {
  width: 180px;
  min-width: 180px;
  padding: 20px;
  /* border-right: var(--border) 1px solid; */
  display: flex;
  flex-flow: column;
  gap: 27px;
  padding-top: 30px;
  background: var(--light-grey);
}

.about-popup-body {
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
  padding: 15px 15px;
  height: calc(100% - 30px);
  padding-top: 30px;
}

.popup-close {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 7px;
  color: var(--black);
}

.nav-pages-list {
  display: flex;
  flex-flow: column;
  gap: 9px;
}

.nav-pages-list li {
  display: flex;
  padding: 8px 10px;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-pages-list li span.text-box {
  font-weight: 500;
}

.nav-pages-list li span.icon-box {
  display: flex;
}

.nav-pages-list li.active-item,
.nav-pages-list li:hover {
  background-color: var(--hover);
}

.about-popup-body h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0 5px 12px;
  border-bottom: var(--border) 1px solid;
  margin-bottom: 20px;
}

.about-popup-body .text-box {
  padding: 0 5px;
  font-size: 14px;
}

.about-popup-body h3 {
  font-size: 17px;
  font-weight: 600;
  padding: 15px 5px 10px;
  border-top: var(--border) 1px solid;
  margin-top: 20px;
}

.you-plan-popup-page .text-box ul.info-list li {
  border-bottom: var(--border) 1px solid;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
  font-size: 14px;
}

.you-plan-popup-page .text-box ul.info-list li:first-child {
  padding-top: 0;
}

.subscription-box {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.subscription-box p {
  color: var(--light-text);
  font-size: 12px;
  padding: 6px 0 0;
}

.subscription-msg-box h4 {
  font-weight: 500;
}

.subscription-msg-box h5 {
  font-weight: 500;
}

.subscription-msg-box ul {
  padding: 16px 0 0 15px;
}

.subscription-msg-box ul li {
  font-size: 14px;
}

.subscription-msg-box ul li:not(:last-child) {
  margin-bottom: 10px;
}

.settings-popup-page .password-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0 20px;
  border-bottom: var(--border) 1px solid;
}

.settings-popup-page .password-box span.value-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-text);
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

.settings-popup-page .password-box span.value-box svg {
  position: relative;
  top: -3px;
}

.logout-box {
  border-bottom: var(--border) 1px solid;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.logout-box .left-column {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.logout-box .left-column p {
  color: var(--placeholder);
  font-size: 14px;
}

.logout-box .right-column span.btn {
  display: inline-block;
  padding: 6px 22px;
  font-size: 14px;
}

.settings-popup-page .nick-name {
  border-bottom: var(--border) 1px solid;
  padding: 0 0 20px;
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  gap: 12px;
}

.settings-popup-page .nick-name input {
  width: 100%;
  border-radius: 16px;
  padding: 7px 16px;
  border: var(--border) 1px solid;
  font-size: 14px;
  color: var(--placeholder);
  font-weight: 400;
}

.settings-popup-page .appearence-name {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 82px;
}

.theme-action-btn {
  border: var(--border) 1px solid;
  padding: 7px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.theme-action-btn svg {
  width: 14px;
  height: 14px;
}

.theme-action-in {
  position: relative;
}

.theme-action .theme-dropcontent {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  min-width: 120px;
  border: var(--border) 1px solid;
  display: none;
  padding: 5px;
  flex-flow: column;
  gap: 5px;
}

.theme-action .theme-dropcontent.drop-content.show-drop {
  display: flex;
}

.theme-action .theme-dropcontent li {
  padding: 4px 10px;
  border-radius: 8px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  justify-content: space-between;
  cursor: pointer;
}

.theme-action .theme-dropcontent li svg {
  opacity: 0;
  visibility: hidden;
}

.theme-action .theme-dropcontent li.checked,
.theme-action .theme-dropcontent li:hover {
  background-color: var(--hover);
}

.theme-action .theme-dropcontent li.checked svg {
  opacity: 1;
  visibility: visible;
}

/*--popup-code-end--*/

/*--login-page--*/
.login-register-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 100%;
}

.login-register-page-wrapper {
  width: 100%;
  max-width: 350px;
}

.login-register-page-wrapper .logo-box {
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}

.login-register-page-wrapper .logo-box img {
  width: 100%;
  max-width: 200px;
}

body.dark .login-register-page-wrapper .logo-box img {
  filter: grayscale(0) invert(1);
}

.login-register-page-wrapper .form-wrapper {
  background-color: var(--white);
  border: var(--border) 1px solid;
  border-radius: 16px;
  padding: 2px;
}

.login-register-page-wrapper .form-wrapper h1 {
  font-size: 20px;
  padding: 10px 0;
}

.form-wrapper-box {
  border: var(--border) 1px solid;
  border-radius: 13px;
  padding: 20px 30px;
  box-shadow: 0 0 3px var(--hover);
  border: none;
  box-shadow: none;
  padding-top: 0;
}

.form-wrapper-box .input-box input {
  width: 100%;
  border: var(--border) 1px solid;
  border-radius: 4px;
  padding: 10px;
}

.form-wrapper-box .input-box label {
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 5px;
  display: block;
}

.form-wrapper-box .input-group {
  display: flex;
  gap: 10px;
}

.form-wrapper-box .input-box {
  padding: 8px 0;
}

.submit-button-box button {
  background-color: var(--text);
  border-radius: 6px;
  border: var(--text) 1px solid;
  width: 100%;
  padding: 10px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button-box {
  padding: 10px 0;
}

.submit-button-box button:hover {
  background-color: var(--light-text);
  border-color: var(--light-text);
}

.between-lines_wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--light-text);
  gap: 8px;
  margin: 5px 0 15px;
}

.between-lines_wrapper:before,
.between-lines_wrapper:after {
  content: "";
  height: 1px;
  background: var(--border);
  width: calc(50% - 10px);
  flex-grow: 1;
  min-width: 20px;
}

.between-lines_wrapper:after {
  transform: rotate(180deg);
}

.button-auth {
  background-color: var(--white);
  border-radius: 6px;
  border: var(--border) 1px solid;
  width: 100%;
  padding: 10px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 200px;
}

.button-auth:hover {
  background-color: var(--bg);
  box-shadow: 1px 1px 5px var(--hover);
}

.form-wrapper-box p.login-text {
  text-align: center;
  padding: 15px 0 10px;
  font-size: 12px;
  color: var(--light-text);
  font-weight: 500;
}

.form-wrapper-box p.login-text a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
}

.form-wrapper-box p.login-text a:hover {
  text-decoration: underline;
}

/*--login-page-end--*/

/*--email-verification-page--*/
.verification-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  /* background-color: var(--white); */
}

.verification-page .logo-box {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.verification-page .logo-box img {
  width: 100%;
  max-width: 120px;
}

body.dark .verification-page .logo-box img {
  filter: grayscale(0) invert(1);
}

.verification-page .title-box {
  display: flex;
  flex-flow: column;
  gap: 12px;
  padding-bottom: 32px;
}

.verification-page-content {
  width: 100%;
  max-width: 372px;
  padding: 0 15px;
  background-color: var(--white);
  border: var(--border) 1px solid;
  border-radius: 16px;
  padding: 20px;
}

.verification-page .title-box p {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--light-text);
}

.verification-page-content .input-box input {
  height: 52px;
  width: 100%;
  border-radius: 100px;
  border: var(--border) 1px solid;
  padding: 0 20px;
  font-size: 16px;
  background-color: var(--white);
}

.verification-page-content .input-box input::placeholder {
  opacity: 0;
}

.verification-page-content .input-box label {
  padding: 0 6px;
  position: absolute;
  left: 15px;
  top: 16.4px;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.verification-page-content .input-box {
  position: relative;
}

.verification-page-content .input-box input:focus + label,
.verification-page-content .input-box input:not(:placeholder-shown) + label {
  top: -7px;
  font-size: 13px;
  color: #3e68ff;
}

.verification-page-content .input-box input:focus,
.verification-page-content .input-box input:not(:placeholder-shown) {
  border-color: #3e68ff;
  outline: none;
}

.verification-page-content .btn-boxes {
  display: flex;
  flex-flow: column;
  padding: 24px 0 15px;
  gap: 10px;
}

.verification-page-content .btn-boxes button.cont-btn {
  height: 52px;
  width: 100%;
  border-radius: 100px;
  border: var(--text) 1px solid;
  padding: 0 20px;
  font-size: 16px;
  background-color: var(--text);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  height: unset;
  padding: 6px 14px;
}
#countdownText {
  text-align: center;
}

.verification-page-content .btn-boxes button.cont-btn:hover {
  background-color: var(--light-text);
  border-color: var(--light-text);
}

.verification-page-content .btn-boxes button.resend-btn {
  height: 45px;
  width: 100%;
  border-radius: 100px;
  border: transparent 1px solid;
  padding: 0 20px;
  font-size: 16px;
  background-color: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.verification-page-content .btn-boxes button.resend-btn:hover {
  color: var(--light-text);
}

.verification-page-content .btn-box a {
  height: 52px;
  width: 100%;
  border-radius: 100px;
  border: var(--border) 1px solid;
  padding: 0 20px;
  font-size: 16px;
  background-color: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  height: unset;
  padding: 6px 14px;
}

.verification-page-content .btn-box a:hover {
  background-color: var(--bg);
}

.verification-page-content .btn-box {
  padding: 10px 0;
}

.verification-page-content .footer-box {
  padding: 40px 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  gap: 15px;
  color: var(--light-text);
}

.verification-page-content .footer-box a {
  color: var(--light-text);
}

/*--email-verification-page-end--*/

/*--billing-page--*/
.billing-sec {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  scroll-behavior: smooth;
  background-color: var(--white);
}

.billing-sec-sidebar {
  width: 540px;
  background-color: var(--black);
  position: relative;
}

.billing-sec-content {
  flex: 1;
  padding: 20px 60px;
  overflow: hidden;
  overflow-y: auto;
}

.billing-sec-sidebar .logo-box {
  padding: 20px;
}

.billing-sec-sidebar .logo-box img {
  filter: var(--filter);
  width: 100%;
  max-width: 100px;
}

.billing-sec-sidebar .title-box {
  padding: 60px 40px 20px;
}

.billing-sec-sidebar .title-box h3 {
  color: var(--white);
  font-size: 22px;
}

.billing-sec-sidebar .title-box .back-btn {
  padding: 12px 0 0;
}

.billing-sec-sidebar .title-box .back-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
}

.billing-sec-sidebar .title-box .back-btn a svg {
  width: 12px;
  height: 12px;
}

.billing-sec-sidebar .title-box .back-btn a:hover {
  color: var(--violet);
}

.billing-sec-sidebar .footer-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 0 40px 30px;
}

.billing-sec-sidebar .footer-box ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.billing-sec-sidebar .footer-box ul li {
  color: var(--light-text);
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  gap: 7px;
  position: relative;
}

.billing-sec-sidebar .footer-box ul li svg {
  height: 18px;
  width: auto;
}

.billing-sec-sidebar .footer-box ul li svg path {
  fill: var(--border);
}

.billing-sec-sidebar .footer-box a {
  color: var(--light-text);
  text-decoration: none;
}

.billing-sec-sidebar .footer-box ul li:not(:last-child):after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  background-color: var(--light-text);
  opacity: 0.4;
}

.billing-sec-content-in {
  padding: 20px 0;
  display: flex;
  flex-flow: column;
  gap: 45px;
}

.billing-sec-content .label-box {
  text-transform: uppercase;
  font-size: 12px;
}

.current-plan h3 {
  font-size: 22px;
  padding: 12px 0;
}

.current-plan h4 {
  font-size: 22px;
  font-weight: 700;
}

.current-plan p {
  font-size: 13px;
  padding: 10px 0;
}

.card-details {
  display: flex;
  align-items: center;
  max-width: 140px;
  position: relative;
  gap: 9px;
  font-size: 13px;
}

.current-plan {
  display: flex;
  flex-flow: column;
}

.card-details span.card-edit-btn {
  position: absolute;
  right: 0;
  cursor: pointer;
}

.card-details span.card-edit-btn svg {
  width: 12px;
  height: 12px;
}

.card-details span.card-icon {
  display: flex;
}

.card-details span.card-icon svg {
  fill: #186aa0;
}

.payment-methods {
  display: flex;
  flex-flow: column;
}

.payment-methods .card-details-list {
  padding: 15px 0;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.payment-methods .card-details-list .card-details {
  max-width: 350px;
}

.payment-methods .add-payment-method-btn {
  padding: 5px 0 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.payment-methods .add-payment-method-btn span.plus-icon {
  display: flex;
}

.billing-info .billing-info-list {
  padding: 15px 0 0;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.billing-info .billing-info-list li {
  display: flex;
  gap: 20px;
  font-size: 13px;
  line-height: 23px;
}

.billing-info .billing-info-list li span.label-text {
  width: 100px;
  color: var(--light-text);
}

.tax-info {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.tax-info .aupdate-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.tax-info .aupdate-info-btn span.plus-icon {
  display: flex;
}

.tax-info .aupdate-info-btn span.plus-icon svg {
  width: 10px;
  height: 10px;
}

.invoice-history {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.billing-sec-content .invoice-history .label-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-history span.invoice-search {
  cursor: pointer;
  position: relative;
}

.invoice-history span.invoice-search svg {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 9px;
  transition: all 0.3s ease;
}

.invoice-history .invoices-list {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.invoice-history .invoices-list a {
  font-size: 14px;
  display: flex;
  color: var(--text);
  text-decoration: none;
}

.invoice-history .invoices-list span.status {
  flex: 0 1 15%;
}

.invoice-history .invoices-list span.status b.paid {
  background-color: #d8f7c2;
  border: #a6eb85 1px solid;
  border-radius: 4px;
  padding: 1px 7px;
  color: #006907;
  font-weight: 600;
  display: inline-block;
}

.invoice-history .invoices-list span.status b.unpaid {
  background-color: #f7c2c2;
  border: #eb8585 1px solid;
  border-radius: 4px;
  padding: 2px 7px;
  color: #690000;
  font-weight: 600;
}

.invoice-history .invoices-list span.desc {
  flex: 0 1 40%;
}

.invoice-history .invoices-list span.amount {
  flex: 0 1 15%;
}

.invoice-history .invoices-list span.date {
  flex: 0 1 15%;
}

.invoice-history span.invoice-search input {
  height: 32px;
  border-radius: 8px;
  border: var(--border) 1px solid;
  padding: 0;
  width: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.invoice-history span.invoice-search.active input {
  padding: 0 10px 0 32px;
  width: 160px;
  opacity: 1;
  visibility: visible;
}

.invoice-history span.invoice-search.active svg {
  right: inherit;
  left: 3px;
}

.card-edit-dropcontent.drop-content {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 9;
  min-width: 120px;
  border: var(--border) 1px solid;
  display: none;
  padding: 5px;
  flex-flow: column;
  gap: 5px;
  box-shadow: 0px 3px 10px var(--hover);
}

.card-edit-dropcontent.drop-content li {
  padding: 4px 10px;
  border-radius: 6px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  justify-content: space-between;
  cursor: pointer;
}

.card-edit-dropcontent.drop-content li:hover {
  background-color: var(--hover);
}

.card-edit-dropcontent.drop-content.show-drop {
  display: flex;
}

.card-edit-action-btn.drop-btn {
  cursor: pointer;
  padding: 0px 8px 6px;
  border: transparent 1px solid;
  border-radius: 6px;
  display: flex;
}

.card-edit-action-in {
  position: relative;
}

.card-edit-action-in:has(.show-drop) .card-edit-action-btn.drop-btn {
  border-color: var(--border);
  box-shadow: 0 0 5px var(--hover);
}

.card-edit-action-btn.drop-btn span.value-box {
  display: flex;
}

.mobile-footer-billing {
  display: none;
  padding: 20px 0 0;
}

/*--billing-page-end--*/

@media (max-width: 1240px) {
  .billing-sec-content {
    padding: 20px 40px;
  }
}

@media (max-width: 1199px) {
  body.chat-screen .body-content-wrapper {
    max-width: 660px;
  }

  .ask-box {
    max-width: 660px;
    padding: 0 20px;
  }

  .billing-sec-sidebar {
    width: 340px;
  }

  .billing-sec-sidebar .title-box {
    padding: 40px 20px 20px;
  }

  .billing-sec-sidebar .logo-box {
    padding: 15px;
  }

  .billing-sec-content {
    padding: 15px 30px;
  }

  .billing-sec-sidebar .footer-box {
    padding: 0 20px 20px;
  }

  .billing-sec-sidebar .footer-box ul {
    flex-flow: wrap;
    gap: 10px 40px;
  }

  .invoice-history .invoices-list span.date {
    flex: 0 1 20%;
  }

  .invoice-history .invoices-list span.desc {
    flex: 0 1 50%;
  }
}

@media (max-width: 991px) {
  .header-sec {
    background: var(--bg) url(../img/bgt2.jpg);
    background-size: cover;
  }

  body.dark .header-sec {
    background: var(--bg);
  }

  .desktop-hidden {
    display: block;
  }

  .sidebar {
    position: fixed;
    height: 100%;
    top: 0;
    z-index: 9;
    left: -60px;
    transition: all 0.3s ease;
  }

  body.after-login .sidebar {
    left: -280px;
    width: 280px;
  }

  body.after-login .sidebar.active.expanded {
    left: 0;
    z-index: 999;
  }
  .sidebar-header-row .sidebar-toggle-btn.desktop-header {
    display: block;
  }
  .desktop-header.sidebar-toggle-btn {
    display: none;
  }

  .header-sec {
    padding-left: 0;
  }

  .header-sec .row {
    justify-content: space-between;
  }

  .mobile-sidebar-openbtn {
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }

  .mobile-sidebar-openbtn span {
    background-color: var(--black);
    height: 1px;
    display: block;
    border-radius: 100px;
  }

  .mobile-sidebar-openbtn span:nth-child(2) {
    width: 65%;
    margin: 5px auto;
  }

  .mobile-sidebar-openbtn span:nth-child(3) {
    width: 40%;
    margin: 0 auto;
  }

  .header-sec .left-column {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-sec .left-column .header-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
  }

  .sidebar.active {
    left: 0;
    z-index: 999;
  }

  .backdrop-box {
    position: fixed;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    z-index: 44;
    display: none;
  }

  .backdrop-box.active {
    display: block;
  }

  .sidebar-menu-actions .menu-item span.link-text {
    opacity: 1;
  }

  .sidebar-menu-chats,
  .sidebar-footer .menu-item span.link-text,
  .sidebar-footer .info-icon.user-profile-row span.link-text,
  .sidebar-footer .info-icon.user-profile-row svg {
    opacity: 1;
    visibility: visible;
  }

  .logo-text {
    display: block;
  }

  body.chat-screen .form-box-wrapper {
    left: 0;
  }

  .sidebar-menu-chats ul li.chat-item .chat-action {
    opacity: 1;
    visibility: visible;
    /* background-color: var(--white); */
    border-radius: 6px;
  }

  .sidebar-menu-chats ul li.chat-item {
    padding-right: 28px;
  }

  .about-popup.active {
    padding: 0;
  }

  body:has(.about-popup.active) .sidebar.active {
    left: -280px;
  }

  .billing-sec-sidebar {
    width: 240px;
  }

  .billing-sec-content {
    padding: 15px 20px;
  }

  .invoice-history .invoices-list a {
    font-size: 13px;
  }

  .billing-sec-sidebar .title-box h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 22px;
  }

  body.after-login .sidebar {
    left: -239px;
    width: 239px;
  }

  body:has(.about-popup.active) .sidebar.active {
    left: -239px;
  }

  .chat-dropcontent.drop-content {
    left: 84px !important;
    margin-top: -10px !important;
  }

  nav.sidebar-menu {
    font-size: 13px;
  }

  .add2-space-dropcontent.drop-content {
    left: 238px !important;
    margin-left: 0 !important;
    width: 140px;
    min-width: inherit;
  }

  .add2-space-dropcontent-list ul li {
    font-size: 13px;
  }

  .add2-space-dropcontent-list ul {
    gap: 2px;
  }

  .about-popup {
    width: calc(100% - 30px);
    left: 0;
    right: 0;
    margin: auto;
  }

  .nav-pages-list li span.text-box {
    display: none;
  }

  .about-popup-sidebar {
    width: 60px;
    min-width: 60px;
    padding: 20px 10px;
  }

  .nav-pages-list li {
    justify-content: center;
  }

  .about-popup-body .text-box p {
    font-size: 14px;
  }

  .about-popup-body {
    padding: 10px;
    margin-top: 10px;
  }

  .about-popup-body h2 {
    font-size: 18px;
    font-weight: 500;
  }

  .about-popup-body h3 {
    font-size: 18px;
    font-weight: 500;
  }

  .about-popup-body .text-box {
    font-size: 14px;
  }

  .logout-box .right-column span.btn {
    padding: 7px 22px;
    font-size: 14px;
  }

  .settings-popup-page .nick-name input {
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 14px;
  }

  .settings-popup-page .appearence-name {
    min-height: auto;
  }

  .about-popup-box {
    height: 75vh;
  }

  .billing-sec {
    flex-flow: column;
  }

  .billing-sec-sidebar {
    width: 100%;
  }

  .billing-sec-content {
    width: 100%;
    padding: 15px;
  }

  .billing-sec-sidebar .footer-box {
    display: none;
  }

  .billing-sec-sidebar .title-box {
    padding: 10px 15px 15px;
  }

  .current-plan h3 {
    font-size: 18px;
  }

  .current-plan h4 {
    font-size: 18px;
  }

  .invoice-history .invoices-list a {
    font-size: 12px;
    gap: 5px;
  }

  .invoice-history .invoices-list span.date {
    min-width: 80px;
  }

  .invoice-history .invoices-list span.amount {
    min-width: 50px;
  }

  .invoice-history .invoices-list span.status {
    min-width: 50px;
  }

  .mobile-footer-billing {
    display: block;
  }

  .mobile-footer-billing ul {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 8px;
  }

  .mobile-footer-billing ul li {
    font-size: 11px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-footer-billing ul li svg {
    width: 28px;
    height: 14px;
  }

  .mobile-footer-billing ul li a {
    text-decoration: none;
    color: var(--light-text);
  }

  .header-sec .btn-group a.btn:nth-child(2) {
    display: block;
  }
}

/* new space popup */
#new-space-popup {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-btn {
  cursor: pointer;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 1rem 0rem;
}

#userName {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#submitBtn {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border: 1px solid transparent;
  border-radius: 100px;
}

.input-group label {
  font-size: 14px;
  color: #010101;
}

/* edit input */
.edit-input {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  background: #fff;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  padding: 4px;
  width: 70%;
  transition: all 0.3s ease;
  outline: none;
}

.sidebar-footer .info-icon:not(.user-profile-row) {
  padding: 10px 5px;
  border-radius: 8px;
}

/* Chrome / Edge */
.add2-space-dropcontent.drop-content::-webkit-scrollbar {
  width: 4px;
}

.add2-space-dropcontent.drop-content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.alert-msg-link {
  color: inherit;
  font-weight: 700;
}

.limit-exceed-msg {
  margin-bottom: 34px;
  background: linear-gradient(to top, var(--bg) 74%, transparent);
  padding-top: 107px;
}

.dark .header-logo img {
  filter: invert(1);
}

/* Billing offer card */
.my-row {
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}

.my-row > * {
  padding-left: 15px;
  padding-right: 15px;
}

.card-body .card {
  box-shadow: 0 0 42px 0 #0000001c;
  padding: 30px;
  height: 100%;
  border: 1px solid #0000002b;
  border-radius: 15px;
  background: var(--sideBar-bg);
}

.card-body {
  height: 100%;
}

.col-md-4 {
  width: 33.333333%;
}

.w-full {
  width: 100%;
}

.card-body .card .d-flex.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.card-body .card .card-title {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--hover);
  padding-bottom: 10px;
}

.text-center {
  text-align: center;
}

.card-body .card.border-warning {
  border: 1px solid var(--placeholder);
}

.offer-bg.bg-warning {
  margin-top: -46px;
  background: var(--text);
  color: #fff;
  padding: 6px 4px;
  font-size: 14px;
  border-radius: 4px;
  color: var(--offWhite);
}

ul.list-unstyled li {
  list-style: none;
  margin-bottom: 9px;
}

.mb-3 {
  margin-bottom: 9px;
}

.mb-4 {
  margin-bottom: 12px;
}

ul.list-unstyled li i {
  margin-right: 8px;
}

.col-md-6 {
  width: 50%;
}

.col-md-3 {
  width: 25%;
}

.checkout-title {
  border-bottom: 1px solid var(--hover);
  padding-bottom: 10px;
  margin-bottom: 18px;
  font-size: 19px;
}

.checkout-main-title {
  font-size: 26px;
  margin-bottom: 24px;
  background: var(--text);
  padding: 7px 23px;
  color: var(--white);
  border-radius: 3px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  border: 1px solid var(--hover);
  padding: 6px 15px;
}

.bg-var-text {
  background: var(--text);
  color: var(--white);
  padding: 6px 23px;
  font-size: 14px;
  border-radius: 3px;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

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

.form-select,
.form-control {
  width: 100%;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.g-3 {
  gap: 12px;
}

.form-label {
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
}

.dual-btn .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.g-2 {
  gap: 8px;
}

.btn-secondary {
  background: var(--text);
  color: var(--white);
}

.btn-secondary:hover {
  color: var(--text);
}

.alert {
  text-align: center;
  padding: 9px 4px;
}

.alert-success {
  background: green;
  color: #fff;
}

.alert-danger {
  background: red;
  color: #fff;
}

.alert-info {
  background: var(--text);
  color: #fff;
}

.alert-link {
  color: var(--var);
}

.col-md-12 {
  width: 100%;
}

.btn-danger,
.btn-danger:hover {
  background: red;
  color: #fff;
}

.mt-4 {
  margin-top: 12px;
}

.mb-5 {
  margin-bottom: 15px;
}

.modal {
  position: fixed;
  background: #00000040;
  z-index: 99999;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(3px);
  display: flex;
}

.modal-dialog {
  max-width: 580px;
  margin: auto;
  background: #fff;
  width: 90%;
  text-align: center;
  padding: 26px 22px 44px;
  border-radius: 6px;
}

.modal-title {
  font-size: 28px;
  border-bottom: 1px solid var(--hover);
  padding-bottom: 11px;
}

.modal-body p {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 18px;
}

.modal-body p.modal-confrm-msg {
  margin-bottom: 16px;
  color: var(--placeholder);
  font-weight: normal;
  font-size: 15px;
}

.border-bottom-var {
  border-bottom: 1px solid var(--hover);
}

.card-header h1 {
  padding-bottom: 7px;
  margin-bottom: 28px;
  background: var(--light-grey);
  padding: 9px 0;
  font-size: 24px;
  font-weight: 500;
}
.gap-row-3 {
  gap: 18px 0;
}
.form-group {
  margin-bottom: 15px;
}
body:not(.after-login) .ask-box {
  max-width: 670px;
}

body.chat-screen:not(.after-login) .body-content-wrapper {
  max-width: 670px;
}
.form-wrapper-box .input-group {
  gap: 0;
  margin: 0;
}
.logout-popup.overlay {
  width: 100%;
  height: 100%;
  background: #00000061;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  position: fixed;
}

@media only screen and (min-width: 1400px) {
  .col-lg-4 {
    width: 33.333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
}

@media only screen and (max-width: 991px) {
  .card-body .card {
    padding: 20px;
  }

  .offer-bg.bg-warning {
    margin-top: -30px;
    font-size: 12px;
    padding: 4px 2px;
  }

  .checkout-main-title {
    font-size: 22px;
    padding: 5px 15px;
  }

  .checkout-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .col-lg-4,
  .col-md-3,
  .col-md-4,
  .col-md-6 {
    width: 100%;
  }

  .offer-bg.bg-warning {
    margin-top: -30px;
    font-size: 12px;
    padding: 4px 2px;
  }
  .card-body .card .d-flex.flex-column {
    height: auto;
  }
  .btn-group {
    display: flex;
    gap: 7px;
  }

  .header-sec .btn-group a {
    padding: 5px 12px;
    font-size: 13px;
  }

  .header-sec .left-column .header-logo img {
    width: 100%;
    max-width: 134px;
    height: auto;
    clip-path: polygon(0 0, 28% 0, 29% 100%, 0 100%);
  }
  .header-sec .row {
    align-items: center;
  }
  .header-sec .left-column {
    width: 50%;
  }
  body:not(.after-login) .sidebar,
  body:not(.after-login) .mobile-sidebar-openbtn {
    display: none;
  }
}

/* Billing offer card */
.input-box.password-input {
  width: 100%;
  margin-bottom: 8px;
}

.input-field {
  position: relative;
}

.input-field input {
  width: 100%;
  padding: 14px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;

  transition: border-color 0.3s;
}

/* Focus border */
.input-field input:focus {
  border-color: #000;
}

/* Label styling */
.form-wrapper-box .input-field label {
  position: absolute;
  left: 12px;
  top: 20px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--placeholder);
  padding: 0 4px;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Move label up on focus or when input has value */
.form-wrapper-box .input-field input:focus + label,
.form-wrapper-box .input-field input:not(:placeholder-shown) + label {
  top: -1px;
  font-size: 12px;
  /* color: #000; */
  background-color: var(--white);
  /* color: #3e68ff; */
}

.input-box.password-input input::placeholder {
  color: #0000;
  opacity: 0;
}

.no-space-item,
.no-chat-item {
  padding: 10px 11.5px;
  border-radius: 8px;
  position: relative;
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}
.accordian-block {
  display: flex;
  justify-content: space-between;
  padding-right: 23px;
  align-items: center;
}
.accordian-toggle {
  display: block;
  height: 20px;
  max-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128' viewBox='0 0 56 56'%3E%3Cpath fill='currentcolor' d='M28 39.46a2.1 2.1 0 0 0 1.57-.679l18.164-18.586a2.1 2.1 0 0 0 .633-1.5a2.12 2.12 0 0 0-2.156-2.156a2.27 2.27 0 0 0-1.523.61L28 34.21L11.313 17.148a2.23 2.23 0 0 0-1.524-.609a2.12 2.12 0 0 0-2.156 2.156c0 .586.234 1.102.633 1.524L26.43 38.78c.445.446.96.68 1.57.68'/%3E%3C/svg%3E");
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.accordian-toggle.open-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128' viewBox='0 0 56 56'%3E%3Cpath fill='currentcolor' d='M8.266 35.805c-.399.375-.633.914-.633 1.523c0 1.219.937 2.133 2.156 2.133c.586 0 1.149-.211 1.524-.61L28 21.79l16.688 17.063c.374.398.96.609 1.523.609c1.219 0 2.156-.914 2.156-2.133c0-.61-.234-1.148-.633-1.523L29.57 17.242A2.13 2.13 0 0 0 28 16.54c-.61 0-1.148.258-1.57.703Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sidebar-menu-chats ul li.chat-item ul.space-chat-lst {
  margin: 10px 0;
  padding: 0;
  padding-left: 16px;
}

.sidebar-menu-chats ul li.chat-item.space-toggle-main {
  padding: 0;
}

.sidebar-menu-chats ul li.chat-item.space-toggle-main:hover {
  background: unset;
}

.sidebar-menu-chats ul li.chat-item.space-toggle-main .accordian-block:hover {
  background: var(--hover);
  padding-right: 34px;
}
.sidebar-menu-chats ul li.chat-item.space-toggle-main:hover .accordian-block {
  padding-right: 34px;
}

.sidebar-menu-chats ul li.chat-item.space-toggle-main .accordian-block {
  transition: 0.3s;
  padding: 10px 11.5px;
  border-radius: 8px;
}
.sidebar-menu-chats ul li.chat-item.space-toggle-main.chat-opened .chat-action {
  visibility: visible;
  opacity: 1;
}

.sidebar-menu-chats
  ul
  li.chat-item.space-toggle-main.chat-opened
  .space-chat-lst
  .chat-action {
  opacity: 0;
  visibility: hidden;
}
.sidebar-menu-chats
  ul
  li.chat-item.space-toggle-main.chat-opened
  .space-chat-lst
  li:hover
  .chat-action {
  opacity: 1;
  visibility: visible;
}

li.ui-sortable-placeholder.ui-state-highlight {
  background: var(--white) !important;
  border-color: var(--hover);
  box-shadow: inset 0 0 20px var(--hover) !important;
  height: 45px !important;
  list-style: none !important;
}

.sidebar-menu-chats
  ul
  li.chat-item.space-toggle-main.chat-opened
  .accordian-block {
  padding-right: 35px;
  background: var(--hover);
}
.sidebar-menu-chats
  ul
  li.chat-item.space-toggle-main:has(.show)
  .accordian-block {
  padding-right: 35px;
}

.sidebar-menu-chats ul li.chat-item-2 {
  padding: 10px 11.5px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}

.sidebar-menu-chats ul li.chat-item.space-toggle-main:has(.show) {
  background-color: #0000;
}

.sidebar-menu-chats ul li.chat-item-2:hover,
.sidebar-menu-chats ul li.chat-item-2.active {
  background-color: var(--hover);
}

.sidebar-menu-chats ul li.chat-item .chat-action:has(.show) .chat-action {
  visibility: visible;
  opacity: 1;
}

.sidebar-menu-chats ul li.chat-item-2:has(.show) {
  background-color: var(--hover);
}

.sidebar-menu-chats
  ul
  li.chat-item.space-toggle-main
  li.chat-item-2:has(.show)
  .chat-action {
  opacity: 1;
  visibility: visible;
}

.add2-space.drop-btn-2 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.add2-space-dropcontent ul li {
  padding: 5px 8px;
  border-radius: 6px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.add2-space-dropcontent ul {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.add2-space-dropcontent {
  padding: 10px 0;
}
.row.results {
  gap: 21px 0;
}

.add2-space-dropcontent-list-2 {
  padding: 10px 0;
}
.add2-space-dropcontent-list-2 ul {
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.add2-space-dropcontent-list-2 li:hover {
  background: var(--hover);
}

.chat-dropcontent-item-list .item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

/* ====== */
.response-box b,
.response-box strong {
  font-weight: normal;
}

.response-box {
  font-weight: normal !important;
  font-size: 16px !important;
}

.response-box > * {
  font-weight: normal !important;
  font-size: 16px !important;
}
