#profiles-content > * {
  transition: opacity 0.2s ease;
}
#profiles-content.profiles-loading > * {
  opacity: 0.3;
  pointer-events: none;
}

.avatar_frame {
  position: absolute !important;
  transform: scale(1.18);
  border-radius: 0 !important;
  z-index: 2;
  box-shadow: none !important;
  outline: none !important;
}

.back_content {
  display: block;
  filter: grayscale(1);
  height: 130px;
  width: auto;
  background-size: cover !important;
  background-position: center !important;
  transition: var(--transition-duration);
  cursor: pointer;
  border-radius: var(--br-12);
  border: 2px solid transparent;
}

.back_content:hover {
  transition: var(--transition-duration);
  filter: none;
}

.back_content video {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-duration);
  border-radius: var(--br-12);
  position: relative !important;
}

input[name="background"]:checked+label {
  border: 2px solid var(--span);
  transition: var(--transition-duration);
  filter: none;
}

.profile_settings_inputs {
  display: flex;
  justify-items: stretch;
  flex-direction: column;
  width: 40%;
  gap: 15px;
}

.background {
  position: absolute;
  visibility: hidden;
}

.profile_settings_backs_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11em, 1fr)) !important;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 450px;
  margin: 7px 0 10px;
  width: 100%;
  grid-gap: 10px;
  gap: 10px;
}

.profile_user_card {
  overflow: hidden;
  border-radius: var(--br-16);
  padding: 5px;
}

.user_back,
.user_back video,
.user_back img {
  display: block;
  width: 100%;
  height: 8em;
  border-radius: var(--br-10) 11px 0 0;
  position: relative;
}


.user_back video,
.user_back img {
  position: absolute !important;
  object-fit: cover;
  display: block;
  width: 100%;
  border-radius: var(--br-10) 11px 0 0;
  animation: fadeInMedia 0.3s ease;
}

@keyframes fadeInMedia {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.user-banner-skeleton {
  position: absolute !important;
  inset: 0;
  border-radius: var(--br-10) 11px 0 0 !important;
  min-height: unset !important;
  z-index: 0;
}

.user-avatar-skeleton {
  position: absolute !important;
  left: 6%;
  bottom: -25%;
  height: 80px;
  width: 80px;
  border-radius: var(--br-4) !important;
  min-height: unset !important;
  z-index: 0;
}

.user_settings {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.user_settings svg {
  fill: white;
  width: 17px;
  height: 17px;
  opacity: 0.5;
  transition: var(--transition-duration);
}

.user_settings:hover svg {
  opacity: 1;
}

.user_socials {
  width: max-content;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  background: var(--bg-modal);
  border-radius: var(--br-6);
}

.header_user_info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
  padding: 15px;
  position: relative;
  justify-content: flex-end;
}

.social__button-profile {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-24);
  cursor: pointer;
  background-color: transparent;
}

.social__button-profile svg {
  width: auto;
  height: 20px;
  transition: var(--transition-duration);
}

.header_user_info img {
  position: absolute;
  left: 6%;
  height: 80px;
  width: 80px;
  border-radius: var(--br-4);
  bottom: -25%;
  outline: 5px solid var(--card);
  box-shadow: inset 5em 5em var(--card), 0px 0px 0px 4px var(--card);
  animation: fadeInMedia 0.3s ease;
}

.user_balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  background: var(--money-bg);
  border-radius: var(--br-8);
  padding: 8px 10px;
  cursor: pointer;
  justify-content: center;
}

.user_sec_block {
  display: flex !important;
  flex-direction: row;
  height: max-content !important;
  justify-content: flex-end;
  padding: 15px 20px;
  gap: .5rem;
}

.user_sec_block img {
  width: 60px;
  height: auto;
  cursor: help;
}

.balance_info {
  display: flex;
}

.balance_count {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-5);
  color: var(--money);
}

.user_balance svg {
  width: 14px;
  height: auto;
  fill: var(--money);
}

.user_menu_short {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}

.user_menu_short a {
  background: var(--span-low);
  border-radius: var(--br-8);
  padding: 10px;
  transition: var(--transition-duration);
  height: 40px;
  flex: 1 1 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user_menu_short a svg {
  width: 20px;
  height: auto;
  fill: var(--span);
}

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

.a_active svg {
  fill: var(--text-default) !important;
}

.user_menu_short a:hover {
  background: var(--span-middle);
}

.user_third_block {
  height: 100% !important;
  background: var(--transparent-2-w);
  padding: 20px;
  margin: 0 10px 10px;
  display: flex !important;
  flex-direction: column;
  border-radius: var(--br-12);
  gap: 15px;
}

.user_nickname {
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.verified_icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #4a9eff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.user_status_server {
  color: var(--green);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-4);
}

.user_status {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status_title {
  font-size: var(--font-size-xs);
  opacity: 0.5;
  color: var(--text-custom);
}

.status_content {
  color: var(--text-custom);
  font-size: var(--font-size-m);
}

.user_badge {
  cursor: default;
  display: flex;
  width: max-content;
  padding: 5px 10px 5px 8px;
  border-radius: var(--br-24);
  background: var(--transparent-2-w);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-6);
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.user_badge span {
  display: flex;
  height: 12px;
  width: 12px;
  background: var(--span);
  border-radius: var(--br-24);
}

.user_roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: row;
}

.badge_player {
  color: var(--text-custom);
  background: rgb(152 158 202 / 20%);
}

.badge_player_circle {
  background: var(--text-custom) !important;
}

.badge_admin {
  color: var(--span);
  background: rgb(126 157 255 / 10%);
}

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

.badge_vip {
  color: #ffd12d;
  background: rgb(255 209 45 / 10%);
}

.badge_vip_circle {
  background: #ffd12d !important;
}

.badge_top-1 {
  color: var(--top-one);
  background: rgb(255 219 92 / 20%);
}

.badge_top-2 {
  color: var(--top-two);
  background: rgb(191 224 255 / 20%);
}

.badge_top-3 {
  color: var(--top-three);
  background: rgb(248 167 133 / 20%);
}

.badge_top_circle-1 {
  background: var(--top-one) !important;
}

.badge_top_circle-2 {
  background: var(--top-two) !important;
}

.badge_top_circle-3 {
  background: var(--top-three) !important;
}

.badge_banned {
  color: #bf0d0d;
  background: rgb(191 13 13 / 20%);
}

.badge_banned_circle {
  background: #bf0d0d !important;
}

.badge_blacklist { color: #ff1f1a; background: rgb(255 31 26 / 15%); cursor: pointer; }
.badge_blacklist_circle { background: #ff1f1a !important; }

.badge_patron { color: #ff8d0b; background: rgb(255 141 11 / 15%); }
.badge_patron_circle { background: #ff8d0b !important; }

.badge_team { color: #7c96fd; background: rgb(124 150 253 / 15%); }
.badge_team_circle { background: #7c96fd !important; }

.badge_inactive { color: #888; background: rgb(136 136 136 / 12%); }
.badge_inactive_circle { background: #888 !important; }

.badge_muted { color: #bf0d0d; background: rgb(191 13 13 / 20%); }
.badge_muted_circle { background: #bf0d0d !important; }


.title_head {
  display: flex;
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-5);
  color: var(--text-custom);
  align-items: center;
  position: relative;
  gap: .5rem;
  width: 100%;
  flex-direction: row-reverse;
}

.title_head svg {
  width: .8rem;
  height: .8rem;
  fill: currentColor;
}

.title_head:before {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--transparent-5-w);
}

.profile_rank_progress {
  position: relative;
  height: 6px;
  background: var(--transparent-4-w);
  cursor: default;
  margin: 0 20px 0 calc(6% - 5px);
  border-radius: var(--br-24);
  overflow: hidden;
}
.profile_rank_progress_fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--span);
  transition: width 1s ease;
}
.profile_rank_label {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-align: center;
  padding: 4px 0 6px;
}

.block-level-ranks {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 .8rem;
}
.block-level-ranks .rank_image {
  flex-shrink: 0;
  width: 50px !important;
  height: 50px !important;
}
.bar-level-ranks {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  height: 50px;
  cursor: default;
  min-width: 0;
}
.bar-level-ranks-track {
  position: relative;
  height: 8px;
  background: var(--transparent-4-w);
  border-radius: var(--br-24);
  overflow: hidden;
}
.bar-level-ranks-width {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--span);
  border-radius: var(--br-24);
  transition: width 1s ease;
}
.bar-level-ranks-proccent {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
}

.profiles_table_wrap {
  border-radius: var(--br-12);
  overflow: hidden;
  background: var(--transparent-2-w);
}
.profiles_pagination {
  display: flex;
  justify-content: flex-end;
  padding: 4px 0 0;
}
.profiles_pagination .pagination {
  gap: 0;
  margin: 0 !important;
}
.profiles_pagination .pagination .button_pagination {
  margin: 0 !important;
}
.profiles_pagination .pagination .button_pagination {
  height: 26px !important;
  width: auto !important;
  min-width: 26px !important;
  padding: 0 7px !important;
  font-size: var(--font-size-xs) !important;
  line-height: 26px !important;
}
.profiles_pagination .pagination .button_pagination svg {
  width: 10px !important;
  height: 10px !important;
}
.profiles_page_btn {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--br-6);
  background: var(--transparent-2-w);
  color: var(--text-custom);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-5);
  cursor: pointer;
  border: 1px solid var(--transparent-4-w);
  transition: var(--transition-duration);
}
.profiles_page_btn:hover,
.profiles_page_btn.active {
  background: var(--span);
  color: var(--bg);
  border-color: var(--span);
}

.balance_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.balance_info_row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--transparent-2-w);
  border-radius: var(--br-10);
  padding: 12px 15px;
}
.balance_info_row svg {
  fill: var(--money);
  width: 1.2em;
  height: 1.2em;
}
.balance_info_label {
  font-size: var(--font-size-s);
  color: var(--text-secondary);
  flex: 1;
}
.balance_info_value {
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-7);
  color: var(--money);
}
.balance_admin_section {
  background: var(--transparent-2-w);
  border-radius: var(--br-12);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.balance_admin_title {
  font-size: var(--font-size-s);
  color: var(--text-secondary);
  opacity: .7;
}
.balance_input_row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.balance_input_row input {
  flex: 1;
  height: 36px;
  border-radius: var(--br-8);
  background: var(--input-form);
  border: 1px solid var(--transparent-4-w);
  color: var(--text-default);
  padding: 0 12px;
  font-size: var(--font-size-m);
}
.balance_input_row button,
.quick_buy_btn {
  gap: 0px;
  height: 36px;
  padding: 0 16px;
  border-radius: var(--br-8);
  background: var(--span-low);
  color: var(--span);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-5);
  cursor: pointer;
  border: 1px solid var(--transparent-4-w);
  transition: var(--transition-duration);
  white-space: nowrap;
}
.balance_input_row button:hover,
.quick_buy_btn:hover {
  background: var(--span);
  color: var(--bg);
}
.quick_buy_btn svg {
	fill: currentColor;
    width: 0.8em;
    height: 0.8em;
    vertical-align: -0.1em;
}
.quick_buy_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

@media (max-width: 1480px) {

  .country_container,
  .faceit_container,
  .adm_container,
  .steam_container,
  .stats_container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: .3rem;
    background: var(--transparent-2-w);
    padding: .3rem;
    border-radius: var(--br-12);
    margin: .3rem 0;
    flex-wrap: wrap;
  }

  .country_column,
  .faceit_column,
  .adm_column,
  .steam_column,
  .stats_column {
    min-width: 9rem;
  }
}

@media (min-width: 1481px) {

  .country_container,
  .faceit_container,
  .adm_container,
  .steam_container,
  .stats_container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: .3rem;
    background: var(--transparent-2-w);
    padding: .3rem;
    border-radius: var(--br-12);
    margin: .3rem 0;
  }
}

.country_column,
.faceit_column,
.adm_column,
.steam_column,
.stats_column {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  background-color: var(--transparent-2-w);
  padding: .5rem;
  border-radius: var(--br-10);
  border: 1px solid var(--transparent-2-w);
}

.title_column {
  font-size: var(--font-size-s);
  color: var(--text-secondary);
  opacity: 0.5;
}

@media (max-width: 1480px) {
  .content_column {
    display: flex;
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-5);
    align-items: center;
    gap: 5px;
    color: var(--text-custom);
    white-space: nowrap;
  }
}

@media (min-width: 1481px) {
  .content_column {
    display: flex;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-7);
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: var(--text-custom);
    white-space: nowrap;
  }
}

.content_column img {
  width: 19px;
  height: auto;
}

.content_column svg {
  width: 16px;
  height: auto;
  fill: var(--text-custom);
}

@media (max-width: 1480px) {
  .general_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

@media (min-width: 1481px) {
  .general_info {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
}

.tables_info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fill_blocks {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.adm_warn_content {
  background: rgb(246 185 73 / 10%);
  width: 100%;
  border-radius: var(--br-8);
  padding: 10px;
  color: var(--orange);
  font-size: var(--font-size-m);
}

.cur_svg svg {
  width: 0.8em;
  height: 0.8em;
  fill: currentColor;
  vertical-align: -0.1em;
}

.bans_comms_container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profiles_table {
  display: none;
}

.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 4px;
}

.table th,
.table td {
  padding: 10px 14px;
  font-size: var(--font-size-s);
  color: var(--text-custom);
  text-align: left;
  white-space: nowrap;
}

.table td:last-child,
.table th:last-child {
  white-space: normal;
}

.table thead th {
  background: var(--transparent-2-w);
}
.table thead th:first-child { border-radius: var(--br-8) 0 0 var(--br-8); }
.table thead th:last-child  { border-radius: 0 var(--br-8) var(--br-8) 0; }

.table tbody tr td {
  background: var(--input-form);
}
.table tbody tr td:first-child { border-radius: var(--br-8) 0 0 var(--br-8); }
.table tbody tr td:last-child  { border-radius: 0 var(--br-8) var(--br-8) 0; }

.table td img {
  height: 22px;
  width: auto;
  max-width: 60px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
}

@media (max-width: 1079px) {
  .hide_this { display: none !important; }

  .profiles_table[data-type="bans"] .punish_header li,
  .profiles_table[data-type="bans"] .punish_content li,
  .profiles_table[data-type="comms"] .punish_header li,
  .profiles_table[data-type="comms"] .punish_content li,
  .profiles_table[data-type="issued_bans"] .punish_header li,
  .profiles_table[data-type="issued_bans"] .punish_content li,
  .profiles_table[data-type="issued_comms"] .punish_header li,
  .profiles_table[data-type="issued_comms"] .punish_content li { grid-template-columns: 1fr auto; }

  .profiles_table[data-type="payments"] .punish_header li,
  .profiles_table[data-type="payments"] .punish_content li { grid-template-columns: 1fr 0.7fr; }

  .profiles_table[data-type="shop"] .punish_header li,
  .profiles_table[data-type="shop"] .punish_content li { grid-template-columns: 0.5fr 1fr; }

  .profiles_table[data-type="cases"] .punish_header li,
  .profiles_table[data-type="cases"] .punish_content li { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1080px) {
  .hide_this { display: block; }

  .profiles_table[data-type="bans"] .punish_header li,
  .profiles_table[data-type="bans"] .punish_content li { grid-template-columns: 0.8fr 2fr 1fr 0.6fr 1fr; }

  .profiles_table[data-type="comms"] .punish_header li,
  .profiles_table[data-type="comms"] .punish_content li { grid-template-columns: 0.8fr 2fr 1fr 0.6fr 0.8fr 1fr; }

  .profiles_table[data-type="issued_bans"] .punish_header li,
  .profiles_table[data-type="issued_bans"] .punish_content li { grid-template-columns: 0.8fr 1.5fr 1.5fr 0.6fr 1fr; }

  .profiles_table[data-type="issued_comms"] .punish_header li,
  .profiles_table[data-type="issued_comms"] .punish_content li { grid-template-columns: 0.8fr 1.5fr 1.5fr 0.6fr 0.8fr 1fr; }

  .profiles_table[data-type="payments"] .punish_header li,
  .profiles_table[data-type="payments"] .punish_content li { grid-template-columns: 0.4fr 0.6fr 0.5fr 0.9fr 0.5fr; }

  .profiles_table[data-type="shop"] .punish_header li,
  .profiles_table[data-type="shop"] .punish_content li { grid-template-columns: 0.5fr 1.5fr 0.8fr; }

  .profiles_table[data-type="cases"] .punish_header li,
  .profiles_table[data-type="cases"] .punish_content li { grid-template-columns: 1fr 1fr 0.8fr; }
}

.punish_content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.punish_header li,
.punish_content li {
  display: grid;
  padding: 0.5rem 0.7rem;
  justify-items: start;
  gap: 5px;
  align-items: center;
  min-height: 40px;
}

.punish_content li {
  background-color: var(--transparent-3-w);
  border-radius: var(--br-8);
  transition: var(--transition-duration);
}

.punish_content li:hover {
  background-color: var(--transparent-10-w);
}

.punish_content li:hover span {
  color: var(--text-default);
}

.punish_header li span {
  font-size: var(--font-size-s);
  color: var(--text-custom);
  display: flex;
  align-items: center;
}

.comms_svg svg,
.trans_svg svg {
  fill: currentColor;
  opacity: 0.5;
  width: 18px;
  height: 18px;
}

.punish_content li span {
  color: var(--text-custom);
  font-size: var(--font-size-s);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
  transition: var(--transition-duration);
}

.punish_content li span img {
  border-radius: var(--br-4);
  vertical-align: middle;
}

.punish_content li span img.table_icon {
  height: 25px;
  width: auto;
}

.profiles_table[data-type="payments"] .punish_content li span img {
  width: 80px;
  height: 25px;
}

.table_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.table_loading::after {
  content: '';
  width: 22px;
  height: 22px;
  border: 2px solid var(--transparent-10-w);
  border-top-color: var(--text-default);
  border-radius: 50%;
  animation: profile-spin 0.7s linear infinite;
}

@keyframes profile-spin {
  to { transform: rotate(360deg); }
}

.exp_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: var(--transparent-3-w);
  border-radius: var(--br-6);
  color: var(--text-custom);
}

.perm {
  color: var(--red) !important;
  background: rgb(255 73 64 / 20%) !important;
}

.expired {
  text-decoration: line-through;
}

.unbanned {
  color: var(--green) !important;
  background: rgb(100 206 130 / 20%) !important;
}

.empty_blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-7);
  border-radius: var(--br-12);
  width: 100%;
  border: 1px solid var(--transparent-2-w);
  height: 187px;
  color: var(--text-custom);
}

.friends_list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(14em, 1fr)) !important;
  grid-gap: 0.8rem;
  gap: 0.5rem;
  overflow: initial;
  align-content: flex-start;
  align-items: center;
}

.friend_card img {
  width: 30px;
  height: 30px;
  border-radius: var(--br-7);
}

.friend_card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background: var(--input-form);
  border: 1px solid var(--transparent-4-w);
  padding: 3px 5px;
  border-radius: var(--br-10);
  cursor: pointer;
  transition: var(--transition-duration);
}

.friend_info {
  display: flex;
  flex-direction: column;
}

.friend_nick {
  font-size: var(--font-size-m);
  color: var(--span);
}

.friend_lc {
  font-size: var(--font-size-xs);
  opacity: 0.5;
  color: var(--text-custom);
}

.user_online_status {
  position: relative;
  display: none;
}

@media (max-width: 1480px) {
  .profile-row .col-md-3,
  .profile-row .col-md-9 {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .profile-row .col-md-3,
  .profile-row .col-md-9 {
    padding-left: 0;
    padding-right: 0;
  }
}

.user_online_status::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: var(--br-50);
  background: var(--green);
}

.empty_friends {
  height: 486px;
  font-size: var(--font-size-xl);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-custom);
}

.settings_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.settings_inp_inf {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.profile_settings_backs {
  width: 60%;
}

.online_pos {
  position: absolute;
  left: 15px;
  top: 20px;
}

.adm_info_string {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--transparent-2-w);
  padding: 10px;
  border-radius: var(--br-6);
}

.adm_info_title {
  font-size: var(--font-size-m);
  color: var(--text-custom);
  opacity: 0.7;
}

.adm_info_content {
  display: flex;
  font-size: var(--font-size-m);
  color: var(--text-default);
  font-weight: var(--font-weight-6);
  flex-direction: row;
  align-items: center;
  gap: 2px;
  transition: all 0.25s;
}

.adm_info_content strong{
	color: var(--money);
}

.adm_content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.adm_info_content span {
  display: flex;
  flex-direction: row;
  gap: 5px;
  color: var(--green);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-6);
}

.adm_info_content span svg {
  width: 10px;
  height: auto;
  fill: var(--text-default);
  opacity: 0.5;
  transition: all 0.25s;
}

.bans_count {
  cursor: help;
}

.bans_count:hover svg {
  opacity: 1;
}

.admin_bdg {
  color: var(--span);
  background: var(--span-low);
  padding: 3px 10px;
  border-radius: var(--br-24);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-5);
}

.hide-ip {
  filter: blur(5px);
  transition: var(--transition-duration);
}

.hide-ip:hover {
  filter: none;
}

.user__head-detalis {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}


.vkontakte svg {
  fill: var(--brand-vkontakte-color);
}

.number-table {
  font-size: 0.8em;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.pay-gateway-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.bl-punishments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bl-punishment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.punish_subinfo {
  display: flex;
  gap: .5rem;
  width: 100%;
  background: var(--transparent-3-w);
  border-radius: var(--br-10);
  padding: .3rem;
  align-items: center;
  border: 1px solid var(--transparent-2-w);
}

.icon_subinfo {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  background: var(--button-hover);
  border-radius: var(--br-8);
  flex: none;
}

.icon_subinfo svg {
  width: 1rem;
  height: 1rem;
  fill: var(--text-secondary);
}

.text_subinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 2px;
  min-width: 0;
}

.text_subinfo p {
  font-size: var(--font-size-s);
  color: var(--text-custom);
  margin: 0;
}

.text_subinfo span {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-row .col-md-9 {
  padding-top: 0.3125rem;
}