html,
body {
  width: 100%;
  height: 100%;
  display: block;
}

body {
  margin: 0;
  color: #000000;
  font-family: Poppins, Helvetica, Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--white);
}

.site-wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  grid-template-columns: 100%;
}

.error-page-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.upgradeWrapper {
  position: relative;
}

body.home-page {
    background-color: var(--blue);
}

body.menu-open {
    overflow: hidden;
}

.menu-open .new-project-info {
  display: none;
}

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

span {
    color: #666;
}

.dark span {
    color: var(--white);
}

.dark span.green-color {
    color: var(--success);
}

.dark span.red-color {
    color: var(--error);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

span,
p,
a,
button,
input {
  font-family: "Roboto", sans-serif;
}

.mobile .nav-item {
  margin: 0;
}

.check-label {
  display: inline-block;
  vertical-align: top;
  margin-right: 3%;
}

.check-input {
  display: inline-block;
  vertical-align: top;
}

#allAccountFriendsDetailTable th {
  white-space: nowrap;
}

.CoinsGuruTable {
  width: 80%;
  margin: 0 auto;
}

.scan-less-than {
  width: 100px;
}

.header-button {
  margin-left: 5px;
}

.watchList-button {
  background-color: #eee;
}

.hide,
.fade {
  display: none !important;
}

.fade.show {
  display: block !important;
}

.full-width {
  width: 100% !important;
}

.fade.active {
  display: block !important;
}

.table-score-wrapper {
  display: flex;
  flex-direction: row;
}

.table-score-wrapper p {
  white-space: nowrap;
}

.blue-color {
  color: #0544fd;
}

.red-color {
  color: var(--error);
}

.green-color {
  color: var(--success);
}

.diff-value {
    margin-left: 5px;
}

.description-text {
  color: var(--grey-800);
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  height: auto;
  display: inline-block;
  min-width: 150px !important;
}

.founders-of-col {
  height: auto;
  min-width: 100px !important;
}

.column-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  height: auto;
  display: inline-block;
}

.user-twitter-name {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--grey-800);
}

.info-icon {
  cursor: pointer;
  position: relative;
}

.info-icon svg {
  color: var(--black);
}

.dark .info-icon svg {
  color: var(--white);
}

.info-icon .info-icon-content {
  position: absolute;
  left: 0;
  top: -155%;
  padding: 8px 16px;
  background-color: var(--black);
  transform: translateX(-42%);
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  display: none;
  z-index: 1;
}

.coins-page .info-icon .info-icon-content {
  transform: translateX(-47%);
}

.info-icon .info-icon-content:after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  background-color: var(--black);
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) rotate(45deg);
}

.info-icon:hover .info-icon-content {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.rounded-circle {
  display: inline-block;
}

.hide-star-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hide-star {
  width: 20px!important;
  height: 20px!important;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--grey-300);
}

.rounded-circle.hide-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.name-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.top-projects-page .name-wrapper,
.dataTable .name-wrapper {
  flex-direction: row;
}

.top-projects-page .hide-info-row td {
  padding-right: 10px;
}

.top-projects-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.eyes {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: row;
  margin-left: 10px;
  gap: 3px;
}

.eyes .eye {
  height: 100%;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ccc;
  position: relative;
}

.eye-inside {
  width: 12px;
  height: 12px;
  background: linear-gradient(179deg, #55290a, #e49c60);
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 10px;
  overflow: hidden;
}

.eye-inside::before,
.eye-inside::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
}

.eye-inside::before {
  height: 60%;
  width: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
}

.eye-inside::after {
  height: 20%;
  width: 20%;
  left: 3px;
  top: 2px;
  opacity: 0.7;
  background: #fff;
}

.contact-us-page {
  padding: 32px 0 104px;
}

.contact-us-page .title-block {
  margin-bottom: 40px;
}

.contact-us-page .title-block h2 {
  font-family: "Poppins";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 8px;
}

.contact-us-page .title-block p {
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.contact-us-page .contacts-block ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.contact-us-page .contacts-block ul li p {
  opacity: 0.5;
}

.contact-us-page .contacts-block {
  margin-bottom: 40px;
}

.contact-us-page .options-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 17px;
}

.contact-us-page .option-wrapper {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 40px 56px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
}

.dark .contact-us-page .option-wrapper {
  background-color: var(--dark-black);
}

.contact-us-page .option-wrapper strong {
  font-family: "Poppins";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

.contact-us-page .option-wrapper p {
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.hide-name {
  display: flex;
  flex-direction: column;
}

.hide-text-wrapper {
  pointer-events: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hide-text {
  width: 100%;
  filter: blur(5px);
}

.table-footer .upgrade-to-pro-wrap {
  width: 220px;
  position: absolute;
  top: -105px;
}

.unauthorized .table-footer .followed-by-list-footer .upgrade-to-pro-wrap {
  top: -250px;
}

/* .content-wrapper table.dataTable.hide-table tbody tr:last-child:hover,
.content-wrapper table.dataTable.hide-table tbody tr:nth-last-child(2):hover,
.content-wrapper table.dataTable.hide-table tbody tr:nth-last-child(3):hover,
.content-wrapper table.dataTable.friend-hide-table tbody tr:first-child:hover,
.content-wrapper table.dataTable.friend-hide-table tbody tr:nth-child(2):hover {
    background-color: transparent;
} */

table.dataTable tbody td {
  padding: 8px 20px;
}

.d-flex-r {
  display: flex;
  flex-direction: row !important;
  align-items: center;
}

.d-flex-c {
  display: flex;
  flex-direction: column !important;
  align-items: center;
}

.j-s-b {
  justify-content: space-between;
}

.al-st {
  align-items: flex-start;
}

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

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

.wrapper {
  flex: 1;
}

.content-wrapper.table-page {
  padding-top: 24px;
  padding-bottom: 30px;
}

.content-wrapper.table-page h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
  width: 100%;
  text-align: center;
}

.content-wrapper {
  width: 100%;
  box-sizing: border-box;
  max-width: 1136px;
  margin: 0 auto;
}

/* Горизонтальный отступ для контента страниц на мобильных.
   Применяется только к КОРНЕВЫМ content-wrapper внутри секций контента
   (header, account-content, footer) — не задевает вложенные
   (.tab-content и т.п.), чтобы карточки не получали двойного padding'а. */
.mobile .header-wrapper > .content-wrapper,
.mobile .account-content > .content-wrapper,
.mobile .footer-wrapper > .content-wrapper {
  padding-left: 16px;
  padding-right: 16px;
}

/* Сбрасываем min-width:max-content у хедера на мобильных, чтобы padding
   не вытеснял лого/поиск за пределы экрана. */
.mobile .header-wrapper .content {
  min-width: 0;
}

.content-wrapper.page-not-found {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.alpha-page-tags-wrapper {
  width: 100%;
}

.alpha-page-tags-wrapper .btn-group {
  width: 100%;
  overflow: auto;
  padding-bottom: 10px;
}

.page-not-found .notFoundLight,
.page-not-found .notFoundDark {
  margin-bottom: 40px;
}

.dark .page-not-found .notFoundLight,
.page-not-found .notFoundDark {
  display: none;
}

.page-not-found .notFoundLight,
.dark .page-not-found .notFoundDark {
  display: block;
}

.page-not-found h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
}

.page-not-found p {
  color: var(--grey-800);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}

.plans-wallet .info-block {
  padding: 14px 16px;
  background: var(--blue2);
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 14px;
  gap: 8px;
}

.plans-wallet .account-info-title {
  margin: 0;
}

.coins-page .account-info-title {
  margin: 0 5px;
}

.plans-wallet-content {
  align-items: flex-start;
}

.plans-wallet-content .button {
  cursor: pointer;
}

.plans-wallet.processed .wallet,
.plans-wallet .process,
.plans-wallet .finished {
  display: none;
}

.plans-wallet.processed .process,
.finished .plans-wallet .finished {
  display: block;
}

.plans-wallet.processed .info,
.plans-wallet .finished .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 150px;
}

.old-style-table .button.big.button-upgrade-to-pro {
  position: absolute;
  top: 100px;
}

.mobile .plans-wallet.processed .info {
  padding-bottom: 120px;
}

.mobile .plans-wallet.processed .info h4 {
  text-align: center;
  margin-bottom: 30px;
}

.plans-wallet.processed .info svg,
.plans-wallet .finished .info svg {
  color: var(--black);
  display: block;
  margin-bottom: 52px;
}

.dark .plans-wallet.processed .info svg,
.dark .plans-wallet .finished .info svg {
  color: var(--white);
}

.plans-wallet.processed .info h4,
.plans-wallet .finished .info h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
}

.plans-wallet.processed .info p,
.plans-wallet .finished .info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-800);
}

.plans-wallet.processed .process .cancel {
  color: var(--error);
  cursor: pointer;
}

.plans-wallet.processed .process .cancel:hover {
  text-decoration: underline;
}

.mobile .plans-wallet.processed .process .cancel {
  width: 100%;
  display: block;
  text-align: center;
}

.plans-wallet .finished .info p {
  margin-bottom: 24px;
}

.plans-page .plans-wallet-content .left-side,
.plans-page .plans-wallet-content .right-side {
  border: none;
}

.plans-page .plans-wallet-content .left-side {
  width: 65%;
  padding-right: 75px;
}

.plans-page .plans-wallet-content .right-side {
  width: 35%;
}

.mobile .plans-page .plans-wallet-content .right-side {
  width: 100%;
}

.plans-wallet-content .wallet-title {
  color: var(--grey-800);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.plans-wallet-content .wallet-amount {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--black);
}

.dark .plans-wallet-content .wallet-amount {
  color: var(--white);
}

.wallet .wallet-title {
  margin-bottom: 8px;
}

.dark .wallet .wallet-title {
  color: var(--white);
}

.plans-wallet-content .wallet {
  margin-bottom: 24px;
}

.plans-wallet-content .wallet-code {
  gap: 8px;
}

.plans-wallet-content .wallet-code .code {
  border: 1px solid var(--grey-500);
  border-radius: 4px;
  padding: 10px 48px 10px 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.dark .plans-wallet-content .wallet-code .code {
  color: var(--white);
}

.plans-wallet-content .wallet-code .button {
  background: var(--grey-200);
  border-radius: 24px;
  padding: 10px 16px;
}

.dark .plans-wallet-content .wallet-code .button {
  color: var(--black);
}

.plans-wallet-content ul {
  margin-bottom: 40px;
}

.plans-wallet-content ul li {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px;
}

.dark .plans-wallet-content ul li {
  color: var(--white);
}

.qr-code {
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: 40px;
}

.dark .qr-code {
  background-color: var(--white);
}

.loader {
  /* width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-color: #2795dd transparent;
    border-radius: 60px;
    position: relative;
    animation: 1s infinite linear rotateRight; */
}

.loader-inside {
  border: 4px solid transparent;
  border-color: transparent gray;
  border-radius: 60%;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: 0.6s infinite linear rotateLeft;
}

.twitter--button--blue {
  background-color: var(--blue-twitter);
  border-radius: 34px;
  border: none;
  color: var(--white);
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
}

.view-chart-wrapper {
  height: 500px;
}

.chart-block-wrapper {
  width: 1000px;
  position: relative;
}

.blur {
    filter: blur(6px);
    position: relative;
    z-index: 1;
}

/* Контейнер, перекрывающий размытые строки */
.table-blur-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Центрирование контента */
.table-blur-overlay .upgrade-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    text-align: center;
}

/*tbody tr.blur td {*/
/*    filter: blur(4px);*/
/*    pointer-events: none;*/
/*}*/

.token-avatar_icon {
  width: 100%;
  height: 100%;
  border-radius: 43px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.password-error-text {
  color: var(--error);
  display: none;
}

.passwords-error .password-error-text {
  display: block;
}

.list-group-item {
  margin: 0;
}

.dark .jumbotron {
  background: transparent;
}

.dark .modal-content {
  background-color: var(--dark-grey);
}

.modal.modal-score-range .modal-body {
  margin: 0 20px;
}

.filters-block-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 15px;
}

.token-avatar_icon img {
  background-color: #e6e6e6;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.table-cell {
  flex-shrink: 0;
  text-align: left;
  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}

.privacy-policy {
  padding: 40px 0;
}

.privacy-policy h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.privacy-policy p {
  font-size: 20px;
  margin-bottom: 10px;
}

.privacy-policy p a {
  color: var(--blue);
}

.privacy-policy .text-block {
  margin-bottom: 40px;
}

.privacy-policy ul li {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.privacy-policy ul li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 60%;
  background-color: var(--black);
  flex-shrink: 0;
}

.dark .privacy-policy ul li:before {
  background-color: var(--white);
}

.search-wrapper {
  position: relative;
}

.dataTables_processing {
  z-index: 100;
  min-height: 100%;
}

.table-loader-block {
  height: 100%;
}

.table-loader-block .loader-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.hint-wrapper {
  position: absolute;
  display: none;
  width: 86%;
  height: auto;
  top: 100%;
  background-color: #fff;
  left: 30px;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  opacity: 0;
  transition: all ease-out 0.3s;
  box-shadow: 0 20px 20px var(--box-shadow);
}

.mobile .hint-wrapper {
  width: 81%;
}

.dark .hint-wrapper {
  background-color: var(--dark-black);
}

.header-wrapper .hint-wrapper {
  width: 92%;
  left: 14px;
}

.open .hint-wrapper {
  display: block;
}

.show-hint .hint-wrapper {
  opacity: 1;
  top: 100%;
}

.hint-list-i {
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.dark .hint-list-i:hover {
  color: var(--black);
}

.hint-list-i:hover {
  background-color: var(--grey-300);
}

.dark .modal-body .form-control {
  color: var(--black);
}

.dark .form-control:focus {
  color: var(--white);
}

.hidden-block {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.modal-header .btn-close {
  background: none;
  position: relative;
}

.modal-header .btn-close:before,
.modal-header .btn-close:after {
  background-color: var(--black);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
}

.dark .modal-header .btn-close:before,
.dark .modal-header .btn-close:after {
  background-color: var(--white);
}

.modal-header .btn-close:before {
  transform: rotate(45deg);
}

.modal-header .btn-close:after {
  transform: rotate(-45deg);
}

.error-text {
  display: none;
  color: var(--error);
  font-size: 12px;
  position: absolute;
  left: 24px;
  bottom: -20px;
}

.success-text {
  display: none;
  color: var(--success);
  font-size: 12px;
  position: absolute;
  left: 24px;
}

.error .error-text .success-text {
  display: block;
}


.spinner {
  animation: rotator 2s linear infinite;
}

.mobile .account-profile-button,
.mobile .account-profile-button:first-child,
.mobile .account-profile-button:last-child {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.alpha-tag-content .dataTables_length {
  margin-top: 20px;
}

.alpha-tag-content .dataTables_paginate {
  margin: 20px 0;
}

.mobile .alpha-tag-content {
  padding: 0 0 24px;
}

.mobile .alpha-tag-content .align-items-center {
  width: 100%;
  overflow-y: auto;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: #4285f4;
  animation: dash 2s ease-in-out infinite;
  transition: all ease-out 0.3s;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
.not-found {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.not-found svg {
  display: block;
  margin-bottom: 40px;
}

.not-found h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
}

.not-found p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-800);
  margin-bottom: 16px;
}

.timer {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile .timer {
  margin-top: -75px;
  transform: translateX(-47%);
  text-align: center;
}

.new-project-info {
  background: var(--black);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 14px 0;
  width: 100%;
  z-index: 100;
}

.new-project-info.email-info {
  border-top: 1px solid #2a2a2a;
  background-color: var(--info);
}

.dark .new-project-info.email-info {
  background-color: var(--blue-dark2);
}

.email-buttons-wrapper {
  gap: 10px;
}

.mobile .new-project-info {
  padding: 14px;
  text-align: center;
}

.new-project-info .content-wrapper {
  justify-content: center;
}

.new-project-info a {
  text-decoration: underline;
}

.new-project-info a:hover {
  text-decoration: none;
}

.new-project-info .close-btn {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  cursor: pointer;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile .new-project-info .close-btn {
  transform: none;
  top: 5px;
  right: 5px;
}

.new-project-info .close-btn::before,
.new-project-info .close-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.new-project-info .close-btn::before {
  transform: rotate(45deg);
}

.new-project-info .close-btn::after {
  transform: rotate(-45deg);
}

.email-wrapper,
.email-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.email-wrapper {
  gap: 30px;
}

.email-text-wrapper {
  gap: 5px;
}

.email-wrapper p {
  font-size: 27px;
}

.email-icon {
  font-size: 50px;
}

.verifyText {
  color: var(--white);
  cursor: pointer;
  text-decoration: underline;
}

.verifyText:hover {
  text-decoration: none;
}

.name-wrapper .hide-image,
.hideDateWrapper .hideFollowers {
  width: 40px;
}

.name-wrapper .hide-text-wrapper {
  width: 85px;
}

.material-symbols-outlined.email {
  font-variation-settings:
  'FILL' 0
}

.hideDescriptionWrapper .hideDescription {
  width: 300px;
}

.hideFollowersWrapper .hideFollowers {
  width: 70px!important;
}

.hideFollowingWrapper .hideFollowers {
  width: 40px;
}

.hide-text-wrapper .hideScore {
  width: 100px;
}

.hide-sprite {
  width: 100%;
  height: 100%;
  display: inline-block;
  line-height: 16;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-image: url("https://twitterscore.s3.amazonaws.com/images/hide-sprite.png");
  background-size: 1125px 137px;
}

.hide-sprite .hideStar {
  background-position: -10px -19px;
  width: 20px;
  height: 20px;
}
.hide-image {
  background-position: -49px -7px;
}
.hideName {
  background-position: -90px -5px;
  background-size: 920px;
}
.hideFollowers {
  background-position: -266px -5px;
  background-size: 1001px;
}
.hideScore {
  background-position: -377px -5px;
  background-size: 1001px;
  width: 100px;
}
.hideDescription {
  background-position: -551px -4px;
  background-size: 1001px;
}


.dark .hideStar {
  background-position: -10px -89px;
  background-color: transparent;
  width: 20px;
  height: 20px;
}
.dark .hide-image {
  background-position: -49px -77px;
}
.dark .hideName {
  background-position: -92px -60px;
}
.dark .hideFollowers {
  background-position: -265px -67px;
}
.dark .hideScore {
  background-position: -370px -67px;
}
.dark .hideDescription {
  background-position: -556px -73px;
}


.subscription-block {
  background-color: var(--green-light);
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.subscription-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  width: 100%;
}

.subscription-item span {
  color: var(--black);
}

.dark .subscription-item span {
  color: var(--white);
}

.subscription-item:first-child {
  border-bottom: 1px solid var(--box-shadow);
  margin-bottom: 10px;
}

.dark .subscription-item:first-child {
  border-bottom: 1px solid var(--white);
}

.subscribe-name {
  display: flex;
  gap: 5px;
  align-items: center;
}

.subscribe-image {
  display: inline-block;
  background: url("https://twitterscore.s3.eu-central-1.amazonaws.com/images/logo-icon.png") 0 0 no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.dark .subscribe-image {
  background: url("https://twitterscore.s3.eu-central-1.amazonaws.com/images/logo-icon-white.png") 0 0 no-repeat;
  background-size: contain;
}

.referrals-block {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.referrals-block h2 {
  font-size: 25px;
  width: 100%;
}

.top-research-page {
  padding: 30px 0;
}

.table-more-link {
  white-space: nowrap;
}

.select-custom {
  position: relative;
  border: 1px solid var(--grey-800);
  display: inline-flex;
  cursor: pointer;
}

.custom-select-options {
  border: 1px solid var(--grey-800);
  background-color: var(--white);
  position: absolute;
  pointer-events: none;
  transform: translateY(-10px);
  opacity: 0;
  left: 0;
  top: 100%;
  margin: 0 -1px;
  width: auto;
  z-index: 1;
}

body.dark .custom-select-options {
  background-color: var(--dark-grey);
}

.select-custom.open .custom-select-options {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: all ease-in-out 0.3s;
}

.custom-select-options-item {
  padding: 5px;
  white-space: nowrap;
  cursor: pointer;
}

.custom-select-options-item:hover {
  background-color: var(--grey-300);
}

body.dark .custom-select-options-item:hover {
  background-color: var(--grey-900);
  color: var(--black) !important;
}

.custom-select-options-item .material-symbols-outlined {
  font-size: 12px;
  width: 12px;
  height: 12px;
}

.selected-value-wrapper {
  display: flex;
  align-items: center;
  padding: 0 0 0 5px;
}

.referal-info {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px !important;
  margin-left: 0!important;
  gap: 150px;
}

.refelal-link {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--grey-900);
  gap: 10px;
  padding: 10px 10px;
  border-radius: 5px;
  max-width: 500px;
  width: 100%;
  justify-content: space-between;
}

.dark .refelal-link  {
  background-color: var(--grey-900);
}

.refelal-link input {
  background: none;
  border: none;
  width: 100%;
}

.referal-infi-count-with-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cash-out, .btn-payment-failed {
  padding: 4px 12px;
  font-size: 0.875rem;
  color: var(--grey-900);
  background-color: var(--grey-100);
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-payment-failed {
  color: var(--error);
  background-color: var(--white);
}

.btn-cash-out:hover, .btn-payment-failed {
  background-color: var(--grey-200);
}

.dark .btn-cash-out {
  background-color: var(--grey-900);
  border-color: var(--grey-700);
  color: var(--white);
}

.dark .btn-cash-out:hover {
  background-color: var(--grey-800);
}

.copy-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.copy-button:before,
.copy-button:after {
  content: '';
  display: block;
  background-color: var(--white);
  width: 14px;
  height: 15px;
  border: 1px solid var(--grey-900);
  border-radius: 4px;
  left: 0;
  top: 0;
}

.dark .copy-button:before,
.dark .copy-button:after {
  background-color: var(--grey-900);
  border: 1px solid var(--white);
}

.copy-button:before {
  transform: translate(0, 0);
}

.copy-button:after {
  transform: translate(6px, -11px);
}

/* Состояние с галочкой */
.copy-button.copied:before,
.copy-button.copied:after {
  content: '';
  background: none;
  width: 15px;
  height: 9px;
  border: solid var(--grey-900);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  left: 4px;
  top: 4px;
  position: absolute;
  border-radius: 0;
}

.dark .copy-button.copied:before,
.dark .copy-button.copied:after {
  border-color: var(--white);
}

.copy-button.copied:after {
  display: none;
}

/* "Copied!" текст */
.copy-button .copy-status {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  /*background-color: #28a745;*/
  color: var(--grey-900);
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, top 0.3s ease;
  white-space: nowrap;
}

.copy-button.copied .copy-status {
  opacity: 1;
  top: -34px;
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.display tbody tr:not(.disabled):hover>.sorting_1 {
  background-color: transparent;
}

.tg-bot-link {
    color: #007bff !important;
    text-decoration: underline;
    font-weight: 500;
}
.bold-accent {
  font-weight: bold;
  color: #000000;
}

body.dark .bold-accent {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
body.dark .tg-bot-link {
    color: #4ea8ff !important;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    padding: 40px 0 24px;
}

.page-title-section h1,
.page-title-section h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    /*margin-bottom: 8px;*/
    color: var(--black);
}

.page-title-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--grey-800);
    margin-bottom: 0;
}

body.dark .page-title-section h1,
body.dark .page-title-section h2 {
    color: var(--white);
}

body.dark .page-title-section p {
    color: var(--grey-600);
}

@media (max-width: 768px) {
    .page-title-section {
        padding: 40px 16px 24px;
    }
    .page-title-section h1 {
        font-size: 32px;
        line-height: 40px;
    }
}
