/* Fundamental colours
   ======================== */
/* Themeable colours 
   ======================== */
.button-shadow {
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}
/* Mixins
   ======================== */
/* Sizes
   ======================== */
.landing-root {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
.home-panel {
  padding: 5px;
}
.list-panel .flex-col:not(:last-child) {
  margin: 0;
}
.list-panel {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 5px;
  height: 100%;
  text-align: center;
}
.list-panel h3 {
  margin-top: 10px;
  padding: 0;
  height: auto;
  transition: none;
  line-height: 1em;
}
.list-panel p {
  margin: 5px 0 10px;
}
.list-panel h3,
.list-panel p {
  padding: 0;
  height: auto;
}
.home-sign-in h3 {
  margin-bottom: 10px;
}
.btn {
  padding: 0.75em 30px calc(0.75em - 1px);
  transition: none;
}
.landing-icon {
  max-width: 90%;
}
/* Narrow display */
@media screen and (max-width: 800px) {
  .nw50 {
    width: 50%;
  }
  .nw100 {
    width: 100%;
  }
}
/* Wide display */
@media screen and (min-width: 801px) {
  .dw25 {
    width: 25%;
  }
  .dw33 {
    width: 33.33%;
  }
  .dw50 {
    width: 50%;
  }
  .dw66 {
    width: 66%;
  }
  .dw100 {
    width: 100%;
  }
}
