/**
 * Required
 */
/**
 * Helpers
 */
/**
 * 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
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Global variable used by Skeletor stylesheets.
 * Values can be changed.
 */
/*@import "skeletor/_base";*/
/*@import "skeletor/_modules";*/
/*	==========================================================================
	Variables
	========================================================================== */
/*	Colors
	========================================================================== */
/*	Type
	========================================================================== */
/*	==========================================================================
	Global
	========================================================================== */
body {
  background: #eee;
  color: #000;
}

h1 {
  font-size: 0.8em;
  line-height: 1.5em;
}

h2 {
  font-size: 0.6em;
  line-height: 1.33333em;
}

h3 {
  font-size: 0.53333em;
  line-height: 0.8em;
}

fieldset > p {
  margin: 0.85714em 0 0;
}

input[type="search"],
.input-search {
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  border-radius: 18px;
}

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

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

li,
p,
label,
input,
textarea,
button {
  line-height: 1.2em;
}

label {
  font-weight: bold;
}

label input,
label textarea {
  font-size: 1em;
}

a {
  color: #000;
}

a:hover {
  color: #666;
}

.button {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #666;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

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

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

/*	.app-header
	========================================================================== */
.app-header {
  background: #ccc;
}

.app-logo {
  font-size: 0.5em;
  font-weight: bold;
}

/*	.l- layout
	========================================================================== */
.page-content {
  border-color: #ccc;
}

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

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

.nav-page {
  background: #ccc;
}

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

.field-help {
  font-size: 0.4em;
  font-weight: 400;
}

.form-field.error {
  background: #ccc;
}

.form-field.multiple label {
  color: #333;
}

.message {
  background-color: #ccc;
}

/**
 * Atlantic specific stylesheets
 */
body {
  font-family: "Apercu Regular", Calibri, sans-serif;
  font-size-adjust: 0.508;
  font-style: normal;
}

input,
textarea {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  padding: 0.33333em;
}

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

/*	==========================================================================
	FOUT
	========================================================================== */
.wf-loading body {
  visibility: hidden;
}

/*	Global
	========================================================================== */
h1, h3 {
  margin: 0;
}

h2 {
  margin: 0;
}

ul {
  padding: 0;
}

/*	.l- layout
	========================================================================== */
.page-content {
  padding: 96px 0 6em 0;
}

.page-content.narrow {
  padding-left: 32px;
  padding-right: 30%;
  max-width: 500px;
}

.narrow h2 {
  margin-bottom: .5em;
}

.overflow {
  overflow-x: hidden;
}

.fail .message.bookmarklet-error,
.success .message.bookmarklet-error {
  display: block;
}

.fail .nailed-it, .success .almost, .bookmarklet-error {
  display: none;
}

/*	Forms
	========================================================================== */
form {
  margin-top: 1em;
  margin-bottom: 3em;
}

.form-field {
  margin-bottom: 40px;
}

input.narrow {
  width: 100%;
  max-width: 800px;
  min-width: 320px;
}

textarea {
  min-height: 96px;
  width: 100%;
  max-width: 800px;
  min-width: 320px;
}

.upload-image input {
  display: none;
}

.your-avatar {
  max-height: 250px;
  max-width: 250px;
}

input[type="submit"] {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 32px;
  width: auto;
}

.field-help {
  display: inline-block;
  margin-left: 10px;
  position: static;
}

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

table {
  margin-top: 2em;
}

th, td {
  padding: .5em;
}

th {
  text-align: left;
}

/*	Variables
	========================================================================== */
/*	Colors
	========================================================================== */
/*	Global
	========================================================================== */
html {
  border-left: 7px solid #302b28;
  padding-left: 32px;
  min-height: 100%;
  font-size: 16px;
}

@media (max-width: 640px) {
  html {
    padding-left: 0;
  }
}
body {
  color: #302b28;
  background-color: #faf9f8;
  font-size: 16px;
}

h1 {
  font-family: "Apercu Bold", Calibri, sans-serif;
  font-size-adjust: 0.508;
  font-weight: bold;
  font-style: normal;
  font-size: 2em;
  line-height: 1.5em;
}

h2 {
  font-family: "Apercu Bold", Calibri, sans-serif;
  font-size-adjust: 0.508;
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
}

h3 {
  font-size: 24px;
  font-weight: 200;
  line-height: 1em;
}

p {
  line-height: 1.3em;
  margin: 0 0 1.3em 0;
}

a {
  color: #8a847d;
  text-decoration: none;
}

a:hover, a:focus {
  color: #5e5a56;
}

ul {
  list-style: none;
}

.capitalize {
  text-transform: capitalize;
}

.action-link {
  color: #8fa1a9;
  margin-right: 0.5em;
}

.action-link:hover {
  color: #58696e;
}

/*	Buttons
	========================================================================== */
.button {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #1c1917;
  color: #faf9f8;
  display: inline-block;
  font-weight: normal;
  font-size: 16px;
  padding: 5px 35px;
}

.button:hover, .button:active {
  background-color: #302b28;
}

.button.twitter {
  background-color: #5CB781;
}

.skip-link {
  margin-left: 1em;
}

/*	Logos
	========================================================================== */
.big-logo {
  width: 200px;
  margin-bottom: 1em;
}

.tiny-logo {
  border-radius: 3px;
  width: 100px;
  height: 38px;
  position: fixed;
  right: 1em;
  top: 1em;
  z-index: 9998;
  background-color: #1c1917;
}

.tiny-logo:hover {
  background-color: #302b28;
}

/*	MENU - .header
	========================================================================== */
.header {
  position: absolute;
  font-size: 16px;
  right: 1em;
  text-align: right;
  top: 39px;
}

.header-link {
  display: inline-block;
  padding: 5px 35px 5px 45px;
  margin: 0.1em 0;
  border-radius: 3px;
}

.header-link:hover {
  padding-left: 50px;
  color: #302b28;
}

/* on new activity, only round corners on one side */
.header-link.new-activity {
  border-radius: 3px 0 0 3px;
}

.header-link-one {
  color: #302b28;
  background-color: #dadcdd;
}

.header-link-one:hover {
  background-color: #c8cbcc;
}

.header-link-two {
  background-color: #ecede9;
  color: #302b28;
}

.header-link-one:hover {
  background-color: #c8cbcc;
}

/* on hover, change state of both elements */
.activity-element:hover .header-link-two {
  padding-left: 50px;
  background-color: #969696;
}
.activity-element:hover .notifications-count {
  background-color: #302b28;
  color: #cac4c0;
}

.notifications-count {
  background-color: #302b28;
  padding: 5px 18px;
  display: inline-block;
  border-radius: 0 3px 3px 0;
  margin-top: .1em;
}

.header-sub-links {
  position: absolute;
  top: 105px;
  right: 1em;
  text-align: right;
}

.header-sub-links li {
  top: 110px;
  line-height: 1.3em;
}

.hsl-one {
  color: #8a847d;
}

.hsl-one:hover {
  color: #5e5a56;
}

.hsl-two {
  color: #ccc3bb;
}

.hsl-two:hover {
  color: #a19a94;
}

/*	List header
	========================================================================== */
.list-header {
  margin-bottom: 1em;
}

/*	Listing, List items - .listing, .list-item
	========================================================================== */
.listing {
  list-style: none;
  margin: 1.5em 0 6em 0;
  clear: both;
}

.list-item {
  position: relative;
  width: 4000px;
  margin: 0 0 1.75em 0;
}

.list-item h3 {
  display: inline-block;
  line-height: 1.5em;
  min-width: 320px;
}

.list-item h3 a {
  color: #302b28;
}

.list-item-image {
  background-repeat: repeat;
  background-position: 0 center;
  display: block;
  height: 80px;
  border-radius: 3px;
}

.meta {
  margin: 0;
}

/* avatar */
.meta-avatar-container {
  display: inline-block;
  vertical-align: top;
}

.meta-avatar {
  border-radius: 4px;
  height: 32px;
  width: 32px;
  margin-right: 8px;
}

.meta-text {
  display: inline-block;
  max-width: 600px;
  margin: -2px 0 -2px -4px;
}

/* profile specific setting */
.meta-text-profile {
  margin: -2px 0 -2px 0;
}

.profile-header {
  display: inline-block;
  width: 100%;
}

.meta-author-link {
  color: #29aae1;
  text-transform: capitalize;
  margin-right: 5px;
}

.meta-comment {
  margin-right: 5px;
}

.thanks-unit {
  display: inline-block;
}

/* Thanks button */
a.thanks-button, a.thanks-count {
  text-decoration: underline;
  color: #58696e;
}

.thanks-button.is_mine {
  color: #8fa1a9;
}

/*	Sub Nav
	========================================================================== */
.sub-nav {
  margin-bottom: 1em;
}

.sub-nav .inactive {
  background: #dadcdd;
  color: #302b28;
}

.sub-nav .inactive:hover {
  background: #AAA;
  color: #302b28;
}

.sub-nav .inactive:active {
  background: #302b28;
  color: #faf9f8;
}

.sub-nav-left {
  border-radius: 2px 0 0 2px;
}

.sub-nav-middle {
  border-radius: 0;
}

.sub-nav-right {
  border-radius: 0 2px 2px 0;
}

/*	.footer
	========================================================================== */
.footer {
  margin-right: 1em;
  margin-bottom: 6em;
  width: auto;
  position: relative;
  left: 0;
}

.footer li {
  height: 1.5em;
}

/*	Profile
	========================================================================== */
.follow-links {
  display: block;
}

/* Profile Follow button
   ============================================================================ */
.button.not-following {
  background-color: #2d5270;
}

.button.not-following:hover {
  background-color: #302b28;
}

.button.not-following:hover {
  color: #faf9f8;
}

.t-unfollow {
  display: none;
}

.button.following {
  background-color: #5CB781;
  color: #faf9f8;
}

.button.following:hover {
  background-color: #302b28;
}
.button.following:hover .t-unfollow {
  display: block;
}
.button.following:hover .t-following {
  display: none;
}

.button.following:active {
  color: #565656;
}

.follow-link-following {
  color: #5CB781;
  text-decoration: underline;
}

.follow-link-following:hover {
  color: #2d5270;
  text-decoration: underline;
}

.follow-link-not-following,
.follow-link-not-following:hover,
.follow-link-not-following:active {
  color: #2d5270;
  text-decoration: underline;
}

.label-unfollow {
  display: none;
}

.follow-link-following:hover .label-following {
  display: none;
}
.follow-link-following:hover .label-unfollow {
  display: inline-block;
  text-decoration: underline;
}

/*	Forms
	========================================================================== */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
.input-search,
textarea {
  background: #faf9f8;
  border: 1px solid #bdbdbd;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
.input-search:focus,
textarea:focus {
  background: #faf9f8;
}

input[type="checkbox"] {
  display: inline-block;
}

label {
  font-size: 16px;
  font-weight: 200;
  line-height: 16px;
  margin-bottom: 10px;
}

input, textarea {
  font-size: 16px;
  line-height: 16px;
  display: block;
  padding: 10px 10px 10px 10px;
}

input[type="submit"] {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #302b28;
  height: unset;
  color: #faf9f8;
  display: inline-block;
  font-weight: normal;
  font-size: 18px;
  padding: 8px 30px;
}

.upload-image img {
  width: 140px;
  border-radius: 2px;
}

.upload-image label {
  color: #8a847d;
  cursor: pointer;
  font-size: 16px;
  display: block;
}

.upload-image label:hover {
  color: #302b28;
}

.field-help {
  font-size: 16px;
  font-weight: 400;
}

.form-submit {
  padding: 0;
}

.form-field, .form-field.file {
  padding: 0;
}

/*	Error messages
	========================================================================== */
.message {
  color: #faf9f8;
  padding: 5px 8px;
  font-size: 18px;
  margin-bottom: 1em;
  border-radius: 2px;
  max-width: 800px;
}

.message.error {
  background: #ff0000;
}

.message.success {
  background: #5CB781;
}

.message a {
  color: #302b28;
}

.message a:hover {
  color: #302b28;
  text-decoration: underline;
}

.message a:active {
  color: #302b28;
  text-decoration: none;
}

.form-error {
  color: #ff0000;
  font-size: 16px;
}

.form-error.success {
  color: #5CB781;
}

.fail .message, .error .message, .almost .message {
  background: #ff0000;
}

.success .message {
  background: #5CB781;
}

/*	Bookmarklet log in
	========================================================================== */
.bookmarklet-login {
  background: transparent;
  font-size: 30px;
}
.bookmarklet-login .nav.pri {
  display: none;
}
.bookmarklet-login .page-content {
  background-color: #302b28;
  color: #faf9f8;
}
.bookmarklet-login .tiny-logo {
  display: none;
}
.bookmarklet-login input[type="submit"] {
  background-color: #666666;
}
.bookmarklet-login input[type="submit"]:hover, .bookmarklet-login a:hover {
  background-color: #AAA;
}
.bookmarklet-login .button {
  margin: 0;
  background-color: #666666;
}
.bookmarklet-login a:hover,
.bookmarklet-login a:focus {
  color: #faf9f8;
}

/* Follow list
   ============================================================================ */
.following-list .image {
  background-repeat: no-repeat;
  margin-left: 0;
}

.list-item .following,
.list-item .not-following {
  cursor: pointer;
}

.list-item .following {
  color: #5CB781;
  display: inline-block;
}

.list-item .following:hover {
  color: #8a847d;
}
.list-item .following:hover .t-unfollow {
  display: block;
}
.list-item .following:hover .t-following {
  display: none;
}

.list-item .not-following:hover,
.list-item .not-following:active,
.list-item .following:active {
  color: #302b28;
}

/* User spine
   ============================================================ */
.user-spine {
  display: block;
  float: left;
  height: 110px;
  max-width: 600px;
  margin-right: 2%;
  overflow: hidden;
  width: 48%;
}

@media (max-width: 1100px) {
  .user-spine {
    width: 100%;
  }

  .profile-header .user-spine {
    max-width: 400px;
  }
}
.user-spine-avatar {
  float: left;
}

.user-spine-avatar-image {
  background-color: #faf9f8;
  border-radius: 4px;
  height: 80;
  width: 80px;
}

.user-spine-meta {
  float: left;
  max-width: calc(100% - 80px - 1em);
  padding-left: 1em;
}

.user-spine-meta-text {
  margin-bottom: 0;
}

.user-spine-meta h1 {
  font-size: 22px;
  line-height: 1em;
}

.user-spine h3 {
  font-family: "Apercu Bold", Calibri, sans-serif;
  font-size-adjust: 0.508;
  font-weight: bold;
  font-style: normal;
  font-size: 22px;
}

.user-spine-header-link,
.user-spine-header-link:hover,
.user-spine-header-link:active,
.user-spine-header-link:visited {
  color: #302b28;
}

/* Members pages
   ============================================================ */
.super-sub-nav {
  color: #302b28;
  text-decoration: none;
  margin-right: .5em;
}

.super-sub-nav:hover,
.super-sub-nav.active {
  text-decoration: underline;
  color: #302b28;
}

/* Text content pages
   ============================================================ */
.texty {
  margin: 0 1em 0 0;
  max-width: 600px;
}

.texty h1 {
  margin-bottom: 1em;
}

.texty h2 {
  font-size: 1.5em;
  margin-bottom: .5em;
}

.texty h3 {
  font-family: "Apercu Bold", Calibri, sans-serif;
  font-size-adjust: 0.508;
  font-weight: bold;
  font-style: normal;
  font-size: 1em;
  margin-bottom: .5em;
}

.faq-image {
  width: 100%;
  margin-bottom: 20px;
}

.team {
  font-size: 16px;
}

.team li {
  line-height: 22px;
}

/* Welcome message
   ============================================================ */
.welcome-message {
  background-color: #302b28;
  color: #faf9f8;
  padding: 3em 3em 6em 3em;
  font-weight: 200;
  position: absolute;
  margin: auto;
  top: 100px;
  width: 50%;
  left: 25%;
  z-index: 9999;
  border-radius: 8px;
}

.welcome-message p {
  margin-bottom: 1em;
  line-height: 1.5em;
}

.welcome-message ol {
  padding-left: 1em;
}

.welcome-message li {
  line-height: 1.5em;
}

.welcome-message .close {
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -9999em;
  background: url(../../static/img/icon_close_white.svg) no-repeat center center;
  background-size: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 1;
}

.welcome-message .close:hover,
.welcome-message .close:focus {
  background-color: #302b28;
  opacity: .6;
}

.welcome-message a.text-link {
  color: #faf9f8;
  text-decoration: underline;
}

.welcome-message a:hover.text-link,
.welcome-message a:active.text-link {
  color: #8a847d;
}

/*	Bookmarklet log in
	========================================================================== */
.bookmarklet-login {
  background: transparent;
  margin: 19px;
}
.bookmarklet-login .nav.pri {
  display: none;
}
.bookmarklet-login .page-content {
  padding: 1em;
  padding-right: 40%;
}
.bookmarklet-login form {
  margin: 0;
}

.modal-close .close {
  display: block;
  width: 72px;
  height: 72px;
  text-indent: -9999em;
  background: url(../../static/img/icon_close_white.svg) no-repeat center center;
  background-size: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0.6;
}

.modal-close .close:hover,
.modal-close .close:focus {
  background-color: #302b28;
  opacity: 1;
}

/*	Likes modal
	========================================================================== */
.popup_overlay {
  width: 60%;
  min-height: 150px;
  max-height: 85%;
  position: fixed;
  top: 20%;
  right: 20%;
  background-color: #302b28;
  color: #faf9f8;
  z-index: 1000;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .popup_overlay {
    width: 100%;
    min-height: 150px;
    max-height: 85%;
    position: fixed;
    top: 15%;
    right: 0;
    background-color: #302b28;
    z-index: 1000;
  }
}
.popup_overlay .close {
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -9999em;
  background: url(../../static/img/icon_close_white.svg) no-repeat center center;
  background-size: 20px;
  position: absolute;
  right: 16px;
  top: 20px;
  opacity: 0.6;
}

.popup_overlay .close:hover,
.popup_overlay .close:focus {
  background-color: #302b28;
  opacity: 1;
}

.modal-top {
  display: block;
  overflow: hidden;
}

.modal-top-text {
  padding: 36px 24px 0 24px;
  line-height: 1em;
  max-width: 80%;
}

.modal-top-link {
  color: #faf9f8;
  text-decoration: underline;
}

.modal-top-link:hover {
  color: #faf9f8;
}

.modal-content {
  padding: 0 24px 48px 28px;
  max-height: 460px;
  min-height: 30px;
  overflow-y: scroll;
}

/*
	*** Thanks spines
*/
.thanks-list {
  list-style: none;
  overflow-x: hidden;
  margin: 0;
}

.thanks-list-item {
  display: inline-block;
  width: 4000px;
  margin-bottom: 10px;
  padding: 0;
}

.thanks-image {
  border-radius: 2px;
  float: left;
  margin-right: 8px;
}

.thanks-spine-article {
  color: #302b28;
  font-weight: 600;
}

/* Emails page
	========================================================================== */
table {
  font-size: 16px;
  width: 120%;
  margin-bottom: 2em;
}

tr {
  border-bottom: 1px solid #eee;
}

.table-header {
  background-color: #eee;
}

.user-search, .user-emails {
  margin-bottom: 50px;
}

/* Invites page
	========================================================================== */
.example-email {
  font-size: 0.9em;
  padding: 2em;
  border: 1px solid #8a847d;
  border-radius: 4px;
  background-color: white;
}

.example-email p {
  line-height: 1.2em;
  margin-bottom: .5em;
}

/* Users page
	========================================================================== */
.all-emails-textarea {
  width: 120%;
  min-width: unset;
}

/* Veil page
	========================================================================== */
.veil h1 {
  line-height: 1em;
  font-size: 2em;
}

.veil h3 {
  line-height: 1.2em;
}

.form-field.veil {
  margin: 40px 0 20px;
}
