.flyAway {
  transform: translateY(-100vh);
}

.pointer {
  cursor: pointer;
}

.searchContainer {
  display: flex;
  gap: 2rem;
}

.searchContainer img {
  height: 50%;
  height: 60%;
  filter: none;
}

.searchContainer input {
  transition: ease 0.5s;
  padding-left: 1rem;
  height: 4rem;
  width: 100%;
  border-radius: 1rem;
  background: var(--background-primary);
  color: #adadad;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
  margin-bottom: 2rem;
  border-style: none;
  font-size: larger;
}

.searchContainer input:active,
.searchContainer input:focus {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-primary);
}

.searchContainer button {
  height: 4rem;
  width: 8rem;
  display: block;
  border-radius: 1rem;
  background: var(--background-primary);
  box-shadow: 0px 0px 0px 1px #282828;
  margin-bottom: 2rem;
  border-style: none;
  transition: ease 0.5s;
  cursor: pointer;
}

.searchContainer button:hover,
.searchContainer button:active,
.searchContainer button:focus,
.searchContainer button:focus-visible {
  outline: none;
  background: rgb(255, 174, 0) 100%;
}

.statsContainer {
  color: var(--text-primary);
  transition: ease 0.5s;
  padding: 7.75rem 10rem 3rem 10rem;
  height: 100%;
  align-items: center;
  align-content: center;
  opacity: 1 !important;
}

.playerContent {
  gap: 2em;
  color: #707070;
  display: grid;
  grid-template-columns: 35% auto;
  height: 100%;
  align-items: center;
  align-content: center;
  opacity: 1 !important;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
}

.playerName,
.social {
  display: flex;
}

.playerName {
  gap: 2em;
}

.playerHeadStats {
  min-height: 4rem;
  min-width: 4rem;
  max-height: 4rem;
  max-width: 4rem;
  background: var(--background-primary);
  position: relative;
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
}

.nameContainer {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
  background: rgb(214, 108, 15);
  background: linear-gradient(
    90deg,
    rgba(214, 108, 15, 1) 0%,
    rgba(255, 187, 0, 1) 100%
  );
  color: white;
  position: relative;
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
  display: flex;
  align-items: center;
}

.social {
  height: 4rem;
  width: 100%;
  background: var(--background-secondary);
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
  display: flex;
  align-content: center;
  align-items: center;
}

.social a {
  height: 50%;
  width: 50%;
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(1016%)
    hue-rotate(149deg) brightness(106%) contrast(106%);
  opacity: 0.5;
  transition: ease 0.25s;
}

.social img {
  height: 100%;
  width: 100%;
}

.social a:hover {
  opacity: 1;
}

.memberRole {
  height: 4rem;
  width: 100%;
  background: var(--background-secondary);
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
  display: flex;
  align-content: center;
  align-items: center;
}

.memberRole div {
  margin: auto;
  display: flex;
  gap: 3px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(1016%)
    hue-rotate(149deg) brightness(106%) contrast(106%);
  align-content: center;
  align-items: center;
}

.information {
  width: 100%;
  background: var(--background-secondary);
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.informationContainer {
  width: 90%;
  padding: 1rem;
}

.information p {
  min-width: 50%;
  margin-block-start: 0.25rem;
  margin-block-end: 0.25rem;
}

.right {
  text-align: right;
}

.information hr {
  width: 100%;
  background-color: var(--background-lines);
  border-color: var(--background-lines);
}

.infoElement {
  width: 100% !important;
  justify-content: space-between;
  display: flex;
}

.title {
  height: 4rem;
  width: 100%;
  background: var(--background-secondary);
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 1px var(--background-lines);
  display: flex;
  align-content: center;
  align-items: center;
}

.title div {
  margin: auto;
  display: flex;
  gap: 3px;
}

.role img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(1016%)
    hue-rotate(149deg) brightness(106%) contrast(106%);
  opacity: 0.5;
}

.scrollBlock {
  opacity: 0;
  height: 250%;
  width: 80%;
  margin: auto;
}

.stats {
  height: 100%;
  background: #f2f2f2;
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 3px #ebebeb;
  overflow: auto;
}

.stats::-webkit-scrollbar {
  width: 8px;
  margin-right: 6px;
}

/* scrollbar itself */
.stats::-webkit-scrollbar-thumb {
  background-color: #babac07c;
  border-radius: 8px;
}

/* set button(top and bottom of the scrollbar) */
.stats::-webkit-scrollbar-button {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .playerContent {
    grid-template-columns: 1fr;
  }

  .stats {
    height: 70vh;
  }
}

@media only screen and (max-width: 850px) {
  .statsContainer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media only screen and (min-width: 2600px) {
  .searchContainer {
    font-size: 2rem;
  }

  .searchContainer input {
    padding: 2rem;
  }

  .searchContainer button {
    height: 8rem;
    width: 16rem;
  }

  .playerHeadStats {
    min-height: 8rem;
    min-width: 8rem;
    max-height: 8rem;
    max-width: 8rem;
  }

  .memberRole,
  .social,
  .title {
    height: 8rem;
    font-size: 2rem;
    gap: 1  rem;
  }

  .informationContainer {
    font-size: 2rem;
    padding: 2rem;
  }

  .memberRole img {
    height: 2rem;
    width: 2rem;
  }

  .nameContainer p {
    font-size: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .statsContainer {
    padding-top: 20vh;
  }
}

@media only screen and (min-width: 2000px) {
  .statsContainer {
    padding: 7.75rem 20rem 3rem 20rem;
  }
}
