#main_container {
  padding-top: 103px;
}

#box_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

#box_title h1 {
  font-size: 24px;
}

.table_index {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.table_index button {
  border: 0px;
  border-radius: 50px;
  background-color: var(--color-greyLight);
  color: var(--color-greyMedium);
  padding: 6px 12px;
  font-size: 12px;
  white-space: nowrap;
}

.table_index button.selected {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.table_index img {
  height: 16px;
  margin-left: 4px;
  margin-right: 4px;
}

.box_table {
  display: table;
  border: 1px solid var(--color-greyLightMedium);
  border-radius: 12px;
  overflow: hidden;
  border-spacing: 0;
  font-size: 12px;
}

.table_name {
  margin-bottom: 4px !important;
}

.table_info {
  font-size: 12px;
  margin-bottom: 16px !important;
  color: var(--color-greyMedium);
}

.table_title,
.table_row {
  display: table-row;
}

.table_title > div,
.table_row > div {
  display: table-cell;
  padding: 8px 12px;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-greyLightMedium);
  vertical-align: middle;
  min-width: 60px;
  position: relative;
}

.table_row > div img {
  height: 20px;
  margin-right: 6px;
  vertical-align: bottom;
}

.table_row > div img.icon_best {
  height: 20px;
  position: absolute;
  right: 0px;
  top: 6px;
  z-index: 999;
}

.table_title > div:not(:first-child),
.table_row > div:not(:first-child) {
  border-left: 1px solid var(--color-greyLightMedium);
}

.box_table .table_row:last-child > div {
  border-bottom: none;
}

.table_title {
  background-color: var(--color-greyLight);
  color: var(--color-greyMedium);
}

.table_title h6 {
  font-size: 12px;
}

.box_table .rank {
  text-align: center;
}

.box_table .box_text {
  width: 320px;
  white-space: normal;
}

.box_table .box_span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.box_table span {
  display: block;
  background-color: var(--color-greyLight);
  border-radius: 8px;
  padding: 4px 8px;
  width: max-content;
  max-width: 240px;
  white-space: normal;
}

.box_table .title {
  width: 116px;
  background-color: var(--color-greyLight);
  white-space: normal;
}

.box_table .title h6 {
  font-size: 12px;
  color: var(--color-greyMedium);
}

@media (max-width: 768px) {
  .box_table {
    table-layout: fixed;
    width: 100%;
  }

  .box_table .box_text {
    width: 100%;
  }

  .box_table .box_span {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .box_table span {
    max-width: 100%;
  }
}
