:root {
  --white: #ffffff;
  --brown-dark: #5d433c;
  --brown: #8a6a62;
  --accent: #cc3d02;
  --accent-2: #cb3c01;
  --light-gray: #cccccc;
  --text: #444444;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--white);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--brown);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/* Top bar from strook compiler (library/index.php) */
.topbar {
  height: 100px;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.topbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#logo img {
  height: 50px;
  width: auto;
  display: block;
}

#menustrip {
  border-bottom: 1px solid var(--light-gray);
}
.strip-inner {
	padding: 0 37px;
}
#content {
  width: 100%;
  padding: 24px 20px 40px;
  background: var(--white);
}

/* Footer from strook compiler (library/index.php) */
.footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  padding: 12px 36px;
  font-size: 12px;
  color: #666;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .topbar {
    height: auto;
    padding: 14px 20px;
  }
}
