.lg-box {
  cursor: pointer;
  background: transparent;
  border-top: #e0ae9cb8;
  box-shadow: none;
  max-width: 300px;
  min-width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}
.lg-box .title {
  background-color: #9f611288;
  height: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid black;
  padding: 5%;
}
.lg-box .info {
  height: 150px;
  background-color: #9f611288;
  width: 98%;
  margin: 0 1%;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-areas: "icon description" "label label";
  border-radius: 0 0 10px 10px;
  align-items: center;
}
.lg-box .info .description {
  grid-area: description;
  text-align: center;
}
.lg-box .info .box-icon {
  grid-area: icon;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lg-box .info .box-icon i {
  font-size: 40px;
}
.lg-box .info table {
  grid-area: label;
  background-color: white;
  color: #222222;
  border-radius: 8px;
  height: 78%;
  margin: 4%;
  overflow: hidden;
}
.lg-box .info table td {
  font-size: 0.8em;
}
.lg-box .info table .key {
  color: #222222;
  text-align: left;
  padding-right: 5px;
  min-width: 75px;
}

.lg-box:hover {
  transform: translateY(-10px) translateX(-10px);
}
.lg-box:hover .info {
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.75);
}

.document {
  height: 50px;
  margin: 10px;
  display: grid;
  max-width: 300px;
  min-width: 300px;
  grid-template: 1fr/50px auto;
  grid-gap: 25px;
  align-items: center;
  cursor: pointer;
}
.document figure img {
  max-height: 50px;
}
.document .document-name {
  text-align: left;
}

.document:hover {
  transform: scale(1.05);
}

.document {
  height: 50px;
  margin: 10px;
  display: grid;
  grid-template: 1fr/50px auto;
  grid-gap: 25px;
  align-items: center;
  cursor: pointer;
}
.document figure img {
  max-height: 50px;
}
.document .document-name {
  text-align: left;
}

.document:hover {
  transform: scale(1.05);
}

.pdf-document, .pdf-document-empty {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.pdf-document figure, .pdf-document-empty figure {
  padding: 10px;
}
.pdf-document figure img, .pdf-document-empty figure img {
  width: 50px;
}
.pdf-document .pdf-description, .pdf-document-empty .pdf-description {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-info {
  margin-top: 20px;
  padding: 20px 0;
  background-color: #9f611288;
}
.box-info table.table-info {
  width: 100%;
  max-width: 100%;
  font-weight: 900;
  font-size: 2em;
  border: 2px solid black;
  border-radius: 10px;
}
.box-info table.table-info td {
  border: none;
}
.box-info table.box-info-label {
  width: 90%;
  margin: 0 auto;
  height: 250px;
  border-radius: 15px;
  background-color: white;
  padding: 5%;
  color: black;
}
.box-info table.box-info-label td.key {
  color: black;
  padding-left: 10px;
}

.folder-info {
  margin-top: 20px;
  padding: 20px 0;
  background-color: #fec74288;
}
.folder-info table.table-info {
  width: 100%;
  max-width: 100%;
  font-weight: 900;
  font-size: 2em;
  border: 2px solid black;
  border-radius: 10px;
}
.folder-info table.table-info td {
  border: none;
}
.folder-info table.box-info-label {
  width: 90%;
  margin: 0 auto;
  height: 250px;
  border-radius: 15px;
  background-color: white;
  padding: 5%;
  color: black;
}
.folder-info table.box-info-label td.key {
  color: black;
  padding-left: 10px;
}

.val-bar-code {
  margin: 0 auto;
}

#box-history, #folder-history {
  height: 506px;
}

.documents-container {
  height: 506px;
  width: 100%;
  background-color: silver;
  margin-bottom: 15px;
  padding: 20px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.images-container {
  height: 506px;
  width: 100%;
  background-color: silver;
  margin-bottom: 15px;
  padding: 20px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 50px;
}

.document-modal-content {
  display: grid;
  grid-template-columns: 400px auto;
}
.document-modal-content #document-info {
  padding: 10px;
}
.document-modal-content #document-info td {
  padding: 5px;
}
.document-modal-content #document-info td.key {
  font-size: 0.8em;
  font-weight: 900;
}
@keyframes truck-open {
  from {
    grid-template-areas: "image title" "description description" "buttons buttons";
    height: 80px;
    width: 80px;
    grid-template-columns: 80px;
    grid-template-rows: 80px;
    justify-items: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
  }
  to {
    grid-template-areas: "image title title" "description description description" "buttons buttons buttons";
    width: 600px;
    height: 400px;
    grid-template-rows: 80px auto;
    grid-template-columns: 80px auto 50px;
    overflow: initial;
    overflow-y: auto;
    padding: 1%;
  }
}
@keyframes truck-close {
  from {
    grid-template-areas: "image title title" "description description description" "buttons buttons buttons";
    width: 600px;
    height: 400px;
    grid-template-rows: 80px auto;
    grid-template-columns: 80px auto 50px;
    overflow: initial;
    overflow-y: auto;
    padding: 1%;
  }
  to {
    grid-template-areas: "image title" "description description" "buttons buttons";
    height: 80px;
    width: 80px;
    grid-template-columns: 80px;
    grid-template-rows: 80px;
    justify-items: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
  }
}
.truck {
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  background-color: #000000cc;
  color: white;
  border-radius: 20px 0 0 20px;
  display: grid;
  grid-template-areas: "image title" "description description" "buttons buttons";
  height: 80px;
  width: 80px;
  grid-template-columns: 80px;
  grid-template-rows: 80px;
  justify-items: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.truck img {
  grid-area: image;
  width: 50px;
  margin: auto;
  cursor: pointer;
}
.truck h2 {
  grid-area: title;
  font-weight: 900;
}
.truck .list {
  grid-area: description;
  height: 100%;
  width: 100%;
  background-color: rebeccapurple;
  overflow-y: auto;
}
.truck .list .table {
  width: 100%;
}
.truck .list .table i {
  color: #b49130;
  font-size: 1.4em;
}
.truck .buttons {
  width: 100%;
  grid-area: buttons;
  display: flex;
  justify-content: flex-end;
}
.truck .buttons button {
  background-color: transparent;
  font-size: 1.2em;
  outline: none;
  border-radius: 20px;
  padding: 5px 10px;
}

.content {
  padding: 0 !important;
}

.box {
  margin-bottom: 0 !important;
}

.box-body {
  width: 100%;
  height: calc(100vh - 105px);
  display: grid;
  grid-template: 41px calc(100% - 41px)/calc(100% - 350px) 350px;
  grid-template-areas: "files-container buttons" "files-container boxes-container";
}
.box-body .files-container {
  grid-area: files-container;
  background-color: silver;
}
.box-body .buttons {
  grid-area: buttons;
  background-color: silver;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.box-body .buttons a {
  cursor: pointer;
  background-color: #00a65a;
  padding: 4px 12px;
  color: white;
  font-size: 10pt;
  font-weight: 300;
  border-radius: 7px;
  box-shadow: 10px -5px 5px -4px rgba(0, 0, 0, 0.21);
}
.box-body .buttons a:active {
  transform: scale(0.9);
}
.box-body .boxes-container {
  grid-area: boxes-container;
  background-color: silver;
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}
.box-body #in-box .result, .box-body #out-box .result {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  overflow-y: auto;
  height: calc(100vh - 155px);
}

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