/* line 29, ../app/assets/less/mixins.less */
.fl-hbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 34, ../app/assets/less/mixins.less */
.fl-vbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 39, ../app/assets/less/mixins.less */
.fl-center {
  -ms-flex-line-pack: center;
      align-content: center;
}
/* line 484, ../app/assets/less/mixins.less */
.fl-dialog-close .close-button {
  position: absolute;
  left: 16px;
  top: 16px;
}
@keyframes pop {
  /* line 3, less/mixins/editor-item-tile.less */
  0% {
    opacity: 0;
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  /* line 7, less/mixins/editor-item-tile.less */
  60% {
    -ms-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  /* line 10, less/mixins/editor-item-tile.less */
  100% {
    opacity: 1;
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* line 20, less/mixins/editor-item-tile.less */
.editor-item-tile {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 324px;
  color: #333333;
  cursor: pointer;
  cursor: -webkit-grab;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 33, less/mixins/editor-item-tile.less */
.editor-item-tile > * {
  margin-bottom: 10px;
}
/* line 35, less/mixins/editor-item-tile.less */
.editor-item-tile > *:last-child {
  margin-bottom: 0;
}
/* line 39, less/mixins/editor-item-tile.less */
.editor-item-tile:after {
  content: "";
  display: block;
  border: 1px solid #ddd;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  background-color: white;
  opacity: 0;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: -1;
}
/* line 53, less/mixins/editor-item-tile.less */
.editor-item-tile:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  padding: 8px 10px;
  z-index: 11;
  background-color: #DF2625;
  content: attr(data-drag-tooltip);
  color: #fff;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -ms-transform: translateY(4px);
  transform: translateY(4px);
}
/* line 71, less/mixins/editor-item-tile.less */
.editor-item-tile:hover:after {
  animation: pop 0.6s ease-out;
  animation-delay: 0.02s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
/* line 77, less/mixins/editor-item-tile.less */
.editor-item-tile:hover:before {
  opacity: 1;
  transition: opacity 0.1s ease-out, transform 0.12s ease-out;
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  transition-delay: 0.65s;
}
/* line 88, less/mixins/editor-item-tile.less */
.editor-item-tile h3 {
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  word-break: break-word;
}
/* line 96, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline {
  font-size: 13px;
  line-height: 23px;
}
/* line 99, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline,
.editor-item-tile ul.inline a {
  color: #999;
}
/* line 102, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline a:hover {
  color: #0099cc;
}
/* line 105, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline li {
  display: inline-block;
  padding: 0 5px;
}
/* line 108, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline li:first-child {
  padding-left: 0;
}
/* line 111, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline li:last-child {
  padding-right: 0;
}
/* line 116, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline.dot-separator li {
  padding: 0;
}
/* line 118, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline.dot-separator li:last-child:after {
  display: none;
}
/* line 121, less/mixins/editor-item-tile.less */
.editor-item-tile ul.inline.dot-separator li:after {
  content: " · ";
  padding: 0 5px;
}
/* line 130, less/mixins/editor-item-tile.less */
.editor-item-tile .multi-flip {
  background: transparent url(/images/multi-flip.png) 0 0 no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 15px;
  width: 15px;
}
/* line 136, less/mixins/editor-item-tile.less */
.editor-item-tile .multi-flip:hover {
  background: transparent url(/images/multi-flip-remove.png) 0 0 no-repeat;
}
/* line 143, less/mixins/editor-item-tile.less */
.editor-item-tile-header {
  color: #999;
  font-size: 11px;
}
/* line 147, less/mixins/editor-item-tile.less */
.editor-item-tile-header > * {
  line-height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
/* line 152, less/mixins/editor-item-tile.less */
.editor-item-tile-header > *:last-child {
  margin-right: 0;
}
/* line 156, less/mixins/editor-item-tile.less */
.editor-item-tile-header .avatar {
  width: 18px;
  height: 18px;
}
/* line 160, less/mixins/editor-item-tile.less */
.editor-item-tile-header .circle-comment {
  height: 23px;
  width: 23px;
  margin-left: -6.5px;
  margin-right: -6.5px;
}
/* line 165, less/mixins/editor-item-tile.less */
.editor-item-tile-header .circle-comment path {
  stroke: transparent;
  fill: #BBBBBB;
}
/* line 172, less/mixins/editor-item-tile.less */
.editor-item-tile-spacer {
  display: block;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 177, less/mixins/editor-item-tile.less */
.editor-item-tile-excerpt {
  color: #666;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
}
/* line 185, less/mixins/editor-item-tile.less */
ul.editor-item-tile-commentary.inline:hover a {
  color: #0099cc;
}
/* line 188, less/mixins/editor-item-tile.less */
ul.editor-item-tile-commentary li {
  cursor: pointer;
}
/* line 190, less/mixins/editor-item-tile.less */
ul.editor-item-tile-commentary li.zero {
  display: none;
}
/* line 204, less/mixins/editor-item-tile.less */
.editor-item-tile .editor-item-tile-actions a:hover .cover-icon,
.editor-item-tile:hover .editor-item-tile-actions a:hover .cover-icon,
.editor-item-tile .editor-item-tile-actions a.active .cover-icon,
.editor-item-tile:hover .editor-item-tile-actions a.active .cover-icon,
.editor-item-tile .editor-item-tile-actions a:hover .editor-remove-x-icon,
.editor-item-tile:hover .editor-item-tile-actions a:hover .editor-remove-x-icon,
.editor-item-tile .editor-item-tile-actions a.active .editor-remove-x-icon,
.editor-item-tile:hover .editor-item-tile-actions a.active .editor-remove-x-icon {
  stroke-width: 1.0;
}
/* line 208, less/mixins/editor-item-tile.less */
.editor-item-tile .editor-item-tile-actions a:hover .cover-icon line,
.editor-item-tile:hover .editor-item-tile-actions a:hover .cover-icon line,
.editor-item-tile .editor-item-tile-actions a.active .cover-icon line,
.editor-item-tile:hover .editor-item-tile-actions a.active .cover-icon line,
.editor-item-tile .editor-item-tile-actions a:hover .editor-remove-x-icon line,
.editor-item-tile:hover .editor-item-tile-actions a:hover .editor-remove-x-icon line,
.editor-item-tile .editor-item-tile-actions a.active .editor-remove-x-icon line,
.editor-item-tile:hover .editor-item-tile-actions a.active .editor-remove-x-icon line,
.editor-item-tile .editor-item-tile-actions a:hover .cover-icon path,
.editor-item-tile:hover .editor-item-tile-actions a:hover .cover-icon path,
.editor-item-tile .editor-item-tile-actions a.active .cover-icon path,
.editor-item-tile:hover .editor-item-tile-actions a.active .cover-icon path,
.editor-item-tile .editor-item-tile-actions a:hover .editor-remove-x-icon path,
.editor-item-tile:hover .editor-item-tile-actions a:hover .editor-remove-x-icon path,
.editor-item-tile .editor-item-tile-actions a.active .editor-remove-x-icon path,
.editor-item-tile:hover .editor-item-tile-actions a.active .editor-remove-x-icon path,
.editor-item-tile .editor-item-tile-actions a:hover .cover-icon polygon,
.editor-item-tile:hover .editor-item-tile-actions a:hover .cover-icon polygon,
.editor-item-tile .editor-item-tile-actions a.active .cover-icon polygon,
.editor-item-tile:hover .editor-item-tile-actions a.active .cover-icon polygon,
.editor-item-tile .editor-item-tile-actions a:hover .editor-remove-x-icon polygon,
.editor-item-tile:hover .editor-item-tile-actions a:hover .editor-remove-x-icon polygon,
.editor-item-tile .editor-item-tile-actions a.active .editor-remove-x-icon polygon,
.editor-item-tile:hover .editor-item-tile-actions a.active .editor-remove-x-icon polygon,
.editor-item-tile .editor-item-tile-actions a:hover .cover-icon polyline,
.editor-item-tile:hover .editor-item-tile-actions a:hover .cover-icon polyline,
.editor-item-tile .editor-item-tile-actions a.active .cover-icon polyline,
.editor-item-tile:hover .editor-item-tile-actions a.active .cover-icon polyline,
.editor-item-tile .editor-item-tile-actions a:hover .editor-remove-x-icon polyline,
.editor-item-tile:hover .editor-item-tile-actions a:hover .editor-remove-x-icon polyline,
.editor-item-tile .editor-item-tile-actions a.active .editor-remove-x-icon polyline,
.editor-item-tile:hover .editor-item-tile-actions a.active .editor-remove-x-icon polyline,
.editor-item-tile .editor-item-tile-actions a:hover .cover-icon rect,
.editor-item-tile:hover .editor-item-tile-actions a:hover .cover-icon rect,
.editor-item-tile .editor-item-tile-actions a.active .cover-icon rect,
.editor-item-tile:hover .editor-item-tile-actions a.active .cover-icon rect,
.editor-item-tile .editor-item-tile-actions a:hover .editor-remove-x-icon rect,
.editor-item-tile:hover .editor-item-tile-actions a:hover .editor-remove-x-icon rect,
.editor-item-tile .editor-item-tile-actions a.active .editor-remove-x-icon rect,
.editor-item-tile:hover .editor-item-tile-actions a.active .editor-remove-x-icon rect {
  stroke: #09c;
}
/* line 216, less/mixins/editor-item-tile.less */
.editor-item-tile .editor-item-tile-actions a {
  cursor: pointer;
}
/* line 218, less/mixins/editor-item-tile.less */
.editor-item-tile .editor-item-tile-actions a .cover-icon,
.editor-item-tile .editor-item-tile-actions a .editor-remove-x-icon {
  stroke-width: 1.0;
}
/* line 222, less/mixins/editor-item-tile.less */
.editor-item-tile .editor-item-tile-actions a .cover-icon line,
.editor-item-tile .editor-item-tile-actions a .editor-remove-x-icon line,
.editor-item-tile .editor-item-tile-actions a .cover-icon path,
.editor-item-tile .editor-item-tile-actions a .editor-remove-x-icon path,
.editor-item-tile .editor-item-tile-actions a .cover-icon polygon,
.editor-item-tile .editor-item-tile-actions a .editor-remove-x-icon polygon,
.editor-item-tile .editor-item-tile-actions a .cover-icon polyline,
.editor-item-tile .editor-item-tile-actions a .editor-remove-x-icon polyline,
.editor-item-tile .editor-item-tile-actions a .cover-icon rect,
.editor-item-tile .editor-item-tile-actions a .editor-remove-x-icon rect {
  stroke: #999999;
}
/* line 228, less/mixins/editor-item-tile.less */
.editor-item-tile:hover .editor-item-tile-actions {
  opacity: 1;
}
/* line 230, less/mixins/editor-item-tile.less */
.editor-item-tile:hover .editor-item-tile-actions .cover-icon,
.editor-item-tile:hover .editor-item-tile-actions .editor-remove-x-icon {
  stroke-width: 1.0;
}
/* line 234, less/mixins/editor-item-tile.less */
.editor-item-tile:hover .editor-item-tile-actions .cover-icon line,
.editor-item-tile:hover .editor-item-tile-actions .editor-remove-x-icon line,
.editor-item-tile:hover .editor-item-tile-actions .cover-icon path,
.editor-item-tile:hover .editor-item-tile-actions .editor-remove-x-icon path,
.editor-item-tile:hover .editor-item-tile-actions .cover-icon polygon,
.editor-item-tile:hover .editor-item-tile-actions .editor-remove-x-icon polygon,
.editor-item-tile:hover .editor-item-tile-actions .cover-icon polyline,
.editor-item-tile:hover .editor-item-tile-actions .editor-remove-x-icon polyline,
.editor-item-tile:hover .editor-item-tile-actions .cover-icon rect,
.editor-item-tile:hover .editor-item-tile-actions .editor-remove-x-icon rect {
  stroke: #666666;
}
/* line 241, less/mixins/editor-item-tile.less */
.editor-item-tile-actions {
  text-align: right;
  margin-right: 20px;
  float: right;
  opacity: 0;
  transition: 0.15s ease-in-out opacity;
}
/* line 248, less/mixins/editor-item-tile.less */
.editor-item-tile-actions li {
  padding-left: 16px;
}
/* line 252, less/mixins/editor-item-tile.less */
.editor-item-tile-actions .tooltip:before {
  right: 1px;
}
/* line 255, less/mixins/editor-item-tile.less */
.editor-item-tile-actions .tooltip:after {
  right: -5px;
}
/* line 260, less/mixins/editor-item-tile.less */
.editor-item-tile-media-player-wrapper {
  position: relative;
}
/* line 264, less/mixins/editor-item-tile.less */
.editor-item-tile-body {
  position: relative;
}
/* line 2, less/mixins/editor-overview.less */
.editor-overview:hover .edit {
  visibility: visible;
}
/* line 5, less/mixins/editor-overview.less */
.editor-overview .edit {
  cursor: pointer;
  visibility: hidden;
  color: #09c;
}
/* line 10, less/mixins/editor-overview.less */
.editor-overview .header {
  display: -ms-flexbox;
  display: flex;
}
/* line 12, less/mixins/editor-overview.less */
.editor-overview .header h3 {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 16, less/mixins/editor-overview.less */
.editor-overview .modifiable-list {
  margin-left: -5px;
  margin-right: -5px;
}
/* line 19, less/mixins/editor-overview.less */
.editor-overview .modifiable-list.expanded > li:hover {
  background-color: inherit;
}
/* line 1, less/mixins/picker.less */
ul.picker {
  overflow-y: auto;
}
/* line 3, less/mixins/picker.less */
ul.picker li {
  cursor: pointer;
  display: inline-block;
  border-right: solid 1px transparent;
  border-bottom: solid 1px transparent;
  vertical-align: top;
  position: relative;
  color: white;
  font-size: 12px;
  overflow: hidden;
}
/* line 13, less/mixins/picker.less */
ul.picker li:nth-child(4n+0) {
  border-right: none;
}
/* line 17, less/mixins/picker.less */
ul.picker li .show-on-hover,
ul.picker li.selected .show-on-hover,
ul.picker li.selected:hover .show-on-hover {
  display: none;
}
/* line 21, less/mixins/picker.less */
ul.picker li:hover .show-on-hover {
  display: inherit;
}
/* line 24, less/mixins/picker.less */
ul.picker li.placeholder {
  cursor: default;
  background-color: rgba(0, 0, 0, 0.04);
}
/* line 28, less/mixins/picker.less */
ul.picker li .check-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -33px;
  margin-top: -33px;
}
/* line 4, less/mixins/picker-image.less */
ul.picker li:hover .cropped-image:after {
  opacity: 0.35;
}
/* line 8, less/mixins/picker-image.less */
ul.picker li.selected .cropped-image:after {
  background-color: #0099cc;
  opacity: 0.7;
}
/* line 12, less/mixins/picker-image.less */
ul.picker li .cropped-image:after {
  transition: 0.2s ease-in-out opacity;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.0;
  display: block;
  content: "";
}
/* line 24, less/mixins/picker-image.less */
ul.picker li .dimensions {
  position: absolute;
  left: 10px;
  top: 6px;
  font-size: 11px;
}
@font-face {
  font-family: "Fakt";
  font-weight: 300;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboard-Light-c517299a.woff) format("woff");
}
@font-face {
  font-family: "Fakt";
  font-weight: 400;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboard-Normal-0efe3aa3.woff) format("woff");
}
@font-face {
  font-family: "Fakt";
  font-weight: 500;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboard-Medium-ff30e15a.woff) format("woff");
}
@font-face {
  font-family: "Fakt";
  font-weight: 600;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboard-SemiBold-9c83663b.woff) format("woff");
}
@font-face {
  font-family: "FaktSmCondensed";
  font-weight: 400;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardSmCon-Normal-11d57af3.woff) format("woff");
}
@font-face {
  font-family: "FaktSmCondensed";
  font-weight: 500;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardSmCon-Medium-b8a21f2f.woff) format("woff");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 100;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-Thin.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 100;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-ThinItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 300;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-Light.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 300;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-LightItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 400;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-Normal.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 400;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-NormalItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 500;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-Medium.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 500;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-MediumItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 600;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-SemiBold.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 600;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-SemiBoldItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 700;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-Bold.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 700;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-BoldItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 900;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-Black.otf) format("opentype");
}
@font-face {
  font-family: "FaktCondensed";
  font-weight: 900;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardCon-BlackItalic.otf) format("opentype");
}
@font-face {
  font-family: "FaktSemiCondensed";
  font-weight: 300;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardSmCon-Light.woff) format("opentype");
}
@font-face {
  font-family: "FaktSemiCondensed";
  font-weight: 400;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardSmCon-Normal.woff) format("opentype");
}
@font-face {
  font-family: "FaktSemiCondensed";
  font-weight: 500;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardSmCon-Medium.woff) format("opentype");
}
@font-face {
  font-family: "FaktSemiCondensed";
  font-weight: 600;
  font-style: italic;
  src: url(https://s.flipboard.com/webapp/fonts/FaktFlipboardSmCon-SemiBold.woff) format("opentype");
}
@font-face {
  font-family: "Tiempos";
  font-weight: 400;
  src: url(https://s.flipboard.com/webapp/fonts/TiemposText-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Tiempos";
  font-weight: 500;
  src: url(https://s.flipboard.com/webapp/fonts/TiemposText-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Tiempos";
  font-weight: 600;
  src: url(https://s.flipboard.com/webapp/fonts/TiemposText-Semibold.otf) format("opentype");
}
@font-face {
  font-family: "Tiempos";
  font-weight: 700;
  src: url(https://s.flipboard.com/webapp/fonts/TiemposText-Bold.otf) format("opentype");
}
/* line 1, less/reset.less */
* {
  box-sizing: border-box;
}
/* line 5, less/reset.less */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font: 16px "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 15, less/reset.less */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
/* line 21, less/reset.less */
ul,
li {
  list-style-type: none;
}
/* line 25, less/reset.less */
a {
  color: inherit;
  text-decoration: none;
}
/* line 30, less/reset.less */
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
/* line 2, less/components/action-bar.less */
.action-bar .firstrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 8, less/components/action-bar.less */
.action-bar .firstrow.light {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 12, less/components/action-bar.less */
.action-bar .firstrow .topic-tags {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 17, less/components/action-bar.less */
.action-bar .firstrow .topic-tags .topic-tag {
  margin: 0;
}
/* line 23, less/components/action-bar.less */
.action-bar .firstrow .show-more-menu {
  bottom: 120%;
}
/* line 28, less/components/action-bar.less */
.action-bar .dot-separator {
  position: relative;
  text-align: center;
  padding-left: 2px;
  padding-right: 2px;
}
/* line 35, less/components/action-bar.less */
.action-bar .leave-comment {
  margin-left: 8px;
}
/* line 38, less/components/action-bar.less */
.action-bar .leave-comment:first-child {
  margin-left: 0;
}
/* line 44, less/components/action-bar.less */
.action-bar .show-more-menu {
  bottom: 150%;
}
/* line 48, less/components/action-bar.less */
.action-bar .leave-comment label {
  cursor: pointer;
}
/* line 52, less/components/action-bar.less */
.action-bar .more-actions {
  margin-left: 8px;
}
/* line 55, less/components/action-bar.less */
.action-bar .more-actions .dot-separator {
  padding-left: 0;
  padding-right: 0;
}
/* line 60, less/components/action-bar.less */
.action-bar .more-actions .disclosure-button {
  position: relative;
  top: -1px;
}
/* line 65, less/components/action-bar.less */
.light .action-bar .more-actions .disclosure-button path {
  stroke: #fff;
}
/* line 72, less/components/action-bar.less */
.action-bar .secondrow {
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 15px;
  margin-top: 5px;
  min-height: 15px;
}
/* line 79, less/components/action-bar.less */
.action-bar .secondrow .stats-text {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 83, less/components/action-bar.less */
.action-bar .secondrow .flip-action {
  text-align: left;
}
/* line 88, less/components/action-bar.less */
.action-bar .secondrow.align-left .stats-text {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 91, less/components/action-bar.less */
.action-bar .secondrow.align-left .flip-action {
  -ms-flex-positive: 100;
      flex-grow: 100;
  text-align: right;
}
/* line 98, less/components/action-bar.less */
.action-bar.light .secondrow {
  min-height: 0px;
}
/* line 102, less/components/action-bar.less */
.action-bar .comments {
  cursor: pointer;
  color: #999;
}
/* line 105, less/components/action-bar.less */
.action-bar .comments:hover {
  color: #09c;
}
/* line 108, less/components/action-bar.less */
.action-bar.light .comments {
  color: rgba(255, 255, 255, 0.95);
}
/* line 110, less/components/action-bar.less */
.action-bar.light .comments:hover {
  color: #ffffff;
}
/* line 1, less/components/ad-page.less */
.ad-page {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
/* line 6, less/components/ad-page.less */
.ad-page .ad {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 14, less/components/ad-page.less */
.ad-page .ad .ad-fancy-background,
.ad-page .ad .ad-fancy-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 21, less/components/ad-page.less */
.ad-page .ad .ad-image {
  position: relative;
  display: block;
}
/* line 1, less/components/add-favorite-view.less */
.add-favorite-view-container {
  z-index: 31;
}
/* line 4, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view {
  position: absolute;
  overflow: hidden;
  background-color: #fff;
  width: 460px;
  height: 80vh;
  top: 10vh;
  bottom: 10vh;
  left: 50%;
  margin-left: -230px;
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
/* line 23, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-enter {
  opacity: 0;
  -ms-transform: translateY(200px);
  transform: translateY(200px);
}
/* line 28, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-enter.add-enter-active {
  opacity: 1;
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  transition-duration: 300ms;
}
/* line 34, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-leave {
  opacity: 1;
  visibility: hidden;
}
/* line 39, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-leave.add-leave-active {
  opacity: 0.01;
}
/* line 44, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-favorites .search-passion {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 50, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-favorites .search-button {
  cursor: default;
}
/* line 53, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .add-favorites .all-favorites {
  height: calc(80vh - 26px);
  overflow-y: scroll;
}
/* line 61, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .recommended {
  padding-top: 15px;
  padding-left: 20px;
}
/* line 64, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .recommended .recommended-title {
  font-weight: 600;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 11px;
  color: #F52828;
}
/* line 72, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .favorites {
  margin-top: -5px;
}
/* line 74, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .favorites .favorite {
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
}
/* line 78, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .favorites .favorite .name {
  font-size: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* line 84, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .favorites .favorite .followers {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  color: #999;
  margin-top: -5px;
}
/* line 94, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .favorites .favorite--not-found {
  color: #999;
  cursor: default;
}
/* line 100, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .text-input {
  height: 26px;
  padding: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 26px;
  line-height: 1;
  font-weight: inherit;
  font-family: inherit;
  border: none;
  text-transform: inherit;
  margin-left: 20px;
}
/* line 111, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .text-input--intl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 117, less/components/add-favorite-view.less */
.add-favorite-view-container .add-favorite-view .close-button {
  position: absolute;
  left: 10px;
  top: 9px;
}
/* line 124, less/components/add-favorite-view.less */
.add-favorite-view-container .sub-message {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  padding: 16px;
}
/* line 133, less/components/add-favorite-view.less */
.add-favorite-view-container .sub-message img {
  cursor: none;
  -webkit-animation-name: rotateSpinner;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
/* line 148, less/components/add-favorite-view.less */
.add-favorite-view-container .sub-message.nodisplay {
  visibility: hidden;
  padding: 30px;
}
/* line 153, less/components/add-favorite-view.less */
.add-favorite-view-container .sub-message.filled {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  text-transform: none;
  background-color: #F52828;
}
@media (max-width: 767px) {
  /* line 161, less/components/add-favorite-view.less */
  .add-favorite-view-container {
    height: 100%;
    width: 100%;
  }
  /* line 165, less/components/add-favorite-view.less */
  .add-favorite-view-container .add-favorite-view {
    height: 100%;
    width: 100%;
    top: auto;
    bottom: auto;
    left: auto;
    margin: 0;
  }
  /* line 174, less/components/add-favorite-view.less */
  .add-favorite-view-container .add-favorites {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    height: 100%;
  }
  /* line 179, less/components/add-favorite-view.less */
  .add-favorite-view-container .add-favorites .all-favorites {
    -ms-flex: 1;
        flex: 1;
  }
}
/* line 3, less/components/album.less */
.album .inner-container {
  position: relative;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
/* line 10, less/components/album.less */
.album .curator-actions-album,
.album .flip-hint {
  position: absolute;
  top: 8px;
  right: 8px;
}
/* line 1, less/components/app-footer.less */
.application-footer-container {
  width: 55%;
  background: rgba(0, 0, 0, 0);
  margin: 20px auto 20px;
  z-index: 1;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 8, less/components/app-footer.less */
.application-footer-container ul {
  width: 100%;
  margin: 0px auto;
}
/* line 12, less/components/app-footer.less */
.application-footer-container .application-footer-link {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
}
@keyframes fade-in {
  /* line 2, less/components/article.less */
  0% {
    opacity: 0;
  }
  /* line 5, less/components/article.less */
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-slide-up {
  /* line 15, less/components/article.less */
  0% {
    opacity: 0;
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  /* line 19, less/components/article.less */
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes figure-enter {
  /* line 30, less/components/article.less */
  0% {
    opacity: 0;
    -ms-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  /* line 34, less/components/article.less */
  100% {
    opacity: 1;
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* line 44, less/components/article.less */
article {
  text-align: center;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
/* line 57, less/components/article.less */
article .nameplate {
  border-bottom: 1px solid #ddd;
}
/* line 60, less/components/article.less */
article .nameplate img {
  display: inline-block;
  margin: 30px auto;
  width: auto;
  height: 35px;
  max-width: 640px;
}
@media (max-width: 640px) {
  /* line 67, less/components/article.less */
  article .nameplate img {
    max-width: 90%;
  }
}
/* line 72, less/components/article.less */
article .nameplate.text {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 30px 0;
  color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
}
@media (max-width: 1064px) {
  /* line 73, less/components/article.less */
  article .nameplate.text {
    padding: 30px 40px 20px 40px;
  }
}
/* line 86, less/components/article.less */
article .main-image {
  text-align: left;
}
/* line 90, less/components/article.less */
article .cropped-image {
  width: 100%;
}
/* line 93, less/components/article.less */
article .cropped-image img {
  width: 100%;
  height: auto;
}
/* line 100, less/components/article.less */
article .headline h1 {
  font-size: 34px;
  line-height: 45px;
  font-weight: 600;
  margin: 10px 0 20px;
}
/* line 108, less/components/article.less */
article .metadata {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
/* line 114, less/components/article.less */
article .separator {
  display: inline-block;
  margin: 0 5px;
}
/* line 127, less/components/article.less */
article .body {
  text-align: left;
  padding-bottom: 60px;
}
/* line 131, less/components/article.less */
article .body a {
  text-decoration: underline;
}
/* line 135, less/components/article.less */
article .body li {
  list-style-type: square;
  margin-left: 30px;
}
/* line 140, less/components/article.less */
article .body em,
article .body i {
  font-style: italic;
  font-weight: normal;
}
/* line 145, less/components/article.less */
article .body h1,
article .body h2,
article .body h3,
article .body h4,
article .body h5,
article .body h6 {
  font-size: 100%;
  font-weight: 400;
}
/* line 150, less/components/article.less */
article .body .subtitle,
article .body .intro,
article .body li {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85em;
  color: #000;
}
/* line 154, less/components/article.less */
article .body .subtitle,
article .body .intro {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 166, less/components/article.less */
article .body .heading {
  margin-top: 90px;
  margin-bottom: 25px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
/* line 177, less/components/article.less */
article .body .heading a {
  text-decoration: none;
}
/* line 184, less/components/article.less */
article .body .caption .heading {
  margin-top: 25px;
  margin-bottom: 25px;
  color: #000;
}
/* line 190, less/components/article.less */
article .body .caption.lengthy {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85em;
  color: #000;
}
/* line 197, less/components/article.less */
article .body .featured-video img {
  max-width: 100%;
  height: auto;
}
/* line 202, less/components/article.less */
article .body .featured-video .caption {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85em;
  color: #000;
}
/* line 209, less/components/article.less */
article .iframe-placeholder {
  color: #09c;
  display: block;
  text-align: center;
  line-height: 300px;
  height: 300px;
  width: 300px;
  margin: 0 auto;
  margin-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.03);
}
/* line 219, less/components/article.less */
article .iframe-placeholder:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 222, less/components/article.less */
article .iframe-placeholder.media {
  color: transparent;
  position: relative;
}
/* line 225, less/components/article.less */
article .iframe-placeholder.media:hover:after {
  border-left-color: rgba(0, 153, 204, 0.5);
}
/* line 228, less/components/article.less */
article .iframe-placeholder.media:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-left: 60px solid rgba(0, 0, 0, 0.1);
  border-bottom: 30px solid transparent;
}
/* line 245, less/components/article.less */
article p {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85em;
  color: #000;
}
/* line 249, less/components/article.less */
article p,
article .video,
article ul {
  margin-bottom: 25px;
}
@media (max-width: 1064px) {
  /* line 254, less/components/article.less */
  article .social-actions {
    display: none;
  }
  /* line 257, less/components/article.less */
  article .social-actions .text-label {
    display: none;
  }
}
/* line 263, less/components/article.less */
article .detail-footer {
  margin-top: 0;
}
/* line 285, less/components/article.less */
article figure {
  position: relative;
  margin: 0 auto;
  margin-bottom: 25px;
}
/* line 290, less/components/article.less */
article figure .cropped-image {
  margin: 0 auto;
}
/* line 294, less/components/article.less */
article figure img {
  width: 100%;
  height: auto;
}
/* line 299, less/components/article.less */
article figure.video {
  height: 400px;
  width: 100%;
}
/* line 305, less/components/article.less */
article figcaption {
  padding-bottom: 8px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.5);
}
/* line 314, less/components/article.less */
article .inline figure figcaption {
  text-align: center;
}
/* line 321, less/components/article.less */
article .extended-right,
article .extended-left {
  clear: both;
}
/* line 324, less/components/article.less */
article .extended-right figure,
article .extended-left figure {
  margin-bottom: 0;
}
/* line 330, less/components/article.less */
article .extended-right figure {
  float: right;
  max-width: 380px;
  margin-right: -100px;
  margin-left: 25px;
}
@media (max-width: 1064px) {
  /* line 336, less/components/article.less */
  article .extended-right figure {
    float: none;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
/* line 342, less/components/article.less */
article .extended-left figure {
  float: left;
  max-width: 380px;
  margin-left: -100px;
  margin-right: 25px;
}
@media (max-width: 1064px) {
  /* line 348, less/components/article.less */
  article .extended-left figure {
    float: none;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
/* line 354, less/components/article.less */
article .bleed-viewport {
  clear: both;
  max-width: 100%;
}
/* line 358, less/components/article.less */
article .bleed-viewport figcaption {
  padding: 0px 10px;
}
/* line 361, less/components/article.less */
article .bleed-viewport figcaption.lengthy {
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 1064px) {
  /* line 369, less/components/article.less */
  article .bleed-viewport.extend-caption figcaption {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 960px;
    width: 960px;
    padding-left: 0;
  }
  /* line 377, less/components/article.less */
  article .bleed-viewport.extend-caption figcaption .caption {
    float: left;
    width: 144px;
    margin-top: 20px;
  }
}
/* line 386, less/components/article.less */
article .bleed-content {
  clear: both;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 1064px) {
  /* line 393, less/components/article.less */
  article .bleed-content.extend-caption figcaption {
    float: left;
    width: 144px;
    margin-top: 20px;
  }
}
/* line 399, less/components/article.less */
article .bleed-content figcaption {
  padding: 0px 10px;
}
/* line 402, less/components/article.less */
article .bleed-content figcaption.lengthy {
  max-width: 640px;
  margin: 0 auto;
}
/* line 440, less/components/article.less */
article blockquote {
  padding-left: 40px;
  margin-left: 0;
  border-left: solid 1px rgba(0, 0, 0, 0.13);
}
/* line 444, less/components/article.less */
article blockquote,
article blockquote p {
  color: rgba(0, 0, 0, 0.55);
}
/* line 447, less/components/article.less */
article blockquote .veritable-pullquote {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.6);
  float: none;
  width: 100%;
  margin: 40px auto;
  margin-top: 45px;
}
/* line 428, less/components/article.less */
article blockquote .veritable-pullquote:before {
  content: "“";
  display: block;
  font-size: 80px;
  margin-top: 10px;
  margin-bottom: -14px;
  margin-left: -5px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 700;
}
/* line 453, less/components/article.less */
article blockquote .veritable-pullquote,
article .transitionable > .pullquote {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.6);
  float: none;
  width: 100%;
  margin: 40px auto;
  margin-top: 45px;
}
/* line 428, less/components/article.less */
article blockquote .veritable-pullquote:before,
article .transitionable > .pullquote:before {
  content: "“";
  display: block;
  font-size: 80px;
  margin-top: 10px;
  margin-bottom: -14px;
  margin-left: -5px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 700;
}
/* line 458, less/components/article.less */
article .extended-left blockquote .veritable-pullquote {
  float: left;
  width: 280px;
  margin: 20px 20px 20px -160px;
  font-size: 28px;
  line-height: 36px;
}
@media (max-width: 1064px) {
  /* line 465, less/components/article.less */
  article .extended-left blockquote .veritable-pullquote {
    float: none;
    width: 100%;
    margin: 40px auto;
    margin-top: 45px;
  }
}
/* line 470, less/components/article.less */
article .extended-right blockquote .veritable-pullquote {
  float: right;
  width: 280px;
  margin: 20px -160px 20px 20px;
  font-size: 28px;
  line-height: 36px;
}
@media (max-width: 1064px) {
  /* line 477, less/components/article.less */
  article .extended-right blockquote .veritable-pullquote {
    float: none;
    width: 100%;
    margin: 40px auto;
    margin-top: 45px;
  }
}
/* line 485, less/components/article.less */
article.standard {
  max-width: 800px;
}
/* line 488, less/components/article.less */
article.standard .content {
  padding: 0 80px;
}
@media (max-width: 1064px) {
  /* line 491, less/components/article.less */
  article.standard .content {
    padding: 0 40px;
  }
}
/* line 496, less/components/article.less */
article.standard .main-image {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 30px;
}
/* line 502, less/components/article.less */
article.standard .headline {
  padding: 15px 0;
}
/* line 506, less/components/article.less */
article.standard .metadata {
  margin-bottom: 15px;
}
/* line 511, less/components/article.less */
article.standard .body img {
  width: 100%;
  height: auto;
}
/* line 517, less/components/article.less */
article.standard .detail-footer {
  max-width: 640px;
}
/* line 592, less/components/article.less */
article.full-bleed .article-cover {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  color: #fff;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 603, less/components/article.less */
article.full-bleed .main-image {
  height: 100%;
}
/* line 606, less/components/article.less */
article.full-bleed .main-image .main-gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 617, less/components/article.less */
article.full-bleed .main-image .main-gradient,
article.full-bleed .main-image .caption-overlay {
  background: rgba(0, 0, 0, 0.5);
}
/* line 621, less/components/article.less */
article.full-bleed .main-image .cropped-image,
article.full-bleed .main-image img {
  height: 100%;
  width: auto;
}
/* line 626, less/components/article.less */
article.full-bleed .main-image .caption {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 500px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  -ms-transform: translateZ(0) translateX(-50%) translateY(-50%);
  transform: translateZ(0) translateX(-50%) translateY(-50%);
}
/* line 631, less/components/article.less */
article.full-bleed .nameplate {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 10;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 586, less/components/article.less */
article.full-bleed .nameplate.text {
  color: #fff;
}
/* line 635, less/components/article.less */
article.full-bleed .headline {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  padding-bottom: 30px;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 535, less/components/article.less */
article.full-bleed .headline h1,
article.full-bleed .headline .metadata {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1064px) {
  /* line 540, less/components/article.less */
  article.full-bleed .headline h1,
  article.full-bleed .headline .metadata {
    max-width: 100%;
    padding: 0 80px;
  }
}
/* line 546, less/components/article.less */
article.full-bleed .headline h1 {
  font-size: 54px;
  line-height: 65px;
  margin-bottom: 40px;
}
@media (max-width: 1064px) {
  /* line 551, less/components/article.less */
  article.full-bleed .headline h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 640px) {
  /* line 556, less/components/article.less */
  article.full-bleed .headline h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
/* line 639, less/components/article.less */
article.full-bleed .social-actions {
  position: absolute;
  z-index: 11;
  bottom: 20px;
  right: 20px;
}
/* line 645, less/components/article.less */
article.full-bleed .social-actions .social-actions {
  position: relative;
  right: auto;
}
/* line 651, less/components/article.less */
article.full-bleed .body,
article.full-bleed .social-actions {
  padding-top: 30px;
}
/* line 655, less/components/article.less */
article.full-bleed .full-bleed-attribution,
article.full-bleed .paragraph,
article.full-bleed .detail-footer {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1064px) {
  /* line 659, less/components/article.less */
  article.full-bleed .full-bleed-attribution,
  article.full-bleed .paragraph,
  article.full-bleed .detail-footer {
    width: 100%;
    padding: 0 40px;
  }
}
/* line 664, less/components/article.less */
article.full-bleed .top-attribution {
  background-color: #f6f6f6;
  border-top: solid 30px white;
  margin-bottom: 10px;
  padding: 30px 60px;
  display: block;
}
/* line 671, less/components/article.less */
article.full-bleed .top-attribution .avatar {
  margin: 0 auto 10px auto;
}
/* line 674, less/components/article.less */
article.full-bleed .top-attribution .social-commentary {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: black;
}
/* line 680, less/components/article.less */
article.full-bleed .top-attribution .external-social-actions {
  display: none;
}
/* line 686, less/components/article.less */
article.full-bleed .transitionable {
  opacity: 0;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.245, 0.845);
  animation-fill-mode: forwards;
}
/* line 699, less/components/article.less */
article .gallery-pages {
  height: 100%;
}
/* line 702, less/components/article.less */
article .gallery-pages .nameplate {
  border-bottom: none;
}
/* line 707, less/components/article.less */
article .gallery-page {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #fff;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  transition-property: opacity;
  transition-duration: 0.3s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 720, less/components/article.less */
article .gallery-page .nameplate {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 10;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 586, less/components/article.less */
article .gallery-page .nameplate.text {
  color: #fff;
}
/* line 726, less/components/article.less */
article .gallery-subtitle .subtitle,
article .gallery-subtitle p {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  max-width: 580px;
  margin: 0 auto;
}
/* line 736, less/components/article.less */
article .gallery-figure {
  text-align: left;
  margin-bottom: 0;
}
/* line 740, less/components/article.less */
article .gallery-figure figcaption {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}
/* line 747, less/components/article.less */
article .gallery-figure figcaption em,
article .gallery-figure figcaption i {
  font-style: italic;
}
/* line 751, less/components/article.less */
article .gallery-figure figcaption .heading {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}
/* line 759, less/components/article.less */
article .gallery-figure .credit,
article .gallery-figure .photo-credit,
article .gallery-figure .endcaption {
  font-size: 10px;
  line-height: 16px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
/* line 772, less/components/article.less */
article .gallery-cover .headline {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  padding-bottom: 30px;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10;
  color: #fff;
}
/* line 535, less/components/article.less */
article .gallery-cover .headline h1,
article .gallery-cover .headline .metadata {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1064px) {
  /* line 540, less/components/article.less */
  article .gallery-cover .headline h1,
  article .gallery-cover .headline .metadata {
    max-width: 100%;
    padding: 0 80px;
  }
}
/* line 546, less/components/article.less */
article .gallery-cover .headline h1 {
  font-size: 54px;
  line-height: 65px;
  margin-bottom: 40px;
}
@media (max-width: 1064px) {
  /* line 551, less/components/article.less */
  article .gallery-cover .headline h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 640px) {
  /* line 556, less/components/article.less */
  article .gallery-cover .headline h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 640px) {
  /* line 777, less/components/article.less */
  article .gallery-cover .headline {
    top: 25%;
  }
}
/* line 782, less/components/article.less */
article .gallery-cover .gallery-figure {
  position: relative;
  z-index: 9;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 788, less/components/article.less */
article .gallery-cover .gallery-figure.full-bleed .caption {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 500px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  -ms-transform: translateZ(0) translateX(-50%) translateY(-50%);
  transform: translateZ(0) translateX(-50%) translateY(-50%);
}
/* line 792, less/components/article.less */
article .gallery-cover .social-actions {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  right: 20px;
}
/* line 798, less/components/article.less */
article .gallery-cover .social-actions .social-actions {
  position: relative;
  right: auto;
}
/* line 804, less/components/article.less */
article .gallery-cover .overlay,
article .gallery-cover .underlay {
  position: fixed;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 811, less/components/article.less */
article .gallery-cover .underlay {
  z-index: 1;
  background: #000;
}
/* line 819, less/components/article.less */
article .caption-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
}
/* line 831, less/components/article.less */
article .gallery-figure.full-bleed .gallery-image {
  position: relative;
  z-index: 2;
}
/* line 836, less/components/article.less */
article .gallery-figure.full-bleed figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* line 844, less/components/article.less */
article .gallery-figure.full-bleed figcaption {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 850, less/components/article.less */
article .gallery-figure.full-bleed .caption {
  position: absolute;
  z-index: 4;
  max-width: 320px;
  left: 60px;
  text-align: left;
  color: #fff;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 861, less/components/article.less */
article .gallery-figure.full-bleed .credit,
article .gallery-figure.full-bleed .photo-credit {
  color: #fff;
}
/* line 868, less/components/article.less */
article .gallery-figure.gallery-left,
article .gallery-figure.gallery-right {
  padding: 30px 60px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media (max-width: 640px) {
  /* line 876, less/components/article.less */
  article .gallery-figure.gallery-left,
  article .gallery-figure.gallery-right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* line 880, less/components/article.less */
article .gallery-figure.gallery-left .gallery-image,
article .gallery-figure.gallery-right .gallery-image {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
/* line 884, less/components/article.less */
article .gallery-figure.gallery-left figcaption,
article .gallery-figure.gallery-right figcaption {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 30px;
  width: 320px;
  text-align: left;
}
/* line 896, less/components/article.less */
article .gallery-figure.gallery-right .gallery-image {
  -ms-flex-order: 2;
      order: 2;
}
/* line 900, less/components/article.less */
article .gallery-figure.gallery-right figcaption {
  -ms-flex-order: 1;
      order: 1;
}
/* line 908, less/components/article.less */
article .scrubber {
  position: fixed;
  z-index: 4;
  right: 20px;
  top: 50%;
  -ms-transform: translateZ(0) translateY(-50%);
  transform: translateZ(0) translateY(-50%);
}
/* line 915, less/components/article.less */
article .scrubber .dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  margin-bottom: 7px;
  opacity: 0.8;
}
/* line 924, less/components/article.less */
article .scrubber .dot:last-child {
  margin-bottom: 0;
}
/* line 928, less/components/article.less */
article .scrubber .dot.selected {
  background: #a7aaa9;
}
/* line 938, less/components/article.less */
article .enter .main-gradient,
article .enter .nameplate,
article .enter .overlay,
article .enter .underlay,
article .enter .headline {
  animation: fade-in 0.4s ease-out;
}
/* line 952, less/components/article.less */
article .cnnStoryHighlights {
  float: left;
  width: 224px;
  font-size: 15px;
  margin-right: 15px;
  margin-top: 6px;
  background: #eee;
  padding: 8px 10px;
}
@media (max-width: 640px) {
  /* line 961, less/components/article.less */
  article .cnnStoryHighlights {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* line 967, less/components/article.less */
article .cnnStoryHighlights li {
  list-style-type: disc;
  margin-left: 14px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
}
/* line 974, less/components/article.less */
article .cnnStoryHighlights li:first-child {
  list-style-type: none;
  margin-left: 0;
}
/* line 979, less/components/article.less */
article .cnnStoryHighlights li:last-child {
  margin-bottom: 0;
}
/* line 985, less/components/article.less */
article .cnnEditorsNote {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
  color: rgba(0, 0, 0, 0.75);
}
/* line 993, less/components/article.less */
article .cnnEditorsNote em {
  font-style: normal;
}
/* line 1001, less/components/article.less */
article .huluVideo iframe {
  border: 0;
  width: 100%;
  height: 400px;
}
/* line 1011, less/components/article.less */
article .debug-links {
  padding: 25px 0;
  text-align: center;
  clear: both;
}
/* line 1016, less/components/article.less */
article .debug-links .external-link {
  margin: 0 5px;
}
/* line 1024, less/components/article.less */
.rss article .paragraph {
  margin-bottom: 20px;
}
/* line 1028, less/components/article.less */
.rss article .paragraph .img {
  text-align: center;
}
/* line 1032, less/components/article.less */
.rss article .paragraph img {
  width: auto;
  max-width: 100%;
  height: auto;
}
/* line 1, less/components/audio-background.less */
.audio-background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
/* line 8, less/components/audio-background.less */
.audio-background .album-art,
.audio-background .blurred {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 15, less/components/audio-background.less */
.audio-background .album-art {
  background-size: auto 75%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}
/* line 21, less/components/audio-background.less */
.audio-background .blurred {
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(50px);
  -webkit-filter: blur(50px);
}
/* line 1, less/components/audio-player.less */
.audio-player {
  background-color: #fafafa;
}
/* line 4, less/components/audio-player.less */
.audio-player audio {
  width: 100%;
}
/* line 8, less/components/audio-player.less */
.audio-player .audio-image-wrapper {
  width: 100px;
  min-width: 80px;
}
/* line 13, less/components/audio-player.less */
.audio-player .audio-label-wrapper {
  padding: 15px;
  display: -ms-flexbox;
  display: flex;
}
/* line 17, less/components/audio-player.less */
.audio-player .audio-label-wrapper .audio-caption {
  padding-left: 15px;
}
/* line 20, less/components/audio-player.less */
.audio-player .audio-label-wrapper .audio-caption h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #999;
}
/* line 26, less/components/audio-player.less */
.audio-player .audio-label-wrapper .audio-caption h5 {
  font-size: 1em;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  /* line 38, less/components/audio-player.less */
  .audio-player .audio-label-wrapper .audio-caption h4 {
    font-size: 1em;
  }
  /* line 42, less/components/audio-player.less */
  .audio-player .audio-label-wrapper .audio-caption h5 {
    font-size: 0.8em;
  }
}
/* line 1, less/components/auth/auth.less */
#auth-view {
  background-color: white;
  z-index: 2;
  position: relative;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
/* line 9, less/components/auth/auth.less */
.auth-splash {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 18, less/components/auth/auth.less */
.auth-view__title {
  color: #262626;
}
/* line 22, less/components/auth/auth.less */
.auth-view__description {
  color: #979797;
  font-size: 14px;
  margin-bottom: 16px;
}
/* line 27, less/components/auth/auth.less */
.auth-view__description a {
  text-decoration: underline;
}
/* line 32, less/components/auth/auth.less */
.auth__input-wrapper {
  margin-bottom: 8px;
}
/* line 36, less/components/auth/auth.less */
.auth__text-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 8px;
  border: 1px solid #D8D8D8;
}
/* line 44, less/components/auth/auth.less */
.auth__or-message {
  font-size: 14px;
  margin-bottom: 20px;
  color: #262626;
}
/* line 50, less/components/auth/auth.less */
.auth__alt-actions {
  margin-bottom: 16px;
  font-size: 12px;
  color: #979797;
  display: -ms-flexbox;
  display: flex;
}
/* line 56, less/components/auth/auth.less */
.auth__alt-actions div {
  -ms-flex: 1;
      flex: 1;
}
/* line 58, less/components/auth/auth.less */
.auth__alt-actions div:first-child {
  text-align: left;
}
/* line 62, less/components/auth/auth.less */
.auth__alt-actions div:last-child {
  text-align: right;
}
/* line 66, less/components/auth/auth.less */
.auth__alt-actions div span {
  cursor: pointer;
}
/* line 73, less/components/auth/auth.less */
.auth__submit-button {
  margin-bottom: 24px;
}
/* line 77, less/components/auth/auth.less */
.auth__alt-wrapper {
  font-size: 14px;
  color: #979797;
  margin: 16px 0;
}
/* line 83, less/components/auth/auth.less */
.auth__auth-link {
  font-weight: 600;
  color: #262626;
  cursor: pointer;
}
/* line 89, less/components/auth/auth.less */
.auth__error-message {
  font-size: 14px;
  color: #EA0B0B;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 12px;
}
/* line 96, less/components/auth/auth.less */
.auth__error-message a {
  text-decoration: underline;
}
/* line 101, less/components/auth/auth.less */
.auth-sign-up__password-helpers {
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: black;
}
/* line 107, less/components/auth/auth.less */
.auth__password-visibility-toggle-button {
  text-align: right;
  cursor: pointer;
}
/* line 112, less/components/auth/auth.less */
.auth-signup__publisher-button {
  font-weight: 600;
  color: #262626;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 12px;
}
/* line 120, less/components/auth/auth.less */
.auth__policy-text {
  color: #262626;
  font-size: 14px;
  padding: 0 12px;
  margin-bottom: 8px;
}
/* line 126, less/components/auth/auth.less */
.auth__policy-text a {
  text-decoration: underline;
}
/* line 132, less/components/auth/auth.less */
.auth-publisher-signup .avatar {
  margin: 12px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 70px;
  height: 70px;
}
/* line 140, less/components/auth/auth.less */
.auth-publisher-signup .avatar-editable .edit-icon {
  bottom: 8px;
  right: -16px;
}
@media (max-width: 767px) {
  /* line 147, less/components/auth/auth.less */
  #auth-view {
    border-radius: none;
    box-shadow: none;
  }
}
/* line 1, less/components/auth/social-login.less */
.social-login {
  margin-bottom: 20px;
}
/* line 5, less/components/auth/social-login.less */
.social-login-button {
  color: white;
  width: 100%;
  border: none;
  margin-bottom: 8px;
  font-size: 16px;
}
/* line 3, less/components/auth/social-login-button.less */
.social-login-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 8, less/components/auth/social-login-button.less */
.social-login-button__logo-wrapper {
  width: 30px;
  height: 30px;
}
/* line 13, less/components/auth/social-login-button.less */
.social-login-button__label {
  -ms-flex: 1;
      flex: 1;
  text-align: center;
  margin-right: 30px;
}
/* line 1, less/components/auth/super-user-badge.less */
.super-user-badge {
  background-color: #FDF8E5;
  border-top: 1px solid #ddd;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 10px 15px;
  z-index: 20;
  text-align: right;
}
/* line 11, less/components/auth/super-user-badge.less */
.super-user-badge .super-use-badge__return-link {
  margin-left: 20px;
}
/* line 6, less/components/auth/index.less */
#auth-view {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 24px;
}
/* line 12, less/components/auth/index.less */
#auth-view .auth-view__title {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
/* line 2, less/components/avatar-editable.less */
.avatar-editable input[type=file] {
  display: none;
}
/* line 5, less/components/avatar-editable.less */
.avatar-editable label {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
/* line 10, less/components/avatar-editable.less */
.avatar-editable .edit-icon {
  position: absolute;
  margin-left: -9px;
  bottom: 4px;
  right: 0;
  display: none;
}
/* line 17, less/components/avatar-editable.less */
.avatar-editable:hover .edit-icon {
  display: block;
}
/* line 1, less/components/avatar.less */
.avatar {
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  width: 30px;
  height: 30px;
}
/* line 9, less/components/avatar.less */
.avatar-wrapper--badge {
  border: 2px solid #F52828;
  border-radius: 50%;
  padding: 2px;
}
/* line 16, less/components/avatar.less */
.default-avatar text {
  fill: #fff;
  font-weight: 600;
}
/* line 25, less/components/avatar.less */
.publisher-avatar-uploader .avatar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 82px;
  height: 82px;
}
/* line 32, less/components/avatar.less */
.publisher-avatar-uploader .avatar-editable .edit-icon {
  bottom: 8px;
  right: -16px;
}
/* line 38, less/components/avatar.less */
.default-uploader-avatar {
  background-color: #9B9B9B;
}
/* line 42, less/components/avatar.less */
.avatar-uploader-hint {
  text-align: center;
  font-size: 12px;
  color: #9B9B9B;
  margin: 12px 0 40px;
}
/* line 2, less/components/back-button.less */
.back-button {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  height: 24px;
}
/* line 6, less/components/back-button.less */
.back-button .nav-arrow {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 7px;
  height: 24px;
}
/* line 11, less/components/back-button.less */
.back-button .button-text {
  margin-left: .5em;
}
/* line 1, less/components/background-image.less */
.background-image-component {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 10, less/components/background-image.less */
.background-image-component .image-container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
/* line 18, less/components/background-image.less */
.background-image-component .background-image-component-overlay,
.background-image-component .background-image-component-gradient {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
}
/* line 26, less/components/background-image.less */
.background-image-component .background-image-component-gradient {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 100%);
}
/* line 29, less/components/background-image.less */
.background-image-component .background-image {
  position: absolute;
}
/* line 1, less/components/browser-button.less */
.browser-button {
  display: block;
  background-color: #F52828;
  color: #FFF;
  font-size: 30px;
  font-weight: 500;
  padding: 16px;
  width: 160px;
  border-radius: 3px;
  text-align: center;
}
/* line 1, less/components/button.less */
.button {
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  padding: 0 20px;
  border: 1px solid #444;
  color: #000;
  background: #fff;
  font-size: 14px;
  line-height: 28px;
  height: 30px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 16, less/components/button.less */
.button.button-red {
  background: #F52828;
  color: #fff;
  border: none;
}
/* line 21, less/components/button.less */
.button.button-red:hover {
  background: #242424;
}
/* line 25, less/components/button.less */
.button.button-red.button-no-hover:hover {
  background: #F52828;
}
/* line 30, less/components/button.less */
.button.button-black {
  color: #fff;
  background: black;
  border: none;
}
/* line 35, less/components/button.less */
.button.button-black:hover {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}
/* line 41, less/components/button.less */
.button.button-black.button-no-hover:hover {
  color: #fff;
  background: black;
  border: none;
}
/* line 48, less/components/button.less */
.button.button-alternative {
  border: 1px solid #F52828;
  color: #F52828;
  background-color: #fff;
}
/* line 53, less/components/button.less */
.button.button-alternative:hover {
  border-color: black;
  background-color: #fff;
  color: black;
}
/* line 60, less/components/button.less */
.button.button-rounded {
  border-radius: 4px;
}
/* line 64, less/components/button.less */
.button:hover {
  color: #fff;
  background: #000;
}
/* line 69, less/components/button.less */
.button[disabled] {
  opacity: 0.3;
  pointer-events: none;
}
/* line 74, less/components/button.less */
.button.stroked {
  color: #fff;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  border: 1px solid #fff;
  margin-left: 15px;
  background-color: rgba(255, 255, 255, 0.2);
}
/* line 82, less/components/button.less */
.button.stroked:hover {
  background-color: #fff;
  color: #000;
}
/* line 88, less/components/button.less */
.button.accept-invite {
  color: #fff;
  height: 50px;
  line-height: 48px;
  background-color: #09c;
  border: none;
  padding: 0 30px;
}
/* line 97, less/components/button.less */
.button.bold {
  font-size: 11px;
  text-transform: uppercase;
}
/* line 101, less/components/button.less */
.button.large {
  line-height: 38px;
  height: 40px;
}
/* line 107, less/components/button.less */
.button .secondary-text {
  opacity: .75;
  margin-left: .5em;
  font-size: 12px;
}
@media (max-width: 1280px) {
  /* line 111, less/components/button.less */
  .button .secondary-text {
    font-size: 11px;
  }
}
/* line 1, less/components/byline-attribution.less */
.byline-attribution {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 9, less/components/byline-attribution.less */
.light .byline-attribution {
  color: #fff;
}
/* line 14, less/components/byline-attribution.less */
.caption-layout {
  cursor: pointer;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #999;
  line-height: 0;
  display: block;
  width: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 29, less/components/byline-attribution.less */
.caption-blank {
  margin-bottom: 20px;
}
/* line 1, less/components/close-button.less */
.close-button {
  position: fixed;
  left: 25px;
  top: 25px;
  z-index: 29;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@media (max-width: 1064px) {
  /* line 11, less/components/close-button.less */
  .close-button {
    left: 8px;
    top: 8px;
  }
}
/* line 2, less/components/collection-pagination.less */
.collection-pagination .controls {
  text-align: center;
}
/* line 5, less/components/collection-pagination.less */
.collection-pagination .control {
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 1px;
  border-bottom: 1px solid #777;
  font-weight: 600;
  font-size: 10px;
}
/* line 3, less/components/comment-mentions.less */
.comments .content .user-vote-state {
  color: #000;
}
/* line 4, less/components/comment-mentions.less */
.comments .content .user-vote-state:before {
  content: ' \00B7\00a0';
}
/* line 10, less/components/comment-mentions.less */
.comments .content .reply {
  cursor: pointer;
}
/* line 12, less/components/comment-mentions.less */
.comments .content .reply:before {
  content: ' \00B7';
}
/* line 18, less/components/comment-mentions.less */
.comments .hidden {
  margin-top: 35px;
  font-size: 14px;
  color: #999;
}
/* line 23, less/components/comment-mentions.less */
.comments .hidden .hidden-number {
  text-align: center;
  display: inline-block;
  border: 1px solid #999;
  width: 23px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}
/* line 34, less/components/comment-mentions.less */
.comments .mention-form-wrapper {
  margin: 15px 0;
}
/* line 38, less/components/comment-mentions.less */
.comments form {
  position: relative;
}
/* line 41, less/components/comment-mentions.less */
.comments form textarea {
  border: none;
  width: 85%;
  height: 25px;
  padding-left: 0;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  resize: none;
  outline: none;
  font-size: 14px;
  overflow: hidden;
}
/* line 53, less/components/comment-mentions.less */
.comments form .add-friend-button {
  position: relative;
  margin-left: 10px;
  cursor: pointer;
}
/* line 59, less/components/comment-mentions.less */
.comments form .subtitle {
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  width: 85%;
}
/* line 65, less/components/comment-mentions.less */
.comments form .search-results-comments {
  background-color: white;
  width: 250px;
  border: 1px solid #f2f2f2;
  position: absolute;
  z-index: 10;
}
/* line 72, less/components/comment-mentions.less */
.comments form .search-results-comments .section-header {
  padding: 8px;
  text-align: center;
}
/* line 77, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend {
  position: relative;
  padding: 5px 3px;
  height: 60px;
}
/* line 82, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend:hover {
  cursor: pointer;
}
/* line 86, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend .individual-caption {
  width: 150px;
}
/* line 89, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend .individual-caption .top-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
/* line 96, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend .individual-caption .bottom-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #CCC;
}
/* line 105, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend .check-mark {
  position: absolute;
  left: 1%;
}
/* line 110, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend .individual-caption {
  display: inline-block;
  position: relative;
  top: -10px;
}
/* line 116, less/components/comment-mentions.less */
.comments form .search-results-comments .search-results-individual-friend .avatar {
  height: 50px;
  width: 50px;
  margin-right: 15px;
  display: inline-block;
}
@keyframes slide-up-fade-in {
  /* line 2, less/components/commentary.less */
  0% {
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  /* line 6, less/components/commentary.less */
  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-left-fade-in {
  /* line 18, less/components/commentary.less */
  0% {
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
  /* line 22, less/components/commentary.less */
  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* line 33, less/components/commentary.less */
.commentary {
  z-index: 31;
  padding: 26px;
  background: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
/* line 34, less/components/commentary.less */
.commentary.commentary-drawer {
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
}
@media (min-width: 601px) {
  /* line 447, ../app/assets/less/mixins.less */
  .commentary.commentary-drawer {
    width: 600px;
  }
}
@media (max-width: 600px) {
  /* line 450, ../app/assets/less/mixins.less */
  .commentary.commentary-drawer {
    left: 40px;
  }
}
/* line 38, less/components/commentary.less */
.commentary.commentary-modal {
  position: fixed;
  height: 100%;
  top: 0;
}
@media (min-width: 901px) {
  /* line 461, ../app/assets/less/mixins.less */
  .commentary.commentary-modal {
    left: 50%;
    margin-left: -450px;
    width: 900px;
  }
}
@media (max-width: 900px) {
  /* line 466, ../app/assets/less/mixins.less */
  .commentary.commentary-modal {
    left: 0;
    right: 0;
  }
}
/* line 484, ../app/assets/less/mixins.less */
.commentary .close-button {
  position: absolute;
  left: 16px;
  top: 16px;
}
/* line 50, less/components/commentary.less */
.commentary .commentary-sign-up-prompt {
  color: #ffffff;
  background-color: #000000;
  margin: -26px;
  padding: 26px;
  margin-bottom: 26px;
  text-align: center;
}
/* line 57, less/components/commentary.less */
.commentary .commentary-sign-up-prompt h2 {
  margin-bottom: 13px;
}
/* line 60, less/components/commentary.less */
.commentary .commentary-sign-up-prompt .sign-up-button {
  margin-bottom: 26px;
}
/* line 63, less/components/commentary.less */
.commentary .commentary-sign-up-prompt .sign-in a {
  font-weight: 600;
}
/* line 68, less/components/commentary.less */
.commentary .commentary-content {
  max-width: 690px;
  margin: 0 auto;
  padding: 50px 30px;
  position: relative;
  text-align: left;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}
/* line 78, less/components/commentary.less */
.commentary .commentary-content .detail-status .detail-content {
  padding: 0  0;
  text-align: left;
}
/* line 82, less/components/commentary.less */
.commentary .commentary-content .detail-top-header {
  position: relative;
  min-height: 50px;
}
/* line 86, less/components/commentary.less */
.commentary .commentary-content .status {
  min-height: 150px;
  margin-bottom: 20px;
}
/* line 91, less/components/commentary.less */
.commentary .commentary-content .share-menu {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  top: -3px;
}
/* line 102, less/components/commentary.less */
.commentary .commentary-content .share-menu > * {
  vertical-align: middle;
}
/* line 106, less/components/commentary.less */
.commentary .commentary-content .share-menu .icon-button {
  stroke: #000;
}
/* line 109, less/components/commentary.less */
.commentary .commentary-content .share-menu .share-button-new {
  margin-top: 2px;
  display: inline-block;
  cursor: pointer;
}
/* line 117, less/components/commentary.less */
.commentary .detail-title {
  font-size: 28px;
  line-height: 35px;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* line 125, less/components/commentary.less */
.commentary .detail-caption,
.commentary .detail-commentary {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 20px;
}
/* line 131, less/components/commentary.less */
.commentary .detail-caption {
  color: #999;
  margin-top: 20px;
}
/* line 136, less/components/commentary.less */
.commentary .detail-media {
  position: relative;
  width: 100%;
  height: 450px;
}
/* line 142, less/components/commentary.less */
.commentary .excerpt {
  margin-top: 20px;
}
/* line 146, less/components/commentary.less */
.commentary .detail-social {
  margin-top: 40px;
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  text-align: center;
  border-bottom: solid 1px #f2f2f2;
  -ms-flex-align: center;
      align-items: center;
}
/* line 155, less/components/commentary.less */
.commentary .detail-social .detail-social-action {
  cursor: pointer;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-right: 7px;
}
/* line 160, less/components/commentary.less */
.commentary .detail-social .detail-social-action svg {
  margin-right: 5px;
}
/* line 163, less/components/commentary.less */
.commentary .detail-social .detail-social-action span {
  font-weight: 500;
  width: 100px;
  font-size: 12px;
  line-height: 15px;
}
/* line 168, less/components/commentary.less */
.commentary .detail-social .detail-social-action .avatars {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 173, less/components/commentary.less */
.commentary .detail-social .detail-social-action .heart-button .fill-shape {
  stroke: #000;
  fill: #000;
}
/* line 179, less/components/commentary.less */
.commentary .detail-social .avatars {
  margin-left: 30px;
}
/* line 185, less/components/commentary.less */
.commentary .detail-actions {
  text-align: left;
  margin-top: 20px;
}
/* line 191, less/components/commentary.less */
.commentary.commentary-modal .commentary-content {
  animation-name: slide-up-fade-in;
}
/* line 195, less/components/commentary.less */
.commentary.commentary-drawer .commentary-content {
  animation-name: slide-left-fade-in;
  padding-top: 0;
}
/* line 200, less/components/commentary.less */
.commentary .commentary-header {
  text-align: center;
  margin-bottom: 60px;
}
/* line 203, less/components/commentary.less */
.commentary .commentary-header h3 {
  font-weight: 500;
}
/* line 208, less/components/commentary.less */
.commentary .loading {
  z-index: 3;
}
/* line 212, less/components/commentary.less */
.commentary.commentary-drawer .loading {
  position: absolute;
}
/* line 216, less/components/commentary.less */
.commentary .error {
  color: #f03737;
  padding-top: 7px;
}
/* line 222, less/components/commentary.less */
.commentary .avatars li {
  height: 30px;
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
  vertical-align: top;
}
/* line 228, less/components/commentary.less */
.commentary .avatars li a {
  display: inline-block;
}
/* line 231, less/components/commentary.less */
.commentary .avatars li:first-child {
  padding-left: 0;
}
/* line 232, less/components/commentary.less */
.commentary .avatars li:last-child {
  padding-right: 0;
}
/* line 237, less/components/commentary.less */
.commentary form .subtitle {
  color: #A9A9A9;
  font-size: 11px;
}
/* line 243, less/components/commentary.less */
.commentary input[type="text"] {
  font: 16px "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  line-height: 35px;
  margin-bottom: 10px;
  border: 0;
  border-bottom: solid 1px #f2f2f2;
  outline: none;
  background: transparent;
  width: 85%;
  padding: 0;
}
/* line 255, less/components/commentary.less */
.commentary .comment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 16px;
}
/* line 263, less/components/commentary.less */
.commentary .comment .vote-icons {
  float: right;
  margin-right: 25px;
}
/* line 266, less/components/commentary.less */
.commentary .comment .vote-icons .vote-icon {
  cursor: pointer;
}
/* line 269, less/components/commentary.less */
.commentary .comment .vote-icons .vote-icon.upvote {
  -ms-transform: scale(-1, -1);
      transform: scale(-1, -1);
  margin-right: 10px;
}
/* line 275, less/components/commentary.less */
.commentary .comment .content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 10px;
}
/* line 283, less/components/commentary.less */
.commentary .comment .content a {
  color: #09c;
}
/* line 289, less/components/commentary.less */
.commentary .comment .author strong {
  margin-right: 5px;
}
/* line 292, less/components/commentary.less */
.commentary .comment .author .comment-date {
  color: #999;
}
/* line 297, less/components/commentary.less */
.commentary .comment .editor-remove-x-icon {
  margin-left: 10px;
  vertical-align: middle;
  stroke-width: 1.0;
}
/* line 302, less/components/commentary.less */
.commentary .comment .editor-remove-x-icon line,
.commentary .comment .editor-remove-x-icon path,
.commentary .comment .editor-remove-x-icon polygon,
.commentary .comment .editor-remove-x-icon polyline,
.commentary .comment .editor-remove-x-icon rect {
  stroke: #999999;
}
/* line 305, less/components/commentary.less */
.commentary .comment .editor-remove-x-icon:hover {
  cursor: pointer;
}
/* line 307, less/components/commentary.less */
.commentary .comment .editor-remove-x-icon:hover line,
.commentary .comment .editor-remove-x-icon:hover path,
.commentary .comment .editor-remove-x-icon:hover polygon,
.commentary .comment .editor-remove-x-icon:hover polyline,
.commentary .comment .editor-remove-x-icon:hover rect {
  stroke: #000;
}
/* line 312, less/components/commentary.less */
.commentary .comment .editor-remove-x-icon .active line,
.commentary .comment .editor-remove-x-icon .active path,
.commentary .comment .editor-remove-x-icon .active polygon,
.commentary .comment .editor-remove-x-icon .active polyline,
.commentary .comment .editor-remove-x-icon .active rect {
  stroke: #09c;
}
/* line 319, less/components/commentary.less */
.commentary .author-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 324, less/components/commentary.less */
.commentary .detail-image img[src*='flickr'] {
  pointer-events: none;
}
/* line 1, less/components/confirm-view.less */
.confirm-view {
  position: relative;
  z-index: 31;
  background-color: #fff;
  color: #000;
  width: 400px;
  padding-bottom: 25px;
  font-weight: 400;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 12, less/components/confirm-view.less */
.confirm-view .confirm-view-title {
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  line-height: 60px;
  font-size: 18px;
}
/* line 18, less/components/confirm-view.less */
.confirm-view .confirm-view-title .close-button {
  position: absolute;
  right: 25px;
  top: 24px;
  left: auto;
}
/* line 25, less/components/confirm-view.less */
.confirm-view .confirm-view-message {
  text-align: left;
  padding: 28px 20px 0px;
  font-size: 14px;
  line-height: 23px;
}
/* line 31, less/components/confirm-view.less */
.confirm-view .confirm-view-actions {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-top: 20px;
  padding: 0px 25px;
}
/* line 37, less/components/confirm-view.less */
.confirm-view .confirm-view-actions .button--primary {
  margin-left: 16px;
}
/* line 1, less/components/cover.less */
.cover {
  position: relative;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  margin: 0 auto 10px;
}
/* line 6, less/components/cover.less */
.cover .heading {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
/* line 10, less/components/cover.less */
.cover .subheading {
  padding-top: 1px;
  padding-bottom: 12px;
  font-size: 14px;
}
/* line 14, less/components/cover.less */
.cover .cover-main-item {
  display: block;
  position: relative;
}
/* line 18, less/components/cover.less */
.cover .cover-main-item .action-bar {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
/* line 22, less/components/cover.less */
.cover .cover-main-item .action-bar .comments {
  z-index: 3;
}
/* line 26, less/components/cover.less */
.cover .cover-main-item .action-bar .more-actions {
  z-index: 3;
}
/* line 31, less/components/cover.less */
.cover .cover-main-item.actions-left .action-bar {
  right: 0;
  left: 30px;
  z-index: 1;
}
/* line 37, less/components/cover.less */
.cover .cover-main-item .top-attribution {
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
}
/* line 43, less/components/cover.less */
.cover .cover-main-item .byline-attribution {
  display: block;
  color: white;
}
/* line 49, less/components/cover.less */
.cover .cover-main-item .flip-hint {
  top: 0;
  right: -36px;
}
/* line 55, less/components/cover.less */
.cover .cover-main-item-link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
/* line 64, less/components/cover.less */
.cover .cover-main-item-headline {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 30px;
  max-width: 55%;
}
/* line 72, less/components/cover.less */
.cover .cover-main-item-title {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 41px;
  max-height: 200px;
  overflow: hidden;
  color: #fff;
  display: block;
  padding-bottom: 10px;
}
/* line 84, less/components/cover.less */
.cover .cover-headline {
  position: relative;
}
/* line 88, less/components/cover.less */
.cover .cover-tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 94, less/components/cover.less */
.cover .cover-tiles > * {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 95, less/components/cover.less */
.cover .cover-tiles .cover-show-more {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin: 25px auto 0;
  height: 30px;
  padding: 0 20px;
  line-height: 30px;
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
  cursor: pointer;
}
/* line 106, less/components/cover.less */
.cover .cover-tiles .cover-show-more:hover {
  background-color: #000;
  color: #fff;
}
/* line 112, less/components/cover.less */
.cover .cover-tiles .toc-tile .section-title {
  font-size: 18px;
  padding: 15px 15px 2px;
}
/* line 116, less/components/cover.less */
.cover .cover-tiles .toc-tile .author {
  padding: 0 15px;
}
/* line 121, less/components/cover.less */
.cover .top-stories-headline {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  margin: 10px auto 15px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}
/* line 130, less/components/cover.less */
.cover .curator-actions {
  top: 2px;
  right: -36px;
  z-index: 2;
}
/* line 1, less/components/create-magazine-view.less */
.create-magazine-view {
  position: relative;
  z-index: 31;
  background-color: #fff;
  padding: 35px;
  width: 500px;
}
/* line 9, less/components/create-magazine-view.less */
.create-magazine-view .close-button {
  position: absolute;
  left: auto;
  right: 10px;
  top: 9px;
}
/* line 18, less/components/create-magazine-view.less */
.delete-magazine-view {
  position: relative;
  z-index: 31;
  background-color: white;
  padding: 35px;
  width: 500px;
  height: 125px;
}
/* line 27, less/components/create-magazine-view.less */
.delete-magazine-view .button {
  margin-top: 10px;
  float: right;
}
/* line 31, less/components/create-magazine-view.less */
.delete-magazine-view .close-button {
  position: absolute;
  left: 10px;
  top: 9px;
}
/* line 38, less/components/create-magazine-view.less */
.share-article-view {
  position: relative;
  z-index: 31;
  background-color: white;
  padding: 35px;
  width: 410px;
  height: 420px;
}
/* line 47, less/components/create-magazine-view.less */
.share-article-view .button {
  margin-top: 10px;
  float: right;
}
/* line 51, less/components/create-magazine-view.less */
.share-article-view .close-button {
  position: absolute;
  left: 10px;
  top: 9px;
}
@media (max-width: 767px) {
  /* line 59, less/components/create-magazine-view.less */
  .create-magazine-view {
    height: 100%;
    width: 100%;
  }
}
/* line 1, less/components/create-magazine.less */
.create-magazine {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 8, less/components/create-magazine.less */
.create-magazine h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
/* line 15, less/components/create-magazine.less */
.create-magazine .textarea {
  min-height: 150px;
  margin: 20px 0;
}
/* line 20, less/components/create-magazine.less */
.create-magazine .textinput {
  min-height: 150px;
  margin: 20px 0;
}
/* line 25, less/components/create-magazine.less */
.create-magazine .magazine-visibility {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #b3b2b0;
  margin-bottom: 10px;
}
/* line 33, less/components/create-magazine.less */
.create-magazine .switch-container {
  padding: 12px 0;
}
/* line 37, less/components/create-magazine.less */
.create-magazine .disclaimer {
  font-size: 14px;
  line-height: 1.3;
  font-style: italic;
  color: #444;
}
/* line 45, less/components/create-magazine.less */
.create-magazine__content-wrapper {
  -ms-flex: 1;
      flex: 1;
  margin-bottom: 20px;
}
/* line 50, less/components/create-magazine.less */
.create-magazine__button-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 55, less/components/create-magazine.less */
.create-magazine__button-wrapper .button-base:last-child {
  margin-left: 16px;
}
/* line 1, less/components/cropped-image.less */
.image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2187) 10%, rgba(0, 0, 0, 0.1536) 20%, rgba(0, 0, 0, 0.1029) 30%, rgba(0, 0, 0, 0.0648) 40%, rgba(0, 0, 0, 0.0375) 50%, rgba(0, 0, 0, 0.0192) 60%, rgba(0, 0, 0, 0.0081) 70%, rgba(0, 0, 0, 0.0024) 80%, rgba(0, 0, 0, 0.0003) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 1, less/components/curator-actions.less */
.curator-actions {
  position: absolute;
  text-align: right;
  opacity: 1;
}
/* line 5, less/components/curator-actions.less */
.curator-actions.peek-top {
  right: 14px;
  top: -10px;
}
/* line 10, less/components/curator-actions.less */
.curator-actions [role="button"] {
  height: 32px;
  transition-property: opacity;
  transition-timing-function: ease;
  transition-duration: 0.25s;
  transition-delay: 100ms;
}
/* line 17, less/components/curator-actions.less */
.curator-actions [role="button"] circle {
  transition-duration: 0.2s;
  transition-property: stroke, fill;
}
/* line 22, less/components/curator-actions.less */
.curator-actions [role="button"] .icon {
  transition-duration: 0.2s;
  transition-property: stroke;
}
/* line 35, less/components/curator-actions.less */
.curator-actions .new-like-button:hover circle,
.curator-actions .new-favorite-button:hover circle,
.curator-actions .new-share-button:hover circle,
.curator-actions .new-like-button:active circle,
.curator-actions .new-favorite-button:active circle,
.curator-actions .new-share-button:active circle {
  fill: #ffffff;
}
/* line 40, less/components/curator-actions.less */
.curator-actions .new-like-button:hover .icon,
.curator-actions .new-favorite-button:hover .icon,
.curator-actions .new-share-button:hover .icon,
.curator-actions .new-like-button.active .icon,
.curator-actions .new-favorite-button.active .icon,
.curator-actions .new-share-button.active .icon {
  stroke: #000;
}
/* line 45, less/components/curator-actions.less */
.curator-actions .new-like-button:active .icon,
.curator-actions .new-favorite-button:active .icon,
.curator-actions .new-share-button:active .icon,
.curator-actions .new-like-button.active .icon,
.curator-actions .new-favorite-button.active .icon,
.curator-actions .new-share-button.active .icon {
  stroke: #ff2828;
}
/* line 50, less/components/curator-actions.less */
.curator-actions .new-like-button.share-active circle,
.curator-actions .new-favorite-button.share-active circle,
.curator-actions .new-share-button.share-active circle {
  fill: #ffffff;
}
/* line 53, less/components/curator-actions.less */
.curator-actions .new-like-button.share-active .icon,
.curator-actions .new-favorite-button.share-active .icon,
.curator-actions .new-share-button.share-active .icon {
  stroke: #000;
}
/* line 58, less/components/curator-actions.less */
.curator-actions .new-like-button,
.curator-actions .new-favorite-button,
.curator-actions .new-flip-button {
  padding-left: 10px;
}
/* line 1, less/components/custom-banners.less */
.custom-banners {
  margin-top: 60px;
}
@media (max-width: 768px) {
  /* line 4, less/components/custom-banners.less */
  .custom-banners {
    display: none;
  }
}
/* line 9, less/components/custom-banners.less */
.custom-banner {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #000;
  background-color: #E8E8E8;
  position: relative;
  z-index: 10;
}
/* line 18, less/components/custom-banners.less */
.custom-banner .close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  left: auto;
  width: 30px;
  height: 30px;
  padding: 3px;
  z-index: 1;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
}
/* line 28, less/components/custom-banners.less */
.custom-banner .close-button:hover {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.8));
}
/* line 34, less/components/custom-banners.less */
.custom-banner--clickable {
  cursor: pointer;
}
/* line 38, less/components/custom-banners.less */
.custom-banner__left-side {
  width: 48%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
}
/* line 44, less/components/custom-banners.less */
.custom-banner__content {
  margin: 20px;
  z-index: 1;
  font-weight: 100;
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 52, less/components/custom-banners.less */
.custom-banner__background {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 59, less/components/custom-banners.less */
.custom-banner__header {
  font-family: "FaktCondensed";
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 34px;
}
/* line 67, less/components/custom-banners.less */
.custom-banner__subheader {
  font-family: "Fakt";
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 5px;
  margin-bottom: 16px;
}
/* line 76, less/components/custom-banners.less */
.custom-banner__inline-icon {
  display: inline-block;
  height: 13px;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
/* line 83, less/components/custom-banners.less */
.custom-banner__cta {
  display: inline-block;
  line-height: 3.4;
  padding: 0 1.5em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  background: #000;
  color: #FFF;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* line 96, less/components/custom-banners.less */
.custom-banner__logos {
  margin-top: 15px;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
/* line 102, less/components/custom-banners.less */
.custom-banner__logos .logo {
  width: 50px;
  margin: 0px 5px 0px 0px;
}
/* line 106, less/components/custom-banners.less */
.custom-banner__logos .logo:last-child {
  margin-right: 0px;
}
/* line 1, less/components/debug-item-view.less */
.debug-item-view {
  position: absolute;
  z-index: 31;
  left: 50%;
  top: 50%;
  padding: 26px;
  width: 416px;
  height: 570px;
  margin-top: -285px;
  margin-left: -208px;
  background: #fff;
  overflow: scroll;
}
/* line 17, less/components/debug-item-view.less */
.debug-item-view .header {
  font-size: 20px;
  line-height: 25px;
}
/* line 21, less/components/debug-item-view.less */
.debug-item-view .subheading {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
}
/* line 26, less/components/debug-item-view.less */
.debug-item-view p {
  font-size: 12px;
  line-height: 15px;
}
/* line 30, less/components/debug-item-view.less */
.debug-item-view .jsondump {
  font-family: monospace;
  margin: 20px 0;
  width: 100%;
  min-height: 250px;
  font-size: 12px;
  line-height: 15px;
}
/* line 38, less/components/debug-item-view.less */
.debug-item-view .useraffinities {
  color: #09c;
}
/* line 42, less/components/debug-item-view.less */
.debug-item-view .close-button {
  position: absolute;
  left: -26px;
  top: 0;
}
/* line 48, less/components/debug-item-view.less */
.debug-item-view .warning {
  color: red;
}
/* line 1, less/components/default-magazine-edu-view.less */
.default-magazine-edu-view {
  position: relative;
  z-index: 31;
  background-color: rgba(255, 255, 255, 0.97);
  color: #000;
  width: 400px;
  height: 300px;
  padding: 50px 40px;
  text-align: center;
  max-width: 80%;
  max-height: 80%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
/* line 15, less/components/default-magazine-edu-view.less */
.default-magazine-edu-view .close-button {
  position: absolute;
  top: 10px;
  left: 9px;
}
/* line 20, less/components/default-magazine-edu-view.less */
.default-magazine-edu-view > h2 {
  font-size: 20px;
  line-height: 25px;
}
/* line 24, less/components/default-magazine-edu-view.less */
.default-magazine-edu-view > .text-box {
  font-size: 16px;
  line-height: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 30, less/components/default-magazine-edu-view.less */
.default-magazine-edu-view > .text-box .new-flip-button {
  cursor: initial;
  margin: 0 5px;
}
/* line 34, less/components/default-magazine-edu-view.less */
.default-magazine-edu-view > .text-box > * {
  display: inline;
}
/* line 1, less/components/desktop-item-header.less */
.desktop-item-header {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 11px 15px 9px 15px;
  line-height: 27px;
  background: #fff;
  z-index: 25;
  border-bottom: 1px solid rgba(38, 38, 38, 0.1);
}
/* line 16, less/components/desktop-item-header.less */
.desktop-item-header__company {
  display: -ms-flexbox;
  display: flex;
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  line-height: 30px;
  font-weight: 900;
  font-size: 20px;
  line-height: inherit;
}
/* line 23, less/components/desktop-item-header.less */
.desktop-item-header__company .logo {
  margin-right: 3px;
}
/* line 30, less/components/desktop-item-header.less */
.desktop-item-header__buttons .button:not(:first-child) {
  margin-left: 5px;
}
/* line 1, less/components/detail-actions.less */
.detail-actions {
  font-size: 13px;
}
/* line 3, less/components/detail-actions.less */
.detail-actions a {
  color: #09c;
  text-decoration: underline;
}
/* line 6, less/components/detail-actions.less */
.detail-actions a svg.icon-button {
  stroke: #09c;
}
/* line 10, less/components/detail-actions.less */
.detail-actions .flag-item {
  stroke: #09c;
  fill: none;
}
/* line 13, less/components/detail-actions.less */
.detail-actions .flag-item.flagged {
  fill: #09c;
}
/* line 18, less/components/detail-actions.less */
.detail-actions li {
  display: inline-block;
}
/* line 20, less/components/detail-actions.less */
.detail-actions li:after {
  display: inline-block;
  content: "|";
  padding-left: 5px;
  padding-right: 5px;
}
/* line 26, less/components/detail-actions.less */
.detail-actions li:last-child:after {
  display: none;
}
/* line 1, less/components/detail-article-view.less */
.detail-article {
  height: 100%;
}
/* line 4, less/components/detail-article-view.less */
.detail-article.rss iframe {
  width: 640px;
  height: 480px;
}
@media (max-width: 680px) {
  /* line 7, less/components/detail-article-view.less */
  .detail-article.rss iframe {
    width: 480px;
    height: 320px;
  }
}
@media (max-width: 520px) {
  /* line 11, less/components/detail-article-view.less */
  .detail-article.rss iframe {
    width: 320px;
    height: 200px;
  }
}
/* line 2, less/components/detail-footer.less */
.detail-footer .related {
  clear: both;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 9, less/components/detail-footer.less */
.detail-footer .related-items,
.detail-footer .related-topics {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 15px;
  width: 100%;
}
/* line 16, less/components/detail-footer.less */
.detail-footer .related-items {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
/* line 20, less/components/detail-footer.less */
.detail-footer .related-topics {
  width: 100%;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  min-width: 0;
  /* https://css-tricks.com/flexbox-truncated-text/ */
}
@media (max-width: 650px) {
  /* line 27, less/components/detail-footer.less */
  .detail-footer .related {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* line 30, less/components/detail-footer.less */
  .detail-footer .related-items,
  .detail-footer .related-topics {
    text-align: center;
  }
}
/* line 35, less/components/detail-footer.less */
.detail-footer .subheading {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
/* line 41, less/components/detail-footer.less */
.detail-footer .subheading a {
  color: #09c;
}
/* line 46, less/components/detail-footer.less */
.detail-footer .item {
  display: inline-block;
  background-size: cover;
  background-color: #888;
  border: none;
  width: 150px;
  height: 150px;
  color: white;
  margin-right: 10px;
  position: relative;
  text-align: left;
}
/* line 59, less/components/detail-footer.less */
.detail-footer .item-publisher {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
/* line 67, less/components/detail-footer.less */
.detail-footer .item-title {
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  font-size: 12px;
}
/* line 77, less/components/detail-footer.less */
.detail-footer .detail-actions {
  text-align: center;
}
/* line 1, less/components/detail-media-view.less */
.detail-media {
  text-align: center;
}
/* line 4, less/components/detail-media-view.less */
.detail-media .cropped-image {
  width: 100%;
}
/* line 8, less/components/detail-media-view.less */
.detail-media .cropped-image img {
  width: 100%;
  height: auto;
}
/* line 13, less/components/detail-media-view.less */
.detail-media .media {
  position: relative;
  width: 100%;
  height: 500px;
}
/* line 19, less/components/detail-media-view.less */
.detail-media .caption {
  color: #999;
  font-size: 13px;
  line-height: 20px;
  margin: 25px 0;
}
/* line 26, less/components/detail-media-view.less */
.detail-media .metadata {
  margin: 25px 0;
}
/* line 30, less/components/detail-media-view.less */
.detail-media .top-attribution {
  text-align: left;
}
/* line 35, less/components/detail-media-view.less */
.detail-media .detail-content > .top-attribution .avatar-attribution {
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 38, less/components/detail-media-view.less */
.detail-media .detail-content > .top-attribution .external-social-actions {
  text-align: center;
}
/* line 3, less/components/detail-status-view.less */
.detail-status .external-social-actions {
  margin-top: 15px;
  text-align: left;
}
/* line 8, less/components/detail-status-view.less */
.detail-status .detail-content {
  text-align: left;
}
/* line 10, less/components/detail-status-view.less */
.detail-status .detail-content .top-attribution {
  margin-left: 0;
  margin-right: 0;
}
/* line 1, less/components/detail-view.less */
.detail-view {
  height: 100%;
}
/* line 4, less/components/detail-view.less */
.detail-view .close-button {
  top: 75px;
  left: 15px;
}
/* line 9, less/components/detail-view.less */
.detail-view .secondary-content {
  position: absolute;
}
/* line 11, less/components/detail-view.less */
.detail-view .secondary-content .top-attribution {
  margin-top: 15px;
  text-align: left;
  display: block;
}
/* line 15, less/components/detail-view.less */
.detail-view .secondary-content .top-attribution .flip-author {
  white-space: normal;
}
/* line 18, less/components/detail-view.less */
.detail-view .secondary-content .top-attribution .social-author {
  white-space: normal;
}
@media (max-width: 1091px) {
  /* line 22, less/components/detail-view.less */
  .detail-view .secondary-content {
    right: 0;
  }
  /* line 24, less/components/detail-view.less */
  .detail-view .secondary-content .text-label,
  .detail-view .secondary-content .top-attribution {
    display: none;
  }
}
@media (min-width: 1090px) {
  /* line 30, less/components/detail-view.less */
  .detail-view .secondary-content {
    width: 154px;
    right: -154px;
  }
}
@media (max-width: 1064px) {
  /* line 36, less/components/detail-view.less */
  .detail-view .secondary-content .social-actions {
    display: none;
  }
  /* line 39, less/components/detail-view.less */
  .detail-view .secondary-content .social-actions .text-label {
    display: none;
  }
}
/* line 46, less/components/detail-view.less */
.detail-view .not-found-wrapper {
  margin-top: 50px;
}
/* line 51, less/components/detail-view.less */
.mobile-item-header + .detail-view {
  margin-top: 47px;
  margin-bottom: 80px;
}
/* line 56, less/components/detail-view.less */
.detail-content {
  max-width: 690px;
  margin: 0 auto;
  padding: 50px 30px;
  text-align: center;
  position: relative;
}
/* line 63, less/components/detail-view.less */
.detail-content .top-attribution {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 345px;
}
/* line 71, less/components/detail-view.less */
.detail-content .top-attribution .flip-author {
  white-space: normal;
}
/* line 74, less/components/detail-view.less */
.detail-content .top-attribution .social-author {
  white-space: normal;
}
/* line 79, less/components/detail-view.less */
.detail-content .cropped-image {
  text-align: left;
}
/* line 82, less/components/detail-view.less */
.detail-content .cropped-image img {
  width: 100%;
  max-height: 100%;
}
/* line 88, less/components/detail-view.less */
.detail-content .title {
  font-size: 34px;
  line-height: 45px;
  font-weight: 600;
  margin: 10px 0 20px;
}
/* line 95, less/components/detail-view.less */
.detail-content .external-link {
  display: inline-block;
  margin: 8px auto;
  color: #09c;
  font-size: 13px;
  text-decoration: underline;
}
/* line 103, less/components/detail-view.less */
.detail-content .metadata {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
/* line 108, less/components/detail-view.less */
.detail-content .metadata > * {
  display: inline-block;
  padding-left: 4px;
}
/* line 112, less/components/detail-view.less */
.detail-content .metadata > *:before {
  content: "/";
  display: inline-block;
  margin-right: 4px;
}
/* line 118, less/components/detail-view.less */
.detail-content .metadata > *:first-child {
  padding-left: 0;
}
/* line 121, less/components/detail-view.less */
.detail-content .metadata > *:first-child:before {
  display: none;
}
/* line 129, less/components/detail-view.less */
.detail-footer {
  max-width: 660px;
  margin: 0 auto;
  margin-top: 25px;
  text-align: left;
  padding-bottom: 60px;
}
@media (max-width: 650px) {
  /* line 136, less/components/detail-view.less */
  .detail-footer {
    padding-bottom: 0;
  }
}
/* line 140, less/components/detail-view.less */
.detail-footer a.topic-tag {
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10px;
}
/* line 149, less/components/detail-view.less */
.detail-footer .item-list {
  text-align: center;
}
/* line 153, less/components/detail-view.less */
.detail-footer .topic-tags {
  text-align: center;
}
/* line 2, less/components/detail-web-view.less */
.detail-web .web-excerpt {
  margin: 25px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* line 8, less/components/detail-web-view.less */
.detail-web .web-excerpt:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
/* line 16, less/components/detail-web-view.less */
.detail-web .cropped-image {
  float: left;
  margin-right: 15px;
  max-width: 160px;
  max-height: 160px;
}
/* line 23, less/components/detail-web-view.less */
.detail-web .excerpt-text,
.detail-web p {
  text-align: left;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}
/* line 31, less/components/detail-web-view.less */
.detail-web .detail-actions {
  margin-bottom: 25px;
}
/* line 1, less/components/dialog.less */
.dialog {
  position: fixed;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
}
/* line 10, less/components/dialog.less */
.dialog.center-children {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 16, less/components/dialog.less */
.dialog .modal {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: auto;
}
/* line 23, less/components/dialog.less */
.dialog .modal.dark {
  background-color: rgba(0, 0, 0, 0.8);
}
/* line 27, less/components/dialog.less */
.dialog .modal.light {
  background-color: #F6F6F6;
}
/* line 1, less/components/dynamic-feed-header.less */
.dynamic-feed-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 8, less/components/dynamic-feed-header.less */
.dynamic-feed-header__title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  margin-top: 150px;
  margin-bottom: 16px;
}
/* line 16, less/components/dynamic-feed-header.less */
.dynamic-feed-header__title-wrapper > :first-child {
  -ms-flex: 1;
      flex: 1;
  margin-right: 12px;
}
/* line 22, less/components/dynamic-feed-header.less */
.follow-button {
  margin-bottom: 36px;
}
/* line 26, less/components/dynamic-feed-header.less */
.dynamic-feed-header__img-title {
  width: 300px;
}
/* line 1, less/components/edit-board.less */
.edit-board {
  z-index: 31;
}
/* line 7, less/components/edit-board.less */
.edit-board .edit-board-view {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  width: 460px;
  height: 80vh;
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
/* line 18, less/components/edit-board.less */
.edit-board .sub-message {
  position: relative;
  top: 15px;
  color: white;
  text-align: center;
  padding: 16px;
  cursor: pointer;
}
/* line 26, less/components/edit-board.less */
.edit-board .sub-message img {
  cursor: none;
  -webkit-animation-name: rotateSpinner;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
/* line 42, less/components/edit-board.less */
.edit-board .sub-message.filled {
  background-color: #F52828;
}
/* line 46, less/components/edit-board.less */
.edit-board .sub-message.nodisplay {
  visibility: hidden;
}
@media (max-width: 767px) {
  /* line 52, less/components/edit-board.less */
  .edit-board {
    height: 100%;
  }
  /* line 55, less/components/edit-board.less */
  .edit-board .edit-board-view {
    width: 100%;
    height: 100%;
  }
}
/* line 2, less/components/edit-item-franchise.less */
.edit-item-franchise .control-group > *:first-child {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 7, less/components/edit-item-franchise.less */
.edit-item-franchise .hint {
  font-size: 14px;
  line-height: 17px;
  color: #999;
  margin-top: 5px;
}
/* line 14, less/components/edit-item-franchise.less */
.edit-item-franchise .color {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 25px;
  padding: 2px;
  margin-right: 10px;
  margin-top: 3px;
}
/* line 23, less/components/edit-item-franchise.less */
.edit-item-franchise .color.selected:after {
  position: absolute;
  display: block;
  content: '';
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  pointer-events: none;
  border: 1px solid #333;
}
/* line 1, less/components/edit-item-overview.less */
.item-overview {
  background-color: #f1f1f1;
  margin-left: -20px;
  margin-right: -20px;
  display: -ms-flexbox;
  display: flex;
}
/* line 6, less/components/edit-item-overview.less */
.item-overview .item-description {
  padding-left: 20px;
  padding-right: 20px;
  width: 360px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 14, less/components/edit-item-overview.less */
.item-overview .item-title {
  font-size: 20px;
  line-height: 26px;
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  margin-left: -10px;
}
/* line 21, less/components/edit-item-overview.less */
.item-overview .item-source {
  color: #999;
  font-size: 12px;
}
/* line 24, less/components/edit-item-overview.less */
.item-overview .item-source a {
  text-decoration: none;
}
/* line 26, less/components/edit-item-overview.less */
.item-overview .item-source a:after {
  cursor: default;
  display: inline-block;
  content: "|";
  margin-left: 5px;
  margin-right: 5px;
}
/* line 33, less/components/edit-item-overview.less */
.item-overview .item-source a:last-child:after {
  display: none;
}
/* line 36, less/components/edit-item-overview.less */
.item-overview .item-source a:hover span {
  color: #0099cc;
}
/* line 1, less/components/edit-item-thumbnail.less */
.edit-item-thumbnail {
  position: relative;
}
/* line 3, less/components/edit-item-thumbnail.less */
.edit-item-thumbnail.pick-image {
  cursor: pointer;
}
/* line 5, less/components/edit-item-thumbnail.less */
.edit-item-thumbnail.pick-image.disabled {
  cursor: inherit;
}
/* line 9, less/components/edit-item-thumbnail.less */
.edit-item-thumbnail .image-placeholder-icon {
  margin: 6px;
  vertical-align: middle;
}
/* line 13, less/components/edit-item-thumbnail.less */
.edit-item-thumbnail a.item-image-edit {
  position: absolute;
  bottom: 15px;
  left: 40px;
  right: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
/* line 1, less/components/edit-item-view.less */
.edit-item-view {
  position: fixed;
  background-color: #ffffff;
  z-index: 31;
  line-height: 23px;
  font-weight: 400;
}
@media (min-height: 447px) {
  /* line 435, ../app/assets/less/mixins.less */
  .edit-item-view {
    top: 50%;
    height: 420px;
    margin-top: -210px;
  }
}
@media (max-height: 420px) {
  /* line 440, ../app/assets/less/mixins.less */
  .edit-item-view {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 541px) {
  /* line 461, ../app/assets/less/mixins.less */
  .edit-item-view {
    left: 50%;
    margin-left: -270px;
    width: 540px;
  }
}
@media (max-width: 540px) {
  /* line 466, ../app/assets/less/mixins.less */
  .edit-item-view {
    left: 0;
    right: 0;
  }
}
/* line 8, less/components/edit-item-view.less */
.edit-item-view,
.edit-item-view textarea,
.edit-item-view input {
  font-size: 14px;
  outline: none;
}
/* line 14, less/components/edit-item-view.less */
.edit-item-view h2 {
  text-align: left;
  font-size: 18px;
  line-height: 60px;
  height: 60px;
  padding: 0 20px;
}
/* line 21, less/components/edit-item-view.less */
.edit-item-view a {
  text-decoration: underline;
  cursor: pointer;
}
/* line 24, less/components/edit-item-view.less */
.edit-item-view a.primary {
  background-color: black;
  color: white;
  text-decoration: inherit;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 31, less/components/edit-item-view.less */
.edit-item-view a.disabled {
  cursor: inherit;
  pointer-events: none;
  background-color: #808080;
}
/* line 37, less/components/edit-item-view.less */
.edit-item-view .flip-compose textarea {
  height: 260px;
}
/* line 40, less/components/edit-item-view.less */
.edit-item-view textarea,
.edit-item-view input {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  border: solid 1px #dddddd;
}
/* line 46, less/components/edit-item-view.less */
.edit-item-view textarea {
  line-height: 23px;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 51, less/components/edit-item-view.less */
.edit-item-view input,
.edit-item-view label {
  line-height: 30px;
  height: 30px;
}
/* line 55, less/components/edit-item-view.less */
.edit-item-view .close-button {
  position: absolute;
  right: 25px;
  top: 24px;
  left: auto;
  z-index: 2;
}
/* line 63, less/components/edit-item-view.less */
.edit-item-view .item-fields {
  margin-top: 30px;
}
/* line 66, less/components/edit-item-view.less */
.edit-item-view .control-group {
  margin-bottom: 10px;
  display: -ms-flexbox;
  display: flex;
}
/* line 70, less/components/edit-item-view.less */
.edit-item-view .control-group > *:first-child {
  width: 170px;
  padding-right: 10px;
  text-align: right;
}
/* line 75, less/components/edit-item-view.less */
.edit-item-view .control-group > *:last-child {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 81, less/components/edit-item-view.less */
.edit-item-view .item-caption label {
  margin-top: 4px;
  display: inline-block;
}
/* line 87, less/components/edit-item-view.less */
.edit-item-view .edit-item-view-body {
  padding: 20px;
  padding-top: 0;
}
/* line 91, less/components/edit-item-view.less */
.edit-item-view .edit-item-view-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 25px;
  text-align: right;
  border-top: solid 1px #dddddd;
}
/* line 99, less/components/edit-item-view.less */
.edit-item-view .edit-item-view-footer > * {
  display: inline-block;
  margin-left: 20px;
  line-height: 30px;
  height: 30px;
}
/* line 106, less/components/edit-item-view.less */
.edit-item-view .edit-item-delete {
  float: left;
  margin-left: 0;
}
/* line 110, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
/* line 117, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image > .header {
  background-color: white;
  height: 60px;
  padding: 0 20px;
  opacity: 1;
  border-bottom: solid 1px #f1f1f1;
  display: -ms-flexbox;
  display: flex;
}
/* line 124, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image > .header > * {
  line-height: 60px;
  height: 60px;
}
/* line 128, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image > .header h2 {
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: center;
}
/* line 133, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image .picker-image {
  position: absolute;
  top: 60px;
  bottom: 0;
  width: 100%;
  background-color: white;
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* line 144, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image.edit-item-picker-image-enter > .header,
.edit-item-view .edit-item-picker-image.edit-item-picker-image-leave > .header {
  transition: 0.2s ease-in-out opacity;
}
/* line 147, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image.edit-item-picker-image-enter .picker-image,
.edit-item-view .edit-item-picker-image.edit-item-picker-image-leave .picker-image {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
/* line 158, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image.edit-item-picker-image-leave > .header,
.edit-item-view .edit-item-picker-image.edit-item-picker-image-enter.edit-item-picker-image-enter-active > .header {
  opacity: 1;
}
/* line 161, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image.edit-item-picker-image-leave .picker-image,
.edit-item-view .edit-item-picker-image.edit-item-picker-image-enter.edit-item-picker-image-enter-active .picker-image {
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* line 167, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image.edit-item-picker-image-enter > .header,
.edit-item-view .edit-item-picker-image.edit-item-picker-image-leave.edit-item-picker-image-leave-active > .header {
  opacity: 0;
}
/* line 170, less/components/edit-item-view.less */
.edit-item-view .edit-item-picker-image.edit-item-picker-image-enter .picker-image,
.edit-item-view .edit-item-picker-image.edit-item-picker-image-leave.edit-item-picker-image-leave-active .picker-image {
  -ms-transform: translateY(360px);
  transform: translateY(360px);
}
/* line 1, less/components/editor/cover-options-view.less */
.editor-cover-options-view {
  position: absolute;
  top: 252px;
  left: 40px;
  background-color: white;
  border: solid 1px #e0e0e0;
  z-index: 31;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 10px 0;
}
/* line 12, less/components/editor/cover-options-view.less */
.editor-cover-options-view:before {
  display: block;
  content: "";
  position: absolute;
  top: -10px;
  left: 60px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}
/* line 24, less/components/editor/cover-options-view.less */
.editor-cover-options-view li {
  padding: 5px 20px;
  cursor: pointer;
}
/* line 27, less/components/editor/cover-options-view.less */
.editor-cover-options-view li:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
/* line 31, less/components/editor/cover-options-view.less */
.editor-cover-options-view .hint {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  color: #999;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
}
/* line 1, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view {
  position: fixed;
  background-color: #ffffff;
  z-index: 31;
}
@media (min-height: 477px) {
  /* line 435, ../app/assets/less/mixins.less */
  .editor-cover-set-item-view {
    top: 50%;
    height: 450px;
    margin-top: -225px;
  }
}
@media (max-height: 450px) {
  /* line 440, ../app/assets/less/mixins.less */
  .editor-cover-set-item-view {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 705px) {
  /* line 461, ../app/assets/less/mixins.less */
  .editor-cover-set-item-view {
    left: 50%;
    margin-left: -352px;
    width: 704px;
  }
}
@media (max-width: 704px) {
  /* line 466, ../app/assets/less/mixins.less */
  .editor-cover-set-item-view {
    left: 0;
    right: 0;
  }
}
/* line 7, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view h2 {
  text-align: left;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  padding: 0 20px;
  text-transform: uppercase;
}
/* line 15, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view ul {
  position: absolute;
  overflow-y: auto;
  top: 50px;
  bottom: 50px;
}
/* line 21, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view > .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  text-align: right;
  font-size: 12px;
}
/* line 29, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view > .footer a {
  cursor: pointer;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  margin-left: 20px;
  text-decoration: underline;
}
/* line 36, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view > .footer a.primary {
  background-color: black;
  color: white;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 42, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view > .footer a.primary.disabled {
  cursor: default;
  background-color: #999;
}
/* line 49, less/components/editor/cover-set-item-view.less */
.editor-cover-set-item-view .close-button {
  position: absolute;
  right: 16px;
  top: 16px;
  left: auto;
}
/* line 1, less/components/editor/magazine-contributors-view.less */
.editor-magazine-contributors-view {
  position: fixed;
  background-color: #ffffff;
  z-index: 31;
}
@media (min-height: 527px) {
  /* line 435, ../app/assets/less/mixins.less */
  .editor-magazine-contributors-view {
    top: 50%;
    height: 500px;
    margin-top: -250px;
  }
}
@media (max-height: 500px) {
  /* line 440, ../app/assets/less/mixins.less */
  .editor-magazine-contributors-view {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 281px) {
  /* line 461, ../app/assets/less/mixins.less */
  .editor-magazine-contributors-view {
    left: 50%;
    margin-left: -140px;
    width: 280px;
  }
}
@media (max-width: 280px) {
  /* line 466, ../app/assets/less/mixins.less */
  .editor-magazine-contributors-view {
    left: 0;
    right: 0;
  }
}
/* line 484, ../app/assets/less/mixins.less */
.editor-magazine-contributors-view .close-button {
  position: absolute;
  left: 16px;
  top: 16px;
}
/* line 6, less/components/editor/magazine-contributors-view.less */
.editor-magazine-contributors-view h2 {
  text-align: center;
  padding: 16px 0;
  font-size: 16px;
  line-height: 20px;
}
/* line 12, less/components/editor/magazine-contributors-view.less */
.editor-magazine-contributors-view .editor-magazine-contributors-view-body {
  position: absolute;
  top: 60px;
  bottom: 0;
  width: 100%;
  overflow-y: scroll;
  font-size: 12px;
  line-height: 15px;
}
/* line 20, less/components/editor/magazine-contributors-view.less */
.editor-magazine-contributors-view .magazine-contributors-can-invite {
  padding: 5px 0;
  margin: 0 20px 10px 20px;
  border-bottom: solid 1px #ddd;
}
/* line 25, less/components/editor/magazine-contributors-view.less */
.editor-magazine-contributors-view .modifiable-list.expanded > li {
  padding-left: 20px;
  padding-righr: 20px;
}
/* line 1, less/components/editor/magazine.less */
.editor-magazine {
  margin: 75px auto 0;
  display: -ms-flexbox;
  display: flex;
}
/* line 5, less/components/editor/magazine.less */
.editor-magazine.advanced-editor {
  margin-top: 25px;
}
/* line 9, less/components/editor/magazine.less */
.editor-magazine .primary-column {
  -ms-flex: 1;
      flex: 1;
  overflow: hidden;
}
/* line 14, less/components/editor/magazine.less */
.editor-magazine .secondary-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  border-right: solid 1px #ddd;
  font-size: 13px;
  line-height: 16px;
  padding: 0 20px;
}
/* line 22, less/components/editor/magazine.less */
.editor-magazine .secondary-column h3 {
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 300;
}
/* line 29, less/components/editor/magazine.less */
.editor-magazine .secondary-column h3 [data-tooltip] {
  text-transform: none;
}
/* line 33, less/components/editor/magazine.less */
.editor-magazine .secondary-column ul.secondary-column-items {
  width: 240px;
}
/* line 35, less/components/editor/magazine.less */
.editor-magazine .secondary-column ul.secondary-column-items > li {
  margin-bottom: 18px;
}
/* line 37, less/components/editor/magazine.less */
.editor-magazine .secondary-column ul.secondary-column-items > li .tab-title {
  position: absolute;
  cursor: pointer;
  margin-left: 25px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 2px;
  font-weight: 600;
}
/* line 47, less/components/editor/magazine.less */
.editor-magazine .secondary-column ul.secondary-column-items > li .tab-data {
  color: #999;
  margin-left: 3px;
}
/* line 50, less/components/editor/magazine.less */
.editor-magazine .secondary-column ul.secondary-column-items > li .tab-data:before {
  content: ' \00B7\00a0\00a0';
}
/* line 57, less/components/editor/magazine.less */
.editor-magazine .secondary-column .editor-magazine-overview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex: 1;
      flex: 1;
}
/* line 65, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents {
  position: relative;
  overflow: auto;
  height: 100%;
  padding: 25px;
  width: 100%;
}
/* line 71, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .collapse-button {
  position: absolute;
  top: -15px;
  left: 10px;
}
/* line 75, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .collapse-button:before {
  border-left-width: 5px;
  border-left-style: solid;
}
/* line 81, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area {
  position: relative;
  display: inline-block;
}
/* line 84, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area .editor-remove-x-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  stroke-width: 1.0;
}
/* line 92, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon line,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon path,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon polygon,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon polyline,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon rect {
  stroke: #999999;
}
/* line 95, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon:hover {
  cursor: pointer;
}
/* line 97, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon:hover line,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon:hover path,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon:hover polygon,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon:hover polyline,
.editor-magazine .primary-column-contents .magazine-member-area:hover .editor-remove-x-icon:hover rect {
  stroke: #000;
}
/* line 104, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area .magazine-member {
  display: inline-block;
  padding: 25px;
  width: 225px;
}
/* line 109, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area .magazine-member .avatar {
  height: 75px;
  width: 75px;
  margin: auto;
}
/* line 114, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area .magazine-member .member-name {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: #262626;
}
/* line 120, less/components/editor/magazine.less */
.editor-magazine .primary-column-contents .magazine-member-area .magazine-member .member-description {
  text-align: center;
  color: #999;
  font-size: 14px;
}
/* line 130, less/components/editor/magazine.less */
.editor-magazine .magazine-actions li {
  margin-bottom: 16px;
}
/* line 133, less/components/editor/magazine.less */
.editor-magazine .magazine-actions a {
  cursor: pointer;
  text-decoration: underline;
}
/* line 136, less/components/editor/magazine.less */
.editor-magazine .magazine-actions a:hover {
  color: #09c;
}
/* line 139, less/components/editor/magazine.less */
.editor-magazine .magazine-actions a.disabled,
.editor-magazine .magazine-actions a.disabled:hover {
  cursor: inherit;
  color: #999;
  text-decoration: inherit;
}
/* line 147, less/components/editor/magazine.less */
.editor-magazine .collapse-button {
  cursor: pointer;
  padding: 10px;
}
/* line 151, less/components/editor/magazine.less */
.editor-magazine .collapse-button:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right-color: #999;
  border-left-color: #999;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* line 161, less/components/editor/magazine.less */
.editor-magazine .collapse-button.tooltip:after {
  top: 0;
  left: 25px;
}
/* line 1, less/components/editor/magazine-header.less */
.editor-magazine-header {
  position: relative;
  padding: 15px 10px;
  font-size: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 8, less/components/editor/magazine-header.less */
.editor-magazine-header > .primary {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 12, less/components/editor/magazine-header.less */
.editor-magazine-header .editor-magazine-title,
.editor-magazine-header .editor-magazine-description {
  max-width: 500px;
}
/* line 16, less/components/editor/magazine-header.less */
.editor-magazine-header .editor-magazine-title {
  font-size: 28px;
  font-weight: 500;
}
/* line 21, less/components/editor/magazine-header.less */
.editor-magazine-header .editor-magazine-header-links > * {
  margin-left: 10px;
}
/* line 25, less/components/editor/magazine-header.less */
.editor-magazine-header .editor-magazine-header-links .button,
.editor-magazine-header .editor-magazine-header-links .button.bold {
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
}
/* line 32, less/components/editor/magazine-header.less */
.editor-magazine-header .magazine-stats {
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  margin-bottom: 7px;
  margin-top: 2px;
  min-height: 20px;
}
/* line 38, less/components/editor/magazine-header.less */
.editor-magazine-header .magazine-stats li {
  margin-right: 30px;
}
/* line 40, less/components/editor/magazine-header.less */
.editor-magazine-header .magazine-stats li:last-child {
  margin-right: 0;
}
/* line 44, less/components/editor/magazine-header.less */
.editor-magazine-header .magazine-stats .value {
  font-weight: 600;
}
/* line 4, less/components/editor/magazine-items.less */
.editor-magazine-items .sortable-grid.dragging .editor-item-tile:hover:before {
  transition: none;
}
/* line 10, less/components/editor/magazine-items.less */
.editor-magazine-items .sortable-grid.dragging .editor-item-tile:hover:after {
  animation: none;
}
/* line 19, less/components/editor/magazine-items.less */
.editor-magazine-items .draggable.dragging {
  border-bottom: none;
}
/* line 22, less/components/editor/magazine-items.less */
.editor-magazine-items .draggable.dragging .editor-item-tile:before {
  opacity: 0;
}
/* line 26, less/components/editor/magazine-items.less */
.editor-magazine-items .draggable.dragging .editor-item-tile:after {
  opacity: 1;
}
/* line 29, less/components/editor/magazine-items.less */
.editor-magazine-items .draggable.dragging .editor-item-tile-actions {
  visibility: hidden;
}
/* line 33, less/components/editor/magazine-items.less */
.editor-magazine-items .draggable.first-item .move-to-top {
  display: none;
}
/* line 36, less/components/editor/magazine-items.less */
.editor-magazine-items .draggable.first-row .move-to-top {
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* line 40, less/components/editor/magazine-items.less */
.editor-magazine-items .load-more {
  margin-top: 40px;
  text-align: center;
}
/* line 2, less/components/editor/magazine-members.less */
.editor.editor-magazine .invite-contributors-view {
  padding: 0;
  padding-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
/* line 7, less/components/editor/magazine-members.less */
.editor.editor-magazine .invite-contributors-view h5 {
  margin-top: 0;
}
/* line 3, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__header {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.25em;
}
/* line 6, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__header h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.25em;
}
/* line 11, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__header p {
  color: #999;
  margin-bottom: 0.5em;
}
/* line 15, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__header a {
  text-decoration: underline;
}
/* line 20, less/components/editor/magazine-sources.less */
.editor-magazine-sources .add-pipe-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 24, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__add-pipe {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  position: relative;
  cursor: pointer;
  color: #999;
  font-weight: bold;
}
/* line 30, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__add-pipe:before {
  content: "+";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 6px;
  font-size: 32px;
  line-height: 1;
  height: 100%;
}
/* line 41, less/components/editor/magazine-sources.less */
.editor-magazine-sources .add-pipe {
  cursor: pointer;
  width: 100%;
  padding: 0 12px 0 28px;
  font-size: 16px;
  line-height: 32px;
  border: 1px solid transparent;
  outline: none;
}
/* line 51, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__add-pipe.active .add-pipe {
  border: 1px solid #ddd;
  cursor: text;
}
/* line 54, less/components/editor/magazine-sources.less */
.editor-magazine-sources .magazine-sources__add-pipe.active .add-pipe:focus {
  color: #333;
  border-color: #ccc;
}
/* line 60, less/components/editor/magazine-sources.less */
.editor-magazine-sources .add-pipe__include-items {
  display: block;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  margin-top: .5em;
  margin-left: 26px;
}
/* line 67, less/components/editor/magazine-sources.less */
.editor-magazine-sources .add-pipe__include-items input {
  margin-right: .5em;
}
/* line 72, less/components/editor/magazine-sources.less */
.editor-magazine-sources .add-pipe__button {
  height: 34px;
  margin-left: 1em;
}
/* line 78, less/components/editor/magazine-sources.less */
.editor-magazine-sources .pipe-errors {
  margin: 24px 0 0;
  cursor: default;
}
/* line 81, less/components/editor/magazine-sources.less */
.editor-magazine-sources .pipe-errors a {
  text-decoration: underline;
}
/* line 83, less/components/editor/magazine-sources.less */
.editor-magazine-sources .pipe-errors a:hover {
  text-decoration: none;
}
/* line 88, less/components/editor/magazine-sources.less */
.editor-magazine-sources .pipe-errors__error {
  list-style: disc;
  margin: 0 0 12px 36px;
  color: #F52828;
}
/* line 92, less/components/editor/magazine-sources.less */
.editor-magazine-sources .pipe-errors__error:last-child {
  margin-bottom: 0;
}
/* line 96, less/components/editor/magazine-sources.less */
.editor-magazine-sources .pipe-errors__list {
  margin-top: 8px;
}
/* line 2, less/components/editor/magazine-toggle-overview.less */
.editor-magazine-toggle-overview .hint {
  cursor: pointer;
  width: 170px;
}
/* line 7, less/components/editor/magazine-toggle-overview.less */
.editor-magazine-toggle-overview .editor-magazine-toggle-overview-body {
  display: -ms-flexbox;
  display: flex;
}
/* line 10, less/components/editor/magazine-toggle-overview.less */
.editor-magazine-toggle-overview .toggle {
  margin-left: 20px;
  margin-top: 3px;
}
/* line 14, less/components/editor/magazine-toggle-overview.less */
.editor-magazine-toggle-overview.disabled {
  color: #999;
}
/* line 16, less/components/editor/magazine-toggle-overview.less */
.editor-magazine-toggle-overview.disabled .hint {
  cursor: inherit;
}
/* line 1, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy {
  width: 100%;
  background-color: #f7f7f7;
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  margin: 0 auto;
}
/* line 8, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy > .content {
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 1152px;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 16, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy .logo {
  float: left;
  margin-right: 20px;
}
/* line 20, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy .editor-navigation-bar-legacy-nav:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
/* line 27, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy li {
  color: #505050;
  height: 50px;
  padding: 15px 0 0 0;
  float: left;
  margin: 0 20px 0 0;
  font-weight: 500;
}
/* line 34, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy li.right {
  float: right;
  margin: 0 0 0 20px;
}
/* line 38, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy li.nav-share,
.editor-navigation-bar-legacy li.nav-account {
  text-transform: uppercase;
}
/* line 42, less/components/editor/navigation-bar-legacy.less */
.editor-navigation-bar-legacy li.nav-sign {
  color: #999;
  border-left: 1px solid #DDD;
  padding-left: 16px;
}
/* line 2, less/components/editor/item-tile-album.less */
.editor-item-tile-album .editor-item-tile-album-cell {
  display: -ms-flexbox;
  display: flex;
}
/* line 4, less/components/editor/item-tile-album.less */
.editor-item-tile-album .editor-item-tile-album-cell.column {
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 2, less/components/editor/item-tile-audio.less */
.editor-item-tile-audio .editor-item-tile-thumb {
  position: relative;
}
/* line 5, less/components/editor/item-tile-audio.less */
.editor-item-tile-audio .play-button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 1, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading {
  display: block;
}
/* line 3, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .editor-item-tile-inner {
  display: block;
  cursor: default;
}
/* line 6, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .editor-item-tile-inner:hover {
  box-shadow: none;
  animation-name: none;
}
/* line 9, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .editor-item-tile-inner:hover:before,
.editor-item-tile.editor-item-tile-loading .editor-item-tile-inner:hover:after {
  display: none;
}
/* line 15, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .placeholder {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 17, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .placeholder.thumb {
  height: 179px;
  margin-bottom: 15px;
}
/* line 21, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .placeholder.header-line {
  height: 15px;
  margin-bottom: 5px;
}
/* line 24, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .placeholder.header-line.short {
  width: 80%;
}
/* line 29, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading ul.placeholder {
  background-color: inherit;
  margin-top: 10px;
}
/* line 32, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading ul.placeholder li {
  display: "inline-block";
  width: 100px;
  height: 10px;
  margin-bottom: 5px;
  margin-right: 5px;
  background-color: rgba(0, 0, 0, 0.02);
}
/* line 39, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading ul.placeholder li.short {
  width: 60px;
}
/* line 45, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .editor-item-tile-outer-footer ul.placeholder {
  text-align: right;
  margin-top: 10px;
}
/* line 48, less/components/editor/item-tile-loading.less */
.editor-item-tile.editor-item-tile-loading .editor-item-tile-outer-footer ul.placeholder li {
  height: 20px;
  width: 20px;
}
/* line 2, less/components/editor/item-tile-section.less */
.editor-item-tile-section .editor-item-tile-inner-body {
  position: relative;
}
/* line 5, less/components/editor/item-tile-section.less */
.editor-item-tile-section .cropped-image:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.35);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 16, less/components/editor/item-tile-section.less */
.editor-item-tile-section-overlay {
  color: white;
  display: block;
  position: absolute;
  z-index: 2;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 140px;
  margin-left: -70px;
  border: solid 2px white;
}
/* line 27, less/components/editor/item-tile-section.less */
.editor-item-tile-section-overlay .section-author {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
  font-weight: 700;
  word-wrap: break-word;
}
/* line 2, less/components/editor/item-tile-status.less */
.editor-item-tile-status .editor-item-tile-body {
  -ms-flex-positive: 1;
      flex-grow: 1;
  position: relative;
}
/* line 6, less/components/editor/item-tile-status.less */
.editor-item-tile-status .editor-item-tile-spacer {
  display: none;
}
/* line 9, less/components/editor/item-tile-status.less */
.editor-item-tile-status .status {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 16, less/components/editor/item-tile-status.less */
.editor-item-tile-status .curator-actions {
  display: none;
}
/* line 3, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise.has-image .editor-item-tile-franchise-header {
  -ms-flex-positive: 0;
      flex-grow: 0;
}
/* line 7, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise .editor-item-tile-body {
  color: white;
  text-align: center;
  position: relative;
  -ms-flex-positive: 2;
      flex-grow: 2;
}
/* line 12, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise .editor-item-tile-body > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 22, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise .editor-item-tile-spacer {
  -ms-flex-positive: initial;
      flex-grow: initial;
}
/* line 25, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise .editor-item-tile-franchise-header {
  padding-top: 10px;
  padding-bottom: 10px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 30, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise .editor-item-tile-franchise-image {
  -ms-flex-positive: 2;
      flex-grow: 2;
}
/* line 33, less/components/editor/item-tile-franchise.less */
.editor-item-tile-franchise .editor-item-tile-franchise-num-articles {
  font-size: 13px;
}
/* line 1, less/components/editor/magazine-cover.less */
.editor-magazine-cover {
  position: relative;
  overflow: hidden;
}
/* line 5, less/components/editor/magazine-cover.less */
.editor-magazine-cover:hover .hint,
.editor-magazine-cover.options-active .hint {
  bottom: 0;
}
/* line 10, less/components/editor/magazine-cover.less */
.editor-magazine-cover .magazine-info {
  position: absolute;
  top: 25px;
  left: 20px;
  color: white;
  padding: 5px 0px;
}
/* line 17, less/components/editor/magazine-cover.less */
.editor-magazine-cover .magazine-info .magazine-title {
  width: 200px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
  margin-bottom: 20px;
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  text-transform: uppercase;
  padding: 10px;
}
/* line 33, less/components/editor/magazine-cover.less */
.editor-magazine-cover .magazine-info .magazine-description {
  width: 200px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  height: 125px;
  padding: 15px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  word-wrap: break-word;
}
/* line 45, less/components/editor/magazine-cover.less */
.editor-magazine-cover .hint {
  transition: 0.14s ease-in bottom;
  cursor: pointer;
  position: absolute;
  color: white;
  font-size: 13px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  right: 0;
}
/* line 61, less/components/editor/magazine-cover.less */
.editor-magazine-cover.dragging .hint {
  display: none;
}
/* line 7, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  position: relative;
  min-height: 479px;
  width: 75vw;
  max-width: 960px;
  padding: 40px;
  margin: 0 auto;
  overflow: auto;
  z-index: 30;
  background-color: #fff;
}
/* line 20, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .copy-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-positive: 2;
      flex-grow: 2;
  position: relative;
  z-index: 1;
  height: 100%;
  width: calc(100% - (213px + 40px));
}
/* line 29, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .image-container {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 386px;
  height: 379px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
}
/* line 38, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .image-container__image {
  -ms-flex-preferred-size: 213px;
      flex-basis: 213px;
  background-image: url(/images/red-bolt-screenshot.jpg);
  background-repeat: no-repeat;
}
@media only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 12, less/mixins/image-2x.less */
  .submission-complete-modal .image-container__image {
    background-image: url(/images/red-bolt-screenshot@2x.jpg);
    background-size: 213px 379px;
  }
}
/* line 42, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .image-container__red-bolt-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-preferred-size: 173px;
      flex-basis: 173px;
  padding: 0 8px 40px 0;
  font-size: 9px;
}
/* line 51, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .red-bolt-icon {
  margin-bottom: 2px;
}
/* line 54, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .red-bolt-text__tagline {
  text-align: right;
  line-height: 1;
}
/* line 59, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal h2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #262626;
  margin: 0 0 45px;
}
/* line 73, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal p {
  color: #999;
  margin-bottom: 1em;
}
/* line 78, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal .button-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 2;
      flex-grow: 2;
  -ms-flex-align: end;
      align-items: flex-end;
}
/* line 84, less/components/editor/publisher-submission-complete.less */
.submission-complete-modal button {
  height: 34px;
  line-height: 32px;
}
/* line 1, less/components/embed-view.less */
.embed-view {
  position: fixed;
  z-index: 31;
  padding: 50px;
  background: #fff;
  overflow: scroll;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media (min-height: 327px) {
  /* line 435, ../app/assets/less/mixins.less */
  .embed-view {
    top: 50%;
    height: 300px;
    margin-top: -150px;
  }
}
@media (max-height: 300px) {
  /* line 440, ../app/assets/less/mixins.less */
  .embed-view {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 531px) {
  /* line 461, ../app/assets/less/mixins.less */
  .embed-view {
    left: 50%;
    margin-left: -265px;
    width: 530px;
  }
}
@media (max-width: 530px) {
  /* line 466, ../app/assets/less/mixins.less */
  .embed-view {
    left: 0;
    right: 0;
  }
}
/* line 484, ../app/assets/less/mixins.less */
.embed-view .close-button {
  position: absolute;
  left: 16px;
  top: 16px;
}
/* line 11, less/components/embed-view.less */
.embed-view .preview {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-right: 30px;
  width: 150px;
  height: 200px;
  background-color: #f2f2f2;
}
/* line 20, less/components/embed-view.less */
.embed-view .preview iframe {
  border: 0;
  overflow: hidden;
}
/* line 25, less/components/embed-view.less */
.embed-view .share-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
/* line 31, less/components/embed-view.less */
.embed-view .share-code {
  overflow: auto;
  border: none;
  resize: none;
  padding: 9px 12px;
  background-color: #f2f2f2;
  color: #999;
  font-size: 11px;
  width: 100%;
  height: 140px;
  outline: none;
}
/* line 1, less/components/excerpt.less */
.excerpt {
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  overflow: hidden;
  color: #333;
}
/* line 9, less/components/excerpt.less */
.light .excerpt {
  color: #fff;
}
/* line 13, less/components/excerpt.less */
.excerpt b {
  font-weight: inherit;
}
/* line 17, less/components/excerpt.less */
.excerpt em,
.excerpt i {
  font-style: italic;
  font-weight: normal;
}
/* line 23, less/components/excerpt.less */
.excerpt p:before {
  content: " ";
}
/* line 27, less/components/excerpt.less */
.excerpt p {
  display: inline;
  font-weight: inherit;
}
/* line 1, less/components/explore-view.less */
.explore-view {
  position: relative;
  width: 100%;
}
/* line 4, less/components/explore-view.less */
.explore-view .explore-highlight {
  position: relative;
  width: 100%;
  color: #000;
  text-align: center;
}
/* line 10, less/components/explore-view.less */
.explore-view .explore-section {
  margin: 0 auto;
}
/* line 13, less/components/explore-view.less */
.explore-view .explore-section-header {
  margin: 20px 0;
}
/* line 16, less/components/explore-view.less */
.explore-view .explore-footer {
  position: relative;
  margin: 50px auto;
  color: #000;
}
/* line 20, less/components/explore-view.less */
.explore-view .explore-footer .explore-footer-big-text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
}
/* line 26, less/components/explore-view.less */
.explore-view .explore-footer .explore-footer-small-text {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}
/* line 32, less/components/explore-view.less */
.explore-view .loading {
  position: relative;
  margin: 50px auto;
  top: 0;
}
@media (max-width: 767px) {
  /* line 40, less/components/explore-view.less */
  .explore-view__search-wrapper {
    margin-top: 70px;
    width: 100%;
  }
  /* line 44, less/components/explore-view.less */
  .explore-view__search-wrapper .search-input {
    width: 100%;
  }
}
/* line 1, less/components/external-social-actions.less */
.external-social-actions {
  font-size: 12px;
  line-height: 19px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  text-transform: lowercase;
}
/* line 10, less/components/external-social-actions.less */
.light .external-social-actions li g,
.light .external-social-actions li:hover g,
.light .external-social-actions li path,
.light .external-social-actions li:hover path {
  stroke: white;
}
/* line 16, less/components/external-social-actions.less */
.light .external-social-actions li.active g,
.light .external-social-actions li.active path {
  stroke: #4dd2ff;
}
/* line 24, less/components/external-social-actions.less */
.external-social-actions li {
  display: inline-block;
  padding: 1px 5px 0px 5px;
  cursor: pointer;
  color: #999;
}
/* line 29, less/components/external-social-actions.less */
.external-social-actions li g,
.external-social-actions li path {
  stroke: #bbb;
}
/* line 32, less/components/external-social-actions.less */
.external-social-actions li:hover {
  color: #000;
}
/* line 34, less/components/external-social-actions.less */
.external-social-actions li:hover g,
.external-social-actions li:hover path {
  stroke: #000;
}
/* line 38, less/components/external-social-actions.less */
.external-social-actions li:first-letter {
  text-transform: uppercase;
}
/* line 41, less/components/external-social-actions.less */
.external-social-actions li:first-child {
  padding-left: 0;
}
/* line 44, less/components/external-social-actions.less */
.external-social-actions li:last-child {
  padding-right: 0;
}
/* line 47, less/components/external-social-actions.less */
.external-social-actions li.active {
  cursor: inherit;
  color: #09c;
}
/* line 50, less/components/external-social-actions.less */
.external-social-actions li.active g,
.external-social-actions li.active path {
  stroke: #09c;
}
/* line 1, less/components/face-pile.less */
.face-pile {
  cursor: pointer;
  position: relative;
  left: 7px;
  top: 2px;
}
/* line 7, less/components/face-pile.less */
.face-pile .faces {
  display: -ms-flexbox;
  display: flex;
}
/* line 11, less/components/face-pile.less */
.face-pile .avatar {
  float: left;
  border: 2px solid #fff;
  background-color: #fff;
  margin-left: -7px;
  width: 25px;
  height: 25px;
}
@media (min-resolution: 192dpi) {
  /* line 19, less/components/face-pile.less */
  .face-pile .avatar {
    border-width: 1px;
  }
}
/* line 25, less/components/face-pile.less */
.face-pile + .stats-text {
  line-height: 30px;
  padding-left: 12px;
}
/* line 31, less/components/face-pile.less */
.cover-main-item .face-pile,
.photo-page .face-pile,
.cover-main-item .face-pile + .stats-text,
.photo-page .face-pile + .stats-text {
  position: relative;
  top: 5px;
}
/* line 4, less/components/favorite-context-menu.less */
.favorite-context-menu {
  display: inline-block;
  position: relative;
}
/* line 9, less/components/favorite-context-menu.less */
.favorite-context-menu__items {
  position: absolute;
  top: 38px;
  right: -70px;
  min-width: 160px;
  z-index: 20;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}
/* line 19, less/components/favorite-context-menu.less */
.favorite-context-menu__items.hidden {
  display: none;
}
/* line 25, less/components/favorite-context-menu.less */
.favorite-context-menu__item {
  color: black;
  margin: 5px 0;
  padding: 0 12px;
  cursor: pointer;
  pointer-events: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
/* line 35, less/components/favorite-context-menu.less */
.favorite-context-menu__item:hover {
  color: #09c;
}
/* line 41, less/components/favorite-context-menu.less */
.context-menu-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 30px;
  width: 30px;
  padding: 3px;
  border-radius: 30px;
  cursor: pointer;
  pointer-events: auto;
}
/* line 53, less/components/favorite-context-menu.less */
.context-menu-button:hover {
  background-color: #3c3c3c;
}
/* line 55, less/components/favorite-context-menu.less */
.context-menu-button:hover .context-menu-button__dot {
  background-color: white;
}
/* line 60, less/components/favorite-context-menu.less */
.context-menu-button.open {
  background-color: #3c3c3c;
}
/* line 62, less/components/favorite-context-menu.less */
.context-menu-button.open .context-menu-button__dot {
  background-color: white;
}
/* line 67, less/components/favorite-context-menu.less */
.context-menu-button.light.open {
  background-color: #3c3c3c;
}
/* line 72, less/components/favorite-context-menu.less */
.context-menu-button__dot {
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background-color: black;
}
/* line 78, less/components/favorite-context-menu.less */
.light .context-menu-button__dot {
  background-color: white;
}
/* line 9, less/components/favorites-menu.less */
.favorites-menu {
  position: relative;
  width: calc(100% - 300px);
  height: 60px;
  padding: 0px 30px;
  border-right: 1px solid #e5e5e5;
}
/* line 15, less/components/favorites-menu.less */
.favorites-menu .favorites {
  height: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  z-index: 2;
}
/* line 24, less/components/favorites-menu.less */
.favorites-menu .favorites-container {
  transition: 0.3s ease-out transform;
  position: absolute;
  height: 60px;
  white-space: nowrap;
}
/* line 31, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite {
  display: inline-block;
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #CCC;
  letter-spacing: 0.2px;
  font-weight: 900;
  line-height: 61px;
  height: 60px;
  text-transform: uppercase;
  margin-right: 18px;
  white-space: nowrap;
  z-index: 11;
  overflow: hidden;
  opacity: 0.7;
  vertical-align: top;
  transition: color 0.3s ease;
}
/* line 50, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite:hover {
  color: #999999;
}
/* line 54, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .favorite-hint-message {
  line-height: 0;
  color: #F52828;
  position: relative;
  top: 10px;
  font-size: 14px;
}
/* line 62, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .favorite-enter {
  opacity: 0;
}
/* line 66, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .favorite-enter.favorite-enter-active {
  opacity: 1;
  transition: opacity 500ms ease-in;
}
/* line 71, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .favorite-leave {
  opacity: 1;
}
/* line 75, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .favorite-leave.favorite-leave-active {
  opacity: 0.01;
  transition: opacity 300ms ease-in;
}
/* line 80, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite.overflow {
  display: none;
}
/* line 84, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite:last-child {
  margin-right: 0;
}
/* line 88, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite.active,
.favorites-menu .favorites__favorite:active {
  color: #000;
  opacity: 1;
}
/* line 93, less/components/favorites-menu.less */
.translucent .favorites-menu .favorites__favorite.active,
.translucent .favorites-menu .favorites__favorite:active,
.dark .favorites-menu .favorites__favorite.active,
.dark .favorites-menu .favorites__favorite:active {
  color: #FFF;
}
/* line 97, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite.active .favorites-menu__dynamic-home-item,
.favorites-menu .favorites__favorite:active .favorites-menu__dynamic-home-item {
  opacity: 1;
}
/* line 102, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite.highlighted {
  color: #F52828;
  opacity: 1;
}
/* line 106, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite.highlighted .favorites-menu__dynamic-home-item {
  opacity: 1;
}
/* line 111, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .hover {
  opacity: 0.7;
}
/* line 114, less/components/favorites-menu.less */
.favorites-menu .favorites__favorite .hover .favorites-menu__dynamic-home-item {
  opacity: 0.7;
}
/* line 120, less/components/favorites-menu.less */
.favorites-menu .pan-control {
  position: absolute;
  top: 0px;
  width: 30px;
  height: 60px;
  z-index: 11;
  cursor: pointer;
}
/* line 128, less/components/favorites-menu.less */
.favorites-menu .pan-control .nav-arrow {
  margin: 22px 9px;
}
/* line 131, less/components/favorites-menu.less */
.favorites-menu .pan-control .nav-arrow.rotated {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 140, less/components/favorites-menu.less */
.favorites-menu .pan-control--searching {
  z-index: 0;
}
/* line 144, less/components/favorites-menu.less */
.favorites-menu .pan-control--right {
  right: 0;
}
/* line 147, less/components/favorites-menu.less */
.favorites-menu .pan-control--right::before {
  content: "";
  display: inline-block;
  width: 30px;
  margin-left: -30px;
  height: 60px;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  pointer-events: none;
}
/* line 156, less/components/favorites-menu.less */
.translucent .favorites-menu .pan-control--right::before,
.dark .favorites-menu .pan-control--right::before {
  display: none;
}
/* line 162, less/components/favorites-menu.less */
.favorites-menu .pan-control--left {
  left: 0;
}
/* line 165, less/components/favorites-menu.less */
.favorites-menu .pan-control--left::after {
  content: "";
  display: inline-block;
  width: 30px;
  margin-right: -30px;
  height: 60px;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  pointer-events: none;
}
/* line 174, less/components/favorites-menu.less */
.translucent .favorites-menu .pan-control--left::after,
.dark .favorites-menu .pan-control--left::after {
  display: none;
}
/* line 181, less/components/favorites-menu.less */
.bar.translucent .favorites-menu,
.bar.dark .favorites-menu {
  border-right: none;
}
/* line 186, less/components/favorites-menu.less */
.favorites-menu__dynamic-home-item {
  height: 16px;
  vertical-align: middle;
  opacity: 0.2;
}
@media (max-width: 767px) {
  /* line 193, less/components/favorites-menu.less */
  .favorites-menu {
    width: 100%;
  }
}
/* line 1, less/components/feature-line.less */
.feature-line {
  position: relative;
  margin: 0 auto;
  text-transform: uppercase;
  width: 100%;
  font-size: 10px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  padding-top: 10px;
}
/* line 12, less/components/feature-line.less */
.feature-line .feature-text {
  color: inherit;
}
/* line 1, less/components/features-view.less */
.features-view {
  position: absolute;
  right: 0;
  top: 60px;
  min-height: 44px;
  min-width: 254px;
  z-index: 31;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
/* line 12, less/components/features-view.less */
.features-view .loading {
  position: absolute;
  margin-top: -12.5px;
}
/* line 16, less/components/features-view.less */
.features-view h4 {
  margin-top: 10px;
  margin-left: 37px;
}
/* line 21, less/components/features-view.less */
.features-view .features-list li {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
/* line 25, less/components/features-view.less */
.features-view .features-list li:last-child {
  border-bottom: none;
}
/* line 29, less/components/features-view.less */
.features-view .features-list input[type=checkbox] {
  position: absolute;
  left: 10px;
  top: 10px;
}
/* line 34, less/components/features-view.less */
.features-view .features-list .feature-copy {
  cursor: pointer;
  padding-left: 27px;
  max-width: 400px;
  font-size: 13px;
}
/* line 40, less/components/features-view.less */
.features-view .features-list .feature-release-date,
.features-view .features-list .feature-description {
  color: #999;
}
/* line 1, less/components/fine-tune.less */
.fine-tune-view {
  padding: 30px;
  height: 100%;
}
/* line 7, less/components/fine-tune.less */
.fine-tune-view .fine-tune-header-buttons {
  text-transform: none;
  margin-bottom: 10px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 14px;
}
/* line 13, less/components/fine-tune.less */
.fine-tune-view .fine-tune-header-buttons > :first-child {
  cursor: pointer;
  color: #F52828;
}
/* line 18, less/components/fine-tune.less */
.fine-tune-view .fine-tune-header-buttons > :last-child {
  cursor: pointer;
  float: right;
  color: #999;
}
/* line 24, less/components/fine-tune.less */
.fine-tune-view .fine-tune-header-buttons .nav-arrow {
  height: 10px;
  margin-right: 5px;
}
/* line 29, less/components/fine-tune.less */
.fine-tune-view .fine-tune-header-buttons .nav-arrow.rotated {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 38, less/components/fine-tune.less */
.fine-tune-view .fine-tune-title {
  font-size: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 44, less/components/fine-tune.less */
.fine-tune-view .fine-tune-description {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  color: #999;
}
/* line 52, less/components/fine-tune.less */
.fine-tune-view .text-input {
  height: 66px;
  font-size: 32px;
  line-height: 42px;
  font-weight: inherit;
  font-family: inherit;
  border: none;
  text-transform: inherit;
  width: 80%;
  margin-left: 10px;
}
/* line 63, less/components/fine-tune.less */
.fine-tune-view .text-input ::-webkit-input-placeholder {
  color: #ccc;
}
/* line 67, less/components/fine-tune.less */
.fine-tune-view .text-input :-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
}
/* line 71, less/components/fine-tune.less */
.fine-tune-view .text-input ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
}
/* line 75, less/components/fine-tune.less */
.fine-tune-view .text-input :-ms-input-placeholder {
  color: #ccc;
  font-weight: 800;
}
/* line 82, less/components/fine-tune.less */
.fine-tune-view .search-bar {
  background-color: #f7f7f7;
  margin-top: 20px;
  border-radius: 5px;
  position: relative;
}
/* line 87, less/components/fine-tune.less */
.fine-tune-view .search-bar .search-button {
  position: relative;
  left: 5px;
  top: 5px;
}
/* line 92, less/components/fine-tune.less */
.fine-tune-view .search-bar .text-input {
  height: 44px;
  background-color: inherit;
  font-weight: normal;
  text-transform: none;
  line-height: 20px;
  font-size: 14px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 101, less/components/fine-tune.less */
.fine-tune-view .search-bar .cancel-done {
  position: absolute;
  right: 12px;
  top: 12px;
  text-transform: none;
  color: #999;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
/* line 114, less/components/fine-tune.less */
.fine-tune-view .fine-tune-sections {
  -ms-flex: 1;
      flex: 1;
  overflow-y: scroll;
  margin-bottom: 20px;
}
/* line 119, less/components/fine-tune.less */
.fine-tune-view .fine-tune-sections .no-subsections {
  overflow-y: initial;
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  color: #999;
}
/* line 128, less/components/fine-tune.less */
.fine-tune-view .fine-tune-sections .fine-tune-section {
  border: none;
  background-color: #f7f7f7;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  color: #999999;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 0px 10px;
}
/* line 140, less/components/fine-tune.less */
.fine-tune-view .fine-tune-sections .fine-tune-section.selected {
  background-color: #F52828;
  color: white;
}
/* line 146, less/components/fine-tune.less */
.fine-tune-view .fine-tune-group {
  margin-top: 5px;
}
/* line 148, less/components/fine-tune.less */
.fine-tune-view .fine-tune-group .fine-tune-group-title {
  color: #999999;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
/* line 156, less/components/fine-tune.less */
.fine-tune-view .fine-tune-group:first-child {
  margin-top: 25px;
}
/* line 162, less/components/fine-tune.less */
.fine-tune {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
}
/* line 168, less/components/fine-tune.less */
.fine-tune__loading-wrapper {
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 1, less/components/flag-item.less */
.flag-item {
  cursor: pointer;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@media (max-width: 1064px) {
  /* line 8, less/components/flag-item.less */
  .flag-item {
    left: 8px;
    bottom: 8px;
  }
}
/* line 13, less/components/flag-item.less */
.flag-item:hover {
  opacity: 1.0;
}
/* line 16, less/components/flag-item.less */
.flag-item.flagged {
  opacity: 1.0;
  fill: #f03737;
}
/* line 20, less/components/flag-item.less */
.flag-item svg {
  margin-top: -3px;
  margin-left: -4px;
  margin-right: -4px;
}
/* line 26, less/components/flag-item.less */
.flag-item > * {
  vertical-align: middle;
}
/* line 29, less/components/flag-item.less */
.flag-item > span {
  padding-left: 5px;
}
/* line 1, less/components/flex-list.less */
.flex-list {
  position: relative;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
/* line 4, less/components/flex-list.less */
.user .flex-list {
  background-color: #fff;
}
/* line 11, less/components/flex-list.less */
.flex-list.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 12, less/components/flex-list.less */
.flex-list > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 13, less/components/flex-list.less */
.flex-list.center {
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 1, less/components/flip-button.less */
.flip-button {
  position: relative;
}
@keyframes pulse {
  /* line 2, less/components/flip-hint.less */
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  /* line 5, less/components/flip-hint.less */
  50% {
    -ms-transform: scale(1.075);
    transform: scale(1.075);
  }
  /* line 8, less/components/flip-hint.less */
  70% {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  /* line 11, less/components/flip-hint.less */
  100% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/* line 22, less/components/flip-hint.less */
.flip-hint {
  position: absolute;
  right: 8px;
  z-index: 10;
}
/* line 26, less/components/flip-hint.less */
.flip-hint .curator-actions {
  right: 0;
}
/* line 28, less/components/flip-hint.less */
.flip-hint .curator-actions [role=button] {
  opacity: 0.75;
  pointer-events: none;
  transition: 10ms ease-out opacity;
}
/* line 32, less/components/flip-hint.less */
.flip-hint .curator-actions [role=button].active {
  opacity: 1.0;
  animation: pulse 200ms ease-out;
}
/* line 35, less/components/flip-hint.less */
.flip-hint .curator-actions [role=button].active .icon {
  stroke: #000;
}
/* line 40, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box {
  position: absolute;
  background-color: #F52828;
  width: 400px;
  top: -25px;
  right: 50px;
  opacity: 1;
  color: #FFF;
  font-size: 14px;
  padding: 10px 20px 20px;
  transition: 150ms ease-out opacity;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 54, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box.right {
  right: initial;
  left: 52px;
}
/* line 57, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box.right:before {
  border-left: none;
  border-right: 10px solid #F52828;
  right: initial;
  left: -10px;
}
/* line 64, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #F52828;
  top: 30px;
  right: -10px;
  transition: 150ms ease-out transform;
}
/* line 76, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box.flip:before {
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* line 79, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box.like:before {
  -ms-transform: translateY(32px);
  transform: translateY(32px);
}
/* line 82, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box.share:before {
  -ms-transform: translateY(64px);
  transform: translateY(64px);
}
/* line 85, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .hint-paginator {
  position: relative;
  text-align: left;
  margin-top: 5px;
  font-weight: 500;
  font-size: 12px;
  height: 50px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 94, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .text-box {
  position: relative;
  text-align: left;
  margin-bottom: 20px;
}
/* line 98, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .text-box > span {
  font-size: 18px;
}
/* line 101, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .text-box > [role=button] {
  opacity: 1;
  position: relative;
  display: inline;
  padding: 0;
  top: 8px;
  height: 29px;
}
/* line 108, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .text-box > [role=button] g {
  stroke: #F52828;
}
/* line 111, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .text-box > [role=button] circle {
  fill: #FFF;
}
/* line 116, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box {
  position: relative;
  margin-top: 20px;
  width: 100%;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
/* line 125, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box button {
  transition: 50ms ease-out all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 131, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box .next {
  border: none;
  padding: 0 1.5em;
  height: 35px;
  line-height: 35px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #F52828;
}
/* line 138, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box .next:hover {
  background-color: #ffffff;
}
/* line 142, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box .back {
  background-color: transparent;
  border: none;
  color: #fff;
  opacity: 1;
  padding: 0;
  margin-right: 15px;
  height: 21px;
  line-height: 21px;
  border-bottom: 1px solid #fff;
}
/* line 152, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box .back.disabled {
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
/* line 160, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-text-box .button-box .not-now {
  font-size: 14px;
  padding: 0 1.5em;
  height: 35px;
  line-height: 35px;
  margin-right: 15px;
  border: 1px solid white;
  background-color: #F52828;
  color: white;
}
/* line 173, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-icon {
  position: relative;
}
/* line 175, less/components/flip-hint.less */
.flip-hint .curator-actions .hint-icon > .new-like-button,
.flip-hint .curator-actions .hint-icon > .new-favorite-button,
.flip-hint .curator-actions .hint-icon > .new-flip-button {
  padding-left: 0;
  margin-left: 10px;
}
/* line 180, less/components/flip-hint.less */
.flip-hint .hint-text-boxes {
  position: relative;
  display: block;
  margin: 10px 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 186, less/components/flip-hint.less */
.flip-hint .text-box-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 195, less/components/flip-hint.less */
.flip-hint .fade-enter {
  opacity: 0;
}
/* line 198, less/components/flip-hint.less */
.flip-hint .fade-enter.fade-enter-active {
  opacity: 1;
  transition: 150ms ease-out opacity;
}
/* line 202, less/components/flip-hint.less */
.flip-hint .fade-leave {
  opacity: 1;
}
/* line 205, less/components/flip-hint.less */
.flip-hint .fade-leave.fade-leave-active {
  opacity: 0;
  transition: 150ms ease-out opacity;
}
/* line 214, less/components/flip-hint.less */
.layout-item-has-hint {
  pointer-events: none;
}
/* line 216, less/components/flip-hint.less */
.layout-item-has-hint [class*='curator-actions-'] {
  display: none;
}
/* line 219, less/components/flip-hint.less */
.layout-item-has-hint .flip-hint {
  pointer-events: auto;
}
/* line 1, less/components/flipboard-spinner.less */
.fl-spinner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #F52828;
  height: 30px;
  width: 30px;
}
/* line 14, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid {
  height: 66%;
  width: 66%;
}
/* line 19, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube {
  width: 33%;
  height: 33%;
  background-color: #FFF;
  opacity: 1.0;
  float: left;
  animation: fl-spinner-cubeGridFadeDelay 1.3s infinite ease-in-out;
}
/* line 29, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube1 {
  animation-delay: 0.2s;
}
/* line 34, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube2 {
  animation-delay: 0.3s;
}
/* line 39, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube3 {
  animation-delay: 0.4s;
}
/* line 44, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube4 {
  animation-delay: 0.1s;
}
/* line 49, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube5 {
  animation-delay: 0.2s;
}
/* line 54, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube6 {
  animation-delay: 0.3s;
}
/* line 59, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube7 {
  animation-delay: 0s;
}
/* line 64, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube8 {
  animation-delay: 0.1s;
}
/* line 69, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube9 {
  animation-delay: 0.2s;
}
@keyframes fl-spinner-cubeGridFadeDelay {
  /* line 86, less/components/flipboard-spinner.less */
  0%,
  70%,
  100% {
    opacity: 1.0;
  }
  /* line 91, less/components/flipboard-spinner.less */
  35% {
    opacity: 0.5;
  }
}
/* line 96, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube4 {
  animation-delay: 0.1s;
}
/* line 100, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube5 {
  animation-delay: 0.2s;
}
/* line 104, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube6 {
  animation-delay: 0.3s;
}
/* line 108, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube7 {
  animation-delay: 0s;
}
/* line 112, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube8 {
  animation-delay: 0.1s;
}
/* line 116, less/components/flipboard-spinner.less */
.fl-spinner-cube-grid .fl-spinner-cube9 {
  animation-delay: 0.2s;
}
@keyframes fl-spinner-cubeGridFadeDelay {
  /* line 132, less/components/flipboard-spinner.less */
  0%,
  70%,
  100% {
    opacity: 1.0;
  }
  /* line 138, less/components/flipboard-spinner.less */
  35% {
    opacity: 0.5;
  }
}
/* line 1, less/components/follow-button.less */
.follow-button {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-size: 14px;
  position: relative;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
  background: transparent;
  color: #000;
  border-radius: 999em;
  border: 1px solid rgba(0, 0, 0, 0.7);
  overflow: hidden;
  outline: none;
  -webkit-appearance: none;
  transition: 200ms cubic-bezier(0.32, 0.29, 0.49, 0.98) width;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 18, less/components/follow-button.less */
.follow-button .follow-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 27, less/components/follow-button.less */
.follow-button .follow-content .check-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -10px;
}
/* line 34, less/components/follow-button.less */
.follow-button .follow-content .follow-text {
  display: inline-block;
}
/* line 37, less/components/follow-button.less */
.follow-button .follow-content .unfollow-text {
  display: inline-block;
  margin-left: -5px;
}
/* line 42, less/components/follow-button.less */
.follow-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* line 46, less/components/follow-button.less */
.follow-button.light {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
/* line 50, less/components/follow-button.less */
.follow-button.light.hover {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
/* line 56, less/components/follow-button.less */
.follow-button.hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
/* line 1, less/components/footer-bar.less */
.footer-bar {
  width: 100%;
  z-index: 9;
  margin-top: 40px;
  padding: 6px 0;
  background: #fff;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 15s;
}
/* line 11, less/components/footer-bar.less */
.footer-bar .read-more {
  text-align: center;
  width: 100%;
  padding: 10px 0 40px 0;
}
/* line 17, less/components/footer-bar.less */
.footer-bar .bar {
  border-top: 1px solid #ddd;
  padding: 18px 0;
  width: 100%;
  text-align: center;
}
/* line 24, less/components/footer-bar.less */
.footer-bar .linkitem {
  margin: 0 20px;
  width: 120px;
  text-align: center;
  display: inline-block;
}
/* line 32, less/components/footer-bar.less */
.footer-bar-fixed {
  z-index: 9;
  margin-top: 40px;
  padding: 6px 0;
  background: #fff;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 15s;
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 60px;
  width: 100%;
}
/* line 11, less/components/footer-bar.less */
.footer-bar-fixed .read-more {
  text-align: center;
  width: 100%;
  padding: 10px 0 40px 0;
}
/* line 17, less/components/footer-bar.less */
.footer-bar-fixed .bar {
  border-top: 1px solid #ddd;
  padding: 18px 0;
  width: 100%;
  text-align: center;
}
/* line 24, less/components/footer-bar.less */
.footer-bar-fixed .linkitem {
  margin: 0 20px;
  width: 120px;
  text-align: center;
  display: inline-block;
}
/* line 1, less/components/footer-section.less */
.section-footer {
  position: relative;
  width: 100%;
  color: #000;
}
/* line 5, less/components/footer-section.less */
.section-footer .page-content {
  margin: 0 auto;
  padding: 40px 0 0;
  text-align: center;
}
/* line 10, less/components/footer-section.less */
.section-footer .section-header-title {
  margin: 20px auto 0;
}
/* line 13, less/components/footer-section.less */
.section-footer .section-footer-items {
  position: relative;
  font-size: 10px;
  line-height: 30px;
  text-align: center;
  margin: 20px 30px 0;
  text-transform: uppercase;
}
/* line 20, less/components/footer-section.less */
.section-footer .section-footer-items > a {
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
}
/* line 24, less/components/footer-section.less */
.section-footer .section-footer-items > a:not(:last-child) {
  margin-right: 15px;
}
/* line 1, less/components/footer-topic.less */
.topic-footer {
  position: relative;
  width: 100%;
  color: #000;
}
/* line 5, less/components/footer-topic.less */
.topic-footer .page-content {
  margin: 0 auto;
  padding: 40px 0 0;
}
/* line 9, less/components/footer-topic.less */
.topic-footer .topic-footer-items {
  text-align: center;
  margin: 20px 30px 0;
  text-transform: uppercase;
}
/* line 13, less/components/footer-topic.less */
.topic-footer .topic-footer-items > a.topic-tag {
  margin: 0;
}
/* line 15, less/components/footer-topic.less */
.topic-footer .topic-footer-items > a.topic-tag:not(:last-child) {
  margin-right: 10px;
}
/* line 1, less/franchise-header.less */
.franchise-header {
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}
/* line 4, less/components/frontdoor-items-banner.less */
.front-door-banner {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  /* line 7, less/components/frontdoor-items-banner.less */
  .front-door-banner {
    margin-top: 163px;
  }
}
/* line 11, less/components/frontdoor-items-banner.less */
.front-door-banner__header {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 49px;
  margin: 58px 19% 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  display: inline-block;
  padding: 0 0 2px;
  border-bottom: 10px solid #F52828;
}
@media (min-width: 768px) {
  /* line 22, less/components/frontdoor-items-banner.less */
  .front-door-banner__header {
    font-size: 54px;
    margin: 0 0 14px;
  }
}
/* line 28, less/components/frontdoor-items-banner.less */
.front-door-banner__subheader {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 21px;
  color: #000;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  /* line 34, less/components/frontdoor-items-banner.less */
  .front-door-banner__subheader {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
/* line 41, less/components/frontdoor-items-banner.less */
.front-door-banner .button-wrapper > * {
  margin: 0 8px;
}
@media (max-width: 767px) {
  /* line 43, less/components/frontdoor-items-banner.less */
  .front-door-banner .button-wrapper > * {
    margin: 0 auto 16px;
    display: block;
    width: 78%;
    height: 56px;
  }
}
/* line 2, less/components/frontdoor-items-nav.less */
.front-door-nav-items-container {
  margin-top: 150px;
}
/* line 5, less/components/frontdoor-items-nav.less */
.front-door-nav-items-container .nav-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  color: #ccc;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  border-bottom: 1px solid #ddd;
  padding: 5px 15px;
  background: white;
  z-index: 2;
}
/* line 18, less/components/frontdoor-items-nav.less */
.front-door-nav-items-container .nav-items.fixed {
  position: fixed;
  top: 60px;
}
/* line 23, less/components/frontdoor-items-nav.less */
.front-door-nav-items-container .nav-items.hidden {
  opacity: 0;
}
/* line 27, less/components/frontdoor-items-nav.less */
.front-door-nav-items-container .nav-items a {
  cursor: pointer;
  padding-bottom: 1px;
  margin: 10px 15px;
  text-transform: uppercase;
  white-space: nowrap;
}
/* line 35, less/components/frontdoor-items-nav.less */
.front-door-nav-items-container .nav-items a:hover,
.front-door-nav-items-container .nav-items a.selected {
  color: #000;
}
/* line 2, less/components/frontdoor.less */
.front-door .loading {
  position: relative;
  margin: 100px auto;
}
/* line 8, less/components/frontdoor.less */
.front-door__terms-prompt {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #979797;
  margin-bottom: 16px;
}
/* line 16, less/components/frontdoor.less */
.front-door__login-prompt {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: #666;
  background-color: #F7F7F7;
}
/* line 24, less/components/frontdoor.less */
.front-door__login-prompt-link {
  color: #262626;
  font-weight: 600;
}
/* line 3, less/components/getapp-view.less */
.getapp-view {
  position: relative;
  z-index: 31;
  background: #fff;
  color: #000;
  width: 512px;
  padding: 50px 40px;
  text-align: center;
}
/* line 11, less/components/getapp-view.less */
.getapp-view .close-button {
  position: absolute;
  top: 10px;
  left: 9px;
}
/* line 16, less/components/getapp-view.less */
.getapp-view .getapp-view-header {
  display: inline-block;
  font-weight: 400;
  font-size: 24px;
}
/* line 17, less/components/getapp-view.less */
.getapp-view .getapp-view-header .logo {
  display: inline-block;
  margin-right: 10px;
}
/* line 25, less/components/getapp-view.less */
.getapp-view .getapp-badges {
  opacity: 1.0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  width: 286px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 34px auto 5px auto;
}
/* line 34, less/components/getapp-view.less */
.getapp-view .getapp-badges .spacer {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 38, less/components/getapp-view.less */
.getapp-view .getapp-badges a {
  height: 40px;
  width: 135px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
/* line 44, less/components/getapp-view.less */
.getapp-view .getapp-badges a.apple-appstore-button {
  background: transparent url("https://cdn.flipboard.com/dev_O/mw/appstorebtn-en.svg") 0 0 no-repeat;
  background-size: contain;
}
/* line 49, less/components/getapp-view.less */
.getapp-view .getapp-badges a.google-play-button {
  background: transparent url("https://cdn.flipboard.com/dev_O/mw/google_play_en_badge_web_generic.png") 0 0 no-repeat;
  background-size: contain;
}
/* line 55, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt {
  width: 286px;
  margin: 0px auto;
  height: 100%;
}
/* line 60, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .or {
  color: #909090;
  font-size: 16px;
  margin-bottom: 8px;
}
/* line 66, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .getapp-email-form {
  width: 100%;
}
/* line 69, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .getapp-email-form form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 74, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .getapp-email-form form input {
  height: 35px;
}
/* line 78, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .getapp-email-form form .email-input {
  padding: 10px;
  width: 200px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 83, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .getapp-email-form form .send-button {
  line-height: 28px;
  width: 52px;
  background: #F52828;
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 91, less/components/getapp-view.less */
.getapp-view .getapp-email-prompt .getapp-email-form form .send-button:hover {
  background: #242424;
}
/* line 1, less/components/gift-ribbon.less */
.gift-ribbon {
  height: 20px;
  width: 100%;
  background: linear-gradient(to right, #c2192d 0%, #de262d);
  position: absolute;
  bottom: 200px;
  left: 0;
  padding: 1px;
  text-align: right;
  z-index: 0;
}
@media (max-width: 885px) {
  /* line 12, less/components/gift-ribbon.less */
  .gift-ribbon {
    bottom: 250px;
  }
}
/* line 17, less/components/gift-ribbon.less */
.gift-ribbon-pattern {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbkAAAALCAYAAADiIfPiAAAAgElEQVR42u3VTQqAIBgE0I9uMfe/aIt2EUX4k8R7GwnElFGm6pDT2FMevlvWapmfCXvIhHO8nZuB2bb8IwvmtGoe+eANpmMuGXDvRt2TGfn0OFcG7i0Lvb266KzbNbYCgJ9ScgAoOQBQcgCg5ABAyQGAkgMAJQeAkgMAJQcAC9oBEqMEYfjl4jIAAAAASUVORK5CYII=');
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  background-size: 221px 6px;
}
/* line 28, less/components/gift-ribbon.less */
.gift-ribbon-bow {
  width: 175px;
  position: absolute;
  top: -42px;
  right: 100px;
  z-index: 1;
}
@media (max-width: 720px) {
  /* line 35, less/components/gift-ribbon.less */
  .gift-ribbon-bow {
    position: relative;
    top: -55px;
    right: auto;
    width: 155px;
  }
}
/* line 1, less/components/gift-section-header.less */
.gift-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  overflow: hidden;
}
/* line 8, less/components/gift-section-header.less */
.gift-section-header {
  width: 100%;
  background: #333;
  position: relative;
  z-index: 11;
  -ms-flex-positive: 1;
      flex-grow: 1;
  overflow: hidden;
}
/* line 16, less/components/gift-section-header.less */
.gift-section-header .follow-button {
  z-index: 2;
}
/* line 21, less/components/gift-section-header.less */
.gift-section-action-buttons {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
/* line 27, less/components/gift-section-header.less */
.gift-section-action-buttons .login-button {
  color: #fff;
  min-width: 80px;
}
/* line 32, less/components/gift-section-header.less */
.gift-section-action-buttons .login-button,
.gift-section-action-buttons .signup-button {
  display: inline-block;
}
/* line 38, less/components/gift-section-header.less */
.gift-section-footer {
  height: 60px;
  position: relative;
}
/* line 43, less/components/gift-section-header.less */
.gift-section-footer-left,
.gift-section-footer-center,
.gift-section-footer-right {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 10px;
}
/* line 52, less/components/gift-section-header.less */
.gift-section-footer-left {
  left: 0;
}
/* line 56, less/components/gift-section-header.less */
.gift-section-footer-center {
  width: 100%;
}
/* line 60, less/components/gift-section-header.less */
.gift-section-footer-right {
  right: 0;
}
/* line 65, less/components/gift-section-header.less */
.gift-section-metadata {
  position: absolute;
  bottom: 44px;
  left: 20%;
  right: 20%;
  color: #fff;
  text-align: center;
}
/* line 73, less/components/gift-section-header.less */
.gift-section-metadata h1 {
  font-size: 40px;
  line-height: 54px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  letter-spacing: 1px;
}
/* line 81, less/components/gift-section-header.less */
.gift-section-metadata h2 {
  margin-top: 10px;
  font-family: Fakt;
  font-size: 16px;
  line-height: 24px;
}
/* line 89, less/components/gift-section-header.less */
.gift-section-sender {
  margin-top: 15px;
}
/* line 92, less/components/gift-section-header.less */
.gift-section-sender .gift-sender-name {
  margin-left: 5px;
  font-weight: 100;
}
/* line 98, less/components/gift-section-header.less */
.gift-topics {
  position: absolute;
  top: 115px;
  left: 115px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  cursor: default;
}
/* line 107, less/components/gift-section-header.less */
.gift-topics-left,
.gift-topics-right {
  -ms-flex-positive: 1;
      flex-grow: 1;
  position: relative;
}
/* line 114, less/components/gift-section-header.less */
.gift-topics-left .gift-topic-container {
  right: 0;
}
/* line 119, less/components/gift-section-header.less */
.gift-topics-left .gift-topic-container:nth-child(1) .gift-topic {
  font-size: 14px;
}
/* line 124, less/components/gift-section-header.less */
.gift-topics-left .gift-topic-container:nth-child(2) {
  height: 47px;
}
/* line 128, less/components/gift-section-header.less */
.gift-topics-left .gift-topic-container:nth-child(3) {
  position: absolute;
  right: 0;
}
/* line 131, less/components/gift-section-header.less */
.gift-topics-left .gift-topic-container:nth-child(3) .gift-topic {
  font-size: 17px;
}
/* line 138, less/components/gift-section-header.less */
.gift-topics-right .gift-topic-container {
  left: 0;
}
/* line 142, less/components/gift-section-header.less */
.gift-topics-right .gift-topic-container:nth-child(1) {
  height: 35px;
}
/* line 147, less/components/gift-section-header.less */
.gift-topics-right .gift-topic-container:nth-child(2) .gift-topic {
  font-size: 22px;
}
/* line 153, less/components/gift-section-header.less */
.gift-topic-container {
  font-size: 0;
}
/* line 157, less/components/gift-section-header.less */
.gift-topic {
  display: inline-block;
  background: #de262d;
  color: #fff;
  padding: 7px 15px 7px 15px;
  text-transform: uppercase;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 1px;
  font-weight: 100;
}
/* line 171, less/components/gift-section-header.less */
.gift-topic-logo-container {
  position: absolute;
}
/* line 174, less/components/gift-section-header.less */
.gift-topic-logo-container .logo {
  position: relative;
  top: -100px;
  left: -100px;
}
/* line 1, less/components/grid-page.less */
.grid-page {
  width: 100%;
  background: #fff;
}
/* line 5, less/components/grid-page.less */
.grid-page .grid-page-header {
  position: relative;
  margin: 0 auto;
  padding: 30px 0 30px;
}
/* line 12, less/components/grid-page.less */
.gridline {
  position: absolute;
  background-color: #f2f2f2;
}
/* line 17, less/components/grid-page.less */
.gridline-x {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
/* line 25, less/components/grid-page.less */
svg.gridline-x,
svg.gridline-y {
  stroke: #d5d5d5;
}
/* line 30, less/components/grid-page.less */
div.gridline-x,
div.gridline-y {
  background-color: #f2f2f2;
}
/* line 37, less/components/grid-page.less */
.fldebug-outline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid green;
  z-index: 500;
  font-size: 12px;
  line-height: 15px;
  padding-top: 10%;
}
/* line 44, less/components/grid-page.less */
.fldebug-outline span {
  color: white;
  background-color: green;
}
/* line 49, less/components/grid-page.less */
.fldebug-outline.left {
  text-align: left;
}
/* line 53, less/components/grid-page.less */
.fldebug-outline.centered {
  text-align: center;
  margin: 0 auto;
}
/* line 56, less/components/grid-page.less */
.fldebug-outline.centered span {
  padding: 0 20px 0 20px;
}
@keyframes bounce-up {
  /* line 2, less/components/hint-box.less */
  0% {
    -ms-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  /* line 5, less/components/hint-box.less */
  30% {
    -ms-transform: translate3d(0, -8px, 0) scale(1);
    transform: translate3d(0, -8px, 0) scale(1);
  }
  /* line 8, less/components/hint-box.less */
  40% {
    -ms-transform: translate3d(0, 10px, 0) scale(1);
    transform: translate3d(0, 10px, 0) scale(1);
  }
  /* line 11, less/components/hint-box.less */
  50% {
    -ms-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  /* line 14, less/components/hint-box.less */
  100% {
    -ms-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}
/* line 23, less/components/hint-box.less */
.hint-box {
  position: absolute;
  font-weight: 400;
  left: 0;
  cursor: initial;
  transition: 0.5s ease-out opacity;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 31, less/components/hint-box.less */
.hint-box .hint-content {
  position: relative;
  background-color: #fff;
  color: #000;
  padding: 13px 20px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 41, less/components/hint-box.less */
.hint-box .hint-content .hint-header {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  margin: 12px 0 25px;
}
/* line 47, less/components/hint-box.less */
.hint-box .hint-content .hint-text {
  position: relative;
  font-size: 14px;
}
/* line 51, less/components/hint-box.less */
.hint-box .hint-content .hint-button {
  position: relative;
  margin-top: 40px;
  padding: 15px 50px 14px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #000;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 61, less/components/hint-box.less */
.hint-box .hint-content .hint-button:hover {
  background-color: #000;
  color: #fff;
}
/* line 66, less/components/hint-box.less */
.hint-box .hint-content .hint-step {
  font-size: 16px;
  margin: 25px 0 12px;
}
/* line 70, less/components/hint-box.less */
.hint-box .hint-content .hint-prev {
  cursor: pointer;
  font-size: 16px;
  margin: 25px 0 0;
}
/* line 76, less/components/hint-box.less */
.hint-box .box-arrow {
  position: relative;
  content: "";
  width: 0;
  height: 0;
  margin: 0 7px;
  border-style: solid;
  border-width: 0 8px 9px 8px;
  border-color: transparent transparent #fff transparent;
}
/* line 86, less/components/hint-box.less */
.hint-box.left {
  left: 0;
  right: initial;
  -ms-flex-align: start;
      align-items: flex-start;
}
/* line 91, less/components/hint-box.less */
.hint-box.right {
  left: initial;
  right: 0;
  -ms-flex-align: end;
      align-items: flex-end;
}
/* line 96, less/components/hint-box.less */
.hint-box.animating {
  animation: bounce-up 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-iteration-count: infinite;
}
/* line 1, less/components/hints.less */
.hint-panel {
  position: absolute;
  width: 300px;
  padding: 16px;
  text-align: left;
  text-transform: none;
  color: white;
  background-color: #F52828;
  border-radius: 4px;
  z-index: 29;
}
/* line 12, less/components/hints.less */
.hint-panel .hint-title {
  font-weight: 500;
  font-size: 18px;
  font-style: normal;
  line-height: 18px;
  margin-bottom: 15px;
}
/* line 19, less/components/hints.less */
.hint-panel .hint-description {
  font-size: 14px;
  font-style: normal;
  line-height: 18px;
  margin-bottom: 15px;
}
/* line 24, less/components/hints.less */
.hint-panel .hint-description a {
  text-decoration: underline;
}
/* line 28, less/components/hints.less */
.hint-panel .button-box {
  position: relative;
  margin-top: 20px;
  width: 100%;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
/* line 37, less/components/hints.less */
.hint-panel .button-box button {
  border: none;
  height: 35px;
  line-height: 35px;
  margin-left: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #F52828;
  transition: 50ms ease-out all;
}
/* line 45, less/components/hints.less */
.hint-panel .button-box button:hover {
  background-color: #ffffff;
}
/* line 49, less/components/hints.less */
.hint-panel .button-box button.not-now {
  border: 1px solid white;
  background-color: #F52828;
  color: white;
}
/* line 57, less/components/hints.less */
.hint-panel .hint-arrow {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
}
/* line 65, less/components/hints.less */
.hint-panel.hint-arrow-top:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #F52828;
  top: -10px;
  right: 19px;
}
/* line 75, less/components/hints.less */
.hint-panel.hint-arrow-top-left:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #F52828;
  top: -10px;
  left: 19px;
}
/* line 85, less/components/hints.less */
.hint-panel.hint-arrow-right:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #F52828;
  top: 10px;
  right: -10px;
}
/* line 95, less/components/hints.less */
.hint-panel.hint-arrow-left:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #F52828;
  top: 10px;
  left: -10px;
}
/* line 105, less/components/hints.less */
.hint-panel.hint-arrow-bottom:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F52828;
  bottom: -10px;
  left: calc(50% - 25px);
}
/* line 116, less/components/hints.less */
.hint-panel.hint-arrow-bottom-right:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F52828;
  bottom: -10px;
  left: 200px;
}
/* line 127, less/components/hints.less */
.hint-panel.hint-arrow-right:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transition: 150ms ease-out transform;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F52828;
  bottom: -10px;
  left: 300px;
}
/* line 138, less/components/hints.less */
.hint-panel.carousel-favorite-hint {
  position: fixed;
  width: 350px;
}
/* line 142, less/components/hints.less */
.hint-panel.carousel-favorite-hint.hint-arrow-top:before {
  top: -10px;
  right: 175px;
}
/* line 150, less/components/hints.less */
.hint-panel.add-new-feed-hint {
  right: -295px;
  z-index: 29;
}
/* line 156, less/components/hints.less */
.hint-panel.profile-status-hint {
  top: -7px;
  right: -315px;
  z-index: 29;
}
/* line 162, less/components/hints.less */
.hint-panel.add-group-magazine-hint {
  top: -45px;
  left: -200px;
}
@media (max-width: 767px) {
  /* line 169, less/components/hints.less */
  .hint-panel {
    z-index: 10;
  }
  /* line 171, less/components/hints.less */
  .hint-panel.add-group-magazine-hint {
    top: -45px;
    left: -275px;
  }
  /* line 176, less/components/hints.less */
  .hint-panel.hint-arrow-bottom-right:before {
    left: 275px;
  }
}
/* line 1, less/components/homefeed-header.less */
.homefeed-header {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 20px;
  padding-top: 50px;
}
/* line 7, less/components/homefeed-header.less */
.homefeed-header .section-header-title {
  margin: 10px auto 15px;
  padding-left: 5px;
}
/* line 11, less/components/homefeed-header.less */
.homefeed-header .feature-text,
.homefeed-header .author-text {
  font-size: 12px;
  font-weight: 600;
}
/* line 15, less/components/homefeed-header.less */
.homefeed-header .feature-text {
  color: #ccc;
}
/* line 1, less/components/icons/checkbox-icon.less */
.checkbox-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: .25em;
  border: 1px solid #000;
}
/* line 1, less/components/icons/edit-text-icon.less */
.edit-text-icon {
  padding: 5px 15px;
  border: solid 1.5px black;
}
/* line 4, less/components/icons/edit-text-icon.less */
.edit-text-icon:hover {
  border-color: white;
  background-color: black;
  color: white;
}
/* line 1, less/components/icons/image-placeholder-icon.less */
.image-placeholder-icon {
  border: solid 4px white;
}
/* line 3, less/components/icons/image-placeholder-icon.less */
.image-placeholder-icon path {
  fill: white;
}
/* line 1, less/components/inline-editable.less */
.inline-editable {
  border: none;
  outline: none;
  display: inline-block;
  transition: 0.2s ease-in-out background-color;
  background-color: rgba(0, 0, 0, 0);
  padding: 0 10px;
  min-height: 20px;
}
/* line 9, less/components/inline-editable.less */
.inline-editable:hover,
.inline-editable:focus {
  background-color: rgba(0, 0, 0, 0.08);
}
/* line 12, less/components/inline-editable.less */
.inline-editable:hover.disabled,
.inline-editable:focus.disabled {
  background-color: rgba(0, 0, 0, 0);
}
/* line 17, less/components/inline-editable.less */
.inline-editable.placeholder {
  color: #999;
}
/* line 1, less/components/invite-colleagues.less */
.invite-colleagues {
  width: 500px;
  position: relative;
  z-index: 31;
  background-color: #fff;
  padding: 20px;
}
/* line 8, less/components/invite-colleagues.less */
.invite-colleagues h2 {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* line 16, less/components/invite-colleagues.less */
.invite-colleagues .invitation-url {
  position: relative;
  margin-bottom: 15px;
}
/* line 20, less/components/invite-colleagues.less */
.invite-colleagues .invitation-url:hover {
  cursor: pointer;
}
/* line 24, less/components/invite-colleagues.less */
.invite-colleagues .invitation-url .copy-placeholder {
  position: absolute;
  color: #b5b9b9;
  font-size: 14px;
  font-weight: 500;
  right: 2%;
  top: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 34, less/components/invite-colleagues.less */
.invite-colleagues .invitation-url .copy-placeholder .copy-icon {
  margin-right: 4px;
}
/* line 38, less/components/invite-colleagues.less */
.invite-colleagues .invitation-url .copy-placeholder.copy-placeholder--copied {
  color: #262626;
}
/* line 44, less/components/invite-colleagues.less */
.invite-colleagues .invitation-url input:hover {
  cursor: pointer;
}
/* line 49, less/components/invite-colleagues.less */
.invite-colleagues .invite-colleagues-description {
  margin-bottom: 15px;
}
/* line 54, less/components/invite-colleagues.less */
.invite-colleagues__allow-invite-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin: 20px 0;
}
/* line 59, less/components/invite-colleagues.less */
.invite-colleagues__allow-invite-wrapper input[type=checkbox] {
  margin-right: 10px;
}
@media (max-width: 767px) {
  /* line 65, less/components/invite-colleagues.less */
  .invite-colleagues {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
}
/* line 1, less/components/invite-contributors-view.less */
.invite-contributors-view {
  position: relative;
  z-index: 31;
  background-color: #fff;
  padding: 20px;
  width: 500px;
}
/* line 9, less/components/invite-contributors-view.less */
.invite-contributors-view .close-button {
  position: absolute;
  left: 10px;
  top: 9px;
}
/* line 15, less/components/invite-contributors-view.less */
.invite-contributors-view h2 {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* line 23, less/components/invite-contributors-view.less */
.invite-contributors-view .invite-contributors-caption {
  text-align: center;
  max-width: 270px;
  margin: 0 auto 15px;
}
/* line 29, less/components/invite-contributors-view.less */
.invite-contributors-view .caption-third-party {
  margin-bottom: 15px;
  text-align: center;
}
/* line 34, less/components/invite-contributors-view.less */
.invite-contributors-view .invitation-url {
  position: relative;
  margin-bottom: 15px;
}
/* line 38, less/components/invite-contributors-view.less */
.invite-contributors-view .invitation-url:hover {
  cursor: pointer;
}
/* line 42, less/components/invite-contributors-view.less */
.invite-contributors-view .invitation-url .copy-placeholder {
  position: absolute;
  color: #b5b9b9;
  font-size: 14px;
  font-weight: 500;
  right: 2%;
  top: 12px;
}
/* line 51, less/components/invite-contributors-view.less */
.invite-contributors-view .invitation-url input:hover {
  cursor: pointer;
}
/* line 57, less/components/invite-contributors-view.less */
.invite-contributors-view svg:hover {
  cursor: pointer;
}
/* line 62, less/components/invite-contributors-view.less */
.invite-contributors-view__invite-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: white;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  margin: 0 auto 10px;
  width: 250px;
  border: none;
  border-radius: 5px;
}
/* line 74, less/components/invite-contributors-view.less */
.invite-contributors-view__invite-button svg {
  margin-right: 15px;
}
/* line 81, less/components/invite-contributors-view.less */
.editor-magazine .invite-contributors-view .invite-contributors-caption {
  text-align: left;
  margin: 0 0 15px;
}
/* line 86, less/components/invite-contributors-view.less */
.editor-magazine .invite-contributors-view .magazine-members__third-party-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 15px;
}
/* line 92, less/components/invite-contributors-view.less */
.editor-magazine .invite-contributors-view .caption-third-party {
  margin: 0;
  text-align: left;
}
/* line 99, less/components/invite-contributors-view.less */
.invite-contributors-view__facebook-button {
  background-color: #3b5999;
}
/* line 103, less/components/invite-contributors-view.less */
.invite-contributors-view__email-button {
  background-color: #de2b30;
}
@media (max-width: 767px) {
  /* line 108, less/components/invite-contributors-view.less */
  .invite-contributors-view {
    height: 100%;
    width: 100%;
  }
}
/* line 1, less/components/item-cta-footer.less */
.item-cta-footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding: 0px 13px;
  line-height: 27px;
  background: #fff;
  z-index: 25;
  box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.2);
}
/* line 12, less/components/item-cta-footer.less */
.item-cta-footer-content {
  height: 100%;
  max-width: 630px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 22, less/components/item-cta-footer.less */
.item-cta-footer--minimal .item-cta-footer__app-button-container {
  position: fixed;
  bottom: 25px;
  left: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 32, less/components/item-cta-footer.less */
.item-cta-footer__copy {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 2;
      flex-grow: 2;
  margin: 0px 10px;
}
/* line 39, less/components/item-cta-footer.less */
.item-cta-footer__copy-title {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
/* line 46, less/components/item-cta-footer.less */
.item-cta-footer__copy-subtitle {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-size: 13px;
  line-height: 13px;
  color: #999999;
}
/* line 53, less/components/item-cta-footer.less */
.item-cta-footer__app-button {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-size: 14px;
  line-height: 14px;
  height: initial;
  font-weight: 600;
  background: #F52828;
  border: none;
  color: white;
  border-radius: 4px;
  padding: 9px 11px;
  transition: all 0.15s ease-out;
  margin-right: 5px;
}
/* line 67, less/components/item-cta-footer.less */
.item-cta-footer__app-button:hover {
  color: white;
  background: black;
}
/* line 72, less/components/item-cta-footer.less */
.item-cta-footer__app-button:last-child {
  margin-right: 0px;
}
/* line 77, less/components/item-cta-footer.less */
.item-cta-footer__app-button--emphasized {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
/* line 81, less/components/item-cta-footer.less */
.item-cta-footer--social {
  height: 47px;
}
/* line 84, less/components/item-cta-footer.less */
.item-cta-footer--social .item-cta-footer__app-button-container {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 94, less/components/item-cta-footer.less */
.item-cta-footer__social-stats {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}
/* line 1, less/components/launch-controller-view.less */
.launch-controller-view {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
/* line 7, less/components/launch-controller-view.less */
.launch-controller-view .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
}
/* line 1, less/components/layout-actions.less */
.icon-button {
  vertical-align: middle;
  stroke: #999;
}
/* line 5, less/components/layout-actions.less */
.light .icon-button {
  stroke: rgba(255, 255, 255, 0.95);
}
/* line 9, less/components/layout-actions.less */
.icon-button .fill-shape {
  fill: #999;
}
/* line 11, less/components/layout-actions.less */
.light .icon-button .fill-shape {
  fill: rgba(255, 255, 255, 0.95);
}
/* line 15, less/components/layout-actions.less */
.layout-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 21, less/components/layout-actions.less */
.layout-actions .layout-flip-action {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  height: 30px;
}
/* line 24, less/components/layout-actions.less */
.layout-actions .layout-flip-action.tooltip:before,
.layout-actions .layout-flip-action.tooltip:hover:before {
  left: 10px;
  right: auto;
}
/* line 31, less/components/layout-actions.less */
.layout-actions .hoverable {
  display: none;
}
/* line 34, less/components/layout-actions.less */
.item:hover .layout-actions .hoverable,
.album:hover .layout-actions .hoverable,
.poster-page .layout-actions .hoverable {
  display: block;
}
/* line 41, less/components/layout-actions.less */
.layout-actions .icon-button {
  transition-duration: 0.15s;
  transition-property: stroke, fill;
}
/* line 45, less/components/layout-actions.less */
.layout-actions .icon-button:hover {
  stroke: #09c;
}
/* line 47, less/components/layout-actions.less */
.light .layout-actions .icon-button:hover {
  stroke: #ffffff;
}
/* line 50, less/components/layout-actions.less */
.layout-actions .icon-button:hover .fill-shape {
  fill: #09c;
}
/* line 52, less/components/layout-actions.less */
.light .layout-actions .icon-button:hover .fill-shape {
  fill: #ffffff;
}
/* line 2, less/components/layout-magazine-tile.less */
.layout-magazine-tile .inner-rect {
  margin: auto;
}
/* line 6, less/components/layout-magazine-tile.less */
.layout-magazine-tile .curator-actions {
  position: absolute;
  top: 8px;
  right: 8px;
}
/* line 11, less/components/layout-magazine-tile.less */
.layout-magazine-tile .flip-hint {
  top: 0;
}
/* line 1, less/components/layout-pagebox.less */
.layout-pagebox {
  position: relative;
  width: 100%;
  color: #000;
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 12, less/components/layout-pagebox.less */
.layout-pagebox .header {
  position: relative;
  padding: 0 0 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
/* line 19, less/components/layout-pagebox.less */
.layout-pagebox .header .title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
/* line 25, less/components/layout-pagebox.less */
.layout-pagebox .header .sub-title {
  font-size: 20px;
}
/* line 27, less/components/layout-pagebox.less */
.layout-pagebox .header .sub-title .sub-title-link {
  color: #09c;
}
/* line 33, less/components/layout-pagebox.less */
.layout-pagebox .page-content .toc-tile {
  width: 100%;
  height: 100px;
  margin: 5px 0;
}
/* line 3, less/components/layout-social-actions.less */
.layout-social-actions .layout-social-action {
  padding-right: 8px;
  color: #999;
}
/* line 8, less/components/layout-social-actions.less */
.item:hover .layout-social-actions,
.album:hover .layout-social-actions,
.poster-page:hover .layout-social-actions {
  display: block;
}
/* line 1, less/components/linked-profiles.less */
.linked-profiles {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #f2f2f2;
}
/* line 7, less/components/linked-profiles.less */
.linked-profiles__title {
  font-size: 12px;
  color: #999;
  padding: 20px 0;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
/* line 18, less/components/linked-profiles.less */
.linked-profiles__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
/* line 21, less/components/linked-profiles.less */
.linked-profiles__list li.linked-profiles__list-item {
  cursor: pointer;
  margin-bottom: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}
/* line 26, less/components/linked-profiles.less */
.linked-profiles__list li.linked-profiles__list-item .avatar-wrapper {
  margin-right: 12px;
}
/* line 30, less/components/linked-profiles.less */
.linked-profiles__list li.linked-profiles__list-item .avatar {
  width: 30px;
  height: 30px;
}
/* line 37, less/components/linked-profiles.less */
.linked-profiles__list-item-title {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  size: 20px;
  border-bottom: 5px solid white;
}
/* line 43, less/components/linked-profiles.less */
.linked-profiles__list-item-title:hover {
  border-bottom: 5px solid #F52828;
}
/* line 3, less/components/loading-logo.less */
.loading-logo {
  position: relative;
}
/* line 6, less/components/loading-logo.less */
.loading-logo .block {
  z-index: 99;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
/* line 14, less/components/loading-logo.less */
.loading-logo .logo {
  position: absolute;
  transform-style: preserve-3d;
  -ms-perspective: 180px;
  perspective: 180px;
}
/* line 20, less/components/loading-logo.less */
.loading-logo .top-movement {
  -ms-transform-origin: top center;
  transform-origin: top center;
}
/* line 24, less/components/loading-logo.less */
.loading-logo .down-movement {
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
}
/* line 28, less/components/loading-logo.less */
.loading-logo .right-movement {
  -ms-transform-origin: right center;
  transform-origin: right center;
}
/* line 32, less/components/loading-logo.less */
.loading-logo .left-movement {
  -ms-transform-origin: left center;
  transform-origin: left center;
}
/* line 36, less/components/loading-logo.less */
.loading-logo div#spine {
  animation-name: spine-tiles;
  animation-duration: 1.45s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  -ms-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
/* line 46, less/components/loading-logo.less */
.loading-logo div#arm {
  opacity: 0.9;
  animation-name: arm-tiles;
  animation-duration: 1.45s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
/* line 57, less/components/loading-logo.less */
.loading-logo span#three {
  position: relative;
  animation-name: three-tile;
  animation-duration: 1.45s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  -ms-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
/* line 68, less/components/loading-logo.less */
.loading-logo span#five {
  animation-name: five-tile;
  animation-duration: 1.45s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
/* line 78, less/components/loading-logo.less */
.loading-logo span#six {
  opacity: 0.75;
  animation-name: six-tile;
  animation-duration: 1.45s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
/* line 89, less/components/loading-logo.less */
.loading-logo span#one {
  animation-name: one-tile;
  animation-duration: 1.45s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  opacity: 1;
}
@keyframes one-tile {
  /* line 100, less/components/loading-logo.less */
  0% {
    opacity: 0.0;
  }
  /* line 104, less/components/loading-logo.less */
  20% {
    opacity: 1.0;
  }
}
@keyframes spine-tiles {
  /* line 120, less/components/loading-logo.less */
  0% {
    opacity: 0;
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  /* line 125, less/components/loading-logo.less */
  20% {
    opacity: 1;
    -ms-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
  }
}
@keyframes three-tile {
  /* line 137, less/components/loading-logo.less */
  0% {
    opacity: 0;
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
  /* line 143, less/components/loading-logo.less */
  20% {
    opacity: 1.0;
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 149, less/components/loading-logo.less */
  23% {
    border-right: 1px solid rgba(0, 0, 0, 0.9);
  }
  /* line 153, less/components/loading-logo.less */
  31% {
    -ms-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
  /* line 158, less/components/loading-logo.less */
  32% {
    -ms-transform: rotateX(-210deg);
    transform: rotateX(-210deg);
  }
  /* line 162, less/components/loading-logo.less */
  34% {
    -ms-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
  }
}
@keyframes arm-tiles {
  /* line 174, less/components/loading-logo.less */
  0% {
    opacity: 0;
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  /* line 179, less/components/loading-logo.less */
  36% {
    opacity: 0.9;
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  /* line 184, less/components/loading-logo.less */
  45% {
    opacity: 0.9;
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}
@keyframes five-tile {
  /* line 196, less/components/loading-logo.less */
  0% {
    -ms-transform: translateX(0px) rotateY(0deg);
    transform: translateX(0px) rotateY(0deg);
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
  /* line 201, less/components/loading-logo.less */
  40% {
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 206, less/components/loading-logo.less */
  42% {
    border-right: 1px solid rgba(0, 0, 0, 0.9);
  }
  /* line 210, less/components/loading-logo.less */
  46% {
    -ms-transform: translateX(0px) rotateY(-180deg);
    transform: translateX(0px) rotateY(-180deg);
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
  /* line 215, less/components/loading-logo.less */
  48% {
    -ms-transform: translateX(0px) rotateY(-210deg);
    transform: translateX(0px) rotateY(-210deg);
  }
  /* line 219, less/components/loading-logo.less */
  49% {
    -ms-transform: translateX(0px) rotateY(-180deg);
    transform: translateX(0px) rotateY(-180deg);
  }
}
@keyframes six-tile {
  /* line 231, less/components/loading-logo.less */
  0% {
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  /* line 235, less/components/loading-logo.less */
  48% {
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 0.5;
  }
  /* line 240, less/components/loading-logo.less */
  53% {
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    opacity: 0.75;
  }
  /* line 245, less/components/loading-logo.less */
  54% {
    -ms-transform: rotateY(210deg);
    transform: rotateY(210deg);
  }
  /* line 249, less/components/loading-logo.less */
  56% {
    -ms-transform: rotateY(170deg);
    transform: rotateY(170deg);
  }
  /* line 253, less/components/loading-logo.less */
  57% {
    -ms-transform: rotateY(190deg);
    transform: rotateY(190deg);
  }
}
@keyframes loading-spinner {
  /* line 2, less/components/loading-spinner.less */
  0% {
    transform: rotate(0);
  }
  /* line 5, less/components/loading-spinner.less */
  100% {
    transform: rotate(360deg);
  }
}
/* line 10, less/components/loading-spinner.less */
.loading-spinner-wrapper {
  position: relative;
}
/* line 14, less/components/loading-spinner.less */
.loading-spinner {
  width: 100%;
  height: 100%;
}
/* line 18, less/components/loading-spinner.less */
.loading-spinner > div {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 3px solid #F52828;
  border-color: #F52828 transparent transparent transparent;
  animation: loading-spinner 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
/* line 29, less/components/loading-spinner.less */
.loading-spinner > div:nth-child(2) {
  animation-delay: .195s;
}
/* line 33, less/components/loading-spinner.less */
.loading-spinner > div:nth-child(3) {
  animation-delay: .39s;
}
/* line 37, less/components/loading-spinner.less */
.loading-spinner > div:nth-child(4) {
  animation-delay: .585s;
}
/* line 43, less/components/loading-spinner.less */
.invite-colleagues__loading-spinner {
  position: absolute;
  top: 10px;
  left: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 50, less/components/loading-spinner.less */
.invite-colleagues__loading-spinner .loading-spinner-wrapper {
  display: inline-block;
}
/* line 1, less/components/loading.less */
.loading,
.load-more,
.no-activity {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333;
}
/* line 11, less/components/loading.less */
.loading {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -18px;
}
/* line 17, less/components/loading.less */
.loading.section {
  position: static;
  margin-top: 0;
}
/* line 23, less/components/loading.less */
.load-more {
  width: 100%;
  height: 100px;
  padding-top: 30px;
}
/* line 29, less/components/loading.less */
.no-activity {
  padding-top: 100px;
}
/* line 33, less/components/loading.less */
.spinner,
.loading-text {
  display: inline-block;
}
/* line 37, less/components/loading.less */
.boxer {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
/* line 43, less/components/loading.less */
.boxer .square {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #bebebe;
  display: inline-block;
  animation: boxer-fade 400ms ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
/* line 55, less/components/loading.less */
.boxer .square-1 {
  top: 0;
  left: 0;
  animation-delay: -0.3s;
}
/* line 61, less/components/loading.less */
.boxer .square-2 {
  top: 0;
  right: 0;
  animation-delay: -0.2s;
}
/* line 67, less/components/loading.less */
.boxer .square-3 {
  bottom: 0;
  right: 0;
  animation-delay: -0.1s;
}
/* line 73, less/components/loading.less */
.boxer .square-4 {
  bottom: 0;
  left: 0;
  animation-delay: 0s;
}
@keyframes boxer-fade {
  /* line 80, less/components/loading.less */
  0% {
    opacity: 0.1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
  /* line 81, less/components/loading.less */
  100% {
    opacity: 0.5;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/* line 88, less/components/loading.less */
.spinner {
  position: relative;
  width: 35px;
  height: 35px;
}
/* line 93, less/components/loading.less */
.spinner i {
  position: absolute;
  width: 1px;
  height: 6px;
  background-color: #25363F;
  opacity: 0.05;
  animation: spinner-fade 0.8s linear;
  animation-iteration-count: infinite;
}
/* line 103, less/components/loading.less */
.spinner .bar-1 {
  -ms-transform: rotate(0deg) translate(0, -12px);
  transform: rotate(0deg) translate(0, -12px);
  animation-delay: 0.05s;
}
/* line 108, less/components/loading.less */
.spinner .bar-2 {
  -ms-transform: rotate(22.5deg) translate(0, -12px);
  transform: rotate(22.5deg) translate(0, -12px);
  animation-delay: 0.1s;
}
/* line 113, less/components/loading.less */
.spinner .bar-3 {
  -ms-transform: rotate(45deg) translate(0, -12px);
  transform: rotate(45deg) translate(0, -12px);
  animation-delay: 0.15s;
}
/* line 118, less/components/loading.less */
.spinner .bar-4 {
  -ms-transform: rotate(67.5deg) translate(0, -12px);
  transform: rotate(67.5deg) translate(0, -12px);
  animation-delay: 0.2s;
}
/* line 123, less/components/loading.less */
.spinner .bar-5 {
  -ms-transform: rotate(90deg) translate(0, -12px);
  transform: rotate(90deg) translate(0, -12px);
  animation-delay: 0.25s;
}
/* line 128, less/components/loading.less */
.spinner .bar-6 {
  -ms-transform: rotate(112.5deg) translate(0, -12px);
  transform: rotate(112.5deg) translate(0, -12px);
  animation-delay: 0.3s;
}
/* line 133, less/components/loading.less */
.spinner .bar-7 {
  -ms-transform: rotate(135deg) translate(0, -12px);
  transform: rotate(135deg) translate(0, -12px);
  animation-delay: 0.35s;
}
/* line 138, less/components/loading.less */
.spinner .bar-8 {
  -ms-transform: rotate(157.5deg) translate(0, -12px);
  transform: rotate(157.5deg) translate(0, -12px);
  animation-delay: 0.4s;
}
/* line 143, less/components/loading.less */
.spinner .bar-9 {
  -ms-transform: rotate(180deg) translate(0, -12px);
  transform: rotate(180deg) translate(0, -12px);
  animation-delay: 0.45s;
}
/* line 148, less/components/loading.less */
.spinner .bar-10 {
  -ms-transform: rotate(202.5deg) translate(0, -12px);
  transform: rotate(202.5deg) translate(0, -12px);
  animation-delay: 0.5s;
}
/* line 153, less/components/loading.less */
.spinner .bar-11 {
  -ms-transform: rotate(225deg) translate(0, -12px);
  transform: rotate(225deg) translate(0, -12px);
  animation-delay: 0.55s;
}
/* line 158, less/components/loading.less */
.spinner .bar-12 {
  -ms-transform: rotate(247.5deg) translate(0, -12px);
  transform: rotate(247.5deg) translate(0, -12px);
  animation-delay: 0.6s;
}
/* line 163, less/components/loading.less */
.spinner .bar-13 {
  -ms-transform: rotate(270deg) translate(0, -12px);
  transform: rotate(270deg) translate(0, -12px);
  animation-delay: 0.65s;
}
/* line 168, less/components/loading.less */
.spinner .bar-14 {
  -ms-transform: rotate(292.5deg) translate(0, -12px);
  transform: rotate(292.5deg) translate(0, -12px);
  animation-delay: 0.7s;
}
/* line 173, less/components/loading.less */
.spinner .bar-15 {
  -ms-transform: rotate(315deg) translate(0, -12px);
  transform: rotate(315deg) translate(0, -12px);
  animation-delay: 0.75s;
}
/* line 178, less/components/loading.less */
.spinner .bar-16 {
  -ms-transform: rotate(337.5deg) translate(0, -12px);
  transform: rotate(337.5deg) translate(0, -12px);
  animation-delay: 0.8s;
}
@keyframes spinner-fade {
  /* line 184, less/components/loading.less */
  0% {
    opacity: 1;
  }
  /* line 185, less/components/loading.less */
  100% {
    opacity: 0;
  }
}
/* line 2, less/components/login-qr-view.less */
.login-qr-view-modal {
  position: fixed;
  z-index: 31;
  padding: 40px;
  padding-top: 30px;
  background: #fff;
  overflow: scroll;
}
@media (min-height: 377px) {
  /* line 435, ../app/assets/less/mixins.less */
  .login-qr-view-modal {
    top: 50%;
    height: 350px;
    margin-top: -175px;
  }
}
@media (max-height: 350px) {
  /* line 440, ../app/assets/less/mixins.less */
  .login-qr-view-modal {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 601px) {
  /* line 461, ../app/assets/less/mixins.less */
  .login-qr-view-modal {
    left: 50%;
    margin-left: -300px;
    width: 600px;
  }
}
@media (max-width: 600px) {
  /* line 466, ../app/assets/less/mixins.less */
  .login-qr-view-modal {
    left: 0;
    right: 0;
  }
}
/* line 9, less/components/login-qr-view.less */
.login-qr-view-modal .close-button {
  position: absolute;
  left: 16px;
  top: 16px;
}
/* line 14, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-header {
  text-align: center;
}
/* line 17, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}
/* line 23, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr {
  position: absolute;
  left: 0;
  bottom: 5px;
}
/* line 28, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-instructions {
  position: absolute;
  left: 242px;
  bottom: 0;
  font-size: 14px;
}
/* line 34, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-steps {
  margin: 0;
  padding: 0 25px;
}
/* line 37, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-steps li {
  list-style-type: decimal;
  margin-bottom: 20px;
}
/* line 42, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-help {
  font-size: 12px;
  padding-left: 5px;
  color: #999;
}
/* line 46, less/components/login-qr-view.less */
.login-qr-view-modal .login-qr-view-help a {
  text-decoration: underline;
}
/* line 51, less/components/login-qr-view.less */
.login-qr-view-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  margin-left: -300px;
  width: 600px;
  z-index: 31;
  color: #fff;
}
/* line 59, less/components/login-qr-view.less */
.login-qr-view-hint a {
  text-decoration: underline;
  font-weight: 600;
}
/* line 3, less/components/logo.less */
.close .logo {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
}
/* line 4, less/components/magazine-contributor-list.less */
.magazine-contributor-list.expanded.small .avatar,
.magazine-contributor-list.expanded.small .icon-button {
  margin-right: 5px;
}
/* line 8, less/components/magazine-contributor-list.less */
.magazine-contributor-list.expanded .avatar,
.magazine-contributor-list.expanded .icon-button {
  margin-right: 10px;
}
/* line 12, less/components/magazine-contributor-list.less */
.magazine-contributor-list .avatar,
.magazine-contributor-list .icon-button {
  cursor: pointer;
}
/* line 15, less/components/magazine-contributor-list.less */
.magazine-contributor-list .contributor-name,
.magazine-contributor-list .invite-contributor-copy {
  -ms-flex-positive: 2;
      flex-grow: 2;
  cursor: pointer;
}
/* line 20, less/components/magazine-contributor-list.less */
.magazine-contributor-list li:hover .invite-contributor-copy {
  color: #0099cc;
}
/* line 1, less/components/magazine-contributors-can-invite.less */
.magazine-contributors-can-invite {
  display: -ms-flexbox;
  display: flex;
}
/* line 3, less/components/magazine-contributors-can-invite.less */
.magazine-contributors-can-invite .hint {
  line-height: 25px;
  cursor: pointer;
}
/* line 7, less/components/magazine-contributors-can-invite.less */
.magazine-contributors-can-invite .toggle {
  margin-left: 20px;
}
/* line 1, less/components/magazine-header.less */
.magazine-header {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
}
/* line 7, less/components/magazine-header.less */
.magazine-header .magazine-cover-photo-credit {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
/* line 16, less/components/magazine-header.less */
.magazine-header .magazine-cover-photo-credit a {
  color: #919191;
}
/* line 20, less/components/magazine-header.less */
.magazine-header .fading-foreground {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition-property: transform, transform;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
}
/* line 29, less/components/magazine-header.less */
.magazine-header .fading-foreground .contributor-invite-message {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin: -40px 0 20px 0;
  pointer-events: auto;
}
/* line 38, less/components/magazine-header.less */
.magazine-header .fading-foreground .section-header-title {
  margin-top: 0;
  pointer-events: auto;
}
/* line 42, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-description {
  position: relative;
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-height: 100px;
  max-width: 550px;
  overflow: hidden;
  text-align: center;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  pointer-events: auto;
}
@media (max-height: 600px) {
  /* line 54, less/components/magazine-header.less */
  .magazine-header .fading-foreground .magazine-description {
    max-height: 60px;
  }
}
/* line 58, less/components/magazine-header.less */
.magazine-header .fading-foreground .follow-button,
.magazine-header .fading-foreground .accept-invite {
  pointer-events: auto;
}
/* line 61, less/components/magazine-header.less */
.magazine-header .fading-foreground .accept-invite {
  margin-top: 30px;
}
/* line 64, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors {
  position: absolute;
  width: 100%;
  bottom: 50px;
  text-align: center;
  left: 0;
}
/* line 70, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 74, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .avatar,
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .invite-button,
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .invite-contributors {
  width: 36px;
  height: 36px;
  display: inline-block;
  margin: 0 5px;
  pointer-events: auto;
}
/* line 81, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .contributors-invite-button {
  position: relative;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 84, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .contributors-invite-button .invite-button {
  position: relative;
  overflow: hidden;
  stroke: #fff;
}
/* line 88, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .contributors-invite-button .invite-button .fill-shape {
  fill: #fff;
}
/* line 92, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-avatars .contributors-invite-button .magazine-invite-contributors {
  position: absolute;
  width: 80px;
  text-align: left;
  font-size: 13px;
  padding-left: 2px;
  line-height: 16px;
  cursor: pointer;
  top: 2px;
  pointer-events: auto;
}
/* line 105, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0 0 0;
}
/* line 110, less/components/magazine-header.less */
.magazine-header .fading-foreground .magazine-contributors .magazine-contributors-text > * {
  pointer-events: auto;
}
/* line 116, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer {
  position: absolute;
  background-color: #fff;
  bottom: 0;
  width: 100%;
  color: #000;
  font-size: 14px;
  transition-property: transform, transform;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 127, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-cover-scroll-hint {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  transition: 200ms ease-out opacity;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 135, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-cover-scroll-hint .arrow-button {
  padding-left: 6px;
}
/* line 138, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-cover-scroll-hint .lock-button {
  margin-right: 5px;
  margin-top: 1px;
}
/* line 143, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-metrics {
  position: absolute;
  height: 100%;
  left: 20px;
  top: 0;
  font-size: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 152, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-metrics .metric-divider {
  opacity: 0.3;
  padding: 0 10px;
}
/* line 157, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions {
  position: absolute;
  height: 100%;
  right: 20px;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 165, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions > * {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 166, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .flip-button-container {
  position: relative;
  display: inline;
}
/* line 169, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .flip-button-container span {
  position: relative;
  top: 1px;
  cursor: pointer;
}
/* line 175, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .icon-button {
  stroke: #000;
  margin-top: -2px;
  margin-left: 12px;
}
/* line 180, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .share-button-new {
  margin-top: 6px;
  display: inline-block;
  cursor: pointer;
}
/* line 185, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .share-menu {
  display: inline;
}
/* line 187, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .share-menu span {
  position: relative;
  top: 1px;
  cursor: pointer;
}
/* line 193, less/components/magazine-header.less */
.magazine-header .magazine-cover-footer .magazine-actions .edit-text-icon {
  text-transform: none;
  margin-left: 15px;
}
/* line 201, less/components/magazine-header.less */
.magazine-header-simple {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* line 205, less/components/magazine-header.less */
.magazine-header-simple .magazine-description {
  position: relative;
  font-size: 14px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  line-height: 20px;
  max-height: 100px;
  max-width: 550px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}
@media (max-height: 600px) {
  /* line 216, less/components/magazine-header.less */
  .magazine-header-simple .magazine-description {
    max-height: 60px;
  }
}
/* line 220, less/components/magazine-header.less */
.magazine-header-simple .follow-button {
  margin-top: 25px;
}
/* line 223, less/components/magazine-header.less */
.magazine-header-simple .page-gap {
  margin-top: 40px;
}
@media (max-width: 767px) {
  /* line 230, less/components/magazine-header.less */
  .magazine-header .magazine-cover-footer {
    display: block;
    padding: 15px 0;
    height: auto;
  }
  /* line 235, less/components/magazine-header.less */
  .magazine-header .magazine-cover-footer .magazine-metrics,
  .magazine-header .magazine-cover-footer .magazine-actions {
    position: relative;
    height: auto;
    top: auto;
    right: auto;
    left: auto;
  }
}
/* line 1, less/components/magazine-pipes-list.less */
.magazine-pipes-list {
  margin-top: 2.5em;
  position: relative;
}
/* line 4, less/components/magazine-pipes-list.less */
.magazine-pipes-list.expanded > li {
  padding: 0;
  margin: 0 0 16px;
}
/* line 7, less/components/magazine-pipes-list.less */
.magazine-pipes-list.expanded > li:hover {
  background: transparent;
}
/* line 12, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe-list-item {
  line-height: 1.5;
  cursor: pointer;
}
/* line 15, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe-list-item.pipe-has-hint {
  cursor: default;
}
/* line 19, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe {
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 23, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe a:hover {
  text-decoration: underline;
}
/* line 27, less/components/magazine-pipes-list.less */
.magazine-pipes-list svg {
  margin-right: 10px;
}
/* line 29, less/components/magazine-pipes-list.less */
.magazine-pipes-list svg g {
  stroke: #000;
}
/* line 34, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe__title {
  display: inline-block;
  font-size: 16px;
}
/* line 38, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe__url {
  display: block;
  margin-left: 26px;
  font-style: italic;
  color: #999;
}
/* line 44, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe__delete {
  color: #F52828;
  cursor: pointer;
  margin-left: 26px;
  font-size: 14px;
}
/* line 49, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe__delete:hover {
  text-decoration: underline;
}
/* line 55, less/components/magazine-pipes-list.less */
.magazine-pipes-list .profile-status-hint {
  left: 0;
  top: auto;
}
/* line 62, less/components/magazine-pipes-list.less */
.magazine-pipes-list.expanded.small .pipe-icon,
.magazine-pipes-list.expanded.small .icon-button {
  margin-right: 5px;
}
/* line 66, less/components/magazine-pipes-list.less */
.magazine-pipes-list.expanded .pipe-icon,
.magazine-pipes-list.expanded .icon-button {
  margin-right: 10px;
}
/* line 70, less/components/magazine-pipes-list.less */
.magazine-pipes-list.small .pipe-icon {
  width: 18px;
  height: 18px;
}
/* line 74, less/components/magazine-pipes-list.less */
.magazine-pipes-list .add-pipe-copy {
  -ms-flex-positive: 2;
      flex-grow: 2;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 81, less/components/magazine-pipes-list.less */
.magazine-pipes-list .add-pipe:hover {
  color: #0099cc;
}
/* line 85, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe-icon {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
/* line 90, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe-icon .overlay,
.magazine-pipes-list .pipe-icon .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 97, less/components/magazine-pipes-list.less */
.magazine-pipes-list .pipe-icon .background {
  color: white;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
/* line 104, less/components/magazine-pipes-list.less */
.magazine-pipes-list li:hover .pipe-icon circle {
  stroke: rgba(0, 0, 0, 0.5);
}
/* line 111, less/components/magazine-pipes-list.less */
.pipe-delete--confirm {
  display: block;
}
/* line 113, less/components/magazine-pipes-list.less */
.pipe-delete--confirm button {
  display: inline-block;
  margin: 20px 20px 0 0;
}
/* line 118, less/components/magazine-pipes-list.less */
.pipe-delete--confirm__info {
  display: block;
  margin-top: 10px;
  color: #979797;
}
/* line 124, less/components/magazine-pipes-list.less */
.delete-pipe-error {
  -ms-flex-align: center;
      align-items: center;
  color: #f03737;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 0px 20px;
}
/* line 1, less/components/magazine-tile.less */
.magazine-tile {
  position: relative;
  vertical-align: top;
  display: inline-block;
}
/* line 5, less/components/magazine-tile.less */
.magazine-tile.animate {
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition-property: width, opacity;
  transition-duration: 500ms;
  transition-timing-function: ease-in-out, linear;
}
/* line 11, less/components/magazine-tile.less */
.magazine-tile .tile {
  position: relative;
  margin: 0;
  color: #fff;
  display: inline-block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 21, less/components/magazine-tile.less */
.magazine-tile .tile:hover .editor-options {
  opacity: 1;
}
/* line 25, less/components/magazine-tile.less */
.magazine-tile .tile .cover-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
/* line 33, less/components/magazine-tile.less */
.magazine-tile .tile .icons {
  position: absolute;
  text-align: center;
  bottom: -2px;
  left: 0;
  width: 100%;
}
/* line 39, less/components/magazine-tile.less */
.magazine-tile .tile .icons > * {
  padding: inherit 2px;
}
/* line 43, less/components/magazine-tile.less */
.magazine-tile .tile .rss-icon {
  vertical-align: text-top;
}
/* line 46, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect {
  position: relative;
  display: block;
  border: 2px solid #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 51, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect .by-line {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
  font-weight: 700;
  word-wrap: break-word;
}
/* line 61, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect .article-counts,
.magazine-tile .tile .inner-rect.brick.by-line {
  position: absolute;
  bottom: 33px;
  text-align: center;
  width: 100%;
  font-size: 12px;
  padding: 0 20px;
  font-weight: 600;
}
/* line 70, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect .section-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 78, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect.revamped {
  color: #999999;
  background-color: #e5e5e5;
  height: 225px;
  width: 170px;
  font-weight: 800;
  cursor: pointer;
}
/* line 85, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect.revamped .new-magazine {
  text-align: center;
  margin-top: 40px;
}
/* line 89, less/components/magazine-tile.less */
.magazine-tile .tile .inner-rect.revamped.cursor-not-allowed {
  cursor: not-allowed;
}
/* line 94, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  text-align: center;
  padding: 3px 5px;
  opacity: 0;
  transition: 0.2s ease-in-out opacity;
}
/* line 103, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options.private-lock-editor {
  bottom: 22px;
}
/* line 106, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options li {
  line-height: 36px;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}
/* line 112, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options li:not(:last-child) {
  margin-right: 10px;
  position: relative;
}
/* line 117, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options .share-menu {
  vertical-align: top;
}
/* line 119, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options .share-menu svg {
  margin-top: -2px;
}
/* line 123, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options .edit-text-icon {
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
  border-color: white;
}
/* line 129, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options .stats-button {
  display: inline-block;
  width: 30px;
}
/* line 130, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options .stats-button svg {
  vertical-align: middle;
}
/* line 138, less/components/magazine-tile.less */
.magazine-tile .tile .editor-options--ipad {
  opacity: 1;
}
/* line 142, less/components/magazine-tile.less */
.magazine-tile .tile .footer {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin: 10px 2px;
  text-align: center;
  max-width: 90%;
}
/* line 150, less/components/magazine-tile.less */
.magazine-tile .tile .footer.dark {
  color: #000;
}
/* line 152, less/components/magazine-tile.less */
.magazine-tile .tile .footer.dark .footer-item.subdesc,
.magazine-tile .tile .footer.dark .footer-item.metrics {
  color: #999;
}
/* line 156, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item {
  position: relative;
  margin: 7px auto 0;
}
/* line 159, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -webkit-line-clamp: 3;
  line-height: 20px;
  max-height: 60px;
}
/* line 163, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item.promoted-box {
  margin-top: 0px;
  display: inline-block;
  background-color: #999;
  color: #fff;
  text-transform: uppercase;
  padding: 3px 6px 1px 8px;
  letter-spacing: 1px;
  font-size: 10px;
}
/* line 174, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item.metrics .metrics-type {
  text-align: center;
  font-size: 11px;
  display: inline-block;
  padding: 0 5px;
  font-weight: 600;
  line-height: 12px;
}
/* line 181, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item.metrics .metrics-type .counts,
.magazine-tile .tile .footer .footer-item.metrics .metrics-type .display-name {
  display: block;
}
/* line 184, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item.metrics .metrics-type .display-name {
  position: relative;
  top: 1px;
}
/* line 188, less/components/magazine-tile.less */
.magazine-tile .tile .footer .footer-item.metrics .metrics-type:not(:last-child) {
  border-right: 1px solid #ccc;
}
/* line 196, less/components/magazine-tile.less */
.magazine-tile .tile .follow-button-wrapper {
  position: relative;
  margin-top: 10px;
  text-align: center;
  width: 100%;
  opacity: 0;
}
/* line 202, less/components/magazine-tile.less */
.magazine-tile .tile .follow-button-wrapper.small-ui {
  position: absolute;
  bottom: 15px;
}
/* line 206, less/components/magazine-tile.less */
.magazine-tile .tile .follow-button-wrapper.showing {
  opacity: 1;
}
/* line 213, less/components/magazine-tile.less */
.magazine-tile.brick .inner-rect {
  margin: 0 0 0 0;
}
/* line 215, less/components/magazine-tile.less */
.magazine-tile.brick .inner-rect .title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 24px;
}
/* line 221, less/components/magazine-tile.less */
.magazine-tile.brick .inner-rect .by-line {
  position: absolute;
  bottom: 15px;
  text-align: center;
  width: 100%;
  font-size: 12px;
  padding: 0 20px;
  font-weight: 600;
}
/* line 233, less/components/magazine-tile.less */
.magazine-tile .remove-from-favorites {
  position: absolute;
  right: 5px;
  top: 3px;
  z-index: 2;
  cursor: pointer;
}
/* line 240, less/components/magazine-tile.less */
.magazine-tile .remove-from-favorites .editor-remove-x-icon {
  stroke-width: 1.0;
}
/* line 243, less/components/magazine-tile.less */
.magazine-tile .remove-from-favorites .editor-remove-x-icon line,
.magazine-tile .remove-from-favorites .editor-remove-x-icon path,
.magazine-tile .remove-from-favorites .editor-remove-x-icon polygon,
.magazine-tile .remove-from-favorites .editor-remove-x-icon polyline,
.magazine-tile .remove-from-favorites .editor-remove-x-icon rect {
  stroke: white;
}
/* line 247, less/components/magazine-tile.less */
.magazine-tile .remove-from-favorites .editor-remove-x-icon:hover {
  stroke-width: 3.0;
}
/* line 254, less/components/magazine-tile.less */
.share-button-new-magazine {
  margin-top: 17px;
  margin-left: -3px;
}
@media (max-width: 767px) {
  /* line 265, less/components/magazine-tile.less */
  .magazine-tile .tile .inner-rect.revamped {
    height: 210px;
    width: 160px;
  }
  /* line 270, less/components/magazine-tile.less */
  .magazine-tile .tile .draggable.first-item {
    padding-top: 5px;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 350px) {
  /* line 282, less/components/magazine-tile.less */
  .magazine-tile .tile .inner-rect.revamped {
    width: 140px;
  }
}
/* line 1, less/components/maintenance-controller-view.less */
.maintenance-controller-view {
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 1, less/components/maintenance-view.less */
.maintenance-view {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* line 6, less/components/maintenance-view.less */
.maintenance-view .logo,
.maintenance-view h1,
.maintenance-view p {
  margin-bottom: 24px;
}
/* line 9, less/components/maintenance-view.less */
.maintenance-view a {
  text-decoration: underline;
}
/* line 1, less/components/media-player.less */
.media-player,
.player {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
/* line 11, less/components/media-player.less */
.media-static .background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
/* line 21, less/components/media-player.less */
.soundcloud-player {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
}
/* line 11, less/components/media-player.less */
.soundcloud-player .background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
/* line 100, less/components/media.less */
.soundcloud-player .play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
/* line 109, less/components/media.less */
.soundcloud-player .media-title {
  top: 0;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -webkit-line-clamp: 2;
  line-height: 20px;
  max-height: 40px;
}
/* line 119, less/components/media.less */
.soundcloud-player .media-title:hover {
  color: white;
}
/* line 124, less/components/media.less */
.soundcloud-player .media-attribution-icon {
  vertical-align: middle;
}
/* line 127, less/components/media.less */
.soundcloud-player .media-attribution-label {
  vertical-align: middle;
  padding-left: 5px;
}
/* line 131, less/components/media.less */
.soundcloud-player .media-attribution-link {
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  font-weight: 600;
}
/* line 24, less/components/media-player.less */
.soundcloud-player .play-button {
  top: initial;
  left: initial;
}
/* line 29, less/components/media-player.less */
.soundcloud-player .media-metadata {
  position: absolute;
  top: 0px;
  bottom: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 45px;
  z-index: 11;
}
/* line 76, less/components/media.less */
.soundcloud-player .media-metadata .media-title,
.soundcloud-player .media-metadata .media-attribution {
  position: relative;
}
/* line 80, less/components/media.less */
.soundcloud-player .media-metadata .media-title {
  max-height: initial;
  margin: 0px 20px;
  line-height: 15px;
}
/* line 86, less/components/media.less */
.soundcloud-player .media-metadata .media-attribution {
  font-size: 11px;
  line-height: 11px;
  margin: 10px 20px 0px 20px;
}
/* line 92, less/components/media.less */
.soundcloud-player .media-metadata .media-attribution .media-attribution-link {
  font-size: inherit;
  line-height: inherit;
}
/* line 35, less/components/media-player.less */
.soundcloud-player .media-metadata .media-title,
.soundcloud-player .media-metadata .media-attribution {
  display: block;
  position: relative;
}
/* line 42, less/components/media-player.less */
.soundcloud-player .media-player .close-control,
.soundcloud-player .media-player .controls {
  opacity: 1;
  pointer-events: auto;
}
/* line 47, less/components/media-player.less */
.soundcloud-player .media-player .close-control {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  width: 100%;
  height: 45px;
  top: 0px;
  left: 0px;
}
/* line 55, less/components/media-player.less */
.soundcloud-player .media-player .close-control .close-button {
  top: 10px;
  left: 10px;
}
/* line 61, less/components/media-player.less */
.soundcloud-player .media-player .controls {
  background: rgba(0, 0, 0, 0.5);
}
/* line 67, less/components/media-player.less */
.media-player {
  z-index: 10;
  overflow: hidden;
}
/* line 70, less/components/media-player.less */
.media-player .close-control {
  transition: 0.5s ease-out opacity;
  position: absolute;
  opacity: 0;
  top: 10px;
  left: 10px;
  pointer-events: none;
}
/* line 77, less/components/media-player.less */
.media-player .close-control.showing {
  opacity: 1;
  pointer-events: auto;
}
/* line 78, less/components/media-player.less */
.media-player .close-control .close-button {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 84, less/components/media-player.less */
.media-player .controls {
  transition: 0.5s ease-out opacity;
  opacity: 0;
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2187) 10%, rgba(0, 0, 0, 0.1536) 20%, rgba(0, 0, 0, 0.1029) 30%, rgba(0, 0, 0, 0.0648) 40%, rgba(0, 0, 0, 0.0375) 50%, rgba(0, 0, 0, 0.0192) 60%, rgba(0, 0, 0, 0.0081) 70%, rgba(0, 0, 0, 0.0024) 80%, rgba(0, 0, 0, 0.0003) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 92, less/components/media-player.less */
.media-player .controls.showing {
  opacity: 1;
}
/* line 94, less/components/media-player.less */
.media-player .controls.showing .bottom {
  pointer-events: auto;
}
/* line 98, less/components/media-player.less */
.media-player .controls .bottom {
  position: absolute;
  top: 0;
  left: 4px;
  right: 5px;
  bottom: 0;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
/* line 109, less/components/media-player.less */
.media-player .controls .bottom .pause-button,
.media-player .controls .bottom .play-button,
.media-player .controls .bottom .sound-button {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
}
/* line 118, less/components/media-player.less */
.media-player .controls .bottom .fullscreen-button {
  position: relative;
  width: 35px;
  height: 25px;
}
/* line 124, less/components/media-player.less */
.media-player .controls .bottom .media-scrubber {
  position: relative;
  height: 30px;
  margin: auto 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 131, less/components/media-player.less */
.media-player .controls .bottom .media-scrubber .time {
  position: relative;
  height: 15px;
  color: #fff;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 18px;
  pointer-events: none;
  text-align: left;
}
/* line 141, less/components/media-player.less */
.media-player .controls .bottom .media-scrubber .rail {
  position: relative;
  height: 8px;
  background-color: #1a1a1a;
  cursor: pointer;
  margin-top: 2px;
}
/* line 147, less/components/media-player.less */
.media-player .controls .bottom .media-scrubber .rail .elapsed,
.media-player .controls .bottom .media-scrubber .rail .loaded {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* line 157, less/components/media-player.less */
.media-player .controls .bottom .media-scrubber .rail .elapsed {
  background-color: #CC0000;
}
/* line 160, less/components/media-player.less */
.media-player .controls .bottom .media-scrubber .rail .loaded {
  background-color: #ccc;
}
/* line 1, less/components/media.less */
.media {
  background-color: #1a1a1a;
}
/* line 3, less/components/media.less */
.media .attribution {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 0 20px 10px;
}
/* line 10, less/components/media.less */
.media .attribution .activity,
.media .attribution .username {
  font-weight: 500;
}
/* line 15, less/components/media.less */
.media .bottom-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 20px 20px;
}
/* line 22, less/components/media.less */
.media .bottom-overlay.bottom-overlay-attribution {
  padding: 0 20px 20px 20px;
}
/* line 27, less/components/media.less */
.media .curator-actions {
  top: 14px;
  right: 14px;
}
/* line 33, less/components/media.less */
.media .flip-hint {
  right: 14px;
}
/* line 39, less/components/media.less */
.detail-media .curator-actions {
  top: 10px;
}
/* line 43, less/components/media.less */
.detail-media .media-metadata {
  top: 10px;
  padding-top: 50px;
}
/* line 48, less/components/media.less */
.detail-media .media-static .media-title {
  display: block;
}
/* line 53, less/components/media.less */
.media-overlay,
.media-static {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
}
/* line 65, less/components/media.less */
.media-overlay {
  transition: 0.15s ease-out opacity;
}
/* line 67, less/components/media.less */
.media-overlay.off {
  opacity: 0;
}
/* line 70, less/components/media.less */
.media-metadata {
  position: absolute;
  top: 0px;
  bottom: 50px;
  width: 100%;
}
/* line 76, less/components/media.less */
.media-metadata .media-title,
.media-metadata .media-attribution {
  position: relative;
}
/* line 80, less/components/media.less */
.media-metadata .media-title {
  max-height: initial;
  margin: 0px 20px;
  line-height: 15px;
}
/* line 86, less/components/media.less */
.media-metadata .media-attribution {
  font-size: 11px;
  line-height: 11px;
  margin: 10px 20px 0px 20px;
}
/* line 92, less/components/media.less */
.media-metadata .media-attribution .media-attribution-link {
  font-size: inherit;
  line-height: inherit;
}
/* line 100, less/components/media.less */
.media-static .play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
/* line 109, less/components/media.less */
.media-static .media-title {
  top: 0;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -webkit-line-clamp: 2;
  line-height: 20px;
  max-height: 40px;
}
/* line 119, less/components/media.less */
.media-static .media-title:hover {
  color: white;
}
/* line 124, less/components/media.less */
.media-static .media-attribution-icon {
  vertical-align: middle;
}
/* line 127, less/components/media.less */
.media-static .media-attribution-label {
  vertical-align: middle;
  padding-left: 5px;
}
/* line 131, less/components/media.less */
.media-static .media-attribution-link {
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  font-weight: 600;
}
/* line 1, less/components/mini-attribution.less */
.mini-attribution {
  color: #999999;
}
/* line 3, less/components/mini-attribution.less */
.mini-attribution .linked-text {
  display: inline;
  margin-left: 5px;
}
/* line 6, less/components/mini-attribution.less */
.mini-attribution .linked-text a {
  color: black;
}
/* line 1, less/components/mobile-footer-nav.less */
.mobile-footer-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid #ddd;
  height: 42px;
}
/* line 9, less/components/mobile-footer-nav.less */
.mobile-footer-nav ul {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
/* line 13, less/components/mobile-footer-nav.less */
.mobile-footer-nav ul li {
  height: 100%;
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}
/* line 20, less/components/mobile-footer-nav.less */
.mobile-footer-nav ul li:not(:last-child) {
  border-right: 1px solid #ddd;
}
/* line 23, less/components/mobile-footer-nav.less */
.mobile-footer-nav ul li:active {
  background-color: #DADADA;
}
/* line 1, less/components/mobile-item-header.less */
.mobile-item-header {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 47px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 11px 15px 9px 15px;
  line-height: 27px;
  background: #fff;
  z-index: 50;
  border-bottom: 1px solid rgba(38, 38, 38, 0.1);
}
/* line 15, less/components/mobile-item-header.less */
.mobile-item-header__company {
  display: -ms-flexbox;
  display: flex;
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  line-height: 30px;
  font-weight: 900;
  font-size: 20px;
  line-height: inherit;
}
/* line 22, less/components/mobile-item-header.less */
.mobile-item-header__company .logo {
  margin-right: 3px;
}
/* line 27, less/components/mobile-item-header.less */
.mobile-item-header__more {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #F52828;
  line-height: inherit;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 36, less/components/mobile-item-header.less */
.mobile-item-header__more .bold {
  font-weight: 900;
}
/* line 40, less/components/mobile-item-header.less */
.mobile-item-header__more img {
  height: 8px;
  margin-bottom: 1px;
  margin-left: 4px;
}
/* line 47, less/components/mobile-item-header.less */
.mobile-item-header__more-topic-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* line 5, less/components/modal.less */
.feed-layout-modal {
  background-color: white;
  z-index: 1;
  padding: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  max-height: 80vh;
  max-width: 90vh;
}
/* line 15, less/components/modal.less */
.modal--small {
  min-width: 500px;
  width: 500px;
}
/* line 19, less/components/modal.less */
.modal--small.modal--fixed-height {
  min-height: 500px;
  height: 500px;
}
/* line 25, less/components/modal.less */
.modal--medium {
  min-width: 750px;
  width: 750px;
}
/* line 29, less/components/modal.less */
.modal--medium.modal--fixed-height {
  min-height: 750px;
  height: 750px;
}
/* line 35, less/components/modal.less */
.modal--large {
  min-width: 960px;
  width: 960px;
}
/* line 39, less/components/modal.less */
.modal--large.modal--fixed-height {
  min-height: 960px;
  height: 960px;
}
/* line 45, less/components/modal.less */
.modal__header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
/* line 51, less/components/modal.less */
.modal__header h2 {
  -ms-flex: 1;
      flex: 1;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 30px;
}
/* line 58, less/components/modal.less */
.modal__header .close-button {
  width: 30px;
  position: relative;
  top: auto;
  left: auto;
}
/* line 2, less/components/modifiable-list.less */
.modifiable-list .remaining-count {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.75);
  line-height: 30px;
  font-size: 10px;
  text-align: center;
  color: white;
}
/* line 13, less/components/modifiable-list.less */
.modifiable-list .icon-button {
  stroke: black;
}
/* line 17, less/components/modifiable-list.less */
.modifiable-list li:hover line,
.modifiable-list li:hover path,
.modifiable-list li:hover polygon,
.modifiable-list li:hover polyline,
.modifiable-list li:hover circle {
  stroke: #0099cc;
}
/* line 20, less/components/modifiable-list.less */
.modifiable-list li:hover .fill-shape {
  stroke: none;
  fill: #0099cc;
}
/* line 25, less/components/modifiable-list.less */
.modifiable-list.expanded > li {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  padding: 5px;
  line-height: 30px;
  -ms-flex-align: center;
      align-items: center;
}
/* line 31, less/components/modifiable-list.less */
.modifiable-list.expanded > li > * {
  line-height: 30px;
}
/* line 34, less/components/modifiable-list.less */
.modifiable-list.expanded > li:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
/* line 36, less/components/modifiable-list.less */
.modifiable-list.expanded > li:hover > svg:last-child {
  display: inline-block;
}
/* line 40, less/components/modifiable-list.less */
.modifiable-list.expanded > li > svg:last-child {
  display: none;
  cursor: pointer;
  margin: 5px 0;
}
/* line 45, less/components/modifiable-list.less */
.modifiable-list.expanded > li .tooltip {
  display: block;
}
/* line 49, less/components/modifiable-list.less */
.modifiable-list.condensed {
  padding-left: 5px;
  padding-right: 5px;
}
/* line 52, less/components/modifiable-list.less */
.modifiable-list.condensed > li {
  display: inline-block;
  padding-right: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* line 57, less/components/modifiable-list.less */
.modifiable-list.condensed > li:first-child {
  padding-left: 0;
}
/* line 60, less/components/modifiable-list.less */
.modifiable-list.condensed > li:last-child {
  padding-right: 0;
}
/* line 66, less/components/modifiable-list.less */
.modifiable-list.small .avatar,
.modifiable-list.small .icon-button,
.modifiable-list.small .remaining-count {
  width: 18px;
  height: 18px;
  line-height: 18px;
}
/* line 73, less/components/modifiable-list.less */
.modifiable-list.small .default-avatar text {
  font-weight: 100;
}
/* line 76, less/components/modifiable-list.less */
.modifiable-list.small.expanded > li {
  line-height: 18px;
  margin-bottom: 0;
}
/* line 79, less/components/modifiable-list.less */
.modifiable-list.small.expanded > li > * {
  line-height: 18px;
}
/* line 3, less/components/myprofile-view.less */
.my-profile-view .profile-content {
  border-bottom: none;
}
/* line 7, less/components/myprofile-view.less */
.my-profile-view .profile-buttons {
  text-align: center;
  margin-top: 15px;
}
/* line 11, less/components/myprofile-view.less */
.my-profile-view .loading {
  position: relative;
  margin-top: 80px;
}
/* line 15, less/components/myprofile-view.less */
.my-profile-view .toc {
  padding-top: 45px;
}
/* line 20, less/components/myprofile-view.less */
.my-profile-view__content-wrapper {
  margin: 0 auto;
}
@media (max-width: 767px) {
  /* line 25, less/components/myprofile-view.less */
  .my-profile-view__content-wrapper {
    padding: 15px;
  }
}
/* line 6, less/components/navigation-bar.less */
.navigation-bar > .bar {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  transition-property: transform, opacity;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
/* line 20, less/components/navigation-bar.less */
.navigation-bar > .bar.bar--signed-in {
  height: 61px;
  border-bottom: 1px solid #ddd;
}
/* line 29, less/components/navigation-bar.less */
.navigation-bar > .bar.hidden-no-track {
  -ms-transform: translate3d(0, -60px, 0);
  transform: translate3d(0, -60px, 0);
}
/* line 41, less/components/navigation-bar.less */
.navigation-bar > .bar.hidden {
  display: none;
}
/* line 48, less/components/navigation-bar.less */
.navigation-bar > .bar.borderless {
  border-bottom: 1px solid #fff;
}
/* line 50, less/components/navigation-bar.less */
.navigation-bar > .bar.borderless .tab-item {
  border-bottom-color: #fff;
}
/* line 56, less/components/navigation-bar.less */
.navigation-bar > .bar.picker-i18n .tabs {
  position: absolute;
  right: 0;
}
/* line 62, less/components/navigation-bar.less */
.navigation-bar > .bar.picker {
  height: 80px;
}
/* line 64, less/components/navigation-bar.less */
.navigation-bar > .bar.picker .tabs {
  position: absolute;
  right: 0;
}
/* line 74, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .text-tab,
.navigation-bar > .bar.dark .text-tab {
  color: rgba(255, 255, 255, 0.8);
}
/* line 77, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .text-tab.active,
.navigation-bar > .bar.dark .text-tab.active {
  color: #fff;
}
/* line 82, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .tabs,
.navigation-bar > .bar.dark .tabs {
  color: #fff;
}
/* line 85, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .tabs .navigation__search,
.navigation-bar > .bar.dark .tabs .navigation__search {
  border-left: 0;
}
/* line 90, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .tab-item,
.navigation-bar > .bar.dark .tab-item {
  border-bottom: 0;
}
/* line 94, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .button.signup-button,
.navigation-bar > .bar.dark .button.signup-button {
  border: none;
  background: #fff;
  color: #000;
}
/* line 98, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .button.signup-button:hover,
.navigation-bar > .bar.dark .button.signup-button:hover {
  background: #000;
  color: #fff;
}
/* line 105, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent {
  border-bottom-color: transparent;
}
/* line 110, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .tabs .navigation__search .search-container {
  background: transparent;
}
/* line 116, less/components/navigation-bar.less */
.navigation-bar > .bar.translucent .tab-item {
  background: transparent;
}
/* line 121, less/components/navigation-bar.less */
.navigation-bar > .bar.dark {
  border-bottom-color: #666;
}
/* line 126, less/components/navigation-bar.less */
.navigation-bar > .bar.dark .tabs .navigation__search .search-container {
  background: black;
}
/* line 132, less/components/navigation-bar.less */
.navigation-bar > .bar.dark .tab-item {
  background: black;
}
/* line 138, less/components/navigation-bar.less */
.navigation-bar .navbar-follow-button {
  position: absolute;
  height: 60px;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  pointer-events: none;
}
/* line 146, less/components/navigation-bar.less */
.navigation-bar .navbar-follow-button > h1 {
  opacity: 0;
}
/* line 147, less/components/navigation-bar.less */
.navigation-bar .navbar-follow-button .follow-button-container {
  position: absolute;
  height: 60px;
  top: 0;
  pointer-events: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 1100px) {
  /* line 154, less/components/navigation-bar.less */
  .navigation-bar .navbar-follow-button .follow-button-container {
    opacity: 0;
    pointer-events: none;
  }
}
/* line 161, less/components/navigation-bar.less */
.navigation-bar .navbar-title-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
  text-align: center;
  transition: 250ms ease-out opacity;
}
@media (max-width: 1100px) {
  /* line 171, less/components/navigation-bar.less */
  .navigation-bar .navbar-title-bar {
    opacity: 0;
    pointer-events: none;
  }
}
/* line 177, less/components/navigation-bar.less */
.navigation-bar .navbar-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: 250ms ease-out opacity;
}
/* line 187, less/components/navigation-bar.less */
.navigation-bar .navbar-title > h1 {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 30%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 197, less/components/navigation-bar.less */
.navigation-bar .navbar-title > h1.profile {
  font-size: 20px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
/* line 205, less/components/navigation-bar.less */
.navigation-bar .navbar-title.hidden {
  opacity: 0;
}
/* line 210, less/components/navigation-bar.less */
.navigation-bar .hint-box.left {
  left: 15px;
}
/* line 212, less/components/navigation-bar.less */
.navigation-bar .background {
  background: #fff;
  z-index: -1;
  transition-property: opacity;
  transition-duration: 0.15s;
}
/* line 219, less/components/navigation-bar.less */
.navigation-bar .logo-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  padding: 0;
  height: 60px;
  transition: 150ms ease-out opacity;
  transition-delay: 200ms;
}
/* line 228, less/components/navigation-bar.less */
.navigation-bar .logo--landscape {
  margin-left: 12px;
}
/* line 232, less/components/navigation-bar.less */
.navigation-bar .text-tabs {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  padding: 0 20px;
  max-width: calc(100% - 300px);
}
/* line 241, less/components/navigation-bar.less */
.navigation-bar .text-tab {
  font-size: 12px;
  line-height: 60px;
  height: 60px;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  margin-right: 26px;
  letter-spacing: 1px;
  opacity: 0.5;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
/* line 254, less/components/navigation-bar.less */
.navigation-bar .text-tab.overflow {
  display: none;
}
/* line 258, less/components/navigation-bar.less */
.navigation-bar .text-tab:last-child {
  margin-right: 0;
}
/* line 262, less/components/navigation-bar.less */
.navigation-bar .text-tab.hover {
  opacity: 0.7;
}
/* line 266, less/components/navigation-bar.less */
.navigation-bar .text-tab.active,
.navigation-bar .text-tab:active {
  opacity: 1;
}
/* line 272, less/components/navigation-bar.less */
.navigation-bar .get-app-button {
  margin-left: 20px;
}
/* line 276, less/components/navigation-bar.less */
.navigation-bar .more {
  position: relative;
  cursor: pointer;
  z-index: 1;
  display: none;
}
/* line 282, less/components/navigation-bar.less */
.navigation-bar .more.show {
  display: block;
}
/* line 287, less/components/navigation-bar.less */
.navigation-bar .dropdown-menu {
  position: absolute;
  display: none;
  right: 0;
  top: 45px;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
}
/* line 296, less/components/navigation-bar.less */
.navigation-bar .dropdown-menu.open {
  display: block;
}
/* line 300, less/components/navigation-bar.less */
.navigation-bar .dropdown-menu .text-tab {
  text-align: center;
  margin: 0;
  padding: 0 15px 0 15px;
  display: block;
}
/* line 308, less/components/navigation-bar.less */
.navigation-bar .search-container {
  background: #fff;
}
/* line 312, less/components/navigation-bar.less */
.navigation-bar .bar.searching {
  overflow-x: initial;
}
/* line 314, less/components/navigation-bar.less */
.navigation-bar .bar.searching .text-tab {
  z-index: auto;
}
/* line 317, less/components/navigation-bar.less */
.navigation-bar .bar.searching .tabs .tab-item.navigation__search {
  overflow-x: visible;
}
/* line 320, less/components/navigation-bar.less */
.navigation-bar .bar.searching .tabs {
  z-index: 2;
}
/* line 325, less/components/navigation-bar.less */
.navigation-bar .tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-positive: 1;
      flex-grow: 1;
  height: 100%;
}
/* line 332, less/components/navigation-bar.less */
.navigation-bar .tabs .tab-item {
  background: #fff;
  padding: 0 16px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  height: 59px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 341, less/components/navigation-bar.less */
.navigation-bar .tabs .tab-item .toc-button {
  height: 59px;
}
/* line 345, less/components/navigation-bar.less */
.navigation-bar .tabs .tab-item--notifications {
  position: relative;
}
/* line 350, less/components/navigation-bar.less */
.navigation-bar .tabs .button.signup-button {
  line-height: 28px;
  height: 30px;
  padding: 0 20px 0 21px;
  background: #000;
  border: none;
  color: #fff;
  border-radius: 0;
}
/* line 358, less/components/navigation-bar.less */
.navigation-bar .tabs .button.signup-button:hover {
  background: #242424;
}
/* line 364, less/components/navigation-bar.less */
.navigation-bar .unread-count {
  position: absolute;
  display: inline-block;
  font-size: 0;
  cursor: pointer;
  background-color: #e12828;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 18px;
  left: 40px;
}
/* line 380, less/components/navigation-bar.less */
.navigation-bar .titlepop-enter {
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
/* line 385, less/components/navigation-bar.less */
.navigation-bar .titlepop-enter.titlepop-enter-active {
  transition-duration: 200ms;
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* line 391, less/components/navigation-bar.less */
.navigation-bar .titlepop-leave {
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* line 396, less/components/navigation-bar.less */
.navigation-bar .titlepop-leave.titlepop-leave-active {
  transition-duration: 200ms;
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
/* line 403, less/components/navigation-bar.less */
.navigation-bar .super-user-avatar .super-user-avatar__super-profile {
  top: 15px;
  padding-left: 20px;
}
/* line 411, less/components/navigation-bar.less */
.navigation-bar__unauth-ctas > * {
  margin-left: 16px;
}
/* line 416, less/components/navigation-bar.less */
.navigation-bar__login-button {
  padding: 8px;
  font-weight: 600;
}
@media (max-width: 767px) {
  /* line 419, less/components/navigation-bar.less */
  .navigation-bar__login-button {
    display: none;
  }
}
/* line 1, less/components/not-found-controller-view.less */
.not-found-controller-view {
  text-align: center;
  padding-top: 132px;
}
/* line 1, less/components/not-found-view.less */
.not-found-view {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* line 6, less/components/not-found-view.less */
.not-found-view .logo,
.not-found-view h1,
.not-found-view p {
  margin-bottom: 24px;
}
/* line 9, less/components/not-found-view.less */
.not-found-view a {
  text-decoration: underline;
}
/* line 1, less/components/notifications-list.less */
.notifications-list {
  position: absolute;
  right: 0;
  top: 61px;
  z-index: 31;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
/* line 14, less/components/notifications-list.less */
.notification-cell {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
/* line 17, less/components/notifications-list.less */
.notification-cell .debug-item {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  color: #999;
  padding: 2px 6px;
  border-bottom: none;
  border-right: none;
  cursor: pointer;
}
/* line 34, less/components/notifications-list.less */
.notification-cell:hover .debug-item {
  display: inline-block;
}
/* line 43, less/components/notifications-list.less */
.notification-cell .left-col {
  position: relative;
  padding: 15px;
  min-width: 75px;
}
/* line 49, less/components/notifications-list.less */
.notification-cell .right-col {
  cursor: pointer;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 56, less/components/notifications-list.less */
.notification-cell .notification-text {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 12px;
  line-height: 15px;
  padding: 15px 15px 15px 0;
}
/* line 62, less/components/notifications-list.less */
.notification-cell .notification-text .linked-text {
  position: relative;
}
/* line 64, less/components/notifications-list.less */
.notification-cell .notification-text .linked-text a {
  color: #09c;
}
/* line 70, less/components/notifications-list.less */
.notification-cell .notification-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* line 78, less/components/notifications-list.less */
.notification-cell .date {
  color: #999;
}
/* line 82, less/components/notifications-list.less */
.notification-cell .notification-image,
.notification-cell .notification-refersto-image {
  position: relative;
  display: inline-block;
  margin: 15px 15px 15px 0;
  width: 45px;
  height: 45px;
  background-size: cover;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 93, less/components/notifications-list.less */
.notification-cell .notification-refersto-image {
  width: 28px;
  height: 28px;
  margin: 10px 10px 0 0;
  vertical-align: middle;
}
/* line 100, less/components/notifications-list.less */
.notification-cell .section-link {
  font-weight: 500;
}
/* line 104, less/components/notifications-list.less */
.notification-cell:hover {
  background-color: #e8e8e8;
}
/* line 108, less/components/notifications-list.less */
.notification-cell.empty {
  display: block;
  font-size: 14px;
  padding: 20px 10px 20px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
/* line 115, less/components/notifications-list.less */
.notification-cell.empty .empty-text {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 100%;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 122, less/components/notifications-list.less */
.notification-cell.empty .heart-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 131, less/components/notifications-list.less */
.notification-cell.load {
  min-height: 75px;
  position: relative;
}
/* line 134, less/components/notifications-list.less */
.notification-cell.load .loading {
  position: absolute;
}
/* line 139, less/components/notifications-list.less */
.notification-cell .avatar {
  width: 45px;
  height: 45px;
}
/* line 144, less/components/notifications-list.less */
.notification-cell .notification-referrer-avatar .avatar {
  display: inline-block;
  margin: 10px 10px 0 0;
  vertical-align: top;
  width: 28px;
  height: 28px;
}
/* line 154, less/components/notifications-list.less */
.gift-of-flipboard-cta {
  padding: 30px;
  background: #de262d;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
/* line 161, less/components/notifications-list.less */
.gift-of-flipboard-cta .close-button {
  position: absolute;
  left: 10px;
  top: 10px;
}
/* line 167, less/components/notifications-list.less */
.gift-of-flipboard-cta h3 {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
/* line 176, less/components/notifications-list.less */
.gift-of-flipboard-cta h4 {
  font-size: 16px;
  line-height: 19px;
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  /* line 185, less/components/notifications-list.less */
  .notifications-list {
    width: 100%;
    max-height: calc(100% - (60px + 42px));
  }
}
/* line 1, less/components/page-gap.less */
.page-gap {
  width: 100%;
  background: #fff;
}
/* line 1, less/components/pagebox.less */
.pagebox {
  position: relative;
  width: 100%;
  color: #000;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 9, less/components/pagebox.less */
.pagebox .header {
  position: relative;
  padding: 0 0 30px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
/* line 16, less/components/pagebox.less */
.pagebox .header .title {
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
/* line 22, less/components/pagebox.less */
.pagebox .header .title .linked-text > a {
  color: #09c;
}
/* line 26, less/components/pagebox.less */
.pagebox .header .sub-title {
  font-size: 14px;
  line-height: 20px;
  padding-top: 10px;
}
/* line 30, less/components/pagebox.less */
.pagebox .header .sub-title .sub-title-link {
  color: #09c;
}
/* line 35, less/components/pagebox.less */
.pagebox .page-content {
  margin: 0 auto;
  padding: 40px 0;
}
/* line 44, less/components/pagebox.less */
.pagebox.magazine .magazine-tile .tile .inner-rect {
  margin: 40px 0 0 0;
}
/* line 1, less/components/pagebox/end-tile.less */
.end-tile {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  background-color: #444;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1), linear;
  transition-property: width, transform, opacity;
  transition-duration: 0.5s;
}
/* line 16, less/components/pagebox/end-tile.less */
.end-tile .text {
  position: relative;
  text-align: center;
}
/* line 2, less/components/photo.less */
.photo .photo-link {
  position: relative;
  display: block;
  height: 100%;
  cursor: pointer;
}
/* line 9, less/components/photo.less */
.photo .photo-caption {
  display: block;
  color: white;
  font-size: 12px;
  line-height: 15px;
  max-width: 350px;
  cursor: pointer;
}
/* line 18, less/components/photo.less */
.photo .photo-commentary,
.photo .action-bar {
  position: absolute;
}
/* line 22, less/components/photo.less */
.photo .photo-commentary {
  top: 20px;
  left: 20px;
  right: 20px;
}
/* line 27, less/components/photo.less */
.photo .action-bar {
  bottom: 20px;
  right: 20px;
}
/* line 32, less/components/photo.less */
.photo .curator-actions {
  top: 14px;
  right: 14px;
}
/* line 37, less/components/photo.less */
.photo .photo-dimmer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(ellipse, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.25) 100%);
}
/* line 47, less/components/photo.less */
.photo.hoverable .photo-dimmer,
.photo.hoverable .photo-commentary {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 330ms;
  transition-delay: 80ms;
}
/* line 56, less/components/photo.less */
.photo.hoverable:hover .photo-dimmer,
.photo.hoverable:hover .photo-commentary {
  opacity: 1;
}
/* line 64, less/components/photo.less */
.photo.inset-right .action-bar {
  right: 10px;
  left: 10px;
  bottom: 10px;
}
/* line 69, less/components/photo.less */
.photo.inset-right .photo-commentary {
  right: 50px;
}
/* line 72, less/components/photo.less */
.photo.inset-right .photo-attribution {
  text-align: left;
  bottom: 26px;
  left: 10px;
  right: 10px;
  margin-right: 0;
}
/* line 81, less/components/photo.less */
.photo .flip-hint {
  top: 0px;
  right: 14px;
}
/* line 88, less/components/photo.less */
.photo-page .photo-commentary {
  top: auto;
  right: auto;
  bottom: 35px;
  left: 20px;
}
/* line 94, less/components/photo.less */
.photo-page .photo-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5832) 10%, rgba(0, 0, 0, 0.4096) 20%, rgba(0, 0, 0, 0.2744) 30%, rgba(0, 0, 0, 0.1728) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.0512) 60%, rgba(0, 0, 0, 0.0216) 70%, rgba(0, 0, 0, 0.0064) 80%, rgba(0, 0, 0, 0.0008) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 102, less/components/photo.less */
.photo-page .photo-attribution,
.photo-page .photo.inset-right .photo-attribution {
  left: auto;
  max-width: 300px;
  text-align: right;
  color: #fff;
  bottom: 20px;
}
/* line 109, less/components/photo.less */
.photo-page .action-bar,
.photo-page .photo.inset-right .action-bar {
  left: 20px;
}
/* line 114, less/components/photo.less */
.photo-attribution {
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  margin-right: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
/* line 3, less/components/picker-item.less */
ul.picker-item li .title {
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
/* line 8, less/components/picker-item.less */
ul.picker-item li .footer {
  position: absolute;
  left: 10px;
  bottom: 6px;
  line-height: 16px;
}
/* line 2, less/components/post.less */
.post .curator-actions {
  right: 8px;
  top: 8px;
}
/* line 10, less/components/post.less */
.post-image .top-attribution.grey,
.post-image .top-attribution.empty {
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
/* line 19, less/components/post.less */
.post-image .top-attribution.empty {
  height: 25px;
}
/* line 24, less/components/post.less */
.post-image .top-attribution.grey.no-commentary {
  padding-bottom: 5px;
}
/* line 34, less/components/post.less */
.light-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.015);
}
/* line 43, less/components/post.less */
.removed-item-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 47, less/components/post.less */
.removed-item-text h4 {
  position: relative;
  font-size: 18px;
  line-height: 12px;
  color: #999;
}
/* line 1, less/components/postbox.less */
.postbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
}
/* line 5, less/components/postbox.less */
.postbox .header {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center;
  padding-bottom: 20px;
}
/* line 8, less/components/postbox.less */
.postbox .header .title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 14, less/components/postbox.less */
.postbox .header .section-link {
  font-size: 12px;
  line-height: 15px;
  color: #09c;
  font-weight: 600;
}
/* line 26, less/components/postbox.less */
.group .postbox {
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 20px;
}
/* line 32, less/components/postbox.less */
.postbox .postbox-content {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
/* line 40, less/components/postbox.less */
.postbox-listitem {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  padding: 20px 0px 20px 0px;
}
/* line 49, less/components/postbox.less */
.postbox-listitem .title {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
/* line 56, less/components/postbox.less */
.postbox-listitem .byline-attribution {
  color: #888;
  font-weight: 400;
  display: block;
  white-space: inherit;
}
/* line 64, less/components/postbox.less */
.postbox-listitem .post-image {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-left: 10px;
}
/* line 70, less/components/postbox.less */
.postbox-listitem + .postbox-listitem {
  border-top: 1px solid #f2f2f2;
}
/* line 1, less/components/poster-page.less */
.poster {
  position: relative;
  overflow: hidden;
}
/* line 4, less/components/poster-page.less */
.poster .poster-page {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 8, less/components/poster-page.less */
.poster .poster-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* line 14, less/components/poster-page.less */
.poster .poster-page .overlay.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2187) 10%, rgba(0, 0, 0, 0.1536) 20%, rgba(0, 0, 0, 0.1029) 30%, rgba(0, 0, 0, 0.0648) 40%, rgba(0, 0, 0, 0.0375) 50%, rgba(0, 0, 0, 0.0192) 60%, rgba(0, 0, 0, 0.0081) 70%, rgba(0, 0, 0, 0.0024) 80%, rgba(0, 0, 0, 0.0003) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 16, less/components/poster-page.less */
.poster .poster-page .overlay.left.dark {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3645) 10%, rgba(0, 0, 0, 0.256) 20%, rgba(0, 0, 0, 0.1715) 30%, rgba(0, 0, 0, 0.108) 40%, rgba(0, 0, 0, 0.0625) 50%, rgba(0, 0, 0, 0.032) 60%, rgba(0, 0, 0, 0.0135) 70%, rgba(0, 0, 0, 0.004) 80%, rgba(0, 0, 0, 0.0005) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 20, less/components/poster-page.less */
.poster .poster-page .overlay.right {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2187) 10%, rgba(0, 0, 0, 0.1536) 20%, rgba(0, 0, 0, 0.1029) 30%, rgba(0, 0, 0, 0.0648) 40%, rgba(0, 0, 0, 0.0375) 50%, rgba(0, 0, 0, 0.0192) 60%, rgba(0, 0, 0, 0.0081) 70%, rgba(0, 0, 0, 0.0024) 80%, rgba(0, 0, 0, 0.0003) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 22, less/components/poster-page.less */
.poster .poster-page .overlay.right.dark {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3645) 10%, rgba(0, 0, 0, 0.256) 20%, rgba(0, 0, 0, 0.1715) 30%, rgba(0, 0, 0, 0.108) 40%, rgba(0, 0, 0, 0.0625) 50%, rgba(0, 0, 0, 0.032) 60%, rgba(0, 0, 0, 0.0135) 70%, rgba(0, 0, 0, 0.004) 80%, rgba(0, 0, 0, 0.0005) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 27, less/components/poster-page.less */
.poster .poster-page .excerpt-box {
  color: #000;
  position: absolute;
  padding: 60px 30px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 34, less/components/poster-page.less */
.poster .poster-page .excerpt-box.top {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 37, less/components/poster-page.less */
.poster .poster-page .excerpt-box.bottom {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 40, less/components/poster-page.less */
.poster .poster-page .excerpt-box > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 43, less/components/poster-page.less */
.poster .poster-page .excerpt-box .headline {
  display: block;
  position: relative;
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: -1px;
}
@media (max-width: 1064px) {
  /* line 54, less/components/poster-page.less */
  .poster .poster-page .excerpt-box .headline {
    font-size: 20px;
    line-height: 25px;
  }
}
/* line 59, less/components/poster-page.less */
.poster .poster-page .excerpt-box .excerpt {
  position: relative;
  overflow: hidden;
  max-height: 120px;
}
/* line 63, less/components/poster-page.less */
.poster .poster-page .excerpt-box .excerpt .excerpt-text {
  font-size: 14px;
  line-height: 20px;
}
/* line 1, less/components/profile-content.less */
.profile-content {
  position: relative;
  text-align: left;
  margin: 45px 0 15px 0;
  padding-bottom: 20px;
}
/* line 8, less/components/profile-content.less */
.profile-content .profile-tabs {
  border-bottom: 1px solid #f2f2f2;
  text-align: center;
  padding-bottom: 12px;
  margin: 0 auto 15px;
}
/* line 14, less/components/profile-content.less */
.profile-content .profile-tabs li {
  display: inline-block;
  color: #919191;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
}
/* line 20, less/components/profile-content.less */
.profile-content .profile-tabs li:not(:last-child) {
  margin-right: 20px;
}
/* line 23, less/components/profile-content.less */
.profile-content .profile-tabs li.tabable {
  cursor: pointer;
}
/* line 26, less/components/profile-content.less */
.profile-content .profile-tabs li.selected {
  color: #000;
}
/* line 32, less/components/profile-content.less */
.profile-content .tile-list {
  margin: 20px auto 0;
}
/* line 36, less/components/profile-content.less */
.profile-content .profile-headline {
  font-size: 12px;
  color: #999;
  padding: 20px 0;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid #f2f2f2;
  margin-top: 10px;
}
/* line 48, less/components/profile-content.less */
.profile-content .profile-feeds-revamped {
  padding-top: 0px;
  margin-top: 0px;
}
/* line 53, less/components/profile-content.less */
.profile-content .profile-feeds {
  padding-top: 10px;
  margin-top: 30px;
}
/* line 56, less/components/profile-content.less */
.profile-content .profile-feeds .feed-header {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin: 50px 0 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* line 66, less/components/profile-content.less */
.profile-content .profile-magazines,
.profile-content .profile-groups {
  display: block;
  margin: 0 auto;
}
/* line 72, less/components/profile-content.less */
.profile-content .profile-following .tile-list,
.profile-content .profile-followers .tile-list {
  margin-top: 0;
  padding-top: 0;
}
/* line 78, less/components/profile-content.less */
.profile-content .empty-list {
  text-align: center;
  font-size: 25px;
  color: #999;
  font-weight: 200;
  max-width: 800px;
  margin: 60px auto 0;
  white-space: pre-line;
}
/* line 88, less/components/profile-content.less */
.profile-content .loading {
  position: relative;
  margin: 0 auto;
  top: 0;
}
/* line 95, less/components/profile-content.less */
.remove-from-home-view {
  position: relative;
  z-index: 31;
  background-color: white;
  padding: 35px;
  width: 500px;
  border: 2px solid black;
}
/* line 105, less/components/profile-content.less */
.remove-from-home-view .button {
  margin-top: 10px;
  float: right;
}
/* line 109, less/components/profile-content.less */
.remove-from-home-view .close-button {
  position: absolute;
  left: 10px;
  top: 9px;
}
@media (max-width: 767px) {
  /* line 118, less/components/profile-content.less */
  .profile-magazines .grid-item.first-item {
    padding-top: 5px;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 1, less/components/profile-header.less */
.profile-header {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding-top: 110px;
  position: relative;
}
/* line 12, less/components/profile-header.less */
.profile-header .profile-header-title {
  display: inline-block;
  padding-right: 8px;
}
/* line 17, less/components/profile-header.less */
.profile-header .display-name.verified {
  display: inline-block;
  background: transparent url(/images/verified-check.png) right center no-repeat;
  padding-right: 36px;
  padding-bottom: 9px;
}
/* line 24, less/components/profile-header.less */
.profile-header .profile-header-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
/* line 30, less/components/profile-header.less */
.profile-header .profile-header-content .revamped-follow .follow-button {
  margin-top: -5px;
}
/* line 35, less/components/profile-header.less */
.profile-header .profile-header-content .avatar-wrapper {
  display: inline-block;
}
/* line 39, less/components/profile-header.less */
.profile-header .profile-header-content .avatar {
  height: 110px;
  width: 110px;
  margin: 0 auto;
}
/* line 45, less/components/profile-header.less */
.profile-header .profile-header-content .avatar-wrapper--badge {
  border-width: 3px;
}
/* line 49, less/components/profile-header.less */
.profile-header .error {
  font-size: 13px;
  line-height: 14px;
  color: #f03737;
  margin-bottom: 10px;
}
/* line 56, less/components/profile-header.less */
.profile-header .related-topics {
  max-width: 600px;
  margin: 0 auto;
}
/* line 59, less/components/profile-header.less */
.profile-header .related-topics * {
  vertical-align: middle;
}
/* line 63, less/components/profile-header.less */
.profile-header .related-topics .show-all {
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 1px;
  border-bottom: 1px solid #777;
  font-weight: 600;
  font-size: 10px;
  height: 21px;
  line-height: 21px;
}
/* line 77, less/components/profile-header.less */
.profile-header .profile-header-displayname {
  position: relative;
  font-weight: 400;
  font-size: 34px;
  font-family: "Tiempos", Georgia, serif;
  margin: 10px 0 0px;
}
/* line 85, less/components/profile-header.less */
.profile-header .profile-header-displayname.revamped {
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
/* line 91, less/components/profile-header.less */
.profile-header .profile-header-username {
  font-size: 14px;
  color: #919191;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
}
/* line 98, less/components/profile-header.less */
.profile-header .profile-header-bio {
  margin: 15px auto 0;
  font-size: 14px;
  line-height: 20px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
}
/* line 106, less/components/profile-header.less */
.profile-header .profile-header-badge {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #F52828;
  text-transform: uppercase;
}
/* line 113, less/components/profile-header.less */
.profile-header .edit-icon {
  position: absolute;
  opacity: 0;
}
/* line 118, less/components/profile-header.less */
.profile-header [contenteditable="true"] {
  outline: none;
  background-color: #f3f3f3;
}
/* line 124, less/components/profile-header.less */
.profile-header .profile-header-displayname .text,
.profile-header .profile-header-bio .text {
  outline: none;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}
/* line 135, less/components/profile-header.less */
.profile-header.editable .profile-header-displayname .edit-icon,
.profile-header.editable .profile-header-bio .edit-icon {
  cursor: pointer;
}
/* line 138, less/components/profile-header.less */
.profile-header.editable .profile-header-displayname .edit-icon:hover,
.profile-header.editable .profile-header-bio .edit-icon:hover {
  opacity: 1;
}
/* line 145, less/components/profile-header.less */
.profile-header.editable .profile-header-displayname .text:hover .edit-icon,
.profile-header.editable .profile-header-bio .text:hover .edit-icon {
  display: inline;
  margin-left: 6px;
  opacity: 1;
}
/* line 155, less/components/profile-header.less */
.profile-header.editable .profile-header-displayname .edit-icon {
  margin-top: 15px;
}
/* line 161, less/components/profile-header.less */
.profile-header .profile-header-bio.revamped {
  margin-top: 5px;
  margin-bottom: 25px;
}
/* line 167, less/components/profile-header.less */
.profile-header .complete-profile-menu {
  position: absolute;
  top: -40px;
  left: 0;
  margin: 0;
  text-align: left;
}
/* line 173, less/components/profile-header.less */
.profile-header .complete-profile-menu .complete-profile-menu__status {
  font-weight: 600;
  text-transform: capitalize;
}
/* line 180, less/components/profile-header.less */
.profile-header .complete-profile-menu .status-value {
  color: #F52828;
  position: relative;
  display: inline-block;
}
/* line 185, less/components/profile-header.less */
.profile-header .complete-profile-menu .status-value .hint-panel {
  font-weight: normal;
}
/* line 189, less/components/profile-header.less */
.profile-header .complete-profile-menu .complete-profile-menu__description {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}
/* line 196, less/components/profile-header.less */
.profile-header .profile-metrics {
  margin-top: 15px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 201, less/components/profile-header.less */
.profile-header .profile-metrics .metric-revamped {
  display: inline-block;
  font-weight: 800;
  cursor: pointer;
  color: #b5b5b5;
}
/* line 206, less/components/profile-header.less */
.profile-header .profile-metrics .metric-revamped .metric-number {
  font-size: 16px;
}
/* line 209, less/components/profile-header.less */
.profile-header .profile-metrics .metric-revamped .metric-type {
  font-size: 12px;
  text-transform: uppercase;
}
/* line 214, less/components/profile-header.less */
.profile-header .profile-metrics .metric-revamped.selected {
  color: #262626;
}
/* line 217, less/components/profile-header.less */
.profile-header .profile-metrics .divider {
  padding: 0 12px;
}
/* line 220, less/components/profile-header.less */
.profile-header .profile-metrics .divider-revamped {
  padding: 0 25px;
  position: relative;
  bottom: 10px;
  font-size: 20px;
  color: #b5b5b5;
}
/* line 229, less/components/profile-header.less */
.profile-header .follow-button {
  margin-top: 20px;
}
/* line 233, less/components/profile-header.less */
.profile-header .profile-menu {
  position: absolute;
  right: 0;
  top: -40px;
  text-align: right;
  cursor: pointer;
}
/* line 240, less/components/profile-header.less */
.profile-header .profile-menu .logged-in-as {
  margin-right: 8px;
  font-size: 13px;
  font-weight: 500;
}
/* line 246, less/components/profile-header.less */
.profile-header .profile-menu .dropdown {
  display: inline-block;
  position: relative;
}
/* line 251, less/components/profile-header.less */
.profile-header .profile-menu .dropdown:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  cursor: pointer;
}
/* line 262, less/components/profile-header.less */
.profile-header .profile-menu .dropdown:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #999 transparent transparent transparent;
}
/* line 273, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu {
  margin-top: 8px;
  text-align: left;
  border: 1px solid #ccc;
  display: inline-block;
  min-width: 130px;
  position: absolute;
  top: 20px;
  right: 4px;
  background-color: #fff;
}
/* line 284, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  cursor: pointer;
}
/* line 295, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu li {
  border-bottom: 1px solid #ccc;
}
/* line 299, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu .dropdown-item {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
  padding: 6px 10px;
}
/* line 308, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu .dropdown-item:hover {
  background-color: #000;
  color: #fff;
}
/* line 312, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu .dropdown-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* line 318, less/components/profile-header.less */
.profile-header .profile-menu .dropdown-menu li:last-child {
  border-bottom: 0;
}
@media (max-width: 767px) {
  /* line 326, less/components/profile-header.less */
  .profile-metrics {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* line 330, less/components/profile-header.less */
  .profile-metrics .metric-revamped {
    padding: 15px;
    -ms-flex: 1;
        flex: 1;
  }
  /* line 335, less/components/profile-header.less */
  .profile-metrics .divider-revamped {
    display: none;
  }
}
/* line 1, less/components/progress.less */
.progress-bar {
  background: #e5e5e5;
  height: 4px;
  margin-top: 5px;
  position: relative;
}
/* line 7, less/components/progress.less */
.progress-bar .progress {
  background-color: #262626;
  height: 100%;
  overflow: hidden;
}
/* line 1, less/components/prompt-bar.less */
.sign-up-pagebox {
  position: fixed;
  background-color: #F52828;
  bottom: 0;
  color: #fff;
  overflow: hidden;
  padding: 20px 0;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  transition: 0.25s ease-out opacity;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 16, less/components/prompt-bar.less */
.sign-up-pagebox.visible {
  opacity: 1;
  pointer-events: auto;
}
/* line 20, less/components/prompt-bar.less */
.sign-up-pagebox .sign-up-copy,
.sign-up-pagebox .sign-in-copy {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  position: relative;
  font-size: 20px;
  text-align: center;
  max-width: 60%;
  margin-top: 15px;
}
@media (max-width: 800px) {
  /* line 27, less/components/prompt-bar.less */
  .sign-up-pagebox .sign-up-copy,
  .sign-up-pagebox .sign-in-copy {
    font-size: 15px;
  }
}
/* line 31, less/components/prompt-bar.less */
.sign-up-pagebox .sign-links {
  position: relative;
  text-align: center;
  margin: 25px 0 20px;
}
/* line 35, less/components/prompt-bar.less */
.sign-up-pagebox .sign-links .sign-up-button,
.sign-up-pagebox .sign-links .sign-in-button {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  font-size: 18px;
  line-height: 48px;
  height: 50px;
  padding: 0 25px;
  border: 1px solid #fff;
  background-color: #fff;
  color: #F52828;
  cursor: pointer;
  font-weight: 600;
}
/* line 47, less/components/prompt-bar.less */
.sign-up-pagebox .sign-links .sign-up-button:hover,
.sign-up-pagebox .sign-links .sign-in-button:hover {
  background-color: #F52828;
  color: #fff;
}
@media (max-width: 800px) {
  /* line 51, less/components/prompt-bar.less */
  .sign-up-pagebox .sign-links .sign-up-button,
  .sign-up-pagebox .sign-links .sign-in-button {
    font-size: 14px;
  }
}
/* line 55, less/components/prompt-bar.less */
.sign-up-pagebox .sign-links .sign-up-link,
.sign-up-pagebox .sign-links .sign-in-link {
  position: relative;
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 20px;
}
@media (max-width: 800px) {
  /* line 63, less/components/prompt-bar.less */
  .sign-up-pagebox .sign-links .sign-up-link,
  .sign-up-pagebox .sign-links .sign-in-link {
    font-size: 14px;
  }
}
/* line 68, less/components/prompt-bar.less */
.sign-up-pagebox .close-button {
  position: absolute;
  top: 16px;
  left: 10px;
}
/* line 73, less/components/prompt-bar.less */
.sign-up-pagebox.invite {
  background-color: #09c;
}
/* line 75, less/components/prompt-bar.less */
.sign-up-pagebox.invite .button {
  color: #fff;
  height: 50px;
  line-height: 48px;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 0 30px;
}
/* line 82, less/components/prompt-bar.less */
.sign-up-pagebox.invite .button.hover {
  background-color: #fff;
  color: #09c;
}
/* line 91, less/components/prompt-bar.less */
.sign-up-pagebox.aggressive-signup {
  background-color: rgba(0, 0, 0, 0.8);
}
/* line 94, less/components/prompt-bar.less */
.sign-up-pagebox.aggressive-signup .sign-up-header {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}
/* line 100, less/components/prompt-bar.less */
.sign-up-pagebox.aggressive-signup .sign-up-copy {
  font-weight: 300;
  margin-top: 0;
}
/* line 105, less/components/prompt-bar.less */
.sign-up-pagebox.aggressive-signup .sign-up-button,
.sign-up-pagebox.aggressive-signup .sign-in-button {
  border: none;
  background-color: #F52828;
  color: #fff;
  width: 450px;
  max-width: 100%;
  font-weight: normal;
  font-size: 17px;
}
@media (max-width: 767px) {
  /* line 117, less/components/prompt-bar.less */
  .sign-up-pagebox {
    text-align: center;
    padding: 10px;
  }
  /* line 122, less/components/prompt-bar.less */
  .sign-links {
    width: 100%;
  }
  /* line 127, less/components/prompt-bar.less */
  .sign-up-pagebox.aggressive-signup .sign-up-button,
  .sign-up-pagebox.aggressive-signup .sign-in-button {
    width: 100%;
  }
}
/* line 1, less/components/roadblock.less */
.roadblock {
  max-width: 900px;
  margin: 0 auto;
  height: 100%;
  padding-top: 60px;
}
/* line 7, less/components/roadblock.less */
.roadblock h2 {
  font-weight: 300;
  font-size: 72px;
  line-height: 80px;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 14px solid #000;
}
/* line 16, less/components/roadblock.less */
.roadblock .buttons {
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 21, less/components/roadblock.less */
.roadblock .button {
  border: 0;
  outline: none;
  -webkit-appearance: none;
  margin-top: 10px;
}
/* line 28, less/components/roadblock.less */
.roadblock .button.app-store {
  width: 135px;
  height: 40px;
  margin-right: 30px;
  background: transparent url(/images/appstorebtn-en.svg) 0 0 no-repeat;
}
/* line 35, less/components/roadblock.less */
.roadblock .button.google-play {
  width: 115px;
  height: 40px;
  margin-right: 30px;
  background: transparent url(https://developer.android.com/images/brand/en_generic_rgb_wo_45.png) 0 0 no-repeat;
  background-size: 100%;
}
/* line 43, less/components/roadblock.less */
.roadblock .button.open-in-app {
  border: 3px solid #000;
  border-radius: 20px;
  font-size: 18px;
  height: 40px;
  padding: 0 20px;
}
/* line 51, less/components/roadblock.less */
.roadblock .button-spacer {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
@media (max-width: 910px) {
  /* line 55, less/components/roadblock.less */
  .roadblock {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 60, less/components/roadblock.less */
  .roadblock h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
/* line 1, less/components/scroll-hint-button.less */
.scroll-hint-button {
  text-transform: uppercase;
}
/* line 4, less/components/scroll-hint-button.less */
.scroll-hint-button .arrow-button {
  vertical-align: middle;
  padding-left: 6px;
}
/* line 1, less/search-view.less */
.search-view {
  width: 100%;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  overflow: hidden;
  margin: 100px auto 0;
  /* Profile tiles */
}
/* line 8, less/search-view.less */
.search-view .search-view-header {
  text-align: center;
  margin-bottom: 80px;
}
/* line 11, less/search-view.less */
.search-view .search-view-header h1 {
  font-size: 24px;
  font-weight: 600;
}
/* line 15, less/search-view.less */
.search-view .search-view-header .stories-matching-result {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #999;
}
/* line 20, less/search-view.less */
.search-view .search-view-header .stories-matching-result a {
  color: #09c;
  font-weight: 600;
}
/* line 27, less/search-view.less */
.search-view .search-view-title {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}
/* line 33, less/search-view.less */
.search-view .search-view-title .title {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
/* line 41, less/search-view.less */
.search-view .search-view-title .desc {
  font-size: 14px;
  font-weight: 400;
  color: #919191;
}
/* line 49, less/search-view.less */
.search-view .loadmore {
  text-align: center;
}
/* line 53, less/search-view.less */
.search-view .category {
  margin-top: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
/* line 58, less/search-view.less */
.search-view .category:last-child {
  margin-bottom: 40px;
}
/* line 63, less/search-view.less */
.search-view .category-topics {
  max-width: 600px;
  margin: 30px auto 0;
  text-align: center;
}
/* line 68, less/search-view.less */
.search-view .category-topics .topic-tag {
  margin: 0 14px 14px 0;
}
/* line 71, less/search-view.less */
.search-view .category-topics .topic-tag:last-child {
  margin-right: 0;
}
/* line 78, less/search-view.less */
.search-view .people-list .user-tile .description {
  color: #999;
}
/* line 83, less/search-view.less */
.search-view .empty-list {
  text-align: center;
  font-size: 25px;
  color: #999;
  font-weight: 200;
  max-width: 800px;
  margin: 60px auto 0;
}
/* line 93, less/search-view.less */
.search-view__search-input {
  background-color: #EEE;
  border: 0;
  border-radius: 4px;
  padding: 8px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  /* line 104, less/search-view.less */
  .search-view {
    margin-top: 75px;
    padding: 15px 15px 50px;
  }
}
/* line 5, less/components/search.less */
.search-container {
  width: 34px;
}
@media (min-width: 768px) {
  /* line 7, less/components/search.less */
  .search-container {
    position: relative;
  }
}
/* line 12, less/components/search.less */
.search-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
/* line 19, less/components/search.less */
.search__panel {
  position: absolute;
  right: 16px;
  top: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  overflow-y: auto;
  z-index: 1;
  width: 380px;
}
@media (max-width: 767px) {
  /* line 29, less/components/search.less */
  .search__panel {
    width: 92%;
    right: 4%;
    top: 15px;
  }
}
/* line 36, less/components/search.less */
.search__input-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 39, less/components/search.less */
.search__input-wrapper .search-icon {
  margin-left: 8px;
}
/* line 43, less/components/search.less */
.search__input {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  padding: 8px 12px;
  font-size: 14px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 54, less/components/search.less */
.search__input:-ms-input-placeholder {
  color: #979797;
}
.search__input::placeholder {
  color: #979797;
}
/* line 57, less/components/search.less */
.search__input::-ms-clear {
  display: none;
}
/* line 63, less/components/search.less */
.search__results {
  font-size: 14px;
  line-height: 20px;
}
/* line 67, less/components/search.less */
.search__results li {
  position: relative;
  padding: 10px 22px;
}
/* line 71, less/components/search.less */
.search__results li.selected:not(.search__result-topic) {
  background: #000;
  color: #fff;
}
/* line 77, less/components/search.less */
.search__result {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  background: none;
  border-bottom: 1px solid #ccc;
}
/* line 84, less/components/search.less */
.search__result > a {
  display: -ms-flexbox;
  display: flex;
}
/* line 91, less/components/search.less */
.search__result--profile > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 101, less/components/search.less */
.search__result--profile .item-image {
  margin-top: 20px;
  height: auto;
  margin-right: 0;
}
/* line 106, less/components/search.less */
.search__result--profile .item-info {
  text-align: center;
  margin: 10px 0 20px;
}
/* line 110, less/components/search.less */
.search__result--profile .search__result-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
/* line 115, less/components/search.less */
.search__result--profile .search__result-description {
  font-weight: 400;
}
/* line 119, less/components/search.less */
.search__result--profile.verified .search__result-title {
  display: inline-block;
  background: transparent url("/images/verified-check.png") right center no-repeat;
  background-size: 16px 16px;
  padding-right: 22px;
}
/* line 130, less/components/search.less */
.search__result--magazine > a {
  width: 100%;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 134, less/components/search.less */
.search__result--magazine .item-image {
  height: auto;
  width: 106px;
  height: 136px;
  margin-right: 16px;
  background-color: #ccc;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 142, less/components/search.less */
.search__result--magazine .image-cover {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
  display: inline-block;
}
/* line 149, less/components/search.less */
.search__result--magazine .item-info {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
/* line 152, less/components/search.less */
.search__result--magazine .search__result-title {
  font-weight: 600;
}
/* line 155, less/components/search.less */
.search__result--magazine .search__result-description {
  font-weight: 400;
  max-height: 60px;
  overflow: hidden;
}
/* line 164, less/components/search.less */
.search__result--top li {
  background: #f7f7f7;
  padding: 0 22px;
  width: 100%;
  height: 170px;
  cursor: pointer;
}
/* line 171, less/components/search.less */
.search__result--top .search__result-topic {
  padding: 0;
}
/* line 175, less/components/search.less */
.search__result--top .topic-tile .background-image-component {
  z-index: auto;
}
/* line 182, less/components/search.less */
.search__results--topics {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
/* line 185, less/components/search.less */
.search__results--topics li {
  height: 50px;
}
/* line 192, less/components/search.less */
.search__results--toc .search__result---profile {
  background: #f7f7f7;
  padding: 0 22px;
  width: 100%;
  height: 170px;
  cursor: pointer;
}
/* line 200, less/components/search.less */
.search__results--toc .search__result--topic:last-child {
  padding-bottom: 0;
}
/* line 203, less/components/search.less */
.search__results--toc .search__result--topic .topic-tag {
  vertical-align: bottom;
}
/* line 209, less/components/search.less */
.search__more-results {
  background: #fff;
}
/* line 211, less/components/search.less */
.search__more-results li {
  padding: 20px 22px 20px;
}
/* line 217, less/components/search.less */
.search__zero-state {
  background: #fff;
  border: 1px solid #ddd;
  font-size: 10px;
  line-height: 20px;
  overflow-y: auto;
  text-transform: uppercase;
  color: #999;
}
/* line 227, less/components/search.less */
.search__zero-state-featured {
  background: #f7f7f7;
  padding: 10px 20px;
  position: relative;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 236, less/components/search.less */
.search__zero-state-featured-title {
  font-weight: 900;
  margin-right: 20px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 242, less/components/search.less */
.search__zero-state-featured-link {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 700;
  opacity: 0.7;
}
/* line 248, less/components/search.less */
.search__zero-state-featured-link:hover {
  color: #09c;
  border-bottom-color: #09c;
}
/* line 254, less/components/search.less */
.search__zero-state-sections {
  padding: 20px 0 20px 20px;
}
/* line 256, less/components/search.less */
.search__zero-state-sections a {
  font-size: 13px;
  text-transform: none;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  border-bottom: none;
  line-height: 22px;
}
/* line 264, less/components/search.less */
.search__zero-state-sections a > span {
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
/* line 269, less/components/search.less */
.search__zero-state-sections a:hover {
  color: #09c;
}
/* line 275, less/components/search.less */
.search__zero-state-footer {
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 10px;
}
/* line 279, less/components/search.less */
.search__zero-state-footer a {
  margin: 0 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  line-height: 50px;
}
/* line 283, less/components/search.less */
.search__zero-state-footer a:hover {
  color: #09c;
  border-bottom-color: #09c;
}
/* line 1, less/components/section-buttons.less */
.section-buttons {
  margin: 25px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 6, less/components/section-buttons.less */
.section-buttons .follow-button {
  margin: 0px 5px 0px 0px;
}
/* line 1, less/components/section-header-title.less */
.section-header-title {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin: 110px auto 0;
  max-width: 100%;
  -ms-flex-align: center;
      align-items: center;
}
/* line 7, less/components/section-header-title.less */
.section-header-title .logo {
  position: relative;
  display: block;
  margin: 0 auto 20px;
  transition-property: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
}
/* line 15, less/components/section-header-title.less */
.section-header-title .partner-header .partner-logo {
  margin: 0 auto 10px;
  display: block;
  height: 60px;
}
/* line 22, less/components/section-header-title.less */
.section-header-title .header-title {
  text-align: center;
  position: relative;
  max-height: 160px;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  transition-property: transform, transform;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  display: block;
  width: 100%;
}
/* line 29, less/components/section-header-title.less */
.section-header-title .header-title.scaled {
  -ms-transform: scale3d(0.65, 0.65, 1);
  transform: scale3d(0.65, 0.65, 1);
}
/* line 36, less/components/section-header-title.less */
.section-header-title .context-menu {
  margin-left: 10px;
}
/* line 40, less/components/section-header-title.less */
.section-header-title .context-menu-button {
  vertical-align: top;
}
/* line 44, less/components/section-header-title.less */
.section-header-title.topic {
  padding: 12px 25px 11px;
  border: 2px solid #000;
}
/* line 47, less/components/section-header-title.less */
.section-header-title.topic .header-title {
  font-size: 20px;
  line-height: 25px;
}
/* line 50, less/components/section-header-title.less */
.section-header-title.topic .header-title.scaled {
  -ms-transform: scale(0.92, 0.92) translate(0, -10px);
  transform: scale(0.92, 0.92) translate(0, -10px);
}
/* line 55, less/components/section-header-title.less */
.section-header-title.profile {
  display: inline-block;
  padding-right: 7px;
  padding-bottom: 9px;
  margin: 0 auto;
}
/* line 60, less/components/section-header-title.less */
.section-header-title.profile .header-title {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  text-transform: none;
  letter-spacing: normal;
  margin: 7px 0 0;
}
/* line 67, less/components/section-header-title.less */
.section-header-title.profile .header-title.scaled {
  -ms-transform: scale(0.51, 0.51);
  transform: scale(0.51, 0.51);
}
/* line 71, less/components/section-header-title.less */
.section-header-title.profile .header-title.revamped {
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: -5px;
}
/* line 79, less/components/section-header-title.less */
.section-header-title.magazine {
  margin: 0 auto;
}
/* line 81, less/components/section-header-title.less */
.section-header-title.magazine .header-title {
  color: #fff;
  font-size: 40px;
  line-height: 55px;
  max-height: 220px;
}
/* line 88, less/components/section-header-title.less */
.section-header-title.magazine-no-cover {
  margin: 100px auto 5px;
}
/* line 1, less/components/section-header.less */
.section-header {
  position: relative;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  width: 100%;
}
/* line 6, less/components/section-header.less */
.section-header .content {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 15, less/components/section-header.less */
.section-header.board .section-header-title .header-title {
  font-family: "FaktCondensed", "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 40px;
}
/* line 22, less/components/section-header.less */
.section-header .follow-button {
  margin: 15px 0 0;
}
/* line 26, less/components/section-header.less */
.section-header .page-gap {
  margin-top: 40px;
}
/* line 31, less/components/section-header.less */
.section-header .section-metrics {
  font-size: 12px;
  line-height: 20px;
  margin-top: 15px;
  font-weight: 500;
}
/* line 39, less/components/section-header.less */
.section-header .section-description {
  font-size: 14px;
  max-width: 490px;
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  font-style: italic;
  font-family: "Tiempos", Georgia, serif;
  line-height: 21px;
}
/* line 51, less/components/section-header.less */
.section-header .subsection-links {
  width: 80%;
  max-width: 850px;
  margin: 15px auto 0;
  text-align: center;
  font-size: 10px;
  line-height: 20px;
}
/* line 59, less/components/section-header.less */
.section-header .subsection-links .label {
  text-transform: uppercase;
  color: #919191;
  letter-spacing: 1px;
  font-weight: 600;
}
/* line 66, less/components/section-header.less */
.section-header .subsection-links .section-link-container {
  width: 100%;
}
/* line 70, less/components/section-header.less */
.section-header .subsection-links .section-link,
.section-header .subsection-links .showall {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: 600;
}
/* line 77, less/components/section-header.less */
.section-header .subsection-links .section-link:not(:last-child),
.section-header .subsection-links .showall:not(:last-child) {
  margin-right: 15px;
}
/* line 82, less/components/section-header.less */
.section-header .subsection-links .showall {
  color: #999;
  letter-spacing: 1px;
  border-bottom: 1px solid #999;
}
/* line 89, less/components/section-header.less */
.section-header .related-heading {
  position: relative;
  font-size: 10px;
  color: #999;
  margin-right: 10px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 21px;
}
/* line 100, less/components/section-header.less */
.section-header .related-topics {
  position: relative;
  margin: 0  auto;
  height: 30px;
  max-width: 70%;
  overflow: hidden;
  text-align: center;
}
/* line 107, less/components/section-header.less */
.section-header .related-topics > * {
  vertical-align: top;
}
/* line 112, less/components/section-header.less */
.section-header .board-subsections {
  position: relative;
  margin: 15px auto 0;
  max-width: 70%;
  overflow: hidden;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #999;
}
/* line 125, less/components/section-header.less */
.section-header .board-subsections .subsection-link {
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 10px 0 10px;
  line-height: 21px;
  height: 21px;
  color: #999;
  letter-spacing: 1.5px;
}
/* line 135, less/components/section-header.less */
.section-header .board-subsections .subsection-edit-link {
  color: #666;
  cursor: pointer;
  margin-left: 10px;
}
/* line 144, less/components/section-header.less */
.section-header .share-menu > * {
  vertical-align: middle;
}
/* line 147, less/components/section-header.less */
.section-header .share-menu .share-button {
  margin-top: -2px;
}
/* line 150, less/components/section-header.less */
.section-header .share-menu .icon-button {
  stroke: #000;
}
/* line 153, less/components/section-header.less */
.section-header .share-menu .share-button-new {
  margin-top: 2px;
  display: inline-block;
  cursor: pointer;
}
/* line 159, less/components/section-header.less */
.section-header .share-menu .show-more-icon {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  top: 2px;
}
/* line 171, less/components/section-header.less */
.section-header .action-buttons {
  position: relative;
  top: 30px;
  height: 30px;
  text-align: center;
}
/* line 177, less/components/section-header.less */
.section-header .action-buttons .share-menu {
  position: absolute;
  top: -4px;
  right: 0;
}
/* line 185, less/components/section-header.less */
.section-header .tiles .section-metrics {
  line-height: 12px;
  margin-top: 22px;
}
/* line 190, less/components/section-header.less */
.section-header .tiles .follow-button {
  margin: 20px 0 40px;
}
/* line 194, less/components/section-header.less */
.section-header .tiles .share-menu {
  position: absolute;
  top: 98px;
  right: 0;
}
/* line 200, less/components/section-header.less */
.section-header .tiles .section-description {
  font-style: normal;
  line-height: 17px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  margin-top: 12px;
}
/* line 209, less/components/section-header.less */
.section-header .tiles .related-heading {
  font-size: 13px;
  line-height: 13px;
  color: #000;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}
/* line 218, less/components/section-header.less */
.section-header .tiles .related-topics {
  max-width: 95%;
  font-size: 0;
  margin-bottom: 50px;
  height: auto;
}
/* line 223, less/components/section-header.less */
.section-header .tiles .related-topics .topics {
  height: 130px;
}
/* line 229, less/components/section-header.less */
.section-header .tiles .topic-tile.horizontal-padding {
  border-bottom: none;
  margin-bottom: 8px;
}
/* line 234, less/components/section-header.less */
.section-header .tiles .topic-tile.vertical-padding {
  border-right: none;
  margin-right: 4px;
  margin-left: 4px;
}
/* line 241, less/components/section-header.less */
.section-header .tiles .related-sources {
  position: relative;
  margin-bottom: 90px;
  width: 100%;
  text-align: center;
}
/* line 247, less/components/section-header.less */
.section-header .tiles .related-sources .related-heading {
  margin-bottom: 20px;
}
/* line 251, less/components/section-header.less */
.section-header .tiles .related-sources .share-menu {
  position: absolute;
  top: 22px;
  right: 0;
}
/* line 257, less/components/section-header.less */
.section-header .tiles .related-sources .sources {
  position: relative;
  height: 110px;
  max-width: 85%;
  overflow: hidden;
  margin: 0 auto;
}
/* line 264, less/components/section-header.less */
.section-header .tiles .related-sources .sources .source {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
  width: 95px;
}
/* line 270, less/components/section-header.less */
.section-header .tiles .related-sources .sources .source .avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 13px;
  border: 1px solid #f2f2f2;
}
/* line 276, less/components/section-header.less */
.section-header .tiles .related-sources .sources .source .source-title {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 13px;
  text-align: center;
  line-height: 16px;
}
/* line 287, less/components/section-header.less */
.section-header .tiles .page-gap {
  margin-top: 0;
}
@media (max-width: 767px) {
  /* line 295, less/components/section-header.less */
  .section-header.board .section-header-title .header-title {
    font-size: 30px;
  }
}
/* line 1, less/components/section-link-tile.less */
.section-link-tile {
  position: relative;
  overflow: hidden;
}
/* line 5, less/components/section-link-tile.less */
.section-link-tile .tile {
  position: relative;
  display: inline-block;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
/* line 14, less/components/section-link-tile.less */
.section-link-tile .tile .info {
  position: relative;
}
/* line 16, less/components/section-link-tile.less */
.section-link-tile .tile .info .section-image {
  display: block;
  width: 120px;
  height: 120px;
  margin: 20px auto;
}
/* line 21, less/components/section-link-tile.less */
.section-link-tile .tile .info .section-image .source-button {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background-color: #ddd;
}
/* line 27, less/components/section-link-tile.less */
.section-link-tile .tile .info .section-image .source-button .background-image-component {
  border-radius: 50%;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 33, less/components/section-link-tile.less */
.section-link-tile .tile .info .title {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}
/* line 40, less/components/section-link-tile.less */
.section-link-tile .tile .info .description {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  color: #999;
  position: relative;
  font-size: 12px;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -webkit-line-clamp: 3;
  line-height: 20px;
  max-height: 60px;
  overflow: hidden;
  padding: 0 30px;
  text-align: center;
  max-width: 300px;
}
/* line 1, less/components/section-search-result-magazine.less */
.section-search-result-magazine {
  padding-top: 10px;
  padding-bottom: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 6, less/components/section-search-result-magazine.less */
.section-search-result-magazine .result-image {
  width: 106px;
  height: 136px;
  margin-right: 16px;
}
/* line 12, less/components/section-search-result-magazine.less */
.section-search-result-magazine.condensed .result-image {
  width: 30px;
  height: 30px;
  background-size: cover;
  background-position: center;
}
/* line 1, less/components/section-search-result-more-results.less */
.section-search-result-more-results {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 4, less/components/section-search-result-more-results.less */
.section-search-result-more-results.condensed {
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 1, less/components/section-search-result-profile.less */
.section-search-result-profile {
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
}
/* line 5, less/components/section-search-result-profile.less */
.section-search-result-profile .avatar {
  display: inline-block;
}
/* line 8, less/components/section-search-result-profile.less */
.section-search-result-profile .result-title {
  font-weight: 600;
  line-height: 20px;
}
/* line 12, less/components/section-search-result-profile.less */
.section-search-result-profile.condensed {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 18, less/components/section-search-result-profile.less */
.section-search-result-profile.condensed .avatar {
  margin-right: 16px;
}
/* line 1, less/components/section-search-result-topic-tag.less */
.section-search-result-topic-tag {
  margin: 10px;
}
/* line 3, less/components/section-search-result-topic-tag.less */
.section-search-result-topic-tag.condensed {
  margin-top: 4px;
  margin-bottom: 4px;
}
/* line 7, less/components/section-search-result-topic-tag.less */
.section-search-result-topic-tag.highlighted .topic-tag {
  background-color: #000;
  color: #fff;
}
/* line 1, less/components/section-search-result-topic-tile.less */
.section-search-result-topic-tile {
  height: 170px;
  margin-bottom: 10px;
}
/* line 4, less/components/section-search-result-topic-tile.less */
.section-search-result-topic-tile.condensed {
  height: 80px;
}
/* line 7, less/components/section-search-result-topic-tile.less */
.section-search-result-topic-tile.highlighted .topic-tag {
  background-color: #fff;
  color: #000;
}
/* line 2, less/components/section-search-result.less */
.section-search-result.container {
  padding-left: 22px;
  padding-right: 22px;
  border-bottom: 1px solid #ddd;
}
/* line 6, less/components/section-search-result.less */
.section-search-result.container:last-child {
  border-bottom: none;
}
/* line 9, less/components/section-search-result.less */
.section-search-result.container.highlighted {
  background: #000;
  color: #fff;
}
/* line 2, less/components/section-search-results-by-category.less */
.section-search-results.by-category .category {
  border-bottom: 1px solid #ddd;
}
/* line 4, less/components/section-search-results-by-category.less */
.section-search-results.by-category .category:last-child {
  border-top-width: 1px;
}
/* line 7, less/components/section-search-results-by-category.less */
.section-search-results.by-category .category.top_result .result {
  background-color: #f7f7f7;
}
/* line 1, less/components/section-search-results.less */
.section-search-results {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  overflow-y: auto;
}
/* line 1, less/components/section-search-simple.less */
.section-search-simple {
  position: relative;
}
/* line 3, less/components/section-search-simple.less */
.section-search-simple .section-search-results {
  width: 100%;
  max-height: 235px;
}
/* line 1, less/components/section-view.less */
.section-view,
.layout-view {
  position: relative;
  height: 100%;
}
/* line 9, less/components/section-view.less */
.section-view .grid-page:nth-child(2) {
  margin-top: 10px;
}
/* line 13, less/components/section-view.less */
.section-view.covered .grid-page:nth-child(2) {
  margin-top: 0;
}
/* line 17, less/components/section-view.less */
.section-view .error {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 21, less/components/section-view.less */
.section-view .error h4 {
  max-width: 1152px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
@media (max-width: 1152px) {
  /* line 28, less/components/section-view.less */
  .section-view .error h4 {
    padding: 0 20px;
  }
}
/* line 35, less/components/section-view.less */
.section-view .image .cropped-image img {
  -webkit-filter: brightness(98%);
}
/* line 57, less/components/section-view.less */
.section-view .custom-banners + .layout-view .cover {
  margin-top: -40px;
}
@media (max-width: 768px) {
  /* line 59, less/components/section-view.less */
  .section-view .custom-banners + .layout-view .cover {
    margin-top: 0;
  }
}
/* line 65, less/components/section-view.less */
.section-view.dark {
  background-color: black;
}
/* line 1, less/components/send-gift-of-flipboard-view.less */
.send-gift-flipboard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 501px;
  height: 80%;
  max-height: 600px;
  overflow: hidden;
  z-index: 31;
  background: #fff;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
/* line 13, less/components/send-gift-of-flipboard-view.less */
.send-gift-flipboard .close-button {
  left: 10px;
  top: 10px;
}
/* line 19, less/components/send-gift-of-flipboard-view.less */
.gift-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 38px;
  padding-top: 110px;
  text-align: center;
}
/* line 25, less/components/send-gift-of-flipboard-view.less */
.gift-header h3 {
  position: relative;
  margin: 0;
  padding: 10px 0;
  color: #df272e;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  font-size: 30px;
}
/* line 34, less/components/send-gift-of-flipboard-view.less */
.gift-header h3 span {
  position: absolute;
  top: -10px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
/* line 43, less/components/send-gift-of-flipboard-view.less */
.gift-header .gift-ribbon {
  background-image: url(/images/send-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -90px;
  top: 30px;
  height: 100%;
  width: 700px;
}
/* line 54, less/components/send-gift-of-flipboard-view.less */
.gift-header h5 {
  margin: 0 auto;
  color: #999;
  font-size: 15px;
  line-height: 18px;
  max-width: 85%;
}
/* line 63, less/components/send-gift-of-flipboard-view.less */
.gift-body {
  overflow: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 68, less/components/send-gift-of-flipboard-view.less */
.gift-body .loading {
  text-align: center;
  font-size: 18px;
}
/* line 74, less/components/send-gift-of-flipboard-view.less */
.gift-persona {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #333;
  background-position: center;
  color: #fff;
  width: 165px;
  height: 200px;
  margin-top: 3px;
  margin-right: 3px;
  cursor: pointer;
}
/* line 87, less/components/send-gift-of-flipboard-view.less */
.gift-persona:nth-child(3n) {
  margin-right: 0;
}
/* line 91, less/components/send-gift-of-flipboard-view.less */
.gift-persona .persona-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
/* line 101, less/components/send-gift-of-flipboard-view.less */
.gift-persona.selected .persona-overlay {
  background: rgba(223, 40, 46, 0.7);
}
/* line 105, less/components/send-gift-of-flipboard-view.less */
.gift-persona .persona-title {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  padding: 30px 10px 0 10px;
  font-size: 16px;
  text-align: center;
}
/* line 115, less/components/send-gift-of-flipboard-view.less */
.gift-send-button {
  background: #df272e;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  text-align: center;
  font-size: 15px;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  -ms-transform: translateZ(0) translateY(100%);
  transform: translateZ(0) translateY(100%);
  transition-property: transform, opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
/* line 130, less/components/send-gift-of-flipboard-view.less */
.gift-send-button.showing {
  -ms-transform: translateZ(0) translateY(0);
  transform: translateZ(0) translateY(0);
}
/* line 1, less/components/service-icon.less */
.service-icon {
  width: 11px;
  height: 11px;
}
/* line 1, less/components/settings-view.less */
.settings-view {
  position: fixed;
  z-index: 31;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  overflow: auto;
}
/* line 11, less/components/settings-view.less */
.settings-view .header {
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
  padding: 110px 0 80px;
  text-align: center;
}
/* line 19, less/components/settings-view.less */
.settings-view .settings-section {
  max-width: 500px;
  margin: 0 auto 60px;
}
/* line 22, less/components/settings-view.less */
.settings-view .settings-section h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.5px;
}
/* line 30, less/components/settings-view.less */
.settings-view .text-input {
  margin-bottom: 6px;
}
/* line 34, less/components/settings-view.less */
.settings-view .link-text {
  font-size: 12px;
  color: #999;
  cursor: pointer;
  font-weight: 500;
  text-transform: lowercase;
}
/* line 43, less/components/settings-view.less */
.settings-view .setting-list li {
  position: relative;
  padding: 5px 0 5px 0;
}
/* line 47, less/components/settings-view.less */
.settings-view .setting-list li > *:nth-child(1) {
  padding-right: 20px;
  width: 100%;
  display: inline-block;
}
/* line 53, less/components/settings-view.less */
.settings-view .setting-list li > .link-text,
.settings-view .setting-list li > input[type=checkbox] {
  position: absolute;
  right: 0;
  top: 6px;
}
/* line 60, less/components/settings-view.less */
.settings-view .setting-list a {
  color: #09c;
}
/* line 63, less/components/settings-view.less */
.settings-view .setting-list label,
.settings-view .setting-list a,
.settings-view .setting-list span,
.settings-view .setting-list .inline-editable {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.5px;
}
/* line 68, less/components/settings-view.less */
.settings-view .setting-list .inline-editable {
  margin-left: -10px;
}
/* line 71, less/components/settings-view.less */
.settings-view .setting-list .link-span {
  color: #09c;
  cursor: pointer;
}
/* line 77, less/components/settings-view.less */
.settings-view .setting-buttons {
  position: relative;
  text-align: center;
  margin-top: 8px;
}
/* line 81, less/components/settings-view.less */
.settings-view .setting-buttons .button {
  -webkit-appearance: none;
  outline: none;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}
/* line 92, less/components/settings-view.less */
.settings-view .setting-buttons .button[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
/* line 99, less/components/settings-view.less */
.settings-view .edit-email {
  position: relative;
  margin-bottom: 10px;
}
/* line 104, less/components/settings-view.less */
.settings-view .error,
.settings-view .success,
.settings-view .status {
  font-size: 13px;
  line-height: 14px;
  color: #f03737;
  margin-bottom: 10px;
}
/* line 111, less/components/settings-view.less */
.settings-view .inline-editable + .error,
.settings-view .inline-editable + .success,
.settings-view .inline-editable + .status {
  margin-top: 5px;
}
/* line 117, less/components/settings-view.less */
.settings-view .status {
  color: #919191;
}
/* line 121, less/components/settings-view.less */
.settings-view .success {
  color: #228B22;
}
/* line 125, less/components/settings-view.less */
.settings-view .dropdown {
  display: inline-block;
  position: relative;
}
/* line 130, less/components/settings-view.less */
.settings-view .dropdown:before {
  content: "";
  display: inline-block;
  cursor: pointer;
}
/* line 136, less/components/settings-view.less */
.settings-view .dropdown:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #999 transparent transparent transparent;
}
/* line 147, less/components/settings-view.less */
.settings-view .dropdown-menu {
  position: relative;
  text-align: left;
  z-index: 1;
  border: 1px solid #ccc;
  display: inline-block;
  min-width: 150px;
  background-color: #fff;
}
/* line 156, less/components/settings-view.less */
.settings-view .dropdown-menu:before {
  display: inline-block;
  cursor: pointer;
}
/* line 161, less/components/settings-view.less */
.settings-view .dropdown-menu li {
  border-bottom: 1px solid #ccc;
}
/* line 165, less/components/settings-view.less */
.settings-view .dropdown-menu .dropdown-item {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
  padding: 6px 10px;
}
/* line 174, less/components/settings-view.less */
.settings-view .dropdown-menu .dropdown-item:hover {
  background-color: #000;
  color: #fff;
}
/* line 178, less/components/settings-view.less */
.settings-view .dropdown-menu .dropdown-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* line 183, less/components/settings-view.less */
.settings-view .dropdown-menu .dropdown-item.selected {
  color: #000;
  font-weight: 500;
}
/* line 187, less/components/settings-view.less */
.settings-view .dropdown-menu .dropdown-item.selected:hover {
  color: #fff;
}
/* line 193, less/components/settings-view.less */
.settings-view .dropdown-menu li:last-child {
  border-bottom: 0;
}
/* line 199, less/components/settings-view.less */
.magazine-settings {
  padding-top: 25px;
}
/* line 201, less/components/settings-view.less */
.magazine-settings .settings-section {
  margin: 0 auto 40px;
}
/* line 203, less/components/settings-view.less */
.magazine-settings .settings-section h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.5px;
}
/* line 211, less/components/settings-view.less */
.magazine-settings .settings-section .tooltip.tooltip-left,
.magazine-settings .settings-section .tooltip.tooltip-right {
  display: inline-block;
}
/* line 218, less/components/settings-view.less */
.magazine-settings .text-input {
  margin-bottom: 6px;
}
/* line 222, less/components/settings-view.less */
.magazine-settings .link-text {
  font-size: 12px;
  color: #999;
  cursor: pointer;
  font-weight: 500;
  text-transform: lowercase;
}
/* line 231, less/components/settings-view.less */
.magazine-settings .setting-list li {
  position: relative;
}
/* line 235, less/components/settings-view.less */
.magazine-settings .setting-list a {
  color: #09c;
  cursor: pointer;
}
/* line 240, less/components/settings-view.less */
.magazine-settings .setting-list .invitation-url {
  position: relative;
}
/* line 243, less/components/settings-view.less */
.magazine-settings .setting-list .invitation-url:hover {
  cursor: pointer;
}
/* line 247, less/components/settings-view.less */
.magazine-settings .setting-list .invitation-url .text-input {
  width: 50%;
}
/* line 251, less/components/settings-view.less */
.magazine-settings .setting-list .invitation-url .copy-placeholder {
  position: absolute;
  color: #b5b9b9;
  font-size: 14px;
  font-weight: 500;
  right: 2%;
  top: 0px;
}
/* line 260, less/components/settings-view.less */
.magazine-settings .setting-list .invitation-url input:hover {
  cursor: pointer;
}
/* line 265, less/components/settings-view.less */
.magazine-settings .setting-list label,
.magazine-settings .setting-list a,
.magazine-settings .setting-list span,
.magazine-settings .setting-list .inline-editable,
.magazine-settings .setting-list .editor-magazine-toggle-overview {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.5px;
}
/* line 269, less/components/settings-view.less */
.magazine-settings .setting-list label .hint,
.magazine-settings .setting-list a .hint,
.magazine-settings .setting-list span .hint,
.magazine-settings .setting-list .inline-editable .hint,
.magazine-settings .setting-list .editor-magazine-toggle-overview .hint {
  width: 100%;
}
/* line 272, less/components/settings-view.less */
.magazine-settings .setting-list label .toggle,
.magazine-settings .setting-list a .toggle,
.magazine-settings .setting-list span .toggle,
.magazine-settings .setting-list .inline-editable .toggle,
.magazine-settings .setting-list .editor-magazine-toggle-overview .toggle {
  float: right;
}
/* line 276, less/components/settings-view.less */
.magazine-settings .setting-list .inline-editable {
  margin-left: -10px;
}
/* line 3, less/components/share-flip.less */
.flip-extension-controller {
  position: relative;
  height: 100%;
  width: 100vw;
  max-width: 850px;
  margin: 0 auto;
  overflow: scroll;
}
/* line 11, less/components/share-flip.less */
.flip-extension-controller #auth-view {
  box-shadow: none;
}
/* line 15, less/components/share-flip.less */
.share-flip__error {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  z-index: 1000;
}
/* line 30, less/components/share-flip.less */
.content-loading {
  background-color: #F7F7F7;
}
/* line 33, less/components/share-flip.less */
.content-loading-text {
  font-size: 14px;
  font-weight: 500;
  color: #262626;
}
/* line 40, less/components/share-flip.less */
.flip-header {
  position: relative;
  width: 100%;
}
/* line 43, less/components/share-flip.less */
.flip-header__meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 36px;
}
/* line 48, less/components/share-flip.less */
.flip-header__auth {
  -ms-flex-positive: 2;
      flex-grow: 2;
  text-align: right;
  font-size: 14px;
  color: #979797;
  z-index: 2;
}
/* line 55, less/components/share-flip.less */
.flip-header__auth-label {
  font-weight: 500;
}
@media (max-width: 767px) {
  /* line 57, less/components/share-flip.less */
  .flip-header__auth-label {
    display: block;
  }
}
/* line 61, less/components/share-flip.less */
.flip-header__auth-action {
  margin-left: 12px;
  font-weight: 600;
  cursor: pointer;
}
/* line 66, less/components/share-flip.less */
.flip-header__title {
  margin-bottom: 36px;
  text-transform: uppercase;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 0.9;
}
/* line 77, less/components/share-flip.less */
.share-flip--auth .flip-header {
  position: absolute;
  height: 22px;
}
/* line 80, less/components/share-flip.less */
.share-flip--auth .flip-header__back {
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 600;
  cursor: pointer;
}
/* line 90, less/components/share-flip.less */
.share-flip {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
@media (max-width: 767px) {
  /* line 92, less/components/share-flip.less */
  .share-flip {
    padding: 16px 16px 60px;
  }
}
@media (min-width: 768px) {
  /* line 95, less/components/share-flip.less */
  .share-flip {
    padding: 24px;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
/* line 101, less/components/share-flip.less */
.share-flip.login {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
/* line 111, less/components/share-flip.less */
.share-flip .button {
  position: relative;
  text-align: center;
  line-height: 50px;
  height: 50px;
  border: none;
  border-radius: 4px;
}
@media (max-width: 1280px) {
  /* line 118, less/components/share-flip.less */
  .share-flip .button {
    line-height: 40px;
    height: 40px;
  }
}
/* line 123, less/components/share-flip.less */
.share-flip .close-button {
  position: absolute;
  right: 5px;
  top: 5px;
  left: unset;
}
/* line 129, less/components/share-flip.less */
.share-flip .label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
/* line 133, less/components/share-flip.less */
.share-flip .label.gray {
  color: #999999;
}
/* line 137, less/components/share-flip.less */
.share-flip .subheader {
  text-transform: uppercase;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #979797;
  letter-spacing: 0.025em;
  margin: 0 0 16px;
}
/* line 146, less/components/share-flip.less */
.share-flip a {
  text-decoration: underline;
}
/* line 148, less/components/share-flip.less */
.share-flip .share-flip__input {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #262626;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  transition: border-bottom-color 0.3s ease-in-out;
}
/* line 157, less/components/share-flip.less */
.share-flip .share-flip__input:-ms-input-placeholder {
  color: #979797;
}
.share-flip .share-flip__input::placeholder {
  color: #979797;
}
/* line 160, less/components/share-flip.less */
.share-flip .share-flip__input:focus {
  outline: none;
}
/* line 164, less/components/share-flip.less */
.share-flip .share-flip__input--search {
  padding-left: 30px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  /* line 165, less/components/share-flip.less */
  .share-flip .share-flip__input--search {
    width: calc(100% - 20px);
  }
}
/* line 170, less/components/share-flip.less */
.share-flip .share-flip__input--search:-ms-input-placeholder {
  font-size: 14px;
}
.share-flip .share-flip__input--search::placeholder {
  font-size: 14px;
}
/* line 175, less/components/share-flip.less */
.share-flip .share-flip__input--magazine-caption {
  min-height: 88px;
  max-height: 222px;
  resize: vertical;
  margin-bottom: 16px;
  overflow: scroll;
}
/* line 181, less/components/share-flip.less */
.share-flip .share-flip__input--magazine-caption:disabled {
  background-color: #F7F7F7;
}
/* line 183, less/components/share-flip.less */
.share-flip .share-flip__input--magazine-caption:disabled:-ms-input-placeholder {
  color: #F7F7F7;
}
.share-flip .share-flip__input--magazine-caption:disabled::placeholder {
  color: #F7F7F7;
}
/* line 189, less/components/share-flip.less */
.share-flip .share-flip__input--magazine-caption-tall {
  min-height: 170px;
  max-height: 466px;
}
/* line 194, less/components/share-flip.less */
.share-flip .share-flip__input--hide {
  outline: none;
  border: 0 none;
  padding: 0;
  resize: none;
  min-height: 72px;
}
/* line 204, less/components/share-flip.less */
.share-flip .share-flip__button-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  z-index: 29;
}
@media (max-width: 767px) {
  /* line 208, less/components/share-flip.less */
  .share-flip .share-flip__button-wrapper {
    -ms-flex-pack: center;
        justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: #fff;
  }
  /* line 216, less/components/share-flip.less */
  .share-flip .share-flip__button-wrapper button {
    width: 50%;
  }
}
/* line 220, less/components/share-flip.less */
.share-flip .share-flip__button-wrapper button {
  margin-left: 16px;
}
/* line 225, less/components/share-flip.less */
.share-flip .share-flip__button-primary:disabled,
.share-flip .share-flip__button-secondary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* line 232, less/components/share-flip.less */
.share-flip .ico-mglass {
  position: absolute;
  display: inline-block;
  background: #fff;
  border-radius: 30px;
  height: 12px;
  width: 12px;
  border: 2px solid #666;
  margin-top: 13px;
  margin-left: 10px;
}
/* line 242, less/components/share-flip.less */
.share-flip .ico-mglass:after {
  content: "";
  height: 2px;
  width: 6px;
  background: #666;
  position: absolute;
  top: 10px;
  left: 7px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
/* line 254, less/components/share-flip.less */
.share-flip .magazine-descriptive-copy {
  font-weight: 600;
  color: #000;
  margin: 0 0 16px;
}
/* line 260, less/components/share-flip.less */
.share-flip .article {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 96px auto;
      grid-template-columns: 96px auto;
  grid-column-gap: 12px;
}
/* line 265, less/components/share-flip.less */
.share-flip .article--large-image {
  -ms-grid-columns: auto;
      grid-template-columns: auto;
}
/* line 267, less/components/share-flip.less */
.share-flip .article--large-image .article__chosen-image {
  width: 100%;
  height: 355px;
  max-height: 100%;
}
/* line 273, less/components/share-flip.less */
.share-flip .article__chosen-image {
  width: 96px;
  height: 96px;
}
/* line 277, less/components/share-flip.less */
.share-flip .article__choose-image {
  font-size: 14px;
  font-weight: 600;
  color: #F52828;
  cursor: pointer;
  margin-top: 10px;
}
/* line 284, less/components/share-flip.less */
.share-flip .article__no-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  width: 96px;
  height: 96px;
  margin: 0;
  color: #979797;
  background-color: #F7F7F7;
}
/* line 294, less/components/share-flip.less */
.share-flip .article__title {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
/* line 299, less/components/share-flip.less */
.share-flip .article__title.content-loading {
  padding: 8px;
  margin-top: 8px;
  height: 16px;
  width: 100%;
}
/* line 304, less/components/share-flip.less */
.share-flip .article__title.content-loading:nth-child(2) {
  width: 75%;
}
/* line 308, less/components/share-flip.less */
.share-flip .article__title .edit-icon {
  display: none;
}
/* line 312, less/components/share-flip.less */
.share-flip .article__title:hover .edit-icon {
  display: inline-block;
  margin-left: 5px;
}
/* line 317, less/components/share-flip.less */
.share-flip .article__title:focus {
  outline: none;
  padding: 10px;
  border: 1px solid #ddd;
}
/* line 323, less/components/share-flip.less */
.share-flip .article__domain {
  color: #979797;
  font-size: 14px;
}
/* line 326, less/components/share-flip.less */
.share-flip .article__domain.content-loading {
  height: 20px;
  width: 50%;
  margin-top: 8px;
  margin-bottom: 4px;
}
/* line 334, less/components/share-flip.less */
.share-flip .article-details {
  max-width: 388px;
}
/* line 340, less/components/share-flip.less */
.share-flip .image-chooser {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  padding: 20px;
  background-color: #fff;
  z-index: 31;
}
/* line 349, less/components/share-flip.less */
.share-flip .image-chooser__header {
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
}
/* line 354, less/components/share-flip.less */
.share-flip .image-chooser__no-image {
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 20px;
}
/* line 361, less/components/share-flip.less */
.share-flip .image-chooser__no-image.selected {
  color: #F52828;
  text-decoration: none;
}
/* line 365, less/components/share-flip.less */
.share-flip .image-chooser__no-image:hover {
  text-decoration: none;
}
/* line 369, less/components/share-flip.less */
.share-flip .image-chooser__list-wrapper {
  overflow: scroll;
  height: calc(100% - 80px);
}
/* line 373, less/components/share-flip.less */
.share-flip .image-chooser__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (162px)[5];
      grid-template-columns: repeat(5, 162px);
  margin-top: 8px;
}
/* line 378, less/components/share-flip.less */
.share-flip .image-chooser .subheader.extra-images {
  margin-top: 48px;
  border-top: 2px solid #F52828;
  padding-top: 36px;
  margin-bottom: 8px;
}
/* line 384, less/components/share-flip.less */
.share-flip .image-chooser__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-top: 16px;
}
/* line 388, less/components/share-flip.less */
.share-flip .image-chooser__buttons button:last-child {
  margin-left: 16px;
}
/* line 392, less/components/share-flip.less */
.share-flip .image-chooser li {
  position: relative;
  height: 162px;
  cursor: pointer;
}
/* line 397, less/components/share-flip.less */
.share-flip .image-chooser li.selected .image-choice {
  display: -ms-flexbox;
  display: flex;
}
/* line 405, less/components/share-flip.less */
.share-flip .image-chooser li:hover .image-info {
  display: block;
}
/* line 408, less/components/share-flip.less */
.share-flip .image-chooser li:hover .image-info:empty {
  display: none;
}
/* line 414, less/components/share-flip.less */
.share-flip .image-chooser .empty-image {
  min-width: 162px;
  height: 100%;
}
/* line 418, less/components/share-flip.less */
.share-flip .image-chooser .image-choice {
  display: none;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 427, less/components/share-flip.less */
.share-flip .image-chooser .image-choice__icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
}
/* line 437, less/components/share-flip.less */
.share-flip .image-chooser .image-info {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #262626;
  line-height: 1.25;
  padding: 6px 0;
  font-size: 14px;
  text-align: center;
}
/* line 449, less/components/share-flip.less */
.share-flip .image-chooser .image-info li {
  height: auto;
}
/* line 456, less/components/share-flip.less */
.share-flip .content-share.fpb-login {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex: 1;
      flex: 1;
}
/* line 461, less/components/share-flip.less */
.share-flip .content-share.fpb-login .title {
  font-size: 16px;
  font-weight: 600;
}
/* line 465, less/components/share-flip.less */
.share-flip .content-share.fpb-login .sub-text {
  font-size: 14px;
  color: #999999;
}
/* line 469, less/components/share-flip.less */
.share-flip .content-share.fpb-login .error-msg {
  margin-top: 10px;
  color: #F52828;
  font-size: 12px;
}
/* line 475, less/components/share-flip.less */
.share-flip .content-share .share-desc {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}
@media (min-width: 768px) {
  /* line 481, less/components/share-flip.less */
  .share-flip .content-share.magazine {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 286px calc(100% - 306px);
        grid-template-columns: 286px calc(100% - 306px);
    grid-column-gap: 20px;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
  }
  /* line 486, less/components/share-flip.less */
  .share-flip .content-share.magazine .magazine-selection {
    padding: 10px 0;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 1;
        grid-row-start: 1;
    border-right: 1px solid #D8D8D8;
  }
  /* line 492, less/components/share-flip.less */
  .share-flip .content-share.magazine .article-share {
    -ms-grid-column: 2;
        grid-column-start: 2;
    padding: 10px 0;
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  /* line 497, less/components/share-flip.less */
  .share-flip .content-share.magazine .slide-images {
    height: 150px;
  }
}
@media (max-width: 767px) {
  /* line 502, less/components/share-flip.less */
  .share-flip .content-share.magazine .magazine-selection {
    width: 100%;
  }
}
/* line 507, less/components/share-flip.less */
.share-flip .content-share.login {
  min-width: 325px;
}
/* line 509, less/components/share-flip.less */
.share-flip .content-share.login .header,
.share-flip .content-share.login .subhead {
  line-height: 1;
  text-transform: uppercase;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 42px;
}
/* line 515, less/components/share-flip.less */
.share-flip .content-share.login .header {
  font-weight: 900;
}
/* line 518, less/components/share-flip.less */
.share-flip .content-share.login .subhead {
  font-weight: 300;
}
/* line 521, less/components/share-flip.less */
.share-flip .content-share.login .info-text {
  font-size: 16px;
  margin: 12px 0;
}
/* line 525, less/components/share-flip.less */
.share-flip .content-share.login .login-options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 528, less/components/share-flip.less */
.share-flip .content-share.login .login-options .facebook-connect {
  background: #3B5999;
}
/* line 529, less/components/share-flip.less */
.share-flip .content-share.login .login-options .google-connect {
  background: #4285F4;
}
/* line 530, less/components/share-flip.less */
.share-flip .content-share.login .login-options .facebook-button,
.share-flip .content-share.login .login-options .googleplus-button {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 50%;
  margin-top: -20px;
}
/* line 538, less/components/share-flip.less */
.share-flip .content-share.login .login-options .social-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  margin-top: 7px;
  margin-bottom: 16px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 544, less/components/share-flip.less */
.share-flip .content-share.login .login-options .social-buttons .button {
  -ms-flex-positive: 0;
      flex-grow: 0;
  border-radius: 4px;
  width: 49%;
  color: #fff;
}
/* line 552, less/components/share-flip.less */
.share-flip .content-share.login .privacy-terms {
  font-size: 12px;
}
/* line 559, less/components/share-flip.less */
.share-flip .magazine-selection__create {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 0;
  color: #F52828;
}
/* line 564, less/components/share-flip.less */
.share-flip .magazine-selection__create .magazine__image {
  line-height: 44px;
  font-size: 30px;
  font-weight: 300;
  border-radius: 3px;
  border: 1px solid #F52828;
}
/* line 572, less/components/share-flip.less */
.share-flip .magazine-selection__magazine-list {
  margin: 0 0 10px;
}
/* line 574, less/components/share-flip.less */
.share-flip .magazine-selection__magazine-list .lock-button {
  position: absolute;
  bottom: 7px;
  left: 31px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
}
/* line 585, less/components/share-flip.less */
.share-flip .magazine-selection__magazine {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 4px 0;
}
/* line 590, less/components/share-flip.less */
.share-flip .magazine-selection__magazine .magazine__select-icon {
  opacity: 0;
}
/* line 593, less/components/share-flip.less */
.share-flip .magazine-selection__magazine.selected {
  background: #F7F7F7;
}
/* line 595, less/components/share-flip.less */
.share-flip .magazine-selection__magazine.selected .magazine__select-icon {
  opacity: 1;
}
/* line 600, less/components/share-flip.less */
.share-flip .magazine__image {
  min-width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 611, less/components/share-flip.less */
.share-flip .magazine__title {
  margin-left: 15px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 600;
  -ms-flex-preferred-size: calc(100% - 100px);
      flex-basis: calc(100% - 100px);
  height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 622, less/components/share-flip.less */
.share-flip .magazine__select-icon {
  min-width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media only screen and (min-width: 768px) {
  /* line 631, less/components/share-flip.less */
  .share-flip .content-share.login {
    width: 50%;
  }
  /* line 634, less/components/share-flip.less */
  .share-flip .content-share .article {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  /* line 637, less/components/share-flip.less */
  .share-flip .content-share .comment {
    margin-bottom: 32px;
  }
  /* line 641, less/components/share-flip.less */
  .share-flip .magazine-selection__magazine-list {
    height: calc(100vh - 340px);
    overflow: scroll;
  }
}
/* line 651, less/components/share-flip.less */
.flip-compose {
  background-color: #fff;
  z-index: 30;
}
@media (max-width: 767px) {
  /* line 652, less/components/share-flip.less */
  .flip-compose {
    margin: 16px 4%;
  }
}
@media (min-width: 768px) {
  /* line 655, less/components/share-flip.less */
  .flip-compose {
    max-height: 640px;
  }
}
@media (min-width: 768px) {
  /* line 662, less/components/share-flip.less */
  .flip-compose .share-flip .magazine-selection__magazine-list {
    height: calc(376px);
    overflow: scroll;
  }
}
@media (max-width: 767px) {
  /* line 670, less/components/share-flip.less */
  .flip-compose .share-flip .share-flip__button-wrapper {
    margin: 0 4%;
  }
}
/* line 1, less/components/share-menu.less */
.share-menu {
  display: inline-block;
}
/* line 1, less/components/share-view.less */
.share-view {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 31;
  pointer-events: none;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  flex-direction: row;
}
/* line 21, less/components/share-view.less */
.share-view.item .share-content {
  width: 486px;
}
/* line 23, less/components/share-view.less */
.share-view.item .share-content .share-target {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 26, less/components/share-view.less */
.share-view.item .share-content .share-target .share-image {
  margin-right: 20px;
  margin-left: 0;
  margin-bottom: 0;
}
/* line 31, less/components/share-view.less */
.share-view.item .share-content .share-target .share-title {
  text-align: left;
}
/* line 38, less/components/share-view.less */
.share-view .share-content {
  position: relative;
  background-color: #fff;
  pointer-events: auto;
  height: 320px;
  width: 320px;
}
/* line 45, less/components/share-view.less */
.share-view .share-content input[name="url"] {
  width: 100%;
  font-size: 12px;
  border: none;
  font-weight: 600;
}
/* line 52, less/components/share-view.less */
.share-view .share-content *[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
/* line 57, less/components/share-view.less */
.share-view .share-content h2.header {
  padding: 15px 30px 10px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #dedede;
  text-align: left;
}
/* line 69, less/components/share-view.less */
.share-view .share-content h2.header .tab {
  margin-right: 20px;
  cursor: pointer;
}
/* line 74, less/components/share-view.less */
.share-view .share-content h2.header .tab.selected {
  color: #000;
  cursor: auto;
}
/* line 80, less/components/share-view.less */
.share-view .share-content .close-button {
  position: absolute;
  top: 16px;
  left: 22px;
}
/* line 86, less/components/share-view.less */
.share-view .share-content .section-cover {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -36px;
  padding-right: 20px;
  pointer-events: none;
}
/* line 95, less/components/share-view.less */
.share-view .share-content .share-target {
  margin: 20px;
  height: 155px;
}
/* line 99, less/components/share-view.less */
.share-view .share-content .share-target .share-image {
  position: relative;
  width: 125px;
  height: 125px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
/* line 109, less/components/share-view.less */
.share-view .share-content .share-target .share-title {
  font-weight: 500;
  line-height: 22px;
  font-size: 18px;
  max-height: 78px;
  overflow: hidden;
  text-align: center;
}
/* line 118, less/components/share-view.less */
.share-view .share-content .share-target .share-author,
.share-view .share-content .share-target .share-excerpt {
  color: #686868;
}
/* line 123, less/components/share-view.less */
.share-view .share-content .share-target .share-author {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 600;
}
/* line 129, less/components/share-view.less */
.share-view .share-content .share-target .share-excerpt {
  font-size: 11px;
  font-weight: 100;
  height: 50px;
  margin-bottom: 10px;
  overflow: hidden;
}
/* line 137, less/components/share-view.less */
.share-view .share-content .share-target .share-source {
  font-size: 13px;
  color: #666;
}
/* line 142, less/components/share-view.less */
.share-view .share-content .share-target.share-section,
.share-view .share-content .share-target.share-profile {
  height: 140px;
}
/* line 146, less/components/share-view.less */
.share-view .share-content .share-target.share-profile {
  width: 90px;
  height: 90px;
}
/* line 151, less/components/share-view.less */
.share-view .share-content .share-target.share-item {
  margin-bottom: 55px;
}
/* line 157, less/components/share-view.less */
.share-view .share-content .share-options {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
/* line 163, less/components/share-view.less */
.share-view .share-content .share-options .share-option {
  text-align: left;
  margin-right: 5px;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  width: 90px;
  padding-left: 10px;
  padding-right: 10px;
  height: 30px;
  line-height: 30px;
}
/* line 175, less/components/share-view.less */
.share-view .share-content .share-options .share-option.twitter {
  background-color: #189ACB;
  line-height: 34px;
}
/* line 179, less/components/share-view.less */
.share-view .share-content .share-options .share-option.facebook {
  background-color: #395185;
  line-height: 34px;
}
/* line 183, less/components/share-view.less */
.share-view .share-content .share-options .share-option.mail {
  background-color: #555555;
}
/* line 189, less/components/share-view.less */
.share-view .share-content .share-embed {
  margin: 30px;
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 195, less/components/share-view.less */
.share-view .share-content .share-embed .preview {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-right: 30px;
  width: 150px;
  height: 200px;
  background-color: #f2f2f2;
}
/* line 204, less/components/share-view.less */
.share-view .share-content .share-embed .preview iframe {
  border: 0;
  overflow: hidden;
}
/* line 209, less/components/share-view.less */
.share-view .share-content .share-embed .share-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
/* line 215, less/components/share-view.less */
.share-view .share-content .share-embed .share-code {
  overflow: auto;
  border: none;
  resize: none;
  padding: 9px 12px;
  background-color: #f2f2f2;
  color: #999;
  font-size: 11px;
  width: 100%;
  height: 140px;
  outline: none;
}
/* line 1, less/components/share-with-friend.less */
.share-article-view {
  height: 435px;
}
/* line 4, less/components/share-with-friend.less */
.share-article-view .close-button {
  left: initial;
  right: 10px;
}
/* line 9, less/components/share-with-friend.less */
.share-article-view .share-article-view__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
}
/* line 15, less/components/share-with-friend.less */
.share-article-view .share-url-input {
  margin-left: 20px;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: -20px;
  height: 30px;
  width: 126px;
}
/* line 23, less/components/share-with-friend.less */
.share-article-view .share-url-input:focus {
  outline: none;
}
/* line 28, less/components/share-with-friend.less */
.share-article-view button {
  margin-top: 0px;
}
/* line 32, less/components/share-with-friend.less */
.share-article-view textarea {
  width: 65%;
  border: none;
  margin-top: 10px;
  padding: 0px;
  min-height: 0px;
}
/* line 39, less/components/share-with-friend.less */
.share-article-view textarea:focus {
  outline: none;
}
/* line 45, less/components/share-with-friend.less */
.share-article-view .facebook-button:hover {
  cursor: pointer;
}
/* line 51, less/components/share-with-friend.less */
.share-article-view .twitter-button:hover {
  cursor: pointer;
}
/* line 56, less/components/share-with-friend.less */
.share-article-view .title {
  margin-bottom: 15px;
  font-size: 16px;
  color: #262626;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 64, less/components/share-with-friend.less */
.share-article-view .search-for-friends {
  height: 50px;
  padding: 5px 5px;
  margin-bottom: 15px;
  border: 1px solid #e6e6e6;
  overflow: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
/* line 74, less/components/share-with-friend.less */
.share-article-view .search-for-friends .label {
  margin-left: 10px;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
}
/* line 82, less/components/share-with-friend.less */
.share-article-view .search-for-friends .confirmed-friend {
  display: inline-block;
  font-size: 14px;
  margin-right: 3px;
  font-weight: 500;
}
/* line 87, less/components/share-with-friend.less */
.share-article-view .search-for-friends .confirmed-friend:after {
  content: ",";
}
/* line 92, less/components/share-with-friend.less */
.share-article-view .search-for-friends input {
  min-height: 35px;
  border: none;
  font-size: 14px;
}
/* line 96, less/components/share-with-friend.less */
.share-article-view .search-for-friends input:focus {
  outline: none;
}
/* line 100, less/components/share-with-friend.less */
.share-article-view .search-for-friends input ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
  font-weight: 500px;
}
/* line 104, less/components/share-with-friend.less */
.share-article-view .search-for-friends input ::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
  font-weight: 500px;
}
/* line 108, less/components/share-with-friend.less */
.share-article-view .search-for-friends input :-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
  font-weight: 500px;
}
/* line 112, less/components/share-with-friend.less */
.share-article-view .search-for-friends input :-moz-placeholder {
  /* Firefox 18- */
  color: #999;
  font-weight: 500px;
}
/* line 119, less/components/share-with-friend.less */
.share-article-view .search-results-graylist {
  margin-top: 15px;
  margin-bottom: 5px;
  overflow-y: auto;
  border: none;
  -ms-flex: 1;
      flex: 1;
}
/* line 126, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend {
  background-color: white;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  padding: 5px 3px;
  height: 60px;
}
/* line 135, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .individual-caption .top-caption {
  font-size: 14px;
}
/* line 139, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .individual-caption .bottom-caption {
  font-size: 12px;
  color: #CCC;
}
/* line 145, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .check-mark {
  position: absolute;
  left: 1%;
}
/* line 150, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .individual-caption {
  display: inline-block;
  position: relative;
  top: -10px;
}
/* line 156, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend:hover {
  cursor: pointer;
}
/* line 160, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .avatar.confirmed {
  height: 50px;
  width: 50px;
  margin-right: 15px;
  display: inline-block;
  position: relative;
}
/* line 167, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .avatar.confirmed:before {
  background: black;
  opacity: 0.6;
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
/* line 178, less/components/share-with-friend.less */
.share-article-view .search-results-graylist .search-results-individual-friend .avatar {
  height: 50px;
  width: 50px;
  margin-right: 15px;
  display: inline-block;
}
@media (max-width: 767px) {
  /* line 189, less/components/share-with-friend.less */
  .share-article-view {
    height: 100%;
    width: 100%;
    padding: 20px;
  }
}
/* line 1, less/components/show-more.less */
.show-more {
  position: relative;
  display: inline-block;
}
/* line 5, less/components/show-more.less */
.show-more:hover svg path,
.show-more.showing svg path {
  stroke: #333;
}
/* line 9, less/components/show-more.less */
.show-more.showing .show-more-menu {
  display: block;
}
/* line 13, less/components/show-more.less */
.show-more-menu {
  position: absolute;
  display: none;
  text-align: left;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0px;
  padding: 5px 10px;
  bottom: 100%;
  left: 50%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 30;
  /* Turning off for now...
    &:after{
        // Pointer Triangle
        @arrowSize:8px;
        content:'';
        display: block;
        position: absolute;
        bottom: -@arrowSize/2;
        left: 50%;
        margin-left: -@arrowSize/2;
        width: @arrowSize;
        height: @arrowSize;
        background-color: #333;
        .fl-rotate(45deg);

        .left & {
            margin-left: 0;
            margin-right: -@arrowSize/2;
            left: auto;
            right: 0;
            top: 50%;
            .fl-transform(translateY(-50%) rotate(45deg));
        }
    }
    */
}
/* line 27, less/components/show-more.less */
.left .show-more-menu {
  top: 50%;
  left: 0;
  bottom: auto;
  -ms-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}
/* line 34, less/components/show-more.less */
.bottom .show-more-menu {
  top: 100%;
  bottom: auto;
}
/* line 39, less/components/show-more.less */
.show-more-menu .action-bar-edit {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* line 45, less/components/show-more.less */
.show-more-menu:before {
  /* Creates 10px hover buffer around menu */
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  background-color: transparent;
}
/* line 81, less/components/show-more.less */
.show-more-menu li {
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-size: 12px;
  line-height: 26px;
  color: #333;
  fill: white;
  font-weight: 500;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 91, less/components/show-more.less */
.show-more-menu li:hover {
  color: #09c;
  fill: #ccc;
}
/* line 94, less/components/show-more.less */
.show-more-menu li:hover svg {
  -webkit-filter: brightness(0.7) saturate(2.5);
}
/* line 98, less/components/show-more.less */
.show-more-menu li svg {
  margin-right: 3px;
}
/* line 101, less/components/show-more.less */
.show-more-menu li > * {
  vertical-align: middle;
}
/* line 104, less/components/show-more.less */
.show-more-menu li.active {
  color: #09c;
}
/* line 1, less/components/sign-up-flow.less */
.sign-up-flow {
  min-height: 463px;
}
/* line 3, less/components/sign-up-flow.less */
.sign-up-flow .loading {
  position: absolute;
}
/* line 6, less/components/sign-up-flow.less */
.sign-up-flow .signupflow-steps {
  margin-top: 20px;
}
/* line 8, less/components/sign-up-flow.less */
.sign-up-flow .signupflow-steps h3 {
  color: #999;
  font-size: 12px;
  margin: auto;
}
/* line 15, less/components/sign-up-flow.less */
.sign-up-flow .signupflow-complete .signupflow-complete-text {
  font-size: 14px;
  width: 100%;
  text-align: center;
}
/* line 20, less/components/sign-up-flow.less */
.sign-up-flow .signupflow-complete .button {
  width: 100%;
  border-radius: 0;
  margin-top: 40px;
}
/* line 1, less/components/sign-up-qr-view.less */
.sign-up-qr-view {
  position: fixed;
  z-index: 31;
  padding: 40px;
  padding-top: 30px;
  background: #fff;
}
@media (min-height: 347px) {
  /* line 435, ../app/assets/less/mixins.less */
  .sign-up-qr-view {
    top: 50%;
    height: 320px;
    margin-top: -160px;
  }
}
@media (max-height: 320px) {
  /* line 440, ../app/assets/less/mixins.less */
  .sign-up-qr-view {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 341px) {
  /* line 461, ../app/assets/less/mixins.less */
  .sign-up-qr-view {
    left: 50%;
    margin-left: -170px;
    width: 340px;
  }
}
@media (max-width: 340px) {
  /* line 466, ../app/assets/less/mixins.less */
  .sign-up-qr-view {
    left: 0;
    right: 0;
  }
}
/* line 7, less/components/sign-up-qr-view.less */
.sign-up-qr-view .close-button {
  position: absolute;
  left: 16px;
  top: 16px;
}
/* line 12, less/components/sign-up-qr-view.less */
.sign-up-qr-view h5,
.sign-up-qr-view h6 {
  text-align: center;
}
/* line 15, less/components/sign-up-qr-view.less */
.sign-up-qr-view h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 20, less/components/sign-up-qr-view.less */
.sign-up-qr-view h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 15px;
}
/* line 25, less/components/sign-up-qr-view.less */
.sign-up-qr-view button {
  margin-top: 10px;
  float: right;
}
/* line 29, less/components/sign-up-qr-view.less */
.sign-up-qr-view .features-list li {
  padding: 10px 0;
}
/* line 31, less/components/sign-up-qr-view.less */
.sign-up-qr-view .features-list li:hover {
  background-color: #ddd;
}
/* line 1, less/components/slideshow-page.less */
.slideshow-header {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: 800px;
  color: white;
  text-align: center;
}
/* line 11, less/components/slideshow-page.less */
.slideshow-header .slideshow-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
}
/* line 16, less/components/slideshow-page.less */
.slideshow-header .slideshow-stats {
  font-size: 12px;
  line-height: 15px;
  display: inline-block;
}
/* line 21, less/components/slideshow-page.less */
.slideshow-header .byline-attribution {
  display: inline;
}
/* line 1, less/components/social-actions.less */
.social-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  font-size: 12px;
  line-height: 12px;
  color: #adadad;
  width: 100%;
  height: 30px;
  margin-top: 8px;
  cursor: pointer;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
/* line 17, less/components/social-actions.less */
.social-action:hover {
  -webkit-filter: brightness(0.7) saturate(2.5);
}
/* line 21, less/components/social-actions.less */
.social-action:first-child {
  margin-top: 0;
}
/* line 25, less/components/social-actions.less */
.social-action svg {
  width: 30px;
  height: 30px;
}
/* line 30, less/components/social-actions.less */
.social-action span {
  margin-left: 4px;
}
/* line 3, less/components/stats-dashboard.less */
.stats-dashboard {
  color: #303738;
}
/* line 5, less/components/stats-dashboard.less */
.stats-dashboard > .content {
  width: 100%;
}
/* line 7, less/components/stats-dashboard.less */
.stats-dashboard > .content > h3 {
  text-transform: uppercase;
  font-weight: 600;
  padding-right: 12px;
  margin-bottom: 24px;
}
/* line 14, less/components/stats-dashboard.less */
.stats-dashboard a:hover {
  color: #cb212c;
}
/* line 17, less/components/stats-dashboard.less */
.stats-dashboard hr {
  border: none;
  border-top: solid 4px #303738;
  height: 0;
  margin: 0;
  padding: 0;
}
/* line 23, less/components/stats-dashboard.less */
.stats-dashboard hr.separator {
  width: 100px;
  margin: 24px 0;
}
/* line 28, less/components/stats-dashboard.less */
.stats-dashboard .error {
  color: #999;
  font-size: 14px;
}
/* line 32, less/components/stats-dashboard.less */
.stats-dashboard .cols {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 34, less/components/stats-dashboard.less */
.stats-dashboard .cols > * {
  border-right: solid 2px rgba(0, 0, 0, 0.05);
}
/* line 36, less/components/stats-dashboard.less */
.stats-dashboard .cols > *:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
/* line 43, less/components/stats-dashboard.less */
.stats-dashboard .col {
  margin-right: 12px;
  padding: 0 12px 24px 0;
}
/* line 46, less/components/stats-dashboard.less */
.stats-dashboard .col > hr:first-child {
  margin-bottom: 24px;
}
/* line 50, less/components/stats-dashboard.less */
.stats-dashboard .col-1 {
  padding: 0 24px 0 24px;
  width: 270px;
}
/* line 54, less/components/stats-dashboard.less */
.stats-dashboard .col-2 {
  width: 280px;
}
/* line 57, less/components/stats-dashboard.less */
.stats-dashboard .col-3 {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 60, less/components/stats-dashboard.less */
.stats-dashboard .profile-image {
  display: block;
}
/* line 62, less/components/stats-dashboard.less */
.stats-dashboard .profile-image .cropped-image {
  border-radius: 50%;
}
/* line 66, less/components/stats-dashboard.less */
.stats-dashboard .tooltip {
  cursor: default;
}
/* line 69, less/components/stats-dashboard.less */
.stats-dashboard .tooltip:after {
  font-size: 13px;
  text-transform: none;
}
/* line 73, less/components/stats-dashboard.less */
.stats-dashboard .chart-range {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}
/* line 77, less/components/stats-dashboard.less */
.stats-dashboard .chart-range > * {
  width: 50%;
  display: inline-block;
}
/* line 81, less/components/stats-dashboard.less */
.stats-dashboard .chart-range .chart-range-end {
  text-align: right;
}
/* line 85, less/components/stats-dashboard.less */
.stats-dashboard .chart-container {
  width: 538px;
  height: 225px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}
/* line 91, less/components/stats-dashboard.less */
.stats-dashboard .chart-container .loading {
  position: absolute;
}
/* line 94, less/components/stats-dashboard.less */
.stats-dashboard .chart-container .error {
  position: absolute;
  top: 50%;
  left: 130px;
  right: 130px;
  text-align: center;
  margin-top: -20px;
}
/* line 103, less/components/stats-dashboard.less */
.stats-dashboard .chart {
  font-size: 12px;
  position: relative;
}
/* line 107, less/components/stats-dashboard.less */
.stats-dashboard .chart-title,
.stats-dashboard .top-list-title {
  position: relative;
}
/* line 109, less/components/stats-dashboard.less */
.stats-dashboard .chart-title.chart-tooltip,
.stats-dashboard .top-list-title.chart-tooltip {
  left: 10px;
}
/* line 112, less/components/stats-dashboard.less */
.stats-dashboard .chart-title.top-list-tooltip,
.stats-dashboard .top-list-title.top-list-tooltip {
  left: 0px;
}
/* line 115, less/components/stats-dashboard.less */
.stats-dashboard .chart-title.chart-tooltip,
.stats-dashboard .top-list-title.chart-tooltip,
.stats-dashboard .chart-title.top-list-tooltip,
.stats-dashboard .top-list-title.top-list-tooltip {
  text-transform: uppercase;
  font-size: 13px;
}
/* line 120, less/components/stats-dashboard.less */
.stats-dashboard .chart-title.chart-tooltip:hover div[data-tooltip]:after,
.stats-dashboard .top-list-title.chart-tooltip:hover div[data-tooltip]:after,
.stats-dashboard .chart-title.top-list-tooltip:hover div[data-tooltip]:after,
.stats-dashboard .top-list-title.top-list-tooltip:hover div[data-tooltip]:after {
  background-color: #222;
  border-radius: 5px;
  color: white;
  content: attr(data-tooltip);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  left: 0px;
  padding: 5px;
  position: absolute;
  right: 83%;
  top: 24px;
  width: 200px;
  z-index: 98;
}
/* line 140, less/components/stats-dashboard.less */
.stats-dashboard .chart-background {
  fill: none;
}
/* line 143, less/components/stats-dashboard.less */
.stats-dashboard .chart-stroke {
  stroke: #cb212c;
  stroke-width: 1;
  fill: none;
}
/* line 148, less/components/stats-dashboard.less */
.stats-dashboard .chart-stroke-baseline {
  stroke: #cb212c;
  stroke-width: 2;
}
/* line 152, less/components/stats-dashboard.less */
.stats-dashboard .chart-fill {
  fill: #cb212c;
}
/* line 155, less/components/stats-dashboard.less */
.stats-dashboard .chart-active-line {
  stroke: rgba(0, 0, 0, 0.75);
  stroke-dasharray: 1,3;
}
/* line 159, less/components/stats-dashboard.less */
.stats-dashboard .chart-active-point {
  fill: rgba(0, 0, 0, 0.75);
}
/* line 162, less/components/stats-dashboard.less */
.stats-dashboard .chart-tooltip {
  font-size: 13px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
}
/* line 169, less/components/stats-dashboard.less */
.stats-dashboard .chart-tooltip__x-label,
.stats-dashboard .chart-tooltip__y-label {
  display: inline-block;
  width: 150px;
}
/* line 173, less/components/stats-dashboard.less */
.stats-dashboard .chart-tooltip__x-label {
  text-align: right;
}
/* line 176, less/components/stats-dashboard.less */
.stats-dashboard .chart-tooltip__y-label {
  font-weight: 600;
}
/* line 179, less/components/stats-dashboard.less */
.stats-dashboard .chart-null-state {
  color: #999;
}
/* line 182, less/components/stats-dashboard.less */
.stats-dashboard .magazine-stats {
  font-size: 12px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
}
/* line 186, less/components/stats-dashboard.less */
.stats-dashboard .magazine-stats li {
  margin: 6px 0;
  background-repeat: no-repeat;
  background-position: left center;
  text-align: center;
}
/* line 196, less/components/stats-dashboard.less */
.stats-dashboard-stats svg {
  margin-top: 25px;
}
/* line 202, less/components/stats-dashboard.less */
.stats-dashboard-top-list h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
/* line 208, less/components/stats-dashboard.less */
.stats-dashboard-top-list svg {
  vertical-align: top;
  margin-right: 5px;
}
/* line 212, less/components/stats-dashboard.less */
.stats-dashboard-top-list li {
  font-size: 14px;
  margin-bottom: 24px;
  position: relative;
}
/* line 216, less/components/stats-dashboard.less */
.stats-dashboard-top-list li a:hover {
  color: inherit;
}
/* line 219, less/components/stats-dashboard.less */
.stats-dashboard-top-list li .domain {
  color: #cb212c;
  display: block;
}
/* line 223, less/components/stats-dashboard.less */
.stats-dashboard-top-list li .title {
  font-weight: 600;
}
/* line 226, less/components/stats-dashboard.less */
.stats-dashboard-top-list li .count {
  font-size: 12px;
  position: absolute;
  top: 2px;
  left: 0;
}
/* line 233, less/components/stats-dashboard.less */
.stats-dashboard-top-list .loading {
  position: relative;
  top: 0;
  margin: 48px 0;
}
/* line 238, less/components/stats-dashboard.less */
.stats-dashboard-top-list .stats-dashboard-top-list-empty {
  color: #999;
}
/* line 244, less/components/stats-dashboard.less */
.stats-dashboard-profile .profile-image {
  margin-bottom: 12px;
}
/* line 247, less/components/stats-dashboard.less */
.stats-dashboard-profile h2 {
  margin-bottom: 12px;
}
/* line 250, less/components/stats-dashboard.less */
.stats-dashboard-profile .profile-stats {
  color: #cb212c;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 254, less/components/stats-dashboard.less */
.stats-dashboard-profile .profile-stats li {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}
/* line 261, less/components/stats-dashboard.less */
.stats-dashboard-navigation {
  margin-top: 24px;
  margin-bottom: 24px;
}
/* line 264, less/components/stats-dashboard.less */
.stats-dashboard-navigation hr.separator {
  margin: 12px 0;
}
/* line 267, less/components/stats-dashboard.less */
.stats-dashboard-navigation ul {
  display: inline-block;
}
/* line 268, less/components/stats-dashboard.less */
.stats-dashboard-navigation li {
  margin-bottom: 6px;
  padding-bottom: 6px;
}
/* line 271, less/components/stats-dashboard.less */
.stats-dashboard-navigation li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
/* line 275, less/components/stats-dashboard.less */
.stats-dashboard-navigation li:hover,
.stats-dashboard-navigation li.active {
  color: #cb212c;
}
/* line 279, less/components/stats-dashboard.less */
.stats-dashboard-navigation li svg {
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 9px;
  margin-left: -1px;
}
/* line 287, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover-container {
  text-align: center;
}
/* line 289, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover-container a {
  font-size: 14px;
}
/* line 293, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover {
  color: white;
  position: relative;
  width: 263px;
  height: 358px;
  text-transform: uppercase;
}
/* line 299, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover > .title {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 18px;
  font-size: 16px;
}
/* line 309, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover > .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 317, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover > .magazine-stats {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
}
/* line 323, less/components/stats-dashboard.less */
.stats-dashboard-magazine-cover .loading {
  position: absolute;
}
/* line 328, less/components/stats-dashboard.less */
.stats-dashboard-most-flipped h4 {
  text-transform: uppercase;
}
/* line 1, less/components/status-item.less */
.status {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
}
/* line 7, less/components/status-item.less */
.status.high-density > .status-link {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
/* line 12, less/components/status-item.less */
.status.medium-density > .status-link {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
/* line 17, less/components/status-item.less */
.status.low-density > .status-link {
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
/* line 22, less/components/status-item.less */
.status > .status-link {
  position: relative;
  width: 100%;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 20px 30px;
  overflow: hidden;
  overflow-wrap: break-word;
  border-left: solid 4px #d9d9d9;
}
/* line 34, less/components/status-item.less */
.status > .status-link > .external-social-actions {
  position: absolute;
  left: 10px;
  bottom: 5px;
}
/* line 39, less/components/status-item.less */
.status > .status-link > .linked-text,
.status > .status-link span {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  overflow: hidden;
  white-space: pre-wrap;
}
/* line 44, less/components/status-item.less */
.status > .status-link > .linked-text .section-link,
.status > .status-link span .section-link {
  color: #09c;
}
/* line 50, less/components/status-item.less */
.status > .status-link.truncate > .linked-text,
.status > .status-link.truncate span {
  max-height: 130px;
}
/* line 55, less/components/status-item.less */
.status > .status-link .top-attribution {
  margin-top: 5px;
  margin-bottom: 5px;
}
/* line 60, less/components/status-item.less */
.status > .status-link .mini-attribution {
  margin-top: 10px;
}
/* line 62, less/components/status-item.less */
.status > .status-link .mini-attribution span {
  font-family: inherit;
  font-size: 12px;
  line-height: 15px;
}
/* line 69, less/components/status-item.less */
.status .action-bar {
  position: relative;
  margin-top: 5px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 74, less/components/status-item.less */
.status .top-attribution {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 77, less/components/status-item.less */
.status .curator-actions {
  top: 8px;
  right: 8px;
}
/* line 81, less/components/status-item.less */
.status > .tip-icon {
  position: relative;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin: -15px 0 0 20px;
}
/* line 89, less/components/status-item.less */
.status.layout-item-has-hint .status-link,
.status.layout-item-has-hint span {
  overflow: visible;
}
/* line 94, less/components/status-item.less */
.status .flip-hint {
  top: 0;
}
/* line 7, less/components/storyboard.less */
.storyboard-container {
  width: 100%;
  margin: 50px 0px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
/* line 14, less/components/storyboard.less */
.storyboard-title {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin: 35px 0px 20px 0px;
}
/* line 24, less/components/storyboard.less */
.storyboard {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden;
  padding: 15px 0px;
}
/* line 34, less/components/storyboard.less */
.storyboard-page {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  background: #fff;
  text-align: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 15px;
  width: 338px;
}
/* line 45, less/components/storyboard.less */
.storyboard-page img {
  max-width: 100%;
  max-height: 100%;
}
/* line 51, less/components/storyboard.less */
.storyboard-pan-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: #EEEEEE;
  cursor: pointer;
  width: 50px;
}
/* line 61, less/components/storyboard.less */
.storyboard-pan-control .nav-arrow.rotated {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 73, less/components/storyboard.less */
.storyboard-item .play-button {
  position: absolute;
  width: 50px;
  top: 272px;
  left: 145px;
}
/* line 81, less/components/storyboard.less */
.storyboard-item-container {
  height: 600px;
  width: 338px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
}
/* line 90, less/components/storyboard.less */
.storyboard-item-header {
  position: absolute;
  top: 0;
  left: 0;
  height: 55px;
  width: 100%;
  padding: 10px 0 20px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 1;
}
/* line 100, less/components/storyboard.less */
.storyboard-item--gallery-zoomed .storyboard-item-header {
  display: none;
}
/* line 105, less/components/storyboard.less */
.storyboard-item-footer--fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding-bottom: 10px;
}
/* line 118, less/components/storyboard.less */
.storyboard-item-footer--fade .storyboard-item-title {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  line-height: 30px;
  font-weight: 800;
  text-align: left;
  padding: 0px 10px;
}
/* line 126, less/components/storyboard.less */
.storyboard-item-footer--fade .storyboard-item-domain {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 20px;
  line-height: 25px;
  text-align: left;
  padding: 0px 10px;
}
/* line 134, less/components/storyboard.less */
.storyboard-item--gallery {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 140, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-images {
  position: relative;
  width: 100%;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
/* line 147, less/components/storyboard.less */
.storyboard-item--gallery-zoomed.storyboard-item--gallery .storyboard-item__gallery-images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  background: black;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
/* line 155, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-images .storyboard-item__gallery-image-title,
.storyboard-item--gallery .storyboard-item__gallery-images .storyboard-item-footer__title {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: white;
}
/* line 162, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-images .storyboard-item__gallery-image-title {
  width: 100%;
  padding: 10px;
  text-align: left;
}
/* line 169, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-image-frame {
  position: absolute;
  background: black;
}
/* line 174, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-image-frame:hover .storyboard-item__gallery-image {
  -ms-transform: scale(1.05);
      transform: scale(1.05);
}
/* line 179, less/components/storyboard.less */
.storyboard-item--gallery-zoomed.storyboard-item--gallery .storyboard-item__gallery-image-frame {
  position: relative;
  width: 100%;
  border: none;
}
/* line 186, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}
/* line 194, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item__gallery-image {
  position: absolute;
  background: black;
  max-width: initial;
  max-height: initial;
  cursor: pointer;
  transition: 50ms ease-out all;
}
/* line 202, less/components/storyboard.less */
.storyboard-item--gallery-zoomed.storyboard-item--gallery .storyboard-item__gallery-image {
  position: initial;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 211, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item-footer {
  width: 100%;
  background: black;
  text-align: left;
  color: white;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 222, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item-footer__title {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  margin: 10px 10px 0px 10px;
}
/* line 230, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item-footer__description {
  color: #aaaaaa;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  margin: 0 10px;
}
/* line 237, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item-footer__cta {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  margin: 0px 10px 10px 10px;
}
/* line 244, less/components/storyboard.less */
.storyboard-item--gallery .storyboard-item-footer__cta a {
  display: inline-block;
  border: 1px solid white;
  padding: 3px 10px;
}
/* line 252, less/components/storyboard.less */
.storyboard-item--image,
.storyboard-item--video,
.storyboard-item--post,
.storyboard-item--youtube-video,
.storyboard-item--post-no-image {
  height: 100%;
  position: relative;
}
/* line 259, less/components/storyboard.less */
.storyboard-item--image .curator-actions,
.storyboard-item--video .curator-actions,
.storyboard-item--post .curator-actions,
.storyboard-item--youtube-video .curator-actions,
.storyboard-item--post-no-image .curator-actions {
  position: absolute;
  top: 50px;
  right: 25px;
  z-index: 2;
}
/* line 266, less/components/storyboard.less */
.storyboard-item--image .action-bar,
.storyboard-item--video .action-bar,
.storyboard-item--post .action-bar,
.storyboard-item--youtube-video .action-bar,
.storyboard-item--post-no-image .action-bar {
  position: absolute;
  bottom: 45px;
  left: 10px;
  z-index: 11;
  width: calc(100% - 10px);
}
/* line 275, less/components/storyboard.less */
.storyboard-item--youtube-video {
  background-color: black;
}
/* line 277, less/components/storyboard.less */
.storyboard-item--youtube-video .curator-actions {
  z-index: 11;
}
/* line 282, less/components/storyboard.less */
.storyboard-item--youtube-video {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}
/* line 290, less/components/storyboard.less */
.storyboard-item--image {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-color: black;
}
/* line 300, less/components/storyboard.less */
.storyboard-item--video-player {
  cursor: pointer;
  width: 338px;
  height: 600px;
}
/* line 309, less/components/storyboard.less */
.storyboard-item--post-no-image {
  background: #000;
  width: 100%;
}
/* line 314, less/components/storyboard.less */
.storyboard-item-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* line 319, less/components/storyboard.less */
.storyboard-item-overlay a {
  display: block;
  z-index: 1;
}
/* line 325, less/components/storyboard.less */
.storyboard-item-overlay__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 332, less/components/storyboard.less */
.storyboard-item-overlay--horiz-center .storyboard-item-overlay__image-container {
  -ms-flex-align: center;
      align-items: center;
}
/* line 336, less/components/storyboard.less */
.storyboard-item-overlay--horiz-left .storyboard-item-overlay__image-container {
  -ms-flex-align: start;
      align-items: flex-start;
}
/* line 340, less/components/storyboard.less */
.storyboard-item-overlay--horiz-right .storyboard-item-overlay__image-container {
  -ms-flex-align: end;
      align-items: flex-end;
}
/* line 344, less/components/storyboard.less */
.storyboard-item-overlay--vert-center .storyboard-item-overlay__image-container {
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 348, less/components/storyboard.less */
.storyboard-item-overlay--vert-top .storyboard-item-overlay__image-container {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 352, less/components/storyboard.less */
.storyboard-item-overlay--vert-bottom .storyboard-item-overlay__image-container {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 1, less/components/super-user-avatar.less */
.super-user-avatar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 7, less/components/super-user-avatar.less */
.super-user-avatar__current-profile {
  z-index: 10;
}
/* line 11, less/components/super-user-avatar.less */
.super-user-avatar__super-profile {
  position: absolute;
  top: 70px;
  padding-left: 70px;
  z-index: 10;
}
/* line 19, less/components/super-user-avatar.less */
.profile-header .profile-header-content .super-user-avatar__super-profile .avatar-wrapper {
  border: 3px solid #F52828;
  border-radius: 27px;
}
/* line 24, less/components/super-user-avatar.less */
.profile-header .profile-header-content .super-user-avatar__super-profile .avatar {
  width: 50px;
  height: 50px;
  border: 2px solid white;
}
/* line 31, less/components/super-user-avatar.less */
.super-user-avatar__link-icon {
  background-color: #F52828;
  border: 2px solid white;
  height: 22px;
  width: 22px;
  border-radius: 11px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 1, less/components/switch-user.less */
.switch-user__profile-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 4, less/components/switch-user.less */
.switch-user__profile-item .avatar-wrapper {
  margin-right: 12px;
}
/* line 9, less/components/switch-user.less */
.switch-user__profile-item-title {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  size: 20px;
}
/* line 16, less/components/switch-user.less */
.switch-user__profile-list li {
  cursor: pointer;
  margin-bottom: 14px;
}
/* line 22, less/components/switch-user.less */
.switch-user__instructions {
  margin: 16px 0;
}
/* line 26, less/components/switch-user.less */
.switch-user__error-message {
  color: #EA0B0B;
  margin-bottom: 12px;
}
/* line 1, less/components/switch.less */
.switch-container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 6, less/components/switch.less */
.switch-container .switch-label {
  position: relative;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  transition-duration: 250ms;
}
/* line 13, less/components/switch.less */
.switch-container .switch {
  position: relative;
  display: inline-block;
  border: 2px solid #1fb963;
  border-radius: 999em;
  width: 82px;
  height: 34px;
  padding: 2px 0 0 2px;
  cursor: pointer;
  margin-right: 10px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-duration: 250ms;
}
/* line 25, less/components/switch.less */
.switch-container .switch .switch-handle {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  background-color: #1fb963;
  transition-property: transform, background-color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
}
/* line 34, less/components/switch.less */
.switch-container.private .switch {
  border: 2px solid #f03737;
}
/* line 36, less/components/switch.less */
.switch-container.private .switch .switch-handle {
  background-color: #f03737;
  -ms-transform: translate3d(48px, 0, 0);
  transform: translate3d(48px, 0, 0);
}
/* line 1, less/components/text-input.less */
.text-input {
  -webkit-appearance: none;
  outline: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 9, less/components/text-input.less */
.text-input::-ms-clear {
  display: none;
}
/* line 1, less/components/textarea.less */
.textarea {
  -webkit-appearance: none;
  outline: none;
  resize: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  padding: 10px;
  min-height: 90px;
  font-size: 14px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 1, less/components/tile-list.less */
.tile-list {
  position: relative;
  overflow: hidden;
}
/* line 4, less/components/tile-list.less */
.tile-list .wackamole-list {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: none;
}
/* line 9, less/components/tile-list.less */
.tile-list .wackamole-list.animate {
  transition-property: transform, opacity;
  transition-duration: 500ms;
  transition-timing-function: ease-in-out;
}
/* line 13, less/components/tile-list.less */
.tile-list .bottom-controls {
  position: relative;
  font-size: 13px;
  width: 100%;
  text-align: center;
  margin: 15px 0 0px;
}
/* line 19, less/components/tile-list.less */
.tile-list .bottom-controls .control {
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  border-bottom: 1px solid #999;
  font-weight: 600;
  font-size: 10px;
}
/* line 30, less/components/tile-list.less */
.tile-list .overlay-controls {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center;
}
/* line 41, less/components/tile-list.less */
.tile-list .overlay-controls .arrow-button {
  width: 50px;
  height: 50px;
  opacity: 0.5;
  pointer-events: auto;
}
/* line 46, less/components/tile-list.less */
.tile-list .overlay-controls .arrow-button:hover {
  opacity: 0.9;
}
/* line 50, less/components/tile-list.less */
.tile-list .overlay-controls .hidden {
  opacity: 0;
}
/* line 52, less/components/tile-list.less */
.tile-list .overlay-controls .hidden:hover {
  opacity: 0;
}
/* line 56, less/components/tile-list.less */
.tile-list .overlay-controls .left {
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
/* line 59, less/components/tile-list.less */
.tile-list .overlay-controls .right {
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* line 1, less/components/title-external-button.less */
.title-external-button {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
/* line 1, less/components/title-text.less */
.title-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 6, less/components/title-text.less */
.title-text .top-attribution {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 10, less/components/title-text.less */
.title-text .inline-topics {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 12, less/components/title-text.less */
.title-text .inline-topics .topic-tags {
  padding: 0;
  margin-bottom: 5px;
  margin-top: -5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 19, less/components/title-text.less */
.title-text .inline-topics .topic-tag.compact {
  margin: 0;
  color: #333;
  border-bottom: 1px solid #555;
}
/* line 24, less/components/title-text.less */
.light .title-text .inline-topics .topic-tag.compact {
  color: #fff;
  border-bottom: 1px solid #fff;
}
/* line 29, less/components/title-text.less */
.title-text .inline-topics .topic-tag.compact:hover {
  color: #09c;
  border-bottom: 1px solid #09c;
}
/* line 33, less/components/title-text.less */
.light .title-text .inline-topics .topic-tag.compact:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
/* line 43, less/components/title-text.less */
.title-text.inset-right .duplo-title,
.title-text.inset-right .excerpt {
  padding-right: 46px;
}
/* line 46, less/components/title-text.less */
.title-text.inset-right .duplo-title .curator-actions {
  top: 0;
  right: 0;
}
/* line 52, less/components/title-text.less */
.title-text .duplo-title {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-bottom: 6px;
}
/* line 58, less/components/title-text.less */
.title-text.normal .duplo-title {
  color: #333;
}
/* line 61, less/components/title-text.less */
.light .title-text.normal .duplo-title {
  color: #fff;
}
/* line 67, less/components/title-text.less */
.title-text .byline-attribution {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-bottom: 6px;
}
/* line 72, less/components/title-text.less */
.title-text .excerpt {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 77, less/components/title-text.less */
.title-text.wide .title,
.title-text.wide .excerpt {
  margin-right: 200px;
}
/* line 83, less/components/title-text.less */
.title-text.gallery {
  background-color: #333;
  color: white;
  padding: 20px;
}
/* line 89, less/components/title-text.less */
.title-text.gallery .gallery-title-container {
  text-align: center;
  padding: 40px;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 98, less/components/title-text.less */
.title-text.gallery .gallery-title-container .headline {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
}
/* line 105, less/components/title-text.less */
.title-text.gallery .gallery-title-container.small-title .headline {
  font-size: 20px;
  line-height: 28px;
}
/* line 111, less/components/title-text.less */
.title-text.gallery .bottom-container {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  z-index: 1;
}
/* line 117, less/components/title-text.less */
.title-text .bottom-container {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  min-height: 30px;
}
/* line 125, less/components/title-text.less */
.title-text .bottom-container .action-bar {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 1, less/components/title.less */
.duplo-title {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 7, less/components/title.less */
.duplo-title .headline {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 9, less/components/title.less */
.duplo-title .headline .title-external-button {
  visibility: hidden;
}
/* line 12, less/components/title.less */
.duplo-title .headline:hover .title-external-button {
  visibility: inherit;
}
/* line 17, less/components/title.less */
.duplo-title .byline-attribution {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
/* line 21, less/components/title.less */
.duplo-title .attribution {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}
/* line 26, less/components/title.less */
.headline {
  font-family: "FaktSmCondensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
}
/* line 33, less/components/title.less */
.headline.large {
  font-size: 28px;
  line-height: 32px;
}
/* line 1, less/components/toast-view.less */
.toast-view {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 31;
}
/* line 8, less/components/toast-view.less */
.toast-view .toast-message {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px 0 60px;
  height: 80px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  background-color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 22, less/components/toast-view.less */
.toast-view .toast-message.error {
  background-color: #f03737;
}
/* line 25, less/components/toast-view.less */
.toast-view .toast-message .linked-text {
  display: inline-block;
  max-width: 80%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -webkit-line-clamp: 2;
  line-height: 20px;
  max-height: 40px;
}
/* line 31, less/components/toast-view.less */
.toast-view .toast-message .linked-text span {
  white-space: pre;
}
/* line 35, less/components/toast-view.less */
.toast-view .toast-message .linked-text > a {
  position: relative;
  font-weight: 600;
}
/* line 40, less/components/toast-view.less */
.toast-view .toast-message .button {
  margin-left: 10px;
}
/* line 43, less/components/toast-view.less */
.toast-view .toast-message .close-button {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 28px;
  left: 20px;
}
/* line 50, less/components/toast-view.less */
.toast-view .toast-message.contributor {
  background-color: #F52828;
  height: auto;
  padding: 32px;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 55, less/components/toast-view.less */
.toast-view .toast-message.contributor > span {
  white-space: pre;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
/* line 61, less/components/toast-view.less */
.toast-view .toast-message.contributor .button {
  margin-top: 20px;
  color: #F52828;
  border: 1px solid #FFF;
  transition: 50ms ease-out all;
}
/* line 66, less/components/toast-view.less */
.toast-view .toast-message.contributor .button:hover {
  background-color: #F52828;
  color: #fff;
}
/* line 74, less/components/toast-view.less */
.toast-view .toast-message--transparent {
  background-color: rgba(0, 0, 0, 0.7);
}
/* line 79, less/components/toast-view.less */
.toast-enter {
  -ms-transform: translate3d(0, 80px, 0);
  transform: translate3d(0, 80px, 0);
}
/* line 82, less/components/toast-view.less */
.toast-big-enter {
  -ms-transform: translate3d(0, 240px, 0);
  transform: translate3d(0, 240px, 0);
}
/* line 88, less/components/toast-view.less */
.toast-enter.toast-enter-active,
.toast-big-enter.toast-big-enter-active {
  transition-property: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 93, less/components/toast-view.less */
.toast-leave,
.toast-big-leave {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 97, less/components/toast-view.less */
.toast-leave.toast-leave-active {
  transition-property: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  -ms-transform: translate3d(0, 80px, 0);
  transform: translate3d(0, 80px, 0);
}
/* line 101, less/components/toast-view.less */
.toast-big-leave.toast-big-leave-active {
  transition-property: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  -ms-transform: translate3d(0, 240px, 0);
  transform: translate3d(0, 240px, 0);
}
@media (max-width: 767px) {
  /* line 108, less/components/toast-view.less */
  .toast-view .toast-message.contributor {
    padding: 15px;
  }
  /* line 111, less/components/toast-view.less */
  .toast-view .toast-message.contributor span {
    white-space: normal;
  }
}
/* line 1, less/components/toc-franchise.less */
.toc-franchise {
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #fff;
}
/* line 7, less/components/toc-franchise.less */
.toc-franchise .page-content {
  padding: 30px 0;
}
/* line 11, less/components/toc-franchise.less */
.toc-franchise .toc-header {
  margin-bottom: 30px;
}
/* line 15, less/components/toc-franchise.less */
.toc-franchise .heading {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
/* line 19, less/components/toc-franchise.less */
.toc-franchise .subheading {
  padding-top: 1px;
  padding-bottom: 12px;
  font-size: 14px;
}
/* line 23, less/components/toc-franchise.less */
.toc-franchise .toc-tile {
  text-align: left;
}
/* line 27, less/components/toc-franchise.less */
.toc-franchise .toc-tiles {
  margin-bottom: 25px;
}
/* line 32, less/components/toc-franchise.less */
.toc-show-more {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  margin: 0 auto;
  height: 30px;
  padding: 0 20px;
  line-height: 30px;
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
  cursor: pointer;
}
/* line 44, less/components/toc-franchise.less */
.toc-show-more:hover {
  background-color: #000;
  color: #fff;
}
/* line 50, less/components/toc-franchise.less */
.toc-follow-more {
  position: relative;
  display: block;
  margin: 0 auto;
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  font-weight: 500;
  text-decoration: underline;
}
/* line 1, less/components/toc-tile.less */
.toc-tile {
  position: relative;
  display: inline-block;
  color: #fff;
  opacity: 1;
  vertical-align: top;
  background-color: #ccc;
}
/* line 9, less/components/toc-tile.less */
.toc-tile .cover-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
/* line 18, less/components/toc-tile.less */
.toc-tile .cover-image .cropped-image {
  width: 100%;
  height: 100%;
}
/* line 22, less/components/toc-tile.less */
.toc-tile .cover-image:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
/* line 33, less/components/toc-tile.less */
.toc-tile .author {
  position: relative;
  padding: 0 10px;
  font-size: 13px;
  color: white;
}
/* line 1, less/components/toc.less */
.toc {
  position: relative;
  padding-top: 110px;
}
/* line 5, less/components/toc.less */
.toc .header {
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
/* line 10, less/components/toc.less */
.toc .header h1 {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* line 15, less/components/toc.less */
.toc .header .tag-line {
  font-family: "Tiempos", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  max-width: 400px;
  margin: 0 auto;
  font-style: italic;
  line-height: 22px;
}
/* line 25, less/components/toc.less */
.toc .header .view-as {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
}
/* line 29, less/components/toc.less */
.toc .header .view-as * {
  vertical-align: middle;
}
/* line 33, less/components/toc.less */
.toc .header .view-as div[role=button] {
  display: inline-block;
  margin: 0 3px;
  opacity: 0.3;
}
/* line 38, less/components/toc.less */
.toc .header .view-as div[role=button].selected {
  opacity: 1;
  pointer-events: none;
}
/* line 46, less/components/toc.less */
.toc .toc-tabs {
  text-align: center;
  padding-bottom: 12px;
  margin-bottom: 18px;
}
/* line 51, less/components/toc.less */
.toc .toc-tabs li {
  display: inline-block;
  color: #b3b3b3;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
/* line 57, less/components/toc.less */
.toc .toc-tabs li:not(:last-child) {
  margin-right: 57px;
}
/* line 60, less/components/toc.less */
.toc .toc-tabs li.tabable {
  cursor: pointer;
}
/* line 63, less/components/toc.less */
.toc .toc-tabs li.selected {
  color: #000;
}
/* line 69, less/components/toc.less */
.toc .toc-content {
  position: relative;
  padding-bottom: 50px;
}
/* line 72, less/components/toc.less */
.toc .toc-content .empty-list {
  text-align: center;
  font-size: 25px;
  color: #999;
  font-weight: 200;
  max-width: 800px;
  margin: 60px auto 0;
}
/* line 84, less/components/toc.less */
.toc.list .toc-category-title {
  position: relative;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
/* line 94, less/components/toc.less */
.toc.list .toc-category-title > h2 {
  font-size: 13px;
  font-weight: inherit;
  width: 100%;
}
/* line 102, less/components/toc.less */
.toc.list .category:not(:last-child) {
  margin-bottom: 90px;
}
/* line 107, less/components/toc.less */
.toc.list .category-topics {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}
/* line 112, less/components/toc.less */
.toc.list .category-topics .topic-tag {
  margin: 0 14px 14px 0;
}
/* line 116, less/components/toc.less */
.toc.list .category-topics .control {
  line-height: 30px;
  height: 30px;
  font-size: 14px;
  margin: 10px 0 10px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}
/* line 128, less/components/toc.less */
.toc .toc-footer {
  position: relative;
  text-align: center;
  width: 100%;
}
/* line 132, less/components/toc.less */
.toc .toc-footer .toc-footer-item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-top: 30px;
}
/* line 138, less/components/toc.less */
.toc .toc-footer .toc-footer-item:not(:last-child) {
  margin-right: 20px;
}
/* line 1, less/components/toggle.less */
.toggle {
  cursor: pointer;
  position: relative;
  border-radius: 15px;
  display: inline-block;
  background-color: #f0f0f0;
  height: 25px;
  width: 50px;
}
/* line 9, less/components/toggle.less */
.toggle:after {
  transition-property: left, border-color, background-color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
  position: absolute;
  left: 5px;
  top: 4px;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #999999;
}
/* line 23, less/components/toggle.less */
.toggle.enabled:after {
  left: 28px;
  background-color: #019700;
}
/* line 28, less/components/toggle.less */
.toggle.disabled {
  cursor: inherit;
}
/* line 30, less/components/toggle.less */
.toggle.disabled:after {
  opacity: 0.35;
}
/* line 1, less/components/tools.less */
.tools-view {
  max-width: 600px;
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
}
/* line 7, less/components/tools.less */
.tools-view a {
  text-decoration: none;
}
/* line 11, less/components/tools.less */
.tools-view h1 {
  margin: 0;
}
/* line 15, less/components/tools.less */
.tools-view div {
  margin-top: 16px;
}
/* line 19, less/components/tools.less */
.tools-view li {
  margin-top: 36px;
}
/* line 23, less/components/tools.less */
.tools-view .tool-link {
  text-decoration: underline;
}
/* line 27, less/components/tools.less */
.tools-view .tool-title {
  font-weight: 700;
  margin-bottom: 12px;
}
/* line 32, less/components/tools.less */
.tools-view .chrome-button {
  padding: 16px;
  width: 360px;
}
/* line 1, less/components/tooltip.less */
.tooltip {
  position: relative;
  display: inline-block;
}
/* line 5, less/components/tooltip.less */
.tooltip [data-tooltip] {
  display: inline;
  position: relative;
}
/* line 9, less/components/tooltip.less */
.tooltip.tooltip-left,
.tooltip.tooltip-right {
  display: block;
}
/* line 13, less/components/tooltip.less */
.tooltip.tooltip-verified {
  top: 2px;
}
/* line 17, less/components/tooltip.less */
.tooltip:hover div[data-tooltip] {
  position: absolute;
  height: 0;
  width: 250px;
}
/* line 23, less/components/tooltip.less */
.tooltip:hover div[data-tooltip]:after {
  display: inline-block;
  background-color: #222;
  color: white;
  font-size: 12px;
  font-weight: 600;
  content: attr(data-tooltip);
  position: absolute;
  max-width: 250px;
  right: 83%;
  padding: 5px;
  border-radius: 5px;
  z-index: 98;
}
/* line 42, less/components/tooltip.less */
.tooltip:hover.tooltip-left div[data-tooltip],
.tooltip:hover.tooltip-right div[data-tooltip],
.tooltip:hover.tooltip-left div[data-tooltip]:after,
.tooltip:hover.tooltip-right div[data-tooltip]:after {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
/* line 51, less/components/tooltip.less */
.tooltip:hover div[data-tooltip]:after {
  bottom: 10px;
}
/* line 56, less/components/tooltip.less */
.tooltip:hover.tooltip-left div[data-tooltip] {
  left: 0;
  margin-left: -250px;
}
/* line 59, less/components/tooltip.less */
.tooltip:hover.tooltip-left div[data-tooltip]:after {
  right: 10px;
  bottom: inherit;
}
/* line 65, less/components/tooltip.less */
.tooltip:hover.tooltip-right div[data-tooltip] {
  right: 0;
  margin-right: -250px;
}
/* line 68, less/components/tooltip.less */
.tooltip:hover.tooltip-right div[data-tooltip]:after {
  right: 10px;
  bottom: inherit;
}
/* line 75, less/components/tooltip.less */
.tooltip:hover.tooltip-bottom div[data-tooltip] {
  bottom: 0;
}
/* line 77, less/components/tooltip.less */
.tooltip:hover.tooltip-bottom div[data-tooltip]:after {
  top: 10px;
  bottom: initial;
}
/* line 86, less/components/tooltip.less */
.tooltip:hover.tooltip-verified div[data-tooltip]:after {
  top: 2px;
  width: 100px;
  left: 40px;
  bottom: inherit;
}
/* line 1, less/components/top-attribution.less */
.top-attribution-container {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 3, less/components/top-attribution.less */
.top-attribution-container .top-attribution {
  color: #333;
}
/* line 7, less/components/top-attribution.less */
.top-attribution-container .top-attribution.grey.from-only,
.top-attribution-container .from {
  color: #333;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 15, less/components/top-attribution.less */
.top-attribution-container .timestamp {
  position: relative;
  bottom: -1px;
}
/* line 21, less/components/top-attribution.less */
.top-attribution {
  font-size: 12px;
  line-height: 19px;
}
/* line 24, less/components/top-attribution.less */
.top-attribution .avatar {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 8px;
  margin-top: 5px;
  margin-bottom: 5px;
}
/* line 32, less/components/top-attribution.less */
.top-attribution .timestamp {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  color: #999;
  margin-left: 5px;
  font-size: 10px;
}
/* line 39, less/components/top-attribution.less */
.top-attribution .solo-timestamp .timestamp {
  margin-left: 0;
}
/* line 43, less/components/top-attribution.less */
.top-attribution .profile-link {
  color: #09c;
}
/* line 47, less/components/top-attribution.less */
.top-attribution .section-link {
  color: #09c;
}
/* line 51, less/components/top-attribution.less */
.top-attribution .retweeted {
  color: #000;
  font-weight: 400;
}
/* line 56, less/components/top-attribution.less */
.top-attribution .flip-author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 61, less/components/top-attribution.less */
.top-attribution .flip-author .linked-text {
  display: inline;
}
/* line 66, less/components/top-attribution.less */
.top-attribution .social-author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 71, less/components/top-attribution.less */
.top-attribution .social-author .linked-text {
  display: inline;
}
/* line 77, less/components/top-attribution.less */
.top-attribution .social-commentary .linked-text {
  max-height: 38px;
  overflow: hidden;
}
/* line 83, less/components/top-attribution.less */
.top-attribution.from-only {
  padding-bottom: 2px;
}
/* line 88, less/components/top-attribution.less */
.top-attribution.grey {
  color: #333;
}
/* line 95, less/components/top-attribution.less */
.top-attribution.grey .social-commentary {
  padding: 10px 15px;
  margin-top: 5px;
  background-color: #f0f0f0;
  position: relative;
}
/* line 102, less/components/top-attribution.less */
.top-attribution.grey .social-commentary .reply {
  position: absolute;
  cursor: pointer;
  bottom: 0;
  right: 0;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 30px;
  background-image: linear-gradient(to right, rgba(240, 240, 240, 0), #f0f0f0 30%);
  height: 29px;
  line-height: 19px;
  color: #999;
}
/* line 115, less/components/top-attribution.less */
.top-attribution.grey .social-commentary:after {
  top: -12px;
  left: 8px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #f0f0f0;
  border-width: 6px;
}
/* line 130, less/components/top-attribution.less */
.top-attribution .avatar-attribution {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
}
/* line 136, less/components/top-attribution.less */
.top-attribution .avatar-attribution > a:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 140, less/components/top-attribution.less */
.top-attribution .avatar-attribution .main {
  overflow: hidden;
}
/* line 144, less/components/top-attribution.less */
.top-attribution .avatar-attribution .author {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 4px;
  -ms-flex-negative: 0.3;
      flex-shrink: 0.3;
}
/* line 151, less/components/top-attribution.less */
.top-attribution .avatar-attribution .first-row .magazine {
  color: #09c;
  margin-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  -ms-flex-negative: 0.7;
      flex-shrink: 0.7;
}
/* line 159, less/components/top-attribution.less */
.light .top-attribution .avatar-attribution {
  color: #fff;
}
/* line 162, less/components/top-attribution.less */
.light .top-attribution .avatar-attribution .magazine {
  color: #fff;
  text-decoration: underline;
}
/* line 170, less/components/top-attribution.less */
.top-attribution .avatar-attribution .first-row .author,
.top-attribution .avatar-attribution .second-row .author,
.top-attribution .avatar-attribution .first-row .magazine,
.top-attribution .avatar-attribution .second-row .magazine {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 177, less/components/top-attribution.less */
.top-attribution .avatar-attribution a.magazine {
  color: #09c;
}
/* line 181, less/components/top-attribution.less */
.top-attribution .avatar-attribution .second-row {
  color: #333;
}
/* line 184, less/components/top-attribution.less */
.light .top-attribution .avatar-attribution .second-row {
  color: #fff;
}
/* line 187, less/components/top-attribution.less */
.light .top-attribution .avatar-attribution .second-row a {
  text-decoration: underline;
}
/* line 190, less/components/top-attribution.less */
.light .top-attribution .avatar-attribution .second-row a.author {
  text-decoration: none;
}
/* line 198, less/components/top-attribution.less */
.top-attribution .avatar-attribution .from,
.top-attribution.from-only .from {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 205, less/components/top-attribution.less */
.top-attribution .from.like {
  position: relative;
  text-transform: none;
  font-size: 12px;
  letter-spacing: 0;
  -ms-flex-align: center;
      align-items: center;
}
/* line 212, less/components/top-attribution.less */
.top-attribution .from.like .heart-button {
  margin-top: -2px;
  margin-left: -5px;
  cursor: default;
  stroke: none;
}
/* line 217, less/components/top-attribution.less */
.top-attribution .from.like .heart-button .fill-shape {
  fill: #404040;
}
/* line 224, less/components/top-attribution.less */
.light .top-attribution .from.like .heart-button .fill-shape {
  fill: #fff;
}
/* line 232, less/components/top-attribution.less */
.top-attribution .social .author {
  margin-right: 0;
}
/* line 236, less/components/top-attribution.less */
.top-attribution .social .retweet {
  color: #999;
}
/* line 240, less/components/top-attribution.less */
.top-attribution .social .timestamp {
  bottom: 0;
}
/* line 244, less/components/top-attribution.less */
.top-attribution .social svg {
  margin-bottom: -2px;
  margin-left: 4px;
}
/* line 250, less/components/top-attribution.less */
.top-attribution .social-icon {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  bottom: -2px;
}
/* line 258, less/components/top-attribution.less */
.top-attribution.light,
.top-attribution.light .social-commentary,
.top-attribution.light .profile-link,
.top-attribution.light .section-link,
.top-attribution.light .retweeted,
.top-attribution.light .timestamp,
.top-attribution.light .external-social-actions li {
  color: white;
}
/* line 267, less/components/top-attribution.less */
.top-attribution.light .fivehundred-icon {
  fill: white;
}
/* line 1, less/components/topic-franchise-item.less */
.item-card {
  position: relative;
  overflow: hidden;
  background-color: #ccc;
  transition-property: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  transition-delay: 0;
}
/* line 7, less/components/topic-franchise-item.less */
.item-card .item-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition-property: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  transition-delay: 0;
}
/* line 16, less/components/topic-franchise-item.less */
.item-card .item-background .background-gradient {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4374) 10%, rgba(0, 0, 0, 0.3072) 20%, rgba(0, 0, 0, 0.2058) 30%, rgba(0, 0, 0, 0.1296) 40%, rgba(0, 0, 0, 0.075) 50%, rgba(0, 0, 0, 0.0384) 60%, rgba(0, 0, 0, 0.0162) 70%, rgba(0, 0, 0, 0.0048) 80%, rgba(0, 0, 0, 0.0006) 90%, rgba(0, 0, 0, 0) 100%);
}
/* line 25, less/components/topic-franchise-item.less */
.item-card .item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: 250ms ease-out opacity;
}
/* line 34, less/components/topic-franchise-item.less */
.item-card .item-text .item-title {
  position: relative;
  font-size: 20px;
  line-height: 28px;
  max-height: 56px;
  overflow: hidden;
  font-weight: 500;
  font-family: "FaktSmCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  margin: 0 0 10px -1px;
}
/* line 45, less/components/topic-franchise-item.less */
.item-card .layout-actions {
  position: absolute;
  bottom: 15px;
  right: 10px;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 1, less/components/topic-franchise.less */
.topic-franchise {
  position: relative;
  width: 100%;
  background-color: #fff;
}
/* line 6, less/components/topic-franchise.less */
.topic-franchise .topic-franchise-header {
  position: relative;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  width: 100%;
  font-weight: 600;
  padding: 30px 0 30px;
}
/* line 17, less/components/topic-franchise.less */
.topic-franchise .topic-franchise-header .linked-text > a {
  border-bottom: 1px solid #000;
}
/* line 22, less/components/topic-franchise.less */
.topic-franchise .feature-line {
  font-size: 10px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}
/* line 27, less/components/topic-franchise.less */
.topic-franchise .feature-line .feature-text {
  color: inherit;
}
/* line 31, less/components/topic-franchise.less */
.topic-franchise .item-cards {
  position: relative;
  margin: 0;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 38, less/components/topic-franchise.less */
.topic-franchise .item-cards > * {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 39, less/components/topic-franchise.less */
.topic-franchise .item-cards .highlight-card {
  position: relative;
  overflow: hidden;
  background-color: #000;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 48, less/components/topic-franchise.less */
.topic-franchise .item-cards .highlight-card .more-text {
  position: relative;
  max-width: 80%;
  text-align: center;
}
/* line 52, less/components/topic-franchise.less */
.topic-franchise .item-cards .highlight-card .more-text .highlight-title {
  position: relative;
  text-transform: uppercase;
  white-space: pre-wrap;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  max-height: 92px;
  letter-spacing: 1px;
  max-width: 80%;
}
/* line 63, less/components/topic-franchise.less */
.topic-franchise .item-cards .highlight-card .more-text .highlight-title.underline {
  border-bottom: 1px solid #FFF;
}
/* line 71, less/components/topic-franchise.less */
.topic-franchise .curator-actions {
  right: 8px;
  top: 8px;
}
/* line 1, less/components/topic-picker.less */
.topic-picker {
  position: relative;
  margin: 0 auto;
  padding-bottom: 60px;
  padding: 80px 0 60px;
}
/* line 6, less/components/topic-picker.less */
.topic-picker .topic-picker-search-border {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}
/* line 14, less/components/topic-picker.less */
.topic-picker .topic-picker-search {
  z-index: 11;
  background-color: #fff;
  padding: 15px 3px 15px 0;
}
/* line 19, less/components/topic-picker.less */
.topic-picker .topic-picker-header {
  position: relative;
  font-size: 24px;
  text-align: center;
  z-index: 11;
}
/* line 25, less/components/topic-picker.less */
.topic-picker .topic-row {
  position: relative;
  margin: 0 auto;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 32, less/components/topic-picker.less */
.topic-picker .topic-row .topic-row-title {
  position: relative;
  max-width: 80%;
  overflow: hidden;
  font-size: 20px;
  line-height: 30px;
  margin: 30px auto 20px;
}
/* line 40, less/components/topic-picker.less */
.topic-picker .topic-row .topic-row-topics {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 44, less/components/topic-picker.less */
.topic-picker .topic-row .topic-row-topics > * {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 49, less/components/topic-picker.less */
.topic-picker .topic-row .topic-row-topics .topic-tile.small .tile .topic-tag {
  font-size: 12px;
}
/* line 54, less/components/topic-picker.less */
.topic-picker > .loading {
  position: relative;
  margin: 25px auto;
}
/* line 58, less/components/topic-picker.less */
.topic-picker .topic-picker-progress-bar {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #09c;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  transition-property: transform, transform;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
}
/* line 68, less/components/topic-picker.less */
.topic-picker .topic-picker-progress-bar > * {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 74, less/components/topic-picker.less */
.topic-picker .topic-picker-progress-bar .topic-picker-done-button {
  font-size: 16px;
  background-color: #fff;
  color: #000;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  border: none;
  margin-left: 20px;
}
/* line 83, less/components/topic-picker.less */
.topic-picker .topic-picker-progress-bar .topic-picker-done-button:hover {
  background-color: #000;
  color: #fff;
}
/* line 88, less/components/topic-picker.less */
.topic-picker .topic-picker-progress-bar > .loading {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
  color: #fff;
}
/* line 1, less/components/topic-search.less */
.topic-search {
  position: relative;
  width: 100%;
  font-size: 20px;
  line-height: 20px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}
/* line 8, less/components/topic-search.less */
.topic-search.searching {
  opacity: 0.3;
  pointer-events: none;
}
/* line 12, less/components/topic-search.less */
.topic-search .search-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  position: relative;
  background-color: transparent;
  width: 100%;
}
/* line 21, less/components/topic-search.less */
.topic-search .search-area .inputs {
  position: relative;
  display: inline-block;
  -ms-flex: 1 1 50px;
      flex: 1 1 50px;
}
/* line 25, less/components/topic-search.less */
.topic-search .search-area .inputs .text-field {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 30, less/components/topic-search.less */
.topic-search .search-area .inputs .text-field::-ms-clear {
  display: none;
}
/* line 33, less/components/topic-search.less */
.topic-search .search-area .inputs .text-field.hidden {
  color: #fff;
}
/* line 36, less/components/topic-search.less */
.topic-search .search-area .inputs .text-field:focus {
  outline: none;
}
/* line 40, less/components/topic-search.less */
.topic-search .search-area .inputs .text-field {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 800px) {
  /* line 43, less/components/topic-search.less */
  .topic-search .search-area .inputs .text-field {
    font-size: 16px;
  }
}
/* line 47, less/components/topic-search.less */
.topic-search .search-area .inputs .error-message {
  position: absolute;
  display: inline-block;
  line-height: 15px;
  font-size: 11px;
  color: #f03737;
  bottom: 0;
  height: 15px;
  text-align: left;
  font-weight: 500;
  margin: 0 0 -11px 2px;
}
/* line 60, less/components/topic-search.less */
.topic-search .search-area .search-button {
  margin: 0 12px 0 -3px;
  display: inline-block;
  position: relative;
  height: 30px;
  width: 30px;
  cursor: initial;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
/* line 1, less/components/topic-tag.less */
a.topic-tag,
.topic-tag {
  color: #000;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  display: inline-block;
  cursor: pointer;
  padding: 0 20px;
  height: 30px;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 18, less/components/topic-tag.less */
a.topic-tag .topic-title,
.topic-tag .topic-title {
  position: relative;
}
/* line 22, less/components/topic-tag.less */
a.topic-tag:hover,
.topic-tag:hover,
.selected a.topic-tag,
.selected .topic-tag {
  background-color: #000;
  color: #fff;
}
/* line 28, less/components/topic-tag.less */
.light a.topic-tag,
.light .topic-tag {
  color: #fff;
  border: 1px solid #fff;
}
/* line 31, less/components/topic-tag.less */
.light a.topic-tag:hover,
.light .topic-tag:hover {
  background-color: #fff;
  color: #000;
}
/* line 37, less/components/topic-tag.less */
.grey a.topic-tag,
.grey .topic-tag {
  color: #999;
  border: 1px solid #999;
}
/* line 40, less/components/topic-tag.less */
.grey a.topic-tag:hover,
.grey .topic-tag:hover {
  background-color: #000;
  color: #fff;
}
/* line 46, less/components/topic-tag.less */
a.topic-tag.compact,
.topic-tag.compact {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  margin: 0 10px 0 10px;
  font-size: 10px;
  line-height: 21px;
  height: 21px;
  color: #999;
}
/* line 57, less/components/topic-tag.less */
a.topic-tag.compact:hover,
.topic-tag.compact:hover {
  background-color: transparent;
}
/* line 61, less/components/topic-tag.less */
.grey a.topic-tag.compact:hover,
.grey .topic-tag.compact:hover {
  color: #09c;
  border-bottom-color: #09c;
}
/* line 66, less/components/topic-tag.less */
.light a.topic-tag.compact,
.light .topic-tag.compact {
  border-bottom-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
/* line 71, less/components/topic-tag.less */
.light a.topic-tag.compact:hover,
.light .topic-tag.compact:hover {
  border-bottom-color: white;
  color: white;
}
/* line 1, less/components/topic-tags.less */
.topic-tags {
  padding-bottom: 10px;
  color: #000;
}
/* line 5, less/components/topic-tags.less */
.topic-tags .topic-tag {
  margin: 0 14px 10px 0;
}
/* line 1, less/components/topic-tile.less */
.topic-tile {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
/* line 5, less/components/topic-tile.less */
.topic-tile.animate {
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition-property: width, opacity;
  transition-duration: 500ms;
  transition-timing-function: ease-in-out, linear;
}
/* line 11, less/components/topic-tile.less */
.topic-tile.flyin {
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transition-property: transform, opacity;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* line 15, less/components/topic-tile.less */
.topic-tile .tile {
  position: absolute;
  display: block;
  color: #fff;
  cursor: pointer;
  left: 0;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 26, less/components/topic-tile.less */
.topic-tile .tile .cover-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #ccc;
}
/* line 35, less/components/topic-tile.less */
.topic-tile .tile .follow-button-wrapper {
  position: absolute;
  left: 0;
  bottom: 15px;
  text-align: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
/* line 43, less/components/topic-tile.less */
.topic-tile .tile .follow-button-wrapper.showing {
  opacity: 1;
  pointer-events: auto;
}
/* line 48, less/components/topic-tile.less */
.topic-tile .tile .topic-tag {
  position: relative;
  border: 2px solid #fff;
  line-height: 49px;
  height: 50px;
  padding: 0 30px;
  font-weight: 600;
  max-width: 90%;
  transition-duration: 250ms;
}
/* line 58, less/components/topic-tile.less */
.topic-tile .tile .followed-text {
  position: absolute;
  bottom: 5px;
  width: 50px;
  height: 50px;
  left: 50%;
  margin-left: -25px;
  transition-duration: 250ms;
}
/* line 68, less/components/topic-tile.less */
.topic-tile.vertical-padding {
  border-right: 4px solid #fff;
}
/* line 71, less/components/topic-tile.less */
.topic-tile.horizontal-padding {
  border-bottom: 4px solid #fff;
}
/* line 76, less/components/topic-tile.less */
.topic-tile.small .tile .topic-tag {
  font-size: 11px;
  padding: 0 12px;
  line-height: 30px;
  height: 34px;
}
/* line 82, less/components/topic-tile.less */
.topic-tile.small .tile .followed-text {
  bottom: 0;
  width: 40px;
  height: 40px;
  left: 50%;
  margin-left: -20px;
}
/* line 94, less/components/topic-tile.less */
.topic-tile.xsmall .tile .topic-tag {
  font-size: 9px;
  line-height: 26px;
  height: 26px;
  border: 1px solid #fff;
  padding: 0 10px;
  max-width: 85%;
}
/* line 1, less/components/user-tile.less */
.user-tile {
  position: relative;
  overflow: hidden;
}
/* line 4, less/components/user-tile.less */
.user-tile.animate {
  transition-timing-function: ease-in-out, linear;
  transition-property: width, opacity;
  transition-duration: 0.5s;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
/* line 11, less/components/user-tile.less */
.user-tile.verified .tile .info .tile-title {
  display: inline-block;
  background: transparent url(/images/verified-check.png) right center no-repeat;
  background-size: 14px 14px;
  padding: 0 18px 0 0;
}
/* line 18, less/components/user-tile.less */
.user-tile .tile {
  position: relative;
  display: inline-block;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 25, less/components/user-tile.less */
.user-tile .tile .info {
  position: relative;
  text-align: center;
}
/* line 28, less/components/user-tile.less */
.user-tile .tile .info .avatar,
.user-tile .tile .info .default-avatar {
  display: block;
  margin: 20px auto;
  height: 100px;
  width: 100px;
}
/* line 34, less/components/user-tile.less */
.user-tile .tile .info .tile-title {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  max-height: 20px;
  overflow: hidden;
  font-weight: 600;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 30px;
}
/* line 46, less/components/user-tile.less */
.user-tile .tile .info .description {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  color: #999;
  position: relative;
  font-size: 12px;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -webkit-line-clamp: 3;
  line-height: 20px;
  max-height: 60px;
  overflow: hidden;
  padding: 0 30px;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 60, less/components/user-tile.less */
.user-tile .tile .follow-button-wrapper {
  position: relative;
  margin: 10px auto;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  text-align: center;
}
/* line 67, less/components/user-tile.less */
.user-tile .tile .follow-button-wrapper.showing {
  opacity: 1;
  pointer-events: auto;
}
/* line 1, less/components/zite-importer.less */
.zite-importer {
  padding: 20px 20px 50px 20px;
  max-width: 640px;
  margin: auto;
}
/* line 6, less/components/zite-importer.less */
.zite-importer a {
  text-decoration: underline;
  cursor: pointer;
}
/* line 11, less/components/zite-importer.less */
.zite-importer > * {
  margin: 12px 0;
}
/* line 15, less/components/zite-importer.less */
.zite-importer .zite-logo {
  width: 93px;
  background: url(/images/zite-logo.png);
}
/* line 19, less/components/zite-importer.less */
.zite-importer .flipboard-logo {
  margin-left: 20px;
  width: 40px;
}
/* line 23, less/components/zite-importer.less */
.zite-importer .zite-logo,
.zite-importer .flipboard-logo {
  height: 40px;
  display: inline-block;
  margin-bottom: 20px;
}
/* line 28, less/components/zite-importer.less */
.zite-importer .logo-group {
  text-align: center;
}
/* line 31, less/components/zite-importer.less */
.zite-importer .explanation-text,
.zite-importer .explanation-heading,
.zite-importer a {
  font-size: 14px;
  line-height: 20px;
  color: #444;
}
/* line 36, less/components/zite-importer.less */
.zite-importer .explanation-heading {
  font-weight: 600;
}
/* line 40, less/components/zite-importer.less */
.zite-importer .form-section {
  background-color: #f1f1f1;
  padding: 10px 16px;
  width: 100%;
  min-height: 55px;
  display: table;
}
/* line 47, less/components/zite-importer.less */
.zite-importer .form-section .form-section-number {
  font-size: 36px;
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  position: absolute;
  margin-top: -6px;
}
/* line 54, less/components/zite-importer.less */
.zite-importer .form-section .form-section-body {
  padding-left: 46px;
  font-size: 13px;
  line-height: 18px;
  color: #444;
  display: table-cell;
  vertical-align: middle;
}
/* line 65, less/components/zite-importer.less */
.zite-importer.import-loading .form-section {
  opacity: 0.4;
}
/* line 68, less/components/zite-importer.less */
.zite-importer .submit-button {
  font-size: 16px;
  line-height: 22px;
  height: auto;
}
/* line 73, less/components/zite-importer.less */
.zite-importer .submit-button.login {
  font-size: 14px;
  padding: 4px 10px;
  margin: 10px 0;
  background-color: transparent;
}
/* line 78, less/components/zite-importer.less */
.zite-importer .submit-button.login.hover {
  background-color: black;
}
/* line 80, less/components/zite-importer.less */
.zite-importer .submit-button.import {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 40px;
}
/* line 88, less/components/zite-importer.less */
.zite-importer .error {
  font-size: 14px;
  line-height: 18px;
  color: #f03737;
  margin-top: 10px;
}
/* line 97, less/components/zite-importer.less */
.flipboard-login-form .fields {
  margin-top: 10px;
}
/* line 99, less/components/zite-importer.less */
.flipboard-login-form .fields .text-input {
  border: none;
  margin: 0;
  height: 40px;
  font-size: 14px;
}
/* line 104, less/components/zite-importer.less */
.flipboard-login-form .fields .text-input:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
/* line 109, less/components/zite-importer.less */
.flipboard-login-form .twitter-logo {
  position: absolute;
  width: 18px;
  height: 15px;
  left: 50%;
  margin-left: -9px;
  top: 50%;
  margin-top: -10px;
}
/* line 118, less/components/zite-importer.less */
.flipboard-login-form .social-buttons {
  margin: 0 0 -5px -5px;
}
/* line 121, less/components/zite-importer.less */
.flipboard-login-form .social-buttons .lead-in-text {
  margin-right: 4px;
}
/* line 124, less/components/zite-importer.less */
.flipboard-login-form .social-buttons .twitter-circle {
  background: #5EA9DD;
  width: 40px;
  height: 40px;
  margin: 5px 5px 10px 5px;
  border-radius: 20px;
}
/* line 131, less/components/zite-importer.less */
.flipboard-login-form .social-buttons .twitter-button {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 15px;
}
/* line 137, less/components/zite-importer.less */
.flipboard-login-form .social-buttons > * {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 141, less/components/zite-importer.less */
.flipboard-login-form .social-buttons > *[disabled] {
  opacity: 0.5;
  cursor: auto;
}
/* line 147, less/components/zite-importer.less */
.flipboard-login-form .social-buttons-explanation {
  border-top: solid 1px #ccc;
  padding-top: 10px;
  margin-top: 6px;
}
/* line 4, less/utilities/buttons.less */
button,
.button-base {
  outline: none;
  border: none;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  min-width: 72px;
}
/* line 19, less/utilities/buttons.less */
button:disabled,
.button-base:disabled {
  cursor: not-allowed;
}
/* line 27, less/utilities/buttons.less */
.button--fat {
  font-size: 1em;
  line-height: 2.5;
  padding: 0 2em;
}
/* line 33, less/utilities/buttons.less */
.button--thin {
  padding: 4px 8px;
}
/* line 37, less/utilities/buttons.less */
.button--disabled {
  cursor: not-allowed;
}
/* line 41, less/utilities/buttons.less */
.button--primary {
  color: #F7F7F7;
  background-color: #F52828;
  border: 1px solid #F52828;
}
/* line 46, less/utilities/buttons.less */
.button--primary:disabled {
  background-color: #fa8989;
  border-color: #fa8989;
}
/* line 52, less/utilities/buttons.less */
.button--primary-inverse {
  background-color: transparent;
  color: #F52828;
  border: 1px solid #F52828;
}
/* line 58, less/utilities/buttons.less */
.button--secondary,
.button--secondary-enabled {
  border-width: 1px;
  border-style: solid;
}
/* line 63, less/utilities/buttons.less */
.button--secondary {
  color: #979797;
  border-color: #979797;
}
/* line 67, less/utilities/buttons.less */
.button--secondary-enabled {
  color: #F52828;
  border-color: #F52828;
}
/* line 72, less/utilities/buttons.less */
.button--secondary-inverse {
  background-color: transparent;
  color: #666;
  border: 1px solid;
}
/* line 78, less/utilities/buttons.less */
.button--full-width {
  width: 100%;
}
@supports (object-fit: cover) {
  /* line 13, less/utilities/images.less */
  .image-frame img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
/* line 22, less/utilities/images.less */
.no-image {
  background-color: #F52828;
}
/* line 24, less/utilities/images.less */
.no-image--large {
  background-color: #350000;
}
/* line 30, less/utilities/images.less */
.post-image--fallback {
  background-color: #F7F7F7;
  height: 84px;
}
/* line 4, less/utilities/meatballs-menu-button.less */
.meatballs-menu-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 24px;
  width: 24px;
  padding: 3px;
  cursor: pointer;
  pointer-events: auto;
  vertical-align: top;
}
/* line 17, less/utilities/meatballs-menu-button.less */
.meatballs-menu-button:hover .meatballs-menu-button__meatball {
  background-color: #717171;
}
/* line 21, less/utilities/meatballs-menu-button.less */
.meatballs-menu-button:hover .meatballs-menu-button__meatball--light {
  background-color: #979797;
}
/* line 27, less/utilities/meatballs-menu-button.less */
.meatballs-menu-button__meatball {
  height: 3px;
  width: 3px;
  border-radius: 1.5px;
  background-color: #979797;
}
/* line 34, less/utilities/meatballs-menu-button.less */
.meatballs-menu-button__meatball--light {
  background-color: white;
}
/* line 38, less/utilities/meatballs-menu-button.less */
.meatballs-menu-button--open .meatballs-menu-button__meatball {
  background-color: #262626;
}
/* line 1, less/utilities/meatballs-menu.less */
.meatballs-menu {
  position: relative;
}
/* line 5, less/utilities/meatballs-menu.less */
.meatballs-menu__dropdown-menu {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #262626;
  border: 1px solid #DADADA;
  box-shadow: 0 2px 4px rgba(217, 217, 217, 0.5);
  text-align: left;
  position: absolute;
  padding: 8px 0;
  top: 0;
  right: 0;
  background: white;
  z-index: 10;
  pointer-events: auto;
}
/* line 21, less/utilities/meatballs-menu.less */
.meatballs-menu__dropdown-menu li {
  line-height: 22px;
  cursor: pointer;
  padding: 8px 32px 8px 8px;
  white-space: nowrap;
}
/* line 27, less/utilities/meatballs-menu.less */
.meatballs-menu__dropdown-menu li:hover {
  background-color: #F7F7F7;
}
/* line 31, less/utilities/meatballs-menu.less */
.meatballs-menu__dropdown-menu li a,
.meatballs-menu__dropdown-menu li a:hover {
  color: #262626;
  display: block;
  width: 100%;
  text-transform: capitalize;
}
/* line 40, less/utilities/meatballs-menu.less */
.meatballs-menu__loading-spinner-wrapper {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 9, less/feed-layout/index.less */
.feed-layout-scope {
  font-size: 16px;
}
/* line 3, less/feed-layout/utilities/tags.less */
.feed-layout-scope .topic-tags {
  padding-bottom: 0;
}
/* line 6, less/feed-layout/utilities/tags.less */
.feed-layout-scope .topic-tag {
  display: inline-block;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0;
  color: #F52828;
  border: none;
  margin: 0;
  height: auto;
  line-height: inherit;
  padding: 0;
}
/* line 20, less/feed-layout/utilities/tags.less */
.feed-layout-scope .topic-tag--white {
  color: #fff;
}
/* line 22, less/feed-layout/utilities/tags.less */
.feed-layout-scope .topic-tag--white:hover {
  color: #fff;
}
/* line 26, less/feed-layout/utilities/tags.less */
.feed-layout-scope .topic-tag:before {
  content: "#";
  display: inline-block;
}
/* line 30, less/feed-layout/utilities/tags.less */
.feed-layout-scope .topic-tag:hover {
  background-color: transparent;
  color: #ff1e1e;
}
/* line 8, less/feed-layout/utilities/typography.less */
.feed-layout-scope h1 {
  font-size: 40px;
  line-height: 1.2;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
/* line 16, less/feed-layout/utilities/typography.less */
.feed-layout-scope h2 {
  font-size: 16px;
  line-height: 1.2;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
/* line 24, less/feed-layout/utilities/typography.less */
.feed-layout-scope h3 {
  font-size: 20px;
  line-height: 1.2;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
}
/* line 31, less/feed-layout/utilities/typography.less */
.feed-layout-scope .emphasis {
  color: #F52828;
}
/* line 35, less/feed-layout/utilities/typography.less */
.feed-layout-scope a {
  color: #979797;
  transition: color 0.3s ease;
}
/* line 38, less/feed-layout/utilities/typography.less */
.feed-layout-scope a:hover {
  color: #717171;
}
/* line 5, less/feed-layout/components/post.less */
.feed-layout-scope .post__title {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
/* line 13, less/feed-layout/components/post.less */
.feed-layout-scope .source-attribution,
.newspaper-layout-scope .social-stat {
  display: block;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #979797;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 1, less/feed-layout/components/layout.less */
.feed-layout-scope .condensed-section {
  max-width: 1142px;
  margin: 0 auto;
}
@media (max-width: 1182px) {
  /* line 6, less/feed-layout/components/layout.less */
  .feed-layout-scope .condensed-section {
    margin: 0 20px;
  }
}
/* line 3, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 8, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__avatar {
  line-height: inherit;
}
/* line 11, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__avatar a {
  line-height: inherit;
}
/* line 15, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__avatar .main {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
}
/* line 22, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__author {
  display: inline;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #262626;
}
/* line 29, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__author a {
  color: #262626;
}
/* line 34, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__section {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  margin-left: 15px;
}
/* line 41, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__section a {
  color: #979797;
}
/* line 46, less/feed-layout/components/post-attribution.less */
.feed-layout-scope .post-attribution__post-time {
  display: inline;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #979797;
  margin-left: 15px;
}
/* line 1, less/feed-layout/components/featured-magazines.less */
.feed-layout-scope .featured-magazines-wrapper {
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
/* line 8, less/feed-layout/components/featured-magazines.less */
.feed-layout-scope .featured-magazines-heading {
  -ms-flex: 1;
      flex: 1;
  max-width: 120px;
}
/* line 13, less/feed-layout/components/featured-magazines.less */
.feed-layout-scope .featured-magazines {
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
/* line 18, less/feed-layout/components/featured-magazines.less */
.feed-layout-scope .featured-magazine {
  height: 150px;
  min-height: 150px;
  width: 150px;
  min-width: 150px;
  padding: 10px;
  margin-left: 20px;
  color: white;
  cursor: pointer;
}
/* line 29, less/feed-layout/components/featured-magazines.less */
.feed-layout-scope .featured-magazine__title {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
}
/* line 35, less/feed-layout/components/featured-magazines.less */
.feed-layout-scope .featured-magazine__attribution {
  font-size: 12px;
}
/* line 1, less/feed-layout/components/social-controls.less */
.feed-layout-scope .social-actions__list-item {
  display: -ms-flexbox;
  display: flex;
}
/* line 5, less/feed-layout/components/social-controls.less */
.feed-layout-scope .social-actions__list-item-label {
  margin-left: 10px;
}
/* line 1, less/feed-layout/components/cropped-image.less */
.feed-layout-scope .cropped-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 7, less/feed-layout/components/cropped-image.less */
.feed-layout-scope .cropped-image img {
  max-width: initial;
}
/* line 11, less/feed-layout/components/cropped-image.less */
.feed-layout-scope .cropped-image img.cropped-image--hidden {
  visibility: hidden;
}
/* line 1, less/feed-layout/components/gallery-preview.less */
.feed-layout-scope .gallery-preview {
  position: relative;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "primary secondary" "primary tertiary";
}
/* line 7, less/feed-layout/components/gallery-preview.less */
.feed-layout-scope .gallery-preview .gallery-preview__primary-image {
  grid-area: primary;
}
/* line 11, less/feed-layout/components/gallery-preview.less */
.feed-layout-scope .gallery-preview .gallery-preview__secondary-image {
  grid-area: secondary;
}
/* line 15, less/feed-layout/components/gallery-preview.less */
.feed-layout-scope .gallery-preview .gallery-preview__tertiary-image {
  grid-area: tertiary;
}
/* line 3, less/group-layout/components/comment.less */
.group-layout-scope .comment {
  border-top: none;
  padding: 15px 0px;
  line-height: 1.2;
  display: -ms-flexbox;
  display: flex;
}
/* line 9, less/group-layout/components/comment.less */
.group-layout-scope .comment .linked-text {
  display: inline;
  word-wrap: break-word;
}
/* line 15, less/group-layout/components/comment.less */
.group-layout-scope .comment__username {
  white-space: nowrap;
}
/* line 19, less/group-layout/components/comment.less */
.group-layout-scope .comment__avatar-wrapper {
  width: 48px;
}
/* line 22, less/group-layout/components/comment.less */
.group-layout-scope .comment__avatar-wrapper .avatar {
  width: 48px;
  height: 48px;
}
/* line 28, less/group-layout/components/comment.less */
.group-layout-scope .comment__avatar-wrapper .avatar-wrapper--badge .avatar {
  width: 40px;
  height: 40px;
}
/* line 35, less/group-layout/components/comment.less */
.group-layout-scope .comment__content-wrapper {
  -ms-flex-positive: 2;
      flex-grow: 2;
  padding: 0px 15px;
  overflow: hidden;
}
/* line 41, less/group-layout/components/comment.less */
.group-layout-scope .comment__content {
  line-height: 1.3;
  font-size: 16px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  vertical-align: top;
  overflow: hidden;
}
/* line 50, less/group-layout/components/comment.less */
.group-layout-scope .comment__controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 5px 0 0;
  color: #979797;
}
/* line 55, less/group-layout/components/comment.less */
.group-layout-scope .comment__controls li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 25px;
}
/* line 63, less/group-layout/components/comment.less */
.group-layout-scope .comment__text {
  color: #262626;
}
/* line 67, less/group-layout/components/comment.less */
.group-layout-scope .comment__height-toggler {
  cursor: pointer;
  font-size: 14px;
  color: #979797;
  margin-left: 10px;
}
/* line 74, less/group-layout/components/comment.less */
.group-layout-scope .comment__controls-item--actionable {
  cursor: pointer;
}
/* line 77, less/group-layout/components/comment.less */
.group-layout-scope .comment__controls-item--actionable svg {
  margin-right: 8px;
}
/* line 82, less/group-layout/components/comment.less */
.group-layout-scope .comment__nested-replies {
  padding-left: 50px;
}
/* line 4, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input__avatar-wrapper {
  width: 48px;
}
/* line 8, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input__wrapper {
  padding-left: 15px;
  -ms-flex: 1;
      flex: 1;
}
/* line 12, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input__wrapper .mention-form-wrapper {
  display: -ms-flexbox;
  display: flex;
  margin-top: 11px;
}
/* line 21, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input__wrapper .comment-field {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  color: #262626;
  overflow: hidden;
  resize: vertical;
  min-height: 30px;
}
/* line 35, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  border: none;
  outline: none;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  color: #262626;
  line-height: 1.3;
  padding: 15px 0;
  overflow: initial;
}
/* line 50, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .avatar {
  width: 48px;
  height: 48px;
}
/* line 56, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .avatar-wrapper--badge .avatar {
  width: 40px;
  height: 40px;
}
/* line 62, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments {
  background-color: white;
  max-height: 300px;
  width: 250px;
  overflow-y: scroll;
  border: 1px solid #f2f2f2;
  position: absolute;
  z-index: 10;
}
/* line 71, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .section-header {
  padding: 8px;
  text-align: center;
}
/* line 76, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend {
  position: relative;
  padding: 5px 3px;
  height: 60px;
}
/* line 81, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend:hover {
  cursor: pointer;
}
/* line 85, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend .individual-caption {
  width: 150px;
}
/* line 88, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend .individual-caption .top-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
/* line 95, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend .individual-caption .bottom-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #CCC;
}
/* line 104, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend .check-mark {
  position: absolute;
  left: 1%;
}
/* line 109, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend .individual-caption {
  display: inline-block;
  position: relative;
  top: -10px;
}
/* line 115, less/group-layout/components/comment-input.less */
.group-layout-scope .comment-input .search-results-comments .search-results-individual-friend .avatar {
  height: 50px;
  width: 50px;
  margin-right: 15px;
  display: inline-block;
}
/* line 1, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation {
  cursor: pointer;
}
/* line 5, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 0 1.5em;
  background-color: #f7f7f7;
}
/* line 13, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-form button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 18, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-form__text {
  cursor: pointer;
  -ms-flex-positive: 2;
      flex-grow: 2;
  outline: none;
  border: none;
  background: none;
  font-size: 18px;
  line-height: 1.3;
  color: #979797;
  resize: none;
  padding: 1.5em 1.5em 1.5em .5em;
  overflow: hidden;
  overflow-wrap: break-word;
}
/* line 33, less/group-layout/components/create-conversation.less */
.group-layout-scope .pending-post {
  border: 1px solid black;
  padding: 40px;
  margin: 40px 0px;
}
/* line 39, less/group-layout/components/create-conversation.less */
.group-layout-scope .pending-post__notice {
  color: #262626;
  margin-bottom: 30px;
  text-align: center;
}
/* line 45, less/group-layout/components/create-conversation.less */
.group-layout-scope .pending-post__content {
  display: -ms-flexbox;
  display: flex;
}
/* line 49, less/group-layout/components/create-conversation.less */
.group-layout-scope .pending-post__text {
  color: #979797;
}
/* line 54, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-form .avatar-wrapper,
.group-layout-scope .pending-post__content .avatar-wrapper,
.group-layout-scope .create-conversation-modal__profile-wrapper .avatar-wrapper {
  margin-right: 1em;
}
/* line 58, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-form .avatar,
.group-layout-scope .pending-post__content .avatar,
.group-layout-scope .create-conversation-modal__profile-wrapper .avatar {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 65, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-form .avatar-wrapper--badge .avatar,
.group-layout-scope .pending-post__content .avatar-wrapper--badge .avatar,
.group-layout-scope .create-conversation-modal__profile-wrapper .avatar-wrapper--badge .avatar {
  width: 40px;
  height: 40px;
}
/* line 72, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal {
  position: relative;
}
/* line 76, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__profile-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 600;
  margin-bottom: 15px;
}
/* line 82, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__profile-wrapper .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
}
/* line 90, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal {
  -ms-flex-positive: 2;
      flex-grow: 2;
  outline: none;
  border: none;
  background: none;
  font-size: 18px;
  line-height: 1.3;
  color: #979797;
  resize: none;
  padding: 1.5em 1.5em 1.5em .5em;
  overflow: hidden;
  overflow-wrap: break-word;
}
/* line 104, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__textarea {
  outline: none;
  border: none;
  background: none;
  font-size: 18px;
  line-height: 1.3;
  color: #979797;
  overflow: auto;
  overflow-wrap: break-word;
  max-height: 200px;
  margin-bottom: 15px;
}
/* line 117, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__textarea--is-url {
  color: #F52828;
}
/* line 121, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__button-wrapper {
  display: -ms-flexbox;
  display: flex;
}
/* line 123, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__button-wrapper div {
  -ms-flex: 1;
      flex: 1;
}
/* line 126, less/group-layout/components/create-conversation.less */
.group-layout-scope .create-conversation-modal__button-wrapper button {
  width: auto;
}
/* line 1, less/group-layout/components/curator-controls.less */
.group-layout-scope .curator-controls {
  padding: 24px 0 10px 0;
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
/* line 9, less/group-layout/components/curator-controls.less */
.group-layout-scope .curator-controls__item-content {
  cursor: pointer;
  margin-left: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 15, less/group-layout/components/curator-controls.less */
.group-layout-scope .curator-controls__item-content:first-child {
  margin-left: initial;
}
/* line 20, less/group-layout/components/curator-controls.less */
.group-layout-scope .curator-controls__item-content-label {
  margin-left: 8px;
}
/* line 24, less/group-layout/components/curator-controls.less */
.group-layout-scope .curator-controls__old-icon-wrapper {
  height: 35px;
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 1, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item {
  margin-bottom: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 6, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item:last-child {
  margin-bottom: 0px;
}
/* line 11, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__avatar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 15px 10px 0px;
}
/* line 17, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__avatar .avatar {
  width: 48px;
  height: 48px;
}
/* line 23, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__avatar .avatar-wrapper--badge .avatar {
  width: 40px;
  height: 40px;
}
/* line 30, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__display-name {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
/* line 36, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__details {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  padding: 10px 10px 10px 0px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 47, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__details a,
.group-layout-scope .followable-list-item__details a:hover {
  color: #262626;
}
/* line 52, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__bio {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #979797;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 63, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__expert-tags {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #F52828;
  text-transform: uppercase;
}
/* line 71, less/group-layout/components/followable-list-item.less */
.group-layout-scope .followable-list-item__follow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 5, less/group-layout/components/group-comment-section.less */
.group-layout-scope .group-comment-section hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #D8D8D8;
  margin: 0;
  padding: 0;
}
/* line 15, less/group-layout/components/group-comment-section.less */
.group-layout-scope .group-comment-section__comments {
  padding: 0px 15px 0px 50px;
  margin-bottom: 0;
}
/* line 20, less/group-layout/components/group-comment-section.less */
.group-layout-scope .group-comment-section__see-previous {
  color: #999;
  cursor: pointer;
  display: inline-block;
  padding: 15px 0 15px 113px;
}
/* line 1, less/group-layout/components/header.less */
.group-layout-scope .group-header {
  position: relative;
  margin-top: 61px;
  margin-bottom: 2em;
  padding: 0px 60px;
  border-bottom: 1px solid #D8D8D8;
  background-size: cover;
  background-position: center center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #000;
}
/* line 14, less/group-layout/components/header.less */
.group-layout-scope .group-header__logo {
  width: 257px;
  margin-bottom: 16px;
}
/* line 19, less/group-layout/components/header.less */
.group-layout-scope .group-header__content {
  color: white;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  padding-top: 50px;
  padding-bottom: 32px;
}
/* line 26, less/group-layout/components/header.less */
.group-layout-scope .group-header__content h1 {
  font-weight: 900;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px;
}
/* line 32, less/group-layout/components/header.less */
.group-layout-scope .group-header__content h1 sup {
  font-size: 0.35em;
  font-weight: normal;
  position: relative;
  bottom: 0.4em;
  margin-left: 10px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
}
/* line 44, less/group-layout/components/header.less */
.group-layout-scope .group-header__description {
  max-width: 640px;
}
/* line 47, less/group-layout/components/header.less */
.group-layout-scope .group-header__description a,
.group-layout-scope .group-header__description a:active,
.group-layout-scope .group-header__description a:visited {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}
/* line 54, less/group-layout/components/header.less */
.group-layout-scope .group-header__tag-list {
  -ms-flex: 1;
      flex: 1;
  margin-top: 32px;
}
/* line 58, less/group-layout/components/header.less */
.group-layout-scope .group-header__tag-list li {
  display: inline-block;
  margin-right: 10px;
}
/* line 64, less/group-layout/components/header.less */
.group-layout-scope .group-header__tag-item {
  text-shadow: 1px 1px black;
  text-transform: uppercase;
  color: white;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
}
/* line 73, less/group-layout/components/header.less */
.group-layout-scope .group-header__actions {
  padding-bottom: 74px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}
/* line 79, less/group-layout/components/header.less */
.group-layout-scope .group-header__meatball-wrapper {
  padding: 0 20px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  text-shadow: none;
}
/* line 85, less/group-layout/components/header.less */
.group-layout-scope .group-header__meatball-wrapper .meatballs-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 90, less/group-layout/components/header.less */
.group-layout-scope .group-header__meatball-wrapper .meatballs-menu-button__meatball {
  background-color: white;
}
/* line 94, less/group-layout/components/header.less */
.group-layout-scope .group-header__meatball-wrapper .meatballs-menu__dropdown-menu {
  width: 150px;
}
/* line 99, less/group-layout/components/header.less */
.group-layout-scope .group-header__actions--joined {
  display: -ms-flexbox;
  display: flex;
}
/* line 103, less/group-layout/components/header.less */
.group-layout-scope .fitbit-group-header__title {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
}
/* line 106, less/group-layout/components/header.less */
.group-layout-scope .fitbit-group-header__title span:last-child {
  font-style: italic;
}
/* line 8, less/group-layout/components/layout.less */
.group-layout-scope .group-layout {
  max-width: 1142px;
  margin: 0 auto;
  position: relative;
}
/* line 2, less/helpers/clearfix.less */
.group-layout-scope .group-layout:after {
  content: "";
  display: table;
  clear: both;
}
/* line 15, less/group-layout/components/layout.less */
.group-layout-scope .group-layout__posts {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 18, less/group-layout/components/layout.less */
  .group-layout-scope .group-layout__posts {
    width: calc(100% - 390px);
  }
}
/* line 23, less/group-layout/components/layout.less */
.group-layout-scope .group-layout__aside {
  float: right;
  width: 350px;
  margin-left: 40px;
  display: none;
}
@media (min-width: 1024px) {
  /* line 28, less/group-layout/components/layout.less */
  .group-layout-scope .group-layout__aside {
    display: block;
  }
}
/* line 33, less/group-layout/components/layout.less */
.group-layout-scope .group-layout__click-intercept {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 29;
}
/* line 42, less/group-layout/components/layout.less */
.group-layout-scope .group-layout__pagination-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 48, less/group-layout/components/layout.less */
.group-layout-scope .group-layout__pagination-button {
  margin-right: 10px;
  width: 100px;
}
/* line 1, less/group-layout/components/list-summary-panel.less */
.group-layout-scope .list-summary-panel {
  max-width: 350px;
  line-height: 1.3;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  margin-bottom: 32px;
}
/* line 8, less/group-layout/components/list-summary-panel.less */
.group-layout-scope .list-summary-panel h2 {
  -ms-flex: 1;
      flex: 1;
  margin-bottom: 25px;
  font-weight: 700;
}
/* line 15, less/group-layout/components/list-summary-panel.less */
.group-layout-scope .list-summary-panel__header {
  display: -ms-flexbox;
  display: flex;
}
/* line 19, less/group-layout/components/list-summary-panel.less */
.group-layout-scope .list-summary-panel__member-count {
  font-weight: normal;
}
/* line 23, less/group-layout/components/list-summary-panel.less */
.group-layout-scope .list-summary-panel__view-all {
  text-align: right;
  color: #979797;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  cursor: pointer;
}
/* line 1, less/group-layout/components/member-list-modal.less */
.group-layout-scope .member-list-modal__sort-tab {
  display: inline-block;
  margin-right: 25px;
  color: #979797;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px 0;
  cursor: pointer;
}
/* line 12, less/group-layout/components/member-list-modal.less */
.group-layout-scope .member-list-modal__sort-tab--selected {
  color: #F52828;
  border-bottom: 3px solid #F52828;
}
/* line 17, less/group-layout/components/member-list-modal.less */
.group-layout-scope .member-list-modal__members-list {
  overflow: auto;
  margin: 15px 0;
  -ms-flex: 1;
      flex: 1;
}
/* line 6, less/group-layout/components/post.less */
.group-layout-scope .post {
  border-bottom: 1px solid #D8D8D8;
  position: relative;
  text-align: left;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  margin: 2em 0 2em 24px;
  height: initial;
}
/* line 14, less/group-layout/components/post.less */
.group-layout-scope .post ul {
  margin-bottom: 0;
}
/* line 20, less/group-layout/components/post.less */
.group-layout-scope .post__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 1em;
}
/* line 26, less/group-layout/components/post.less */
.group-layout-scope .post__header .top-attribution .avatar-attribution {
  margin: 0px;
}
/* line 33, less/group-layout/components/post.less */
.group-layout-scope .post__caption {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
  word-wrap: break-word;
}
/* line 47, less/group-layout/components/post.less */
.group-layout-scope .source-attribution {
  margin-top: 6px;
}
/* line 52, less/group-layout/components/post.less */
.group-layout-scope .topic-tags {
  margin-top: 16px;
}
/* line 55, less/group-layout/components/post.less */
.group-layout-scope .topic-tag {
  margin: 0 16px 0 0;
}
/* line 60, less/group-layout/components/post.less */
.group-layout-scope .post__grid {
  display: -ms-flexbox;
  display: flex;
}
/* line 65, less/group-layout/components/post.less */
.group-layout-scope .post__image-column .image-frame {
  width: 125px;
  height: 125px;
}
/* line 71, less/group-layout/components/post.less */
.group-layout-scope .post__content-column {
  -ms-flex: 1;
      flex: 1;
  margin-left: 18px;
  overflow: hidden;
}
/* line 79, less/group-layout/components/post.less */
.group-layout-scope .post--status__items {
  position: relative;
  width: 100%;
  overflow-wrap: break-word;
}
/* line 84, less/group-layout/components/post.less */
.group-layout-scope .post--status__items a {
  color: #262626;
}
/* line 88, less/group-layout/components/post.less */
.group-layout-scope .post--status__items .external-social-actions {
  position: absolute;
  left: 10px;
  bottom: 5px;
}
/* line 93, less/group-layout/components/post.less */
.group-layout-scope .post--status__items .linked-text {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 20px;
  overflow: hidden;
  white-space: pre-wrap;
}
/* line 99, less/group-layout/components/post.less */
.group-layout-scope .post--status__items .linked-text .section-link {
  color: #09c;
}
/* line 103, less/group-layout/components/post.less */
.group-layout-scope .post--status__items .mini-attribution {
  margin-top: 10px;
}
/* line 105, less/group-layout/components/post.less */
.group-layout-scope .post--status__items .mini-attribution span {
  font-family: inherit;
  font-size: 12px;
  line-height: 15px;
}
/* line 117, less/group-layout/components/post.less */
.group-layout-scope .post--image .image-container,
.group-layout-scope .post--video .image-container {
  position: relative;
}
/* line 120, less/group-layout/components/post.less */
.group-layout-scope .post--image .image-container:hover .full-screen-icon-container,
.group-layout-scope .post--video .image-container:hover .full-screen-icon-container {
  background-color: rgba(0, 0, 0, 0.66);
}
/* line 125, less/group-layout/components/post.less */
.group-layout-scope .post--image .full-screen-icon-container,
.group-layout-scope .post--video .full-screen-icon-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
  height: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  pointer-events: none;
  border-radius: 4px 0 0 0;
  background-color: rgba(0, 0, 0, 0.33);
}
/* line 138, less/group-layout/components/post.less */
.group-layout-scope .post--image img,
.group-layout-scope .post--video img {
  cursor: pointer;
}
/* line 6, less/group-layout/components/post-attribution.less */
.group-layout-scope .post-attribution__avatar .avatar-wrapper {
  margin: 0 1em 0 0;
}
/* line 10, less/group-layout/components/post-attribution.less */
.group-layout-scope .post-attribution__avatar .avatar {
  width: 48px;
  height: 48px;
}
/* line 16, less/group-layout/components/post-attribution.less */
.group-layout-scope .post-attribution__avatar .avatar-wrapper--badge .avatar {
  width: 40px;
  height: 40px;
}
/* line 3, less/group-layout/components/media-expanded.less */
.media-expanded {
  position: fixed;
  width: 80%;
  height: 90%;
  top: 0;
  left: 0;
  right: 0;
  margin: 30px auto 0px auto;
  z-index: 31;
  padding: 26px;
  background: #F6F6F6;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1024px) {
  /* line 17, less/group-layout/components/media-expanded.less */
  .media-expanded {
    width: 100%;
  }
}
/* line 21, less/group-layout/components/media-expanded.less */
.media-expanded .close-button {
  left: initial;
  right: 25px;
  position: absolute;
}
/* line 27, less/group-layout/components/media-expanded.less */
.media-expanded .media-expanded--content {
  margin: 0 auto;
  max-width: 90%;
  padding: 32px;
  background-color: #fff;
}
/* line 34, less/group-layout/components/media-expanded.less */
.media-expanded .image-container {
  position: relative;
  width: 100%;
  margin: 0 0 32px;
  text-align: center;
}
/* line 39, less/group-layout/components/media-expanded.less */
.media-expanded .image-container img {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  height: auto;
  vertical-align: bottom;
}
/* line 46, less/group-layout/components/media-expanded.less */
.media-expanded .image-container .play-button-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 56, less/group-layout/components/media-expanded.less */
.media-expanded .image-container .play-button {
  width: 20%;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.75));
}
/* line 59, less/group-layout/components/media-expanded.less */
.media-expanded .image-container .play-button:hover {
  filter: drop-shadow(0 0 0 rgba(250, 250, 250, 0));
}
/* line 66, less/group-layout/components/media-expanded.less */
.media-expanded .media-player {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 32px;
}
/* line 72, less/group-layout/components/media-expanded.less */
.media-expanded .media-player .player {
  border: none;
}
/* line 78, less/group-layout/components/media-expanded.less */
.media-expanded .editor-remove-x-icon {
  margin-left: 10px;
  vertical-align: middle;
  stroke-width: 1.0;
}
/* line 82, less/group-layout/components/media-expanded.less */
.media-expanded .editor-remove-x-icon line,
.media-expanded .editor-remove-x-icon path,
.media-expanded .editor-remove-x-icon polygon,
.media-expanded .editor-remove-x-icon polyline,
.media-expanded .editor-remove-x-icon rect {
  stroke: #999999;
}
/* line 85, less/group-layout/components/media-expanded.less */
.media-expanded .editor-remove-x-icon:hover {
  cursor: pointer;
}
/* line 87, less/group-layout/components/media-expanded.less */
.media-expanded .editor-remove-x-icon:hover line,
.media-expanded .editor-remove-x-icon:hover path,
.media-expanded .editor-remove-x-icon:hover polygon,
.media-expanded .editor-remove-x-icon:hover polyline,
.media-expanded .editor-remove-x-icon:hover rect {
  stroke: #000;
}
/* line 92, less/group-layout/components/media-expanded.less */
.media-expanded .editor-remove-x-icon .active line,
.media-expanded .editor-remove-x-icon .active path,
.media-expanded .editor-remove-x-icon .active polygon,
.media-expanded .editor-remove-x-icon .active polyline,
.media-expanded .editor-remove-x-icon .active rect {
  stroke: #09c;
}
/* line 1, less/group-layout/components/post-modal.less */
#post-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 31;
  padding: 26px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 16, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content {
  -ms-flex-preferred-size: 475px;
      flex-basis: 475px;
  background-color: #fff;
  padding: 23px;
}
/* line 22, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 23px;
}
/* line 28, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__header h2 {
  font-size: 30px;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
/* line 35, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__header .close-button {
  position: relative;
  left: initial;
  top: initial;
}
/* line 42, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__subtitle {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #979797;
  margin-bottom: 60px;
}
/* line 50, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__message {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 32px 0px 96px 0px;
}
/* line 57, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__message--edit {
  padding: 15px;
  background: #EEE;
  cursor: pointer;
  outline: none;
}
/* line 64, less/group-layout/components/post-modal.less */
#post-modal .post-modal-content__actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 69, less/group-layout/components/post-modal.less */
#post-modal .post-modal__input {
  margin-bottom: 32px;
}
/* line 72, less/group-layout/components/post-modal.less */
#post-modal .post-modal__input:last-child {
  margin-bottom: none;
}
/* line 76, less/group-layout/components/post-modal.less */
#post-modal .post-modal__input label,
#post-modal .post-modal__input input {
  display: block;
}
/* line 80, less/group-layout/components/post-modal.less */
#post-modal .post-modal__input input {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 20px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
}
/* line 93, less/group-layout/components/post-modal.less */
#post-modal .post-modal__input > label,
#post-modal .post-modal__input-label {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #979797;
  margin-bottom: 10px;
}
/* line 103, less/group-layout/components/post-modal.less */
#post-modal .post-modal__avatar-editable {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 107, less/group-layout/components/post-modal.less */
#post-modal .post-modal__avatar-editable .avatar-editable {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 113, less/group-layout/components/post-modal.less */
#post-modal .post-modal__avatar-editable-label {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #979797;
  margin-left: 15px;
}
/* line 121, less/group-layout/components/post-modal.less */
#post-modal .avatar {
  width: 48px;
  height: 48px;
}
/* line 127, less/group-layout/components/post-modal.less */
#post-modal .avatar-editable:hover .edit-icon {
  display: none;
}
/* line 7, less/newspaper-layout/index.less */
.newspaper-layout-scope {
  margin-top: 120px;
}
/* line 4, less/newspaper-layout/utilities/typography.less */
.newspaper-layout-scope h2 {
  color: #000;
}
/* line 8, less/newspaper-layout/utilities/typography.less */
.newspaper-layout-scope .supporting-copy {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: #979797;
  margin-top: 6px;
}
/* line 1, less/newspaper-layout/components/newspaper-section.less */
.newspaper-layout-scope .newspaper-section__see-more {
  margin: 32px 0 16px;
}
/* line 5, less/newspaper-layout/components/newspaper-section.less */
.newspaper-layout-scope .newspaper-section__personalize-button {
  margin-left: 16px;
}
/* line 6, less/newspaper-layout/components/article.less */
.newspaper-layout-scope article {
  text-align: unset;
  margin: unset;
  height: unset;
  position: unset;
}
/* line 13, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__article {
  margin-top: 20px;
}
/* line 15, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__article img {
  max-width: 100%;
}
/* line 19, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__article .article__media-player-wrapper {
  position: relative;
  height: 150px;
  margin-bottom: 10px;
}
/* line 27, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .article__meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: 1;
}
/* line 31, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .article__meta--secondary {
  margin-top: 4px;
  display: block;
}
/* line 38, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .topic-tag {
  font-size: 11px;
  margin-bottom: 4px;
}
/* line 44, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .post__title {
  font-weight: 600;
  letter-spacing: 0.025em;
}
/* line 50, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__column--small .post__title {
  font-size: 15px;
  font-family: "FaktSemiCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
}
/* line 58, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__column--medium .post__title {
  font-size: 16px;
  font-family: "Tiempos", Georgia, serif;
  line-height: 1.2;
  padding: 2px 0;
  letter-spacing: 0;
}
/* line 67, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__column--large-section .post__title {
  font-size: 22px;
  font-family: "Tiempos", Georgia, serif;
  line-height: 1.2;
  letter-spacing: 0;
}
/* line 77, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__column--large-section .image-frame {
  width: 84px;
  height: 84px;
}
/* line 85, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__column--small .image-frame {
  width: 100%;
  height: 104px;
  margin-bottom: 16px;
}
/* line 94, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .newspaper-layout__column--medium .image-frame {
  width: 100%;
  height: 172px;
  margin-bottom: 16px;
}
/* line 101, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .article-meta__heading {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
}
/* line 107, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .article-meta__topics-wrapper {
  -ms-flex: 1;
      flex: 1;
}
/* line 111, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .social-actions__list-item {
  display: -ms-flexbox;
  display: flex;
}
/* line 115, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .social-actions__list-item-label {
  margin-left: 10px;
}
/* line 119, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .source-attribution,
.newspaper-layout-scope .social-stat {
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 767px) {
  /* line 126, less/newspaper-layout/components/article.less */
  .newspaper-layout-scope .newspaper-layout__column--small .post__title,
  .newspaper-layout-scope .newspaper-layout__column--medium .post__title,
  .newspaper-layout-scope .newspaper-layout__column--large-section .post__title {
    font-size: 18px;
  }
}
/* line 132, less/newspaper-layout/components/article.less */
.newspaper-layout-scope .article-meta__attribution {
  display: inline-block;
  line-height: 1;
}
/* line 3, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope #newspaper-layout__influencer {
  margin-bottom: 15px;
}
/* line 5, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope #newspaper-layout__influencer .newspaper-layout__article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 1fr 24px;
      grid-template-columns: 60px 1fr 24px;
  grid-column-gap: 10px;
}
/* line 10, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope #newspaper-layout__influencer .article__img-content {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 2;
}
/* line 15, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope #newspaper-layout__influencer .image-frame {
  width: 60px;
  height: 96px;
  margin-bottom: 0;
}
/* line 22, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 16px;
}
/* line 28, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__description {
  color: #262626;
  font-size: 16px;
  font-family: "Tiempos", Georgia, serif;
  line-height: 1.4;
}
/* line 35, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__header-title {
  -ms-flex: 1;
      flex: 1;
  padding-right: 15px;
}
/* line 40, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__header-image-wrapper {
  width: 50px;
}
/* line 43, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__header-image-wrapper img,
.newspaper-layout-scope .influencer__header-image-wrapper .avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 25px;
}
/* line 51, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__posts {
  margin-bottom: 15px;
}
/* line 55, less/newspaper-layout/components/influencer.less */
.newspaper-layout-scope .influencer__status {
  font-family: "Tiempos", Georgia, serif;
  font-size: 16px;
  margin: 15px 0;
}
/* line 3, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header {
  padding: 0 15px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  /* line 8, less/newspaper-layout/components/header.less */
  .newspaper-layout-scope .newspaper-header {
    padding: 0;
  }
}
/* line 13, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header hr {
  height: 7px;
  background-color: black;
  width: 100%;
  border: none;
}
/* line 20, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header .favorite-context-menu__items {
  text-align: left;
  right: 0;
}
/* line 26, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header .share-menu > * {
  vertical-align: middle;
}
/* line 29, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header .share-menu .share-button {
  margin-top: -2px;
}
/* line 32, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header .share-menu .icon-button {
  stroke: #000;
}
/* line 35, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header .share-menu .share-button-new {
  margin-top: 2px;
  display: inline-block;
  cursor: pointer;
}
/* line 41, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header .share-menu .show-more-icon {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  top: 2px;
}
/* line 53, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__title-wrapper {
  display: -ms-flexbox;
  display: flex;
}
/* line 57, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__title {
  font-size: 60px;
  line-height: 0.9;
  -ms-flex: 1;
      flex: 1;
  padding-right: 60px;
  margin-bottom: 10px;
}
/* line 65, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__description {
  -ms-flex: 1;
      flex: 1;
  padding-right: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
}
/* line 72, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__personalize-wrapper {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
}
/* line 77, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__personalize-tip {
  width: 100%;
  font-size: 14px;
  color: #979797;
  -ms-flex: 1;
      flex: 1;
  padding-right: 15%;
  margin-bottom: 15px;
}
/* line 86, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__menu-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 91, less/newspaper-layout/components/header.less */
.newspaper-layout-scope .newspaper-header__menu-wrapper .meatballs-menu {
  -ms-flex: 1;
      flex: 1;
  text-align: right;
}
@media (max-width: 767px) {
  /* line 99, less/newspaper-layout/components/header.less */
  .newspaper-layout-scope .newspaper-header__title-wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  /* line 103, less/newspaper-layout/components/header.less */
  .newspaper-layout-scope .newspaper-header__title {
    font-size: 30px;
  }
  /* line 107, less/newspaper-layout/components/header.less */
  .newspaper-layout-scope .newspaper-header__personalize-tip {
    padding-right: 15%;
  }
}
/* line 9, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 767px) {
  /* line 15, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 20, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: auto 2;
        grid-template-rows: auto 2;
  }
}
@media (min-width: 1025px) {
  /* line 25, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout {
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
  }
}
/* line 35, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--small {
  -ms-grid-column: span 1;
      grid-column: span 1;
}
/* line 37, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--small .newspaper-layout__article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px;
      grid-template-columns: 1fr 24px;
}
/* line 41, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--small .article__copy-content {
  overflow: hidden;
}
/* line 45, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--small .article__img-content {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}
/* line 51, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--medium {
  -ms-grid-column: span 2;
      grid-column: span 2;
}
/* line 53, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--medium .newspaper-layout__article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px;
      grid-template-columns: 1fr 24px;
}
/* line 57, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--medium .article__img-content {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}
/* line 61, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--medium .article__copy-content {
  overflow: hidden;
}
@media (max-width: 1024px) {
  /* line 67, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout > .newspaper-layout__column--medium {
    -ms-grid-column: span 4;
        grid-column: span 4;
  }
}
/* line 71, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--large {
  -ms-grid-column: span 3;
      grid-column: span 3;
}
/* line 74, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--large .newspaper-layout__column--large-section .newspaper-layout__article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 84px 1fr 24px;
      grid-template-columns: 84px 1fr 24px;
  grid-column-gap: 20px;
}
/* line 79, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column--large .newspaper-layout__column--large-section .article__copy-content {
  overflow: hidden;
}
@media (max-width: 767px) {
  /* line 86, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout *[class*="newspaper-layout__column--"] {
    -ms-grid-column: span 1;
        grid-column: span 1;
  }
}
/* line 92, less/newspaper-layout/components/layout.less */
.newspaper-layout-scope .newspaper-layout__column-nested {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  /* line 102, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout .newspaper-section {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
  }
  /* line 108, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout .newspaper-layout__column-nested {
    display: block;
  }
  /* line 116, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout--magazine-invite > .newspaper-column:first-child {
    -ms-flex-order: 2;
        order: 2;
  }
  /* line 120, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout--magazine-invite > .newspaper-column:nth-child(2) {
    -ms-flex-order: 3;
        order: 3;
  }
  /* line 124, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout--magazine-invite > .newspaper-column:last-child {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media (min-width: 768px) {
  /* line 132, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-column {
    padding: 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  /* line 137, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-column:not(:last-child) {
    border-right: 1px solid #ddd;
  }
  /* line 141, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-column > section:not(:last-child),
  .newspaper-layout-scope .newspaper-column .newspaper-section:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  /* line 148, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout__column-nested .newspaper-column {
    border-bottom: none;
  }
  /* line 151, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout__column-nested .newspaper-column:first-child {
    padding-left: 0;
  }
  /* line 155, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout__column-nested .newspaper-column:last-child {
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  /* line 162, less/newspaper-layout/components/layout.less */
  .newspaper-layout-scope .newspaper-layout .newspaper-column:nth-child(2) {
    border-right: none;
  }
}
/* line 6, less/newspaper-layout/components/post-attribution.less */
.newspaper-layout-scope .post-attribution__avatar .avatar-wrapper {
  margin-right: 4px;
}
/* line 10, less/newspaper-layout/components/post-attribution.less */
.newspaper-layout-scope .post-attribution__avatar .avatar {
  width: 18px;
  height: 18px;
}
/* line 17, less/newspaper-layout/components/post-attribution.less */
.newspaper-layout-scope .post-attribution__author,
.newspaper-layout-scope .post-attribution__author .author {
  font-weight: 500;
  font-size: 12px;
  color: #979797;
}
/* line 24, less/newspaper-layout/components/post-attribution.less */
.newspaper-layout-scope .author {
  margin-right: 3px;
}
/* line 2, less/newspaper-layout/components/social-stats.less */
.newspaper-layout-scope .social-stat {
  cursor: pointer;
}
/* line 1, less/newspaper-layout/components/personalize.less */
.newspaper-layout-scope .newspaper-personalize {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
/* line 8, less/newspaper-layout/components/personalize.less */
.newspaper-layout-scope .newspaper-personalize__franchise-list li {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  color: #979797;
  margin: 0 15px 10px 0;
  border: 1px solid #ddd;
  padding: 5px 10px;
}
/* line 19, less/newspaper-layout/components/personalize.less */
.newspaper-layout-scope .newspaper-personalize__heading {
  margin-bottom: 20px;
}
/* line 1, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-bottom: 16px;
}
/* line 7, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
/* line 12, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine__content {
  text-align: center;
  margin-bottom: 32px;
}
/* line 17, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine__create-description {
  margin: 0 auto 15px;
  max-width: 75%;
  text-align: center;
  color: #262626;
  line-height: 1.2;
  font-weight: 500;
}
/* line 26, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine__create-image {
  width: 85%;
  margin: 15px 0;
}
/* line 31, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section--empty,
.newspaper-layout-scope .group-magazine-invite {
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: center;
}
/* line 37, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section--empty .avatar,
.newspaper-layout-scope .group-magazine-invite .avatar {
  height: 50px;
  width: 50px;
  margin: 0 auto 10px;
}
/* line 45, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-invite p {
  margin-bottom: 15px;
}
/* line 49, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-invite .button--primary-inverse {
  margin-right: 16px;
}
/* line 54, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section__flip-instructions {
  color: #979797;
  font-size: 14px;
}
/* line 59, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine__invite-colleague_button {
  cursor: pointer;
  padding: 10px 20px;
  overflow: hidden;
  margin: 15px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 68, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section__buttons-wrapper {
  margin: 20px 0;
}
/* line 71, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section__buttons-wrapper > a:first-child {
  margin-right: 16px;
}
/* line 76, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section__buttons-wrapper--empty {
  text-align: center;
}
/* line 80, less/newspaper-layout/components/group-magazine.less */
.newspaper-layout-scope .group-magazine-section__invite-button {
  margin: 0;
}
/* line 3, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts {
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}
/* line 8, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__nav-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  padding-bottom: 10px;
  min-width: 34px;
}
/* line 13, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__nav-wrapper:first-child {
  padding-right: 10px;
}
/* line 17, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__nav-wrapper:last-child {
  padding-left: 10px;
}
/* line 22, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__caret {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  color: white;
  background-color: #999;
  border-radius: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
/* line 34, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__caret:hover {
  background-color: #808080;
}
/* line 39, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__items-list-wrapper {
  -ms-flex: 1;
      flex: 1;
}
/* line 47, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__item {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px;
  background-color: #F7F7F7;
}
/* line 54, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__item-content {
  display: -ms-flexbox;
  display: flex;
}
/* line 57, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__item-content .post__title {
  font-size: 15px;
  font-family: "FaktSemiCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  line-height: 1.2;
}
/* line 64, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__item-title-wrapper {
  padding: 0 10px;
}
/* line 69, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__commentary-quote-icon span {
  width: 24px;
}
/* line 72, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__commentary-quote-icon:first-child {
  padding-right: 10px;
}
/* line 77, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__commentary-wrapper {
  display: -ms-flexbox;
  display: flex;
}
/* line 79, less/newspaper-layout/components/carousel-posts.less */
.newspaper-layout-scope .carousel-posts__commentary-wrapper p {
  -ms-flex: 1;
      flex: 1;
  font-family: "Tiempos", Georgia, serif;
  font-size: 14px;
}
/* line 1, less/newspaper-layout/components/cropped-image.less */
.newspaper-layout-scope .cropped-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 7, less/newspaper-layout/components/cropped-image.less */
.newspaper-layout-scope .cropped-image img {
  max-width: initial;
}
/* line 2, less/tile-layout/components/layout.less */
.tile-layout-scope .tile-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) and (max-width: 1023px) {
  /* line 6, less/tile-layout/components/layout.less */
  .tile-layout-scope .tile-layout {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  /* line 10, less/tile-layout/components/layout.less */
  .tile-layout-scope .tile-layout {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}
/* line 1, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item-wrapper {
  -ms-grid-column: span 1;
      grid-column: span 1;
  min-width: 0;
  border-bottom: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 10, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item-wrapper:nth-child(3n + 1) .tile-item,
.tile-layout-scope .tile-item-wrapper:nth-child(3n + 2) .tile-item {
  border-right: 1px solid #ddd;
}
/* line 16, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item-wrapper:nth-child(3n + 1) .tile-item {
  padding-left: 0;
}
/* line 22, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item-wrapper:nth-child(3n + 3) .tile-item {
  padding-right: 0;
}
/* line 28, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item {
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 37, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item .post-attribution .avatar {
  height: 30px;
  width: 30px;
  border-radius: 15px;
}
/* line 43, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item .action-bar {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 50, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item__content-wrapper {
  -ms-flex: 1;
      flex: 1;
  margin-bottom: 15px;
}
/* line 55, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item__top-atribution-wrapper {
  margin-bottom: 5px;
  height: 40px;
}
/* line 60, less/tile-layout/components/tile-item.less */
.tile-layout-scope .image-frame {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
}
/* line 66, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item__title-wrapper {
  margin-bottom: 15px;
}
/* line 71, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item .post__title {
  font-size: 20px;
  font-weight: 600;
  font-family: "Tiempos", Georgia, serif;
}
@media (min-width: 768px) and (max-width: 1023px) {
  /* line 81, less/tile-layout/components/tile-item.less */
  .tile-layout-scope .tile-item-wrapper:nth-child(3n + 1) .tile-item,
  .tile-layout-scope .tile-item-wrapper:nth-child(3n + 2) .tile-item {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
  /* line 88, less/tile-layout/components/tile-item.less */
  .tile-layout-scope .tile-item-wrapper:nth-child(2n + 1) .tile-item {
    border-right: 1px solid #ddd;
    padding-right: 20px;
  }
  /* line 95, less/tile-layout/components/tile-item.less */
  .tile-layout-scope .tile-item-wrapper:nth-child(3n + 3) .tile-item {
    padding-left: 0;
  }
  /* line 100, less/tile-layout/components/tile-item.less */
  .tile-layout-scope .tile-item-wrapper:nth-child(2n + 2) {
    padding-left: 20px;
  }
}
/* line 107, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item__social-controls-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 110, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item__social-controls-wrapper > div:first-child {
  -ms-flex: 1;
      flex: 1;
}
/* line 116, less/tile-layout/components/tile-item.less */
.tile-layout-scope .tile-item__social-controls li {
  display: inline-block;
  margin-left: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  /* line 126, less/tile-layout/components/tile-item.less */
  .tile-layout-scope .tile-item-wrapper:nth-child(3n + 1) .tile-item,
  .tile-layout-scope .tile-item-wrapper:nth-child(3n + 2) .tile-item,
  .tile-layout-scope .tile-item-wrapper:nth-child(3n + 3) .tile-item {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 12, less/tile-layout/index.less */
.tile-layout-scope .linear-section__magazine-header-wrapper {
  height: 100vh;
}
/* line 16, less/tile-layout/index.less */
.tile-layout-scope .linear-section {
  padding: 15px;
}
/* line 7, less/package-layout/index.less */
.package-layout-scope {
  background-color: black;
  padding-top: 60px;
}
/* line 1, less/package-layout/components/layout.less */
.package-layout-scope .package-layout {
  background: #000;
  color: #FFF;
  max-width: 1024px;
  margin: 0px auto;
  padding: 64px 32px;
}
@media (max-width: 600px) {
  /* line 8, less/package-layout/components/layout.less */
  .package-layout-scope .package-layout {
    padding: 16px 16px 64px 16px;
  }
}
/* line 12, less/package-layout/components/layout.less */
.package-layout-scope .package-layout header {
  display: block;
  margin-bottom: 32px;
}
/* line 17, less/package-layout/components/layout.less */
.package-layout-scope .package-layout .meatballs-menu__dropdown-menu {
  background: #000;
  color: #F7F7F7;
}
/* line 22, less/package-layout/components/layout.less */
.package-layout-scope .package-layout .meatballs-menu__dropdown-menu li:hover {
  background: #666;
}
/* line 27, less/package-layout/components/layout.less */
.package-layout-scope .package-layout .bracket-icon--rotated {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
/* line 31, less/package-layout/components/layout.less */
.package-layout-scope .package-layout article {
  text-align: initial;
  margin: initial;
  height: initial;
  position: initial;
  min-width: 0;
}
/* line 38, less/package-layout/components/layout.less */
.package-layout-scope .package-layout article p {
  color: #FFF;
}
/* line 43, less/package-layout/components/layout.less */
.package-layout-scope .package-layout article .cropped-image img {
  height: inherit;
}
/* line 49, less/package-layout/components/layout.less */
.package-layout-scope .package-layout .middot {
  margin: 0 4px;
}
/* line 1, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
/* line 6, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__title-lockup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 12, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header h1,
.package-layout-scope header.package-header h2,
.package-layout-scope header.package-header .package-header__description,
.package-layout-scope header.package-header .package-header__attribution {
  margin: 0 16px;
}
/* line 17, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__title-lockup--hide-brackets h1,
.package-layout-scope header.package-header .package-header__title-lockup--hide-brackets h2,
.package-layout-scope header.package-header .package-header__title-lockup--hide-brackets .package-header__description,
.package-layout-scope header.package-header .package-header__title-lockup--hide-brackets .package-header__attribution {
  margin-left: 0;
  margin-right: 0;
}
/* line 23, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header h1 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 36px;
  text-transform: uppercase;
}
/* line 33, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header h2 {
  margin-top: 32px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
/* line 41, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__attribution {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 45, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__attribution .avatar-wrapper {
  margin-right: 8px;
}
/* line 50, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__follow {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 56, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__sponsored-author-attribution {
  -ms-flex-align: end;
      align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 62, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__sponsor {
  margin-left: 12px;
}
/* line 66, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__sponsor-prefix {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
/* line 72, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__sponsor-name {
  font-size: 14px;
  font-weight: 500;
}
/* line 77, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__cover-image,
.package-layout-scope header.package-header .package-header__cover-image--square {
  -ms-flex-preferred-size: 537px;
      flex-basis: 537px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 537px;
  max-width: 537px;
  margin-left: 48px;
}
/* line 86, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__cover-image--no-mobile-crop {
  -ms-flex-preferred-size: initial;
      flex-basis: initial;
}
/* line 89, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__cover-image--no-mobile-crop img {
  width: 100%;
}
/* line 94, less/package-layout/components/package-header.less */
.package-layout-scope header.package-header .package-header__cover-image--with-square-image {
  display: none;
}
@media (max-width: 1200px) {
  /* line 99, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image,
  .package-layout-scope header.package-header .package-header__cover-image--square {
    -ms-flex-preferred-size: 350px;
        flex-basis: 350px;
    height: 350px;
    max-width: initial;
  }
  /* line 106, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image--no-mobile-crop {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    height: initial;
  }
}
@media (max-width: 900px) {
  /* line 112, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  /* line 115, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__sponsored-author-attribution {
    margin-bottom: 16px;
  }
  /* line 119, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image,
  .package-layout-scope header.package-header .package-header__cover-image--square {
    margin-left: initial;
    margin-bottom: 16px;
  }
  /* line 125, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image--with-square-image {
    display: block;
  }
  /* line 129, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image--square {
    display: none;
  }
  /* line 133, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image--no-mobile-crop {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    height: auto;
  }
  /* line 137, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image--no-mobile-crop .image {
    height: auto;
  }
}
@media (max-width: 599px) {
  /* line 144, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__title-lockup {
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
  /* line 148, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header .package-header__cover-image,
  .package-layout-scope header.package-header .package-header__cover-image--square {
    margin-bottom: 0;
  }
}
@media (min-width: 600px) {
  /* line 156, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  /* line 160, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image .package-header__title-lockup {
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
  /* line 164, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image h1,
  .package-layout-scope header.package-header--hide-cover-image h2,
  .package-layout-scope header.package-header--hide-cover-image .package-header__description,
  .package-layout-scope header.package-header--hide-cover-image .package-header__attribution {
    margin: 0 48px;
    text-align: center;
  }
  /* line 169, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image h2,
  .package-layout-scope header.package-header--hide-cover-image .package-header__attribution,
  .package-layout-scope header.package-header--hide-cover-image .package-header__attribution,
  .package-layout-scope header.package-header--hide-cover-image .package-header__description {
    margin-top: 16px;
  }
  /* line 173, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image .package-header__attribution {
    -ms-flex-pack: center;
        justify-content: center;
  }
  /* line 177, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image .package-header__description {
    text-align: center;
  }
  /* line 181, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image .package-header__sponsored-author-attribution {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-top: 48px;
  }
  /* line 187, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image .package-header__sponsor {
    margin: 12px 0;
  }
  /* line 191, less/package-layout/components/package-header.less */
  .package-layout-scope header.package-header--hide-cover-image .package-header__sponsor-prefix,
  .package-layout-scope header.package-header--hide-cover-image .package-header__sponsor-name {
    text-align: center;
  }
}
/* line 1, less/package-layout/components/package-footer.less */
.package-layout-scope .package-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 60px;
  padding: 12px 0;
  background-color: #262626;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 11, less/package-layout/components/package-footer.less */
.mobile .package-layout-scope .package-footer {
  bottom: 42px;
  min-height: 54px;
  padding: 8px 0;
}
/* line 17, less/package-layout/components/package-footer.less */
.package-layout-scope .package-footer h1 {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  margin-right: 12px;
}
/* line 26, less/package-layout/components/package-footer.less */
.mobile .package-layout-scope .package-footer h1 {
  font-size: 14px;
  line-height: 16px;
}
/* line 32, less/package-layout/components/package-footer.less */
.package-layout-scope .package-footer .show-more-icon,
.package-layout-scope .package-footer .show-more-wrapper,
.package-layout-scope .package-footer .icon-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
/* line 38, less/package-layout/components/package-footer.less */
.package-layout-scope .package-footer__contents {
  -ms-flex-preferred-size: 1024px;
      flex-basis: 1024px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 32px;
}
/* line 46, less/package-layout/components/package-footer.less */
.package-layout-scope .package-footer__actions {
  display: -ms-flexbox;
  display: flex;
}
/* line 1, less/package-layout/components/package-group.less */
.package-layout-scope .package-group {
  margin-bottom: 48px;
  display: -ms-grid;
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
/* line 7, less/package-layout/components/package-group.less */
.package-layout-scope .package-group header {
  grid-area: header;
  margin-bottom: 8px;
}
/* line 12, less/package-layout/components/package-group.less */
.package-layout-scope .package-group header h1 {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-size: 30px;
  line-height: 39px;
  font-weight: 900;
  text-transform: uppercase;
}
/* line 20, less/package-layout/components/package-group.less */
.package-layout-scope .package-group header h2 {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-transform: initial;
  color: #999;
}
/* line 31, less/package-layout/components/package-group.less */
.package-layout-scope .package-group--large {
  grid-template-areas: "header";
}
/* line 36, less/package-layout/components/package-group.less */
.package-layout-scope .package-group--medium {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "header header header";
}
/* line 42, less/package-layout/components/package-group.less */
.package-layout-scope .package-group--small {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-template-areas: "header header";
}
@media (max-width: 1200px) {
  /* line 50, less/package-layout/components/package-group.less */
  .package-layout-scope .package-group--medium {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-template-areas: "header header";
  }
}
@media (max-width: 900px) {
  /* line 58, less/package-layout/components/package-group.less */
  .package-layout-scope .package-group--small {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-template-areas: "header";
  }
  /* line 64, less/package-layout/components/package-group.less */
  .package-layout-scope .package-group--medium {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-template-areas: "header";
  }
}
/* line 71, less/package-layout/components/package-group.less */
.package-layout-scope .package-group__title {
  display: inline-block;
}
/* line 75, less/package-layout/components/package-group.less */
.package-layout-scope .package-group__topics {
  margin-top: 20px;
}
/* line 79, less/package-layout/components/package-group.less */
.package-layout-scope .package-group__topic {
  background: red;
  margin: 10px 10px 10px 0px;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 900;
}
/* line 87, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item-wrapper {
  margin: 15px 0px;
}
/* line 92, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item .source-attribution {
  margin-top: 5px;
  color: #AAA;
}
/* line 98, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item__excerpt {
  font-weight: 300;
  color: #CCC;
  margin-top: 5px;
}
@media (max-width: 640px) {
  /* line 103, less/package-layout/components/package-group.less */
  .package-layout-scope .package-group-item__excerpt {
    display: none;
  }
}
/* line 108, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item__content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 113, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item__title-wrapper {
  margin-right: 10px;
}
/* line 117, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item__image-wrapper {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 121, less/package-layout/components/package-group.less */
.package-layout-scope .package-group-item__image-wrapper img {
  width: 100%;
}
/* line 1, less/package-layout/components/post.less */
.package-layout-scope .package-post {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
/* line 6, less/package-layout/components/post.less */
.package-layout-scope .package-post header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 13, less/package-layout/components/post.less */
.package-layout-scope .package-post__preview {
  border: 1px solid #333;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
/* line 17, less/package-layout/components/post.less */
.package-layout-scope .package-post__preview .image-frame {
  background-color: #333;
}
/* line 22, less/package-layout/components/post.less */
.package-layout-scope .package-post__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
}
/* line 27, less/package-layout/components/post.less */
.package-layout-scope .package-post__text {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 31, less/package-layout/components/post.less */
.package-layout-scope .package-post__actions {
  margin-left: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 37, less/package-layout/components/post.less */
.package-layout-scope .package-post__title .post__title,
.package-layout-scope .package-post__title .source-attribution {
  display: initial;
  font-family: "Tiempos", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #FFF;
}
/* line 46, less/package-layout/components/post.less */
.package-layout-scope .package-post__title:not(:last-child) {
  margin-bottom: 8px;
}
/* line 51, less/package-layout/components/post.less */
.package-layout-scope .post__title {
  display: inline-block;
  overflow-wrap: break-word;
}
/* line 56, less/package-layout/components/post.less */
.package-layout-scope .package-group-item__prefix {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #F52828;
  margin-right: 5px;
}
/* line 65, less/package-layout/components/post.less */
.package-layout-scope .package-post--status {
  -ms-flex-align: stretch;
      align-items: stretch;
}
/* line 68, less/package-layout/components/post.less */
.package-layout-scope .package-post--status .package-post__preview {
  border: initial;
}
/* line 72, less/package-layout/components/post.less */
.package-layout-scope .package-post--status .package-post__media-wrapper {
  background-color: #333;
  padding: 16px;
  height: 100%;
  font-family: "Tiempos", Georgia, serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  width: initial;
  height: initial;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 89, less/package-layout/components/post.less */
.package-layout-scope .package-post--status .package-post__title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 95, less/package-layout/components/post.less */
.package-layout-scope .package-post__twitter-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-positive: 1;
      flex-grow: 1;
  overflow: hidden;
}
/* line 104, less/package-layout/components/post.less */
.package-layout-scope .package-post--twitter .twitter-text {
  overflow-wrap: break-word;
}
/* line 107, less/package-layout/components/post.less */
.package-layout-scope .package-post--twitter .twitter-text a {
  color: #F52828;
}
/* line 112, less/package-layout/components/post.less */
.package-layout-scope .package-post--twitter .package-post__metadata {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  color: #999;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  margin-top: 16px;
}
/* line 126, less/package-layout/components/post.less */
.package-layout-scope .package-post--section .package-post__title .post__title {
  font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 27px;
  text-transform: uppercase;
}
/* line 135, less/package-layout/components/post.less */
.package-layout-scope .package-post--section header {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: start;
      align-items: flex-start;
}
/* line 139, less/package-layout/components/post.less */
.package-layout-scope .package-post--section header .post-attribution__avatar {
  margin-right: 12px;
}
/* line 145, less/package-layout/components/post.less */
.package-layout-scope .package-post__subtitle {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
}
/* line 151, less/package-layout/components/post.less */
.package-layout-scope .package-post__subtitle:not(:last-child) {
  margin-bottom: 12px;
}
/* line 155, less/package-layout/components/post.less */
.package-layout-scope .package-post__subtitle .social-attribution {
  display: inline-block;
  color: #666;
}
/* line 161, less/package-layout/components/post.less */
.package-layout-scope .package-post__author-attribution,
.package-layout-scope .package-intro__author-attribution {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}
/* line 166, less/package-layout/components/post.less */
.package-layout-scope .package-post__author-attribution .post-attribution__avatar,
.package-layout-scope .package-intro__author-attribution .post-attribution__avatar {
  margin-right: 8px;
}
/* line 170, less/package-layout/components/post.less */
.package-layout-scope .package-post__author-attribution .post-attribution__author,
.package-layout-scope .package-intro__author-attribution .post-attribution__author {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  display: block;
}
/* line 178, less/package-layout/components/post.less */
.package-layout-scope .package-post__author-attribution .social-attribution,
.package-layout-scope .package-intro__author-attribution .social-attribution {
  color: #666;
  font-size: 12px;
  font-weight: 500;
}
/* line 184, less/package-layout/components/post.less */
.package-layout-scope .package-post__author-attribution:not(:last-child),
.package-layout-scope .package-intro__author-attribution:not(:last-child) {
  margin-bottom: 16px;
}
/* line 189, less/package-layout/components/post.less */
.package-layout-scope .package-intro__author-attribution {
  margin-top: 12px;
}
/* line 193, less/package-layout/components/post.less */
.package-layout-scope .package-post__excerpt {
  font-family: "Tiempos", Georgia, serif;
  font-size: 14px;
  line-height: 20px;
}
/* line 199, less/package-layout/components/post.less */
.package-layout-scope .package-post__media-wrapper {
  position: relative;
}
/* line 203, less/package-layout/components/post.less */
.package-layout-scope .package-post--small {
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
/* line 207, less/package-layout/components/post.less */
.package-layout-scope .package-post--small .package-post__preview {
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 211, less/package-layout/components/post.less */
.package-layout-scope .package-post--small .package-post__preview .gallery-preview {
  height: 80px;
}
/* line 215, less/package-layout/components/post.less */
.package-layout-scope .package-post--small .package-post__preview .image-frame {
  width: 80px;
  height: 80px;
}
/* line 221, less/package-layout/components/post.less */
.package-layout-scope .package-post--small .package-post__media-wrapper {
  width: 80px;
  height: 80px;
}
/* line 226, less/package-layout/components/post.less */
.package-layout-scope .package-post--small .package-post__content {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
/* line 230, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status {
  -ms-flex-align: stretch;
      align-items: stretch;
}
/* line 233, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__preview {
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin-right: initial;
}
/* line 238, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__media-wrapper {
  height: 100%;
}
/* line 242, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__content {
  margin-top: 12px;
  -ms-flex-positive: initial;
      flex-grow: initial;
}
/* line 249, less/package-layout/components/post.less */
.package-layout-scope .package-post--medium {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: strech;
      align-items: strech;
}
/* line 255, less/package-layout/components/post.less */
.package-layout-scope .package-post--medium.package-post--status .package-post__media-wrapper {
  min-height: 232px;
}
/* line 260, less/package-layout/components/post.less */
.package-layout-scope .package-post--medium .package-post__preview {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 12px;
  min-height: 232px;
}
/* line 265, less/package-layout/components/post.less */
.package-layout-scope .package-post--medium .package-post__preview .image-frame {
  width: 100%;
  height: 232px;
}
/* line 271, less/package-layout/components/post.less */
.package-layout-scope .package-post--medium .package-post__media-wrapper {
  width: 100%;
  min-height: 232px;
}
/* line 276, less/package-layout/components/post.less */
.package-layout-scope .package-post--medium .package-post__content {
  width: 100%;
}
/* line 282, less/package-layout/components/post.less */
.package-layout-scope .package-post--small .package-group-item__prefix,
.package-layout-scope .package-post--medium .package-group-item__prefix {
  margin-top: 1px;
}
/* line 286, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status,
.package-layout-scope .package-post--medium.package-post--status {
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 289, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__preview,
.package-layout-scope .package-post--medium.package-post--status .package-post__preview {
  height: initial;
}
/* line 293, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__media-wrapper,
.package-layout-scope .package-post--medium.package-post--status .package-post__media-wrapper {
  width: initial;
}
/* line 297, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__media-wrapper:after,
.package-layout-scope .package-post--medium.package-post--status .package-post__media-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 29px;
  border-top: 10px solid #333;
  border-top-color: #333;
  border-right: 13px solid transparent;
}
/* line 307, less/package-layout/components/post.less */
.package-layout-scope .package-post--small.package-post--status .package-post__content,
.package-layout-scope .package-post--medium.package-post--status .package-post__content {
  margin-bottom: 12px;
  width: 100%;
}
/* line 315, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .package-post__preview {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 318, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .package-post__preview .image-frame,
.package-layout-scope .package-post--large .package-post__preview .package-post__media-wrapper {
  width: 452px;
}
/* line 322, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .package-post__preview .image-frame,
.package-layout-scope .package-post--large .package-post__preview .gallery-preview {
  height: 282px;
}
/* line 326, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .package-post__preview .package-post__media-wrapper {
  margin: 0 auto;
  min-height: 282px;
}
/* line 331, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .package-post__preview:not(:last-child) {
  margin-right: 24px;
}
/* line 336, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .twitter-text,
.package-layout-scope .package-post--large .post__title,
.package-layout-scope .package-post--large .package-group-item__prefix {
  font-family: "Tiempos", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
}
/* line 343, less/package-layout/components/post.less */
.package-layout-scope .package-post--large .package-post__content {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media (max-width: 900px) {
  /* line 349, less/package-layout/components/post.less */
  .package-layout-scope .package-post--large {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  /* line 352, less/package-layout/components/post.less */
  .package-layout-scope .package-post--large .package-post__preview {
    margin-bottom: 12px;
  }
  /* line 355, less/package-layout/components/post.less */
  .package-layout-scope .package-post--large .package-post__preview .image-frame,
  .package-layout-scope .package-post--large .package-post__preview .package-post__media-wrapper {
    width: 100%;
  }
  /* line 359, less/package-layout/components/post.less */
  .package-layout-scope .package-post--large .package-post__preview:not(:last-child) {
    margin-right: initial;
  }
  /* line 364, less/package-layout/components/post.less */
  .package-layout-scope .package-post--large .package-post__content {
    width: 100%;
  }
}
@media (max-width: 600px) {
  /* line 373, less/package-layout/components/post.less */
  .package-layout-scope .package-post--section .package-post__title .post__title {
    font-family: "FaktCondensed", AvenirNextCondensed-Medium, "Segoe UI", sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 20px;
    text-transform: uppercase;
  }
}
/* line 1, less/package-layout/components/cropped-image.less */
.package-layout-scope .cropped-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 7, less/package-layout/components/cropped-image.less */
.package-layout-scope .cropped-image img {
  max-width: initial;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
/* line 13, less/package-layout/components/cropped-image.less */
.package-layout-scope .cropped-image img.cropped-image--hidden {
  visibility: hidden;
  opacity: 0;
}
/* line 1, less/package-layout/components/package-intro.less */
.package-layout-scope .package-intro {
  font-family: "Tiempos", Georgia, serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
/* line 1, less/package-layout/components/social-controls.less */
.package-layout-scope .social-actions__list-item {
  display: -ms-flexbox;
  display: flex;
}
/* line 5, less/package-layout/components/social-controls.less */
.package-layout-scope .social-actions__list-item-label {
  margin-left: 10px;
}
/* line 9, less/package-layout/components/social-controls.less */
.package-layout-scope .share-button-container,
.package-layout-scope .flip-button-container,
.package-layout-scope .follow-button-container {
  color: white;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
/* line 23, less/package-layout/components/social-controls.less */
.package-layout-scope .share-button-container:not(:last-child),
.package-layout-scope .flip-button-container:not(:last-child),
.package-layout-scope .follow-button-container:not(:last-child) {
  margin-right: 12px;
}
/* line 27, less/package-layout/components/social-controls.less */
.mobile .package-layout-scope .share-button-container,
.mobile .package-layout-scope .flip-button-container,
.mobile .package-layout-scope .follow-button-container {
  min-height: 30px;
}
/* line 32, less/package-layout/components/social-controls.less */
.package-layout-scope .share-button-container,
.package-layout-scope .follow-button-container {
  background-color: #F52828;
}
/* line 36, less/package-layout/components/social-controls.less */
.package-layout-scope .follow-button-container--in-progress {
  background-color: #333;
  cursor: not-allowed;
}
/* line 1, less/package-layout/components/gallery-preview.less */
.package-layout-scope .gallery-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 232px;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "primary secondary" "primary tertiary";
}
/* line 8, less/package-layout/components/gallery-preview.less */
.package-layout-scope .gallery-preview .gallery-preview__primary-image {
  grid-area: primary;
}
/* line 12, less/package-layout/components/gallery-preview.less */
.package-layout-scope .gallery-preview .gallery-preview__secondary-image {
  grid-area: secondary;
}
/* line 16, less/package-layout/components/gallery-preview.less */
.package-layout-scope .gallery-preview .gallery-preview__tertiary-image {
  grid-area: tertiary;
}
/* line 47, less/app.less */
#main,
.root,
.route,
.route > div {
  position: relative;
  height: 100%;
}
/* line 52, less/app.less */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
}
/* line 57, less/app.less */
em,
i {
  font-style: normal;
  font-weight: 500;
}
/* line 62, less/app.less */
a {
  cursor: pointer;
}
/* line 67, less/app.less */
img {
  -webkit-touch-callout: none;
}
/* line 71, less/app.less */
#main {
  position: relative;
  min-height: 100%;
}
/* line 75, less/app.less */
#main.loading {
  visibility: hidden;
}
/* line 80, less/app.less */
.g00g {
  padding: 25px;
  max-width: 960px;
  margin: 0 auto;
}
/* line 85, less/app.less */
.g00g h1 {
  margin: 20px 0;
  font-weight: 500;
  text-align: center;
}
/* line 91, less/app.less */
.g00g h2 {
  margin: 20px 0;
  text-align: center;
}
/* line 96, less/app.less */
.g00g h3 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 22px;
}
/* line 102, less/app.less */
.g00g p {
  font: normal normal 16px/1.5 Georgia;
}
/* line 106, less/app.less */
.g00g .item {
  margin-bottom: 30px;
}
/* line 110, less/app.less */
.g00g .topic,
.g00g a:hover {
  text-decoration: underline;
}
/* line 115, less/app.less */
.app,
.navigation-stack {
  position: relative;
  height: 100%;
}
/* line 120, less/app.less */
.item--desktop {
  padding-top: 60px;
}
/* line 124, less/app.less */
.page-content {
  margin: 0 auto;
}
/* line 128, less/app.less */
.fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
/* line 137, less/app.less */
[role="button"],
button,
input[type="submit"] {
  font-family: "Fakt", AvenirNext-Medium, "Segoe UI", sans-serif;
  cursor: pointer;
}
/* line 142, less/app.less */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 30;
}
/* line 151, less/app.less */
.hover-sheet {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* line 161, less/app.less */
.truncated-text {
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}
/* line 180, less/app.less */
.heading {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 189, less/app.less */
.subheading {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}
/* line 196, less/app.less */
.app__recaptcha-wrapper .grecaptcha-badge {
  display: none;
}
/* line 203, less/app.less */
.hbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
/* line 208, less/app.less */
.vbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 213, less/app.less */
.hbox.valign,
.vbox.halign {
  -ms-flex-align: center;
      align-items: center;
}
/* line 217, less/app.less */
.hbox.halign,
.vbox.valign {
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 221, less/app.less */
.no-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* line 228, less/app.less */
.fade-enter {
  opacity: 0;
}
/* line 232, less/app.less */
.fade-enter.fade-enter-active {
  transition-property: transform, opacity;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  opacity: 1;
}
/* line 237, less/app.less */
.fade-leave {
  opacity: 1;
}
/* line 241, less/app.less */
.fade-leave.fade-leave-active {
  transition-property: transform, opacity;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  opacity: 0;
}
/* line 246, less/app.less */
#atlwdg-trigger {
  bottom: 110px;
}
@media (max-width: 767px) {
  /* line 251, less/app.less */
  #atlwdg-trigger {
    display: none;
  }
}
/* line 257, less/app.less */
a.post-anchor {
  width: 0px;
  height: 0px;
  position: absolute;
}
/*# sourceMappingURL=public/css/app.css.map */