body#page-admin-theme-fresk-slider.theme-fresk {
  .fileimagepicker-container {
    width: 100%;
    min-height: 160px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--bs-gray-500);
    border-radius: .5rem;
    box-sizing: border-box;
    position: relative;
  }

  .file-drop-zone {
    width: 100%;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #bbb;
    text-align: center;
    border-radius: 3px;
    padding: 20px;
    transition: border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    &.dragover,
    &:hover {
      border-color: $primary;
    }
  }


  .file-drop-zone-indicators {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    text-align: center;
    color: $filterstext;
    p {
      margin-bottom: 0;
    }
  }

  .fileimagepicker-container .file-input {
    display: none;
  }

  .preview {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5em;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  .preview li {
    width: 300px;
    height: auto;
    position: relative;
  }

  .preview img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
    object-fit: cover;
    display: block;
  }

  .fileimagepicker-info,
  .fileimagepicker-accepted-types {
    font-size: 0.85em;
    color: $filterstext;
    margin-bottom: 0.5em;
  }
}