/* colors */
:root {
  --black: #000;
  --gray: #8e8e8e;
  --white: #FFF;

  --content-padding: 1rem;
  --footer-height: 60px;

  /* margins */
  --margin-0: 0rem;
  --margin-1: 0.25rem;
  --margin-2: 0.5rem;
  --margin-3: 1rem;
  --margin-4: 1.5rem;
  --margin-5: 3.0rem;

  /*
    @media (min-width: 576px) { ... }
    @media (min-width: 768px) { ... }
    @media (min-width: 992px) { ... }
    @media (min-width: 1200px) { ... }
    @media (min-width: 1400px) { ... }
  */
}


/* begin global */
body {
  margin: 0;
  font-family: 'Georgia';
  background-color: #cbc5c5;
  font-size: 1.125rem;
}

.unstyled-button {
  border: 0;
  outline: unset !important;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  cursor: pointer;
  color: unset;
}
/* end global */

.header {
  background-color: var(--black);
  height: 60px;
  width: 100%;
  color: var(--white);
}

.header-content {
  padding: 0.5rem 1.0rem;

  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.logo {
  width: 300px;
  color: #FFF;
  display: flex;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons img {
  width: 1.5rem;
  margin: 0 var(--margin-1);
}

@media (min-width: 768px) {
  .social-icons img {
    width: 2rem;
    margin: 0 var(--margin-2);
  }
}

.menu {
  padding: var(--content-padding);
}
.menu ul {
  padding-left: 0;
}
.menu li {
  list-style: none;
  display: inline-block;
  margin-right: 0.5rem;
}

.menu button.active {
  text-decoration: underline !important;
}

/* begin header image */
.header-image-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-right: 0;
  border-left: 0;
}
.header-image {
  position: absolute;
  background-image: url("assets/images/roadside-jam-sepiatone-dim.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .header-image-container {
    height: 250px;
  }
}
/* end header image */

.container {
  position: relative;
  min-height: 100vh;
  background-color: #FFF;
  box-shadow: 0px 0px 8px #999;
}

.content {
  padding: var(--content-padding);
  padding-bottom: var(--footer-height);
}

#set-list-table th button.active .label::after {
  content: "▼";
  font-size: 0.75rem;
  margin-left: 0.5rem;
  display: inline-block;
}
#set-list-table th button.active.reverse .label::after {
  content: "▲";
}

footer {
  display: flex;
  background-color: var(--black);
  height: 75px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);
  color: var(--white);
}
.footer-content {
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

@media (min-width: 576px) {
  .header {
    height: 80px;
  }
  .logo {
    width: 400px;
  }
}