/*
	Configuration
*/
/*
	Foundation
*/
.grid {
  display: flex;
  flex-wrap: wrap; }
  .grid > * {
    box-sizing: border-box; }
  .grid.-pad > * {
    padding: 2rem; }
  @media (max-width: 512px) {
    .grid > div {
      width: 100%; }
    .grid.-xs-1 > div {
      width: 100%; }
    .grid.-xs-2 > div {
      width: 50%; }
    .grid.-xs-3 > div {
      width: 33.33333%; }
    .grid.-xs-4 > div {
      width: 25%; } }
  @media (min-width: 513px) {
    .grid.-s-1 > div {
      width: 100%; }
    .grid.-s-2 > div {
      width: 50%; }
    .grid.-s-3 > div {
      width: 33.33333%; }
    .grid.-s-4 > div {
      width: 25%; }
    .grid.-s-5 > div {
      width: 20%; }
    .grid.-s-6 > div {
      width: 16.66667%; }
    .grid.-s-7 > div {
      width: 14.28571%; }
    .grid.-s-8 > div {
      width: 12.5%; }
    .grid.-s-9 > div {
      width: 11.11111%; }
    .grid.-s-10 > div {
      width: 10%; }
    .grid.-s-11 > div {
      width: 9.09091%; }
    .grid.-s-12 > div {
      width: 8.33333%; } }
  @media (min-width: 768px) {
    .grid.-m-1 > div {
      width: 100%; }
    .grid.-m-2 > div {
      width: 50%; }
    .grid.-m-3 > div {
      width: 33.33333%; }
    .grid.-m-4 > div {
      width: 25%; }
    .grid.-m-5 > div {
      width: 20%; }
    .grid.-m-6 > div {
      width: 16.66667%; }
    .grid.-m-7 > div {
      width: 14.28571%; }
    .grid.-m-8 > div {
      width: 12.5%; }
    .grid.-m-9 > div {
      width: 11.11111%; }
    .grid.-m-10 > div {
      width: 10%; }
    .grid.-m-11 > div {
      width: 9.09091%; }
    .grid.-m-12 > div {
      width: 8.33333%; } }
  @media (min-width: 1025px) {
    .grid.-l-1 > div {
      width: 100%; }
    .grid.-l-2 > div {
      width: 50%; }
    .grid.-l-3 > div {
      width: 33.33333%; }
    .grid.-l-4 > div {
      width: 25%; }
    .grid.-l-5 > div {
      width: 20%; }
    .grid.-l-6 > div {
      width: 16.66667%; }
    .grid.-l-7 > div {
      width: 14.28571%; }
    .grid.-l-8 > div {
      width: 12.5%; }
    .grid.-l-9 > div {
      width: 11.11111%; }
    .grid.-l-10 > div {
      width: 10%; }
    .grid.-l-11 > div {
      width: 9.09091%; }
    .grid.-l-12 > div {
      width: 8.33333%; } }

/*
Flexgrid-based grid system. For a good intro:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*/
.flex {
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .flex > * {
    -ms-flex: 1 0;
    -webkit-flex: 1 0;
    flex: 1 0; }
    .flex > *.-static {
      -ms-flex: none;
      -webkit-flex: none;
      flex: none; }
  .flex.-vertical {
    flex-direction: column; }
  .flex.-fixed > * {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%; }
  .flex.-pad > * {
    padding: 2rem; }
  .flex.-vtop {
    align-items: flex-start; }
  .flex.-vcenter {
    align-items: center; }
  .flex.-vbottom {
    align-items: flex-end; }
  .flex.-hright {
    justify-content: flex-end; }
  .flex.-hcenter {
    justify-content: center; }
  .flex.-hbetween {
    justify-content: space-between; }
  .flex.-haround {
    justify-content: space-around; }
  .flex.-bauto > * {
    -ms-flex: 0 0;
    -webkit-flex: 0 0;
    flex: 0 0;
    flex-basis: auto; }
  @media (max-width: 512px) {
    .flex {
      -ms-flex-flow: wrap;
      -webkit-flex-flow: wrap;
      flex-flow: wrap; }
      .flex > * {
        width: 100%;
        flex: none;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
      .flex > .-xs-1 {
        width: 25%; }
      .flex > .-xs-2 {
        width: 50%; }
      .flex > .-xs-3 {
        width: 75%; }
      .flex > .-xs-4 {
        width: 100%; } }
  @media (min-width: 513px) and (max-width: 767px) {
    .flex.-s-full {
      display: block;
      flex: none;
      -ms-flex-flow: wrap;
      -webkit-flex-flow: wrap;
      flex-flow: wrap;
      width: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; } }
  @media (min-width: 513px) {
    .flex > .-s-1 {
      flex-grow: 1; }
    .flex > .-s-2 {
      flex-grow: 2; }
    .flex > .-s-3 {
      flex-grow: 3; }
    .flex > .-s-4 {
      flex-grow: 4; }
    .flex > .-s-5 {
      flex-grow: 5; }
    .flex > .-s-6 {
      flex-grow: 6; }
    .flex > .-s-7 {
      flex-grow: 7; }
    .flex > .-s-8 {
      flex-grow: 8; }
    .flex > .-s-9 {
      flex-grow: 9; }
    .flex > .-s-10 {
      flex-grow: 10; }
    .flex > .-s-11 {
      flex-grow: 11; }
    .flex > .-s-12 {
      flex-grow: 12; } }
  @media (min-width: 768px) {
    .flex > .-m-1 {
      flex-grow: 1; }
    .flex > .-m-2 {
      flex-grow: 2; }
    .flex > .-m-3 {
      flex-grow: 3; }
    .flex > .-m-4 {
      flex-grow: 4; }
    .flex > .-m-5 {
      flex-grow: 5; }
    .flex > .-m-6 {
      flex-grow: 6; }
    .flex > .-m-7 {
      flex-grow: 7; }
    .flex > .-m-8 {
      flex-grow: 8; }
    .flex > .-m-9 {
      flex-grow: 9; }
    .flex > .-m-10 {
      flex-grow: 10; }
    .flex > .-m-11 {
      flex-grow: 11; }
    .flex > .-m-12 {
      flex-grow: 12; }
    .flex > .-m-13 {
      flex-grow: 13; }
    .flex > .-m-14 {
      flex-grow: 14; }
    .flex > .-m-15 {
      flex-grow: 15; }
    .flex > .-m-16 {
      flex-grow: 16; } }
  @media (min-width: 1025px) {
    .flex > .-l-1 {
      flex-grow: 1; }
    .flex > .-l-2 {
      flex-grow: 2; }
    .flex > .-l-3 {
      flex-grow: 3; }
    .flex > .-l-4 {
      flex-grow: 4; }
    .flex > .-l-5 {
      flex-grow: 5; }
    .flex > .-l-6 {
      flex-grow: 6; }
    .flex > .-l-7 {
      flex-grow: 7; }
    .flex > .-l-8 {
      flex-grow: 8; }
    .flex > .-l-9 {
      flex-grow: 9; }
    .flex > .-l-10 {
      flex-grow: 10; }
    .flex > .-l-11 {
      flex-grow: 11; }
    .flex > .-l-12 {
      flex-grow: 12; }
    .flex > .-l-13 {
      flex-grow: 13; }
    .flex > .-l-14 {
      flex-grow: 14; }
    .flex > .-l-15 {
      flex-grow: 15; }
    .flex > .-l-16 {
      flex-grow: 16; } }

/*
Standard grid system with rows and columns.
*/
.row {
  display: block;
  box-sizing: border-box;
  font-size: 0; }
  .row > * {
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top; }
  .row > .-xs-1 {
    width: 8.33333%; }
  .row > .-xs-2 {
    width: 16.66667%; }
  .row > .-xs-3 {
    width: 25%; }
  .row > .-xs-4 {
    width: 33.33333%; }
  .row > .-xs-5 {
    width: 41.66667%; }
  .row > .-xs-6 {
    width: 50%; }
  .row > .-xs-7 {
    width: 58.33333%; }
  .row > .-xs-8 {
    width: 66.66667%; }
  .row > .-xs-9 {
    width: 75%; }
  .row > .-xs-10 {
    width: 83.33333%; }
  .row > .-xs-11 {
    width: 91.66667%; }
  .row > .-xs-12 {
    width: 100%; }
  .row.-hright {
    text-align: right; }
  .row.-hcenter {
    text-align: center; }
  .row.-vcenter > * {
    vertical-align: middle; }
  .row.-vbottom > * {
    vertical-align: text-bottom; }
  @media (min-width: 513px) {
    .row > .-s-1 {
      width: 8.33333%; }
    .row > .-s-2 {
      width: 16.66667%; }
    .row > .-s-3 {
      width: 25%; }
    .row > .-s-4 {
      width: 33.33333%; }
    .row > .-s-5 {
      width: 41.66667%; }
    .row > .-s-6 {
      width: 50%; }
    .row > .-s-7 {
      width: 58.33333%; }
    .row > .-s-8 {
      width: 66.66667%; }
    .row > .-s-9 {
      width: 75%; }
    .row > .-s-10 {
      width: 83.33333%; }
    .row > .-s-11 {
      width: 91.66667%; }
    .row > .-s-12 {
      width: 100%; } }
  @media (min-width: 768px) {
    .row > .-m-1 {
      width: 8.33333%; }
    .row > .-m-2 {
      width: 16.66667%; }
    .row > .-m-3 {
      width: 25%; }
    .row > .-m-4 {
      width: 33.33333%; }
    .row > .-m-5 {
      width: 41.66667%; }
    .row > .-m-6 {
      width: 50%; }
    .row > .-m-7 {
      width: 58.33333%; }
    .row > .-m-8 {
      width: 66.66667%; }
    .row > .-m-9 {
      width: 75%; }
    .row > .-m-10 {
      width: 83.33333%; }
    .row > .-m-11 {
      width: 91.66667%; }
    .row > .-m-12 {
      width: 100%; } }
  @media (min-width: 1025px) {
    .row > .-l-1 {
      width: 8.33333%; }
    .row > .-l-2 {
      width: 16.66667%; }
    .row > .-l-3 {
      width: 25%; }
    .row > .-l-4 {
      width: 33.33333%; }
    .row > .-l-5 {
      width: 41.66667%; }
    .row > .-l-6 {
      width: 50%; }
    .row > .-l-7 {
      width: 58.33333%; }
    .row > .-l-8 {
      width: 66.66667%; }
    .row > .-l-9 {
      width: 75%; }
    .row > .-l-10 {
      width: 83.33333%; }
    .row > .-l-11 {
      width: 91.66667%; }
    .row > .-l-12 {
      width: 100%; } }

/* deprecated and optional */
/*
	Wrappers
	Creates wrapping classes for 200 - 1200 px widths.
	Ex: .-wrap-200
*/
.-wrap-200 {
  max-width: 200px;
  margin: auto; }

.-wrap-20 {
  max-width: 20rem;
  margin: auto; }

.-wrap-400 {
  max-width: 400px;
  margin: auto; }

.-wrap-40 {
  max-width: 40rem;
  margin: auto; }

.-wrap-600 {
  max-width: 600px;
  margin: auto; }

.-wrap-60 {
  max-width: 60rem;
  margin: auto; }

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

.-wrap-80 {
  max-width: 80rem;
  margin: auto; }

.-wrap-1000 {
  max-width: 1000px;
  margin: auto; }

.-wrap-100 {
  max-width: 100rem;
  margin: auto; }

.-wrap-1200 {
  max-width: 1200px;
  margin: auto; }

.-wrap-120 {
  max-width: 120rem;
  margin: auto; }

/*
	Padding
*/
/*
	Hide something at specific breakpoints
*/
@media (max-width: 512px) {
  .-xs-hide {
    display: none; } }

@media (min-width: 513px) {
  .-s-hide {
    display: none; } }

@media (min-width: 768px) {
  .-m-hide {
    display: none; } }

@media (min-width: 1025px) {
  .-l-hide {
    display: none; } }

/*
	Overflow scroll
*/
.-scroll-y {
  overflow-y: auto;
  max-width: 100%; }

.-scroll-x {
  overflow-x: auto;
  max-height: 100%; }

/*
	Elements
*/
/*
	Normalize all Text Elements
*/
html {
  font-size: 16px; }

html, textarea, input, .select span {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif; }

h1, h2, h3, h4, h5, h6, td, li, p, figcaption {
  font-size: 1rem;
  font-weight: normal;
  margin: 1rem 0; }

ul, ol {
  margin: 0; }

/*
	Style Text Elements
	Based on:
	http://type-scale.com/?size=16&scale=1.414&text=A%20Visual%20Type%20Scale&webfont=Libre+Baskerville&font-family=%27Libre%20Baskerville%27,%20serif&font-weight=400&font-family-headers=&font-weight-headers=inherit&background-color=white&font-color=%23333
*/
p, td, li, address, time {
  line-height: 1.45rem;
  font-size: 1rem; }

a {
  color: inherit;
  text-decoration: none; }

.header {
  font-size: 3.998rem; }

.title {
  font-size: 2.827rem; }

.title-sub {
  font-size: 1.999rem; }

.quote {
  font-style: 1.2rem;
  font-style: italic;
  line-height: 1.6rem; }

.code {
  color: #ed1a4f; }

.cutline, small, figcaption {
  font-size: 0.707rem; }

/*
	Modifiers for Text Elements
*/
.-text-right {
  text-align: right; }

.-text-center {
  text-align: center; }

.-text-left {
  text-align: left; }

.-bold {
  font-weight: bold; }

table {
  border-collapse: collapse;
  background: #fff;
  border: 1px solid;
  border-color: #eeeeee;
  width: 100%; }
  table th {
    font-weight: bold;
    padding: 8px; }
  table td {
    padding: 8px;
    vertical-align: text-top; }
  table thead {
    text-align: left; }
    table thead tr {
      border-bottom: 2px solid;
      border-color: #eeeeee; }
  table tbody tr {
    border-bottom: 1px solid;
    border-color: #eeeeee; }
  table.-striped tbody tr:nth-of-type(2n+1) {
    background-color: #f9f9f9; }
  table.-hover tbody tr:hover {
    background-color: whitesmoke; }

/*
	Shadows
	Controlled via a depth class, and numbers are based
	on the Google Material Design standard.
*/
.-depth-1, .card {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }

.-depth-2 {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12); }

.-depth-3 {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }

.-depth-4 {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); }

.-depth-5 {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }

.-depth-6 {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }

.-depth-7 {
  box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2); }

/*
	Font colors
*/
.-fg-primary1 {
  color: #ed1a4f; }

.-fg-primary2 {
  color: #000000; }

.-fg-secondary1 {
  color: #404040; }

.-fg-secondary2 {
  color: #8c8c8c; }

.-fg-tertiary1 {
  color: #f9f9f9; }

.-fg-tertiary2 {
  color: #ccc; }

.-fg-facebook {
  color: #3b5998; }

.-fg-flickr {
  color: #0063db; }

.-fg-github {
  color: #4183c4; }

.-fg-googleplus {
  color: #dd4b39; }

.-fg-instagram {
  color: #517fa4; }

.-fg-kickstarter {
  color: #76cc1e; }

.-fg-linkedin {
  color: #007bb6; }

.-fg-pinterest {
  color: #cb2027; }

.-fg-twitter {
  color: #00aced; }

.-fg-vimeo {
  color: #aad450; }

.-fg-youtube {
  color: #b00; }

.-fg-white {
  color: #fff; }

.-fg-green {
  color: #5cb85c; }

.-fg-red {
  color: #de3226; }

.-fg-black {
  color: #303030; }

/*
	Background colors
*/
.-bg-primary1 {
  background-color: #ed1a4f; }

.-bg-primary2 {
  background-color: #000000; }

.-bg-secondary1 {
  background-color: #404040; }

.-bg-secondary2 {
  background-color: #8c8c8c; }

.-bg-tertiary1 {
  background-color: #f9f9f9; }

.-bg-tertiary2 {
  background-color: #ccc; }

.-bg-facebook {
  background-color: #3b5998; }

.-bg-flickr {
  background-color: #0063db; }

.-bg-github {
  background-color: #4183c4; }

.-bg-googleplus {
  background-color: #dd4b39; }

.-bg-instagram {
  background-color: #517fa4; }

.-bg-kickstarter {
  background-color: #76cc1e; }

.-bg-linkedin {
  background-color: #007bb6; }

.-bg-pinterest {
  background-color: #cb2027; }

.-bg-twitter {
  background-color: #00aced; }

.-bg-vimeo {
  background-color: #aad450; }

.-bg-youtube {
  background-color: #b00; }

.-bg-white {
  background-color: #fff; }

.-bg-green {
  background-color: #5cb85c; }

.-bg-red {
  background-color: #de3226; }

.-bg-black {
  background-color: #303030; }

/*
	Media Normalization
	-------------------
*/
img,
svg {
  max-width: 100%;
  height: auto; }

svg {
  fill: currentColor; }

/*
	Aspect Ratios
	-------------
	These allow for responsive embedding of video content based on
	aspect ratio of the media.
*/
.ratio-1x1 {
  display: block;
  height: 0;
  padding: 0 0 100% 0;
  position: relative;
  overflow: hidden; }
  .ratio-1x1 > * {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.ratio-16x9 {
  display: block;
  height: 0;
  padding: 0 0 56.25% 0;
  position: relative;
  overflow: hidden; }
  .ratio-16x9 > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }

.ratio-4x3 {
  display: block;
  height: 0;
  padding: 0 0 75% 0;
  position: relative;
  overflow: hidden; }
  .ratio-4x3 > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }

/*
	Utility Classes
	---------------
	Classes that are useful for the presentation of media.
*/
img.-block {
  display: block;
  width: 100%; }

/*
	Spin Animation
*/
.-spin {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 2.6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 2.6s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 2.6s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: spin;
  animation-name: spin;
  -o-animation-duration: 2.6s;
  animation-duration: 2.6s;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  animation-timing-function: linear; }

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*
	Normalize Buttons
	-----------------
*/
input[type=button], .select span[type=button],
button,
.button {
  -webkit-appearance: none;
  display: inline-block;
  outline: none;
  border: none;
  font: inherit;
  box-shadow: none;
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
  cursor: pointer;
  padding: 1rem;
  border-radius: none;
  text-decoration: inherit;
  margin: 1rem 0; }
  input[type=button]::-moz-focus-inner, .select span[type=button]::-moz-focus-inner,
  button::-moz-focus-inner,
  .button::-moz-focus-inner {
    border: 0; }
  input[type=button]:active, .select span[type=button]:active, input[type=button]:focus, .select span[type=button]:focus, input[type=button].-active, .select span[type=button].-active,
  button:active,
  button:focus,
  button.-active,
  .button:active,
  .button:focus,
  .button.-active {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
  input[type=button].-flat, .select span[type=button].-flat,
  button.-flat,
  .button.-flat {
    box-shadow: none;
    user-select: none;
    width: 200px; }
  input[type=button].-block, .select span[type=button].-block,
  button.-block,
  .button.-block {
    display: block;
    width: 100%; }
  input[type=button].-circular, .select span[type=button].-circular,
  button.-circular,
  .button.-circular {
    display: inline-block;
    border-radius: 50%; }
    input[type=button].-circular > *, .select span[type=button].-circular > *,
    button.-circular > *,
    .button.-circular > * {
      display: block;
      fill: currentColor; }

/*
	Modifiers for Buttons
	---------------------
*/
.cards > .card {
  margin: 2rem; }

.card {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  background-color: #fff;
  overflow: hidden; }
  .card .media {
    position: relative;
    flex: 0 0; }
    .card .media img {
      display: block;
      border-radius: 2px 2px 0 0; }
    .card .media .content {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px; }
  .card .content {
    padding: 20px;
    flex: 1 0;
    display: flex;
    align-items: center; }
    .card .content > *:first-child {
      margin-top: 0; }
    .card .content > *:last-child {
      margin-bottom: 0; }
  .card .toolbar {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex: 0 0; }
    .card .toolbar ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .card .toolbar ul li {
        margin: 0 10px 0 0;
        padding: 0;
        display: inline-block; }

/*
	Standard Form Elements

*/
label,
input,
.select span,
textarea,
select {
  margin: 1rem 0; }

label,
input,
.select span,
select {
  cursor: pointer; }

input[type=text], .select span,
input[type=password],
.select span[type=password],
input[type=date],
.select span[type=date],
input[type=email],
.select span[type=email],
select,
textarea {
  display: block;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 34px;
  padding: 6px 12px;
  font-size: 1rem;
  line-height: 1.42857143;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }
  input[type=text]:focus, .select span:focus,
  input[type=password]:focus,
  .select span[type=password]:focus,
  input[type=date]:focus,
  .select span[type=date]:focus,
  input[type=email]:focus,
  .select span[type=email]:focus,
  select:focus,
  textarea:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

textarea {
  height: auto; }

/*
	Form styles
	- Block (default)
	- Inline (not implemented yet)
	- Table
*/
form {
  /*
		Block (default)
	*/
  /*
		Inline
	*/
  /*
		Table
	*/ }
  form label {
    display: block; }
  form.-inline label, form.-inline input, form.-inline .select span, .select form.-inline span {
    display: inline-block;
    width: auto; }
  form.-table {
    display: table;
    width: 100%; }
    form.-table > * {
      display: table-row; }
      form.-table > * > * {
        display: table-cell;
        vertical-align: middle;
        padding: 0.5rem;
        text-align: right; }
        form.-table > * > *:last-child {
          text-align: left; }

/*
	Form and Form Elements State: Invalid
*/
.-invalid {
  color: #de3226; }

/*
	Other styles
*/
.blocks > * {
  display: block; }

/*
	Non-standard Form Elements
	- Requires JavaScript to Implement
	- Progressive Enhancement, Nothing to fallback on
*/
.checkbox {
  cursor: pointer;
  display: inline-block;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  margin: 1rem 0; }
  .checkbox > span {
    display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin-right: 0.5rem; }
    .checkbox > span::before {
      content: "";
      display: block;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: 0;
      height: 0;
      background-color: #5cb85c;
      border: 4px solid #fff;
      border-radius: 4px;
      position: relative;
      top: 17px;
      left: 17px;
      opacity: 0.1;
      -moz-transition: all ease-in-out 0.233s;
      -o-transition: all ease-in-out 0.233s;
      -webkit-transition: all ease-in-out 0.233s;
      transition: all ease-in-out 0.233s; }
  .checkbox.-active > span::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0; }

.radio {
  cursor: pointer;
  display: inline-block;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  margin: 1rem 0; }
  .radio > span {
    display: inline-block;
    width: 34px;
    height: 34px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    overflow: hidden;
    vertical-align: middle;
    margin-right: 0.5rem; }
    .radio > span::before {
      content: "";
      display: block;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: 0;
      height: 0;
      background-color: #5cb85c;
      border: 4px solid #fff;
      border-radius: 50%;
      position: relative;
      top: 17px;
      left: 17px;
      opacity: 0.1;
      -moz-transition: all ease-in-out 0.233s;
      -o-transition: all ease-in-out 0.233s;
      -webkit-transition: all ease-in-out 0.233s;
      transition: all ease-in-out 0.233s; }
  .radio.-active span::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0; }

.slider {
  display: flex;
  height: 34px;
  position: relative;
  cursor: pointer;
  margin: 1rem 0; }
  .slider > * {
    display: flex;
    -ms-flex: 1 0;
    -webkit-flex: 1 0;
    flex: 1 0;
    position: relative; }
  .slider .slide {
    position: relative; }
    .slider .slide .line {
      display: block;
      position: relative;
      background-color: #5cb85c;
      border-radius: 8px;
      height: 16px;
      width: 0;
      top: 10px;
      left: 0;
      -moz-transition: all ease-in-out .15s;
      -o-transition: all ease-in-out .15s;
      -webkit-transition: all ease-in-out .15s;
      transition: all ease-in-out .15s; }
    .slider .slide::before {
      content: "";
      display: block;
      height: 16px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.25);
      border-radius: 8px;
      position: absolute;
      top: 10px;
      left: 0; }
  .slider .circle {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 34px;
    height: 34px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-transition: all ease-in-out .15s;
    -o-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
    overflow: hidden;
    vertical-align: middle; }
  .slider .value {
    -ms-flex: none;
    -webkit-flex: none;
    flex: none;
    margin-left: 1rem;
    line-height: 34px; }

.switch {
  position: relative;
  height: 34px;
  line-height: 34px;
  padding-left: 84px;
  cursor: pointer;
  display: inline-block;
  margin: 1rem 0; }
  .switch::before {
    content: "";
    display: block;
    height: 16px;
    width: 68px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    position: absolute;
    top: 10px;
    left: 0;
    -moz-transition: all ease-in-out .15s;
    -o-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s; }
  .switch span {
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 34px;
    width: 34px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-transition: all ease-in-out .15s;
    -o-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
    position: absolute;
    top: 0;
    left: 0; }
  .switch.-active::before {
    background-color: #5cb85c; }
  .switch.-active span {
    left: 34px; }

.select {
  position: relative; }
  .select span {
    position: relative;
    background: #fff; }
  .select ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    -moz-transition: all ease-in-out 0.255s;
    -o-transition: all ease-in-out 0.255s;
    -webkit-transition: all ease-in-out 0.255s;
    transition: all ease-in-out 0.255s; }
    .select ul li {
      padding: 0.5rem;
      cursor: pointer;
      border: 1px solid #f9f9f9;
      margin: 0;
      background: #fff; }
      .select ul li + li {
        border-top: 0; }
      .select ul li:hover, .select ul li.-selected {
        background-color: #5cb85c; }
  .select.-active {
    z-index: 2; }
    .select.-active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4); }
    .select.-active span {
      border-radius: 4px 4px 0 0; }
    .select.-active ul {
      opacity: 1;
      pointer-events: all; }

/*
	Components
*/
.nav,
nav {
  background-color: #303030;
  position: relative;
  min-height: 44px;
  z-index: 3; }
  .nav .hamburger,
  .nav .kabob,
  nav .hamburger,
  nav .kabob {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 6px; }
    .nav .hamburger svg,
    .nav .kabob svg,
    nav .hamburger svg,
    nav .kabob svg {
      display: inline-block;
      height: 100%; }
    .nav .hamburger:hover, .nav .hamburger:focus, .nav .hamburger:active, .nav .hamburger.-active,
    .nav .kabob:hover,
    .nav .kabob:focus,
    .nav .kabob:active,
    .nav .kabob.-active,
    nav .hamburger:hover,
    nav .hamburger:focus,
    nav .hamburger:active,
    nav .hamburger.-active,
    nav .kabob:hover,
    nav .kabob:focus,
    nav .kabob:active,
    nav .kabob.-active {
      color: #ed1a4f;
      background-color: #f9f9f9; }
  .nav > ul,
  nav > ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .nav > ul > li,
    nav > ul > li {
      display: inline-block;
      margin: 0;
      padding: 0; }
      .nav > ul > li > a,
      nav > ul > li > a {
        display: inline-block;
        text-decoration: none;
        padding: 1rem;
        color: #fff; }
      .nav > ul > li > div,
      nav > ul > li > div {
        display: none;
        position: absolute;
        left: 0;
        right: 0; }
      .nav > ul > li.-active > a, .nav > ul > li:hover > a,
      nav > ul > li.-active > a,
      nav > ul > li:hover > a {
        color: #ed1a4f;
        background-color: #f9f9f9; }
      .nav > ul > li.-active > div, .nav > ul > li:hover > div,
      nav > ul > li.-active > div,
      nav > ul > li:hover > div {
        display: block; }
  .nav .sub-menu > div ul,
  nav .sub-menu > div ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .nav .sub-menu > div li,
  .nav .sub-menu > div a,
  nav .sub-menu > div li,
  nav .sub-menu > div a {
    margin: 0;
    display: inline-block; }
  .nav .sub-menu > div a,
  nav .sub-menu > div a {
    padding: 0.5rem;
    text-decoration: none; }
  .nav .sub-menu > div li + li,
  nav .sub-menu > div li + li {
    border-left: 1px solid #ccc; }
  .nav .mega-dropdown > div a,
  nav .mega-dropdown > div a {
    padding: 0.5rem; }
  .nav .dropdown,
  nav .dropdown {
    position: relative; }
    .nav .dropdown > div ul,
    nav .dropdown > div ul {
      list-style: none;
      margin: 0;
      padding: 0; }
    .nav .dropdown > div li, .nav .dropdown > div a,
    nav .dropdown > div li,
    nav .dropdown > div a {
      margin: 0;
      display: block; }
    .nav .dropdown > div a,
    nav .dropdown > div a {
      padding: 0.5rem;
      text-decoration: none; }
    .nav .dropdown > div li + li,
    nav .dropdown > div li + li {
      border-top: 1px solid #ccc; }
  .nav::after,
  nav::after {
    content: '';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden; }
  @media (max-width: 768px) {
    .nav > ul > li,
    nav > ul > li {
      display: inline-block; } }
  @media (min-width: 1025px) {
    .nav .hamburger,
    nav .hamburger {
      display: none; } }

/*
	For Tab and Tab Panel Grouping
*/
/*
	Tabs
*/
.tab {
  display: inline-block;
  outline: 0;
  border: none;
  background: #fff;
  font: inherit;
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
  cursor: pointer;
  padding: 1rem;
  border-radius: 2px 2px 0 0;
  color: inherit;
  text-decoration: inherit;
  margin: 1rem 0; }
  .tab:active, .tab.-active {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }

/*
	Tab Panels
*/
.tab-panel {
  display: none; }
  .tab-panel.-active {
    display: block; }

/*
	For Accordion Grouping
*/
/*
	Accordions
*/
.accordion {
  position: relative; }
  .accordion .pane {
    display: none; }
  .accordion.-active .pane {
    display: block; }

#modals {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); }
  #modals.-active {
    display: block; }
  #modals.-light {
    background-color: rgba(255, 255, 255, 0.85); }
  #modals .modal {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); }
    #modals .modal.-active {
      display: block;
      -moz-transform: translate3d(0, -50%, 0);
      -ms-transform: translate3d(0, -50%, 0);
      -o-transform: translate3d(0, -50%, 0);
      -webkit-transform: translate3d(0, -50%, 0);
      transform: translate3d(0, -50%, 0); }

.carousel {
  position: relative;
  background-color: #f9f9f9;
  font-size: 0;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /*
		Stage and Scenes
	*/
  /*
		Next and Previous Links
	*/
  /*
		Light UI
	*/ }
  .carousel .stage {
    height: 100%;
    position: relative;
    white-space: nowrap;
    -moz-transition: all ease-in-out 0.555s;
    -o-transition: all ease-in-out 0.555s;
    -webkit-transition: all ease-in-out 0.555s;
    transition: all ease-in-out 0.555s; }
    .carousel .stage > div,
    .carousel .stage > .scene {
      height: 100%;
      width: 100%;
      position: relative;
      display: inline-block;
      white-space: normal;
      -moz-user-select: none;
      -ms-user-select: none;
      -webkit-user-select: none;
      user-select: none;
      background-size: cover;
      background-position: center center; }
      .carousel .stage > div img,
      .carousel .stage > .scene img {
        width: 100%; }
      .carousel .stage > div .pos,
      .carousel .stage > .scene .pos {
        position: absolute; }
        .carousel .stage > div .pos.-top,
        .carousel .stage > .scene .pos.-top {
          top: 40px; }
        .carousel .stage > div .pos.-bot,
        .carousel .stage > .scene .pos.-bot {
          bottom: 40px; }
        .carousel .stage > div .pos.-middle,
        .carousel .stage > .scene .pos.-middle {
          top: 50%;
          transform: translateY(-50%); }
        .carousel .stage > div .pos.-left,
        .carousel .stage > .scene .pos.-left {
          left: 40px; }
        .carousel .stage > div .pos.-right,
        .carousel .stage > .scene .pos.-right {
          right: 40px; }
  .carousel .next,
  .carousel .previous {
    width: 44px;
    position: absolute;
    top: 0;
    bottom: 0;
    color: #303030;
    cursor: pointer; }
    .carousel .next img,
    .carousel .next svg,
    .carousel .previous img,
    .carousel .previous svg {
      position: absolute;
      top: 50%;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 100%;
      height: auto;
      padding: 12px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .carousel .next img:active,
      .carousel .next svg:active,
      .carousel .previous img:active,
      .carousel .previous svg:active {
        margin-top: 2px; }
    .carousel .next:hover,
    .carousel .previous:hover {
      background: rgba(0, 0, 0, 0.1); }
  .carousel .previous {
    left: 0; }
  .carousel .next {
    right: 0; }
  .carousel.-light svg {
    color: #fff; }

/*
	Presentation
*/
html, body {
  margin: 0;
  height: 100%; }

.slides {
  position: relative;
  height: 100%; }
  .slides > div {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px;
    z-index: 2; }
    .slides > div.-fixed {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1; }

.slides-height {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -100; }

/*# sourceMappingURL=dist/assets/css/framework.css.map */
