body[data-page="files"] .library-toolbar {
  grid-template-columns: minmax(180px, 0.72fr) auto 165px auto;
  align-items: center;
}
body[data-page="files"] .library-toolbar > label {
  order: 1;
}
body[data-page="files"] .library-toolbar > [data-choose-files] {
  order: 2;
  white-space: nowrap;
}
body[data-page="files"] .library-toolbar > [data-library-sort] {
  order: 3;
}
body[data-page="files"] .library-toolbar > a {
  order: 4;
  white-space: nowrap;
}
.library-toolbar select {
  appearance: none;
  padding: 0 36px 0 13px !important;
  border: 1px solid #d7e1ee !important;
  background-color: #fff !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c7890 50%),
    linear-gradient(135deg, #6c7890 50%, transparent 50%) !important;
  background-position:
    calc(100% - 16px) 18px,
    calc(100% - 11px) 18px !important;
  background-size:
    5px 5px,
    5px 5px !important;
  background-repeat: no-repeat !important;
  color: #34425c;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.library-toolbar select:hover {
  border-color: #a8bfe9 !important;
}
.library-toolbar select:focus {
  outline: 0;
  border-color: #6f9df2 !important;
  box-shadow: 0 0 0 3px #2969e817;
}
.library-toolbar select option {
  background: #fff;
  color: #101c36;
}
.library-toolbar label:focus-within {
  border-color: #6f9df2;
  box-shadow: 0 0 0 3px #2969e817;
}
@media (max-width: 900px) {
  body[data-page="files"] .library-toolbar {
    grid-template-columns: minmax(150px, 1fr) auto 130px;
  }
  body[data-page="files"] .library-toolbar > a {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  body[data-page="files"] .library-toolbar {
    grid-template-columns: 1fr auto;
  }
  body[data-page="files"] .library-toolbar > [data-library-sort] {
    grid-column: 1/-1;
    width: 100%;
  }
  body[data-page="files"] .library-toolbar > a {
    grid-column: 1/-1;
  }
}
