.content_flashcards {
  height: calc(100vh - 135px);
  overflow-y: auto;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.content_flashcards .head__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
}
.content_flashcards .head__left {
  display: flex;
  align-items: center;
  flex: auto;
}
.content_flashcards .head__right {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  align-items: center;
  gap: 10px;
}

.flashcards_preview_grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 15px;
}

.flashcards_preview_grid_item {
  background: #f9f9f9;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
}
.flashcards_preview_grid_item.is--dummy {
  width: 100%;
  position: absolute;
  background-color: #fff;
  border-top: 1px solid #bfbfbf;
  z-index: 2000;
}
.flashcards_preview_grid_item.is--selected {
  opacity: 0.3;
}
.flashcards_preview_grid_item .preview_item_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 10px 10px 15px;
  background: rgb(239 142 45);
  background: #e6e6e6;
}

.flashcards_preview_grid_item .preview_item_bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px 20px;
}

.flashcards_preview_grid_item .preview_item_bottom > * {
  flex: 1;
}

.flashcards_preview_grid_item .preview_item_no {
  font-weight: bold;
  font-size: 2em;
  line-height: 1;
}

.flashcards_preview_grid_item .preview_item_actions {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.preview_item_actions button.has--icon{
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-indent: -99em;
  overflow: hidden;
  background-size: 1.4em;
  background-position: center;
  background-repeat: no-repeat;
}

.preview_item_actions button.icon--sort{
  background-image: url("../img/sort-drag-icon.svg");
}
.preview_item_actions button.icon--trash{
  background-image: url("../img/trash-icon.svg");
}

.flashcards_grid_actions{
  text-align: center;
  padding: 15px;
}
.flashcards_grid_actions button.has--icon{
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-indent: -99em;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.flashcards_grid_actions button.icon--add {
  width: 40px;
  height: 40px;
  background-size: 3.5em;
  background-position: -0.3em center;
  background-repeat: no-repeat;
  background-image: url("../img/add-circle-icon.svg");
}

.flashcards_preview_grid_item .preview_item_bottom label {
  display: block;
  font-weight: bold;
  opacity: 0.7;
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #222;
}

.flashcards_preview_grid_item textarea.preview_item_input,
.flashcards_preview_description textarea.preview_item_input {
  width: 100%;
  padding: 10px;
  resize: vertical;
  min-height: 5em;
  border: 1px solid rgb(0 0 0 / 50%);
  border-radius: 7px;
}
.flashcards_preview_description {
  /* margin-top: 15px; */
  padding: 15px;
}
.flashcards_preview_description textarea.preview_item_input{
  min-height: 10em;
}