body {
  font-size: 14px;
}

.folder_root {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.folder_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 24px;
  padding-bottom: 0;
  align-items: center;
}
.folder_content {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-sizing: border-box;
  padding: 24px;
  width: 100%;
  max-width: 1200px;
}
.folder_base-title {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.folder_base-infos {
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8b92;
}
.folder_bold {
  color: #2c2c2c;
  font-weight: 600;
}
.folder_link {
  color: #f67942;
  cursor: pointer;
}
.folder_link:hover {
  text-decoration: underline;
}

.folder_desc {
  line-height: 24px;
  margin-top: 24px;
  color: #8a8b92;
  display: flex;
  justify-content: center;
}
.folder_desc-inner {
  max-width: 100%;
}
.folder_desc-label {
  float: left;
  display: flex;
  margin-right: 8px;
  line-height: 1;
}
.folder_desc-label > span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.folder_desc-label > span:first-child {
  color: #fff;
  background: #f67942;
  border-radius: 4px 0 0 4px;
}
.folder_desc-label > span:last-child {
  color: #2c2c2c;
  background: rgba(246, 121, 66, 0.2);
  border-radius: 0 4px 4px 0;
}
.folder_table {
  margin-top: 24px;
}
.folder_pager {
  margin-top: 16px;
}

@media screen and (max-width: 749px) {
  .folder_body {
    padding: 0;
  }
  .folder_content {
    padding: 12px;
    border-radius: 0;
  }
  .folder_table-head {
    display: none;
  }
  .folder_table-body {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .folder_table-row {
    gap: 0 4px;
    padding-bottom: 8px;
    display: grid;
    grid-template-areas: 'a b b' 'a c d';
    grid-template-columns: 40px 1fr 1fr;
    grid-template-rows: 20px 20px;
    position: relative;
    color: #8a8b92;
  }
  .folder_table-row::before {
    content: '';
    grid-area: a;
  }
  .folder_table-row:not(:last-child) {
    border-bottom: 1px solid #f1f2f3;
  }
  .folder_table-row > .folder_table-cell:nth-child(1) {
    grid-area: b;
  }
  .folder_table-row > .folder_table-cell:nth-child(2) {
    grid-area: c;
  }
  .folder_table-row > .folder_table-cell:nth-child(3) {
    grid-area: d;
  }
  .folder_file-icon {
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    position: absolute;
  }
  .folder_file-name {
    color: #2c2c2c;
    pointer-events: none;
  }
  .folder_table-row-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .folder_pager-pc {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .folder_table-head,
  .folder_table-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
  }
  .folder_table-head {
    padding-bottom: 8px;
    border-bottom: 1px solid #dedede;
  }
  .folder_table-body {
    margin-top: 8px;
  }
  .folder_table-cell {
    min-height: 24px;
    padding: 5px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: #8a8b92;
    line-height: 1;
  }
  .folder_file {
    gap: 8px;
    display: flex;
    align-items: center;
  }
  .folder_file-icon {
    width: 24px;
    height: 24px;
  }
  .folder_file-name {
    cursor: pointer;
    color: #2c2c2c;
  }
  .folder_file-name:hover {
    color: #f67942;
    text-decoration: underline;
  }
  .folder_table-row-wrapper {
    display: none;
  }
  .folder_pager-mobile {
    display: none;
  }
}
