/* Base CSS */
@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");

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

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
}

body {
  font-weight: 400;
  font-family: "Tektur", sans-serif;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

a,
button,
input,
textarea {
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

:root {
  --white-color: #ffffff;
  --primary-color: #85fb93;
  --secondary-color: #6934f7;
  --black-color: #18191c;
  --gray-color: #4b5563;
  --light-gray-color: #e8e8e8;
  --secondary-gray: #18191c80;
  --light-purple-color: #6934f74d;
  --lavender-color: #fbf7ff;
  --lavender-light-color: #e1c7ff;
  --blackish-color: #2b2d32;
  --gunmetal-dark: #18191c66;
  --pearl-color: #f0f0f0;
  --sonic-silver-color: #848486;
}

.theme-btn {
  gap: 7.5px;
  color: #fff;
  background-color: var(--secondary-color);
  height: 40px;
  font-size: 13px;
}

.theme-btn--green {
  background-color: var(--primary-color);
  color: var(--black-color);
}

.theme-btn:hover {
  opacity: 0.5;
}

.theme-btn--sm {
  height: 32px;
}

.theme-btn--lg {
  height: 46px;
  font-size: 14px;
  gap: 12px;
}

.text-green {
  color: #85fb93 !important;
}

/* ----------------------------- HEADER AREA START ------------------------ */
.header {
  padding-block: 16px;
}

.header .container {
  max-width: 1404px;
}

.header__logo img {
  width: 148px;
}

.header__inner {
  gap: 50px;
  padding: 13px 40px !important;
  background-color: var(--black-color);
}

.header__right {
  gap: 36px;
}

.header__menu-list {
  gap: 36px;
}

.header__menu-list a {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
}

.header__menu-list a:hover {
  color: var(--white-color);
}

.header__buttons {
  gap: 24px;
}

.header__btn {
  min-width: 100px;
}

.header__menu-toggle img {
  width: 44px;
}

.mobile__menu {
  background-color: var(--black-color);
  padding-bottom: 25px;
  padding-top: 10px;
  position: relative;
}

.mobile__menu::before {
  content: "";
  width: 100%;
  height: 70px;
  background-color: var(--black-color);
  position: absolute;
  top: -70px;
  left: 0;
}

.mobile__menu-list a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary-color);
  font-weight: 500;
  padding: 2px 6px;
  display: inline-block;
}

/* ----------------------------- HEADER AREA END ------------------------ */

/* ----------------------------- HERO AREA START ------------------------ */
.hero__area {
  padding-block: 100px;
}

.hero__shape-1 {
  width: 125px;
  right: -70px;
  top: -92px;
}

.hero__shape-2 {
  left: 0;
  top: 570px;
  width: 130px;
}

.hero__shape-3 {
  right: 0;
  top: 730px;
  width: 237px;
}

.hero__inner {
  display: flex;
  align-items: center;
}

.hero__content h1 {
  font-size: 80px;
  color: var(--secondary-color);
  line-height: 1.5;
  font-weight: 700;
}

.hero__content h4 {
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}

.hero__content p {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-color);
  line-height: 26px;
  max-width: 710px;
  letter-spacing: 10%;
  margin: 0;
}

.hero__content p a {
  color: var(--secondary-color);
}

.hero__content p a:hover {
  text-decoration: underline;
}

.hero__thumb {
  max-width: 272px;
  margin-left: auto;
}

.hero__content {
  margin-bottom: 30px;
}

.hero__btns {
  gap: 14px;
}

/* Chatbox BEM CSS */
.chat__box {
  border-radius: 16px;
  border: 4px solid var(--secondary-color);
  overflow: hidden;
  margin-top: 100px;
  background-color: var(--white-color);
  box-shadow: 0px 15px 15px 0px rgba(105, 52, 247, 0.25);
}

.chat__box__header {
  background-color: var(--secondary-color) !important;
  padding: 18px 30px;
}

.chat__box__header-left {
  gap: 10px;
}

.chat__profile img {
  height: 64px;
}

.chat__header-content a {
  font-size: 15px;
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 10%;
  line-height: 17px;
  display: inline-block;
  margin-bottom: 5px;
}

.chat__header-content p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
  margin: 0;
  font-size: 14px;
  letter-spacing: 10%;
  line-height: 18px;
}

.chat__header-content p span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat__box-sidebar {
  background-color: var(--lavender-color);
  padding: 15px 10px 5px 10px;
  width: 236px;
  flex: 0 0 auto;
  border-right: 1px solid var(--light-gray-color);
  min-height: 700px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}

.chat__box-user {
  margin-top: auto;
}

.chat__box-user a {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--gunmetal-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.chat__box-sidebar-header {
  margin-bottom: 20px;
  gap: 10px;
}

.chat__box-sidebar-title {
  color: var(--secondary-gray);
  font-size: 20px;
  line-height: 22px;
}

.chat__box-sidebar-toggle {
  width: 30px;
  height: 30px;
}

.chat__box-sidebar-toggle img {
  width: 25px;
}

.chat__box-sidebar.hide {
  width: 55px;
}

.chat__box-sidebar.hide .chat__box-sidebar-title {
  display: none;
}

.chat__box-sidebar.hide .chat__sidebar-buttons {
  display: none;
}

.chat__box-sidebar.hide .chat__box-user-label {
  display: none;
}

.chat__box-sidebar.hide .chat__box-user a {
  justify-content: center;
}

.chat__btn {
  display: inline-block;
  width: 100%;
}

.chat__btn img {
  height: 40px;
  width: 100%;
}

.chat__help-btn {
  background-color: #6934f74d;
  color: #18191c80;
}

.chat__actions-btns {
  gap: 25px;
}

.chat__btn--secondary {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gunmetal-dark);
}

.chat__btn--secondary:hover {
  text-decoration: underline;
}

.chatbox__right {
  width: 100%;
}

.chatbox__full-height {
  height: calc(100vh - 167px);
}

.chatbox__field {
  height: calc(700px - 174px);
  padding: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chatbox__field::-webkit-scrollbar {
    display: none;
}

.chat__msg {
  display: flex;
  gap: 5px;
  align-items: end;
}

.chat__msg:not(:last-child) {
  margin-bottom: 10px;
}

.chat__msg--outgoing {
  justify-content: end;
}

.chat__msg--outgoing .chat__msg-body p {
  color: #fff;
}

.chat__msg--incoming .chat__avatar {
  width: 48px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.chat__msg-body {
  min-height: 46px;
  max-width: 470px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 32px;
  padding-block: 8px;
  position: relative;
  background-color: var(--primary-color);
}

.chat__msg-body p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #18191c;
  line-height: 20px;
  word-break: break-word;
  hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
}

.chat__msg-shape {
  width: 16px;
}

.chat__msg--outgoing .chat__msg-body {
  background-color: var(--secondary-color);
}

.chat__actions {
  padding: 12.5px 25px;
  border-top: 1px solid var(--light-gray-color);
}

.chat__actions-title {
  margin-bottom: 15px;
}

.chat__actions-title h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
  line-height: 16px;
}

.chat__input {
  padding: 20px 25px;
  gap: 34px;
}

.chat__input input {
  width: 100%;
  text-align: center;
  border: 1px solid var(--secondary-color);
  background-color: var(--pearl-color);
  font-size: 12px;
  font-weight: 600;
  color: var(--sonic-silver-color);
  padding: 9px;
}

input::placeholder {
  color: var(--sonic-silver-color);
}

.chat__send-btn {
  width: 128px;
  flex: 0 0 auto;
}

.chat__send-btn img {
  height: 40px;
  transition: all 0.3s ease-in-out;
}

/* ----------------------------- HERO AREA END ------------------------ */

/* ----------------------------- FOOTER AREA START ------------------------ */
.footer {
  padding-block: 38px;
  background-color: var(--black-color);
}

.footer__main-wrapper {
  padding-bottom: 40px;
  border-bottom: 4px solid var(--secondary-color);
  margin-bottom: 40px;
}

.footer__main-wrapper>.row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 40px;
}

.footer__title {
  font-size: 64px;
  line-height: 1.5;
  letter-spacing: 10%;
}

.footer__social-link {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  font-size: 14px;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-link:hover {
  background-color: #fff;
}

.footer__widgets .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.footer__widgets {
  background-color: var(--blackish-color);
  padding: 20px;
  border: 2px solid var(--primary-color);
}

.footer__widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.footer__widget-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  width: 30px;
  height: 30px;
}

.footer__widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__widget-list li {
  margin-bottom: 12px;
}

.footer__widget-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lavender-light-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  padding: 10px;
}

.footer__widget-link:hover {
  color: var(--primary-color);
}

.footer__widget-link img {
  max-width: 20px;
}

.footer__contact-block {
  background-color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  padding: 20px;
  min-height: 362px;
}

.footer__contact-block .footer__widget-icon {
  border-color: var(--black-color);
  background-color: var(--primary-color);
}

.footer__contact {
  padding: 10px 8px 0;
  margin-bottom: 10px;
}

.footer__contact:last-child {
  margin-bottom: 0px;
}

.footer__contact-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lavender-light-color);
  margin-bottom: 2px;
  line-height: 1.5;
}

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

.footer__contact-icon img {
  max-width: 20px;
}

.footer__contact-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
  line-height: 1.5;
}

.footer__contact-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
  line-height: 16px;
  display: inline-block;
}

.footer__contact-link:hover {
  text-decoration: underline;
}

.footer__social-block {
  gap: 10px;
}

.footer__metrics-wrapper {
  background-color: var(--blackish-color);
  border: 4px solid var(--secondary-color);
  padding: 15px;
  margin-bottom: 40px;
}

.footer__metrics-wrapper .row {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

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

.footer__metrics-value {
  font-size: 28px;
  letter-spacing: -4%;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px 0;
}

.footer__metrics-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--lavender-light-color);
  line-height: 18px;
  margin: 0;
}

.footer__metrics-flag {
  min-height: 38px;
  display: inline-block;
}

.footer__copyright-text p {
  gap: 20px;
  color: var(--lavender-light-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.footer__copyright-icon {
  width: 24px;
}

/* ------------------------------ FOOTER AREA END ------------------------ */

/* sign up modal start */

.theme-modal .modal-dialog {
  max-width: 864px;
}

.theme-modal .modal-content {
  background-color: var(--black-color);
  border: 2px solid var(--secondary-color);
}

.modal-title {
  font-size: 40px;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.signup__options {
  max-width: 300px;
  margin: 0 auto 20px;
  gap: 14px;
}

.form__input {
  width: 100%;
}

.form__input-field {
  height: 46px;
  padding-inline: 26px;
  color: #fff;
  background-color: var(--black-color);
}

.dark .form__input-field {
  color: var(--black-color);
  background: #fff;
}

.form__input-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-color);
  margin-bottom: 5px;
  letter-spacing: 10%;
}

.dark .form__input-label {
  color: #b6b7b8;
}

.form__input-msg {
  font-size: 10px;
  line-height: 1.5;
  color: var(--lavender-light-color);
  margin-top: 5px;
  letter-spacing: 10%;
}

.form__input-shape {
  pointer-events: none;
}

.form__input-field::placeholder {
  color: inherit;
  opacity: 0.5;
}

.form__input-optional-text {
  font-size: 12px;
  line-height: 1.5;
  color: #B9B9B9;
  margin-top: 5px;
}

.form__footer-text {
  max-width: 332px;
  font-size: 12px;
  line-height: 1.5;
}

.form__divider {
  width: 150px;
  height: 1px;
  background-color: #e7fee9;
}

.theme-modal .modal-body {
  min-height: 450px;
}

.modal__close-btn {
  top: 14px;
  left: 20px;
}

.modal__close-btn img {
  width: 32px;
}

/* sign up modal end */

/* signup section start */

.signup {
  background-color: var(--black-color);
}

.signup__wrapper {
  padding-top: 187px;
  padding-bottom: 24px;
  gap: 105px;
}

.signup__logo img {
  width: 278px;
}

.form__input {
  width: 100%;
}

.form__title {
  font-size: 26px;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.form__body {
  width: 100%;
}

.signup__shape-1 {
  width: 174px;
  top: 35px;
  right: -80px;
  transform: rotate(45deg);
}

.signup__shape-2 {
  width: 174px;
  bottom: 260px;
  left: -118px;
  transform: rotate(-28deg);
}

.form .theme-btn:hover {
  background-color: #fff;
  color: var(--black-color);
}

/* signup section end */

/* game section start */
.game {
  background-color: var(--black-color);
  padding-bottom: 30px;
}

.game__container {
  max-width: 1440px;
}

.game__title {
  font-size: 26px;
  top: 45px;
}

.game__score {
  font-size: 26px;
  top: 86px;
  right: 0;
}

.game__placeholder {
  min-height: 360px;
}

/* game section end */

/* dark mode */
.dark body {
  background-color: var(--black-color);
}

.dark .header__inner {
  background-color: #fff;
}

.dark .header__menu-list a {
  color: var(--black-color);
}

.dark .header__menu-list a:hover {
  color: var(--secondary-color);
}

.dark .hero__content h1 {
  color: var(--primary-color);
}

.dark .hero__content h4 {
  color: #fff;
}

.dark .hero__content p {
  color: #fff;
}

.dark .hero__content p a {
  color: var(--primary-color);
}

.dark .mobile__menu {
  background-color: #fff;
}

.dark .mobile__menu::before {
  background-color: #fff;
}

.dark .mobile__menu-list a {
  color: var(--black-color);
}

.dark .theme-btn:not(.chat__action-btn, .chat__send-btn, .chat__help-btn):hover {
  opacity: 0.5;
}

.lang {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}.dark .lang {
	color: #18191C;
}
.dark .lang {
	color: #18191C;
}
.new-hero__btns:last-child {
  border: 0;
}

.dark .new-hero__btns {
  color: #fff;
}

.new-hero__btns {
  padding-inline: 19px;
  background: transparent;
  gap: 7px;
  color: #18191c;
  font-size: 13px;
  font-weight: 600;
  line-height: 131.105%;
  border-right: 1px solid #85fb93;
  height: 40px;
}

.chatbox__field-primary {
  height: auto;
}

.dark .chatbox__dark {
  border: 4px solid #6934f7 !important;
  background: #2b2d32;
  /*! box-shadow: 0 9.5px 50px 0 rgba(105, 52, 247, 0.15), 0 12.25px 19px 0 rgba(105, 52, 247, 0.14), 0 13.5px 16px 0 rgba(105, 52, 247, 0.10), 22px 12px 31.1px 0 rgba(105, 52, 247, 0.32), -12px 3px 17.1px 0 rgba(105, 52, 247, 0.35); */
  border-radius: 0;
  /*! margin-top: 52px; */
  background: #2b2d32;
  border-color: #2b2d32;
  box-shadow: 2px 4px 12.2px 2px rgba(133, 251, 147, 0.2), -2px -4px 12.2px 2px rgba(105, 52, 247, 0.2);
}

.dark .chatbox__dark .chat__actions {
  padding: 20px;
  padding-bottom: 16px;
  border-color: #27292e;
  /*! border-bottom: 0; */
}

.dark .chatbox__dark .chat__action-btn {
  width: 23.2%;
  height: 46px;
}

.dark .chatbox__dark .chat__action-btn span {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.chat__send-btn-dark {
  background: transparent;
  border: 0;
}
.dark .chatbox__area .chatbox__dark {
  background: #18191c !important;
  border-color: #18191c !important;
}
/* .chat__send-btn-dark img {
  filter: brightness(0000);
} */
.dark .chat__send-btn-dark img {
  filter: unset;
}


.chat__send-btn-dark.theme-btn {
  background: #6934f7;
  height: 46px;
}

.dark .chat__send-btn-dark.theme-btn span img {
  width: 8px;
}

.dark .chat__send-btn-dark.theme-btn span {
  width: 24px;
}

.chat__input-dark {
  gap: 10px;
  padding: 20px;
  /*! padding-top: 0; */
  border-top: 1px solid #35383e;
  /*! flex-wrap: wrap; */
}

.dark .chat__input input {
  background: #18191c;
  color: #fff !important;
  border-color: #6934f7;
  height: 46px;
}

.chat__input-btn {
  gap: 10px;
  width: 15%;
  justify-content: space-evenly;
}

.px-55 {
  padding-inline: 55px;
}

.p-10 {
  padding: 10px;
}

.dark .bg-theme-drak {
  background: #18191c;
}

.py-50 {
  padding-block: 50px;
}

.user-chatbox {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-chatbox img {
  max-width: 22px;
}

.chat__actions-dark a {
  width: 198px !important;
}

.dark .chatbox__area .chat__input-dark input {
  background: #2b2d32;
  width: 84%;
}

/* .dark .chat__send-btn {
  width: 74%;
} */

.chatbox__dark-right {
  width: 0%;
  background: #18191c;
  padding: 20px 0;
  transition: 0.3s;
  transform: translateX(-400px);
  background: #2b2d32;
  border-right: 1px solid #474a53;
}

.chatbox__area .chatbox__dark {
  width: 100%;
  box-shadow: unset;
  margin-left: auto;
  transition: 0.3s !important;
  border-radius: 0 !important;
}

.chatbox-dark-right--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbox-dark-right--header h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.chatbox__dark-right-menu li a {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 6px;
  color: #d3d3d3;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.chatbox__dark-right-menu {
  border-bottom: 1px solid #757678;
  margin-bottom: 10px;
}

.chatbox__dark-right-btn a {
  color: #d3d3d3;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.chatbox__dark-right-btn a:hover {
  color: #fff;
  font-weight: 700;
}

.chatbox__area.active .chatbox__dark-right {
  transform: translateX(0);
  width: 17.8%;
  padding: 20px;
}

/* contact section start */
.contact__user {
  gap: 10px;
}

.contact__user-text span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: block;
  margin-bottom: 10px;
}

.contact__user-text p {
  color: #b9b9b9;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.contact__user-text {
  margin-bottom: 10px;
}

.contact__user-btn a {
  border: 3px solid #6934f7;
  background: #1d1e21;
  width: 170px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
}

.contact__user-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact__user-btn a.green {
  border: 3px solid #85fb93;
  background: #1d1e21;
  color: #85fb93;
  width: 96px;
}

.contact__header {
  /*! border: 1px solid #6934F7; */
  /*! margin-bottom: 10px; */
  background: #18191c;
}

.contact__tab-header {
  border: 0;
  background: #18191c;
  box-shadow: 2px 4px 12.2px 2px rgba(133, 251, 147, 0.2), -2px -4px 12.2px 2px rgba(105, 52, 247, 0.2);
  padding: 1px;
  margin-bottom: 10px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(105, 52, 247, 1) 0%, rgba(133, 251, 147, 1) 50%);
}

.single-input input:focus, .single-input select:focus {
  border: 1px solid #6934f7;
  background: #1f1f1f;
  box-shadow: 0 0 6.2px 0 var(--Pixel-Purple, #6934f7);
}

.contact__header-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  padding-left: 0;
}

.contact__user-content {
  padding: 10px;
  padding-left: 0;
}

.contact__header-btn a {
  font-weight: 600;
}

.theme-btn--red {
  background: #ff6b6b;
}

.contact__tab ul {
  border: 1px solid #b9b9b9;
  background: #18191c !important;
  border-radius: 0 !important;
  margin-bottom: 10px !important;
}

.contact__tab ul li button {
  padding: 10px 15px;
  background: transparent !important;
  border-radius: 0 !important;
  color: #fff;
  text-align: center;
  font-family: Tektur;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.contact__tab ul li button.active {
  color: #85fb93 !important;
  background: #6934f7 !important;
  border-color: #6934f7 !important;
}

.contact__tab ul li button:hover, .contact__tab ul li button:active {
  border-color: transparent !important;
}

.contact__form {
  padding: 20px 25px;
  padding-bottom: 10px;
  border: 1px solid #b9b9b9;
  background: #18191c;
}

.contact__from-title h4 {
  color: #85fb93;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

.contact__from-title p {
  font-size: 12px;
  color: #e1c7ff;
  line-height: 18px;
  margin-bottom: 0;
}

.contact__from-title {
  margin-bottom: 30px;
}

.contact__form-newsletter {
  max-width: 966px;
}

.single-input-wrap label {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  display: block;
  margin: 0;
}

.single-input {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-input input, .single-input select {
  width: 100%;
  border: 1px solid #2a2a2a;
  background: #1f1f1f;
  height: 30px;
  padding: 0 5px;
  color: #b9b9b9;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.single-input input {
  padding-left: 35px;
}

.single-input-wrap {
  margin-bottom: 30px;
}

.single__input-wraper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.single__input-wraper .single-input-wrap {
  width: 49.5%;
}

.single__input-wraper .single-input input {
  padding-left: 5px;
}

.single-input span {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.title-mid {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
}

.title-mid p {
  color: #b9b9b9;
}

.title-last {
  margin-bottom: 20px;
}

.title-last p {
  color: #b9b9b9;
}

.title-last h4 {
  color: #fff;
}

.nice-select {
  border: 1px solid #2a2a2a;
  background: #1f1f1f;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  color: #b9b9b9;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  padding: 0 5px;
}

.nice-select:after {
  background-image: url(../img/chevron-down.svg);
  border: 0;
  width: 20px;
  height: 20px;
  transform: rotate(0) !important;
  top: 34%;
}

.list {
  width: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

.data__management {
  border-top: 1px solid #282828;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single__data {
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.data__item {
  width: 85.4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.data__btn {
  width: 11.8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.data__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.data__text h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

.data__text p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.data__number span {
  border-radius: 5px;
  background: #85fb93;
  padding-inline: 4px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.contact {
  padding-bottom: 30px;
}

.price__info {
  border-top: 1px solid #232324;
  padding-top: 10px;
}

.price__info-banner {
  background: linear-gradient(91deg, #6934f7 14.27%, #85fb93 85.73%), #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.price__info-banner-left h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price__info-banner-left h4 span {
  border-radius: 5px;
  background: #85fb93;
  padding: 0 4px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.price__info-banner-text h4 {
  color: #18191c;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

.price__info-banner-text p {
  color: #18191c;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.price__info-banner-left p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.price__info-wraper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.price__info-box {
  width: 32.7%;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.price__info-box img {
  margin-bottom: 10px;
}

.price__info-box h4 {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

.price__info-box span {
  color: #85fb93;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  display: block;
}

.price__info-item ul {
  padding: 0;
  border: 0;
}

.price__info-item li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 10px;
  color: #b9b9b9;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.contact__form {
  margin-bottom: 10px;
}

.price__list {
  border-top: 1px solid #252626;
  padding-top: 10px;
}

.peice__item {
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.price__item-card {
  display: flex;
  gap: 10px;
}

.price__card-icon img {
  max-width: 20px;
}

.price__card-text h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

.price__card-text p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.price__item-text p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.price__item-text span {
  color: #85fb93;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  display: block;
}

.price__list-btn {
  display: flex;
  justify-content: end;
}

.dashbord {
  border: 1px solid #b9b9b9;
  background: #18191c;
  padding: 28px 57px;
}

.dashbord__title {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}

.dashbord__title--img span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #85fb93;
}

.dashbord__title-text h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2px;
  margin: 0;
}

.dashbord__title-text p {
  color: #e1c7ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.dashbord__wraper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 28px;
}

.dashbord__card {
  width: 32.6%;
  border: 2px solid #2b2d32;
  background: #1a1a1a;
  padding: 16px 19px;
}

.dashbord__card-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}

.dashbord__card-img span {
  background: #6934f7;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashbord__card-text h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.3px;
  margin: 0;
}

.dashbord__card-text p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.8px;
  margin: 0;
}

.dashbord__card a {
  color: #85fb93;
  font-size: 13px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashbord__chart-btn {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dashbord__chart-btn a {
  border: 3px solid #85fb93;
  background: #1d1e21;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-inline: 15px;
  color: #85fb93;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s;
}

.dashbord__chart-btn a:hover {
  background: #6934f7;
  border-color: #6934f7;
  color: #fff;
}

.dashbord__chart-img img {
  width: 100%;
}

.dashbord__chart-img {
  margin-bottom: 28px;
}

.dashbord__chart-add {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 28px;
}

.dashbord__chart-add a {
  color: #85fb93;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashbord__chart-add a:nth-child(2) {
  color: #e1c7ff;
}

.dashbord__chart-add a:nth-child(3) {
  color: #ff6b6b;
}

.dashbord__section-title {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.dashbord__section-title h3 {
  color: #85fb93;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2px;
  margin: 0;
}

.dashbord__progress--wraper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.single-progress {
  width: 49.5%;
  border: 2px solid #3f1f94;
  background: #1a1a1a;
  padding: 13px 21px;
}

.progress__title {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.progress__title span {
  background: #6934f7;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress__title--text h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.3px;
  margin: 0;
}

.progress__title--text p {
  color: #e1c7ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.progress__top--text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress__top--text span {
  color: #85fb93;
  font-size: 13px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.3px;
  display: block;
  height: 25px;
  display: flex;
  align-items: center;
}

.progress {
  border: 1px solid #6934f7;
  background: #1a1a1a;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.progress span {
  background: linear-gradient(90deg, #6934f7 0%, #85fb93 100%);
  height: 100%;
  width: 81%;
}

.single-progress.warning span {
  color: #ff6b6b;
}

.score__box {
  margin-top: 10px;
  border: 1px solid #b9b9b9;
  background: #18191c;
  padding: 22px;
}

.score__title {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.score__title h3 {
  color: #fff;
  font-family: Tektur;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.score__title span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #85fb93;
}

.score__top-progress {
  text-align: center;
  margin-bottom: 24px;
}

.score__top-progress-img {
  margin-bottom: 18px;
}

.score__top-progress-text h4 {
  color: #ff8c42;
  font-family: Tektur;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.score__top-progress-text p {
  color: #e1c7ff;
  font-family: Tektur;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.score__progress-wraper {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  /*! align-items: center; */
  gap: 15px;
}

.score__single-progress {
  border: 2px solid #2b2d32;
  background: #1a1a1a;
  padding: 10px;
  width: 32.4%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.score__progress-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.score__progress-left-content {
  width: 65%;
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.score__progress-left-content span {
  width: 30px;
}

.score__progress-title {
  width: 81%;
}

.score__progress-title h4 {
  color: #fff;
  font-family: Tektur;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.4px;
  margin: 0;
}

.score__progress-title p {
  color: #e1c7ff;
  font-family: Tektur;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.score__progress-right-content {
  text-align: right;
}

.score__progress-right-content span {
  color: #85fb93;
  text-align: right;
  font-family: Tektur;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: block;
}

.score__progress-right-content p {
  color: #85fb93;
  font-family: Tektur;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.score__last-content p {
  color: #e1c7ff;
  font-family: Tektur;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 13px;
  text-align: center;
}

.score__last-content ul {
  padding: 0;
  margin: 0 !important;
  border: 0;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.score__last-content li {
  color: #85fb93;
  font-family: Tektur;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
}

.score__last-content li:nth-child(2) {
  color: #ffd93d;
}

.score__last-content li:nth-child(3) {
  color: #ff8c42;
}

.score__last-content li:nth-child(4) {
  color: #ff6b6b;
}

.score__progress {
  border: 1px solid #6934f7;
  background: #2b2d32;
  height: 6px;
  display: flex;
  align-items: center;
  position: relative;
}

.score__progress img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.score__progress span {
  background: #85fb93;
  width: 70%;
  height: 100%;
}

.score__single-progress:nth-child(2) .score__progress-right-content span {
  color: #ffd93d;
}

.score__single-progress:nth-child(2) .score__progress-right-content p {
  color: #ffd93d;
}

.score__single-progress:nth-child(3) .score__progress-right-content p {
  color: #ffd93d;
}

.score__single-progress:nth-child(3) .score__progress-right-content span {
  color: #ffd93d;
}

.score__single-progress:nth-child(4) .score__progress-right-content span {
  color: #ff8c42;
}

.score__single-progress:nth-child(4) .score__progress-right-content p {
  color: #ff8c42;
}

.score__single-progress:nth-child(5) .score__progress-right-content p {
  color: #ff6b6b;
}

.score__single-progress:nth-child(5) .score__progress-right-content span {
  color: #ff6b6b;
}

.score__single-progress:nth-child(2) .score__progress span {
  background: #ffd93d;
}

.score__single-progress:nth-child(3) .score__progress span {
  background: #ffd93d;
}

.score__single-progress:nth-child(4) .score__progress span {
  background: #ff8c42;
}

.score__single-progress:nth-child(5) .score__progress span {
  background: #ff6b6b;
}

/* contact section end */

/* plan page start */
.plan__section-title {
  text-align: center;
  margin-bottom: 34px;
}

.plan__section-title h3 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 0;
}

.dark .plan__section-title p {
  color: #fff;
}

.dark .plan__section-title h3 {
  color: #85fb93;
}

.plan__section-title p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 1.6px;
  margin: 0;
}

.plan {
  padding-top: 10px;
  padding-bottom: 35px;
}

.plan__wraper {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single__plan {
  width: 49%;
  border: 1px solid #b9b9b9;
  background: #1a1a1a;
  /*! padding: 10px; */
  position: relative;
}

.plan__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.plan__logo span {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.2px;
  display: block;
}

.plan__title {
  text-align: center;
  margin-bottom: 14px;
}

.plan__title h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 3.2px;
  margin-bottom: 24px;
}

.plan__title p {
  color: #e1c7ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.2px;
  margin: 0;
}

.plan__list {
  margin-bottom: 16px;
}

.plan__list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan__list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.2px;
}

.plan__list ul li img {
  max-width: 20px;
}

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

.plan__start-btn a {
  color: #85fb93;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: block;
}

.plan__upgrate a {
  display: inline-flex !important;
  margin: auto;
  margin-bottom: 14px;
}

.plan__upgrate {
  text-align: center;
}

.plan__upgrate p {
  color: #b9b9b9;
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1px;
  margin: 0;
}

.single__plan:nth-child(2) {
  border: 0;
  background: #18191c;
  box-shadow: 2px 4px 12.2px 2px rgba(133, 251, 147, 0.2), -2px -4px 12.2px 2px rgba(105, 52, 247, 0.2);
  /*! background: linear-gradient(180deg,rgba(105, 52, 247, 1) 0%, rgba(133, 251, 147, 1) 50%); */
  padding: 2px;
}

.single__plan:nth-child(2):before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(105, 52, 247, 1) 0%, rgba(133, 251, 147, 1) 50%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.plan__content {
  padding: 10px;
  position: relative;
  background: #18191c;
  /*! border: 2px solid transparent; */
}

.plan__title h4 {
  color: #85fb93;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Tektur;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3.2px;
}

.plan__title h4 sub {
  color: #fff;
  font-family: Tektur;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.4px;
  bottom: 0;
  right: 9px;
}

/* plan page end */

/* login section start */
.login {
  position: relative;
  overflow: hidden;
}

.login-shape1 {
  position: absolute;
  left: 0;
  max-height: 196px;
  top: 100px;
}

.login-shape2 {
  position: absolute;
  right: -100px;
  width: 360px;
  bottom: 44px;
  rotate: 30deg;
}

.login__wraper {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login__wraper .plan__section-title {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.login__btn {
  max-width: 300px;
  margin: 0 auto;
}

.login__btn button {
  margin-bottom: 10px;
}

.login__devaidor {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 352px;
  margin-inline: auto;
  width: 100%;
}

.dark .login__devaidor span {
  color: #fff;
  background: #18191c;
}

.login__devaidor span {
  color: #fff;
  text-align: center;
  font-family: Tektur;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: block;
  position: relative;
  z-index: 9;
  background: #fff;
  padding: 0 15px;
  color: #4b5563;
}

.login__devaidor:before {
  position: absolute;
  content: "";
  background-color: var(--blackish-color);
  height: 1px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.dark .login__devaidor:before {
  background-color: #e7fee9;
}

.login__btn button span {
  gap: 10px;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 300px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.login--create-account .login__form {
  gap: 20px;
}

.login__note {
  max-width: 331px;
  margin: 0 auto;
  text-align: center;
}

.login__note p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.dark .login__note p {
  color: #fff;
}

.pass__box {
  border: 1px solid #b9b9b9;
  background: #18191c;
  padding: 20px 25px;
}

.pass__box p {
  color: #e1c7ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.pass__box ul li {
  color: #85fb93;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.pass__box ul li {
  list-style: disc;
}

.pass__box ul {
  padding-left: 15px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.dark .Send-email {
  color: #85fb93;
}

.Send-email {
  color: #6934f7;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 22px;
}

.chat__send-btn-dark.white img {
  filter: brightness(000);
}

.light {
  color: #fff;
}

.contact .chatbox__dark {
  margin-top: 0;
}

.light img {
  filter: brightness(999);
}

/* login section end */

.contact__from-title.title-last label span img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact__from-title.title-last label {
  position: relative;
  display: block;
  cursor: pointer;
}

.checkbox-icon .checked {
  opacity: 0;
}

.custom-checkbox input:checked~.checkbox-icon .checked {
  opacity: 1;
}

.custom-checkbox input:checked~.checkbox-icon .unchecked {
  opacity: 0;
}

.chatbox__area {
  height: calc(100vh - 69px);
}

.chatbox__area .chatbox__dark .chatbox__field {
  flex: 1 1 auto;
}

.theme-btn img {
  width: 14px;
}

.theme-btn span img {
  width: auto;
}

.header__btn img {
  width: 9.5px;
}

.contact__from-title.title-last label span img {
  max-width: 20px;
}

.price__info-item li a img {
  max-width: 20px;
}


.theme-toggle__label {
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.theme-toggle__label img {
  width: 24px;
  transition: all .3s;
}
.theme-toggle__label .sun-icon {
  opacity: 0;
}
.dark .theme-toggle__label .sun-icon {
  opacity: 1;
}
.dark .theme-toggle__label .moon-icon {
  opacity: 0;
}
.dark .lang {
  color: #000;
}

.logo-dark {
  display: none;
}

.dark .logo-light {
  display: none;
}

.dark .logo-dark {
  display: block;
}

.dark .light-none {
  display: flex !important;
}

.dark-none {
  display: flex !important;
}

.light-none {
  display: none !important;
}

.dark .dark-none {
  display: none !important;
}

.dark-block {
  display: none;
}

.light-block {
  display: block;
}

.dark .dark-block {
  display: block;
}

.dark .light-block {
  display: none;
}



.dark-flex {
  display: none !important;
}

.light-flex {
  display: flex !important;
}

.dark .dark-flex {
  display: flex !important;
}

.dark .light-flex {
  display: none !important;
}

.dark {
  background: #18191C;
}

.pixel-corners-bot {
  will-change: contents;
  clip-path: polygon(
    0px 0px,
    0px 0px,
    0px 0px,
    0px 0px,
    0px 0px,
    0px 0px,
    0px 0px,
    0px 0px,
    0px 100%,
    calc(100% - 16px) 100%,
    calc(100% - 16px) calc(100% - 4px),
    calc(100% - 8px) calc(100% - 4px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 4px) calc(100% - 8px),
    calc(100% - 4px) calc(100% - 16px),
    100% calc(100% - 16px),
    100% 16px,
    calc(100% - 4px) 16px,
    calc(100% - 4px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 4px,
    calc(100% - 16px) 4px,
    calc(100% - 16px) 0px,
    16px 0px,
    16px 4px,
    8px 4px,
    8px 8px,
    8px 8px,
    8px 8px,
    4px 8px,
    4px 16px,
    0px 16px
  );
}

.pixel-corners-user {
  will-change: contents;
  clip-path: polygon(
    0px calc(100% - 16px),
    4px calc(100% - 16px),
    4px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 4px),
    16px calc(100% - 4px),
    16px 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 16px,
    calc(100% - 4px) 16px,
    calc(100% - 4px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 4px,
    calc(100% - 16px) 4px,
    calc(100% - 16px) 0px,
    16px 0px,
    16px 4px,
    8px 4px,
    8px 8px,
    8px 8px,
    8px 8px,
    4px 8px,
    4px 16px,
    0px 16px
  );
}

.pixel-corners {
  will-change: contents;
  padding: 0 25px;
  clip-path: polygon(
    0px calc(100% - 16px),
    4px calc(100% - 16px),
    4px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 4px),
    16px calc(100% - 4px),
    16px 100%,
    calc(100% - 16px) 100%,
    calc(100% - 16px) calc(100% - 4px),
    calc(100% - 8px) calc(100% - 4px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 4px) calc(100% - 8px),
    calc(100% - 4px) calc(100% - 16px),
    100% calc(100% - 16px),
    100% 16px,
    calc(100% - 4px) 16px,
    calc(100% - 4px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 4px,
    calc(100% - 16px) 4px,
    calc(100% - 16px) 0px,
    16px 0px,
    16px 4px,
    8px 4px,
    8px 8px,
    8px 8px,
    8px 8px,
    4px 8px,
    4px 16px,
    0px 16px
  );
}

.pixel-corners-header {
  clip-path: polygon(
    0px calc(100% - 16px),
    4px calc(100% - 16px),
    4px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 8px),
    8px calc(100% - 4px),
    16px calc(100% - 4px),
    16px 100%,
    1356px 531.85%,
    calc(100% - 16px) calc(100% - 4px),
    calc(100% - 8px) calc(100% - 4px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 4px) calc(100% - 8px),
    calc(100% - 4px) calc(100% - 16px),
    100% calc(100% - 16px),
    100% 16px,
    calc(100% - 4px) 16px,
    calc(100% - 4px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 8px,
    calc(100% - 8px) 4px,
    calc(100% - 16px) 4px,
    calc(100% - 16px) 0px,
    16px 0px,
    16px 4px,
    8px 4px,
    8px 8px,
    8px 8px,
    8px 8px,
    4px 8px,
    4px 16px,
    0px 16px
  );
}
