﻿@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900");
@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:700&display=swap");
@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");
/* Variables */
/* Colors */
/* Fonts */
/* Global styles */
body {
  /* Basic Text */
  /* Buttons */
  /* Reusable classes */
  /* Form Fields */
}
body h1 {
  font-size: 32px;
  font: "Barlow Condensed", sans-serif;
  color: #0e398d;
  font-weight: bold;
  margin: 0px;
}
body h2 {
  font-size: 28px;
  font: "Barlow Condensed", sans-serif;
  color: #3D4956;
  font-weight: 600;
  margin: 0px;
}
body h3 {
  font-size: 24px;
  font: "Barlow Condensed", sans-serif;
  color: #0e398d;
  font-weight: 600;
  margin: 0px;
}
body p {
  font-size: 16px;
  font: "Barlow", sans-serif;
  color: #48749B;
  font-weight: normal;
  margin: 0px;
}
body a {
  color: #0072EB;
  text-decoration: none;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  margin: 0px;
}
body .blue-button {
  color: white;
  background-color: #000C66;
}
body .blue-button:hover {
  color: white;
  background-color: #0D194F;
}
body .blue-button:disabled {
  background-color: #C3CCDA;
}
body .icon-button {
  background-color: transparent;
  border: none;
  border-radius: 4px;
}
body .icon-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
body .white-button {
  background-color: white;
  border-radius: 4px;
  color: #000C66;
  border: 1px solid #C3CCDA;
}
body .white-button:hover {
  color: #0D194F;
  border: 1px solid #7492AC;
}
body .flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
body .actions {
  display: flex;
  justify-content: flex-end;
}
body .header {
  margin: 20px 20px 8px;
  box-shadow: none;
  border-radius: 6px;
  padding: 24px 48px;
  background-color: white;
}
body .page-content {
  width: auto;
  margin: 8px 20px 10px;
  padding: 25px 48px 44px;
  border-radius: 6px;
  max-width: none;
  background-color: white;
}
body .standard-form-field {
  display: inline-flex;
  padding: 10px 0px;
  flex-direction: column;
}
body .standard-form-field .validation-message {
  color: #DE0D26;
  position: absolute;
  transform: translate(-7px, 51px) scale(0.75);
}
body .standard-form-field .validation-message ~ .help-text {
  display: none;
}
body .standard-form-field input::-webkit-outer-spin-button,
body .standard-form-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body .standard-form-field input[type=number] {
  -moz-appearance: textfield;
}
body .standard-form-field .form-field ~ .field-name {
  color: #48749B;
  position: absolute;
  transform-origin: top left;
  display: block;
  transform: translate(17px, 14px) scale(1);
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}
body .standard-form-field .formfield.invalid.modified ~ .field-name, body .standard-form-field input:focus ~ .field-name, body .standard-form-field .form-field.modified ~ .field-name:not(.empty) {
  transform: translate(14px, -9px) scale(0.75);
  background-color: white;
}
body .standard-form-field input:focus ~ .field-name {
  color: #0072EB;
}
body .standard-form-field input.invalid ~ .field-name {
  color: #DE0D26;
}
body .standard-form-field input {
  border: 2px solid #7492AC;
  border-radius: 4px;
  height: 56px;
  color: #48749B;
  font-family: "Barlow", sans-serif;
  padding: 18px 16px;
  display: block;
  width: fit-content;
}
body .standard-form-field input.modified {
  color: #3D4956;
}
body .standard-form-field input.modified.invalid {
  color: #DE0D26;
  border-color: #DE0D26;
}
body .standard-form-field input.invalid:not(.modified) {
  color: #DE0D26;
  border-color: #DE0D26;
}
body .standard-form-field input:focus-visible {
  border-color: #0072EB;
  color: #0072EB;
  outline: none;
}
body .standard-form-field input:focus {
  border-color: #0072EB;
  color: #0072EB;
  outline: none;
}
body .standard-form-field .help-text {
  font-size: 12px;
  color: rgba(33, 33, 33, 0.54);
}
body .radio-form-field {
  color: #48749B;
}
body .radio-form-field .radio-form {
  display: flex;
}
body .radio-form-field .radio-form .radio-button {
  margin-right: 32px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
body .radio-form-field .radio-form .radio-button span {
  padding-left: 8px;
}
body .radio-form-field .radio-form input[type=radio] {
  margin-right: 5px;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #48749B;
  width: 1.15em;
  height: 1.15em;
  border: 0.1em solid #48749B;
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
}
body .radio-form-field .radio-form input[type=radio]:checked {
  border: 0.1em solid #0072EB;
}
body .radio-form-field .radio-form input[type=radio]::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #0072EB;
  background-color: #0072EB;
}
body .radio-form-field .radio-form input[type=radio]:checked::before {
  transform: scale(1);
}
body .radio-form-field .field-name {
  color: #48749B;
  font-weight: 600;
}
body .radio-form-field .help-text {
  font-size: 12px;
  color: rgba(33, 33, 33, 0.54);
}
body .mb-20 {
  margin-bottom: 20px;
}
body .mh-50 {
  margin-left: 50px;
  margin-right: 50px;
}
body .mh-20 {
  margin-left: 20px;
  margin-right: 20px;
}
body .mh-10 {
  margin-left: 10px;
  margin-right: 10px;
}
body .mh-5 {
  margin-left: 5px;
  margin-right: 5px;
}
body .mr-20 {
  margin-right: 20px;
}
body .mv-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
body .pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
body .ph-10 {
  padding-left: 10px;
  padding-right: 10px;
}
body .nav-item:first-of-type {
  padding-top: 1rem;
}
body .nav-item:last-of-type {
  padding-bottom: 1rem;
}
body .nav-item a {
  color: white;
  border-radius: 4px;
  height: 3rem;
  display: flex;
  align-items: center;
  line-height: 3rem;
}
body .nav-item a.active {
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
}
body .nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
