.wrapperProfile {
  height: auto;
  width: 75%;
  margin-left: 12rem;
  padding: 1.75rem 0.25rem;
  overflow-y: auto;
}
.wrapProHead {
  color: var(--col-01);
  display: flex;
  gap: 1rem;
}
/* Left */
.wrapHeadLeft {
  width: 65%;
  display: flex;
  gap: 0.5rem;

  & img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
  }
}
.wrapContent {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.username {
  width: min-content;
  font-size: 1.5rem;
}
/* Right */
.wrapHeadRight {
  width: 35%;
  display: flex;
  flex-direction: column;
}
.userLevel {
  width: max-content;
  margin: 2rem 0;
  padding: 0.3rem 2.25rem;
  border-radius: 0.25rem;
  border: 2px solid var(--col-01);
}
.userEditor {
  width: max-content;
  padding: 0.25rem 2.97rem;
  color: var(--col-01);
  cursor: pointer;
  border-radius: 0.25rem;
  background: var(--bg-02);
  border: 2px solid var(--bg-03);
  &:hover {
    background: var(--col-04);
    border: 2px solid var(--col-03);
  }
}
.wrapProMain {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
}
/* Left */
.wrapMainLeft {
  width: 65%;
}
.recentAtivity {
  & h2 {
    font-size: 1.25rem;
    color: var(--col-01);
  }
  & span {
    margin-left: auto;
    color: var(--col-02);
  }
}
.rA-title {
  display: flex;
  align-items: center;
}
#reviewsContainer {
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border: 1px dashed #444;
  border-radius: 8px;
  background: #111;
}
.review {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  color: var(--col-01);
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #333;
  &:hover {
    background: var(--bg-02);
  }

  & img {
    height: 100px;
    width: 220px;
    object-fit: cover;
  }
}
.reviewInfo-game {
  width: 100%;
  padding-left: 0.75rem;
  & h4 {
    font-size: 1.1rem;
  }
  & p {
    font-size: 0.9rem;
  }
}
/* Right */
.wrapMainRight {
  width: 35%;
  color: var(--col-01);
}
#userStatus {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: var(--col-03);
}
.user-ul {
  list-style: none;

  & li {
    width: max-content;
    font-size: 0.9rem;
    color: var(--col-02);
    &:hover {
      text-decoration: underline;
      cursor: pointer;
    }
  }

  & span {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--col-02);
  }
}
