/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *


 */

/*
  CSS Reset
*/

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; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }
body {
  line-height: 1; }
ol, ul, li {
  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; }

/*
  Base Styles
*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

body {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.215em;
  font-weight: 400;
  background-color: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

h1 {
  font-size: 32px;
  font-weight: 800;
}

h2 {
  font-size: 24px;
}

h3 {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1;
  color: #888;
}

strong,
.strong {
  font-weight: 800;
}

.center {
  text-align: center;
}

a {
  color: #333;
}

a:hover,
a:focus {
  color: #2d90d0;
}

li a,
li a:hover,
li a:active {
  border-bottom: none;
}

p {
  margin: 0 0 .75em;
}

img {
  max-width: 100%;
  margin: 0;
}

input,
textarea {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.215em;
  font-weight: 400;
  color: #333;
}

.hidden {
  display: none;
}

/*
  Clearfix stuff
*/

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.clearfix:after {
  clear: both;
}
/*
  Collection card list
*/


.collection-card-list {
  margin: 12px 0 70px;
}

.new-collection .collection-card-list {
  width: 300px;
  margin: 20px 0 20px;
  float: right;
}

.new-collection .collection-card-list .collection-card { margin: 0; }

.collection-card {
  display: inline-block;
  position: relative;
  width: 300px;
  margin-right: 12px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.new-collection .collection-card-list .collection-card {
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 100;
  position: relative;
  margin: 0;
}

.collection-card > a {
  text-decoration: none;
}

.collection-card.newest {
  /*border: 1px solid #333;*/
}

.collection-card > a:hover .name {
  text-decoration: underline;
}

.collection-card .info {
  width: 100%;
  height: 54px;
  position: relative;
  z-index: 300;
  background: #f7f7f7;
  padding: 6px;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 4px 4px 0 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.collection-card.newest .info {
  /*border-bottom: 1px solid #333;*/
}

.collection-card .info .name {
  position: relative;
  color: #2d90d0;
  font-size: 20px;
  line-height: 1.3;
  height: 28px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
}

.collection-card .info .name .editable {
  margin: 0;
}

.collection-card .info .name::after {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 100;
  -webkit-box-shadow: inset -10px 0 8px #f7f7f7;
  box-shadow: inset -10px 0 8px #f7f7f7;
}

.collection-card .info .name input {
  position: relative;
  font-size: 20px;
  height: 24px;
  padding: 0;
  background: #f1f1f1;
  outline: none;
  color: #2d90d0;
  width: 100%;
  font-weight: 800;
  border: none;
  border-bottom: 2px dashed #2d90d0;
  z-index: 500;
}

/*.collection-card.newest .info .name input {
  color: #28b653;
  border-bottom: 2px dashed #28b653;
}*/

.collection-card .info .instructions {
  position: relative;
}

.collection-card .info .instructions::after,
.collection-card .info .instructions::after {
  background: #333;
  color: #fff;
  content: "Press 'enter' to save name";
  text-align: center;
  position: absolute;
  left: 14px;
  bottom: 4px;
  font-size: 13px;
  line-height: 1.2em;
  font-weight: 400;
  width: 154px;
  padding: .2em;
  z-index: 600;
  border-radius: .2em;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
  box-shadow: 0 0 5px rgba(0,0,0,.4);
}

.collection-card .info .instructions::before,
.collection-card .info .instructions::before {
  border: solid;
  border-color: #333 transparent;
  border-width: 6px 6px 0 6px;
  bottom: -2px;
  content: "";
  left: 86px;
  position: absolute;
  z-index: 550;
}

.collection-card .info .name .edit {
  opacity: 0;
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
  height: 22px;
  width: 22px;
  color: #888;
  font-weight: 400;
  position: absolute;
  z-index: 200;
  top: 0; right: 0;
  text-align: center;
  border: none;
  background: #e5e5e5;
  border-radius: .25em;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.collection-card .info .name .edit:hover { color: #333; background: #ddd; }
.collection-card:hover .name .edit { opacity: 1; }

.collection-card .views,
.collection-card .images {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px;
}
.collection-card .views {
  margin-top: 4px;
  height: 56px;
  padding-bottom: 0;
}
.collection-card .images {
  margin-bottom: 2px;
  height: 120px;
}

.collection-card .views::before,
.collection-card .images::before {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 100;
}
.collection-card .views::before { -webkit-box-shadow: inset -25px 0 25px #fff; box-shadow: inset -25px 0 25px #fff; }
.collection-card .images::before { -webkit-box-shadow: inset 0 -8px 8px #fff; box-shadow: inset 0 -8px 8px #fff; }

.collection-card .views li {
  display: inline-block;
  position: relative;
}

.collection-card .views li div.blank {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1px dashed #ddd;
  background: rgba(230,230,230,.1);
}

.collection-card .views img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.collection-card .images li,
.collection-card .add-files li {
  float: left;
  margin-right: 2px;
  margin-bottom: 2px;
  height: 60px;
  width: -webkit-calc(100% / 4 - 2px);
  width: calc(100% / 4 - 2px);
  border: .1em solid #ccc;
  background-color: #fff;
  /* hide the text */
  color: transparent;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* background image layout junk */
  -webkit-background-origin: border-box;
  background-origin: border-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  background-repeat: no-repeat;
  background-position: top;
  -webkit-background-size: cover;
  background-size: cover;
}

.collection-card .add-files li {
  width: -webkit-calc(100% / 4 - 4px) !important;
  width: calc(100% / 4 - 4px) !important;
}

.collection-card .add-files ul {
  padding: 5px;
}

.collection-card li.uploading {
  margin-right: 4px;
}

.collection-card .images li.blank {
  border: 1px dashed #ddd;
  background: rgba(230,230,230,.1);
}

.collection-card .actions {
  position: relative;
  text-align: center;
  z-index: 300;
  padding: 6px;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all .2 ease-in-out;
  transition: all .2 ease-in-out;
}

.collection-card .actions li {
  display: inline;
  color: #aaa;
  margin: 0 1em;
  cursor: pointer;
}

.collection-card .actions li:hover {
  color: #2d90d0;
  text-decoration: underline;
}

.collection-card .drawer {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.collection-card .add-files,
.collection-card .share-collection {
  width: 100%;
  height: -webkit-calc(100% - 54px);
  height: calc(100% - 54px);
  position: absolute;
  z-index: 300;
  top: 300px;
  left: 0;
  right: 0;
  padding: 6px;
  background: rgba(255,255,255,.9);
  overflow: auto;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all .15s cubic-bezier(0,.15,0,.25);
  transition: all .15s cubic-bezier(0,.15,0,.25);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  opacity: .3;
}

.collection-card .add-files.show,
.collection-card .share-collection.show {
  top: 54px;
  opacity: 1;
}

.collection-card .add-files .instructions {
  text-align: center;
}

.collection-card .add-files .instructions .main {
  display: inline-block;
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 32px 10px;
  color: #2d90d0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  background: rgba(45, 144, 208, 0.1);
  border: 2px dashed #2d90d0;
  border-radius: .3em;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.collection-card .add-files .instructions:hover .main {
  border: 2px dashed #1f83df;
  background: rgba(45, 144, 208, 0.2);
  color: #1f83df;
  cursor: pointer;
}

.collection-card .add-files .instructions .small {
  font-size: 11px;
  font-weight: 400;
  color: #2d90d0;
  margin-top: 6px;
}

.collection-card .close-drawer {
  position: absolute;
  color: #fff;
  top: 3px;
  right: 3px;
  line-height: 1.9;
  text-align: center;
  background: #888;
  width: 18px;
  height: 18px;
  font-size: .8em;
  border-radius: 50%;
}

.collection-card .close-drawer:hover {
  background: #333;
  cursor: pointer;
}

.collection-card .share-collection {
  padding: 6px 24px;
}

.collection-card .share-link {
  width: 100%;
  margin: 8px auto;
  position: relative;
}

.collection-card .share-link div:focus:after,
.collection-card .share-link div:hover:after {
  background: #333;
  color: #fff;
  content: "Click to select URL";
  text-align: center;
  position: absolute;
  left: 40px;
  bottom: 30px;
  font-size: 13px;
  line-height: 1.2em;
  font-weight: 400;
  width: 110px;
  padding: .2em;
  z-index: 300;
  border-radius: .25em;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
  box-shadow: 0 0 5px rgba(0,0,0,.4);
}

.collection-card .share-link div:focus:before,
.collection-card .share-link div:hover:before {
  border: solid;
  border-color: #333 transparent;
  border-width: 6px 6px 0 6px;
  bottom: 26px;
  content: "";
  left: 90px;
  position: absolute;
  z-index: 100;
}

.collection-card .share-collection input {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.215em;
  width: 100%;
  padding: 4px 6px;
  margin: 0 0 4px;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.collection-card .share-collection input:disabled { opacity: .5; }

.collection-card .share-collection input[type="text"],
.collection-card .share-collection input[type="email"] {
  background: #f9f9f9;
  border: 1px solid #aaa;
  border-radius: .2em;
}

.collection-card .share-collection input[type="email"].passed,
.collection-card .share-collection input[type="email"].passed:hover,
.collection-card .share-collection input[type="email"].passed:focus {
  background: #e1fae6;
  border-color: #28b653;
}
.collection-card .share-collection input[type="email"].failed,
.collection-card .share-collection input[type="email"].failed:hover,
.collection-card .share-collection input[type="email"].failed:focus {
  background: #f5dedd;
  border-color: #dd1c0f;
}

.collection-card .share-collection input[type="text"]:hover,
.collection-card .share-collection input[type="email"]:hover {
  background: #fff;
  border-color: #2d90d0;
}

.collection-card .share-collection input[type="text"]:focus,
.collection-card .share-collection input[type="email"]:focus {
  background: #fff;
  border-color: #2d90d0;
}

.collection-card .share-collection input[type="submit"] {
  width: 60%;
  margin-left: 20%;
  margin-top: 4px;
  padding: 6px;
  background: #2d90d0;
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.collection-card .share-collection input[type="submit"]:hover,
.collection-card .share-collection input[type="submit"]:focus { background: #1f83df; }
.collection-card .share-collection input[type="submit"]:active { background: #2474bb; }

.collection-card .share-collection input[type="submit"].success {
  color: #fff;
  background: #28b653;
}


/*
  Upload Progress
*/

.create-collection-form input {
  display: none; /* Hides the input button. May break browsers. */
}

.collection-card .images li.uploading {
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  margin-right: 3px;
}

.uploading .donut {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  z-index: 200;
}

.uploading .donut svg {
  position: absolute;
  z-index: 500;
}

.uploading img {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  z-index: 100;
  opacity: .4;
}



/*
  Animations
*/

.animate-in {
  -webkit-animation: animationFrames ease-in-out .3s;
  animation: animationFrames ease-in-out .3s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames ease-in-out .3s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
  -moz-animation: animationFrames ease-in-out .3s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames ease-in-out .3s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames ease-in-out .3s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames {
  0% {
    left:0px;
    top:0px;
    opacity:0;
    -webkit-transform:  rotate(0deg) scaleX(0) scaleY(0) ;
    -ms-transform:  rotate(0deg) scaleX(0) scaleY(0) ;
    transform:  rotate(0deg) scaleX(0) scaleY(0) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    -webkit-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
    -ms-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
    transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    left:0px;
    top:0px;
    opacity:0;
    -webkit-transform:  rotate(0deg) scaleX(0) scaleY(0) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    -webkit-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    left:0px;
    top:0px;
    opacity:0;
    -ms-transform:  rotate(0deg) scaleX(0) scaleY(0) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    -ms-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}

/*
  Left column & Image Nav
*/


.image-nav {
  position: fixed;
  float: left;
  margin: 0;
  top: 45px;
  height: 100%;
  z-index: 100;
}

.image-nav li {
  margin: 0;
  padding: 0;
}

.image-nav li .link {
  display: block;
  opacity: .25;
  height: 20px;
  width: 40px;
  margin: 3px 5px;
  background: #fff;
  border: .1em solid #bbb;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  /* hide the text */
  color: transparent;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* background image layout junk */
  -webkit-background-origin: border-box;
  background-origin: border-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.image-nav li .link:hover {
  opacity: 1;
  cursor: pointer;
  border: 1px solid #333;
}

.image-nav li .link:active {
  opacity: 1;
  cursor: pointer;
  border: 1px solid #2d90d0;
}

.image-nav li .link.active {
  opacity: 1;
  border: .2em solid #2d90d0;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.image-nav li .popout {
  display: none;
  position: fixed;
  margin-left: 55px;
  max-height: 500px;
  max-width: 350px;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.5);
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  background-color: #fff;
  z-index: 700;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
}

.image-nav li .link:hover ~ .popout {
  display: block;
}

.image-nav li .link.active:hover ~ .popout {
  border: .2em solid #2d90d0;
}



/*
  collection info in header
*/

.collection {}

.collection > .info {
  height: 120px;
  width: 100%;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 8em;
}

.collection > .info .name {
  font-weight: 800;
  color: #333;
  letter-spacing: 1px;
}

.collection > .info .owner {
  margin-top: 10px;
}

.collection > .info .options {
  margin: 1em 0 0;
}

.collection > .info .options li {
  display: inline-block;
  margin: 1em;
}

.collection > .info .options a {
  color: #bbb;
  border: none;
  position: relative;
  font-size: 12px;
}

.collection > .info .options a:hover { color: #2d90d0; }
.collection > .info .options a.delete:hover { color: #e62e0b; }



/*
  Center column / images & info
*/

.image-list {}

.image-item {
  margin-bottom: 10em;
  max-width: 100%;
}

a.image-nav-anchor {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  color: #bbb;
  padding: 20px 0 5px;
  margin-bottom: 1.5em;
  text-decoration: none;
  border-bottom: .1em solid #eee;
  cursor: pointer;
  outline: none;
}

.image-item .image .wrapper {
  padding-top: 20px;
  min-height: 450px;
  text-align: center;
}

.image-item .image img {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  background: #fff;
  -webkit-transition: height .3s ease-in-out;
  transition: height .3s ease-in-out;
}

.image-item .image img:hover {
  cursor: -webkit-zoom-in;
}

.image-item .info {
  font-size: .85em;
  color: #888;
  margin: 1em 0;
  text-align: right;
}

.image-item .info ul {}

.image-item .info li {
  display: inline-block;
  position: relative;
  margin-right: .5em;
  margin-bottom: .5em;
}
.image-item .info li a { color: #888; }
.image-item .info li a:hover { color: #2d90d0; }
.image-item .info li.zoom a { cursor: -webkit-zoom-in; }
.image-item .info li.delete a:hover { color: #e62e0b; }

.image-item .right-column h3 {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  color: #bbb;
}


/*
  Views
*/

.image-item .views {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.image-item .views ul {
  min-height: 2.5em;
  margin-bottom: 10px;
  padding: 5px;
}

.image-item .views li {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  margin-bottom: 5px;
}

.image-item .views img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.image-item .views li:hover:after {
  background: #333;
  color: #fff;
  content: attr(data-name);
  text-align: center;
  position: absolute;
  left: -40px;
  bottom: 40px;
  font-size: 12px;
  width: 100px;
  padding: .15em;
  z-index: 300;
  border-radius: .25em;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
  box-shadow: 0 0 5px rgba(0,0,0,.4);
}

.image-item .views li:hover:before {
  border: solid;
  border-color: #333 transparent;
  border-width: 8px 8px 0 8px;
  bottom: 34px;
  content: "";
  left: 6px;
  position: absolute;
  z-index: 100;
}




/*
Comments
*/

.image-item .comments {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.image-item .comments:hover {
  opacity: 1;
}

.image-item .comments ul {
  width: 100%;
  margin: 5px 0;
}

.image-item .comments li {
  margin: 0 0 5px;
  padding: 5px;
}

.image-item .comments .avatar {
 position: absolute;
}

.image-item .comments .avatar img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.image-item .comments .content {
  min-width: 0;
  margin-left: 35px;
  font-size: 13px;
  line-height: 1.3em;
}

.image-item .comments .content .name {
  margin-right: .2em;
  font-weight: 800;
}

.comments .content .body {}

.comments .content .body p:first-of-type {
  display: inline;
}

.comments .content .body p {
  margin: .5em 0 0;
}

.comments .content .body a {
  color: #2d90d0;
}

.comments .content .meta {
  color: #bbb;
  font-size: .9em;
  margin-top: .1em;
}

.comments .content .meta .time a {
  color: #bbb;
  text-decoration: none;
}

.comments .content .meta .time a:hover {
  text-decoration: underline;
}

.comments .content .meta:before {
  content: "◷";
  font-size: 1.2em;
  margin-right: .25em;
}
.comments .content .meta .delete a {
  float: right;
  color: #bbb;
}
.comments .content .meta .delete a:hover { color: #e62e0b; }

.comments li.blank-slate {
  color: #888;
  margin: .5em 0;
  font-style: italic;
  background: none;
}

.comments li.new-comment {
  background: #f5f5f5;
}

.comments textarea {
  width: 100%;
  height: 1.75em;
  color: #333;
  border: .1em solid #bbb;
  border-radius: .3em;
  resize: none;
  font-size: 13px;
  padding: 3px;
  margin: 3px 0 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.comments textarea:focus,
.comments textarea:hover,
.comments textarea:active {
  outline: none;
  border-color: #2d90d0;
}

.comments textarea:valid {
  height: 5em;
}

.comments textarea ~ input[type='submit'] {
  background: #2d90d0;
  color: #fff;
  border: none;
  border-radius: .3em;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  padding: 5px 12px;
  margin: .1em 0;
  height: 1.8em;
}

.comments textarea:valid ~ input[type='submit'] {
  display: inline-block;
  opacity: 1;
}

.comments textarea:invalid ~ input[type='submit'] {
  display: none;
  opacity: 0;
}


.comments input[type='submit']:hover {
  cursor: pointer;
  background: #1e5d95;
}


/*
  Animations
*/

.new-post {
  -webkit-animation: newPostFade ease-in-out 2s;
  animation: newPostFade ease-in-out 2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: newPostFade ease-in-out 2s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
  -moz-animation: newPostFade ease-in-out 2s;
  -moz-animation-iteration-count: 1;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: newPostFade ease-in-out 2s;
  -o-animation-iteration-count: 1;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: newPostFade ease-in-out 2s;
  -ms-animation-iteration-count: 1;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}


@keyframes newPostFade {
  0% {
    background: #ffffd0;
  }
  80% {
    background: #ffffd0;
  }
  100% {
    background: #fff;
  }
}

@-webkit-keyframes newPostFade {
  0% {
    background: #ffffd0;
  }
  80% {
    background: #ffffd0;
  }
  100% {
    background: #fff;
  }
}

@-ms-keyframes newPostFade {
  0% {
    background: #ffffd0;
  }
  80% {
    background: #ffffd0;
  }
  100% {
    background: #fff;
  }
}
/*
  Dashboard
*/


.create-collection a {
  display: inline-block;
  float: left;
  background: #28b653;
  color: #fff;
  font-weight: 800;
  height: 30px;
  padding: 6px 14px;
  text-decoration: none;
  margin-right: 10px;
}
.create-collection a::before {
  content: "✚";
  font-weight: 400;
  font-size: .85em;
  padding-top: 2px;
  margin-right: 7px;
}
.dashboard-nav .create-collection:hover a,
.dashboard-nav .create-collection:focus a { background: #219938; }

.dashboard-nav {
  display: inline-block;
  font-weight: 400;
  border: 1px solid #ddd;
}

.dashboard-nav li {
  display: inline-block;
  float: left;
  height: 30px;
  margin: 0;
  border-right: 1px solid #ddd;
}
.dashboard-nav li:last-of-type { border-right: none; }

.dashboard-nav li a {
  display: inline-block;
  color: #888;
  height: 100%;
  padding: 6px 14px;
  text-decoration: none;
  background: #f7f7f7;
}

.dashboard-nav li a:hover {
  color: #333;
  background: #f9f9f9;
  text-decoration: underline;
}

.dashboard-nav li.active a {
  color: #333;
  background: #fff;
  font-weight: 800;
}

.dashboard-nav li.active a:hover {
  text-decoration: none;
}

.unpaid-user-cta {
  padding: 1em;
  text-align: center;
  font-size: 1.25em;
  background: #fcfcfc;
  border: .1em dashed #ddd;
}

.unpaid-user-cta a.upgrade {
  font-weight: 400;
}

.notice {
  position: fixed;
  z-index: 1000;
  width: 480px;
  top: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 10px;
}

.notice:hover {
  cursor: pointer;
}

.notice:after {
  content: "✕";
  color: #333;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  padding: 10px;
  text-align: center;
}

.notice:hover:after {
  color: #111;
  background: rgba(255,255,255,0.3);
}

.notice.success {
  background: #2fbe62;
}

.notice.error {
  background: #ae1c23;
}
footer {
  padding: 6em 0 3em;
  font-size: .85em;
}

footer ul {
  width: 800px;
  margin: 0 auto;
  text-align: center;
}

footer li {
  margin: 0 1.5em;
  display: inline-block;
}

footer li a[href^="mailto:"] {
  text-decoration: underline;
}

footer li a:hover {
  text-decoration: underline;
}
header {
  position: relative;
  width: 100%;
  min-width: 720px;
  height: 50px;
  color: #bbb;
  font-size: 14px;
  z-index: 100;
}

header .mocky a {
  font-weight: 800;
  font-size: 1.2em;
  color: #888;
}

header .logo-wrap {
  width: 50px;
  position: fixed;
}

header .logo-wrap .logo {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAADIklEQVRoBe1YTYhSURT2qagT5MKk7RQU9EMlGM3GxSwzCNrYqp91MBuTDH8WkmIiRk6QkG2CWrRtJcEsSoggaJGLmaWD0CJXyoQa%2FvWdx1x54%2FjqPd%2BVeci9cLn3nnPuvd93zrn3%2FVgsoggPCA8IDwgPCA8IDyyPByStVHK53Fir7bx2vV5vLZVKfZtnvl3PpMFgcA91R88crbYOh%2BOLVttZdrqI2Gy27WQy%2BX3WQkZl2Wx2ZGQNq5HJZpqrKyKLBu5yufyIzIpyn3g8%2Flk5VutziwgO6WW1TZgcF8YV1ldpS1ar9ZOyqtgdEnMhAhKnnE7nk0OrKwShUMiBYVkh4trlQsRut%2FvH4%2FHNdDp9Vg2dz%2Be7A921cDjsUbMxIudCRJIkP9KBykMVMDCRHpHO4%2FH8NwVV1vinmBsR2gXX8%2F1IJOKd3jGTydwCyXMkByHzEgE%2B%2Fz74Fa%2FX%2B2C%2FP2lA4jEbIA3NSYQOOoCeANA2gYXHN4LBoJMBx7lZh36N6UejkTmJ0EEn0DjsW2g%2Bop4MBAJ3SUYF6SZHA%2Fo4SNDT%2ByIql5Sm9VkxvCAiIBNBWwPYAi0M8HToJXpuIBrXgf9nvV5%2FDZtdjI8himcYAF4tNyIAW4vFYlsg8wPgzoPEDchYNJ6Xy%2BU%2BdNsEHC%2BI3NPLMBHgkiPS6XSIgGU4HD6jFuUpvH8bZFrtdlt%2BEGIsEwEhcxHBtboKcHTQ99DfJfSNRuM9pRK6l1Bt6Jfy%2Bfwe6UByh1qkGOm4FkMRAQk5GgBbAyr5w4tSCP0XhBLyXqvV2qQ%2BlX6%2FL0cERMwVEaTIVQIIQkRkUprNZhkkfkP%2FplAoNJkC6ccicjoajR5nch6toYgAwC8AfouU%2BaAEUywWW%2FD6q263K99iTEcpBtuXmPPO7XZ7mJxHa%2Bh7JJFITNJmGky1Wk1UKpU%2F03LM2ZiW8RgbjYgqhlkkVI05KBZGhAM2XUssDRFdZwQH%2BCu%2BqRfyfws3H31Bzl00E8FNs67cBRtfwLiklB1lXzOR6b8ZePHr4q%2FHUWI%2FsPfSnBFB5EBcxUB4QHhAeEB4QHhAeEB4gKsH%2FgLo8%2F10AztBqwAAAABJRU5ErkJggg%3D%3D) no-repeat;
  -webkit-background-size: 40px;
  background-size: 40px;
  margin: 5px;
  height: 40px;
}

header .logo-wrap:hover .logo {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAADIUlEQVRoBe1YS4hSURj2%2Bi4IZNJWQgUFmproHZrtLCMIWrXqsQ5aBRG0bNOmiIKEpk3QLGbbMphFLSIIFFScwYWgi1kYLgyFMR%2FXvv%2Fkgaszt%2B7jyFzkHLj85%2F%2FP437f%2F7jHo8cjm%2FSA9ID0gPSA9ID0wOp4QDFLRVXVqdm5ducNBoONWq32w856v5VF4%2FH43mQy2beyxuzcQCDwzezc4%2BZZIuLz%2BfbK5XLxuI2c2vL5vOZkD6%2BTxW5aaykiywYeDofVTCZzSv%2BearX6Va8b9YVFBKlx1egl3J7L5bK8byALwWDwi%2F4xmHfELIRIIpG4MJ1Onx3Zfd4QhLo1bxKnCSECD6qAdDOZTF42gpbNZu94vd5r8Xh8zWiOE7sQIgCo4vEixx8ZgFH8fv9jGotEIv9NQYM9%2FmkWQgSfZYqIR1GU%2Bzg4o4tvRDRuwZYgeygUci8R1AcnQl%2BcBwRY3xCNJ1zXNM2dRKjQEYmzAPqLwALoQ4gQ9aml0%2BlNiA08bBzSnURmhU4EdhGZzyiVc0ivuwDMGn56sGjgp81TzNEwnsKAkJSevYIJxxsCGEsr7FYZjUYvaFfgpaJX6NzA%2BHXoB6ij94hcE%2FbTqJlLkEKbYyK80AG4glN4F6DL6CcRlRtAyqIB%2FVWxWBxB3yP0iJzw9HJMhBd6v98vE0gQeUkS7TkicBt6t9VqsYMQfUYE6eYuIjgAz1Ohg0yvXq83CT2%2BUDsAfIBuBmM%2BjBU6nU6PxtD2%2FwpPZiaFCUcR4YUOsBUgYhcvSiHobwgh5KDX673maFFD7kwteHydQFJ9cLAku93uFqLSB5EPjUbjJx9rt9ssIrBfjEajZ7hdhHQUEQBoA%2FBH3Bw%2F6cE0m80uyL3Dw75ifIxSDCTeQt%2BOxWJr3C5CWrqzA8R6qVQye0OkQ%2FG3WZC4BhwiwuHF%2BUhVUxidRmTxvXrdNAn9Irv9ZRKxi8nWupUhYunOjhz%2Bjp8dS%2Fl%2FC3vTDdJ2M01kOBxu6t%2BCM%2BQK9ILedpJ900QW%2F81IpVKHuBGeJPa5d69MjUgic3GVivSA9ID0gPSA9ID0gPSAUA%2F8ASua9esans5BAAAAAElFTkSuQmCC) no-repeat;
  -webkit-background-size: 40px;
  background-size: 40px;
}

header .header-nav,
header .header-nav a {
  position: relative;
  color: #888;
  text-decoration: none;
}

.header-nav li:hover a {
  color: #333;
  text-decoration: underline;
}

.header-nav.left {
  float: left;
  margin-left: 50px;
}
.header-nav.right {
  float: right;
  margin-right: 50px;
}

.header-nav.upgrade-prompt {
  position: absolute;
  right: 240px;
}

.header-nav.upgrade-prompt a:hover {
  color: #2d90d0;
}

.header-nav ul li {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  margin: 0;
}

.header-nav ul li a {
  display: inline-block;
  padding-top: 18px;
}

.header-nav .settings {
  display: inline-block;
  position: relative;
  background: #fff;
  height: 50px;
  padding-top: 1px;
  z-index: 300;
  cursor: default;
}

.header-nav .settings .avatar {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*.header-nav .settings:after {
  content: "⚙";
  font-size: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}*/

.header-nav .settings ~ .links {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 0;
  text-align: right;
  z-index: 200;
  background: #fff;
  border: .1em solid #888;
  -webkit-transition: all .2s cubic-bezier(0,.15,0,.25);
  transition: all .2s cubic-bezier(0,.15,0,.25);
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.header-nav .links:before {
  border: solid;
  border-color: #888 transparent;
  border-width: 0 6px 6px 6px;
  top: -6px;
  content: "";
  right: 14px;
  position: absolute;
  z-index: 100;
}

.header-nav .settings:hover ~ .links,
.header-nav .settings ~ .links:hover {
  top: 50px;
  margin-top: 6px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.header-nav .settings ~ .links a {
  display: inline-block;
  color: #888;
  margin: 5px;
}

.header-nav .settings ~ .links a:hover {
  color: #333;
  text-decoration: underline;
  cursor: pointer;
}
/*
  Place all the styles related to the matching controller here.
  They will automatically be included in application.css.
*/

.content {
  min-width: 850px;
  position: relative;
}

/*
  Inside the dashboard
*/
.left-column {}

.dashboard-middle-column {
  max-width: 1300px;
  margin-top: 20px;
  margin-left: 60px;
  min-height: 400px;
}

.middle-column {
  margin-left: 50px;
  padding: 0 10px;
  float: left;
  width: -webkit-calc(100% - 470px);
  width: calc(100% - 470px);
  min-height: 300px;
}

.right-column {

  margin-left: -webkit-calc(100% - 420px);

  margin-left: calc(100% - 420px);
  margin-right: 50px;
  height: 100%;
}

.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
  -webkit-pointer-events: none;
  z-index: 1000;
}

#nprogress .bar {
  background: #333;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px #333, 0 0 5px #333;
  box-shadow: 0 0 10px #333, 0 0 5px #333;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 100;
  top: 15px;
  width: 20px;
  margin: auto;
  left: 0;
  right: 0;
}

#nprogress .spinner-icon {
  width: 20px;
  height: 20px;
  border: solid .1em transparent;
  border-top-color: #333;
  border-left-color: #333;
  border-radius: 10px;
  -webkit-animation: nprogress-spinner 600ms linear infinite;
  -ms-animation: nprogress-spinner 600ms linear infinite;
  animation: nprogress-spinner 600ms linear infinite;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes nprogress-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
  Collection overlay
*/


.overlay {
  position: fixed;
  top: 42px; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.8);
  z-index: 500;
}

.overlay.collection-viewers {
  top: 0;
  background: rgba(0,0,0,.85);
}

.overlay.collection-viewers .welcome {
  margin: 4em auto;
  position: relative;
}

.overlay.new-collection {
  top: 0;
  background: rgba(0,0,0,.85);
  overflow: auto;
  padding: 0 2em;
}

.overlay.new-collection .wrapper {
  margin: 60px auto 20px;
  position: relative;
}

.overlay.new-collection .wrapper h1 {
  text-align: center;
  color: #fff;
  margin: 1em 0 0;
  z-index: 500;
  position: relative;
}

.overlay.new-collection .wrapper .message {
  font-size: 1.2em;
  line-height: 1.2;
  position: relative;
  text-align: center;
  color: #ccc;
  margin: 10px 0 35px;
  z-index: 500;
}

.overlay.new-collection .wrapper .message:last-of-type {
  font-size: .9em;
}

.overlay.new-collection .wrapper .close-window a {
  margin: 2em auto .5em;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  background: #2d90d0;
  border: none;
  padding: .5em .75em;
  z-index: 500;
  position: relative;
  text-decoration: none;
}

.overlay.new-collection .wrapper .close-window a:hover,
.overlay.new-collection .wrapper .close-window a:active,
.overlay.new-collection .wrapper .close-window a:focus {
  background: #1a69b2;
}

.overlay.new-collection .wrapper .cancel-collection {
  position: fixed;
  bottom: 20px;
  left: 0; right: 0;
  z-index: 500;
}

.overlay.new-collection .wrapper .cancel-collection a {
  color: #ccc;
  font-size: 12px;
}

.overlay.new-collection .wrapper .cancel-collection a:hover {
  color: #2d90d0;
}


/*
  Upload walkthrough
*/


.overlay.new-collection .upload-walkthrough {
  width: 620px;
  margin: 40px auto 10px;
  background: #222;
  -webkit-box-shadow: 0 0 75px 125px #222;
  box-shadow: 0 0 75px 125px #222;
}

.overlay.new-collection .upload-walkthrough .walkthrough {
  color: #bbb;
  position: relative;
  z-index: 500;
  height: 320px;
  width: 46%;
  float: left;
}

.overlay.new-collection .upload-walkthrough .walkthrough li {
  font-size: 14px;
  line-height: 1.2;
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.overlay.new-collection .upload-walkthrough .walkthrough li h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.overlay.new-collection .upload-walkthrough .walkthrough li::before {
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: -34px;
  background: transparent;
  color: #fff;
  border: 1px dashed #fff;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.overlay.new-collection .upload-walkthrough .walkthrough li.one { top: 10px; }
.overlay.new-collection .upload-walkthrough .walkthrough li.one::before { content: "1"; }
.overlay.new-collection .upload-walkthrough .walkthrough li.two { top: 42%; }
.overlay.new-collection .upload-walkthrough .walkthrough li.two::before { content: "2"; }
.overlay.new-collection .upload-walkthrough .walkthrough li.three { bottom: 0; }
.overlay.new-collection .upload-walkthrough .walkthrough li.three::before { content: "3"; }

.overlay.new-collection .upload-walkthrough .walkthrough li.complete { opacity: .2; }
.overlay.new-collection .upload-walkthrough .walkthrough li.complete::before {
  content: "✔";
  line-height: 1.7;
  color: #333;
  background: #fff;
  border: 1px solid #fff;
}


/*
  No Scroll
*/

.no-scroll.new-collection ~ .middle-column {
  overflow: hidden;
  position: fixed;
  height: 100%;
}

.no-scroll ~ .collection {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.no-scroll.new-collection ~ .all-collections .collection-card,
.no-scroll ~ .collection ~ .image-item  {
  position: relative;
}

.overlay.view-full-size {
  top: 0;
  overflow: auto;
  background: rgba(0,0,0,.85);
}

.overlay.view-full-size .center {
  position: absolute;
  overflow: auto;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 3em;
}

.overlay.view-full-size img {
  max-width: none;
}

.overlay.view-full-size:hover {
  cursor: -webkit-zoom-out;
}


/*
  Welcome overlay
*/

.welcome {
  position: relative;
  top: 2em;
  right: 0;
  left: 0;
  width: 600px;
  font-size: 1.3em;
  line-height: 1.3em;
  margin: 0 auto 4em;
  padding: 1.3em;
  background: #fff;
  border: .1em solid #333;
}

.welcome .message {
  margin: 1em 0;
}

.welcome .bottom,
.welcome .bottom a {
  color: #888;
  font-size: 13px;
}

.welcome .bottom a:hover {
  color: #2d90d0;
  border-color: #2d90d0;
}

.welcome .bottom .close:hover {
  color: #e62e0b;
  border-color: #e62e0b;
}

.form-wrapper {
  width: 380px;
  margin: 1em auto;
}

.form-wrapper form {}

.form-wrapper label {
  margin: .4em .4em 0;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  float: left;
  font-weight: 800;
  color: #bbb;
}

.form-wrapper .helper {
  clear: both;
  text-align: left;
  font-size: .8em;
  line-height: 1.2em;
  color: #888;
  margin: 1em .2em .5em;
}

.form-wrapper input {
  width: 100%;
  font-size: 26px;
  padding: .2em;
  margin: 0 0 .2em;
  text-align: center;
  outline: none;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="email"] {
  background: #f5f5f5;
  border: .1em solid #bbb;
  border-radius: .15em;
}

.form-wrapper input[type="text"]:hover,
.form-wrapper input[type="email"]:hover {
  background: #fff;
  border-color: #888;
}

.form-wrapper input[type="text"]:focus,
.form-wrapper input[type="email"]:focus {
  background: #fff;
  border-color: #333;
}

.form-wrapper input[type="submit"] {
  width: 60%;
  margin-top: .5em;
  padding: .3em;
  background: #2d90d0;
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.form-wrapper input[type="submit"]:hover,
.form-wrapper input[type="submit"]:focus { background: #1f83df; }
.form-wrapper input[type="submit"]:active { background: #2474bb; }


/*
  Viwers overlay
*/

.welcome .viewers {
  width: 60%;
  margin: 1.5em auto;
  text-align: left;
}

.collection-viewers {
  overflow: auto;
  margin-bottom: 5em;
}

.welcome .viewers li {
  margin: .75em 0;
  height: 2.5em;
  position: relative;
}

.welcome .viewers .avatar {
  display: inline-block;
  float: left;
}

.welcome .viewers .avatar img {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
}

.welcome .viewers .user {
  margin-left: 2.5em;
  font-size: 1.25em;
  font-weight: 800;
  margin-top: .15em;
  position: absolute;
}

.welcome .viewers .user .email {
  color: #888;
  font-size: .6em;
  line-height: 1em;
  font-weight: 400;
}
/*
  Homepage letter
*/


.home-content {
  max-width: 600px;
  margin: 2em auto;
}

.home-content .letter .header {
  text-align: center;
}

.home-content .letter h1 {
  color: #333;
  letter-spacing: .05em;
  margin: 0;
}

.home-content .letter .tagline {
  color: #888;
  margin: 0;
  font-size: 1em;
}

.home-content .letter p {
  margin: 0 0 1em;
  font-size: 19px;
  line-height: 1.5;
}

.home-content .letter ul {
  width: 88%;
  margin: 2em 0;
  margin-left: 3em;
}

.home-content .letter li {
  margin: 0 0 .5em;
  position: relative;
  font-size: 1.25em;
  line-height: 1.7em;
}

.home-content .letter li:before {
  content: "•";
  color: #2d90d0;
  font-size: 1.8em;
  position: absolute;
  left: -20px;
  top: -2px;
}

.home-content .letter .signature {
  margin-top: 2em;
  text-align: center;
  font-size: 1.85em;
  font-weight: 800;
}

.home-content .letter .signature .title {
  margin: .5em 0;
  margin-left: 3em;
  color: #888;
  font-size: .45em;
  font-weight: 400;
  font-style: italic;
}


/*
  Pricing on the signup page
*/

.pricing p {
  font-size: 1em;
  line-height: 1.3em;
}

.pricing .signature {
  font-weight: 800;
  font-size: 1.1em;
}

.pricing .signature .title {
  font-size: .65em;
  font-weight: 400;
  color: #888;
}

/*
  Call to action links/buttons
*/

.home-content .cta {
  text-align: center;
  margin: 4em auto;
}

.home-content .cta.small {
  margin: 2em auto;
}

.home-content .cta .button {
  font-weight: 800;
  font-size: 1.5em;
  display: inline-block;
  padding: .6em 1.2em;
  color: #fff;
  background: #2d90d0;
  border: none;
  text-decoration: none;
}

.home-content .cta .button:hover {
  background: #1f83df;
}

.home-content .cta .button:active {
  background: #2474bb;
}

.header-nav a.upgrade,
.header-nav a.upgrade {
  color: #2d90d0;
  font-weight: 800;
}

.header-nav a.upgrade:hover,
.header-nav a.upgrade:hover {
  color: #2d90d0;
  text-decoration: underline;
}
.subscriptions {
  margin: 1.5em 0;
}

.subscription-wrapper {
  border: .1em solid #ccc;
  display: inline-block;
  padding: .75em;
}

.subscription-wrapper .name {
  font-weight: 800;
  font-size: 1.15em;
  margin-bottom: .25em;
}

.subscription-wrapper .description {
  font-size: .85em;
  line-height: 1.25em;
  margin: .25em 0;
  color: #888;
}

.subscription-wrapper .price {
  font-size: 1.25em;
  margin: .5em 0;
}

.subscriptions input[type="submit"] {
  margin-top: .25em;
  font-size: 1.15em;
  padding: .35em .75em;
  background: #2d90d0;
  color: #fff;
  font-weight: 800;
  border: none;
  outline: none;
  cursor: pointer;
}

.subscriptions input[type="submit"]:hover,
.subscriptions input[type="submit"]:focus { background: #1f83df; }
.subscriptions input[type="submit"]:active { background: #2474bb; }

.subscriptions .success {}

.subscriptions a.delete {
  color: #888;
  font-size: .85em;
  border-bottom: .1em solid #888;
  display: inline-block;
  margin: .5em 0;
}

.subscriptions a.delete:hover,
.subscriptions a.delete:active,
.subscriptions a.delete:focus {
  color: #e62e0b;
  border-bottom: .1em solid #e62e0b;
}
