.button-list li {
  margin-bottom: 10px; }
.calendar {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%; }
  .calendar .leader {
    position: relative;
    width: 100%; }
    .calendar .leader img {
      width: 100%; }
    .calendar .leader .name {
      position: absolute;
      bottom: 0;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      width: 100%;
      padding: 5px 0; }
  .calendar td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 5px;
    text-align: center; }
    .calendar td.trip-cell a {
      color: black; }
  .calendar a {
    text-decoration: none; }
    .calendar a:hover {
      text-decoration: underline; }
input, textarea, button, select {
  padding: 10px;
  height: 45px;
  border-radius: 5px;
  border: 0;
  margin: 5px 0; }

button {
  margin: 0 3px;
  background-color: #ccc;
  border: 2px outset #ddd;
  color: black;
  padding-left: 20px;
  padding-right: 20px; }

* {
  box-sizing: border-box; }

body {
  background: #009dc9;
  background: linear-gradient(180deg, #009dc9 0%, #002732 100%);
  color: white;
  text-align: center;
  padding-bottom: 40px; }

a {
  color: white; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.btn {
  display: block;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: bold;
  text-decoration: none; }
  .btn:hover {
    background-color: rgba(255, 255, 255, 0.5); }

body, td, input, select, textarea, button {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px; }

.logo {
  text-align: center;
  padding: 20px 10px; }
  .logo img {
    max-width: 100%; }

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none; } }

@media (min-width: 768px) {
  .hide-on-desktop {
    display: none; } }
.triplist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px; }
  .triplist__heading h1 {
    font-size: 22px;
    text-align: center;
    padding-bottom: 10px; }
    .triplist__heading h1 span {
      display: block;
      font-size: 20px; }
  .triplist__item {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    flex: 0 0 250px;
    padding: 20px;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .triplist__item {
        flex: 0 1 100%; } }
    .triplist__item__leader {
      position: relative;
      margin-bottom: 20px; }
      .triplist__item__leader img {
        width: 100%;
        border-radius: 5px; }
      .triplist__item__leader div {
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 0 0 5px 5px;
        font-size: 22px;
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 10px 0; }
    .triplist__item__difficulty {
      color: #333;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 10px;
      font-size: 20px;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .triplist__item__difficulty div {
        font-size: 16px; }
      .triplist__item__difficulty__link {
        color: #333;
        display: inline-block;
        font-size: 16px; }
    .triplist__item__participants {
      padding: 10px 5px; }
      .triplist__item__participants__list {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center; }
    .triplist__item__signup {
      padding-top: 10px; }
      .triplist__item__signup form {
        margin: 0; }
      .triplist__item__signup button {
        font-size: 20px;
        height: 54px;
        color: #333;
        font-weight: bold;
        text-transform: uppercase; }