/**
 * Global variables used by Skeletor, these can and *should* probably
 * be changed to meet your project's brand.
 */
/**
 * These are required imports, do not remove them.
 * For documentation, see:
 *
 * [compass](http://compass-style.org/)
 */
/**
 * Converts pixels to equivalent em value based on `$base` given.
 *
 * Example 1
 * Assigning the ems equivalent of 12px when the parent element is 14px
 * `.mymodule { font-size: em(12px, 14px); }`
 *
 * Example 2
 * Assigning the ems equivalent of 12px when the parent element has not
 * been assigned a `font-size`. In this case, the second variable is equal
 * to the value assigned to `$BASE_FONT_SIZE` on your `main.scss` file.
 * `.mymodule { font-size: em(12px); }
 *
 *
 * @param  {String|Number} $pixels Pixels to be converted to ems.
 * @param  {String|Number} $base: Base font-size, in pixels
 * @return {String} Em value.
 */
/**
 * Removes unit from value http://stackoverflow.com/a/12335841
 * @param {String|Number} $number Value whose unit should be removed
 */
/**
 * These are the core `scss` files for Skeletor. You are
 * free to remove any or all of the imports, but be aware
 * that doing so will remove any default styles created to
 * speed up and centralize or app creation process :)
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #000;
  font-size: 87.5%;
  font-family: sans-serif;
}

h1 {
  font-size: 3.42857em;
}

h2 {
  font-size: 2.57143em;
}

h3 {
  font-size: 1.71429em;
}

h4 {
  font-size: 1.28571em;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

label {
  display: block;
  font-weight: bold;
  margin: 0 0 0.33333em;
}

input,
textarea {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 2px solid;
  padding: 5px;
}

input {
  font-size: 1em;
  width: 100%;
}

input[type="search"] {
  padding: 5px 10px;
}

input[type="file"] {
  border: none;
  width: auto;
}

input[type="checkbox"] {
  width: auto;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
  border-color: #666;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: #000;
}

button,
input[type="submit"] {
  border: none;
  color: #fff;
  background: #666;
  padding: 10px;
}

button:hover,
input[type="submit"]:hover {
  background: #333333;
}

textarea {
  max-height: 72px;
  resize: none;
  width: 100%;
}

/*  ==========================================================================
    AngularJS
    ========================================================================== */
[ng-cloak] {
  display: none;
}

/*  .app-content, .narrow
    ========================================================================== */
@media screen and (min-width: 480px) {
  .app {
    margin: 0 auto;
    max-width: 1800px;
  }
}

/*  .app-header
    ========================================================================== */
.app-header {
  padding: 20px 0;
  position: relative;
}

/*  .app-footer
    ========================================================================== */
.app-footer {
  padding: 10% 3% 3% 3%;
}

/*  .nav
    ========================================================================== */
.nav {
  /**
  * http://nicolasgallagher.com/micro-clearfix-hack/
  *
  * For modern browsers
  * 1. The space content is one way to avoid an Opera bug when the
  *    contenteditable attribute is included anywhere else in the document.
  *    Otherwise it causes space to appear at the top and bottom of elements
  *    that are clearfixed.
  * 2. The use of `table` rather than `block` is only necessary if using
  *    `:before` to contain the top-margins of child elements.
  */
  /**
  * For IE 6/7 only
  * Include this rule to trigger hasLayout and contain floats.
  */
  *zoom: 1;
}
.nav:before, .nav:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.nav:after {
  clear: both;
}

.nav.l-stuck {
  position: absolute;
  top: 0.5em;
  right: 1em;
}

.nav-item {
  float: left;
}

.nav-item.is-navitem-selected {
  padding: 0.71429em;
}

.nav-link {
  display: block;
  padding: 0.71429em;
}

/*  forms
    ========================================================================== */
.field {
  padding: 10px 0;
  position: relative;
}

.field-info {
  display: block;
  margin: 5px 0 0;
}

.field.l-spacious {
  padding: 20px 0;
}

.form-error {
  margin-top: 10px;
}

.message,
.message-flash {
  margin: 10px 0;
  padding: 10px;
  position: relative;
}

.is-dismissable.message,
.is-dismissable.message-flash {
  padding-right: 40px;
}

.message-dismiss {
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
}

.upload-image {
  /**
  * http://nicolasgallagher.com/micro-clearfix-hack/
  *
  * For modern browsers
  * 1. The space content is one way to avoid an Opera bug when the
  *    contenteditable attribute is included anywhere else in the document.
  *    Otherwise it causes space to appear at the top and bottom of elements
  *    that are clearfixed.
  * 2. The use of `table` rather than `block` is only necessary if using
  *    `:before` to contain the top-margins of child elements.
  */
  /**
  * For IE 6/7 only
  * Include this rule to trigger hasLayout and contain floats.
  */
  *zoom: 1;
  margin: 5px 0;
}
.upload-image:before, .upload-image:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.upload-image:after {
  clear: both;
}

.upload-preview {
  border-right: 1px solid;
  display: block;
  float: left;
  margin-right: 10px;
  padding-right: 10px;
}

/*  text classes
    ========================================================================== */
.highlight {
  font-weight: bold;
  background: #FF8000;
}

/*  .nav
    ========================================================================== */
.nav-item.is-navitem-selected {
  background: #333333;
  color: #fff;
}

.is-navitem-selected .nav-link {
  color: #fff;
}

/*  Forms
    ========================================================================== */
.button[disabled],
.button[disabled]:hover {
  background: #999999;
}

.message,
.message-flash {
  background-color: #F4DB3B;
}

.is-error.message,
.is-error.message-flash {
  background-color: #F13130;
}

.is-success.message,
.is-success.message-flash {
  background-color: #32AA44;
}

.message-dismiss {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.message-dismiss:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/**
 * Project specific stylesheets
 */
body {
  letter-spacing: .03em;
}

a {
  color: #BBBDBA;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: black;
}

p {
  margin: .5em 0 1em;
  line-height: 1.5em;
}

/* Prevents text from displaying while loading the font */
.wf-loading body {
  visibility: hidden;
}

h1 {
  font-size: 2em;
  font-weight: bold;
}

h2 {
  margin: 2em 0 .5em;
}

h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

body {
  letter-spacing: 1px;
}

header {
  margin: 0;
  padding: 0;
}

input {
  padding: .5em;
}

/*
 * Layouts
 */
.app-header {
  position: absolute;
  padding: unset;
  top: 0;
  right: 0;
}

.app-content {
  margin: 9em 0;
}

.l-article {
  margin-left: 2em;
  max-width: 600px;
}

.l-narrow {
  margin-left: 2em;
  max-width: 600px;
}

/* Article With Navigation */
.l-article-with-navigation {
  max-width: 600px;
  margin-left: 2em;
  margin-right: 2em;
}

.l-article-navigation {
  margin-left: 1.75em;
  margin-bottom: 3em;
  max-width: 300px;
}

@media screen and (min-width: 900px) {
  .l-article-with-navigation {
    max-width: 900px;
  }

  .l-article-navigation {
    position: fixed;
  }

  .l-article-with-navigation-content {
    margin-left: 300px;
  }
}
.article-video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
}

.article-video-container iframe,
.article-video-container object,
.article-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
 * Buttons
 */
.add-button {
  padding: .5em 0 .5em 0;
  display: block;
  width: 110px;
  text-align: center;
  text-decoration: none;
}

/*
 * Masony
 */
.masonry {
  position: relative;
  width: 100%;
  padding-bottom: 2em;
  margin: 1em 0 4em 0;
}

.gutter-sizer {
  width: 6%;
}

.brick {
  width: 100%;
}

.brick-image {
  max-width: 100%;
  display: block;
  margin: auto;
}

@media screen and (min-width: 400px) {
  .gutter-sizer {
    width: 4.1%;
  }

  .brick {
    width: 47.95%;
  }
}
@media screen and (min-width: 750px) {
  .gutter-sizer {
    width: 3.5%;
  }

  .brick {
    width: 31%;
  }
}
@media screen and (min-width: 1000px) {
  .gutter-sizer {
    width: 2.6%;
  }

  .brick {
    width: 23.05%;
  }
}
@media screen and (min-width: 1500px) {
  .gutter-sizer {
    width: 2.1%;
  }

  .brick {
    width: 18.32%;
  }
}
.masonry-footer {
  position: relative;
  width: 100%;
  margin-bottom: 6em;
}

.brick-button {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.brick:hover .brick-button {
  display: block;
}

/*
 * Table
 */
table {
  margin-top: 30px;
}

th {
  background-color: #eee;
  text-align: left;
  border-bottom: 2px solid grey;
}

td, th {
  padding: 0.5em 1em;
}

/*
 * COLORS
 */
/*
 * GENERAL
 */
h1 {
  font-size: 1em;
  font-weight: 600;
  line-height: 2em;
}

h2 {
  font-size: 1em;
  font-weight: normal;
}

h3 {
  font-size: 1em;
  font-weight: 600;
  display: block;
}

a {
  color: #000;
  text-decoration: underline;
}

a:hover {
  color: #999;
}

body {
  font-weight: 200;
}

footer {
  color: #fff;
  background-color: #000;
  bottom: 0;
  font-size: 12px;
  box-shadow: 0px -15px 20px #000;
  left: -10%;
  line-height: 1.2em;
  width: 120%;
  padding: .75em 10%;
  position: fixed;
}

.footer-nav {
  float: right;
  margin: 0;
  padding: 0 2em;
}

.footer-nav-item {
  display: inline;
  margin-right: 10px;
}

footer a, footer a:visited {
  color: #fff;
}

.right {
  float: right;
}

/*
 * ERROR MESSAGES
 */
.message {
  line-height: 1.5em;
  margin: .5em 0;
  padding: 0 !important;
}

.message.is-error {
  color: #F13130;
  background-color: unset;
}

.message.is-success {
  color: #32AA44;
  background-color: unset;
}

/*
 * BUTTONS
 */
.button {
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding: 10px 60px;
}

.button:hover {
  background-color: #333;
  color: #fff;
}

.button:active {
  background-color: #333;
  color: #fff;
}

.button.disabled {
  pointer-events: none;
  cursor: default;
  background-color: grey;
}

.button.success {
  background-color: #32AA44;
}

.button.error {
  background-color: #F13130;
}

.button.store-button {
  background-color: #f2a2bd;
  color: #000;
  margin-bottom: 2em;
  text-decoration: none;
}

@media screen and (max-width: 400px) {
  .button.store-button {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.button.store-button:hover {
  text-decoration: underline;
}

.add-button {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.add-button:hover {
  color: #fff;
  background-color: #000;
  text-decoration: underline;
}

.add-button.is-added {
  color: #000;
  background-color: #f2a2bd;
}

.add-button.is-added:hover {
  text-decoration: underline;
}

/*
 * FORMS
 */
form {
  width: 100%;
  max-width: 600px;
  margin-bottom: 3em;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
  border: 1px solid #AAA;
  font-family: inherit;
  font-size: 1em;
  font-weight: 200;
  width: 280px;
}

input[type="number"] {
  width: 347px;
}

input[type="submit"] {
  background-color: #000;
  color: #fff;
  font-weight: 200;
  margin-top: 0.5em;
  padding: .5em 1.5em;
  width: auto;
  -webkit-appearance: none;
}

input[type="submit"]:hover {
  background-color: #333;
  color: #fff;
}

input[type="submit"]:active {
  background-color: #333;
  color: #fff;
}

input[type="submit"]:disabled {
  pointer-events: none;
  cursor: default;
  background-color: grey;
}

label {
  font-weight: 200;
}

.field {
  margin-bottom: 0.5em;
}

.form-tip {
  font-size: 1em;
  margin: .5em 0 0 0;
  display: block;
}

.sub-nav {
  margin: 1em 0;
  display: inline-block;
  background-color: #eee;
}

.sub-nav-item {
  cursor: pointer;
  float: left;
  font-style: italic;
  padding: .75em 1.5em;
  text-align: center;
  text-decoration: underline;
}

.is-sub-nav-item-selected {
  cursor: auto;
  display: block;
  font-style: normal;
  text-decoration: none;
}

.sub-nav:after {
  clear: both;
}

.settings-cover-image-option {
  width: 47.4%;
  margin: 1% 1.3%;
  cursor: pointer;
  opacity: 0.5;
}

.settings-cover-image-option.selected {
  opacity: 1;
}

.settings-cover-image-option:hover {
  opacity: 0.9;
}

.tips-link {
  border: 1px solid #999;
  padding: 2px 4px 0 4px;
  border-radius: 10px;
  text-decoration: none;
  font-size: .8em;
}

.remove-upload {
  background: unset;
  clear: both;
  color: black;
  display: block;
  padding: unset;
}

.remove-upload:hover {
  background: unset;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
}

/*
 * Nav theme
 */
header {
  height: 6em;
  padding: 0;
}

.nav {
  position: fixed;
  display: inline-block;
  right: 0;
  padding-left: 1em;
}

.nav-one {
  background-color: #000;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-left: 0;
  text-align: right;
}

.nav-one.searching {
  padding-left: 1em;
}

.nav-one-items {
  float: right;
}

.nav-one.long {
  padding-left: 4em;
}

.nav-two {
  background-color: #4b4b4b;
  top: 3em;
  z-index: 2;
}

.nav-three {
  background-color: #ececec;
  font-style: italic;
  top: 6em;
  z-index: 1;
}

.nav a {
  display: block;
  padding: 1em .9em;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}

.logo-big {
  display: none;
}

.nav-one a,
.nav-one a:visited,
.nav-two a,
.nav-two a:visited {
  color: white;
}

.nav-three a,
.nav-three a:visited {
  color: #4b4b4b;
}

.nav-item-search {
  font-style: italic;
}

.nav-search-icon-label {
  vertical-align: text-top;
  height: 12px;
  width: 12px;
}

.nav-search-icon {
  vertical-align: text-top;
  height: 12px;
  width: 12px;
}

.nav-search-form {
  margin: unset;
  display: inline;
}

.nav-search-input {
  background-color: #000;
  border: none !important;
  color: #fff;
  height: 3em;
  max-width: 235px;
  outline: 0;
}

.nav-search-input:focus {
  outline: 0;
}

::-webkit-input-placeholder {
  font-style: italic;
  letter-spacing: .03em;
}

::-moz-placeholder {
  font-style: italic;
  letter-spacing: .03em;
}

@media screen and (min-width: 400px) {
  .logo-small {
    display: none;
  }

  .logo-big {
    display: block;
  }
}
@media screen and (min-width: 500px) {
  .nav-search-input {
    max-width: unset;
  }

  .nav-one {
    width: auto;
    padding-left: 2em;
  }
}
/*
 * Splash page
 */
.splash-header {
  margin: auto;
  margin-top: 100px;
  width: 300px;
  text-align: center;
}

.splash-logo {
  width: 100%;
  display: block;
  margin-bottom: 3em;
}

.splash-kickstarter {
  max-width: 80%;
  width: 200px;
  margin-left: 1em;
}

/*
 * Header lists
 */
.header-section {
  display: inline-block;
  width: 100%;
  margin-bottom: 2em;
  overflow-x: hidden;
}

.header-list {
  width: 150%;
  max-width: 1400px;
  max-height: 100px;
  overflow-y: hidden;
}

.header-list li {
  width: 200px;
  height: 2em;
  float: left;
  min-width: 100px;
}

.header-list a {
  padding-right: 10px;
  display: inline-block;
}

.accounts-section .field {
  margin: 0;
  padding: 0;
  line-height: 1.2em;
}

.divider {
  border-bottom: 1px solid #999;
  width: 80px;
}

/*
 * Cover
 */
.cover-header {
  padding: 0 0 2em 2em;
  width: 100%;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .cover-header {
    padding-left: .5em;
  }
}
.cover-logo {
  width: 220px;
  margin-bottom: 3em;
}

.masonry-header {
  padding: 0 1em 0 2em;
}

.cover-thumnail {
  margin-top: 10px;
  margin-bottom: 10px;
}

/*
 * Masonry (bricks)
 */
.masonry-footer {
  text-align: center;
  color: #999;
}

.brick img {
  -webkit-transition: opacity .25s ease-in;
  -moz-transition: opacity .25s ease-in;
  transition: opacity .25s ease-in;
}

.brick.loading img {
  opacity: 0;
}

.no-goods-fallback {
  padding: 0 2em;
}

.brick-button {
  color: #fff;
  background-color: #000;
}

/*
 * Profile theme
 */
.profile-header {
  margin-top: -9em;
  height: 9em;
  width: 100%;
}

.profile-filters {
  padding: 1em 2em 0 2em;
  width: 100%;
  display: inline-block;
}

.profile-cover {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: 0 50%;
}

@media screen and (max-width: 960px) {
  .profile-filters {
    padding-left: .5em;
  }

  .profile-header {
    margin-top: 3em;
  }

  .profile-cover {
    height: 300px;
  }
}
.profile-avatar {
  float: left;
  width: 9em;
  height: 9em;
}

.profile-meta {
  margin-bottom: 2em;
  overflow-x: hidden;
  padding: 1em;
}

.profile-meta-text {
  color: #999;
  margin: 0;
  line-height: 2em;
}

.profile-meta-link {
  color: #999;
  border-bottom: 1px solid #000;
  text-decoration: none;
}

.profile-meta-link:hover {
  color: #000;
}

/* Store header */
.store-header {
  text-align: center;
  margin-top: 3em;
}

.store-avatar {
  max-height: 250px;
  max-width: 100%;
  margin: 20px 0 50px 0;
}

@media screen and (max-width: 480px) {
  .store-avatar {
    margin-bottom: 20px;
  }
}
.store-meta {
  padding: .8em 0;
}

.store-meta li {
  display: inline;
  margin: 0 5px;
  line-height: 1.4em;
}

.store-meta-name {
  font-weight: 600;
}

/* Filter block */
.filter-block {
  margin-bottom: 2em;
}

.filters-group {
  float: left;
  display: block;
  margin-right: 2em;
}

.filter-category {
  margin: 0 0 0.5em 0;
}

.filter-label {
  line-height: 1.25em;
}

.filter-checkbox {
  margin: 0 .5em 0 0;
  vertical-align: middle;
}

.filter-toggle {
  height: 1em;
  margin: 0 .5em 0 0;
}

/*
 * BOOKMARKLET
 */
.bookmarklet {
  background-color: #eee;
  border-radius: 15px;
  color: black;
  display: inline-block;
  margin-bottom: .5em;
  margin-right: 10px;
  outline: none;
  padding: 5px 10px;
}

.bookmarklet:hover {
  background-color: #ddd;
}

.bookmarklet-message {
  display: inline-block;
}

.home-header {
  padding: 6em 2em 8em;
  text-align: center;
}

/*
 * Invites page
 */
tr:hover {
  background-color: #FAFAFA;
}

.redeemed {
  color: #32AA44;
}

/*
 * Product page
 */
.product-wrap {
  margin-bottom: 3em;
}

.product-image {
  display: inline-block;
  max-width: 100%;
  max-height: 600px;
  vertical-align: top;
}

.product-image-link {
  text-decoration: none;
}

.product-meta {
  display: inline-block;
  padding: 2em 2em 0em;
  max-width: 400px;
}

.product-meta-item {
  padding: 1em 0;
}

.product-meta-item.title {
  padding-bottom: .5em;
}

.product-meta-item.price {
  padding-top: 0;
}

.added-by {
  list-style-type: decimal;
  margin: 1em 0 1em 1.5em;
}

.added-by li {
  line-height: 1.5em;
}

.added-by-toggle {
  color: #999;
  text-decoration: none;
  font-style: italic;
}

.added-by-toggle:hover {
  text-decoration: underline;
}

@media screen and (min-width: 720px) {
  .product-meta {
    padding-top: 5em;
  }
}
.related-products-header {
  margin-left: 2em;
}

/*
 * Article page
 */
.article-image {
  width: 100%;
  margin-bottom: .5em;
}

.article-image-narrow {
  width: 100%;
  margin-bottom: .5em;
}

@media screen and (min-width: 720px) {
  .article-image-narrow {
    width: 50%;
  }
}
.article-list {
  list-style-type: circle;
  margin-left: 1em;
}

.l-article h2 {
  font-weight: 600;
}

.l-article h3,
.l-article-with-navigation h3 {
  font-weight: 400;
  font-style: italic;
}

.article-list-item {
  margin-bottom: 1em;
}

.article-navigation-list {
  margin-top: .5em;
}

.article-navigation-list li {
  line-height: 1.5em;
  list-style-type: decimal;
}

.article-navigation-list li.active {
  font-weight: 800;
}

/*
 * Stores page
 */
.store-grid {
  margin: 3em 0;
  width: 100%;
}

.store-lists {
  max-width: 600px;
  margin-left: 20px;
}

.store-brick {
  background-color: #ECECEC;
  color: #fff;
  display: block;
  float: left;
  height: 10em;
  line-height: 10em;
  margin: 0 2em 2em 0;
  width: 20em;
  text-align: center;
  text-decoration: none;
  background-size: cover;
}

@media screen and (max-width: 480px) {
  .store-brick {
    width: 100%;
    height: 10em;
    line-height: 10em;
  }
}
.store-brick-label {
  background-color: #000;
  padding: 10px 30px;
}

/*
 * Members page
 */
.membership-note {
  color: #bbb;
  font-style: italic;
  margin: .5em 0 0 0;
}

.big-list {
  margin: 1em 0 2em;
  display: inline-block;
}

.big-list li {
  width: 200px;
  height: 2em;
  float: left;
  min-width: 100px;
}

.big-list a {
  display: inline-block;
}

.good-count {
  color: #999;
}

/*
 * Avatars & Headers page
 */
.header-example-container {
  position: relative;
  display: block;
  height: 240px;
  margin-bottom: 2em;
}

.header-example {
  background-color: rgba(242, 162, 189, 0.6);
  border-radius: 5px;
  text-align: center;
  color: #fff;
}

.header-wide {
  width: 320px;
  height: 140px;
  position: absolute;
  top: 40px;
  left: 0;
}

.header-square {
  width: 260px;
  height: 180px;
  position: absolute;
  top: 20px;
  left: 30px;
}

.header-tall {
  width: 200px;
  height: 220px;
  position: absolute;
  top: 0;
  left: 60px;
  line-height: 240px;
}

.image-example {
  background-color: rgba(242, 162, 189, 0.9);
  border-radius: 5px;
  text-align: center;
  color: #fff;
}

.image-example.member-avatar {
  height: 125px;
  width: 125px;
  line-height: 125px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
}

.image-example.store-avatar {
  height: 125px;
  width: 250px;
  line-height: 125px;
  display: inline-block;
  margin: initial;
}
