html {
  font-size: 16px;
  font-family: 'Titillium Web', serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  color: #121212;
  background-color: white;
}

[class^='pdsfont-'],
[class*=' pdsfont-'] {
  font-weight: 400;
  font-size: 24px;
}

.root_page {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.root_header {
  position: relative;
  display: block;
  height: 48px;
  min-height: 48px;
}

.root_main {
  position: relative;
  display: block;
  flex: 1;
}

.root_footer {
  position: relative;
  background-color: #0066cc;
  color: #fff;
  height: 32px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.root_footer_left,
.root_footer_right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.root_footer_left {
  flex: 1;
}

.root_footer_right {
  justify-content: flex-end;
}

.root_footer_right svg {
  fill: white;
  font-size: 10px;
}


.copyright {
  display: none;
  line-height: 1;

  @media screen and (min-width: 500px) {
    display: block;
  }
}

.social {
  position: relative;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social .logo {
  height: 20px;
}

.social svg {
  height: 20px;
}

.social:hover {
  opacity: 1;
}

.locale-en-GB .it-IT {
  display: none;
}

.locale-it-IT .en-GB {
  display: none;
}


.root_header,
.root_footer {
  a {
    outline: solid 1px transparent;
    word-wrap: break-word;
    color: #207ad5;
    text-decoration: none;
    cursor: pointer;
    padding: 0 2px;
    border-radius: 3px;
    transition: all .2s;

    &:visited {
      color: #0066cc;
      text-decoration: none;
    }

    &:hover,
    &:active {
      color: #121212;
    }

    &:focus,
    &:focus-visible {
      box-shadow: inset 0 0 1px 1px #6aaaeb;
    }
  }

  ol {
    margin: 0;
    padding-top: 3px;
    padding-left: 28px;
    padding-bottom: 10px;
    list-style-position: outside;
    overflow: hidden;

    ol {
      margin-top: 5px;
      padding-bottom: 0;
      list-style-type: lower-alpha;

      ol {
        list-style-type: upper-roman;
      }
    }
  }

  ul {
    margin: 0;
    padding-top: 3px;
    padding-left: 22px;
    padding-bottom: 10px;
    list-style-position: outside;
    overflow: hidden;

    ul {
      margin-top: 5px;
      padding-bottom: 0;
    }
  }

  ul,
  ol {
    padding: 0 1rem;

    p {
      margin-bottom: 0;
    }

    li {
      margin-bottom: 5px;
    }
  }

  sup {
    vertical-align: top;
    font-size: 0.7em;
  }
}
