.page {
  margin-top: 60px;
  flex-direction: column;
  position: absolute;
  place-content: center;
  width: calc(100% - 0px);
  height: auto;
}

@media (max-width: 767px) {
  .page {
    margin-top: 50px;
  }
}

.container {
  height: 320px;
  margin: 0 auto;
  width: 640px;
}
@media (max-width: 767px) {
  .container {
    margin-top: 50px;
    flex-direction: column;
    height: 100vh;
    width: 320px;
  }
}

.p-actiontext-edit {
  float: right;
  margin-left: 30px;
  font-weight: 700;
  color: rgb(38, 196, 38);
}

.p-actiontext-delete {
  float: right;
  margin-left: 30px;
  font-weight: 700;
  color: rgb(233, 141, 129);
}

.p-actiontext-file {
  float: right;
  margin-left: 30px;
  font-weight: 700;
  color: rgb(128, 161, 90);
}

.p-selectall {
  margin: 0;
  line-height: 1.6;
}

.ol-selectall {
  list-style: none;
  counter-reset: list;
  padding: 0 1rem;
}

.li-selectall {
  position: relative;
  counter-increment: list;
  max-width: 130rem; /* 박스폭 */
  margin: 1rem auto;
  padding: 2rem 1rem 1rem;
  box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--infolist-bg-color);
  background: linear-gradient(to left, var(--infolist-bg-color), #36424f);
}

.li-selectall::before {
  display: block;
  width: 100%;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}

/* 파일 선택  */
input[type="file"]::file-selector-button {
  width: 100px;
  line-height: 15px;
  font-weight: 500;
  font-size: 14px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #111111;
}

/* button-actionfileupload  */
.button-actionfileupload {
  background-color: #21914f;
  border: 1px solid #292828;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  padding: 6px 10px 7px;
  text-align: center;
  transition: box-shadow 0.05s ease-in-out, opacity 0.05s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100px;
}

/* button-edit  */
.button-edit {
  background-color: slategray;
  border: 1px solid #292828;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
  color: whitesmoke;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 12px;
  font-weight: 500;
  padding: 5px 10px 5px;
  text-align: center;
  transition: box-shadow 0.05s ease-in-out, opacity 0.05s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

/* button-delete  #cc7818 */
.button-delete {
  background-color: slategray;
  border: 1px solid #292828;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
  color: whitesmoke;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 12px;
  font-weight: 500;
  padding: 5px 10px 5px;
  text-align: center;
  transition: box-shadow 0.05s ease-in-out, opacity 0.05s ease-in-out;
  width: 100%;
}

/* button-doc-download   */
.button-doc-download {
  background-color: steelblue;
  border: 1px solid #383232;
  float: right;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 3px 3px;
  color: whitesmoke;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  margin-right: 10px;
}
