.lk-top__chips-btn {
  background: var(--span-low);
  color: var(--span);
  padding: 10px 15px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  border: 2px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
}

.lk-top__chips-btn:hover,
.lk-top__chips-btn:active,
.lk-top__chips-btn:focus {
  background: var(--span-middle);
  border: 2px solid var(--span-half);
}

.lk-top__chips-btn.active {
  background: var(--span);
  color: var(--text-default);
  border: 2px solid var(--span);
  cursor: pointer;
  transition: all 0.25s;
}

.lk-top__card {
  border: 0.5px solid rgb(255 255 255 / 10%);
    
  margin-top: 20px;
  margin-bottom: 30px;
}

.lk-top__wrapper {
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
      padding-bottom: 41px;
}

.lk-top__buttons {
  display: flex;
  gap: 0.5rem;
}

.lk-top__button-wide {
  width: 100%;
}

.lk-top__button {
  text-wrap: nowrap;
}

.lk-top__content {
  display: flex;
  flex-direction: column;
  gap: 0.39rem;
}

.lk-top__user-avatar {
  position: relative;
  z-index: 2;
}

.lk-top__user-avatar-image {
  height: 48px;
  width: 48px;
  border-radius: 12px;
}

.avatar_frame {
  height: 48px;
  width: 48px;
  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: 57px;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  background-color: var(--transparent-2-w);
  padding: 0.3rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.lk-top__place-number,
.lk-top__place-hashtag {
  position: absolute;
  font-size: 100px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  width: 83px;
  display: flex;
  justify-content: center;
  opacity: 0.1;
  transition: all 0.25s ease;
}
.lk-top__place-number {
  right: 0.5rem;
}

.lk-top__place-hashtag {
  right: 5rem;
  font-size: 40px;
  width: 70px;
}

.lk-top__user-data.first:before,
.lk-top__user-data.second:before,
.lk-top__user-data.third:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.1;
}

.lk-top__user-data.first:before {
  background: linear-gradient(315deg, var(--top-one), transparent);
}

.lk-top__user-data.second:before {
  background: linear-gradient(315deg, var(--top-two), transparent);
}

.lk-top__user-data.third:before {
  background: linear-gradient(315deg, var(--top-three), transparent);
}

.lk-top__place-number.first,
.lk-top__place-number.second,
.lk-top__place-number.third {
  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 {
  z-index: 2;
  opacity: 0.1;
  -webkit-user-select: none;
  user-select: none;
}

.lk-top__place-number.first,
.lk-top__place-hashtag.first {
  color: var(--top-one);
}

.lk-top__place-number.second,
.lk-top__place-hashtag.second {
  color: var(--top-two);
}

.lk-top__place-number.third,
.lk-top__place-hashtag.third {
  color: var(--top-three);
}

.lk-top__user-details {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.lk-top__place {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.3;
}

.lk-top__user-name {
  font-size: 18px;
  font-weight: 700;
  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-data:hover .lk-top__place-number {
  scale: 1.1;
}

.lk-top__user-data:hover {
  background-color: var(--transparent-5-w);
}

.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 {
  opacity: 0.3;
}

.loader {
  display: none;
  position: relative;
  background: var(--input-form);
  overflow: hidden;
  height: 57px;
  border-radius: 12px;
  z-index: 2;
}

.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 {
  font-size: 14px !important;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 10px;
}

.lk-top__title svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: all 0.25s ease;
}

.lk-top__title:hover svg {
  fill: var(--span);
}