/*
    Overrides for Fabric types.

    These should be used as a last resort.

    Use type classes like "ms-font-m" wherever possible.

    Sometimes we wish to override Fabric styling, and it is impossible to use
    native type classes. In those cases, these can be used.
*/
.hub-alert {
  height: 40px;
  width: 100%;
}

.hub-alert.error {
  background-color: rgba( 249, 235, 235 ,  1 );
  background-color: rgba( var(--palette-accent1-light,249, 235, 235) ,  1 );
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
}

.hub-alert.error a {
  color: rgba( 16, 110, 190 ,  1 );
  color: rgba( var(--palette-primary-shade-10,16, 110, 190) ,  1 );
}

.hub-alert.error a:hover {
  color: rgba( 0, 90, 158 ,  1 );
  color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
}

.hub-alert.error .muted {
  color: rgba( 51, 51, 51 ,  1 );
  color: rgba( var(--palette-neutral-80,51, 51, 51) ,  1 );
}

.hub-alert > .content {
  width: 63%;
  padding: 0 20px;
  min-width: 1024px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.hub-alert > .content > * {
  display: inline-block;
  line-height: 40px;
  height: 100%;
}

.hub-alert > .content > .type-icon {
  font-size: 18px;
}

.hub-alert > .content > .message {
  margin-left: 6px;
}
