/* src/styles.scss */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
:root {
  --primary-color: #061853;
  --primary-background-color: #061853;
  --page-background-color: #fff;
  --info-background-color: #fff2dc;
  --tertiary-background-color: #ececec;
  --error-color: red;
  --max-page-width: 600px;
  --font-family:
    Marselis for RuV,
    Arial,
    Helvetica,
    sans-serif;
  --font-size: 1rem;
  --font-size-large: 1.2rem;
  --font-size-small: 0.8rem;
  --font-size-very-small: 0.7rem;
  --font-color: #001957;
  --font-color-secondary: #fff;
  --font-color-tertiary: #f2a93b;
  --primary-button-background-color: #00e6e6;
  --primary-button-font-color: #001957;
  --secondary-button-background-color: #e7e7e7;
  --secondary-button-font-color: #001957;
  --disabled-button-background-color: #c7c7c7;
  --disabled-button-font-color: #68717a;
  --slider-thumb-active-icon: url("./media/slider_thumb_active.svg");
  --arrow-button: url("./media/arrow_btn.svg");
  --success-tick: url("./media/success_green.svg");
  --border-color: #999999;
  --border-width: 1px;
  --border-radius: 5px;
  --popover-zindex: 2;
}
@font-face {
  font-family: "RuV-Icons";
  src: url("./media/RuVIcon.ttf") format("truetype");
}
.ruv-icon {
  display: inline-block;
  font-family: "RuV-Icons";
  font-style: normal;
  font-size: 24px;
  line-height: 24px;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ruv-icon:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ruv-icon.ruv-icon-large {
  font-size: 32px;
  line-height: 32px;
}
.ruv-icon.ruv-icon-medium {
  font-size: 20px;
  line-height: 20px;
}
.ruv-icon.ruv-icon-small {
  font-size: 16px;
  line-height: 16px;
}
.ruv-icon.ruv-icon-tiny {
  font-size: 14px;
  line-height: 14px;
}
.ruv-icon.ruv-icon-green {
  color: #55a546;
}
.ruv-error-icon {
  display: inline-flex;
  font-family: "RuV-Icons";
  font-style: normal;
  font-size: 20px;
  line-height: 40px;
  color: #ff3b3b;
  padding-top: 16px;
  padding-right: 8px;
}
.ruv-error-icon:before {
  content: "\e903";
}
.ruv-success-icon {
  display: inline-block;
  font-family: "RuV-Icons";
  font-style: normal;
  font-size: 16px;
  line-height: 40;
  color: #55a546;
  padding-top: 16px;
  padding-right: 8px;
}
.ruv-success-icon:before {
  content: "\e941";
}
.ruv-icon.ruv-info:before {
  content: "\e900";
}
.ruv-icon.ruv-info-filled:before {
  content: "\e901";
}
.ruv-icon.ruv-warning:before {
  content: "\e903";
}
.ruv-icon.ruv-warning-filled:before {
  content: "\e902";
}
.ruv-icon.ruv-help:before {
  content: "\e904";
}
.ruv-icon.ruv-help-filled:before {
  content: "\e905";
}
.ruv-icon.ruv-phone:before {
  content: "\e911";
}
.ruv-icon.ruv-mobile:before {
  content: "\e954";
}
.ruv-icon.ruv-room:before {
  content: "\e93c";
}
.ruv-icon.ruv-account-balance:before {
  content: "\e923";
}
.ruv-icon.ruv-identity:before {
  content: "\e92c";
}
.ruv-icon.ruv-done:before {
  content: "\e941";
}
.ruv-icon.ruv-block:before {
  content: "\e948";
}
.ruv-icon.ruv-calendar:before {
  content: "\e94e";
}
.ruv-icon.ruv-work:before {
  content: "\e958";
}
.ruv-icon.ruv-mail:before {
  content: "\e95a";
}
.ruv-icon.ruv-search:before {
  content: "\e972";
}
.ruv-icon.ruv-arrow-up:before {
  content: "\e977";
}
.ruv-icon.ruv-arrow-down:before {
  content: "\e978";
}
.ruv-icon.ruv-arrow-left:before {
  content: "\e979";
}
.ruv-icon.ruv-arrow-right:before {
  content: "\e97a";
}
.ruv-icon.ruv-refresh:before {
  content: "\e96d";
}
.ruv-icon.ruv-more:before {
  content: "\e969";
}
.ruv-icon.ruv-menu:before {
  content: "\e96b";
}
.ruv-icon.ruv-communication:before {
  content: "\e95c";
}
.ruv-icon.ruv-eye-open:before {
  content: "\e994";
}
.ruv-icon.ruv-eye-closed:before {
  content: "\e9a0";
}
.ruv-icon.ruv-cross-circle-filled:before {
  content: "\e985";
}
.ruv-icon.ruv-plus:before {
  content: "\e97c";
}
.ruv-icon.ruv-minus:before {
  content: "\e96c";
}
.ruv-icon.ruv-download:before {
  content: "\e96f";
}
@font-face {
  font-family: "Marselis for RuV";
  src: url("./media/MarselisforRuVW05-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marselis for RuV";
  src: url("./media/MarselisforRuVW05-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marselis-Slab";
  src: url("./media/MarselisforRuVSlabW05-Rg.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marselis-Slab";
  src: url("./media/MarselisforRuVSlabW05-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body[theme=whitelabel] {
  --gray: gray;
  --font-color: black;
  --font-family: Arial;
  --font-color-tertiary: white;
  --primary-background-color: var(--gray);
  --font-color-secondary: white;
}
body[theme=whitelabel] .banner-text-secondary {
  font-weight: normal;
}
html {
  max-width: 100%;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  padding-bottom: 5rem;
  background-color: var(--page-background-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  color: var(--font-color);
}
main {
  margin-inline: auto;
}
input:hover {
  outline: auto;
}
input[type=text],
input[type=number],
input[type=password] {
  width: 100%;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem;
}
input[type=text].error,
input[type=text]:user-invalid,
input[type=number].error,
input[type=number]:user-invalid,
input[type=password].error,
input[type=password]:user-invalid {
  border-color: var(--error-color);
}
.page-content {
  padding: 1rem 1.5rem;
  word-break: break-word;
  width: min(100%, 600px);
  margin: auto;
}
.icon {
  width: 64px;
  height: 64px;
}
.block--centered {
  display: block;
  text-align: center;
}
.text--centered {
  text-align: center;
}
.text--bold {
  font-weight: bold;
}
.text--small {
  font-size: small;
}
.no-margin {
  margin: 0;
}
.error-message {
  color: var(--error-color);
  font-size: 0.75rem;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
