﻿body {
  margin: 0;
  background-color: #f5f5f5;
}

.center {
  margin: auto;
  width: 10%;
  padding: 10px;
}

@media (max-width: 480px) {
  .hide-on-tablet {
    display: none !important;
  }
}

.login-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 4px;
  background-color: transparent;
  text-align: center;
}

@media (max-width: 668px) {
  .login-footer {
    position: relative;
    bottom: 0;
    padding-bottom: 4px;
    background-color: white;
  }
}

@media(max-width:959px) {
    .hide-0-to-960 {
        display: none !important;
    }
}

.cdk-global-header__logo {
    display: flex;
    min-height: 48px;
    align-items: center;
    align-self: stretch;
    padding: 0px;
    border: none;
    margin: 0px;
}

.cdk-global-header__label-app-name {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0;
    vertical-align: inherit;
    line-height: 1.5;
}

.mdc-toolbar,
.mdc-toolbar__icon {
  background-color: #3c576b;
}

.mdc-floating-button {
    font-family: Roboto,Arial,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-decoration: inherit;
    text-transform: inherit;
    position: absolute;
    right: 6px;
    bottom: 12px;
    line-height: 1.15rem;
    cursor: pointer;
    font-weight: bold;
    color: rgb(46, 121, 178);

    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    text-decoration: none;
    font-family: "IBM Plex Sans", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: none;
}

.mdc-typography {
  font-family: "IBM Plex Sans", Roboto, Arial, sans-serif;
}

/* Override all mdc-* classes to use IBM Plex Sans. */
[class^="mdc-"],
.cdk-banner__text,
.cdk-global-header__label-app-name {
    font-family: "IBM Plex Sans", Roboto, Arial, sans-serif;
}


.notice {
    position: relative;
    margin: 1em;
    background: #F9F9F9;
    padding: 1em 1em 1em 2em;
    border-left: 4px solid #DDD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
}

.notice:before {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: -17px;
    background-color: #DDD;
    color: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-family: Georgia;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.warning {
    border-color: #FFA726;
}

    .warning:before {
        content: "!";
        background-color: #FFA726;
    }