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

* {
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

/* prevent iOS font size change */
html {
  -webkit-text-size-adjust: 100%;
  font-family: 'Century Gothic','CenturyGothic','AppleGothic',sans-serif;
}

/* reset body line-height */
body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
}

/* all media elements set to block and full width */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

/* inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  line-height: inherit;
  color: inherit;
  border: solid 1px #000;
  padding: 5px;
}

/* collapse table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* assign button hover state */
button, [role="button"] {
  cursor: pointer;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}

/* reset anchor style */
a {
  cursor: pointer;
  color: inherit;
  text-decoration: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* reset heading style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* reset list style */
ol, ul {
  list-style: none;
}

/* reset firefox placeholder opacity */
::-moz-placeholder {
  opacity: 1;
}

/* reset textarea style */
textarea {
  /* move the label to the top */
  vertical-align: top;
  /* turn off scroll bars in IE unless needed */
  overflow: auto;
}


/* remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
    font-family: 'Century Gothic','CenturyGothic','AppleGothic',sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
    margin: 0 0 15px 0;
}

h1 {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 15px 0;
}

p {
    font-size: 18px;
    line-height: 20px;
}

hr {
    margin: 40px 0;
    border-bottom: solid 1px #912921;
}

.elements-container h2 {
  margin: 30px 0 15px 0;
}

table.elements {
    width: 100%;
    border-top: solid 1px #000;
    border-left: solid 1px #000;
    margin: 50px 0;
}

table.elements thead td {
    font-weight: bold;
    width: 16.666%;
    font-family: 'Century Gothic','CenturyGothic','AppleGothic',sans-serif;
}

table.elements tbody.result-container {
  cursor: pointer;
}

table.elements td {
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    padding: 5px;
    vertical-align: top;
    font-family: 'Century Gothic','CenturyGothic','AppleGothic',sans-serif;
}

div.inner-content {
    padding: 50px 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard div.inner-content {
    max-width: inherit;
    padding: 50px 25px;
}

div.header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

div.header img.logo {
    margin: 0 auto;
    display: block;
}

div.navigation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.button {
    display: block;
    padding: 20px 25px;
    background-color: #912921;
    color: #fff;
    border-radius: 10px;
}

.button:hover {
    background-color: #000;
}

div.results-container {
    text-align: center;
    color: #912921;
    margin: 0 0 30px 0;
}

.form-group {
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
    border-bottom: solid 1px #912921;
}

.form-group input[type="text"] {
    border: solid 1px #000;
    width: 100%;
    margin: 10px 0 0 0;
}

.form-group textarea{
    border: solid 1px #000;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 20px;
}

.form-group input[type="checkbox"] {
    margin: 0 10px 15px 0;
    cursor: pointer;
}

div.filtering {
  display: flex;
  justify-content: flex-start;
  margin: 50px 0 0;
  flex-wrap: wrap;
  gap: 30px 2%;
}

div.filtering > div {
  flex: 1 1 100%;
}

div.filtering h3 {
  flex: 1 1 100%;
}

div.filtering label {
  display: block;
  margin: 0 0 10px;
}

div.filtering textarea {
  width: 100%;
}

div.filtering select {
  width: 100%;
}

div.filtering .button {
  flex: 1 1 49%;
}

.site-footer {
    padding: 20px 0;
    border-top: solid 1px #912921;
    text-align: center;
}