@charset "UTF-8";
@import 'https://use.fontawesome.com/releases/v5.5.0/css/all.css';
@import 'https://fonts.googleapis.com/css?family=Roboto';
@import url(rouge.css);
html {
  height: 100%; }

body {
  box-sizing: border-box;
  position: relative;
  min-height: 100%;
  margin: 0;
  padding-bottom: 120px; }

.force-flex {
  display: flex; }
  .force-flex > * {
    margin: 10px;
    flex: 1; }

pre {
  overflow: auto;
  padding: 20px; }

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 0;
  height: 100px;
  background-color: #333;
  color: #999;
  text-align: center; }

.content {
  clear: both; }

.flex > * {
  margin: 10px; }

@media screen and (min-width: 800px) {
  .small-only {
    display: none !important; }

  .content {
    max-width: 800px;
    margin: auto; }

  .flex {
    display: flex; }
    .flex > * {
      flex: 1; } }
@media screen and (max-width: 799px) {
  .big-only {
    display: none !important; }

  .content {
    margin: auto;
    padding: 15px; } }
.dropdown {
  height: 50px; }
  .dropdown > input[type][id] {
    display: none !important; }
    .dropdown > input[type][id] + label[for] {
      float: right;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      cursor: pointer; }
      .dropdown > input[type][id] + label[for]::before {
        content: "☰"; }
      .dropdown > input[type][id] + label[for] + .dropdown-content {
        background-color: #eee;
        transform: scale(0);
        transform-origin: 90% 0%;
        position: absolute;
        top: 100%;
        transition: 0.2s ease;
        transition-property: transform;
        right: 0;
        box-shadow: 5px 5px 20px #666;
        border-radius: 4px;
        overflow: hidden; }
    .dropdown > input[type][id]:checked + label[for] {
      background: rgba(0, 0, 0, 0.2); }
      .dropdown > input[type][id]:checked + label[for] + .dropdown-content {
        transform: scale(1); }
      .dropdown > input[type][id]:checked + label[for]::after {
        cursor: default;
        background: rgba(0, 0, 0, 0);
        position: fixed;
        content: " ";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
    .dropdown > input[type][id]:first-child {
      transform-origin: 10% 0%;
      left: 0;
      right: auto; }
      .dropdown > input[type][id]:first-child + label[for] + .dropdown-content {
        float: left; }

@media screen and (min-width: 800px) {
  .dropdown.dropdown-small > input[type][id]:checked + label[for], .dropdown.dropdown-small > input[type][id] + label[for] {
    display: none; }
    .dropdown.dropdown-small > input[type][id]:checked + label[for] + .dropdown-content, .dropdown.dropdown-small > input[type][id] + label[for] + .dropdown-content {
      background-color: unset;
      transform: unset;
      margin: 0;
      position: unset;
      right: auto;
      left: auto;
      box-shadow: unset;
      border-radius: unset; } }
body {
  font-family: "Roboto", sans-serif; }

.banner a {
  outline: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: #355f48; }

.card {
  margin: 50px 8px;
  padding: 8px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background-color: #fafafa;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37); }
  .card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    margin: 5px 0; }
  .card .title {
    background: #bad9c8;
    background-size: cover;
    background-image: url(../img/bg.svg);
    color: #478061;
    text-align: center;
    margin: -8px -8px 8px;
    padding: 8px; }
    .card .title a {
      text-decoration: none; }

a {
  color: #478061;
  transition: 0.3s ease all; }

a:hover {
  color: #233e2f; }

.spinner {
  display: inline-block;
  font-weight: bold;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  border: 3px solid #cbe2d5;
  border-left-color: #478061;
  border-radius: 100%;
  height: 20px;
  width: 20px; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.pagination a.icon {
  color: #79b494; }
  .pagination a.icon:hover {
    color: #478061; }
.pagination span.icon {
  color: #dbebe2; }

.top-bar-banner {
  display: flex;
  background: #dbebe2 fixed left top;
  background-image: url(../img/bg.svg);
  justify-content: space-between; }
  .top-bar-banner span {
    flex: 1; }
  .top-bar-banner span:first-child, .top-bar-banner .logo {
    align-self: stretch;
    background: inherit;
    position: relative;
    z-index: 4; }
  .top-bar-banner .logo {
    text-decoration: none;
    line-height: 2;
    text-transform: uppercase;
    text-align: center;
    padding: 20px; }
    .top-bar-banner .logo img {
      height: 100px;
      transition: 0.5s ease; }
  .top-bar-banner .logo-icon {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px; }
    .top-bar-banner .logo-icon img {
      height: 30px; }

.top-bar {
  background: #eee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  z-index: 2;
  display: flex;
  height: 50px;
  padding-left: 50px;
  position: sticky;
  top: 0; }
  .top-bar nav {
    display: flex; }
    .top-bar nav a {
      transition: 0.1s ease;
      padding: 0 20px;
      min-height: 40px;
      display: flex;
      align-items: center;
      outline: 0;
      text-decoration: none;
      border-color: transparent; }
      .top-bar nav a:hover {
        background: rgba(255, 255, 255, 0.4);
        border-bottom: solid #478061;
        border-top: solid transparent;
        border-width: 5px 0;
        color: #478061; }

*:target {
  padding-top: 50px;
  margin-top: -50px; }

@media screen and (min-width: 800px) {
  .top-bar nav .secondary {
    display: flex;
    border-radius: 0 0 0 10px;
    position: fixed;
    right: 0;
    top: 0;
    height: 50px;
    background: rgba(238, 238, 238, 0.3); }
    .top-bar nav .secondary a:hover {
      border-width: 0;
      color: white;
      background-color: #478061; } }
@media screen and (max-width: 799px) {
  .top-bar-banner .logo img {
    height: 50px; }

  .top-bar .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto; }
  .top-bar nav {
    flex-direction: column;
    flex-wrap: nowrap; }
    .top-bar nav a:hover {
      border-width: 0;
      color: white;
      background-color: #478061; }
    .top-bar nav .secondary {
      display: flex;
      flex-direction: row;
      border-top: 1px solid rgba(0, 0, 0, 0.25); }
    .top-bar nav span {
      padding-left: 5px; } }
.pagination {
  background: white;
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between; }

@media screen and (min-width: 800px) {
  .pagination {
    justify-content: center;
    padding: 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #000; }
    .pagination .icon {
      font-size: 100px; }
    .pagination .page-next, .pagination .page-prev {
      position: fixed;
      display: flex;
      align-items: center;
      align-content: center;
      top: 0;
      bottom: 0;
      padding: 0 50px; }
    .pagination .page-next {
      left: 50%;
      margin-left: 400px; }
    .pagination .page-prev {
      right: 50%;
      margin-right: 400px; } }
@media screen and (max-width: 799px) {
  .pagination {
    box-shadow: 0px 0px 10px #666;
    height: 50px; }
    .pagination .pagination-pages {
      display: flex;
      flex: 1;
      align-items: center;
      align-content: center;
      justify-content: space-evenly; }
    .pagination a {
      outline: 0; }
    .pagination .fa {
      padding: 10px;
      font-size: 30px; } }
@media screen and (min-width: 800px) {
  body > ul.list, body > ol.list {
    margin: auto;
    max-width: 800px; } }
body > ul.list > li, body ol.list > li {
  background: #f5f5f5; }

ul.list, ol.list {
  margin: 0;
  padding: 0; }
  ul.list > li, ol.list > li {
    display: block;
    padding: 15px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25); }
  ul.list > input[type], ol.list > input[type] {
    display: none !important; }
    ul.list > input[type] + li > label[for], ol.list > input[type] + li > label[for] {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      ul.list > input[type] + li > label[for]::after, ol.list > input[type] + li > label[for]::after {
        color: #478061;
        display: inline-block;
        position: relative;
        transition: 0.25s ease;
        content: "◀"; }
  ul.list > input[type] + li + *, ol.list > input[type] + li + * {
    display: none; }
  ul.list > input[type]:checked + li > label::after, ol.list > input[type]:checked + li > label::after {
    transform: rotate(-90deg); }
  ul.list > input[type]:checked + li + *, ol.list > input[type]:checked + li + * {
    display: block; }
