/***** Files **************************************/
.FilesView {
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
  max-width: 1000px;
  margin: 20px auto 0 auto;
}
.FilesView_File {
  position: relative;
  height: auto;
  overflow: hidden;
  margin: 20px 20px;
  padding: 20px 30px;
  line-height: 1.3em;
  border-radius: 15px;
  background: white;
  cursor: pointer;
  margin: 10px 0;
  transition: transform 0.2s;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px), (max-height: 480px) {
  .FilesView_File {
    padding: 12px;
    margin: 12px;
  }
}
.FilesView_File:hover {
  box-shadow: #0006 0px 0px 16px;
  transform: scale(1.01);
}
.FilesView_File_Svg {
  width: 25px;
  height: 25px;
}
.FilesView_File_Title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: pre-line;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: 2.8em;
  margin-right: 20px;
}
.FilesEditView {
  width: 100%;
  overflow: hidden;
}
.FilesEditView_Add {
  position: absolute;
  left: 0;
  top: -10px;
  height: 40px;
  margin: 20px 0 10px 20px;
  padding: 10px;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.FilesEditView_Add_Svg {
  position: relative;
  width: 20px;
  height: 20px;
}
.FilesEditView_Add_Text {
  padding: 0 10px 0 0;
  font-size: 18px;
}
.FilesEditView_Add-scroll {
  box-shadow: #0008 0 0 10px;
}
.FilesEditView_Add-scroll .FilesEditView_Add_Text {
  display: none;
}
.FilesEditView_Items {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding-top: 60px;
  overflow-y: auto;
}
.FilesEditView_File {
  position: relative;
  height: auto;
  overflow: hidden;
  margin: 20px 20px;
  padding: 20px 30px;
  line-height: 1.3em;
  border-radius: 15px;
  background: white;
  cursor: pointer;
  display: grid;
  grid-template-columns: 40px 400px 400px auto;
  align-items: center;
  gap: 20px;
}
@media (max-width: 480px), (max-height: 480px) {
  .FilesEditView_File {
    padding: 12px;
    margin: 12px;
  }
}
.FilesEditView_File:hover {
  background: #eee;
}
.FilesEditView_File_Svg {
  width: 25px;
  height: 25px;
  fill: #333;
}
.FilesEditView_File_Title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.FileShow {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f4f4f4;
  overflow: hidden;
}
.FileShow_File {
  position: absolute;
  left: 20px;
  top: 20px;
  right: 20px;
  bottom: 20px;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
  padding: 40px 10px 10px 10px;
  transition: opacity 0.5s;
  opacity: 0;
}
.FileShow_File_Close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 25px;
  height: 25px;
}
.FileShow_File_Title {
  position: absolute;
  top: 10px;
  left: 20px;
  right: 150px;
  height: 25px;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.FileShow_File_FileName {
  display: none;
}
.FileShow_File_Date {
  display: none;
}
.FileShow_File_IFrame {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.FileEditDialog {
  height: 400px;
}
.FileEditDialog_Created {
  position: absolute;
  top: 10px;
  right: 25px;
}
.FileEditDialog_Area {
  min-width: 80px;
  margin-right: 10px;
}
