.cmpt_element_file {
  position: relative;
  border-radius: 0.5em;
  border: 1px solid var(--pg-color-line-gray-soft);
  padding: 0.3125em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  max-width: 100%;
}
.cmpt_element_file__bottom {
  padding: 1em;
  flex-grow: 1;
}
.cmpt_element_file--wide {
  flex-direction: row;
}
.cmpt_element_file--gray {
  background-color: hsl(0deg, 7%, 97%);
}
.cmpt_element_file--white {
  background-color: hsl(0deg, 0%, 100%);
}
.cmpt_element_file--transparent {
  background-color: transparent;
}
.cmpt_element_file__badge {
  position: absolute;
  top: -1em;
  left: -0.5em;
  z-index: 1;
  font-weight: 500;
  font-size: 0.75em;
  padding: 0.2em 0.5em;
  border-radius: 0.5em;
  display: inline-block;
}
.cmpt_element_file__badge--new {
  color: var(--pg-color-secondary);
  background-color: hsl(115deg, 48%, 91%);
  border: 1px solid hsl(114deg, 38%, 89%);
}
.cmpt_element_file__badge--updated {
  color: var(--pg-color-main);
  background-color: hsl(208deg, 46%, 93%);
  border: 1px solid color-mix(in hsl, var(--pg-color-main), transparent 85%);
}

.cmpt_element_file_info {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 1.25em;
}
.cmpt_element_file_info--wide {
  padding: 0.625em 1.25em;
  gap: 0.5em;
}
.cmpt_element_file_info__title {
  font-size: 1em;
  color: var(--pg-color-main);
  font-weight: 700;
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
  word-break: break-word;
}
.cmpt_element_file_info__description {
  font-size: 0.875em;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.cmpt_element_file_info_tags {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
  margin: 0;
  padding: 0;
}
.cmpt_element_file_info_tags__item {
  font-size: 0.75em;
  opacity: 0.5;
}

.cmpt_element_file_top {
  border-radius: 0.5em;
  background-color: white;
  border: 1px solid var(--pg-color-line-gray-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.cmpt_element_file_top--wide {
  width: 5em;
  flex-shrink: 0;
}
.cmpt_element_file_top__infoline {
  font-size: 0.75em;
  opacity: 0.5;
  padding: 1em;
}
.cmpt_element_file_top__infoline--wide {
  display: none;
}
.cmpt_element_file_top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10em;
}
.cmpt_element_file_top__icon--wide {
  height: auto;
  font-size: 0.5em;
  flex-grow: 1;
}
.cmpt_element_file_top__action {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  z-index: 1;
}

.cmpt_element_file_icon {
  font-size: 3em;
  position: relative;
}
.cmpt_element_file_icon::after {
  top: -0.5em;
  right: -0.5em;
  font-size: 0.3125em;
}
.cmpt_element_file_icon--wide::after {
  top: -1.5em;
  right: -1.5em;
  font-size: 0.53125em;
}
.cmpt_element_file_icon--close::after, .cmpt_element_file_icon--open::after {
  position: absolute;
  display: block;
  font-family: var(--pg-font-family-awesome);
  font-weight: 900;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 0;
  color: white;
}
.cmpt_element_file_icon--close::after {
  content: "\f30d";
  background-color: rgb(222, 0, 71);
}
.cmpt_element_file_icon--open::after {
  content: "\f13e";
  background-color: var(--pg-color-secondary);
}

.cmpt_element_file_top_actions {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.cmpt_element_file_top_actions__item {
  display: inline-block;
}

.cmpt_element_file_top_action_button {
  position: relative;
  border-radius: 0.25em;
  border: 1px solid var(--pg-color-line-gray-soft);
  color: var(--pg-color-main);
  font-weight: 900;
  font-size: 0.8125em;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: white;
}
.cmpt_element_file_top_action_button--warning::before {
  content: "\f06a";
  font-family: var(--pg-font-family-awesome);
  font-weight: 900;
  font-size: 0.875em;
  color: var(--pg-color-sticker-online);
  position: absolute;
  top: -0.5em;
  right: -0.5em;
}
.cmpt_element_file_top_action_button--disabled {
  color: grey;
}

.cmpt_element_file_info_bottom {
  display: flex;
  gap: 0.5em 2em;
  flex-wrap: wrap;
}
.cmpt_element_file_info_bottom__autor, .cmpt_element_file_info_bottom__last_update {
  display: none;
  font-size: 0.75em;
  opacity: 0.5;
  white-space: nowrap;
}
.cmpt_element_file_info_bottom__autor--wide, .cmpt_element_file_info_bottom__last_update--wide {
  display: block;
}

.btn_lf_dropdown {
  box-shadow: 7px 8px 11px -11px hsl(235deg, 15%, 31%);
}
.btn_lf_dropdown__item:not(:last-child) {
  border-bottom: 1px solid hsl(206deg, 44%, 94%);
}
.btn_lf_dropdown__link {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 1em;
  color: var(--pg-color-main);
  text-decoration: none;
  font-size: 0.875em;
  padding: 0.5em 1em;
  white-space: nowrap;
}
.btn_lf_dropdown__link:hover {
  background-color: hsl(198deg, 87%, 97%);
}
.btn_lf_dropdown__icon {
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5em;
}
.btn_lf_dropdown__icon--dark {
  background-color: hsl(198deg, 87%, 97%);
}
.btn_lf_dropdown__label {
  display: flex;
  gap: 3em;
  justify-content: space-between;
  align-items: center;
}
.btn_lf_dropdown__lock {
  font-weight: 900;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background-color: rgb(222, 0, 71);
  font-size: 0.9em;
}
.btn_lf_dropdown__text {
  flex-grow: 1;
}