:host {
    position: relative;
    display: block;
    background: transparent;
}

.container {
    display: flex;
    flex-direction: column;
}

/* parameters */

.menu {
    background-color: white;
    display: flex;
    flex-direction: column;
}

/* connecting overlay dialog */

.connecting-overlay {
    background-color: rgba(0,0,0,0.4);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    .dialog {
        background: rgba(0,0,0,0.8);
        padding: 2rem;
        font-family: 'Open Sans', sans-serif;
        color: white;
        font-size: 1.4rem;
        border-radius: 10px;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
    }
}


.charts {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  width: 100%;

  app-chart {
    max-width: 30rem;
    flex: 1 1 auto;
  }
}
