@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Mono Light"), local("RobotoMono-Light");
}

@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Mono"), local("RobotoMono-Regular");
}

:root {
  color-scheme: light;
  --global--spacing-unit: 20px;
  --global--spacing-horizontal: 15px;
  --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal));
  --responsive--aligndefault-width: 100%;
  --responsive--alignwide-width: 100%;
  --page-bg: #ffffff;
  --surface-bg: #ffffff;
  --field-bg: #f4f4f4;
  --button-bg: #474747;
  --button-hover-bg: #777777;
  --button-text: #ffffff;
  --line-color: #dfdfdf;
  --toggle-bg: #ffffff;
  --toggle-border: #dfdfdf;
  --toggle-knob: #474747;
  --logo-filter: none;
  --wp-meliora-primary-color: #58a3ce;
  --wp-meliora-base-font-color: #777777;
  --wp-meliora-heading-color: #474747;
  --wp-meliora-link-normal-color: #000;
  --wp-meliora-link-hover-color: #6994bf;
  --heading-typography-variant: 400;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #111315;
  --surface-bg: #171a1d;
  --field-bg: #23272b;
  --button-bg: #d7dde4;
  --button-hover-bg: #ffffff;
  --button-text: #111315;
  --line-color: #34393f;
  --toggle-bg: #181c20;
  --toggle-border: #3a4148;
  --toggle-knob: #d7dde4;
  --logo-filter: invert(1) grayscale(1) contrast(0.92);
  --wp-meliora-primary-color: #7fc4ee;
  --wp-meliora-base-font-color: #aeb7c0;
  --wp-meliora-heading-color: #eff3f7;
  --wp-meliora-link-normal-color: #eff3f7;
  --wp-meliora-link-hover-color: #7fc4ee;
}

@media only screen and (min-width: 720px) {
  :root {
    --responsive--aligndefault-width: calc(720px - var(--responsive--spacing-horizontal));
    --responsive--alignwide-width: calc(720px - var(--responsive--spacing-horizontal));
  }
}

@media only screen and (min-width: 980px) {
  :root {
    --responsive--aligndefault-width: calc(980px - var(--responsive--spacing-horizontal));
    --responsive--alignwide-width: calc(1140px - var(--responsive--spacing-horizontal));
  }
}

@media only screen and (min-width: 1200px) {
  :root {
    --responsive--aligndefault-width: calc(1140px - var(--responsive--spacing-horizontal));
    --responsive--alignwide-width: calc(1200px - var(--responsive--spacing-horizontal));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--wp-meliora-base-font-color);
  font-family: "Roboto Mono", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: background-color 180ms ease, color 180ms ease;
}

a {
  color: var(--wp-meliora-base-font-color);
  transition: 0.2s;
}

a:visited {
  color: var(--wp-meliora-base-font-color);
}

a:hover,
a:focus,
a:active {
  color: var(--wp-meliora-primary-color);
}

img {
  height: auto;
  max-width: 100%;
}

hr {
  background-color: var(--line-color);
  border: 0;
  height: 1px;
  margin: 0 0 1.5em;
}

h1,
.h1 {
  clear: both;
  color: var(--wp-meliora-heading-color);
  font-family: inherit;
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 0.67em;
}

button,
input[type="submit"] {
  border: none;
  border-radius: 3px;
  background-color: var(--button-bg);
  color: var(--button-text);
  cursor: pointer;
  font-family: inherit;
  font-weight: var(--heading-typography-variant);
  padding: 16px 24px;
  transition: 0.2s;
}

button:hover,
input[type="submit"]:hover {
  background-color: var(--button-hover-bg);
}

input[type="text"],
input[type="password"] {
  width: 100%;
  border: none;
  border-radius: 3px;
  background-color: var(--field-bg);
  color: var(--wp-meliora-heading-color);
  font-family: inherit;
  font-size: 0.75rem;
  line-height: 1.5em;
  padding: 13px 8px 13px 14px;
}

.theme-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
  display: inline-grid;
  grid-template-columns: 18px 38px 18px;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--toggle-border);
  border-radius: 999px;
  background: var(--toggle-bg);
  color: var(--wp-meliora-base-font-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.theme-toggle:hover,
.theme-toggle:focus {
  background: var(--toggle-bg);
  color: var(--wp-meliora-primary-color);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--wp-meliora-primary-color);
  outline-offset: 3px;
}

.theme-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--wp-meliora-base-font-color);
  font-size: 15px;
  line-height: 1;
}

.theme-toggle__track {
  position: relative;
  width: 38px;
  height: 20px;
  border: 1px solid var(--toggle-border);
  border-radius: 999px;
  background: var(--field-bg);
}

.theme-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--toggle-knob);
  transition: transform 160ms ease;
}

html[data-theme="dark"] .theme-toggle__track::after {
  transform: translateX(18px);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.default-max-width,
.u-default-max-width {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto;
  margin-right: auto;
}

.o-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header,
.site-main,
.site-footer {
  padding: var(--global--spacing-unit) var(--global--spacing-horizontal);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  width: 100%;
}

.c-header {
  margin-bottom: 10px;
  background: center center / cover no-repeat;
}

.c-header__main {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
}

.c-header__branding {
  width: auto;
  order: 1;
}

.c-header__branding .custom-logo {
  display: block;
  max-height: 35px;
  width: auto;
  filter: var(--logo-filter);
  transition: filter 180ms ease;
}

.custom-logo-link {
  display: inline-block;
}

.c-header__navigation {
  flex-grow: 1;
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.c-header__navigation__toggle {
  position: relative;
  z-index: 10;
  padding: 0;
  background-color: transparent;
  color: var(--wp-meliora-base-font-color);
}

.c-header__navigation__toggle:hover {
  background-color: transparent;
  color: var(--wp-meliora-primary-color);
}

.c-header__navigation__toggle span {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}

.site-main {
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
  padding: 0 var(--global--spacing-horizontal);
}

@media only screen and (min-width: 980px) {
  .site-main {
    padding: var(--global--spacing-unit) var(--global--spacing-horizontal);
  }
}

.site.no-sidebar .site-main {
  --responsive--aligndefault-width: calc(720px - var(--responsive--spacing-horizontal) + 46px);
  --responsive--alignwide-width: calc(720px - var(--responsive--spacing-horizontal) + 46px);
}

.site.no-sidebar .site-main__content {
  width: 100%;
}

.c-page__header {
  margin-bottom: 25px;
}

.c-page__title {
  font-size: 2rem;
  margin: 0 0 25px;
  word-break: break-word;
}

.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--responsive--aligndefault-width);
}

.entry-content .wp-block-separator {
  max-width: var(--responsive--aligndefault-width);
}

.has-text-align-center {
  text-align: center;
}

.title-3profilm {
  font-size: 55px;
  margin: 0 0 0.67em;
}

.su-animate {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 5s ease 0.1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-spacer {
  clear: both;
}

.spacer-25 {
  height: 25px;
}

.spacer-49 {
  height: 49px;
}

.wp-block-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5em;
  min-height: 24px;
  margin-bottom: 1.75em;
}

.wp-block-column {
  min-height: 1px;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}

.is-content-justification-center {
  justify-content: center;
}

.wp-block-button {
  margin: 1rem 0;
}

.wp-block-button__width-25 {
  width: 25%;
  min-width: 118px;
}

.wp-block-button__link {
  display: block;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  border: 1px solid currentColor;
  color: #abb8c3;
  background: var(--surface-bg);
  text-align: center;
  text-decoration: none;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: var(--wp-meliora-primary-color);
}

.site-footer {
  width: 100%;
}

.c-footer__top {
  background-color: var(--page-bg);
}

.c-footer__top__back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-footer__top__back-to-top__link {
  width: 63px;
  height: 63px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--page-bg);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5px;
  text-decoration: none;
  border-radius: 50%;
  transform: translateY(27px);
}

.c-footer__bottom {
  padding: 40px 0;
}

.c-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-footer__copyright {
  width: 100%;
  margin-top: 10px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-footer__copyright p {
  margin: 0;
}

.c-footer__socials {
  width: 100%;
  margin-top: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.s-footer-socials a {
  margin-right: 24px;
  color: var(--wp-meliora-base-font-color);
  text-decoration: none;
}

.s-footer-socials a:last-child {
  margin-right: 0;
}

.s-footer-socials span {
  display: inline-flex;
  min-width: 18px;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.s-footer-socials a:hover span {
  color: var(--wp-meliora-primary-color);
}

.login-form-wrap {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.um {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.um-row {
  margin: 0 0 30px;
}

.um-field {
  margin: 0 0 20px;
}

.um-field-label {
  margin: 0 0 8px;
  color: var(--wp-meliora-heading-color);
  font-size: 14px;
}

.um-req {
  color: #c74a4a;
  margin-left: 2px;
}

.um-col-alt {
  display: flex;
  gap: 16px;
  align-items: center;
}

.um-left,
.um-right {
  width: 50%;
}

.um-button {
  display: block;
  width: 100%;
  border-radius: 3px;
  background: #3ba1da;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  padding: 13px 18px;
}

.um-button.um-alt {
  background: var(--field-bg);
  color: var(--wp-meliora-heading-color) !important;
}

.um-col-alt-b {
  margin-top: 20px;
  text-align: center;
}

.um-link-alt {
  color: var(--wp-meliora-base-font-color);
  font-size: 14px;
  text-decoration: none;
}

@media only screen and (min-width: 980px) {
  .c-footer__grid {
    flex-wrap: nowrap;
  }

  .c-footer__socials {
    width: auto;
    margin-top: 0;
    padding: 0;
  }
}

@media only screen and (min-width: 1140px) {
  .c-header__main {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .c-header__branding {
    width: 38%;
  }

  .c-header__navigation {
    justify-content: flex-start;
  }

  .c-footer__copyright {
    width: auto;
    margin-top: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
}

@media only screen and (max-width: 560px) {
  .theme-toggle {
    top: 12px;
    right: 12px;
    grid-template-columns: 16px 34px 16px;
    gap: 6px;
    padding: 5px 7px;
  }

  .theme-toggle__track {
    width: 34px;
  }

  html[data-theme="dark"] .theme-toggle__track::after {
    transform: translateX(14px);
  }

  .title-3profilm {
    font-size: 42px;
  }

  .wp-block-button__width-25 {
    width: 55%;
  }

  .um-col-alt {
    flex-direction: column;
  }

  .um-left,
  .um-right {
    width: 100%;
  }
}
