.player_title_img_wrapper {
  align-items: center;
  gap: 15px;
  display: flex;
  border-radius: 5px;
  background: #f6f6f6;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
}

.player_title_img {
  width: 100px;
  border-radius: 5px;
  overflow: hidden;
}

.player_stat_wrapper {
  border-radius: 5px;
  overflow: hidden;
  background: #f6f6f6;
  padding: 16px;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
}

.player_stat_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.player_stat_info_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.border_player_stat_info_wrap {
  border-bottom: 2px solid rgba(254, 89, 0, 0.5);
}

.player_stat_info_wrap_position {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.player_stat_info_wrapper_text {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(3, 5, 35);
}

.player_stat_info_wrapper_text_accent {
  font-size: 18px;
  font-weight: 700;
}

.player_stat_info_subwrap {
  position: relative;
}

.player_stat_info_subwrap:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  background: rgba(254, 89, 0, 0.5);
  height: 2px;
  width: 50%;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: calc(-5px / 2 - 2px / 2);
}

.player_stat_info_wrap_text {
  font-size: 12px;
  font-weight: 500;
  color: rgb(3, 5, 35);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  text-align: center;
}

.player_stat_info_wrap_text_accent {
  font-size: 14px;
  font-weight: 700;
  color: rgb(3, 5, 35);
  text-transform: capitalize;
}

.player_bio_wrapper {
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  overflow: hidden;
  padding: 16px;
  background: #f6f6f6;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.player_bio_wrap {
  width: 100%;
  position: relative;
}

.player_bio_wrap:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  background: rgba(254, 89, 0, 0.5);
  height: 5px;
  width: 100%;
  right: 0;
  left: 0;
  bottom: calc(-15px / 2 - 5px / 2);
}

.player_bio_title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: rgb(3, 5, 35);
  text-transform: uppercase;
}

.player_bio_text {
  font-size: 14px;
  font-weight: 500;
  color: rgb(105, 105, 105);
}

.player_table_wrap {
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.player_table_wrap::-webkit-scrollbar {
  height: 5px;
}

.player_table_wrap::-webkit-scrollbar-thumb {
  background-color: #fe5900;
}

.player_table_wrap::-webkit-scrollbar-track {
  background-color: rgb(255, 172, 75);
}

.player_table {
  width: 100%;
  table-layout: fixed;
}

.player_table_head_point {
  padding: 4px;
}

.player_table_head_point_text {
  font-size: 11px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.player_table_body_point {
  padding: 10px;
}

.player_table_body_point_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(3, 5, 35);
}

.player_table_body_point_link {
  font-size: 11px;
  font-weight: 600;
  color: rgb(254, 89, 0);
  text-transform: uppercase;
  transition: ease 0.5s;
}

.player_table_body_point_link:hover {
  color: rgb(255, 172, 75);
}

.player_table_head td:first-child,
.player_table_body td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 62px;
}

.player_table_head td:nth-child(2),
.player_table_body td:nth-child(2) {
  position: sticky;
  left: 62px;
  z-index: 3;
  width: 43px;
}

@media screen and (min-width: 576px) {
  .player_title_img_wrapper {
    gap: 20px;
  }

  .player_stat_wrap {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .border_bottom_none_mob {
    border-bottom: none;
  }

  .player_bio_wrapper {
    gap: 20px;
  }

  .player_bio_wrap:not(:last-child)::after {
    bottom: calc(-20px / 2 - 5px / 2);
  }
}

@media screen and (min-width: 768px) {
  .player_title_img_wrapper {
    padding: 18px;
  }

  .player_title_img {
    width: 125px;
  }

  .player_stat_wrapper {
    padding: 18px;
  }

  .player_stat_wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .player_stat_info_wrapper_text {
    font-size: 16px;
  }

  .player_stat_info_wrapper_text_accent {
    font-size: 20px;
  }

  .player_stat_info_wrap_text_accent {
    font-size: 16px;
  }

  .player_bio_wrapper {
    padding: 18px;
  }

  .player_bio_title {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .player_table {
    width: 1000px;
  }
}

@media screen and (min-width: 1024px) {
  .player_title_img_wrapper {
    gap: 25px;
  }

  .player_stat_wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .border_bottom_none_desk {
    border-bottom: none;
  }

  .player_bio_wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .player_bio_title {
    font-size: 18px;
  }

  .player_bio_text {
    font-size: 16px;
  }

  .player_bio_wrap:not(:last-child)::after {
    top: 0;
    bottom: 0;
    left: calc(100% + 25px / 2 - 5px / 2);
    width: 5px;
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
  .player_title_img_wrapper {
    padding: 20px;
  }

  .player_title_img {
    width: 150px;
  }

  .player_stat_wrapper {
    padding: 20px;
  }

  .player_stat_wrap {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 0;
  }

  .player_stat_info_wrap {
    padding: 0 20px;
  }

  .border_player_stat_info_wrap {
    border-bottom: none;
    border-right: 2px solid rgba(254, 89, 0, 0.5);
  }

  .player_stat_info_wrapper_text {
    font-size: 18px;
  }

  .player_stat_info_wrapper_text_accent {
    font-size: 25px;
  }

  .player_stat_info_subwrap:not(:last-child)::after {
    width: 100%;
  }

  .player_stat_info_wrap_text_accent {
    font-size: 18px;
  }

  .player_bio_wrapper {
    padding: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .player_title_img_wrapper {
    padding: 24px;
  }

  .player_title_img {
    width: 175px;
  }

  .player_stat_wrapper {
    padding: 24px;
  }

  .player_stat_info_wrap {
    padding: 0 25px;
  }

  .player_stat_info_wrapper_text_accent {
    font-size: 30px;
  }

  .player_bio_wrapper {
    padding: 24px;
  }

  .player_bio_title {
    font-size: 20px;
  }

  .player_bio_text {
    font-size: 18px;
  }
}
