html {
  box-sizing: border-box;
}

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

:root {
  font-size: 15px;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 180, 204, 0.4);
}

@media only print {
  body * {
    display: none !important;
  }

  body:after {
    content: "Don't waste paper!";
  }
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 162%;
  color: #343838;
  margin: 0;
  background: #efefef;
}

main {
  background: #fff;
}

.wrap {
  width: 90%;
  max-width: 60rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.wrap--footer {
  padding: 1rem 0;
}

.elemnts--inline p {
  display: inline-block;
  margin-right: 1rem;
}

.wrap--header {
  border-bottom: 1px solid #efefef;
}

.header {
  color: #005F6B;
  font-weight: 400;
}

select {
  border: 1px solid #efefef;
  background: #fff;
  padding: .4rem;
  font-family: inherit;
  font-size: inherit;
  color: #222;
}

textarea {
  display: block;
  width: 100%;
  font-family: 'Source Code Pro', monospace;
  font-size: inherit;
  color: #222;
  background: #f5f5f5;
  border: none;
  padding: 1rem;
  resize: vertical;
}

.code-block {
  display: block;
  width: 100%;
  font-family: 'Source Code Pro', monospace;
  font-size: inherit;
  color: #222;
  background: #f5f5f5;
  border: none;
  padding: 1rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  min-height: 2rem;
  overflow: auto;
}

button {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  background: #00B4CC;
  border: none;
  border-bottom: 4px solid #008C9E;
  padding: 1rem 1.6rem;
  font-size: 110%;
  cursor: pointer;
  border-radius: 3px;
}

.actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.button--reset {
  background: #888;
  border-bottom-color: #666;
}

.hidden {
  display: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
}

.section-group {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
  background: #fafafa;
}