:root {
  --primary-color: #04294e;
  --secondary-color-800: #395093;
  --secondary-color: #4263bd;
  --tertiary-color: #fa6800;
  --text-color: #49495a;
  --text-color-400: #8f90a3;
  --text-color-200: #d8d8df;
  --border-color: #f4f4f4;
  --bg-color: #f3f2f5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-color);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}

.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}

[class*="col-"] {
  padding: 0 8px;
  flex: 1;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Spacing */
.mb-4 {
  margin-bottom: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mb-6 {
  margin-bottom: 24px;
}
.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Text */
.error__title,
.error__title--big {
  font-weight: 700;
}
.error__title {
  font-size: 2rem;
  color: var(--primary-color);
}
.error__title--big {
  font-size: 2.5rem;
  color: var(--secondary-color);
}
.error__body {
  font-size: 1rem;
  color: var(--text-color-400);
  font-weight: 500;
}

/* SVG */
svg {
  width: 100%;
  height: 100%;
  max-height: 50vh;
}

/* Fill Colors */
.fill-textColor {
  fill: var(--text-color);
}
.fill-textColor100,
.fill-textColor200,
.fill-borderColor {
  fill: var(--text-color-200);
}
.fill-textColor900 {
  fill: var(--text-color-400);
}

.fill-bgColor {
  fill: var(--bg-color);
}
.fill-secondaryColor {
  fill: var(--secondary-color);
}
.fill-secondaryColor400 {
  fill: var(--secondary-color-800);
}
.fill-tertiaryColor {
  fill: var(--tertiary-color);
}

.isolation--opacity {
  isolation: isolate;
  opacity: 0.2;
}

.powered {
  width: 8vw;
  height: inherit;
  fill: var(--text-color-400);
  transform: scale(0.75);
}

.absolute-bottom {
  position: absolute;
  bottom: 0;
}
