.lk-top__card {
  height: 300px;
  background-color: transparent;
}

.lk-top__wrapper {
  block-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lk-top__buttons {
  display: flex;
  gap: 0.5rem;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 20px;
}

#lk-top-content,
#lk-top-loaders {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lk-top__content-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row !important;
}

.lk-top__user-avatar {
  position: relative;
  z-index: 2;
}

.lk-top__user-avatar-image {
  height: 43px;
  width: 43px;
  border-radius: var(--br-75em);
  border: 1px solid var(--transparent-5-w);
}

.avatar_frame {
  height: 43px;
  width: 43px;
  position: absolute !important;
  transform: scale(1.1);
  border-radius: 0 !important;
  z-index: 2;
  box-shadow: none !important;
  outline: none !important;
}

.lk-top__user-data {
  height: 53px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background-image: linear-gradient(270deg, color-mix(in srgb, var(--span) 35%, transparent), transparent);
  padding: 0.3rem;
  border-radius: var(--br-15em);
  position: relative;
  overflow: hidden;
  transition: var(--transition-ease-2);
  flex: 1;
}

.lk-top__place-number,
.lk-top__place-hashtag {
  position: absolute;
  font-size: var(--font-size-5xl);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-7);
  width: 55px;
  display: flex;
  justify-content: center;
  opacity: 0.1;
  transition: var(--transition-ease-2);
}

.lk-top__place-number {
  right: 0;
}

.lk-top__place-hashtag {
  right: 2.5rem;
  font-size: var(--font-size-l);
  width: 26px;
}

.lk-top__place-number.first,
.lk-top__place-number.second,
.lk-top__place-number.third,
.lk-top__place-number.fourth {
  z-index: 2;
  opacity: 0.1;
  -webkit-user-select: none;
  user-select: none;
}

.lk-top__place-hashtag.first,
.lk-top__place-hashtag.second,
.lk-top__place-hashtag.third,
.lk-top__place-hashtag.fourth {
  z-index: 2;
  opacity: 0.1;
  -webkit-user-select: none;
  user-select: none;
}

.lk-top__user-details {
  display: flex;
  flex-direction: column-reverse;
  z-index: 2;
}

.lk-top__place {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-4);
  opacity: 0.3;
  color: var(--text-secondary);
}

.lk-top__user-name {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-7);
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lk-top__user-name svg {
  width: 18px;
  height: 18px;
  fill: rgb(0 255 94);
  margin-bottom: 0.2rem;
}

.lk-top__user-name.first {
  color: var(--top-one);
}

.lk-top__user-name.second {
  color: var(--top-two);
}

.lk-top__user-name.third {
  color: var(--top-three);
}

.lk-top__user-name.fourth {
  color: rgb(126, 157, 255, 0.25);
}

.lk-top__user-data:hover .lk-top__place-number {
  scale: 1.1;
}

.lk-top__user-data:hover .lk-top__place-number.first,
.lk-top__user-data:hover .lk-top__place-number.second,
.lk-top__user-data:hover .lk-top__place-number.third,
.lk-top__user-data:hover .lk-top__place-number.fourth {
  opacity: 1;
  color: rgb(126, 157, 255, 0.25);
}

.lk-top__user-data:hover .lk-top__place-number.first {
  color: var(--top-one);
}

.lk-top__user-data:hover .lk-top__place-number.second {
  color: var(--top-two);
}

.lk-top__user-data:hover .lk-top__place-number.third {
  color: var(--top-three);
}

.loader {
  position: relative;
  background: var(--input-form);
  overflow: hidden;
  height: 53px;
  border-radius: var(--br-15em);
  z-index: 2;
  width: 100%;
}

.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      var(--transparent-2-w),
      rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.lk-top__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--text-custom);
  font-weight: var(--font-weight-5);
  flex-direction: row-reverse;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  background-color: var(--transparent-2-w);
  border-radius: var(--br-75em);
}

.lk-top__title svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  transition: var(--transition-ease-2);
  margin-left: auto;
  flex: none;
}

.lk-top__title:hover svg {
  fill: var(--span);
}

.lk-top__title>span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gilter {
  font-weight: 600;
  border-radius: var(--br-75em);
  font-size: 12px;
  transition: all 0.25s;
  height: 2.2rem;
  padding-inline: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  line-height: normal;
  white-space: nowrap;
  background: transparent;
  color: var(--text-custom);
}

.gilter:hover {
  color: var(--span);
}

.gilter.active {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.25s;
  border-bottom: 5px solid var(--span);
  color: var(--span);
  filter: brightness(1) !important;
  border-radius: 0px;
}
