html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: 16px;
  --mdc-theme-text-hint-on-background: rgba(0, 0, 0, .87);
  --mdc-theme-text-icon-on-background: #757575;
  --mdc-theme-primary: #007FAB;
  --mdc-theme-secondary: #EACC1A;
}

html,
body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  font-style: normal;
  src: local(""), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
}
@font-face {
  font-family: "Material Icons";
  src: local("MaterialIcons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Material Icons Outlined";
  src: local("MaterialIcons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIconsOutlined-Regular.woff2) format("woff2"), url(../fonts/MaterialIconsOutlined-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Material Icons Round";
  src: local("MaterialIcons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIconsRound-Regular.woff2) format("woff2"), url(../fonts/MaterialIconsRound-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Material Icons Sharp";
  src: local("MaterialIcons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIconsSharp-Regular.woff2) format("woff2"), url(../fonts/MaterialIconsSharp-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Material Icons Two Tone";
  src: local("MaterialIcons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIconsTwoTone-Regular.woff2) format("woff2"), url(../fonts/MaterialIconsTwoTone-Regular.otf) format("opentype");
}
.material-icon-basics, .material-icons-two-tone, .material-icons-sharp, .material-icons-round, .material-icons-outlined, .material-icons {
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  color: inherit;
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

.material-icons {
  font-family: "Material Icons", "Roboto", sans-serif;
}

.material-icons-outlined {
  font-family: "Material Icons Outlined", "Roboto", sans-serif;
}

.material-icons-round {
  font-family: "Material Icons Round", "Roboto", sans-serif;
}

.material-icons-sharp {
  font-family: "Material Icons Sharp", "Roboto", sans-serif;
}

.material-icons-two-tone {
  font-family: "Material Icons Two Tone", "Roboto", sans-serif;
}

html {
  background-color: #d9ecf2;
  overflow: hidden;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.main-content-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.main-content {
  display: flex;
  position: relative;
  height: 490px;
  border-radius: 0.25rem;
}
.main-content-left {
  width: 280px;
  background-color: #007FAB;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  color: white;
  padding: 3rem 1.5rem 1rem 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  display: none;
}
@media screen and (min-width: 768px) {
  .main-content-left {
    display: flex;
  }
}
.main-content-right {
  width: 80vw;
  background-color: white;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  padding: 3rem 1rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-content-right {
    width: 400px;
  }
}
.main-content-right .read-more {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .main-content-right .read-more {
    display: none;
  }
}
.main-content-right h1 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.main-content-right h2 {
  font-size: 0.875rem;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .main-content-right h1:not(.title-visible), .main-content-right h2:not(.title-visible) {
    display: none;
  }
}
.main-content-right .mdc-button {
  height: auto;
  min-height: 36px;
}
@media screen and (max-width: 480px) {
  .main-content-right .mdc-button {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
.main-content-right__actions {
  margin-top: auto;
}
.main-content-right--provider-login {
  display: flex;
}
.main-content-right--local-login, .main-content-right--register-email {
  display: none;
}
.main-content__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
}
.main-content__actions-spacer {
  flex-grow: 1;
}

.sidepanel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #007FAB;
  z-index: 2;
  padding: 3rem 1rem 1rem;
  display: none;
  transform: translate(100%);
  transition: 0.275s ease-in-out;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sidepanel {
    display: flex;
    flex-direction: column;
  }
}
.sidepanel .close-intro-text {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: white;
}
.sidepanel--open {
  transform: translate(0%);
  opacity: 1;
}

.already-exists-text {
  scrollbar-color: #007FAB #086d91;
  scrollbar-width: thin;
  flex-grow: 1;
  padding-right: 0.5rem;
  overflow: auto;
}
.already-exists-text::-webkit-scrollbar {
  width: 6px;
}
.already-exists-text::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
}
.already-exists-text::-webkit-scrollbar-thumb {
  background-color: #007FAB;
  border-radius: 0.25rem;
  outline: 1px solid #086d91;
}
.already-exists-text a {
  color: #007FAB;
}

.client-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  background-size: 72px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2px;
  top: 2rem;
  left: 2rem;
}

.scope-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  background-size: 72px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2px;
  top: -40px;
  left: calc(50% - 40px);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .scope-logo {
    left: 100px;
  }
}
.scope-logo-container {
  position: relative;
  width: 76px;
  height: 76px;
}
.scope-logo-container > img {
  display: block;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.scope-logo-container .mdc-icon-button {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  display: block;
}
@media screen and (min-width: 768px) {
  .scope-logo-container .mdc-icon-button {
    display: none;
  }
}

.intro-text {
  scrollbar-color: white slategray;
  scrollbar-width: thin;
  overflow: auto;
  padding-right: 0.5rem;
  word-break: break-word;
  flex-grow: 1;
  line-height: 1.25rem;
}
.intro-text::-webkit-scrollbar {
  width: 6px;
}
.intro-text::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
}
.intro-text::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 0.25rem;
  outline: 1px solid slategray;
}
.intro-text h1 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.intro-text h2 {
  font-size: 0.875rem;
  font-style: italic;
}
.intro-text p {
  margin: 1rem 0;
}
    .intro-text p strong {
        font-weight: bold;
    }
.intro-text .read-more {
  margin-top: auto;
  align-self: flex-start;
}
.sidepanel .intro-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  padding-right: 1rem;
}

.login-methods-primary {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-methods-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-methods-secondary-option {
  margin: 0.25rem;
  float: left;
}
@media screen and (max-width: 480px) {
  .login-methods-secondary-option {
    width: 100%;
  }
}
.login-methods-secondary--no-primary {
  flex-grow: 1;
}

.login-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.login-list-item {
  margin: 0.25rem;
}
.login-list-title {
  margin: 1rem 0;
  text-align: center;
  font-weight: bold;
}
.login-list-title--other {
  margin-top: 2rem;
}

.password-forgotten {
  color: #007FAB;
  margin-top: 0.5rem;
  border: none;
  background-color: transparent;
}
.password-forgotten:hover {
  cursor: pointer;
  text-decoration: underline;
}

.error-messages {
  word-break: break-word;
}

.email-login-fields {
  display: grid;
  grid-gap: 1rem;
}

.object-fit-app-logo {
  -o-object-fit: contain;
     object-fit: contain;
}

.password-validation-list {
  margin: 0.5rem 0;
}
.password-validation-list-item {
  display: flex;
  align-items: center;
  height: 1rem;
  font-size: 0.75rem;
}
.password-validation-list-item__graphic {
  font-size: 1rem;
  margin-right: 0.5rem;
}
.password-validation-list-item--invalid .password-validation-list-item__graphic {
  color: red;
}
.password-validation-list-item--valid .password-validation-list-item__graphic {
  color: green;
}

.product-by-xebic {
  height: auto;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-by-xebic__text {
  color: white;
}
.product-by-xebic__img {
  width: 4rem;
  margin-left: 1rem;
}

.scope-selection-list {
  scrollbar-color: #007FAB #086d91;
  scrollbar-width: thin;
  overflow: auto;
  max-height: 262px;
  margin-top: 1rem;
}
.scope-selection-list::-webkit-scrollbar {
  width: 6px;
}
.scope-selection-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
}
.scope-selection-list::-webkit-scrollbar-thumb {
  background-color: #007FAB;
  border-radius: 0.25rem;
  outline: 1px solid #086d91;
}

.register-text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.5rem;
}

.mdc-button--inverted:not(.mdc-button--outlined) {
  color: #007FAB;
  background-color: white;
}

.mdc-button--outlined.mdc-button--inverted {
  border-color: white;
  color: white;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-floating-label {
  color: rgba(0, 127, 172, 0.87);
}

.six-digit-input {
  display: flex;
  flex-direction: column;
}
.six-digit-input input {
  width: 2.25rem;
  height: 3rem;
  font-size: 2em;
  text-align: center;
  border-radius: 0.25rem;
  margin: 0.125rem;
}
.six-digit-input-items {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 1rem 2rem 0.5rem;
}
.six-digit-input a {
    font-size:0.9em;
    text-align: center;
}

.password-reset-validation-code-label {
    margin-top: 10px;
}

.client-logo--stagemonitor {
    background-image: url(../../images/logo_onstage4care.png);
}/*# sourceMappingURL=main.css.map */

.mdc-button--outlined.mdc-theme--error {
    border-color: #b00020 !important;
    /* @alternate */
    border-color: var(--mdc-theme-error, #b00020) !important;
}