* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #ffffff;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
}

.panel {
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  color: #20234a;
}

input[type=text], input[type=password], input[type=email] {
  display: inline-block;
  border-radius: 5px;
  padding: 7px 5px;
  font-size: 1.4rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5) inset;
  border: none;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  input[type=text], input[type=password], input[type=email] {
    padding: 15px 10px;
  }
}

.button, button, input[type=submit] {
  font-size: 1.4rem;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 15px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3) inset;
  cursor: pointer;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: white;
  border: none;
}
@media only screen and (max-width: 768px) {
  .button, button, input[type=submit] {
    padding: 15px;
  }
}
.button:hover, button:hover, input[type=submit]:hover {
  background-color: #1BA4A2;
  color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3) inset;
}

#footer {
  font-size: 12px;
}

label {
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.contentContainer .storageTitle {
  padding: 10px;
  margin-bottom: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.contentContainer .storageTitle .logoutBtn {
  position: absolute;
  right: 15px;
  top: 11px;
  border: 2px solid #d9d9d9;
  background-color: #e9e9e9;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
}
.contentContainer .storageTitle .logoutBtn::after {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 3px;
  border-top: 2px solid #fff;
  transform-origin: left top;
  transform: rotate(45deg);
}
.contentContainer .storageTitle .logoutBtn::before {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 14px;
  border-left: 2px solid #fff;
  transform-origin: left top;
  transform: rotate(45deg);
}
.contentContainer .storageBody {
  display: flex;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody {
    display: block;
    padding: 0;
  }
}
.contentContainer .storageBody .storageMenu {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody .storageMenu {
    width: 100%;
    max-width: none;
  }
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody .storageMenu .folderList {
    display: flex;
    width: 100%;
    overflow-y: auto;
  }
}
.contentContainer .storageBody .storageMenu .folderList .folder {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  padding: 10px 5px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody .storageMenu .folderList .folder {
    white-space: nowrap;
    margin-right: 10px;
    padding: 15px;
  }
  .contentContainer .storageBody .storageMenu .folderList .folder:last-child {
    margin-right: 0;
  }
}
.contentContainer .storageBody .storageMenu .folderList .folder:hover {
  background-color: #f7f8fa;
}
.contentContainer .storageBody .storageMenu .folderList .folder .unlocked {
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url("/images/icon/unlocked.png");
  background-size: 100% 100%;
}
.contentContainer .storageBody .storageMenu .folderList .folder .locked {
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url("/images/icon/locked.png");
  background-size: 100% 100%;
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody .storageMenu {
    width: 100%;
  }
}
.contentContainer .storageBody .storageMenu .storageCtrl {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody .storageMenu .storageCtrl {
    margin: 10px;
  }
}
.contentContainer .storageBody .storageMenu .userInfo {
  font-size: 12px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .contentContainer .storageBody .storageMenu .userInfo {
    display: none;
  }
}

.folderContents {
  width: 100%;
}
.folderContents .folderHeader {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
  position: sticky;
  top: 0;
  background-color: white;
}
@media only screen and (max-width: 768px) {
  .folderContents .folderHeader {
    padding: 10px;
  }
}
.folderContents .folderHeader .folderInfo {
  padding: 5px 0;
}
.folderContents .folderHeader .folderCtrl {
  display: none;
  margin-bottom: 10px;
}
.folderContents .folderHeader .folderCtrl.show {
  display: flex;
}
.folderContents .folderHeader .folderCtrl .button {
  margin-right: 10px;
  white-space: nowrap;
}
.folderContents .folderHeader .folderCtrl .button:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .folderContents .folderHeader .folderCtrl {
    display: none;
    width: 100%;
    overflow-y: auto;
  }
  .folderContents .folderHeader .folderCtrl.show {
    display: flex;
  }
}
.folderContents .folderHeader .folderCtrl .shareBtn {
  margin-right: 10px;
}
.folderContents .name {
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
}
.folderContents .name:before {
  display: none;
  vertical-align: middle;
  margin-right: 10px;
  content: "";
  background-size: 1.2em 1.2em;
  background-repeat: no-repeat;
  width: 1.2em;
  height: 1.2em;
}
.folderContents .name[data-icon=lock]:before {
  display: inline-block;
  background-image: url("/images/icon/locked.png");
}
.folderContents .name[data-icon=unlock]:before {
  display: inline-block;
  background-image: url("/images/icon/unlocked.png");
}

.hashInfo .label {
  display: inline-flex;
  margin: 0 5px 5px 0;
  font-size: 12px;
}
.hashInfo .label .labelTitle {
  background-color: #1BA4A2;
  border: 1px solid #1BA4A2;
  color: white;
  width: 80px;
  display: inline-block;
  padding: 5px;
  border-radius: 5px 0 0 5px;
  min-width: 7em;
}
.hashInfo .label .labelValue {
  word-break: break-word;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 0 5px 5px 0;
  border: 1px solid #1BA4A2;
}

.fileList .file {
  padding: 10px;
  background-color: #fafafa;
  margin-bottom: 10px;
}
.fileList .file a {
  color: #333;
}
.fileList .file a:hover {
  color: #1BA4A2;
}
.fileList .file .name {
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
}
.fileList .file .name:before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  content: "";
  background-image: url("/images/icon/file.png");
  background-size: 2em 2em;
  background-repeat: no-repeat;
  width: 2em;
  height: 2em;
}
.fileList .file .name[data-icon=zip]:before {
  background-image: url("/images/icon/zip.png");
}
.fileList .file .name[data-icon=pdf]:before {
  background-image: url("/images/icon/pdf.png");
}
.fileList .file .name[data-icon=txt]:before {
  background-image: url("/images/icon/txt.png");
}
.fileList .file .name[data-icon=xlsx]:before {
  background-image: url("/images/icon/xlsx.png");
}
.fileList .file .name[data-icon=docx]:before {
  background-image: url("/images/icon/docx.png");
}
.fileList .file .name[data-icon=png]:before {
  background-image: url("/images/icon/png.png");
}
.fileList .file .name[data-icon=jpg]:before {
  background-image: url("/images/icon/jpg.png");
}
.fileList .file .name[data-icon=jpeg]:before {
  background-image: url("/images/icon/jpg.png");
}
.fileList .file .name[data-icon=heic]:before {
  background-image: url("/images/icon/heic.png");
}
.fileList .file .ctrl {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
}
.fileList .file .ctrl .button {
  white-space: nowrap;
  margin-right: 8px;
}
.fileList .file .ctrl .button:last-child {
  margin-right: 0;
}
.fileList .file .dlInfo {
  font-size: 13px;
  margin: 10px 0;
}
.fileList .file .dlInfo .dlCount {
  display: none;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .fileList .file .dlInfo .dlCount {
    display: none;
    margin-right: 0;
  }
}
.fileList .file .dlInfo .timeLimit {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .fileList .file .dlInfo .timeLimit {
    display: block;
  }
}

/*# sourceMappingURL=common.css.map */
