/* src/styles.scss */
:root {
  --dark-blue: #02011A;
  --turquoise: #11BCBC;
  --yellow: #D0D32E;
  --header-height: 75px;
  --font-family-arial-rounded-mt: "Arial Rounded MT", sans-serif;
  --first-transition: 1040px;
  --introduction-content-width-one: 1520px;
  --footer-height: 60px;
  --input-field-font-color: #FFF;
  --input-field-label-color: #FFF;
  --input-field-focus-background-color: none;
  --input-field-focus-border-color: #FFF;
  --focus-color: #FFF;
  --notification-bar-close-button-background: #dc3545;
  --notification-bar-error-background-color: #a30f02;
  --notification-bar-info-background-color: #0c6997;
  --notification-bar-success-background-color: #007a1f;
  --notification-bar-warning-background-color: #fcff33;
}
html {
  font-family: var(--font-family-arial-rounded-mt);
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
:host > * {
  display: block;
}
body {
  background-color: var(--dark-blue);
  font-size: 1.1rem;
  line-height: 1.6em;
  font-style: normal;
  letter-spacing: 0;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}
p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
ul {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}
.page-section-header {
  margin: 0 auto;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.5em;
}
.page-section-header > p {
  padding: 15px 0px;
}
.page-section-container {
  margin-top: 20px;
}
@media screen and (width <= 1145px) {
  .page-section-container {
    margin-top: 0px;
  }
}
.page-section-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 15px 0;
  position: relative;
}
@media screen and (width <= 1145px) {
  .page-section-row {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}
.form-control {
  border-radius: 10px;
  border: 2px solid var(--yellow);
}
.form-control-textarea {
  min-height: 80px;
}
app-page-input {
  position: relative;
}
.clearfix {
  clear: both;
}
.hidden {
  display: none !important;
}
.page-input {
  align-items: flex-end;
  background-color: var(--input-field-background-color);
  border: 1px solid var(--input-field-border-color, #262626);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-transition: border-color 200ms ease;
  transition: border-color 200ms ease;
  margin: 0px 10px;
  -ms-flex-align: end;
  display: -ms-flexbox;
  text-align: left;
}
.page-input-is-focused {
  outline: 2px solid var(--focus-color, #0095FF);
  outline-offset: 2px;
  background-color: var(--input-field-focus-background-color, #ffffff);
  border-color: var(--input-field-focus-border-color, #262626);
}
.page-input-label {
  font-family:
    "Graphik",
    "Helvetica Neue",
    "Helvetica",
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  color: var(--input-field-label-color, #6E6E6E);
  display: -webkit-box;
  left: 16px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition: color 200ms ease, -webkit-transform 200ms ease;
  transition: color 200ms ease, -webkit-transform 200 msease;
  transition: color 200ms msease, transform 200ms ease;
  transition:
    color 200ms msease,
    transform 200ms ease,
    -webkit-transform 200ms ease;
}
.page-input-input {
  font-family:
    "Graphik",
    "Helvetica Neue",
    "Helvetica",
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  background: none;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: var(--input-field-font-color, #262626);
  height: 100%;
  overflow: hidden;
  padding: 40px 24px 14px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 900px) {
  .page-input-input {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.page-input-label-is-focused {
  color: var(--input-field-label-color, #6E6E6E);
  display: block;
  pointer-events: none;
  text-overflow: ellipsis;
  -webkit-transform: scale(0.6666666667) translateY(-150%);
  transform: scale(0.6666666667) translateY(-150%);
  white-space: nowrap;
  width: calc(150% - 80px);
}
.page-textarea-label {
  font-family:
    "Graphik",
    "Helvetica Neue",
    "Helvetica",
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  color: var(--input-field-label-color, #6E6E6E);
  display: -webkit-box;
  left: 16px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: 18%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition: color 200ms ease, -webkit-transform 200ms ease;
  transition: color 200ms ease, -webkit-transform 200 msease;
  transition: color 200ms msease, transform 200ms ease;
  transition:
    color 200ms msease,
    transform 200ms ease,
    -webkit-transform 200ms ease;
}
.page-textarea-textarea {
  font-family:
    "Graphik",
    "Helvetica Neue",
    "Helvetica",
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  background: none;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: var(--input-field-font-color, #262626);
  height: 100%;
  overflow: hidden;
  padding: 40px 24px 14px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 900px) {
  .page-textarea-textarea {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.page-textarea-label-is-focused {
  color: var(--input-field-label-color, #6E6E6E);
  display: block;
  pointer-events: none;
  text-overflow: ellipsis;
  -webkit-transform: scale(0.6666666667) translateY(-150%);
  transform: scale(0.6666666667) translateY(-150%);
  white-space: nowrap;
  width: calc(150% - 80px);
}
.form-group {
  align-items: center;
}
.alert {
  color: red;
  margin-left: 20px;
  position: absolute;
  bottom: 0;
  font-size: 1rem;
  transform: translateY(10px);
}
.advent-pro-jaytee {
  font-family: "Advent Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "width" 100;
}

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