/*
 * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 */
.tile-overview {
  background-color: @dimmed-background-color;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.tile-overview-content {
  position: absolute;

  margin: 42px 65px; /* for larger screens */
  @media screen and (max-width: 800px) {
    /* for small screens */
    margin: 20px 20px 20px 23px;
  }

  & > .tile-grid {
    position: relative;
    margin-bottom: 30px;
  }
}

.tile-overview-title {
  overflow: hidden;
  font-size: @font-size-extra-large;
  height: auto !important;
  padding-bottom: 20px;
  #scout.overflow-ellipsis-nowrap();

  &.animated {
    transition: max-height 400ms, padding-bottom 400ms;
  }

  &.removed {
    max-height: 0 !important;
    padding-bottom: 0;
  }
}
