.league_table_wrap {
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.league_table_wrap::-webkit-scrollbar {
  height: 5px;
}

.league_table_wrap::-webkit-scrollbar-thumb {
  background-color: #fe5900;
}

.league_table_wrap::-webkit-scrollbar-track {
  background-color: rgb(255, 172, 75);
}

.league_table {
  /* width: 100%;
  table-layout: fixed; */
  width: 630px;
  /* table-layout: fixed; */
}

.league_table_head_point {
  padding: 8px;
}

.league_table_head_point_text {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.league_table_body_line_active {
  background: rgb(255, 172, 75);
}

.league_table_body_point {
  padding: 8px;
}

.league_table_body_point_text {
  font-size: 14px;
  font-weight: 700;
  color: rgb(3, 5, 35);
}

.league_table_body_info_link {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgb(3, 5, 35);
  transition: ease 0.5s;
}

.league_table_body_info_link:hover {
  color: rgb(255, 172, 75);
}

.league_table_body_info_link_active {
  color: #ffffff;
}

.league_table_body_info_link_active:hover {
  color: #ffffff;
}

.league_table_body_info_link_img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.league_table_body_info_link_title {
  display: none;
  /* font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.league_table_head td:first-child,
.league_table_body td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 75px;
}

.league_table_head td:nth-child(2),
.league_table_body td:nth-child(2) {
  position: sticky;
  left: 75px;
  z-index: 3;
  width: 75px;
}

@media screen and (min-width: 768px) {
  .league_table {
    width: 930px;
  }

  .league_table_body_info_link {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    color: rgb(3, 5, 35);
    transition: ease 0.5s;
  }

  .league_table_body_info_link_title {
    font-size: 16px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* @media screen and (max-width: 1023px) {
  .league_table {
    width: 1000px;
  }
} */

@media screen and (min-width: 1024px) {
  .league_table {
    width: 100%;
  }

  .league_table_head_point {
    padding: 8px;
  }

  .league_table_head_point_text {
    font-size: 20px;
  }

  .league_table_body_point {
    padding: 16px;
  }

  .league_table_body_point_text {
    font-size: 18px;
  }

  .league_table_body_info_link_img {
    height: 30px;
    width: 30px;
  }

  .league_table_body_info_link_title {
    font-size: 20px;
  }
}
