.bottom-info-bar-directive {
  display: none;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: var(--navbar-bottom-height);
  min-height: var(--navbar-bottom-height);
  width: 100%;
  max-width: 100vw;
}

.bottom-info-bar-directive.is-visible {
  display: flex;
}

.bottom-info-bar-directive.position-absolute {
  position: absolute;
  top: -100%;
}

.bottom-info-bar-directive .bottom-info-bar-directive-content {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--max-content-width);
}

.bottom-info-bar-directive .bottom-info-bar-directive-content button {
  margin: 4px;
}

.bottom-info-bar-directive .bottom-info-bar-directive-content button:not(.md-icon-button) span, .bottom-info-bar-directive .bottom-info-bar-directive-content button md-icon  {
  color: rgba(var(--font-color));
}

/* XS Devices */

@media(max-width: 599px) {
  .bottom-info-bar-directive .bottom-info-bar-directive-content button:not(.md-icon-button) span {
    font-size: 9pt;
  }
}

@media(max-width: 399px) {
  .bottom-info-bar-directive .bottom-info-bar-directive-content button:not(.md-icon-button) {
    padding: 0 2px;
  }
  .bottom-info-bar-directive .bottom-info-bar-directive-content button:not(.md-icon-button) span {
    font-size: 8pt;
  }
}