@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  outline: none;
}

html, body {
  margin: 0;
  position: relative;
}

body {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.center-horizontally {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.router-component {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

router-outlet {
  display: none;
}

html {
  --bb-blue: #0054FF;
  --bb-dark-blue: #131D41;
  --error-color: #FF3163;
  --border-color: #CDD4DC;
  --background-grey: #F7F7F7;
  --disabled-color: #cdd4dc;
  --text-color-white: white;
  --text-color-black: black;
  --secondary-text-color: #CDD4DC;
  --background-white: white;
  --success-color: #2ECC71;
  --button-grey: #A5A4BF;
  --font-size-tiny: 0.6875rem;
  --font-size-small: 0.75rem;
  --font-size-medium: 0.875rem;
  --font-size-subhead: 1rem;
  --font-size-title: 1.25rem;
  --font-size-headline: 1.5rem;
  --font-size-big-headline: 1.75rem;
}

a {
  text-decoration: none;
}