/* don't display caption elements */
.popup-filesize, .popup-dimensions, .popup-date .relative-time, .popup-owner, .popup-keywords {
  display: none;
}

/* show caption date left bound */
.popup-date {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* move country to last but one row */
/* requires in index.php adding line:'country' => '101' */

.popup-country {
  order: 1; /* since all the other lines are un-ordered, 1 is sufficient to place it at bottom */
}

.popup-basename {
  order: 2; /* since all the other lines are un-ordered, 1 is sufficient to place it at bottom */
  font-size: .75rem; /* 12px */
  font-weight: normal;
}

/* put filename in brackets */

.popup-basename:before {
  content: "(";
}
.popup-basename:after {
  content: ")";
}

/* remove location indicator on preview images */
.files-icon-overlay {
  display: none;
}

/* define row size and space */
.list {
    --rows-size: 280px;
    --rows-space-factor: 20;
}

/* hide layout (display: none) menu */
#change-layout {
  display: true;
}
