@import "https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,200;0,400;0,500;0,700;1,200;1,400;1,500;1,700&display=swap";

/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  touch-action: manipulation;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (prefers-reduced-motion) {
  .cdk-overlay-backdrop {
    transition-duration: 1ms;
  }
}
.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,
.cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.cdk-overlay-popover {
  background: none;
  border: none;
  padding: 0;
  outline: 0;
  overflow: visible;
  position: fixed;
  pointer-events: none;
  white-space: normal;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  inset: auto;
  top: 0;
  left: 0;
}
.cdk-overlay-popover::backdrop {
  display: none;
}
.cdk-overlay-popover .cdk-overlay-backdrop {
  position: fixed;
  z-index: auto;
}

/* src/styles.scss */
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-out-right {
  0% {
    opacity: 1;
    transform: translateX(0) rotateZ(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(400px) rotateZ(45deg);
  }
}
@keyframes slide-out-left {
  0% {
    opacity: 1;
    transform: translateX(0) rotateZ(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-400px) rotateZ(-45deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes stamp {
  0% {
    opacity: 0;
    transform: perspective(500px) translate3d(0, 0, 300px) rotate(-30deg);
  }
  100% {
    opacity: 1;
    transform: perspective(500px) translate3d(0, 0, 0px) rotate(-30deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blink {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes shine {
  0% {
    background-position: -25vw;
  }
  100% {
    background-position: 25vw;
  }
}
@keyframes roll-down-previous {
  0% {
    opacity: 1;
    transform: translateY(var(--counter-size, -20px)) rotateX(0);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0) rotateX(60deg);
  }
}
@keyframes roll-down-current {
  0% {
    opacity: 0.7;
    transform: translateY(var(--counter-size, -20px)) rotateX(-60deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
@keyframes roll-down-next {
  0% {
    opacity: 0;
    transform: translateY(var(--counter-size, -20px)) rotateX(-90deg);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0) rotateX(-60deg);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
}
html {
  font-family:
    "Exo 2",
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
}
body {
  background: #4C8F95;
  background:
    linear-gradient(
      to right bottom,
      #4C8F95,
      #5EACB6);
  color: #ffffff;
  overflow-y: auto;
}
@media only screen and (hover: hover) and (pointer: fine) {
  body {
    scrollbar-width: thin;
    scrollbar-color: #065466 #5EACB6;
  }
  body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    overflow: hidden;
  }
  body::-webkit-scrollbar-thumb {
    background: #065466;
    width: 8px;
    height: 8px;
    border-radius: 2px;
  }
  body::-webkit-scrollbar-track {
    background-color: #5EACB6;
  }
  body::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    opacity: 0;
  }
}
a,
a:visited {
  color: #A1C83F;
  text-decoration: none;
}
a:focus {
  color: #d59d0b;
}
h1 {
  font-size: 20px;
}
h1,
h2 {
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 320px) {
  h1,
  h2 {
    font-size: 20px;
  }
}
h3,
h4 {
  font-weight: 500;
}
h5,
h6 {
  font-weight: 200;
}
label {
  display: inline-block;
  padding: 0 8px 8px;
  text-transform: uppercase;
}
fieldset {
  position: relative;
  border: solid 3px transparent;
  margin: 0 0 16px 0;
  padding: 16px;
  border-radius: 6px;
  background: rgba(6, 84, 102, 0.8);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
fieldset legend {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.2s;
  text-align: left;
  margin: auto;
  border-radius: 6px;
  background: #065466;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
fieldset legend small {
  font-size: 14px;
}
fieldset legend.with-action {
  padding: 0;
}
fieldset.warning {
  border-color: #d59d0b;
  background: rgba(213, 157, 11, 0.2);
}
fieldset.warning .multiplier {
  background: #d59d0b;
}
fieldset.warning legend {
  background: #d59d0b;
}
fieldset.success {
  border-color: #8eb726;
  background: rgba(142, 183, 38, 0.2);
}
fieldset.success .multiplier {
  background: #8eb726;
}
fieldset.success legend {
  background: #8eb726;
}
fieldset.error {
  border-color: #ba3c08;
  background: rgba(186, 60, 8, 0.2);
}
fieldset.error .multiplier {
  background: #ba3c08;
}
fieldset.error legend {
  background: #ba3c08;
}
fieldset:focus-within > legend {
  color: #d59d0b;
}
table {
  width: 100%;
  border-spacing: 0 8px;
}
table thead th {
  font-weight: 200;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 4px;
}
@media (min-width: 481px) {
  table thead th {
    padding: 8px;
  }
}
table tbody tr {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
table tbody td {
  min-height: 64px;
}
@media (max-width: 480px) {
  table tbody td {
    min-height: 48px;
  }
}
table tbody td,
table tbody th {
  position: relative;
  height: 48px;
  background: rgba(6, 84, 102, 0.7);
  padding: 4px;
}
@media (min-width: 481px) {
  table tbody td,
  table tbody th {
    padding: 8px;
    height: 64px;
  }
}
table tbody td:first-child,
table tbody th:first-child {
  border-radius: 8px 0 0 8px;
}
table tbody td:last-child,
table tbody th:last-child {
  border-radius: 0 8px 8px 0;
}
table tbody td:first-child:last-child,
table tbody th:first-child:last-child {
  border-radius: 8px;
}
table td.left,
table th.left {
  text-align: left;
}
table td.center,
table th.center {
  text-align: center;
}
table td.right,
table th.right {
  text-align: right;
}
table td.highlighted,
table th.highlighted {
  background: rgba(6, 84, 102, 0.8);
}
table .indent th {
  padding-left: 16px;
}
table .indent th,
table .indent td {
  background: rgba(6, 84, 102, 0.5);
}
table .indent--2 th {
  padding-left: 24px;
}
table .indent--2 th,
table .indent--2 td {
  background: rgba(6, 84, 102, 0.1);
}
.icon-prefix {
  margin-right: 8px;
}
.icon-suffix {
  margin-left: 8px;
}
@media (max-width: 320px) {
  .hide-on-mobile-xs {
    display: none;
  }
}
.hidden {
  display: none !important;
}
@media (max-width: 480px) {
  .hide-on-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .hide-on-tablet {
    display: none;
  }
}
@media (min-width: 481px) {
  .hide-on-desktop {
    display: none;
  }
}
.ixii__bg {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: -100px;
  right: 0;
  z-index: -1;
  animation: slide-down 1.5s;
}
.ixii__bg > img {
  display: block;
  height: 100%;
  width: auto;
}

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