body {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas: "top" "center";
  min-height: 100vh;
  min-width: 32rem;
  justify-items: center;
  align-items: center;
  background-color: rgba(100, 100, 100, 0.3);
  background-image: url("https://cdn-fluvius.azureedge.net/fds/latest/images/fluvius-meteropnemers-bg.jpg");
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
}

#fluv-announcement-tray {
  width: 100%;
  grid-area: top;
}

#api h2 {
  font-size: 2rem;
  line-height: 2.4rem;
}

.mat-icon {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1;
  vertical-align: text-bottom;
}

.verifying-modal {
  display: none;
}

.verificationInfoText div[style*="display: inline;"],
.verificationSuccessText div[style*="display: inline;"],
.verificationErrorText div[style*="display: inline;"] {
  display: inline-block !important;
}

.error,
.verificationInfoText,
.verificationErrorText,
.verificationSuccessText {
  font-size: 1.4rem;
}

.verificationInfoText {
  margin-bottom: 0.6rem;
  color: #004c69;
}

.error,
.verificationErrorText {
  color: #9D234B;
}

.verificationSuccessText {
  color: #004c69;
}

input, select {
  padding: 0.8rem 1.2rem;
  border: 0.1rem solid #B1B1B1;
  border-radius: 0.4rem;
  background: white;
  font-size: 1.6rem;
}
input:disabled, input.disabled, select:disabled, select.disabled {
  background: #F9F9F9;
  color: #B1B1B1;
}
input.invalid, select.invalid {
  border-color: #9D234B;
  color: #9D234B;
}
input.disabled, select.disabled {
  pointer-events: none;
}
input::placeholder, select::placeholder {
  color: #B1B1B1;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuNCIgaGVpZ2h0PSIyOTIuNCI+PHBhdGggZmlsbD0iIzAwNGM2OSIgZD0iTTI4NyA2OS40YTE3LjYgMTcuNiAwIDAgMC0xMy01LjRIMTguNGMtNSAwLTkuMyAxLjgtMTIuOSA1LjRBMTcuNiAxNy42IDAgMCAwIDAgODIuMmMwIDUgMS44IDkuMyA1LjQgMTIuOWwxMjggMTI3LjljMy42IDMuNiA3LjggNS40IDEyLjggNS40czkuMi0xLjggMTIuOC01LjRMMjg3IDk1YzMuNS0zLjUgNS40LTcuOCA1LjQtMTIuOCAwLTUtMS45LTkuMi01LjUtMTIuOHoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 1rem auto;
}
select::-ms-expand {
  display: none;
}

.entry-container {
  margin-bottom: -1.6rem;
}

.verificationControlContent {
  width: 100%;
}

.entry-item,
.attrEntry {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.entry-item label,
.entry-item input,
.entry-item select,
.entry-item .buttons,
.attrEntry label,
.attrEntry input,
.attrEntry select,
.attrEntry .buttons {
  width: 100%;
}
.entry-item label,
.attrEntry label {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.entry-item .error,
.attrEntry .error {
  order: 99;
  flex: 0 0 100%;
}
.entry-item .error[style^="display: block"] + input,
.attrEntry .error[style^="display: block"] + input {
  border-color: #9D234B;
}
.entry-item .error p,
.attrEntry .error p {
  margin: 0;
}
.entry-item .helpLink,
.attrEntry .helpLink {
  display: none;
}
.entry-item.readOnly label,
.attrEntry.readOnly label {
  color: #B1B1B1;
}

.fluv-button {
  padding: 1rem 2rem;
  display: inline-block;
  border: none;
  background: #e0e0e0;
  border: 0.1rem solid #004c69;
  border-radius: 0.4rem;
  color: #004c69;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}
.fluv-button:hover {
  text-shadow: none;
}
.fluv-button .mat-icon {
  margin-right: 0.5rem;
}
.fluv-button .mat-icon.right {
  margin-left: 0.5rem;
  margin-right: 0;
}
.fluv-button:disabled {
  border-color: #e0e0e0 !important;
  background: #e0e0e0 !important;
  color: #646464 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  cursor: not-allowed !important;
}
@media (max-width: 575px) {
  .fluv-button {
    width: 100%;
  }
}
.fluv-button.fluv-outline-button {
  background: white;
  transition: background 0.3s;
}
.fluv-button.fluv-outline-button:hover, .fluv-button.fluv-outline-button:focus {
  background: rgba(0, 76, 105, 0.1);
}
.fluv-button.fluv-outline-button:active {
  background: rgba(0, 76, 105, 0.2);
}
.fluv-button.fluv-link-button {
  background: none;
  border-color: transparent;
  text-decoration: underline;
  transition: background 0.3s;
  font-weight: 400;
}
.fluv-button.fluv-link-button:hover, .fluv-button.fluv-link-button:focus {
  text-shadow: 0 0 0.02rem currentcolor;
  background: #e6edf0;
}
.fluv-button.fluv-link-button:active {
  background: #ccdbe1;
}
@media (max-width: 575px) {
  .fluv-button.fluv-link-button {
    width: 100%;
    background: #e6edf0;
  }
  .fluv-button.fluv-link-button:hover, .fluv-button.fluv-link-button:focus {
    background: #ccdbe1;
  }
}

.buttons {
  margin: 0 -0.4rem;
}
.buttons > * {
  vertical-align: middle;
  margin: 0.4rem;
}

.divider {
  width: 100%;
  height: 0.1rem;
  margin: 1.7rem 0;
  background: #e0e0e0;
}
.divider * {
  display: none;
}

.header-with-icon {
  display: flex;
}
.header-with-icon .fluv-icon {
  width: 1em;
  height: 1em;
  margin-right: 1.2rem;
  font-size: 3.2rem;
}

.CheckboxMultiSelect .attrEntry {
  margin-bottom: 1.6em;
}
.CheckboxMultiSelect label[for=AgreedToTermsOfService] {
  display: none;
}
.CheckboxMultiSelect input {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}
.CheckboxMultiSelect input + label {
  cursor: pointer;
  margin-left: 3.6rem;
  color: #333;
  font-weight: 400;
  font-size: 1.5rem;
  user-select: none;
}
.CheckboxMultiSelect input + label::before {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: -3.6rem;
  margin-right: 1.6rem;
  display: inline-block;
  box-sizing: content-box;
  border: 0.2rem solid #004c69;
  border-radius: 0.3rem;
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1;
  vertical-align: text-bottom;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.CheckboxMultiSelect input:focus + label::before {
  box-shadow: 0 0 0.6rem 0 rgba(0, 76, 105, 0.5);
}
.CheckboxMultiSelect input:checked + label::before {
  content: "check";
}

#simplemodal-overlay {
  background: rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
  backdrop-filter: blur(4px);
}

#simplemodal-container .simplemodal-wrap::before {
  content: "";
  height: 4rem;
  display: block;
  background-image: url("https://cdn-fluvius.azureedge.net/fds/latest/images/fluvius-loading.gif");
  background-size: 8.2rem;
  background-repeat: no-repeat;
  background-position: center;
}
#simplemodal-container .simplemodal-data {
  padding-top: 4rem !important;
  font-size: 1.8rem;
  font-weight: 500;
}

.fluv-window {
  grid-area: center;
}
.fluv-window.fluv-window-with-sidebar {
  max-width: 110rem;
}
.fluv-window.fluv-window-with-sidebar .fluv-popup-sidebar-toggle {
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}
.fluv-window.fluv-window-with-sidebar .fluv-popup-sidebar-toggle.toggle-close {
  z-index: 100;
  font-family: "Material Icons Outlined";
}
.fluv-window.fluv-window-with-sidebar .fluv-popup-sidebar .checklist li {
  margin-bottom: 0.5em;
}
.fluv-window.fluv-window-with-sidebar .fluv-popup-sidebar .checklist li::before {
  margin-right: 0.8rem;
}
.fluv-window.fluv-window-with-sidebar .fluv-popup-sidebar .checklist li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .fluv-window.fluv-window-with-sidebar .fluv-popup-sidebar:target {
    transform: translateX(0);
  }
}

.password-eye {
  color: #004c69;
}

::-ms-reveal {
  display: none;
}