/* ==========================================================================
   VERNOOY CONTAINERS — Base / reset
   HTML-element defaults only. No component classes here.
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body,
#page-wrapper,
#page,
.layout-main-wrapper,
#main.container-fluid,
.dialog-off-canvas-main-canvas {
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 0;
}
hr {
    opacity: unset;
}
p {
  color: var(--ink-soft);
  margin: 0 0 1em;
}

a {
  color: var(--rust-600);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover,
a:focus {
  color: var(--rust-700);
}

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

ul, ol {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.floatright.fbl {
  margin-left: 13px;
  padding-right: 6px;
  background: #c3c3c3;
  color: white;
  margin-top: 10px;
}
.floatright {
  float: right;
}
