@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;700&display=swap);
body {
  width: 100%;
  height: 100%;
}
html,
body {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 599px) and (orientation: portrait) {
  :root {
    --media: xsmall;
  }
}
@media only screen and (max-height: 599px) and (orientation: landscape) and (hover: none) {
  :root {
    --media: xsmall;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) and (orientation: portrait) {
  :root {
    --media: small;
  }
}
@media only screen and (max-height: 959px) and (orientation: landscape) and (hover: none) {
  :root {
    --media: small;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1439px) {
  :root {
    --media: medium;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  :root {
    --media: large;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --media: xlarge;
  }
}
.full-frame {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.full-frame-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.non-blocking {
  pointer-events: none;
}
.blocking {
  pointer-events: initial;
}
.no-overflow {
  overflow: hidden;
}
.pointer {
  cursor: pointer;
  pointer-events: initial;
}
.hidden {
  display: none !important;
  pointer-events: none !important;
}
.fade-out {
  animation: fade-out 0.25s;
}
.fade-in {
  animation: fade-in 0.25s;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
router-outlet {
  width: 0;
  height: 0;
  display: none;
}
.scroll-parent-flex:not(.desktop-only) {
  flex: 1;
  align-self: stretch;
  position: relative;
}
.scroll-container:not(.desktop-only) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 960px) {
  .scroll-parent-flex.desktop-only {
    flex: 1;
    align-self: stretch;
    position: relative;
  }
}
@media only screen and (min-width: 960px) {
  .scroll-container.desktop-only {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.tab-bar {
  display: flex;
  flex-direction: row;
  background-color: #ebf1f6;
  position: relative;
}
.tab-bar > * {
  flex-grow: 1;
  position: relative;
}
.tab-bar .invisible {
  opacity: 0;
  -webkit-user-select: none;
          user-select: none;
  cursor: initial;
  pointer-events: none;
}
:root,
html,
body,
input,
button,
a {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #263238;
  font-size: 25px;
  line-height: 1.4;
}
@media only screen and (min-width: 960px) and (max-width: 1439px) {
  :root,
html,
body,
input,
button,
a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 959px) {
  :root,
html,
body,
input,
button,
a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 960px) {
  :root,
html,
body,
input,
button,
a {
    font-size: 1.3vw;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
textarea,
input {
    font-size: 25px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select:focus,
textarea:focus,
input:focus {
    font-size: 25px;
  }
}
a,
input,
button {
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border-radius: 0;
  border-width: 0;
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.75rem;
}
h4 {
  font-weight: 500;
}
.bold {
  font-weight: bold;
}
.disabled {
  filter: opacity(0.5);
  pointer-events: none;
  cursor: initial;
}
::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-button {
  display: none;
}
::-webkit-scrollbar-thumb {
  background-color: #164194;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background-color: #eceff1;
  background-color: transparent;
}
::-webkit-scrollbar-track-piece {
  background-color: transparent;
}
::-webkit-resizer {
  display: none;
}
.button {
  display: inline-block;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  box-sizing: border-box;
  border: 2px solid #263238;
}
.button.red {
  color: white;
  background-color: #164194;
  border-color: #164194;
}
.button.sea {
  color: white;
  background-color: #339ba4;
  border-color: #339ba4;
}
.button.red-outline {
  background-color: transparent;
  color: #339ba4;
  border: 2px solid #339ba4;
}
.button.darkblue-outline {
  background-color: transparent;
  color: #164194;
  border: 2px solid #164194;
}
.button.sea-outline {
  background-color: transparent;
  color: #339ba4;
  border: 2px solid #339ba4;
}
.button.white-outline {
  color: white;
  border: 2px solid white;
}
.button.grey-outline {
  color: #263238;
  border: 2px solid #263238;
}
.button.small-padding {
  padding: 6px;
}
.button.small-ish {
  font-size: 0.7rem;
  padding: 0.5rem 2rem;
}
.button.small {
  font-weight: bold;
  font-size: 0.7rem;
  padding: 0.3rem 2rem;
}
.button.text {
  border-color: transparent;
  text-decoration: underline;
}
.button.text span {
  text-decoration: underline;
}
.button.with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.button.with-icon img,
.button.with-icon svg {
  height: 0.7rem;
  width: auto;
}
a.hover,
.button {
  transition: transform 0.25s, filter 0.25s;
  cursor: pointer;
}
a.hover:hover,
.button:hover {
  transform: scale(1.05);
}
a.tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 3rem;
  padding-bottom: 0.5rem;
  box-sizing: border-box;
  color: black;
  font-size: 0.7rem;
}
a.tab.active {
  font-weight: bold;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
a.tab.active:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #339ba4 0%, #164194 100%);
}
.white-block-outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 960px) {
  .white-block-outer {
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 959px) {
  .white-block-outer {
    padding: 1rem;
  }
}
.white-block-outer .white-block {
  background-color: white;
  color: #707070;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: stretch;
  padding: 1rem;
}
@media only screen and (min-width: 960px) {
  .white-block-outer .white-block {
    width: auto;
    max-width: 75%;
  }
}
.white-block-outer .white-block h2,
.white-block-outer .white-block h3 {
  color: black;
}
input[type=text] {
  font-family: "Roboto Condensed", sans-serif;
  background-color: transparent;
  color: black;
  box-shadow: none;
  border-style: none;
  border-bottom: 1px solid black;
  font-weight: 400;
  font-size: 0.7rem;
  padding: 0.3rem;
}
input[type=text]::placeholder {
  color: #c2c8cc;
}
.radio.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.radio.row .radio-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  padding-left: 0;
  padding-top: 0;
  box-sizing: border-box;
  font-size: 0.8rem;
  color: black;
}
.radio.row .radio-button:not(:last-child) {
  margin-right: 1.5rem;
}
app-dropdown {
  font-size: 0.7rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
app-dropdown .blocker {
  z-index: 9;
}
app-dropdown a.dropdown {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  padding: 0.5rem 0.3rem;
  font-size: 0.7rem;
  color: black;
}
app-dropdown .dropdown-list {
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0.5rem;
  border-radius: 10px;
}
app-dropdown .dropdown-list .dropdown-item {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
app-dropdown .dropdown-list .dropdown-item span {
  word-break: keep-all;
  line-break: loose;
  break-inside: avoid;
  white-space: nowrap;
  margin: 0;
}
app-dropdown .dropdown-list .dropdown-item img {
  margin-right: 0.5rem;
}
app-dropdown .dropdown-list .dropdown-item:not(:first-child) {
  padding-bottom: calc(0.5 * 0.5rem);
  padding-top: calc(0.5 * 0.5rem);
}
app-dropdown .dropdown-list .footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  align-self: stretch;
}
app-dropdown.filterpage.right .dropdown-list {
  right: 0;
  left: auto;
}
app-dropdown.filterpage:not(:last-child) {
  margin-right: 1rem;
}
app-dropdown.filterpage a.dropdown {
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 5px;
  background-color: white;
  width: 5rem;
  font-size: 0.7rem;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: color 0.25s ease, background-color 0.25s ease;
}
@media only screen and (max-width: 959px) {
  app-dropdown.filterpage a.dropdown {
    width: 8rem;
  }
}
app-dropdown.filterpage a.dropdown.open {
  background-color: white;
  color: black;
}
app-dropdown.filterpage a.dropdown .arrow {
  width: 15px;
  height: auto;
  margin-left: 10px;
}
app-dropdown.filterpage .dropdown-list {
  background-color: white;
  width: auto;
  min-width: 100%;
}
app-dropdown.filterpage .dropdown-list .dropdown-item {
  font-size: 0.7rem;
  padding: 0.5rem 1.5rem 0.5rem 0.3rem;
}
app-dropdown.filterpage .dropdown-list .dropdown-item img {
  width: 18px;
  height: 18px;
}
app-dropdown.filterpage .dropdown-list .footer {
  font-size: 80%;
  font-weight: bold;
  text-transform: uppercase;
  color: #c63825;
  padding: 6px;
  margin-left: 6px;
  margin-right: 6px;
  margin-top: 0.3rem;
  border-top: 1px solid #707070;
}
app-dropdown.configpage a.dropdown {
  border-bottom: 1px solid black;
  justify-content: space-between;
}
app-dropdown.configpage a.dropdown .arrow {
  width: 15px;
  height: auto;
  margin-left: 10px;
}
app-dropdown.configpage .dropdown-list {
  background-color: white;
}
app-dropdown.configpage .dropdown-list .dropdown-item {
  padding: 0.25rem 0.5rem;
}
app-dropdown.configpage .dropdown-list .dropdown-item img {
  width: 10px;
  height: 10px;
}
.sidebar-gradient {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% + 1rem);
  height: 6rem;
  margin-left: -1rem;
  background: linear-gradient(90deg, #339ba4 0%, #164194 100%);
}
.sidebar-corner {
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 100%;
  height: 5rem;
  background: url('pm-sidebar-corner.svg');
  background-size: cover;
  background-position: 100%;
}
:root {
  --ucc-backdrop-color: rgba(255, 255, 255, 0.8);
  --ucc-modal-background: #339ba4;
  --ucc-modal-width: 600px;
  --ucc-modal-padding: 3rem;
  --ucc-font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ucc-button-spacing: 2rem;
  --ucc-color-primary: #164194;
  --ucc-color-primary-contrast: white;
  --ucc-color-secondary: #565854;
  --ucc-color-secondary-contrast: white;
  --ucc-switch-width: 2rem;
  --ucc-switch-height: 1rem;
}
@media only screen and (max-width: 959px) {
  :root {
    --ucc-modal-width: calc(100% - 4rem);
  }
}
.ucc-modal {
  color: white !important;
  min-height: auto !important;
}
.ucc-modal a,
.ucc-modal a:hover,
.ucc-modal a:focus,
.ucc-modal a:visited,
.ucc-modal a:active {
  color: white !important;
  text-decoration: underline !important;
}
.ucc-modal .ucc-button.ucc-button--secondary {
  display: none !important;
}
.ucc-modal .ucc-buttons {
  justify-content: center !important;
}
.ucc-button {
  padding: 1rem 5rem !important;
  font-size: 25px !important;
  border-radius: 5px !important;
}

/*# sourceMappingURL=styles.css.map*/