.player_info_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.player_info_link_wrap {
  border: 2px solid #adccf9;
}

.player_info_link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  color: #040113;
  transition: all 0.5s ease;
}

.player_info_link:hover {
  color: #fc0307;
  background-color: #adccf9;
}

.player_info_link_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: #adccf9;
  padding: 16px;
}

.player_info_title {
  font-size: 16px;
  font-weight: 700;
}

.player_info_subtitle {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.player_info_text {
  font-size: 16px;
  font-weight: 500;
  color: #5b5a5f;
}

.player_link_img_wrap {
  position: relative;
  aspect-ratio: 14/14;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.player_link_img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.9s ease-in-out;
}

.player_info_link:hover .player_link_img {
  transform: scale(1.04);
}

.player_link_number {
  position: absolute;
  top: 20%;
  left: 5%;
  font-size: 75px;
  font-weight: 700;
}

.player_info_bio_wrap {
  border: 2px solid #adccf9;
  padding: 16px;
}

.player_info_bio_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #adccf9;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.player_info_bio_item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.player_info_bio_item_title {
  font-size: 16px;
  font-weight: 700;
  color: #040113;
}

.player_info_bio_item_subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #5b5a5f;
}

.player_info_bio_title {
  font-size: 16px;
  font-weight: 700;
  color: #040113;
  text-align: center;
  text-transform: uppercase;
}

.player_info_bio_text {
  font-size: 11px;
  font-weight: 500;
  color: #5b5a5f;
}

.stats_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: 2px solid #adccf9;
  padding: 16px;
}

.stats_circle_wrap {
  border: 5px solid;
  border-left-color: rgb(50, 167, 44);
  border-bottom-color: rgb(50, 167, 44);
  border-right-color: rgb(203, 51, 59);
  border-top-color: rgb(193, 194, 213);
  border-radius: 50%;
  height: 130px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stats_circle_subtitle {
  font-size: 20px;
  font-weight: 600;
  color: rgb(26, 49, 60);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.stats_circle_subtitle_accent {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.stats_circle_list {
  display: none;
}

.stats_right_wrap {
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  gap: 16px;
}

.stats_info_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats_info_title {
  font-size: 18px;
  font-weight: 700;
}

.stats_info_subtitle {
  font-size: 11px;
  font-weight: 600;
  color: rgb(26, 49, 60);
}

.stats_info_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(165, 165, 165);
}

.stats_info_card_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats_info_card_wrap {
  height: 15px;
  width: 10px;
}

@media screen and (min-width: 768px) {
  .player_info_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .player_link_img_wrap {
    aspect-ratio: 8/10;
  }

  .player_link_number {
    top: 15%;
  }

  .stats_right_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .player_info_title {
    font-size: 18px;
  }

  .player_info_subtitle {
    font-size: 22px;
  }

  .player_info_text {
    font-size: 18px;
  }

  .player_link_number {
    font-size: 85px;
  }

  .player_info_bio_item_title {
    font-size: 18px;
  }

  .player_info_bio_item_subtitle {
    font-size: 18px;
  }

  .player_info_bio_title {
    font-size: 18px;
  }

  .player_info_bio_text {
    font-size: 13px;
  }

  .stats_circle_wrap {
    height: 150px;
    width: 150px;
  }

  .stats_circle_subtitle {
    font-size: 22px;
  }

  .stats_circle_subtitle_accent {
    font-size: 18px;
  }

  .stats_info_title {
    font-size: 20px;
  }

  .stats_info_subtitle {
    font-size: 13px;
  }
  .stats_info_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .player_info_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .player_info_link_wrapper {
    padding: 24px;
  }

  .player_link_img_wrap {
    aspect-ratio: 4/6;
  }

  .player_link_number {
    top: 20%;
  }

  .player_info_bio_wrap {
    padding: 24px;
  }

  .player_info_bio_item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .stats_wrapper {
    grid-template-columns: 30% 70%;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
  }

  .stats_left_wrap {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .stats_circle_list {
    width: 40%;
    display: block;
  }

  .stats_circle_item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(0, 0, 64, 0.35);
  }

  .stats_circle_item:last-child {
    border: none;
  }

  .stats_circle_item_subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgb(26, 49, 60);
  }

  .stats_circle_item_wrap {
    border-radius: 50%;
    height: 8px;
    width: 8px;
  }

  .stats_circle_item_text {
    font-size: 15px;
    font-weight: 500;
    color: rgb(26, 49, 60);
  }

  .stats_right_wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .stats_info_wrap {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1440px) {
  .player_info_title {
    font-size: 20px;
  }

  .player_info_subtitle {
    font-size: 24px;
  }

  .player_info_text {
    font-size: 20px;
  }

  .player_link_number {
    font-size: 95px;
  }

  .player_info_bio_item_title {
    font-size: 20px;
  }

  .player_info_bio_item_subtitle {
    font-size: 20px;
  }

  .player_info_bio_title {
    font-size: 20px;
  }

  .player_info_bio_text {
    font-size: 15px;
  }

  .stats_info_title {
    font-size: 24px;
  }

  .stats_info_subtitle {
    font-size: 15px;
  }
  .stats_info_text {
    font-size: 15px;
  }

  .stats_info_card_wrap {
    height: 20px;
    width: 15px;
  }
}

.player_table_wrapper {
  border: 2px solid #adccf9;
}

.player_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.player_table_wrap::-webkit-scrollbar {
  height: 4px;
}

.player_table_wrap::-webkit-scrollbar-thumb {
  background-color: #fc0307;
}

.player_table_wrap::-webkit-scrollbar-track {
  background-color: #fcfcfc;
}

.player_table {
  width: 710px;
  table-layout: fixed;
}

.player_table_head_line {
  background-color: #adccf9;
}

.player_table_head_point {
  padding: 8px;
}

.player_table_head_point_text {
  font-size: 16px;
  font-weight: 600;
  color: #040113;
  text-align: center;
}

.player_table thead td:nth-child(-n + 2) p {
  text-align: left;
}

.player_table_body_line {
  background-color: #ffffff;
  border-bottom: 2px solid #adccf9;
  transition: all 0.5s ease;
}

.player_table_body_line:last-child {
  border-bottom: none;
}

.player_table_body_line:hover {
  background-color: #d6e7ff;
}

.player_table_body_line_active {
  background-color: #d6e7ff;
}

.player_table_body_point {
  padding: 8px;
}

.player_table_body_point_text {
  font-size: 16px;
  font-weight: 500;
  color: #5b5a5f;
  text-align: center;
}

.player_table tbody td:first-child p {
  text-align: left;
}

.player_table_body_point_link {
  font-size: 16px;
  font-weight: 600;
  color: #5b5a5f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.9s ease;
}

.player_table_body_point_link:hover {
  color: #fc0307;
}

.player_table_body_line:hover .player_table_body_point_link {
  color: #fc0307;
}

.player_table_head_line td:first-child,
.player_table_body_line td:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
  width: 90px;
}

.player_table_head_line td:nth-child(2),
.player_table_body_line td:nth-child(2) {
  position: sticky;
  left: 90px;
  z-index: 3;
  width: 120px;
}

.player_table_head_line td:first-child,
.player_table_head_line td:nth-child(2) {
  background-color: #adccf9;
}

.player_table_body_line td:first-child,
.player_table_body_line td:nth-child(2) {
  background-color: #ffffff;
  transition: all 0.5s ease;
}

.player_table_body_line:hover td:first-child,
.player_table_body_line:hover td:nth-child(2) {
  background-color: #d6e7ff;
}

@media screen and (min-width: 768px) {
  .player_table {
    width: 930px;
  }

  .player_table_head_line td:nth-child(2),
  .player_table_body_line td:nth-child(2) {
    width: 170px;
  }
}

@media screen and (min-width: 1024px) {
  .player_table_head_point_text {
    font-size: 18px;
  }

  .player_table_body_point_text {
    font-size: 18px;
  }

  .player_table_body_point_link {
    font-size: 18px;
  }

  .player_table_head_line td:nth-child(2),
  .player_table_body_line td:nth-child(2) {
    width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .player_table {
    width: 100%;
  }

  .player_table_head_point {
    padding: 16px;
  }

  .player_table_body_point {
    padding: 16px;
  }
}

@media screen and (min-width: 1440px) {
}

.events_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.events_item {
  display: grid;
  overflow: hidden;
  background-color: #ffffff;
  border: 2px solid #adccf9;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  transition: all 0.9s ease;
}

.events_team_meet_info_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.events_team_meet_info_text {
  font-size: 14px;
  font-weight: 600;
  color: #5b5a5f;
  text-align: center;
}

.events_team_meet_link_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.events_team_meet_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #040113;
  transition: all 0.9s ease;
}

.events_team_meet_link:hover {
  color: #fc0307;
}

.events_team_meet_link_active {
  color: #23a455;
}

.events_team_meet_link_active:hover {
  color: #23a455;
}

.events_team_meet_link,
.events_vs,
.events_team_meet_score_wrap {
  flex: 1;
  text-align: center;
}

.events_team_meet_link_img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.events_team_meet_link_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.events_team_meet_score {
  font-size: 36px;
  font-weight: 900;
  color: #5b5a5f;
}

.events_link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #040113;
  text-transform: uppercase;
  margin: 0 auto;
  transition: all 0.9s ease;
}

.events_link:hover {
  color: #fc0307;
}

.events_team_meet_score_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

@media screen and (min-width: 768px) {
  .events_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .events_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
