/* Sticker Mule - Settings */
/* Assumes a sprite image with a single column of equally spaced images */
/*
  Breakpoints
  respondTo(200px)              =>  max-width: 200px
  respondTo('phone')            =>  max-width: 600px
  respondTo('phone', 'larger')  =>  min-width: 601px
*/
.color-swatch-radios {
  margin-left: -2%;
  font-size: 0; }
  .color-swatch-radios input[type="radio"] {
    display: none; }
    .color-swatch-radios input[type="radio"]:checked + span::after {
      display: block;
      font-family: "fontello";
      content: "\e809";
      color: white;
      font-size: 24px;
      position: relative;
      text-align: center;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .color-swatch-radios .color-swatch {
    display: inline-block;
    position: relative;
    width: 20%;
    padding: 0 2%;
    cursor: pointer;
    margin-bottom: 12px; }
    @media (min-width: 801px) {
      .color-swatch-radios .color-swatch {
        width: 10%;
        margin-bottom: 0;
        padding: 0 2%; } }
    .color-swatch-radios .color-swatch::before {
      content: " ";
      display: block;
      padding-bottom: 100%; }
      @media (min-width: 801px) {
        .color-swatch-radios .color-swatch::before {
          padding-bottom: 132%; } }
    .color-swatch-radios .color-swatch span {
      display: block;
      position: absolute;
      border-radius: 2px;
      top: 0;
      width: 80%;
      height: 100%; }
      .color-swatch-radios .color-swatch span.default {
        background-color: #f97805; }

.fake-file-field .choose-file {
  float: left; }

.fake-file-field span {
  display: block;
  overflow: hidden;
  position: relative;
  padding-left: 8px; }
  .fake-file-field span > .fake-file-input {
    padding: 9px;
    width: 100%; }

.fake-file-field .delete-file {
  position: absolute;
  top: 0px;
  right: 6px; }
  .fake-file-field .delete-file input[type="checkbox"]:not(:disabled) + span {
    cursor: pointer; }
  .fake-file-field .delete-file input[type="checkbox"]:not(:disabled):not(:checked) + span {
    color: #cccccc; }
    .fake-file-field .delete-file input[type="checkbox"]:not(:disabled):not(:checked) + span:hover {
      color: #adadad; }
  .fake-file-field .delete-file span {
    color: transparent;
    font-size: 32px; }

/* Assumes a sprite image with a single column of equally spaced images */
/*
  Breakpoints
  respondTo(200px)              =>  max-width: 200px
  respondTo('phone')            =>  max-width: 600px
  respondTo('phone', 'larger')  =>  min-width: 601px
*/
@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.pushing-pixels span {
  display: inline-block;
  vertical-align: middle;
  width: .6em;
  height: .6em;
  margin: .2em;
  background: #cecece;
  border-radius: .6em;
  -webkit-animation: fadein 0.35s infinite alternate;
  -moz-animation: fadein 0.35s infinite alternate;
  animation: fadein 0.35s infinite alternate; }

.pushing-pixels span:nth-of-type(2) {
  background: #a6a6a6;
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.pushing-pixels span:nth-of-type(3) {
  background: #7d7d7d;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.pushing-pixels span:nth-of-type(4) {
  background: #cecece;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s; }

/* Vertically and horizontally centered edit avatar button that shows on hover */
.avatar {
  position: relative; }
  .avatar .overlay {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    display: none; }
    .avatar .overlay #edit_picture_button {
      position: relative;
      margin: 0 auto;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
  .avatar:hover .overlay {
    display: block; }

.avatar-img.gravatar {
  background-image: url("/assets/images/users/missing/original-79b084a0.svg"); }

/* Default - Settings */
.follow-button {
  margin-bottom: 20px;
  color: #606060; }
  .follow-button.button:hover, .follow-button.button:focus {
    color: #606060; }
  @media (min-width: 801px) {
    .follow-button {
      display: inline-block; } }
  .follow-button.active {
    color: white;
    background-color: #5ac574; }
    .follow-button.active .follow, .follow-button.active .unfollow {
      display: none; }
    .follow-button.active .followed {
      display: initial; }
    .follow-button.active:focus {
      color: white; }
    @media (min-width: 801px) {
      .follow-button.active:hover {
        background-color: #ff4242;
        color: white; }
        .follow-button.active:hover .unfollow {
          display: initial; }
        .follow-button.active:hover .followed {
          display: none; } }
  .follow-button .followed, .follow-button .unfollow {
    display: none; }

/* Photos / Likes */
body.user_profile .profile-link {
  cursor: pointer; }
  body.user_profile .profile-link a {
    color: white;
    text-decoration: none; }
  @media (min-width: 801px) {
    body.user_profile .profile-link {
      display: inline-block; }
      body.user_profile .profile-link + .profile-link {
        margin-left: 20px; }
      body.user_profile .profile-link .fa {
        margin-right: -5px; } }

body.user_profile .bio {
  margin-bottom: 5px; }

body.user_profile .name, body.user_profile .profile-link {
  margin-bottom: 0; }

body.user_profile .hero .avatar-img:not(.gravatar) {
  background: white; }

body.user_profile .hero img {
  border-radius: 50%; }

@media (max-width: 800px) {
  body#user_profile_add_stickers .callout.info {
    padding: 20px;
    margin: 0 0 20px 0; }
    body#user_profile_add_stickers .callout.info:before {
      content: ""; } }

body#user_profile_add_stickers #add_sticker_modal h2 {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: normal;
  text-align: left;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 1em; }

body#user_profile_add_stickers #add_sticker_modal form #item_description {
  display: table; }
  body#user_profile_add_stickers #add_sticker_modal form #item_description .image, body#user_profile_add_stickers #add_sticker_modal form #item_description .description {
    display: table-cell;
    vertical-align: middle; }
  body#user_profile_add_stickers #add_sticker_modal form #item_description img {
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    margin-right: 20px;
    max-heigth: 48px;
    max-width: 48px; }

body#user_profile_add_stickers #add_sticker_modal form textarea, body#user_profile_add_stickers #add_sticker_modal form .field.text input {
  width: 100%; }

body#user_profile_add_stickers #marketplace-items .item .pushing-pixels {
  height: 20px !important;
  display: none;
  margin: -8px auto 0 auto;
  width: 50%; }

body#user_profile_add_stickers #marketplace-items .item .tick {
  color: #bbb;
  font-size: 45px;
  height: 45px !important;
  opacity: 0;
  margin-top: -22px !important; }

body#user_profile_add_stickers #marketplace-items .item .pushing-pixels, body#user_profile_add_stickers #marketplace-items .item .tick {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center; }

body#user_profile_add_stickers #marketplace-items .item.adding .pushing-pixels {
  display: block; }

body#user_profile_add_stickers #marketplace-items .item.adding .image img {
  visibility: hidden; }

body#user_profile_add_stickers #marketplace-items .item.added {
  -webkit-animation: disapear 0.2s 3.3s forwards;
  -ms-animation: disapear 0.2s 3.3s forwards;
  -moz-animation: disapear 0.2s 3.3s forwards;
  -o-animation: disapear 0.2s 3.3s forwards;
  animation: disapear 0.2s 3.3s forwards; }
  body#user_profile_add_stickers #marketplace-items .item.added .pushing-pixels {
    -webkit-animation: shrink 0.3s 0.5s forwards;
    -ms-animation: shrink 0.3s 0.5s forwards;
    -moz-animation: shrink 0.3s 0.5s forwards;
    -o-animation: shrink 0.3s 0.5s forwards;
    animation: shrink 0.3s 0.5s forwards; }
  body#user_profile_add_stickers #marketplace-items .item.added .tick {
    -webkit-animation: showtick 2s 0.7s forwards;
    -ms-animation: showtick 2s 0.7s forwards;
    -moz-animation: showtick 2s 0.7s forwards;
    -o-animation: showtick 2s 0.7s forwards;
    animation: showtick 2s 0.7s forwards; }

body#user_followers .follow-list span {
  margin-left: 5px; }

body#user_followers .follow-list img {
  vertical-align: middle;
  border-radius: 50%; }

body#user_followers .follow-list a {
  text-decoration: none;
  color: inherit; }

@media (max-width: 800px) {
  body#user_followers li {
    width: 100%; } }

#marketplace-collections > div {
  width: 100%; }

@media (min-width: 801px) {
  #marketplace-collections > div {
    width: 33.333333333%; }
    #marketplace-collections > div:nth-of-type(1n) {
      clear: none; }
    #marketplace-collections > div:nth-of-type(3n+1) {
      clear: both; } }

.marketplace-collection a {
  display: block;
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 4px; }

.marketplace-collection .header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 20px 12px;
  text-align: center;
  background-color: #f97805; }
  .marketplace-collection .header h2, .marketplace-collection .header p {
    color: white;
    margin: 0; }
  .marketplace-collection .header h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .marketplace-collection .header p {
    font-weight: normal;
    height: 1.6em; }

.marketplace-collection .thumbnails {
  padding: 12px;
  font-size: 0; }

.marketplace-collection .thumbnail {
  display: inline-block;
  position: relative;
  background-color: #e9e9e9;
  width: 30%;
  margin: 0 2.5%; }
  .marketplace-collection .thumbnail img {
    position: absolute;
    max-width: 80%;
    max-height: 80%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .marketplace-collection .thumbnail::before {
    content: " ";
    display: block;
    padding-bottom: 100%; }
  .marketplace-collection .thumbnail:first-child {
    margin-left: 0; }
  .marketplace-collection .thumbnail:last-child {
    margin-right: 0; }

body#marketplace-tags-index .tags-header {
  font-size: 2.5em; }

body#marketplace-tags-index .tag-search {
  margin-bottom: 20px;
  position: relative; }
  body#marketplace-tags-index .tag-search .spinner {
    position: absolute;
    right: 25px;
    top: 50%; }
  body#marketplace-tags-index .tag-search:before {
    font-family: 'fontello';
    position: absolute;
    font-size: 1em;
    top: 10px;
    left: 10px;
    content: "\e817";
    color: #abb1cb; }
  body#marketplace-tags-index .tag-search .tag-search-field {
    width: 100%;
    padding-left: 30px; }

body#marketplace-tags-index .tag {
  font-size: 1.5em;
  padding: 5px;
  border-radius: 5px; }
  body#marketplace-tags-index .tag .tag-name {
    color: #3e3e3e;
    float: left;
    margin-left: 5px; }
  body#marketplace-tags-index .tag .tag-count {
    color: #b7b7b7;
    float: right;
    margin-right: 5px; }
  body#marketplace-tags-index .tag:hover {
    background-color: #e4e4e4;
    cursor: pointer; }

/*!
 * bootstrap-tokenfield
 * https://github.com/sliptree/bootstrap-tokenfield
 * Copyright 2013-2014 Sliptree and other contributors; Licensed MIT
 */
@-webkit-keyframes 'blink' {
  0% {
    border-color: #ededed; }
  100% {
    border-color: #b94a48; } }

@-moz-keyframes 'blink' {
  0% {
    border-color: #ededed; }
  100% {
    border-color: #b94a48; } }

@keyframes 'blink' {
  0% {
    border-color: #ededed; }
  100% {
    border-color: #b94a48; } }

.tokenfield {
  height: auto;
  min-height: 34px;
  padding-bottom: 0px; }

.tokenfield.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); }

.tokenfield .token {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  background-color: #ededed;
  white-space: nowrap;
  margin: -1px 5px 5px 0;
  height: 22px;
  vertical-align: top;
  cursor: default; }

.tokenfield .token:hover {
  border-color: #b9b9b9; }

.tokenfield .token.active {
  border-color: #52a8ec;
  border-color: rgba(82, 168, 236, 0.8); }

.tokenfield .token.duplicate {
  border-color: #ebccd1;
  -webkit-animation-name: blink;
  animation-name: blink;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.tokenfield .token.invalid {
  background: none;
  border: 1px solid transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-bottom: 1px dotted #d9534f; }

.tokenfield .token.invalid.active {
  background: #ededed;
  border: 1px solid #ededed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.tokenfield .token .token-label {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 4px;
  vertical-align: top; }

.tokenfield .token .close {
  font-family: Arial;
  display: inline-block;
  line-height: 100%;
  font-size: 1.1em;
  line-height: 1.49em;
  margin-left: 5px;
  float: none;
  height: 100%;
  vertical-align: top;
  padding-right: 4px; }

.tokenfield .token-input {
  background: none;
  width: 60px;
  min-width: 60px;
  border: 0;
  height: 20px;
  padding: 0;
  margin-bottom: 6px;
  -webkit-box-shadow: none;
  box-shadow: none; }

.tokenfield .token-input:focus {
  border-color: transparent;
  outline: 0;
  /* IE6-9 */
  -webkit-box-shadow: none;
  box-shadow: none; }

.tokenfield.disabled {
  cursor: not-allowed;
  background-color: #eeeeee; }

.tokenfield.disabled .token-input {
  cursor: not-allowed; }

.tokenfield.disabled .token:hover {
  cursor: not-allowed;
  border-color: #d9d9d9; }

.tokenfield.disabled .token:hover .close {
  cursor: not-allowed;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.has-warning .tokenfield.focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-error .tokenfield.focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-success .tokenfield.focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.tokenfield.input-sm,
.input-group-sm .tokenfield {
  min-height: 30px;
  padding-bottom: 0px; }

.input-group-sm .token,
.tokenfield.input-sm .token {
  height: 20px;
  margin-bottom: 4px; }

.input-group-sm .token-input,
.tokenfield.input-sm .token-input {
  height: 18px;
  margin-bottom: 5px; }

.tokenfield.input-lg,
.input-group-lg .tokenfield {
  min-height: 45px;
  padding-bottom: 4px; }

.input-group-lg .token,
.tokenfield.input-lg .token {
  height: 25px; }

.input-group-lg .token-label,
.tokenfield.input-lg .token-label {
  line-height: 23px; }

.input-group-lg .token .close,
.tokenfield.input-lg .token .close {
  line-height: 1.3em; }

.input-group-lg .token-input,
.tokenfield.input-lg .token-input {
  height: 23px;
  line-height: 23px;
  margin-bottom: 6px;
  vertical-align: top; }

.tokenfield.rtl {
  direction: rtl;
  text-align: right; }

.tokenfield.rtl .token {
  margin: -1px 0 5px 5px; }

.tokenfield.rtl .token .token-label {
  padding-left: 0px;
  padding-right: 4px; }

.marketplace-landing-hero .alt-call-to-action {
  padding-top: 20px;
  font-size: 1em; }
  .marketplace-landing-hero .alt-call-to-action a {
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #ddd; }

.marketplace-landing-hero form {
  width: 60%; }
  .marketplace-landing-hero form label {
    font-size: 1.1rem; }
  .marketplace-landing-hero form legend {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 24px; }
  .marketplace-landing-hero form input, .marketplace-landing-hero form textarea {
    width: 100%; }
  .marketplace-landing-hero form .twitter_handle:before {
    content: "@";
    color: #aaa; }
  .marketplace-landing-hero form .twitter_handle input {
    display: inline;
    width: 95%; }
  .marketplace-landing-hero form textarea {
    resize: none; }

@media (max-width: 900px) {
  .marketplace-landing-hero form {
    width: 90%; }
    .marketplace-landing-hero form legend {
      line-height: 1.6rem; }
    .marketplace-landing-hero form .twitter_handle input {
      width: 90%; } }

.seller_application .marketplace-landing-hero {
  height: 338px;
  background-position-y: 0; }

.seller_application.apply .marketplace-landing-hero h1 {
  margin-bottom: 32px; }

.seller_application.apply .marketplace-landing-footer .wrapper {
  padding: 0;
  margin-top: 814px; }

.seller_application.thanks .notify-box {
  width: 46%;
  text-align: center; }
  .seller_application.thanks .notify-box a {
    margin: 0 14px; }

@media (max-width: 900px) {
  .seller_application.thanks .notify-box {
    width: 94%; }
  .seller_application.thanks .button.medium {
    padding: 12px 10px;
    margin: 0 2px; } }

.seller_application.thanks .marketplace-landing-footer .wrapper {
  padding: 0;
  margin-top: 220px; }

.marketplace-landing-benefits, .marketplace-landing-customers {
  background-color: #fff; }
  .marketplace-landing-benefits .description, .marketplace-landing-customers .description {
    max-width: 750px; }

.marketplace-landing-benefits,
.marketplace-landing-customers,
.marketplace-landing-footer {
  text-align: center;
  position: relative; }
  .marketplace-landing-benefits h2,
  .marketplace-landing-customers h2,
  .marketplace-landing-footer h2 {
    font-size: 32px; }
  .marketplace-landing-benefits .description,
  .marketplace-landing-customers .description,
  .marketplace-landing-footer .description {
    display: inline-block; }
  .marketplace-landing-benefits .wrapper,
  .marketplace-landing-customers .wrapper,
  .marketplace-landing-footer .wrapper {
    padding-top: 60px;
    padding-bottom: 20px; }
  .marketplace-landing-benefits .call-to-action,
  .marketplace-landing-customers .call-to-action,
  .marketplace-landing-footer .call-to-action {
    padding-top: 30px;
    padding-bottom: 30px; }
    .marketplace-landing-benefits .call-to-action a,
    .marketplace-landing-customers .call-to-action a,
    .marketplace-landing-footer .call-to-action a {
      padding: 12px 24px; }

.marketplace-landing-featured {
  padding-top: 50px;
  padding-bottom: 60px; }
  .marketplace-landing-featured .featured-total {
    font-size: 14px;
    font-weight: normal; }
  .marketplace-landing-featured .browse-all {
    text-align: center; }

.marketplace-landing-benefits .wrapper {
  border-bottom: 1px solid #ddd; }

.marketplace-landing-benefits h3 {
  font-weight: normal; }

.marketplace-landing-benefits .benefit {
  display: inline-block;
  height: 84px;
  background-image: url("/assets/images/stores/sticker_mule/marketplace/benefits-86f46639.png"); }
  .marketplace-landing-benefits .benefit.markup {
    background-position: 0 0;
    width: 100px; }
  .marketplace-landing-benefits .benefit.graph {
    background-position: -110px 0;
    width: 88px; }
  .marketplace-landing-benefits .benefit.paypal {
    background-position: -208px 0;
    width: 104px; }

.marketplace-landing-customers .customers {
  display: inline-block;
  width: 100%; }

.marketplace-landing-customers .customers > div {
  float: left;
  display: inline-block;
  position: relative;
  bottom: -4px;
  width: 50%; }
  .marketplace-landing-customers .customers > div:before {
    content: " ";
    position: absolute;
    background: url("/assets/images/stores/sticker_mule/marketplace/customers-5fe89a66.png") no-repeat;
    background-size: 184%;
    width: 72%;
    height: 40%;
    left: 14%;
    top: 30%; }
  .marketplace-landing-customers .customers > div.smashing {
    background-color: #f06d3f; }
    .marketplace-landing-customers .customers > div.smashing:before {
      background-position: 106% 0%; }
  .marketplace-landing-customers .customers > div.newrelic {
    background-color: #000000; }
    .marketplace-landing-customers .customers > div.newrelic:before {
      background-position: 106% 100%; }
  .marketplace-landing-customers .customers > div.gary-vaynerchuk {
    background-color: #254554; }
    .marketplace-landing-customers .customers > div.gary-vaynerchuk:before {
      background-position: -6% 100%; }
  .marketplace-landing-customers .customers > div.dribbble {
    background-color: #ea4c89; }
    .marketplace-landing-customers .customers > div.dribbble:before {
      background-position: -6% 74%; }
  .marketplace-landing-customers .customers > div.product-hunt {
    background-color: #ed432e; }
    .marketplace-landing-customers .customers > div.product-hunt:before {
      background-position: 106% 74%; }
  .marketplace-landing-customers .customers > div.storenvy {
    background-color: #64c39e; }
    .marketplace-landing-customers .customers > div.storenvy:before {
      background-position: 106% 49%; }
  .marketplace-landing-customers .customers > div.duckduckgo {
    background-color: #ffffff; }
    .marketplace-landing-customers .customers > div.duckduckgo:before {
      background-position: -6% 24%; }
  .marketplace-landing-customers .customers > div.docker {
    background-color: #e6e6e6; }
    .marketplace-landing-customers .customers > div.docker:before {
      background-position: -6% 0%; }
  .marketplace-landing-customers .customers > div.code-school {
    background-color: #000000; }
    .marketplace-landing-customers .customers > div.code-school:before {
      background-position: -6% 49%; }
  .marketplace-landing-customers .customers > div.airbrake {
    background-color: #2e7ac6; }
    .marketplace-landing-customers .customers > div.airbrake:before {
      background-position: 106% 24%; }
  .marketplace-landing-customers .customers > div:after {
    content: " ";
    display: block;
    padding-bottom: 100%; }

@media (min-width: 450px) {
  .marketplace-landing-customers .customers > div {
    width: 20%; }
  .marketplace-landing-customers .newrelic, .marketplace-landing-customers .dribbble, .marketplace-landing-customers .duckduckgo, .marketplace-landing-customers .code-school {
    top: 30px; }
  .marketplace-landing-hero {
    background-image: url("/assets/images/stores/sticker_mule/marketplace/header-f2e3b81e.png");
    background-repeat: no-repeat;
    height: 470px; } }

.marketplace-landing-footer .wrapper {
  padding-top: 100px;
  padding-bottom: 80px; }

.marketplace-landing-footer .description {
  max-width: 600px; }

body.marketplace .subscription-links {
  margin-bottom: 20px; }
  body.marketplace .subscription-links .breadcrumb-links {
    float: left;
    display: inline-block; }
  body.marketplace .subscription-links .rss-link {
    float: right;
    display: inline-block; }

body.marketplace .newsletter .info {
  text-align: center;
  font-size: 1.3em; }

body.marketplace .newsletter .form {
  text-align: center; }
  body.marketplace .newsletter .form #email {
    padding: 9px; }
  body.marketplace .newsletter .form .button {
    vertical-align: top; }

body#marketplace-items-index #page > .inner .contents, body#marketplace-collections-index #page > .inner .contents {
  padding: 0 0 20px 0; }

a.back_to_top {
  visibility: hidden; }

@media (min-width: 801px) {
  a.back_to_top {
    display: block;
    visibility: visible;
    width: 70px;
    height: 50px;
    background-color: #e8e8e8;
    border-radius: 4px;
    position: fixed;
    right: -4px;
    bottom: 140px; }
    a.back_to_top .arrow {
      display: block;
      margin: 14px 0 4px 55px;
      background-position: 0 0;
      width: 18px;
      height: 11px; }
    a.back_to_top .label {
      font-size: 120%;
      text-shadow: 0px 1px 0px white;
      color: #606060; }
    a.back_to_top .label, a.back_to_top .chevron {
      display: block;
      text-align: center; }
    a.back_to_top i {
      color: #b0b0b0; }
    a.back_to_top .chevron {
      text-align: center;
      padding: 12px 0 0 0;
      font-size: 145%;
      right: 2px;
      position: relative; } }

#marketplace-item #page > .inner > .contents {
  padding-top: 30px; }

#marketplace-item #main {
  position: relative; }

#marketplace-item #main_image {
  display: table;
  background-color: #e9e9e9;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 1em;
  position: relative;
  min-height: 430px;
  width: 100%; }
  #marketplace-item #main_image .inner {
    display: table-cell;
    vertical-align: middle; }
  #marketplace-item #main_image img {
    max-width: 100%; }
  #marketplace-item #main_image.proof {
    padding: 30px; }

#marketplace-item .flag-item {
  position: absolute;
  bottom: 4px;
  right: 2px;
  font-size: 14px;
  color: #999; }

#marketplace-item .description, #marketplace-item .marketplace-item-purchase-link {
  margin-bottom: 35px; }

#marketplace-item h1 {
  font-size: 32px;
  margin-bottom: 0.5em; }
  #marketplace-item h1 .button {
    padding: 6px 8px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-left: 6px; }

#marketplace-item .marketplace-item-purchase-link {
  padding: 10px 0; }
  #marketplace-item .marketplace-item-purchase-link .label, #marketplace-item .marketplace-item-purchase-link .price {
    display: inline-block;
    padding: 18px 0; }
  #marketplace-item .marketplace-item-purchase-link .label {
    width: 65%;
    border-right: 1px solid #e98700; }
  #marketplace-item .marketplace-item-purchase-link .price {
    width: 30%; }

@media (min-width: 801px) {
  #marketplace-item #title, #marketplace-item #info {
    float: right;
    width: 35%;
    margin-left: 3%; }
  #marketplace-item #main {
    float: left;
    width: 62%; }
    #marketplace-item #main .flag-item {
      bottom: 18px; } }

#user_profile_add_stickers .item .meta {
  padding: 14px 14px 10px 14px; }

#user_profile_add_stickers #sticker_added, #user_profile_add_stickers #add_sticker_modal {
  top: -200px; }

#add_sticker_modal, #edit-marketplace-item-modal {
  width: 550px; }
  #add_sticker_modal label, #edit-marketplace-item-modal label {
    display: block; }
  #add_sticker_modal .field.text input, #add_sticker_modal textarea, #edit-marketplace-item-modal .field.text input, #edit-marketplace-item-modal textarea {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%; }
  #add_sticker_modal .buttons, #edit-marketplace-item-modal .buttons {
    padding-top: 10px;
    margin: 0; }
  #add_sticker_modal .token-input, #edit-marketplace-item-modal .token-input {
    border: none;
    margin: 0; }
  #add_sticker_modal .tokenfield, #edit-marketplace-item-modal .tokenfield {
    min-height: 0;
    padding-bottom: 10px; }
  #add_sticker_modal .token, #edit-marketplace-item-modal .token {
    margin-bottom: 10px; }
  #add_sticker_modal h3, #edit-marketplace-item-modal h3 {
    text-align: center; }

#edit-marketplace-item-modal .buttons #delete-link {
  display: block;
  float: right;
  line-height: 65px; }

#edit-marketplace-item-modal #price_example {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem; }

#flag-marketplace-item-modal .options {
  width: 80%;
  margin: 0 auto; }
  #flag-marketplace-item-modal .options .option {
    margin-bottom: 8px;
    cursor: pointer;
    display: block; }
  #flag-marketplace-item-modal .options .other {
    resize: none;
    width: 100%; }
  #flag-marketplace-item-modal .options .actions {
    margin-top: 12px; }

#delete-marketplace-item-modal {
  width: 520px;
  padding: 60px 40px; }
  #delete-marketplace-item-modal h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 45px; }
  #delete-marketplace-item-modal form {
    text-align: center; }

#marketplace-item .modal .content, #marketplace-items .modal .content {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  margin-bottom: 20px; }
  #marketplace-item .modal .content table#variant-quantities, #marketplace-items .modal .content table#variant-quantities {
    width: 70%;
    margin-bottom: 0; }
    #marketplace-item .modal .content table#variant-quantities tr, #marketplace-items .modal .content table#variant-quantities tr {
      cursor: pointer; }
    #marketplace-item .modal .content table#variant-quantities tr:hover, #marketplace-items .modal .content table#variant-quantities tr:hover {
      background-color: #ecf3fe; }
    #marketplace-item .modal .content table#variant-quantities td, #marketplace-items .modal .content table#variant-quantities td {
      padding: 2px; }

ul.collection-info-list {
  padding: 0;
  text-align: center;
  list-style-type: none; }
  ul.collection-info-list li {
    display: inline;
    padding: 0 8px;
    color: white;
    font-size: 19px;
    border-right: 1px solid rgba(255, 255, 255, 0.2); }
    ul.collection-info-list li .profile-link {
      font-weight: bold;
      color: white; }
    ul.collection-info-list li:last-child {
      border-right: none; }

.collection-breadcrumbs {
  line-height: 34px; }

.collection-modal .title {
  display: block;
  font-size: 24px;
  margin-bottom: 20px; }
  .collection-modal .title img {
    max-width: 80px;
    vertical-align: middle; }
    @media (max-width: 800px) {
      .collection-modal .title img {
        display: block;
        margin-bottom: 12px; } }

.collection-modal .info {
  margin-left: auto;
  margin-right: auto;
  width: 90%; }

.collection-modal form {
  transition: opacity 0.3s ease-out;
  opacity: 0;
  padding: 0 0 1em 0;
  transition: height 0.3s ease-out, opacity 0.3s ease-out; }
  .collection-modal form.visible {
    opacity: 1; }

.collection-modal label {
  display: inline-block;
  margin-bottom: 6px; }

.collection-modal .existing-collections-label {
  display: block;
  border-bottom: 1px solid #cccccc;
  font-size: 18px;
  padding-bottom: 6px; }

.collection-modal .existing-collection {
  transition: opacity 0.3s ease-out;
  opacity: 0;
  display: block;
  cursor: pointer;
  padding: 10px 10px 4px 10px; }
  .collection-modal .existing-collection.visible {
    opacity: 1; }
  .collection-modal .existing-collection i {
    color: #dfdfdf; }
  .collection-modal .existing-collection.hidden {
    display: none; }
  .collection-modal .existing-collection:hover i {
    color: #606060; }
  .collection-modal .existing-collection input[type="checkbox"]:checked ~ i {
    color: #5ba4e6; }

.collection-modal .file-field-hint, .collection-modal .hint {
  padding-bottom: 10px; }

.collection-modal .hint, .collection-modal .suggestions {
  display: none; }

.collection-modal .suggestions {
  padding-top: 12px; }
  .collection-modal .suggestions a {
    cursor: pointer; }

.collection-modal .add-new-collection-field {
  display: table;
  width: 100%; }

.collection-modal .add-new-collection-input-container {
  display: table-cell;
  width: 100%;
  padding-right: 10px; }

.collection-modal .add-new-collection-input {
  width: 100%;
  padding: 9px; }

.collection-modal .add-new-collection-button {
  display: table-cell; }

.collection-modal .info-flash {
  transition: opacity 0.3s ease-out;
  opacity: 0;
  float: right; }
  .collection-modal .info-flash.visible {
    opacity: 1; }

.collection-modal .actions {
  text-align: center;
  padding-top: 30px;
  position: relative;
  margin: 0; }
  @media (min-width: 801px) {
    .collection-modal .actions {
      text-align: inherit; } }

.collection-modal .delete-link {
  display: inline-block;
  margin-top: 30px;
  cursor: pointer;
  color: #ff4242; }
  @media (min-width: 801px) {
    .collection-modal .delete-link {
      position: absolute;
      margin-top: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%); } }
  .collection-modal .delete-link:hover {
    color: #ff0f0f; }

.collection-modal .return-to-edit-link {
  cursor: pointer; }

.collection-modal .first-collection .hint, .collection-modal .first-collection .suggestions {
  display: block; }

.collection-modal .first-collection .existing-collections, .collection-modal .first-collection .actions {
  display: none; }

.breadcrumb-seperator {
  margin: 0 10px; }
