.ola-viz {
  position: relative;
}

/**
 * Loading
 */
.ola-viz-loading{
  &:before {
    content: 'Drawing chart';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1em;
    margin-left: -40px;
    font-size: 12px;
    font-style: italic;
  }
}

/**
 * Chart
 */
.ola-viz-chart-el {
  height: 300px;
  margin: 1rem;
}

/**
 * Cards
 */
.ola-viz-card-wrapper {
  padding: 1rem;
  background: white;
  box-shadow: $small-box-shadow;
  border-radius: 5px;
  flex: 1;
  // display: flex;
  // flex-direction: column;
}

  .ola-viz-card {
    margin-bottom: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }


/**
 * Dashboard
 */
.ola-viz-dashboard {
  @include media (tablet) {
    display: flex;
    flex-wrap: wrap;
    margin: 0rem;
    padding: 0rem 0 1rem 0;
  }
}

  .ola-viz-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 40%;
  }

  .ola-viz-item-inner {
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }


/**
 * Select box
 */

.ola-viz-select {
  justify-content: flex-end;
  padding: 0;
}