/*
colpick Color Picker / colpick.com
*/
/*Main container*/
.colpick {
  position: absolute;
  width: 346px;
  height: 170px;
  overflow: hidden;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  background: #ebebeb;
  border: 1px solid #bbb;
  border-radius: 5px;
  /*Prevents selecting text when dragging the selectors*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

/*Color selection box with gradients*/
.colpick_color {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 156px;
  height: 156px;
  overflow: hidden;
  outline: 1px solid #aaa;
  cursor: crosshair; }

.colpick_color_overlay1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 156px;
  height: 156px;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')";
  /* IE8 */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, white), color-stop(100%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff');
  /* IE6 & IE7 */ }

.colpick_color_overlay2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 156px;
  height: 156px;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')";
  /* IE8 */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, black));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, transparent 0%, black 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */ }

/*Circular color selector*/
.colpick_selector_outer {
  background: none;
  position: absolute;
  width: 11px;
  height: 11px;
  margin: -6px 0 0 -6px;
  border: 1px solid black;
  border-radius: 50%; }

.colpick_selector_inner {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid white;
  border-radius: 50%; }

/*Vertical hue bar*/
.colpick_hue {
  position: absolute;
  top: 6px;
  left: 175px;
  width: 19px;
  height: 156px;
  border: 1px solid #aaa;
  cursor: n-resize; }

/*Hue bar sliding indicator*/
.colpick_hue_arrs {
  position: absolute;
  left: -8px;
  width: 35px;
  height: 7px;
  margin: -7px 0 0 0; }

.colpick_hue_larr {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #858585; }

.colpick_hue_rarr {
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 7px solid #858585; }

/*New color box*/
.colpick_new_color {
  position: absolute;
  left: 207px;
  top: 6px;
  width: 60px;
  height: 27px;
  background: #f00;
  border: 1px solid #8f8f8f; }

/*Current color box*/
.colpick_current_color {
  position: absolute;
  left: 277px;
  top: 6px;
  width: 60px;
  height: 27px;
  background: #f00;
  border: 1px solid #8f8f8f; }

/*Input field containers*/
.colpick_field, .colpick_hex_field {
  position: absolute;
  height: 20px;
  width: 60px;
  overflow: hidden;
  background: #f3f3f3;
  color: #b8b8b8;
  font-size: 12px;
  border: 1px solid #bdbdbd;
  border-radius: 3px; }

.colpick_rgb_r {
  top: 40px;
  left: 207px; }

.colpick_rgb_g {
  top: 67px;
  left: 207px; }

.colpick_rgb_b {
  top: 94px;
  left: 207px; }

.colpick_hsb_h {
  top: 40px;
  left: 277px; }

.colpick_hsb_s {
  top: 67px;
  left: 277px; }

.colpick_hsb_b {
  top: 94px;
  left: 277px; }

.colpick_hex_field {
  width: 68px;
  left: 207px;
  top: 121px; }

/*Text field container on focus*/
.colpick_focus {
  border-color: #999; }

/*Field label container*/
.colpick_field_letter {
  position: absolute;
  width: 12px;
  height: 20px;
  line-height: 20px;
  padding-left: 4px;
  background: #efefef;
  border-right: 1px solid #bdbdbd;
  font-weight: bold;
  color: #777; }

/*Text inputs*/
.colpick_field input, .colpick_hex_field input {
  position: absolute;
  right: 11px;
  margin: 0;
  padding: 0;
  height: 20px;
  line-height: 20px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #555;
  text-align: right;
  outline: none; }

.colpick_hex_field input {
  right: 4px; }

/*Field up/down arrows*/
.colpick_field_arrs {
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 21px;
  cursor: n-resize; }

.colpick_field_uarr {
  position: absolute;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #959595; }

.colpick_field_darr {
  position: absolute;
  bottom: 5px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #959595; }

/*Submit/Select button*/
.colpick_submit {
  position: absolute;
  left: 207px;
  top: 149px;
  width: 130px;
  height: 22px;
  line-height: 22px;
  background: #efefef;
  text-align: center;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #bdbdbd;
  border-radius: 3px; }

.colpick_submit:hover {
  background: #f3f3f3;
  border-color: #999;
  cursor: pointer; }

/*full layout with no submit button*/
.colpick_full_ns .colpick_submit, .colpick_full_ns .colpick_current_color {
  display: none; }

.colpick_full_ns .colpick_new_color {
  width: 130px;
  height: 25px; }

.colpick_full_ns .colpick_rgb_r, .colpick_full_ns .colpick_hsb_h {
  top: 42px; }

.colpick_full_ns .colpick_rgb_g, .colpick_full_ns .colpick_hsb_s {
  top: 73px; }

.colpick_full_ns .colpick_rgb_b, .colpick_full_ns .colpick_hsb_b {
  top: 104px; }

.colpick_full_ns .colpick_hex_field {
  top: 135px; }

/*rgbhex layout*/
.colpick_rgbhex .colpick_hsb_h, .colpick_rgbhex .colpick_hsb_s, .colpick_rgbhex .colpick_hsb_b {
  display: none; }

.colpick_rgbhex {
  width: 282px; }

.colpick_rgbhex .colpick_field, .colpick_rgbhex .colpick_submit {
  width: 68px; }

.colpick_rgbhex .colpick_new_color {
  width: 34px;
  border-right: none; }

.colpick_rgbhex .colpick_current_color {
  width: 34px;
  left: 240px;
  border-left: none; }

/*rgbhex layout, no submit button*/
.colpick_rgbhex_ns .colpick_submit, .colpick_rgbhex_ns .colpick_current_color {
  display: none; }

.colpick_rgbhex_ns .colpick_new_color {
  width: 68px;
  border: 1px solid #8f8f8f; }

.colpick_rgbhex_ns .colpick_rgb_r {
  top: 42px; }

.colpick_rgbhex_ns .colpick_rgb_g {
  top: 73px; }

.colpick_rgbhex_ns .colpick_rgb_b {
  top: 104px; }

.colpick_rgbhex_ns .colpick_hex_field {
  top: 135px; }

/*hex layout*/
.colpick_hex .colpick_hsb_h, .colpick_hex .colpick_hsb_s, .colpick_hex .colpick_hsb_b, .colpick_hex .colpick_rgb_r, .colpick_hex .colpick_rgb_g, .colpick_hex .colpick_rgb_b {
  display: none; }

.colpick_hex {
  width: 206px;
  height: 201px; }

.colpick_hex .colpick_hex_field {
  width: 72px;
  height: 25px;
  top: 168px;
  left: 80px; }

.colpick_hex .colpick_hex_field div, .colpick_hex .colpick_hex_field input {
  height: 25px;
  line-height: 25px; }

.colpick_hex .colpick_new_color {
  left: 9px;
  top: 168px;
  width: 30px;
  border-right: none; }

.colpick_hex .colpick_current_color {
  left: 39px;
  top: 168px;
  width: 30px;
  border-left: none; }

.colpick_hex .colpick_submit {
  left: 164px;
  top: 168px;
  width: 30px;
  height: 25px;
  line-height: 25px; }

/*hex layout, no submit button*/
.colpick_hex_ns .colpick_submit, .colpick_hex_ns .colpick_current_color {
  display: none; }

.colpick_hex_ns .colpick_hex_field {
  width: 80px; }

.colpick_hex_ns .colpick_new_color {
  width: 60px;
  border: 1px solid #8f8f8f; }

/*Dark color scheme*/
.colpick_dark {
  background: #161616;
  border-color: #2a2a2a; }

.colpick_dark .colpick_color {
  outline-color: #333; }

.colpick_dark .colpick_hue {
  border-color: #555; }

.colpick_dark .colpick_field, .colpick_dark .colpick_hex_field {
  background: #101010;
  border-color: #2d2d2d; }

.colpick_dark .colpick_field_letter {
  background: #131313;
  border-color: #2d2d2d;
  color: #696969; }

.colpick_dark .colpick_field input, .colpick_dark .colpick_hex_field input {
  color: #7a7a7a; }

.colpick_dark .colpick_field_uarr {
  border-bottom-color: #696969; }

.colpick_dark .colpick_field_darr {
  border-top-color: #696969; }

.colpick_dark .colpick_focus {
  border-color: #444; }

.colpick_dark .colpick_submit {
  background: #131313;
  border-color: #2d2d2d;
  color: #7a7a7a; }

.colpick_dark .colpick_submit:hover {
  background-color: #101010;
  border-color: #444; }

@font-face {
  font-family: "SSPika";
  src: url("/assets/fonts/ss-pika.eot");
  src: url("/assets/fonts/ss-pika.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/ss-pika.woff") format("woff"), url("/assets/fonts/ss-pika.ttf") format("truetype"), url("/assets/fonts/ss-pika.svg#SSPika") format("svg");
  font-weight: normal;
  font-style: normal; }

.ss-icon, .sidebar-button, .playlist-container .playlist-toggle, #notifications-list li .avatar-container .avatar:last-child:after, .feed-message .close-button, .notification .close {
  font-family: "SSPika";
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased; }

.flip {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1); }

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  font-size: 0; }

@-webkit-keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
    transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0; }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
    transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: 0.7; }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1; }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1; }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1; } }

@keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
    transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0; }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
    transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: 0.7; }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1; }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1; }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1; } }

.medium-toolbar-arrow-under:after, .medium-toolbar-arrow-over:before {
  position: absolute;
  left: 50%;
  display: block;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  content: ""; }

.medium-toolbar-arrow-under:after {
  border-width: 8px 8px 0 8px; }

.medium-toolbar-arrow-over:before {
  top: -8px;
  border-width: 0 8px 8px 8px; }

.medium-editor-toolbar, .medium-editor-anchor-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  visibility: hidden;
  font-size: 16px;
  font-family: HelveticaNeue, Helvetica, Arial, sans-serif; }

.medium-editor-toolbar ul, .medium-editor-anchor-preview ul {
  margin: 0;
  padding: 0; }

.medium-editor-toolbar li, .medium-editor-anchor-preview li {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none; }

.medium-editor-toolbar li button, .medium-editor-anchor-preview li button {
  display: block;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.33;
  text-decoration: none;
  box-sizing: border-box; }

.medium-editor-toolbar li .medium-editor-action-underline, .medium-editor-anchor-preview li .medium-editor-action-underline {
  text-decoration: underline; }

.medium-editor-toolbar li .medium-editor-action-pre, .medium-editor-anchor-preview li .medium-editor-action-pre {
  padding: 15px 0;
  font-weight: 100;
  font-size: 12px;
  font-family: 'Menlo', monospace; }

.medium-editor-anchor-preview i {
  display: inline-block;
  margin: 5px 5px 5px 10px;
  text-decoration: underline;
  font-style: normal;
  cursor: pointer; }

.medium-editor-toolbar-active, .medium-editor-anchor-preview-active {
  visibility: visible; }

.sticky-toolbar {
  position: fixed;
  top: 1px; }

.stalker-toolbar {
  -webkit-animation: pop-upwards 160ms forwards linear;
  animation: pop-upwards 160ms forwards linear;
  -webkit-transition: top 0.075s ease-out, left 0.075s ease-out;
          transition: top 0.075s ease-out, left 0.075s ease-out; }

.medium-editor-action-bold {
  font-weight: bolder; }

.medium-editor-action-italic {
  font-style: italic; }

.medium-editor-toolbar-form-anchor {
  display: none; }

.medium-editor-toolbar-form-anchor input, .medium-editor-toolbar-form-anchor a {
  font-family: HelveticaNeue, Helvetica, Arial, sans-serif; }

.medium-editor-toolbar-form-anchor .medium-editor-toolbar-anchor-input, .medium-editor-toolbar-form-anchor label {
  margin: 0;
  padding: 6px;
  width: 316px;
  border: none;
  font-size: 14px;
  box-sizing: border-box; }

.medium-editor-toolbar-form-anchor .medium-editor-toolbar-anchor-input:focus, .medium-editor-toolbar-form-anchor label:focus {
  outline: 0;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

.medium-editor-toolbar-form-anchor label {
  display: block; }

.medium-editor-toolbar-form-anchor a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bolder;
  font-size: 24px; }

.medium-editor-placeholder {
  position: relative; }

.medium-editor-placeholder:after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-placeholder) !important;
  font-style: italic; }

.tipsy {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  position: absolute;
  padding: 5px;
  z-index: 100000; }
  .tipsy .tipsy-inner {
    background-color: #000;
    color: #FFF;
    max-width: 350px;
    padding: 5px 8px 4px;
    text-align: center;
    border-radius: 2px;
    white-space: nowrap; }
  .tipsy .tipsy-arrow {
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    border: 5px dashed #000; }

/* Rules to colour arrows */
.tipsy-arrow-n {
  border-bottom-color: #000; }

.tipsy-arrow-s {
  border-top-color: #000; }

.tipsy-arrow-e {
  border-left-color: #000; }

.tipsy-arrow-w {
  border-right-color: #000; }

.tipsy-n .tipsy-arrow {
  top: 0px;
  left: 50%;
  margin-left: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent; }

.tipsy-nw .tipsy-arrow {
  top: 0;
  left: 10px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent; }

.tipsy-ne .tipsy-arrow {
  top: 0;
  right: 10px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent; }

.tipsy-s .tipsy-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent; }

.tipsy-sw .tipsy-arrow {
  bottom: 0;
  left: 10px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent; }

.tipsy-se .tipsy-arrow {
  bottom: 0;
  right: 10px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent; }

.tipsy-e .tipsy-arrow {
  right: 0;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent; }

.tipsy-w .tipsy-arrow {
  left: 0;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent; }

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

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

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

html, body, div, span, applet, object, iframe, h1, #editor-chapter-title, h2, h3, h4, h5, h6, #bottom-navbar ul small, #bottom-navbar ul .detail-header .avatar .small, .detail-header .avatar #bottom-navbar ul .small, #bottom-navbar ul .detail-header .avatar form .form-content .form-element-helper, .detail-header .avatar form .form-content #bottom-navbar ul .form-element-helper, #bottom-navbar ul form .form-content .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar #bottom-navbar ul .form-element-helper, #bottom-navbar ul .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul .free, #bottom-navbar ul #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul .free, #bottom-navbar ul .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li, #bottom-navbar ul #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li #bottom-navbar ul a, #bottom-navbar ul #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar #bottom-navbar ul a, #bottom-navbar ul .detail-header .avatar .error .error-message, .detail-header .avatar .error #bottom-navbar ul .error-message, #bottom-navbar ul .error .detail-header .avatar .error-message, .error .detail-header .avatar #bottom-navbar ul .error-message, #bottom-navbar ul .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul dt, #bottom-navbar ul .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul dt, #bottom-navbar ul .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table #bottom-navbar ul thead, #bottom-navbar ul #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar #bottom-navbar ul thead, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li #bottom-navbar ul .sub, #bottom-navbar ul .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar #bottom-navbar ul .sub, #bottom-navbar ul .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li, #bottom-navbar ul .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card .bottom-button li, .detail-header .avatar
.user-card .bottom-button #bottom-navbar ul li, #bottom-navbar ul
.user-card .bottom-button .detail-header .avatar li,
.user-card .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card-flipped .user-card-meta li, .detail-header .avatar
.user-card-flipped .user-card-meta #bottom-navbar ul li, #bottom-navbar ul
.user-card-flipped .user-card-meta .detail-header .avatar li,
.user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card-flipped .bottom-button li, .detail-header .avatar
.user-card-flipped .bottom-button #bottom-navbar ul li, #bottom-navbar ul
.user-card-flipped .bottom-button .detail-header .avatar li,
.user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container #bottom-navbar ul .toggle-button, #bottom-navbar ul .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar #bottom-navbar ul .toggle-button, #bottom-navbar .detail-header .avatar #notifications-filters ul li label, .detail-header .avatar #notifications-filters #bottom-navbar ul li label, #bottom-navbar #notifications-filters ul li .detail-header .avatar label, #notifications-filters #bottom-navbar ul li .detail-header .avatar label, #bottom-navbar ul .detail-header .avatar .message p, .detail-header .avatar .message #bottom-navbar ul p, #bottom-navbar ul .message .detail-header .avatar p, .message .detail-header .avatar #bottom-navbar ul p, #bottom-navbar ul .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul .variable, #bottom-navbar ul #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul .variable, .user-card .status,
.user-card-flipped .status, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, .detail-header .avatar .small, .detail-header .avatar form .form-content .form-element-helper, form .form-content .detail-header .avatar .form-element-helper, .detail-header .avatar #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header .detail-header .avatar .free, .detail-header .avatar #plan-selector .check-list li, #plan-selector .check-list .detail-header .avatar li, .detail-header .avatar #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown li .detail-header .avatar a, .detail-header .avatar .error .error-message, .error .detail-header .avatar .error-message, .detail-header .avatar .sub-nav .user-teams dt, .sub-nav .user-teams .detail-header .avatar dt, .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, .detail-header .avatar #billing .billing-table thead, #billing .billing-table .detail-header .avatar thead, .detail-header .avatar .big-selector.subs.open li .sub, .big-selector.subs.open li .detail-header .avatar .sub, .detail-header .avatar .user-card .user-card-meta li, .user-card .user-card-meta .detail-header .avatar li, .detail-header .avatar
.user-card .bottom-button li,
.user-card .bottom-button .detail-header .avatar li, .detail-header .avatar
.user-card-flipped .user-card-meta li,
.user-card-flipped .user-card-meta .detail-header .avatar li, .detail-header .avatar
.user-card-flipped .bottom-button li,
.user-card-flipped .bottom-button .detail-header .avatar li, .detail-header .avatar .topic-container .toggle-button, .topic-container .detail-header .avatar .toggle-button, .detail-header .avatar #notifications-filters ul li label, #notifications-filters ul li .detail-header .avatar label, .detail-header .avatar .message p, .message .detail-header .avatar p, .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: "";
  content: none; }

q:before, q:after {
  content: "";
  content: none; }

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

* {
  box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale; }

.container, .row {
  *zoom: 1; }
  .container:before, .row:before, .container:after, .row:after {
    content: " ";
    display: table; }
  .container:after, .row:after {
    clear: both; }

.container {
  max-width: 1008px;
  margin-right: auto;
  margin-left: auto; }
  .container.fluid {
    width: 100%;
    max-width: inherit; }

.row:first-of-type {
  padding-top: 2%; }

.row.valign [class*="col-"] {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: -4px; }

.row.spaced {
  padding-top: 12%;
  padding-bottom: 12%; }

.row.compressed {
  padding-top: 1%;
  padding-bottom: 1%; }

[class*="col-"] {
  float: left;
  margin: 0 0 2% 2%;
  position: relative; }
  [class*="col-"].pull-right {
    float: right;
    margin-right: 2%; }
  [class*="col-"].centered {
    float: none;
    margin: 0 auto 2%; }

.col-1 {
  width: 6.1666666667%; }

.offset-1 {
  margin-left: 10.1666666667%; }

.col-2 {
  width: 14.3333333333%; }

.offset-2 {
  margin-left: 18.3333333333%; }

.col-3 {
  width: 22.5%; }

.offset-3 {
  margin-left: 26.5%; }

.col-4 {
  width: 30.6666666667%; }

.offset-4 {
  margin-left: 34.6666666667%; }

.col-5 {
  width: 38.8333333333%; }

.offset-5 {
  margin-left: 42.8333333333%; }

.col-6 {
  width: 47%; }

.offset-6 {
  margin-left: 51%; }

.col-7 {
  width: 55.1666666667%; }

.offset-7 {
  margin-left: 59.1666666667%; }

.col-8 {
  width: 63.3333333333%; }

.offset-8 {
  margin-left: 67.3333333333%; }

.col-9 {
  width: 71.5%; }

.offset-9 {
  margin-left: 75.5%; }

.col-10 {
  width: 79.6666666667%; }

.offset-10 {
  margin-left: 83.6666666667%; }

.col-11 {
  width: 87.8333333333%; }

.offset-11 {
  margin-left: 91.8333333333%; }

.col-12 {
  width: 96%; }

.offset-12 {
  margin-left: 100%; }

@media (max-width: 1200px) {
  .col-1 {
    width: 96%; }
  .col-medium-1 {
    width: 6.1666666667% !important; }
  .offset-1 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-2 {
    width: 96%; }
  .col-medium-2 {
    width: 14.3333333333% !important; }
  .offset-2 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-3 {
    width: 96%; }
  .col-medium-3 {
    width: 22.5% !important; }
  .offset-3 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-4 {
    width: 96%; }
  .col-medium-4 {
    width: 30.6666666667% !important; }
  .offset-4 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-5 {
    width: 96%; }
  .col-medium-5 {
    width: 38.8333333333% !important; }
  .offset-5 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-6 {
    width: 96%; }
  .col-medium-6 {
    width: 47% !important; }
  .offset-6 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-7 {
    width: 96%; }
  .col-medium-7 {
    width: 55.1666666667% !important; }
  .offset-7 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-8 {
    width: 96%; }
  .col-medium-8 {
    width: 63.3333333333% !important; }
  .offset-8 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-9 {
    width: 96%; }
  .col-medium-9 {
    width: 71.5% !important; }
  .offset-9 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-10 {
    width: 96%; }
  .col-medium-10 {
    width: 79.6666666667% !important; }
  .offset-10 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-11 {
    width: 96%; }
  .col-medium-11 {
    width: 87.8333333333% !important; }
  .offset-11 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; }
  .col-12 {
    width: 96%; }
  .col-medium-12 {
    width: 96% !important; }
  .offset-12 {
    margin-left: 2%; }
  .pull-right {
    margin-right: 0; } }

@media (max-width: 767px) {
  [class*="col-"] {
    width: 96%; }
  .col-small-1 {
    width: 6.1666666667% !important; }
  .col-small-2 {
    width: 14.3333333333% !important; }
  .col-small-3 {
    width: 22.5% !important; }
  .col-small-4 {
    width: 30.6666666667% !important; }
  .col-small-5 {
    width: 38.8333333333% !important; }
  .col-small-6 {
    width: 47% !important; }
  .col-small-7 {
    width: 55.1666666667% !important; }
  .col-small-8 {
    width: 63.3333333333% !important; }
  .col-small-9 {
    width: 71.5% !important; }
  .col-small-10 {
    width: 79.6666666667% !important; }
  .col-small-11 {
    width: 87.8333333333% !important; }
  .col-small-12 {
    width: 96% !important; }
  [class*="offset-"] {
    margin-left: 2%; } }

@media (max-width: 420px) {
  [class*="col-"] {
    width: 96% !important; } }

/*=========================================
TYPOGRAPHY
===========================================*/
body {
  font-family: "Open Sans", sans-serif;
  color: rgba(0, 0, 0, 0.6); }

h1, #editor-chapter-title, h2, h3, h4, h5, h6, #bottom-navbar ul small, #bottom-navbar ul .detail-header .avatar .small, .detail-header .avatar #bottom-navbar ul .small, #bottom-navbar ul .detail-header .avatar form .form-content .form-element-helper, .detail-header .avatar form .form-content #bottom-navbar ul .form-element-helper, #bottom-navbar ul form .form-content .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar #bottom-navbar ul .form-element-helper, #bottom-navbar ul .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul .free, #bottom-navbar ul #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul .free, #bottom-navbar ul .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li, #bottom-navbar ul #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li #bottom-navbar ul a, #bottom-navbar ul #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar #bottom-navbar ul a, #bottom-navbar ul .detail-header .avatar .error .error-message, .detail-header .avatar .error #bottom-navbar ul .error-message, #bottom-navbar ul .error .detail-header .avatar .error-message, .error .detail-header .avatar #bottom-navbar ul .error-message, #bottom-navbar ul .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul dt, #bottom-navbar ul .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul dt, #bottom-navbar ul .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table #bottom-navbar ul thead, #bottom-navbar ul #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar #bottom-navbar ul thead, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li #bottom-navbar ul .sub, #bottom-navbar ul .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar #bottom-navbar ul .sub, #bottom-navbar ul .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li, #bottom-navbar ul .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card .bottom-button li, .detail-header .avatar
.user-card .bottom-button #bottom-navbar ul li, #bottom-navbar ul
.user-card .bottom-button .detail-header .avatar li,
.user-card .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card-flipped .user-card-meta li, .detail-header .avatar
.user-card-flipped .user-card-meta #bottom-navbar ul li, #bottom-navbar ul
.user-card-flipped .user-card-meta .detail-header .avatar li,
.user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card-flipped .bottom-button li, .detail-header .avatar
.user-card-flipped .bottom-button #bottom-navbar ul li, #bottom-navbar ul
.user-card-flipped .bottom-button .detail-header .avatar li,
.user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container #bottom-navbar ul .toggle-button, #bottom-navbar ul .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar #bottom-navbar ul .toggle-button, #bottom-navbar .detail-header .avatar #notifications-filters ul li label, .detail-header .avatar #notifications-filters #bottom-navbar ul li label, #bottom-navbar #notifications-filters ul li .detail-header .avatar label, #notifications-filters #bottom-navbar ul li .detail-header .avatar label, #bottom-navbar ul .detail-header .avatar .message p, .detail-header .avatar .message #bottom-navbar ul p, #bottom-navbar ul .message .detail-header .avatar p, .message .detail-header .avatar #bottom-navbar ul p, #bottom-navbar ul .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul .variable, #bottom-navbar ul #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul .variable, .user-card .status,
.user-card-flipped .status {
  font-weight: 200;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 18px;
  line-height: 1.3em; }
  h1 a, #editor-chapter-title a, h2 a, h3 a, h4 a, h5 a, h6 a, #bottom-navbar ul small a, #bottom-navbar ul .detail-header .avatar .small a, .detail-header .avatar #bottom-navbar ul .small a, #bottom-navbar ul .detail-header .avatar form .form-content .form-element-helper a, .detail-header .avatar form .form-content #bottom-navbar ul .form-element-helper a, #bottom-navbar ul form .form-content .detail-header .avatar .form-element-helper a, form .form-content .detail-header .avatar #bottom-navbar ul .form-element-helper a, #bottom-navbar ul .detail-header .avatar #plan-selector .plan .plan-header .free a, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul .free a, #bottom-navbar ul #plan-selector .plan .plan-header .detail-header .avatar .free a, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul .free a, #bottom-navbar ul .detail-header .avatar #plan-selector .check-list li a, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li a, #bottom-navbar ul #plan-selector .check-list .detail-header .avatar li a, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li a, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li a a, .detail-header .avatar #playlist-dropdown-selector .dropdown li #bottom-navbar ul a a, #bottom-navbar ul #playlist-dropdown-selector .dropdown li .detail-header .avatar a a, #playlist-dropdown-selector .dropdown li .detail-header .avatar #bottom-navbar ul a a, #bottom-navbar ul .detail-header .avatar .error .error-message a, .detail-header .avatar .error #bottom-navbar ul .error-message a, #bottom-navbar ul .error .detail-header .avatar .error-message a, .error .detail-header .avatar #bottom-navbar ul .error-message a, #bottom-navbar ul .detail-header .avatar .sub-nav .user-teams dt a, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul dt a, #bottom-navbar ul .sub-nav .user-teams .detail-header .avatar dt a, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul dt a, #bottom-navbar ul .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links a, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul .condensed-sub-links a, #bottom-navbar ul #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links a, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul .condensed-sub-links a, #bottom-navbar ul .detail-header .avatar #billing .billing-table thead a, .detail-header .avatar #billing .billing-table #bottom-navbar ul thead a, #bottom-navbar ul #billing .billing-table .detail-header .avatar thead a, #billing .billing-table .detail-header .avatar #bottom-navbar ul thead a, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li .sub a, .detail-header .avatar .big-selector.subs.open li #bottom-navbar ul .sub a, #bottom-navbar ul .big-selector.subs.open li .detail-header .avatar .sub a, .big-selector.subs.open li .detail-header .avatar #bottom-navbar ul .sub a, #bottom-navbar ul .detail-header .avatar .user-card .user-card-meta li a, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li a, #bottom-navbar ul .user-card .user-card-meta .detail-header .avatar li a, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li a, #bottom-navbar ul .detail-header .avatar
  .user-card .bottom-button li a, .detail-header .avatar
  .user-card .bottom-button #bottom-navbar ul li a, #bottom-navbar ul
  .user-card .bottom-button .detail-header .avatar li a,
  .user-card .bottom-button .detail-header .avatar #bottom-navbar ul li a, #bottom-navbar ul .detail-header .avatar
  .user-card-flipped .user-card-meta li a, .detail-header .avatar
  .user-card-flipped .user-card-meta #bottom-navbar ul li a, #bottom-navbar ul
  .user-card-flipped .user-card-meta .detail-header .avatar li a,
  .user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li a, #bottom-navbar ul .detail-header .avatar
  .user-card-flipped .bottom-button li a, .detail-header .avatar
  .user-card-flipped .bottom-button #bottom-navbar ul li a, #bottom-navbar ul
  .user-card-flipped .bottom-button .detail-header .avatar li a,
  .user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li a, #bottom-navbar ul .detail-header .avatar .topic-container .toggle-button a, .detail-header .avatar .topic-container #bottom-navbar ul .toggle-button a, #bottom-navbar ul .topic-container .detail-header .avatar .toggle-button a, .topic-container .detail-header .avatar #bottom-navbar ul .toggle-button a, #bottom-navbar .detail-header .avatar #notifications-filters ul li label a, .detail-header .avatar #notifications-filters #bottom-navbar ul li label a, #bottom-navbar #notifications-filters ul li .detail-header .avatar label a, #notifications-filters #bottom-navbar ul li .detail-header .avatar label a, #bottom-navbar ul .detail-header .avatar .message p a, .detail-header .avatar .message #bottom-navbar ul p a, #bottom-navbar ul .message .detail-header .avatar p a, .message .detail-header .avatar #bottom-navbar ul p a, #bottom-navbar ul .detail-header .avatar #style-guide .swatch-container .swatch-info .variable a, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul .variable a, #bottom-navbar ul #style-guide .swatch-container .swatch-info .detail-header .avatar .variable a, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul .variable a, .user-card .status a,
  .user-card-flipped .status a {
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color 0.2s;
            transition: border-color 0.2s; }
    h1 a:hover, #editor-chapter-title a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, #bottom-navbar ul small a:hover, #bottom-navbar ul .detail-header .avatar .small a:hover, .detail-header .avatar #bottom-navbar ul .small a:hover, #bottom-navbar ul .detail-header .avatar form .form-content .form-element-helper a:hover, .detail-header .avatar form .form-content #bottom-navbar ul .form-element-helper a:hover, #bottom-navbar ul form .form-content .detail-header .avatar .form-element-helper a:hover, form .form-content .detail-header .avatar #bottom-navbar ul .form-element-helper a:hover, #bottom-navbar ul .detail-header .avatar #plan-selector .plan .plan-header .free a:hover, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul .free a:hover, #bottom-navbar ul #plan-selector .plan .plan-header .detail-header .avatar .free a:hover, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul .free a:hover, #bottom-navbar ul .detail-header .avatar #plan-selector .check-list li a:hover, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li a:hover, #bottom-navbar ul #plan-selector .check-list .detail-header .avatar li a:hover, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li a:hover, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li a a:hover, .detail-header .avatar #playlist-dropdown-selector .dropdown li #bottom-navbar ul a a:hover, #bottom-navbar ul #playlist-dropdown-selector .dropdown li .detail-header .avatar a a:hover, #playlist-dropdown-selector .dropdown li .detail-header .avatar #bottom-navbar ul a a:hover, #bottom-navbar ul .detail-header .avatar .error .error-message a:hover, .detail-header .avatar .error #bottom-navbar ul .error-message a:hover, #bottom-navbar ul .error .detail-header .avatar .error-message a:hover, .error .detail-header .avatar #bottom-navbar ul .error-message a:hover, #bottom-navbar ul .detail-header .avatar .sub-nav .user-teams dt a:hover, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul dt a:hover, #bottom-navbar ul .sub-nav .user-teams .detail-header .avatar dt a:hover, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul dt a:hover, #bottom-navbar ul .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links a:hover, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul .condensed-sub-links a:hover, #bottom-navbar ul #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links a:hover, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul .condensed-sub-links a:hover, #bottom-navbar ul .detail-header .avatar #billing .billing-table thead a:hover, .detail-header .avatar #billing .billing-table #bottom-navbar ul thead a:hover, #bottom-navbar ul #billing .billing-table .detail-header .avatar thead a:hover, #billing .billing-table .detail-header .avatar #bottom-navbar ul thead a:hover, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li .sub a:hover, .detail-header .avatar .big-selector.subs.open li #bottom-navbar ul .sub a:hover, #bottom-navbar ul .big-selector.subs.open li .detail-header .avatar .sub a:hover, .big-selector.subs.open li .detail-header .avatar #bottom-navbar ul .sub a:hover, #bottom-navbar ul .detail-header .avatar .user-card .user-card-meta li a:hover, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li a:hover, #bottom-navbar ul .user-card .user-card-meta .detail-header .avatar li a:hover, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li a:hover, #bottom-navbar ul .detail-header .avatar
    .user-card .bottom-button li a:hover, .detail-header .avatar
    .user-card .bottom-button #bottom-navbar ul li a:hover, #bottom-navbar ul
    .user-card .bottom-button .detail-header .avatar li a:hover,
    .user-card .bottom-button .detail-header .avatar #bottom-navbar ul li a:hover, #bottom-navbar ul .detail-header .avatar
    .user-card-flipped .user-card-meta li a:hover, .detail-header .avatar
    .user-card-flipped .user-card-meta #bottom-navbar ul li a:hover, #bottom-navbar ul
    .user-card-flipped .user-card-meta .detail-header .avatar li a:hover,
    .user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li a:hover, #bottom-navbar ul .detail-header .avatar
    .user-card-flipped .bottom-button li a:hover, .detail-header .avatar
    .user-card-flipped .bottom-button #bottom-navbar ul li a:hover, #bottom-navbar ul
    .user-card-flipped .bottom-button .detail-header .avatar li a:hover,
    .user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li a:hover, #bottom-navbar ul .detail-header .avatar .topic-container .toggle-button a:hover, .detail-header .avatar .topic-container #bottom-navbar ul .toggle-button a:hover, #bottom-navbar ul .topic-container .detail-header .avatar .toggle-button a:hover, .topic-container .detail-header .avatar #bottom-navbar ul .toggle-button a:hover, #bottom-navbar .detail-header .avatar #notifications-filters ul li label a:hover, .detail-header .avatar #notifications-filters #bottom-navbar ul li label a:hover, #bottom-navbar #notifications-filters ul li .detail-header .avatar label a:hover, #notifications-filters #bottom-navbar ul li .detail-header .avatar label a:hover, #bottom-navbar ul .detail-header .avatar .message p a:hover, .detail-header .avatar .message #bottom-navbar ul p a:hover, #bottom-navbar ul .message .detail-header .avatar p a:hover, .message .detail-header .avatar #bottom-navbar ul p a:hover, #bottom-navbar ul .detail-header .avatar #style-guide .swatch-container .swatch-info .variable a:hover, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul .variable a:hover, #bottom-navbar ul #style-guide .swatch-container .swatch-info .detail-header .avatar .variable a:hover, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul .variable a:hover, .user-card .status a:hover,
    .user-card-flipped .status a:hover {
      color: rgba(0, 0, 0, 0.98);
      border-color: rgba(0, 0, 0, 0.32); }

h1, #editor-chapter-title {
  font-size: 26.4px;
  margin-bottom: 0; }

h2 {
  font-size: 27.6px; }

h3 {
  font-weight: 600;
  font-size: 20.004px;
  margin-bottom: 12px; }

h4 {
  font-weight: 600;
  margin-bottom: 12px; }

h5 {
  font-size: 13.2px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.4); }

h6, #bottom-navbar ul small, #bottom-navbar ul .detail-header .avatar .small, .detail-header .avatar #bottom-navbar ul .small, #bottom-navbar ul .detail-header .avatar form .form-content .form-element-helper, .detail-header .avatar form .form-content #bottom-navbar ul .form-element-helper, #bottom-navbar ul form .form-content .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar #bottom-navbar ul .form-element-helper, #bottom-navbar ul .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul .free, #bottom-navbar ul #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul .free, #bottom-navbar ul .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li, #bottom-navbar ul #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li #bottom-navbar ul a, #bottom-navbar ul #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar #bottom-navbar ul a, #bottom-navbar ul .detail-header .avatar .error .error-message, .detail-header .avatar .error #bottom-navbar ul .error-message, #bottom-navbar ul .error .detail-header .avatar .error-message, .error .detail-header .avatar #bottom-navbar ul .error-message, #bottom-navbar ul .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul dt, #bottom-navbar ul .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul dt, #bottom-navbar ul .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table #bottom-navbar ul thead, #bottom-navbar ul #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar #bottom-navbar ul thead, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li #bottom-navbar ul .sub, #bottom-navbar ul .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar #bottom-navbar ul .sub, #bottom-navbar ul .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li, #bottom-navbar ul .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card .bottom-button li, .detail-header .avatar
.user-card .bottom-button #bottom-navbar ul li, #bottom-navbar ul
.user-card .bottom-button .detail-header .avatar li,
.user-card .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card-flipped .user-card-meta li, .detail-header .avatar
.user-card-flipped .user-card-meta #bottom-navbar ul li, #bottom-navbar ul
.user-card-flipped .user-card-meta .detail-header .avatar li,
.user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
.user-card-flipped .bottom-button li, .detail-header .avatar
.user-card-flipped .bottom-button #bottom-navbar ul li, #bottom-navbar ul
.user-card-flipped .bottom-button .detail-header .avatar li,
.user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container #bottom-navbar ul .toggle-button, #bottom-navbar ul .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar #bottom-navbar ul .toggle-button, #bottom-navbar .detail-header .avatar #notifications-filters ul li label, .detail-header .avatar #notifications-filters #bottom-navbar ul li label, #bottom-navbar #notifications-filters ul li .detail-header .avatar label, #notifications-filters #bottom-navbar ul li .detail-header .avatar label, #bottom-navbar ul .detail-header .avatar .message p, .detail-header .avatar .message #bottom-navbar ul p, #bottom-navbar ul .message .detail-header .avatar p, .message .detail-header .avatar #bottom-navbar ul p, #bottom-navbar ul .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul .variable, #bottom-navbar ul #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul .variable, .user-card .status,
.user-card-flipped .status {
  font-size: 10.8px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 12px; }

p {
  line-height: 30px;
  margin-bottom: 30px; }
  p a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    p a:hover {
      color: rgba(0, 0, 0, 0.75);
      border-color: rgba(0, 0, 0, 0.4); }
  p:last-of-type {
    margin-bottom: 0; }
  p.big {
    font-size: 300%;
    font-weight: 200;
    margin-bottom: 0.2em; }

.meta {
  color: rgba(0, 0, 0, 0.32);
  margin-bottom: 30px; }
  .meta a {
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color 0.2s;
            transition: border-color 0.2s; }
    .meta a:hover {
      color: rgba(0, 0, 0, 0.32);
      border-color: rgba(0, 0, 0, 0.32); }
    .meta a.avatar:hover {
      border-color: transparent; }
  .meta.big {
    font-size: 300%;
    font-weight: 200;
    margin-bottom: 0.2em; }

.small, form .form-content .form-element-helper, #plan-selector .plan .plan-header .free, #plan-selector .check-list li, #playlist-dropdown-selector .dropdown li a, .error .error-message, .sub-nav .user-teams dt, #chapters.condensed .chapter .condensed-sub-links, #billing .billing-table thead, .big-selector.subs.open li .sub, .user-card .user-card-meta li,
.user-card .bottom-button li,
.user-card-flipped .user-card-meta li,
.user-card-flipped .bottom-button li, .topic-container .toggle-button, #notifications-filters ul li label, .message p, #style-guide .swatch-container .swatch-info .variable {
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.4); }

i, italic {
  font-style: italic; }

b, strong {
  font-weight: bold; }

blockquote,
blockquote p {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  line-height: 1.3em;
  font-style: italic;
  margin-bottom: 0.5em; }

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s;
          transition: color 0.2s;
  outline: none; }
  a.cta-link {
    color: #f56363;
    position: relative;
    border-color: transparent; }
    a.cta-link::after {
      display: inline-block;
      content: '';
      width: 12px;
      height: 12px;
      background-image: url(/assets/images/icon-cta-arrow.svg);
      background-size: 12px 12px; }
    a.cta-link:hover {
      color: #fa5454;
      border-color: #fa5454; }

hr {
  border: none;
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 24px 0; }

/*=========================================
 STYLING
===========================================*/
.center {
  text-align: center; }

.pull-right {
  float: right; }

.smallcaps, form .form-divider span {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4); }

img {
  max-width: 100%;
  height: auto; }

/*=========================================
  ICONS
===========================================*/
.ss-icon, .sidebar-button, .playlist-container .playlist-toggle, #notifications-list li .avatar-container .avatar:last-child:after, .feed-message .close-button, .notification .close {
  font-size: 14px; }

@font-face {
  font-family: "SSSocialCircle";
  src: url("/assets/fonts/ss-social-circle.eot");
  src: url("/assets/fonts/ss-social-circle.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/ss-social-circle.woff") format("woff"), url("/assets/fonts/ss-social-circle.ttf") format("truetype"), url("/assets/fonts/ss-social-circle.svg#SSPika") format("svg");
  font-weight: normal;
  font-style: normal; }

.ss-social-circle, .social-login li a {
  font-family: "SSSocialCircle";
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased; }

@font-face {
  font-family: "SSSocial";
  src: url("/assets/fonts/ss-social-regular.eot");
  src: url("/assets/fonts/ss-social-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/ss-social-regular.woff") format("woff"), url("/assets/fonts/ss-social-regular.ttf") format("truetype"), url("/assets/fonts/ss-social-regular.svg#SSPika") format("svg");
  font-weight: normal;
  font-style: normal; }

.ss-social {
  font-family: "SSSocial";
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased; }

input[type=text],
input[type=url],
input[type=password],
input[type=email],
input[type=search],
textarea,
.select {
  display: block;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Open Sans", sans-serif;
  -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease;
  -webkit-transition: border-color 0.2s ease;
          transition: border-color 0.2s ease; }
  input[type=text]:focus,
  input[type=url]:focus,
  input[type=password]:focus,
  input[type=email]:focus,
  input[type=search]:focus,
  textarea:focus,
  .select:focus {
    outline: 0;
    border-color: #43c5b8; }
  input[type=text].loading,
  input[type=url].loading,
  input[type=password].loading,
  input[type=email].loading,
  input[type=search].loading,
  textarea.loading,
  .select.loading {
    background: url(/assets/images/loader.gif) no-repeat right 12px center;
    color: #ccc; }

input[type=text],
input[type=url],
input[type=password],
input[type=email] {
  height: 36px; }

form {
  display: block; }
  form .form-header {
    margin-bottom: 36px; }
    form .form-header .avatar {
      margin: 0 auto 24px; }
  form .form-content li {
    margin-bottom: 24px;
    position: relative; }
    form .form-content li.file-upload input[type=file] {
      display: block;
      width: 100%;
      padding: 8px;
      border: 1px solid rgba(0, 0, 0, 0.16);
      border-radius: 3px; }
    form .form-content li.centered {
      width: 44%;
      margin-left: auto;
      margin-right: auto; }
      @media (max-width: 767px) {
        form .form-content li.centered {
          width: inherit;
          max-width: 60%; } }
    form .form-content li.half {
      width: 49%;
      display: inline-block;
      position: relative;
      vertical-align: top;
      margin-right: -4px; }
      form .form-content li.half.second {
        margin-left: 2%; }
  form .form-content label,
  form .form-content h4 {
    display: block;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 12px; }
    form .form-content label a,
    form .form-content h4 a {
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
      form .form-content label a:hover,
      form .form-content h4 a:hover {
        color: rgba(0, 0, 0, 0.6);
        border-color: rgba(0, 0, 0, 0.32); }
      form .form-content label a.switcher,
      form .form-content h4 a.switcher {
        float: right; }
    form .form-content label small, form .form-content label .detail-header .avatar .small, .detail-header .avatar form .form-content label .small, .detail-header .avatar form .form-content label .form-element-helper, form .form-content label .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar label .form-element-helper, form .form-content label .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header form .form-content label .free, form .form-content label #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar form .form-content label .free, form .form-content label .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list form .form-content label li, form .form-content label #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar form .form-content label li, form .form-content label .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li form .form-content label a, form .form-content label #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar form .form-content label a, form .form-content label .detail-header .avatar .error .error-message, .detail-header .avatar .error form .form-content label .error-message, form .form-content label .error .detail-header .avatar .error-message, .error .detail-header .avatar form .form-content label .error-message, form .form-content label .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams form .form-content label dt, form .form-content label .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar form .form-content label dt, form .form-content label .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter form .form-content label .condensed-sub-links, form .form-content label #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar form .form-content label .condensed-sub-links, form .form-content label .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table form .form-content label thead, form .form-content label #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar form .form-content label thead, form .form-content label .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li form .form-content label .sub, form .form-content label .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar form .form-content label .sub, form .form-content label .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta form .form-content label li, form .form-content label .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar form .form-content label li, form .form-content label .detail-header .avatar
    .user-card .bottom-button li, .detail-header .avatar
    .user-card .bottom-button form .form-content label li, form .form-content label
    .user-card .bottom-button .detail-header .avatar li,
    .user-card .bottom-button .detail-header .avatar form .form-content label li, form .form-content label .detail-header .avatar
    .user-card-flipped .user-card-meta li, .detail-header .avatar
    .user-card-flipped .user-card-meta form .form-content label li, form .form-content label
    .user-card-flipped .user-card-meta .detail-header .avatar li,
    .user-card-flipped .user-card-meta .detail-header .avatar form .form-content label li, form .form-content label .detail-header .avatar
    .user-card-flipped .bottom-button li, .detail-header .avatar
    .user-card-flipped .bottom-button form .form-content label li, form .form-content label
    .user-card-flipped .bottom-button .detail-header .avatar li,
    .user-card-flipped .bottom-button .detail-header .avatar form .form-content label li, form .form-content label .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container form .form-content label .toggle-button, form .form-content label .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar form .form-content label .toggle-button, form .form-content label .detail-header .avatar #notifications-filters ul li label, .detail-header .avatar #notifications-filters ul li form .form-content label label, form .form-content label #notifications-filters ul li .detail-header .avatar label, #notifications-filters ul li .detail-header .avatar form .form-content label label, form .form-content label .detail-header .avatar .message p, .detail-header .avatar .message form .form-content label p, form .form-content label .message .detail-header .avatar p, .message .detail-header .avatar form .form-content label p, form .form-content label .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info form .form-content label .variable, form .form-content label #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar form .form-content label .variable,
    form .form-content h4 small,
    form .form-content h4 .detail-header .avatar .small, .detail-header .avatar
    form .form-content h4 .small, .detail-header .avatar form .form-content h4 .form-element-helper, form .form-content h4 .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar h4 .form-element-helper,
    form .form-content h4 .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header
    form .form-content h4 .free,
    form .form-content h4 #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar
    form .form-content h4 .free,
    form .form-content h4 .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list
    form .form-content h4 li,
    form .form-content h4 #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar
    form .form-content h4 li,
    form .form-content h4 .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li
    form .form-content h4 a,
    form .form-content h4 #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar
    form .form-content h4 a,
    form .form-content h4 .detail-header .avatar .error .error-message, .detail-header .avatar .error
    form .form-content h4 .error-message,
    form .form-content h4 .error .detail-header .avatar .error-message, .error .detail-header .avatar
    form .form-content h4 .error-message,
    form .form-content h4 .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams
    form .form-content h4 dt,
    form .form-content h4 .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar
    form .form-content h4 dt,
    form .form-content h4 .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter
    form .form-content h4 .condensed-sub-links,
    form .form-content h4 #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar
    form .form-content h4 .condensed-sub-links,
    form .form-content h4 .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table
    form .form-content h4 thead,
    form .form-content h4 #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar
    form .form-content h4 thead,
    form .form-content h4 .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li
    form .form-content h4 .sub,
    form .form-content h4 .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar
    form .form-content h4 .sub,
    form .form-content h4 .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta
    form .form-content h4 li,
    form .form-content h4 .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar
    form .form-content h4 li,
    form .form-content h4 .detail-header .avatar
    .user-card .bottom-button li, .detail-header .avatar
    .user-card .bottom-button
    form .form-content h4 li,
    form .form-content h4
    .user-card .bottom-button .detail-header .avatar li,
    .user-card .bottom-button .detail-header .avatar
    form .form-content h4 li,
    form .form-content h4 .detail-header .avatar
    .user-card-flipped .user-card-meta li, .detail-header .avatar
    .user-card-flipped .user-card-meta
    form .form-content h4 li,
    form .form-content h4
    .user-card-flipped .user-card-meta .detail-header .avatar li,
    .user-card-flipped .user-card-meta .detail-header .avatar
    form .form-content h4 li,
    form .form-content h4 .detail-header .avatar
    .user-card-flipped .bottom-button li, .detail-header .avatar
    .user-card-flipped .bottom-button
    form .form-content h4 li,
    form .form-content h4
    .user-card-flipped .bottom-button .detail-header .avatar li,
    .user-card-flipped .bottom-button .detail-header .avatar
    form .form-content h4 li,
    form .form-content h4 .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container
    form .form-content h4 .toggle-button,
    form .form-content h4 .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar
    form .form-content h4 .toggle-button,
    form .form-content h4 .detail-header .avatar #notifications-filters ul li label, .detail-header .avatar #notifications-filters ul li
    form .form-content h4 label,
    form .form-content h4 #notifications-filters ul li .detail-header .avatar label, #notifications-filters ul li .detail-header .avatar
    form .form-content h4 label,
    form .form-content h4 .detail-header .avatar .message p, .detail-header .avatar .message
    form .form-content h4 p,
    form .form-content h4 .message .detail-header .avatar p, .message .detail-header .avatar
    form .form-content h4 p,
    form .form-content h4 .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info
    form .form-content h4 .variable,
    form .form-content h4 #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar
    form .form-content h4 .variable {
      font-weight: normal;
      display: inline-block;
      margin-left: 5px; }
  form .form-content input[type=text],
  form .form-content input[type=password],
  form .form-content input[type=email],
  form .form-content input[type=url],
  form .form-content textarea,
  form .form-content .select {
    width: 100%; }
  form .form-content .select {
    background: #fff; }
    form .form-content .select select {
      display: block;
      width: 100%; }
    form .form-content .select.exp-date select {
      width: 59px;
      display: inline-block; }
  form .form-content textarea {
    height: 120px;
    line-height: 21px; }
  form .form-content .radio input[type=radio],
  form .form-content .radio input[type=checkbox],
  form .form-content .radio label {
    display: inline-block; }
  form .form-content .radio li {
    margin-bottom: 0; }
  form .form-content .radio label {
    margin-right: 5px; }
  form .form-content .checkbox-list {
    margin-bottom: 24px; }
    form .form-content .checkbox-list li {
      margin-top: 12px;
      padding-top: 0; }
    form .form-content .checkbox-list.channels {
      margin-top: 12px; }
      form .form-content .checkbox-list.channels .checkbox {
        margin: 4px 0 0;
        padding-left: 0; }
        form .form-content .checkbox-list.channels .checkbox label {
          cursor: pointer;
          padding: 12px;
          background: rgba(0, 0, 0, 0.02);
          border-radius: 3px;
          border: 1px solid rgba(0, 0, 0, 0.12); }
          form .form-content .checkbox-list.channels .checkbox label:hover {
            background: rgba(0, 0, 0, 0.12); }
          form .form-content .checkbox-list.channels .checkbox label input {
            display: inline-block;
            position: relative; }
  form .form-content .checkbox {
    margin-bottom: 0;
    padding-left: 21.6px; }
    form .form-content .checkbox input {
      position: absolute;
      left: 0;
      top: 0;
      margin: 0; }
    form .form-content .checkbox label {
      margin: 0;
      font-weight: 400; }
      @media (max-width: 1024px) {
        form .form-content .checkbox label {
          display: inherit; } }
  form .form-content .avatar-helper {
    text-align: center; }
    form .form-content .avatar-helper .avatar,
    form .form-content .avatar-helper .button {
      margin: 0 auto 10px; }
  form .form-content .url-helper,
  form .form-content .twitter-helper,
  form .form-content .color-helper {
    position: relative; }
    form .form-content .url-helper .url,
    form .form-content .twitter-helper .url,
    form .form-content .color-helper .url {
      position: absolute;
      left: 7px;
      top: 30px;
      font-size: 14px;
      line-height: 14px;
      color: rgba(0, 0, 0, 0.32);
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
  form .form-content .url-helper input {
    padding-left: 117px; }
  form .form-content .twitter-helper input {
    padding-left: 20px; }
  form .form-content .color-helper .color {
    position: absolute;
    left: 7px;
    bottom: 7px;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 8px; }
  form .form-content .color-helper input {
    padding-left: 36px; }
  form .form-content .logo-upload {
    position: relative;
    padding-right: 36px; }
    form .form-content .logo-upload .logo-upload-image {
      position: absolute;
      right: 0;
      top: 0;
      border-radius: 18px;
      border: 1px solid rgba(0, 0, 0, 0.12); }
    form .form-content .logo-upload #logo-uploader {
      display: block;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 8px;
      height: 36px;
      border-radius: 3px; }
  form .form-content .card input {
    background: url(/assets/images/creditcards.jpg) right center no-repeat white;
    background-size: 80px 22px; }
  form .form-content .cvc input {
    background: url(/assets/images/creditcard-cvc.jpg) right center no-repeat white;
    background-size: 37px 20px; }
  form .form-content .form-element-helper {
    float: right;
    cursor: help; }
  form .form-content p.small, form .form-content p.form-element-helper, form .form-content #plan-selector .plan .plan-header p.free, #plan-selector .plan .plan-header form .form-content p.free, form .form-content .error p.error-message, .error form .form-content p.error-message, form .form-content #chapters.condensed .chapter p.condensed-sub-links, #chapters.condensed .chapter form .form-content p.condensed-sub-links, form .form-content .big-selector.subs.open li p.sub, .big-selector.subs.open li form .form-content p.sub, form .form-content .topic-container p.toggle-button, .topic-container form .form-content p.toggle-button, form .form-content .message p, .message form .form-content p, form .form-content #style-guide .swatch-container .swatch-info p.variable, #style-guide .swatch-container .swatch-info form .form-content p.variable {
    position: relative;
    margin-top: -3px; }
    form .form-content p.small.helper, form .form-content p.helper.form-element-helper, form .form-content #plan-selector .plan .plan-header p.helper.free, #plan-selector .plan .plan-header form .form-content p.helper.free, form .form-content .error p.helper.error-message, .error form .form-content p.helper.error-message, form .form-content #chapters.condensed .chapter p.helper.condensed-sub-links, #chapters.condensed .chapter form .form-content p.helper.condensed-sub-links, form .form-content .big-selector.subs.open li p.helper.sub, .big-selector.subs.open li form .form-content p.helper.sub, form .form-content .topic-container p.helper.toggle-button, .topic-container form .form-content p.helper.toggle-button, form .form-content .message p.helper, .message form .form-content p.helper, form .form-content #style-guide .swatch-container .swatch-info p.helper.variable, #style-guide .swatch-container .swatch-info form .form-content p.helper.variable {
      margin-top: 6px; }
  @media (max-width: 1024px) {
    form .form-content .form-aside {
      display: none; } }
  form .form-content .owner-list {
    overflow: auto; }
    form .form-content .owner-list li {
      float: left;
      display: block;
      margin: 4px 4px 4px 0; }
      form .form-content .owner-list li.add-owner {
        border-radius: 24px;
        width: 36px;
        height: 36px;
        display: inline-block; }
  form .form-content .select-owners {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-height: 263px;
    overflow: hidden; }
    form .form-content .select-owners li {
      width: 49%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-self: stretch;
          -ms-flex-item-align: stretch;
              align-self: stretch;
      border-radius: 3px;
      background: rgba(0, 0, 0, 0.02);
      margin-bottom: 9px;
      border: 1px solid #eee; }
      form .form-content .select-owners li label {
        display: block;
        width: 100%;
        padding: 11px 5px 11px 56px;
        cursor: pointer;
        position: relative;
        margin: 0; }
        form .form-content .select-owners li label input {
          position: absolute;
          left: 5px;
          top: 8px; }
        form .form-content .select-owners li label .avatar {
          position: absolute;
          left: 26px;
          top: 5px; }
  form .form-footer {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.12); }
    form .form-footer::after {
      content: '';
      display: table;
      clear: both; }
    form .form-footer .small, form .form-footer .form-content .form-element-helper, form .form-content .form-footer .form-element-helper, form .form-footer #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header form .form-footer .free, form .form-footer #plan-selector .check-list li, #plan-selector .check-list form .form-footer li, form .form-footer #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown li form .form-footer a, form .form-footer .error .error-message, .error form .form-footer .error-message, form .form-footer .sub-nav .user-teams dt, .sub-nav .user-teams form .form-footer dt, form .form-footer #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter form .form-footer .condensed-sub-links, form .form-footer #billing .billing-table thead, #billing .billing-table form .form-footer thead, form .form-footer .big-selector.subs.open li .sub, .big-selector.subs.open li form .form-footer .sub, form .form-footer .user-card .user-card-meta li, .user-card .user-card-meta form .form-footer li, form .form-footer
    .user-card .bottom-button li,
    .user-card .bottom-button form .form-footer li, form .form-footer
    .user-card-flipped .user-card-meta li,
    .user-card-flipped .user-card-meta form .form-footer li, form .form-footer
    .user-card-flipped .bottom-button li,
    .user-card-flipped .bottom-button form .form-footer li, form .form-footer .topic-container .toggle-button, .topic-container form .form-footer .toggle-button, form .form-footer #notifications-filters ul li label, #notifications-filters ul li form .form-footer label, form .form-footer .message p, .message form .form-footer p, form .form-footer #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info form .form-footer .variable {
      display: inline-block;
      vertical-align: middle;
      line-height: 36px; }
    form .form-footer .secondary-actions {
      float: left; }
      form .form-footer .secondary-actions a {
        margin-right: 12px; }
    form .form-footer .delete {
      font-size: 12px;
      line-height: 24px;
      margin-top: 6px;
      color: rgba(0, 0, 0, 0.4);
      vertical-align: middle;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
      form .form-footer .delete:hover {
        color: #f56363;
        border-bottom-color: #f56363; }
    form .form-footer button[type=submit],
    form .form-footer .button {
      float: right;
      vertical-align: middle;
      text-align: center; }
      form .form-footer button[type=submit]:hover,
      form .form-footer .button:hover {
        cursor: pointer; }
      form .form-footer button[type=submit]:focus,
      form .form-footer .button:focus {
        outline: none; }
      form .form-footer button[type=submit]:active,
      form .form-footer .button:active {
        outline: none; }
      form .form-footer button[type=submit].pull-left,
      form .form-footer .button.pull-left {
        float: left; }
  form .form-divider {
    clear: both;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    height: 1px;
    position: relative;
    display: block;
    margin: 36px 0; }
    form .form-divider span {
      position: absolute;
      left: 50%;
      top: -15px;
      text-align: center;
      -webkit-transform: translateX(-20px);
          -ms-transform: translateX(-20px);
              transform: translateX(-20px);
      line-height: 30px;
      width: 40px;
      height: 30px;
      display: inline-block;
      background-color: #fff; }

#plan-selector {
  overflow: auto;
  position: relative;
  margin-bottom: 24px; }
  #plan-selector .plan {
    border: 3px solid #e8e8e8;
    border-radius: 6px;
    width: 49%;
    float: left;
    position: relative;
    padding: 18px;
    cursor: pointer;
    -webkit-transition: all 0.1s linear;
            transition: all 0.1s linear; }
    #plan-selector .plan .plan-header {
      text-align: center;
      position: relative;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      padding-bottom: 24px;
      margin-bottom: 18px; }
      #plan-selector .plan .plan-header h5 {
        margin-bottom: 12px;
        font-size: 200%;
        font-weight: 200;
        text-transform: none;
        color: rgba(0, 0, 0, 0.6); }
      #plan-selector .plan .plan-header .free {
        border-radius: 12px;
        display: inline-block;
        border: 1px solid rgba(0, 0, 0, 0.12);
        position: absolute;
        bottom: -9px;
        left: 50%;
        width: 120px;
        height: 18px;
        margin-left: -60px;
        background: #fff;
        color: #43c5b8;
        font-size: 11px;
        font-weight: 600; }
    #plan-selector .plan:hover {
      border-color: #43c5b8; }
    #plan-selector .plan.disabled {
      cursor: default; }
      #plan-selector .plan.disabled.free:hover {
        border-color: #e8e8e8; }
    #plan-selector .plan.selected {
      border-color: #43c5b8; }
      #plan-selector .plan.selected:before {
        font-family: "SSPika";
        content: "check";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
        width: 0;
        height: 0;
        border-top: 48px solid #43c5b8;
        border-right: 48px solid transparent; }
      #plan-selector .plan.selected:after {
        font-family: "SSPika";
        content: "check";
        display: block;
        position: absolute;
        top: 7px;
        left: 7px;
        color: #fff; }
      #plan-selector .plan.selected .button {
        background: #43c5b8; }
        #plan-selector .plan.selected .button .selected-plan {
          display: block; }
        #plan-selector .plan.selected .button .select-plan {
          display: none; }
    #plan-selector .plan:first-child {
      margin-right: 2%; }
  #plan-selector .check-list li {
    padding: 6px 6px 6px 20px;
    margin-bottom: 0;
    position: relative;
    display: block;
    color: rgba(0, 0, 0, 0.4); }
    #plan-selector .check-list li .ss-icon, #plan-selector .check-list li .sidebar-button, #plan-selector .check-list li .playlist-container .playlist-toggle, .playlist-container #plan-selector .check-list li .playlist-toggle, #plan-selector .check-list #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list #plan-selector .check-list li .avatar-container .avatar:last-child:after, #plan-selector .check-list li .feed-message .close-button, .feed-message #plan-selector .check-list li .close-button, #plan-selector .check-list li .notification .close, .notification #plan-selector .check-list li .close {
      color: #43c5b8;
      position: absolute;
      top: 7px;
      left: 0; }
  #plan-selector .button {
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.32); }
    #plan-selector .button .selected-plan {
      display: none; }
    #plan-selector .button .select-plan {
      display: block; }

#playlist-dropdown-selector {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  #playlist-dropdown-selector .current-selection {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    -webkit-transition: border-color 0.2s;
            transition: border-color 0.2s;
    padding: 6px 26px 6px 6px;
    position: relative; }
    #playlist-dropdown-selector .current-selection:hover {
      color: rgba(0, 0, 0, 0.32);
      background: rgba(0, 0, 0, 0.02); }
    #playlist-dropdown-selector .current-selection:after {
      display: block;
      content: '';
      width: 12px;
      height: 12px;
      position: absolute;
      right: 6px;
      top: 11px;
      background: url(/assets/images/icon-menu-arrow.svg) no-repeat center center;
      background-size: 10px 10px;
      -webkit-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
              transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  #playlist-dropdown-selector .dropdown {
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 19.2px;
    left: 0;
    min-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    z-index: 100;
    border-radius: 3px;
    -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
    #playlist-dropdown-selector .dropdown li {
      display: block; }
      #playlist-dropdown-selector .dropdown li a {
        font-family: "Open Sans", sans-serif;
        display: block;
        padding: 6px;
        border: 0; }
        #playlist-dropdown-selector .dropdown li a:hover {
          background-color: rgba(0, 0, 0, 0.02);
          color: rgba(0, 0, 0, 0.6); }
      #playlist-dropdown-selector .dropdown li.active {
        background-color: rgba(0, 0, 0, 0.02); }
        #playlist-dropdown-selector .dropdown li.active a {
          color: rgba(0, 0, 0, 0.6); }
  #playlist-dropdown-selector.open {
    -webkit-transition: all 0s;
            transition: all 0s; }
    #playlist-dropdown-selector.open .current-selection:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    #playlist-dropdown-selector.open .dropdown {
      top: 28.8px;
      opacity: 1;
      visibility: visible; }

.inside-form {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  padding: 18px; }
  .inside-form .introduction {
    margin-bottom: 18px; }
  .inside-form ul li:last-child {
    margin-bottom: 0; }

#payment {
  display: none; }
  #payment #voucher p {
    margin-bottom: 6px; }
  #payment #voucher #voucher-form {
    width: 49%;
    max-width: 215px;
    padding-right: 80px;
    height: 36px;
    position: relative;
    margin-top: 6px;
    display: none; }
    #payment #voucher #voucher-form input {
      border-right: none;
      border-radius: 2px 0 0 2px;
      height: 36px;
      text-transform: uppercase; }
    #payment #voucher #voucher-form .button {
      position: absolute;
      top: 0;
      right: 0;
      border-radius: 0 2px 2px 0; }
  #payment #voucher .voucher-message {
    border: 1px solid #43c5b8;
    height: 36px;
    line-height: 36px;
    color: #43c5b8;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    margin: 6px 0 0; }
    #payment #voucher .voucher-message.negative {
      border-color: rgba(0, 0, 0, 0.32);
      color: rgba(0, 0, 0, 0.4); }
  #payment .error-message {
    display: block;
    border: 1px solid #f56363;
    height: 36px;
    line-height: 36px;
    color: #f56363;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    margin: 6px 0 12px; }

.social-login {
  text-align: center; }
  .social-login li {
    display: inline; }
    .social-login li a {
      display: inline-block;
      margin: 0 10px;
      font-size: 36px;
      color: rgba(0, 0, 0, 0.32); }
      .social-login li a.tw {
        color: #33C6F4; }
        .social-login li a.tw:hover {
          color: #0ba1cf; }
      .social-login li a.fb {
        color: #3C599F; }
        .social-login li a.fb:hover {
          color: #2e447a; }
      .social-login li a.go {
        color: #f56363; }
        .social-login li a.go:hover {
          color: #f34b4b; }
      .social-login li a.li {
        color: #0097BD; }
        .social-login li a.li:hover {
          color: #0083a4; }

.auto-complete {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-top-color: #43c5b8;
  background: #f9f9f9;
  position: absolute;
  top: 35px;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  overflow: hidden; }
  .auto-complete .suggestion b {
    color: #43c5b8; }
  .auto-complete .suggestion.highlighted, .auto-complete .suggestion:hover {
    background: rgba(0, 0, 0, 0.02);
    cursor: pointer; }

.suggestion {
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  padding-left: 6px;
  width: 100%;
  position: relative; }
  .suggestion .avatar {
    margin-right: 6px;
    vertical-align: middle;
    display: inline-block; }
  .suggestion .ss-icon, .suggestion .sidebar-button, .suggestion .playlist-container .playlist-toggle, .playlist-container .suggestion .playlist-toggle, .suggestion #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .suggestion .avatar:last-child:after, .suggestion .feed-message .close-button, .feed-message .suggestion .close-button, .suggestion .notification .close, .notification .suggestion .close {
    margin-right: 6px;
    width: 24px;
    height: 24px;
    line-height: 28px;
    border-radius: 12px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    color: #fff; }
    .suggestion .ss-icon.helper, .suggestion .helper.sidebar-button, .suggestion .playlist-container .helper.playlist-toggle, .playlist-container .suggestion .helper.playlist-toggle, .suggestion #notifications-list li .avatar-container .helper.avatar:last-child:after, #notifications-list li .avatar-container .suggestion .helper.avatar:last-child:after, .suggestion .feed-message .helper.close-button, .feed-message .suggestion .helper.close-button, .suggestion .notification .helper.close, .notification .suggestion .helper.close {
      float: right;
      margin: 8px 2px;
      width: 18px;
      height: 18px;
      font-size: 10px;
      line-height: 20px; }
  .suggestion .keep-typing {
    position: absolute !important;
    top: 0;
    margin-top: 0;
    right: 12px;
    height: 36px;
    line-height: 36px;
    z-index: 10; }
  .suggestion.chosen {
    position: absolute;
    top: 1px;
    left: 1px;
    background: #fff;
    height: 34px;
    line-height: 33px;
    width: 99%;
    border-radius: 3px; }

.error .error-message {
  margin-top: 6px;
  display: block;
  color: #f77b7b; }

.error label {
  color: #f77b7b !important; }

.error input[type=text],
.error input[type=password],
.error input[type=email],
.error input[type=url],
.error textarea,
.error .select-container,
.error .big-selector,
.error .big-selector li.selected {
  border-color: #faabab; }

.form-container {
  padding-top: 15.6px; }
  @media (max-width: 1024px) {
    .form-container {
      padding-top: 12px; } }

/*=========================================
HELPER CLASSES
===========================================*/
.loading:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/assets/images/loader.gif) no-repeat;
  z-index: 100; }

/*=========================================
BUTTONS
===========================================*/
.button,
button[type=submit] {
  display: inline-block;
  background: #f56363;
  border: 1px solid transparent;
  color: #fff;
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
  line-height: 34px;
  text-transform: uppercase;
  padding: 0 18px;
  font-weight: 700;
  letter-spacing: 1px;
  height: 36px;
  position: relative;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: border-color 0.2s;
          transition: border-color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .button:hover,
  button[type=submit]:hover {
    text-decoration: none;
    background: #fa5454;
    cursor: pointer; }
  .button:focus,
  button[type=submit]:focus {
    outline: none; }
  .button:active,
  button[type=submit]:active {
    background: #dc5959; }
  .button.button-teal,
  button[type=submit].button-teal {
    background-color: #43c5b8; }
    .button.button-teal:hover,
    button[type=submit].button-teal:hover {
      background-color: #46ccbf; }
    .button.button-teal:active,
    button[type=submit].button-teal:active {
      background-color: #3fb9ad; }
  .button.button-gray,
  button[type=submit].button-gray {
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.4); }
    .button.button-gray:hover,
    button[type=submit].button-gray:hover {
      color: rgba(0, 0, 0, 0.6); }
    .button.button-gray:active,
    button[type=submit].button-gray:active {
      background-color: rgba(0, 0, 0, 0.16); }
  .button.transparent,
  button[type=submit].transparent {
    border-color: tranparent;
    background-color: transparent;
    color: rgba(0, 0, 0, 0.4); }
    .button.transparent:hover,
    button[type=submit].transparent:hover {
      border-color: tranparent;
      color: rgba(0, 0, 0, 0.6);
      background: transparent; }
    .button.transparent:active,
    button[type=submit].transparent:active {
      color: rgba(0, 0, 0, 0.4);
      background: transparent; }
    .button.transparent .ss-social,
    button[type=submit].transparent .ss-social {
      font-size: 16px; }
  .button.button-outline,
  button[type=submit].button-outline {
    border-color: #f56363;
    color: #f56363;
    height: 36px;
    background: transparent; }
    .button.button-outline:hover,
    button[type=submit].button-outline:hover {
      border-color: #fa5454;
      color: #fa5454;
      background: transparent; }
    .button.button-outline:active,
    button[type=submit].button-outline:active {
      border-color: #dc5959;
      color: #dc5959;
      background: transparent; }
    .button.button-outline.button-teal,
    button[type=submit].button-outline.button-teal {
      border-color: #43c5b8;
      color: #43c5b8; }
      .button.button-outline.button-teal:hover,
      button[type=submit].button-outline.button-teal:hover {
        border-color: #46ccbf;
        color: #46ccbf;
        background: transparent; }
      .button.button-outline.button-teal:active,
      button[type=submit].button-outline.button-teal:active {
        border-color: #3fb9ad;
        color: #3fb9ad;
        background: transparent; }
    .button.button-outline.button-gray,
    button[type=submit].button-outline.button-gray {
      border-color: rgba(0, 0, 0, 0.16);
      color: rgba(0, 0, 0, 0.32); }
      .button.button-outline.button-gray .ss-icon, .button.button-outline.button-gray .sidebar-button, .button.button-outline.button-gray .playlist-container .playlist-toggle, .playlist-container .button.button-outline.button-gray .playlist-toggle, .button.button-outline.button-gray #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .button.button-outline.button-gray .avatar:last-child:after, .button.button-outline.button-gray .feed-message .close-button, .feed-message .button.button-outline.button-gray .close-button, .button.button-outline.button-gray .notification .close, .notification .button.button-outline.button-gray .close,
      button[type=submit].button-outline.button-gray .ss-icon,
      button[type=submit].button-outline.button-gray .sidebar-button,
      button[type=submit].button-outline.button-gray .playlist-container .playlist-toggle, .playlist-container
      button[type=submit].button-outline.button-gray .playlist-toggle,
      button[type=submit].button-outline.button-gray #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container
      button[type=submit].button-outline.button-gray .avatar:last-child:after,
      button[type=submit].button-outline.button-gray .feed-message .close-button, .feed-message
      button[type=submit].button-outline.button-gray .close-button,
      button[type=submit].button-outline.button-gray .notification .close, .notification
      button[type=submit].button-outline.button-gray .close {
        color: rgba(0, 0, 0, 0.32); }
      .button.button-outline.button-gray:hover,
      button[type=submit].button-outline.button-gray:hover {
        border-color: rgba(0, 0, 0, 0.32);
        color: rgba(0, 0, 0, 0.4);
        background: transparent; }
      .button.button-outline.button-gray:active,
      button[type=submit].button-outline.button-gray:active {
        border-color: rgba(0, 0, 0, 0.32);
        color: rgba(0, 0, 0, 0.4);
        background: transparent; }
    .button.button-outline.button-white,
    button[type=submit].button-outline.button-white {
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff; }
      .button.button-outline.button-white:hover,
      button[type=submit].button-outline.button-white:hover {
        border-color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.05); }
  .button.wide,
  button[type=submit].wide {
    padding-left: 36px;
    padding-right: 36px; }
  .button.block,
  button[type=submit].block {
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
    display: block; }
  .button.icon-only,
  button[type=submit].icon-only {
    width: 36px;
    padding: 0 0 0 2px;
    text-align: center; }
    .button.icon-only .ss-icon, .button.icon-only .sidebar-button, .button.icon-only .playlist-container .playlist-toggle, .playlist-container .button.icon-only .playlist-toggle, .button.icon-only #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .button.icon-only .avatar:last-child:after, .button.icon-only .feed-message .close-button, .feed-message .button.icon-only .close-button, .button.icon-only .notification .close, .notification .button.icon-only .close, .button.icon-only .ss-social,
    button[type=submit].icon-only .ss-icon,
    button[type=submit].icon-only .sidebar-button,
    button[type=submit].icon-only .playlist-container .playlist-toggle, .playlist-container
    button[type=submit].icon-only .playlist-toggle,
    button[type=submit].icon-only #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container
    button[type=submit].icon-only .avatar:last-child:after,
    button[type=submit].icon-only .feed-message .close-button, .feed-message
    button[type=submit].icon-only .close-button,
    button[type=submit].icon-only .notification .close, .notification
    button[type=submit].icon-only .close,
    button[type=submit].icon-only .ss-social {
      margin-right: 0; }
  .button.button-round,
  button[type=submit].button-round {
    border-radius: 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    text-align: center; }
    .button.button-round b,
    button[type=submit].button-round b {
      float: none;
      position: relative;
      right: -3px;
      margin-left: -1px; }
    .button.button-round .ss-icon, .button.button-round .sidebar-button, .button.button-round .playlist-container .playlist-toggle, .playlist-container .button.button-round .playlist-toggle, .button.button-round #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .button.button-round .avatar:last-child:after, .button.button-round .feed-message .close-button, .feed-message .button.button-round .close-button, .button.button-round .notification .close, .notification .button.button-round .close,
    button[type=submit].button-round .ss-icon,
    button[type=submit].button-round .sidebar-button,
    button[type=submit].button-round .playlist-container .playlist-toggle, .playlist-container
    button[type=submit].button-round .playlist-toggle,
    button[type=submit].button-round #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container
    button[type=submit].button-round .avatar:last-child:after,
    button[type=submit].button-round .feed-message .close-button, .feed-message
    button[type=submit].button-round .close-button,
    button[type=submit].button-round .notification .close, .notification
    button[type=submit].button-round .close {
      margin-right: -1px; }
  .button .ss-icon, .button .sidebar-button, .button .playlist-container .playlist-toggle, .playlist-container .button .playlist-toggle, .button #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .button .avatar:last-child:after, .button .feed-message .close-button, .feed-message .button .close-button, .button .notification .close, .notification .button .close,
  .button .ss-social,
  button[type=submit] .ss-icon,
  button[type=submit] .sidebar-button,
  button[type=submit] .playlist-container .playlist-toggle, .playlist-container
  button[type=submit] .playlist-toggle,
  button[type=submit] #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container
  button[type=submit] .avatar:last-child:after,
  button[type=submit] .feed-message .close-button, .feed-message
  button[type=submit] .close-button,
  button[type=submit] .notification .close, .notification
  button[type=submit] .close,
  button[type=submit] .ss-social {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 4px;
    font-size: 13px; }
  .button b,
  button[type=submit] b {
    font-weight: 700;
    font-size: 140%;
    float: left; }
  .button.button-social-tw,
  button[type=submit].button-social-tw {
    background-color: #33C6F4; }
    .button.button-social-tw:hover,
    button[type=submit].button-social-tw:hover {
      background-color: #0cb3e8; }
  .button.button-social-fb,
  button[type=submit].button-social-fb {
    background-color: #3C599F; }
    .button.button-social-fb:hover,
    button[type=submit].button-social-fb:hover {
      background-color: #2e447a; }
  .button.button-social-go,
  button[type=submit].button-social-go {
    background-color: #f56363; }
    .button.button-social-go:hover,
    button[type=submit].button-social-go:hover {
      background-color: #f23333; }
  .button.button-social-li,
  button[type=submit].button-social-li {
    background-color: #0097BD; }
    .button.button-social-li:hover,
    button[type=submit].button-social-li:hover {
      background-color: #006e8a; }
  .button.button-social-sl,
  button[type=submit].button-social-sl {
    background-color: #39A497; }
    .button.button-social-sl:hover,
    button[type=submit].button-social-sl:hover {
      background-color: #329186; }
  .button.button-social-hi,
  button[type=submit].button-social-hi {
    background-color: #205081; }
    .button.button-social-hi:hover,
    button[type=submit].button-social-hi:hover {
      background-color: #1b436d; }
  .button.load-more,
  button[type=submit].load-more {
    margin: 24px auto; }
  .button.loading,
  button[type=submit].loading {
    color: transparent !important; }
  .button.browser-button img,
  button[type=submit].browser-button img {
    float: left;
    margin: 0 8px 0 -6px;
    position: relative;
    top: 5px; }
  .button.bookmark,
  button[type=submit].bookmark {
    cursor: move; }

.button-wrap {
  margin-top: 12px; }

/*=========================================
AVATARS
===========================================*/
.avatar {
  position: relative;
  display: block;
  height: 36px;
  width: 36px; }
  .avatar img {
    display: block;
    width: 100%;
    border-radius: 72px; }
  .avatar.medium {
    width: 48px;
    height: 48px; }
  .avatar.big {
    height: 84px;
    width: 84px; }
  .avatar.small, form .form-content .avatar.form-element-helper, #plan-selector .plan .plan-header .avatar.free, #plan-selector .check-list li.avatar, #playlist-dropdown-selector .dropdown li a.avatar, .error .avatar.error-message, .sub-nav .user-teams dt.avatar, #chapters.condensed .chapter .avatar.condensed-sub-links, #billing .billing-table thead.avatar, .big-selector.subs.open li .avatar.sub, .user-card .user-card-meta li.avatar,
  .user-card .bottom-button li.avatar,
  .user-card-flipped .user-card-meta li.avatar,
  .user-card-flipped .bottom-button li.avatar, .topic-container .avatar.toggle-button, #notifications-filters ul li label.avatar, .message p.avatar, #style-guide .swatch-container .swatch-info .avatar.variable {
    height: 24px;
    width: 24px; }
  .avatar.tiny {
    height: 18px;
    width: 18px; }
  .avatar.center {
    display: block;
    margin: 12px auto; }
  .avatar.loading {
    background-color: #333;
    border-radius: 100px; }
    .avatar.loading img {
      opacity: 0.7; }
  .avatar.avatar-placeholder {
    border: 1px solid #efefef;
    border-radius: 100px;
    position: relative; }
    .avatar.avatar-placeholder span {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      font-size: 18px; }

/*=========================================
NUMBER CIRCLE
===========================================*/
.num-circle {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f9f9f9;
  text-align: center;
  line-height: 36px;
  border-radius: 18px;
  display: block;
  width: 36px;
  height: 36px; }
  .num-circle.medium {
    width: 48px;
    height: 48px;
    border-radius: 36px;
    line-height: 48px;
    font-size: 18px; }

/*=========================================
PROGRESS BAR
===========================================*/
.progress-bar {
  display: block;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
  height: 6px;
  position: relative;
  border-radius: 12px; }
  .progress-bar .progress-bar-content {
    border-radius: 12px;
    position: absolute;
    left: 0;
    height: 6px;
    background-color: #43c5b8; }
  .progress-bar.full .progress-bar-content {
    background-color: #f56363; }

/*=========================================
BOOKMARKLET
===========================================*/
#bookmark {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 288px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #fff;
  opacity: 0;
  -webkit-transform: translateX(60px) rotate(0deg);
      -ms-transform: translateX(60px) rotate(0deg);
          transform: translateX(60px) rotate(0deg);
  -webkit-animation: SwoopIn 0.5s 0.8s 1 forwards cubic-bezier(0.19, 1.32, 0.48, 1);
          animation: SwoopIn 0.5s 0.8s 1 forwards cubic-bezier(0.19, 1.32, 0.48, 1); }
  #bookmark #bookmark-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 288px;
    height: 48px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff; }
    #bookmark #bookmark-header h3 {
      font-weight: 200; }
    #bookmark #bookmark-header .close {
      position: absolute;
      top: 21px;
      right: 21px;
      opacity: 0.5; }
      #bookmark #bookmark-header .close:hover {
        opacity: 1; }
  #bookmark #bookmark-content {
    position: fixed;
    top: 48px;
    right: 0;
    bottom: 60px;
    width: 288px;
    padding: 24px 18px;
    overflow: auto; }
  #bookmark #bookmark-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 288px;
    padding: 12px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff; }
    #bookmark #bookmark-footer button {
      width: 100%;
      cursor: pointer;
      outline: none; }
  #bookmark #bookmark-status {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%; }

#bookmark-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.08); }

@-webkit-keyframes SwoopIn {
  0% {
    -webkit-transform: translateX(60px) rotate(0deg);
            transform: translateX(60px) rotate(0deg);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1; } }

@keyframes SwoopIn {
  0% {
    -webkit-transform: translateX(60px) rotate(0deg);
            transform: translateX(60px) rotate(0deg);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1; } }

/*=========================================

  Table of Contents:

  1. Layout
  2. Navigation
    2.1 Sidebar
    2.2 Sub Navbar
    2.3 Bottom Navbar
  3. Detail Pages
    3.1 Headers
    3.2 Playlist
      3.2.1 Add Chapter
      3.2.2 Write Chapter
    3.3 Team
      3.3.1 Insights
      3.3.2 Billing
    3.4 User
    3.5 Settings
  4. Chapters
    4.1 Iframe
    4.2 Discussion
  5. Cover & User Cards
    5.1 Covers
    5.2 User Cards
  6. Pages
    6.1 Library
    6.2 Search
    6.3 Notifications
  8. Onboarding
  9. Modals & Miscellaneous
  10. Static Pages
    10.1 Home
    10.2 Tour
    10.3 About
    10.4 Style Guide
  11. Inline Editor

===========================================*/
/*=========================================
  1. Layout
===========================================*/
.grid {
  position: absolute;
  z-index: 500;
  background: url(/assets/images/baseline.png);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden; }
  .grid.visible {
    opacity: 1;
    visibility: visible; }

#app-container {
  padding-left: 265px; }
  @media (max-width: 1024px) {
    #app-container {
      padding-left: 0;
      padding-top: 48px; } }

body.full #app-container {
  padding-left: 0; }

#main-content {
  padding-bottom: 120px;
  position: relative; }

body.modal-open {
  overflow: hidden; }

.hidden {
  visibility: hidden;
  display: none; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

.clear {
  clear: both;
  height: 0;
  font-size: 0px; }

/*=========================================
  2. Navigation
===========================================*/
/*== Sidebar ==============================*/
#sidebar {
  width: 265px;
  position: fixed;
  bottom: 36px;
  top: 36px;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  @media (max-width: 1024px) {
    #sidebar {
      z-index: 50;
      height: 48px;
      overflow: hidden;
      top: 0;
      width: 100%;
      border-right: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
      #sidebar .mobile-top {
        border-bottom: 1px solid transparent;
        height: 48px; }
      #sidebar.open {
        height: 100%;
        overflow-y: scroll; }
        #sidebar.open .mobile-top {
          border-bottom-color: rgba(0, 0, 0, 0.12);
          margin-bottom: 48px; }
        #sidebar.open .sidebar-add-popup {
          visibility: visible;
          opacity: 1; } }

#logo {
  display: block;
  margin-left: 36px;
  margin-bottom: 38px; }
  #logo img {
    display: block; }
  @media (max-width: 1024px) {
    #logo {
      margin: 0;
      position: absolute;
      top: 11px;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
      #logo img {
        width: 70px; } }
  #logo:hover {
    opacity: 0.9; }

.sidebar-button {
  /* Common styling for .sidebar-toggle and .sidebar-search */
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  font-size: 16px; }

.sidebar-toggle {
  display: none;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 48px;
  padding-top: 3px; }
  @media (max-width: 1024px) {
    .sidebar-toggle {
      display: block; } }

.sidebar-search {
  position: absolute;
  top: -8px;
  right: 14px;
  z-index: 50;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
  overflow: hidden;
  width: 48px;
  border-radius: 36px; }
  @media (max-width: 1024px) {
    .sidebar-search {
      top: 0;
      right: 0;
      width: 48px;
      height: 48px;
      border-left: 1px solid rgba(0, 0, 0, 0.12); } }
  .sidebar-search .sidebar-search-toggle {
    position: relative;
    display: inline-block;
    z-index: 10;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    padding: 17px 0;
    text-align: center; }
    @media (max-width: 1024px) {
      .sidebar-search .sidebar-search-toggle {
        top: 0;
        padding: 16px;
        line-height: 20px; } }
    .sidebar-search .sidebar-search-toggle:hover {
      color: rgba(0, 0, 0, 0.6); }
  .sidebar-search .sidebar-search-input {
    display: inline-block;
    -webkit-appearance: none;
    padding: 14px 12px 14px 32px;
    border: none;
    width: 100%;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-left: 44px;
    outline: 0; }
    @media (max-width: 1024px) {
      .sidebar-search .sidebar-search-input {
        padding-left: 42px; } }
  .sidebar-search.open {
    width: 100%;
    padding-left: 8px;
    z-index: 100; }
    @media (max-width: 1024px) {
      .sidebar-search.open {
        padding-left: inherit; } }

.sidebar-menu {
  display: block;
  margin-bottom: 36px; }
  .sidebar-menu li {
    position: relative;
    height: 36px; }
    .sidebar-menu li a {
      display: block;
      line-height: 12px;
      padding: 12px 36px 12px 32px;
      border-left: 4px solid transparent;
      color: rgba(0, 0, 0, 0.32);
      -webkit-transition: all 0s;
              transition: all 0s; }
      .sidebar-menu li a:hover {
        color: rgba(0, 0, 0, 0.6);
        border-left-color: rgba(0, 0, 0, 0.12);
        text-decoration: none; }
    .sidebar-menu li .notification-count {
      margin-left: 6px;
      font-size: 12px;
      color: #fff;
      border-radius: 3px;
      background: #f56363;
      padding: 2px 6px;
      line-height: 12px;
      text-align: center;
      vertical-align: middle;
      font-weight: bold; }
    .sidebar-menu li .sidebar-sub-toggle {
      position: relative; }
      .sidebar-menu li .sidebar-sub-toggle img {
        -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
      .sidebar-menu li .sidebar-sub-toggle.active {
        color: rgba(0, 0, 0, 0.6); }
        .sidebar-menu li .sidebar-sub-toggle.active img {
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }

#page-user #nav-user a,
#page-feed #nav-feed a,
#page-library #nav-library a,
#page-notifications #nav-notifications a,
#page-teams #nav-teams a,
#page-add-team #nav-add-team a,
.sidebar-menu li.current a {
  font-weight: 600;
  color: #43c5b8;
  color: rgba(0, 0, 0, 0.6);
  border-color: #43c5b8; }

.sidebar-sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%); }
  .sidebar-sub-menu.open {
    visibility: visible;
    opacity: 1;
    top: 36px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .sidebar-sub-menu li {
    height: 24px; }
    .sidebar-sub-menu li a {
      font-size: 14px;
      padding: 6px 36px 6px 32px; }

.sidebar-add-container {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .sidebar-add-container .sidebar-add-popup {
    position: absolute;
    bottom: 58px;
    width: 193px;
    border: 1px solid #ddd;
    border-radius: 4px;
    left: 50%;
    -webkit-transform: translate(-50%, 10px);
        -ms-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .sidebar-add-container .sidebar-add-popup li {
      border-top: 1px solid #eee; }
      .sidebar-add-container .sidebar-add-popup li a {
        display: block;
        padding: 18px;
        color: rgba(0, 0, 0, 0.4);
        font-size: 14px;
        -webkit-transition: all 0.2s;
                transition: all 0.2s; }
        .sidebar-add-container .sidebar-add-popup li a:hover {
          text-decoration: none;
          color: rgba(0, 0, 0, 0.75); }
        .sidebar-add-container .sidebar-add-popup li a .ss-icon, .sidebar-add-container .sidebar-add-popup li a .sidebar-button, .sidebar-add-container .sidebar-add-popup li a .playlist-container .playlist-toggle, .playlist-container .sidebar-add-container .sidebar-add-popup li a .playlist-toggle, .sidebar-add-container .sidebar-add-popup #notifications-list li a .avatar-container .avatar:last-child:after, #notifications-list .sidebar-add-container .sidebar-add-popup li a .avatar-container .avatar:last-child:after, .sidebar-add-container .sidebar-add-popup #notifications-list li .avatar-container a .avatar:last-child:after, #notifications-list .sidebar-add-container .sidebar-add-popup li .avatar-container a .avatar:last-child:after, .sidebar-add-container .sidebar-add-popup li a .feed-message .close-button, .feed-message .sidebar-add-container .sidebar-add-popup li a .close-button, .sidebar-add-container .sidebar-add-popup li a .notification .close, .notification .sidebar-add-container .sidebar-add-popup li a .close {
          text-align: center;
          vertical-align: middle;
          display: inline-block;
          margin-right: 6px; }
      .sidebar-add-container .sidebar-add-popup li.note {
        padding: 12px;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.32);
        line-height: 16px; }
        .sidebar-add-container .sidebar-add-popup li.note a {
          display: inline;
          padding: 0;
          color: #f56363; }
          .sidebar-add-container .sidebar-add-popup li.note a:hover {
            text-decoration: underline; }
      .sidebar-add-container .sidebar-add-popup li:first-child {
        border-top: 0; }
      .sidebar-add-container .sidebar-add-popup li:last-child {
        background: rgba(0, 0, 0, 0.02); }
    .sidebar-add-container .sidebar-add-popup:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 8px 0 8px;
      border-color: #fcfcfc transparent transparent;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      bottom: -5px; }
    .sidebar-add-container .sidebar-add-popup:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 9px 0 9px;
      border-color: #ccc transparent transparent;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      bottom: -6px; }
    @media (max-width: 1024px) {
      .sidebar-add-container .sidebar-add-popup {
        bottom: 12px;
        -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
        text-align: center;
        width: 98%;
        -webkit-transition: 0s;
                transition: 0s; }
        .sidebar-add-container .sidebar-add-popup:before, .sidebar-add-container .sidebar-add-popup:after {
          display: none; }
        .sidebar-add-container .sidebar-add-popup li {
          width: 24%;
          display: inline-block;
          border: 0;
          background-color: #fff !important; } }
    @media (max-width: 767px) {
      .sidebar-add-container .sidebar-add-popup li {
        width: 49%; } }
  .sidebar-add-container .sidebar-button-add {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    color: #fff;
    text-align: center;
    font-size: 50px;
    line-height: 46px;
    font-weight: 300;
    position: absolute;
    left: 50%;
    margin-left: -24px;
    bottom: 0;
    background-color: #f56363;
    -webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: background-color 0.2s ease-in, color 0.2s ease-in, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .sidebar-add-container .sidebar-button-add span {
      display: block; }
    .sidebar-add-container .sidebar-button-add:hover {
      text-decoration: none;
      color: #fff;
      background-color: #fa5454; }
    @media (max-width: 1024px) {
      .sidebar-add-container .sidebar-button-add {
        display: none; } }
  .sidebar-add-container.open .sidebar-add-popup {
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1; }
  .sidebar-add-container.open .sidebar-button-add {
    color: #fff;
    background-color: #f56363;
    -webkit-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg); }
  @media (max-width: 767px) {
    .sidebar-add-container {
      display: none; } }

#unauth {
  margin: 36px; }
  #unauth h3 {
    margin-bottom: 24px; }
  #unauth .button {
    margin: 12px 0; }
  #unauth .sidebar-footer-links {
    position: fixed;
    bottom: 34.8px;
    left: 36px; }
    #unauth .sidebar-footer-links a {
      display: inline-block;
      margin-right: 18px; }

/*== Sub Navbar ===========================*/
.sub-nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.02); }
  .sub-nav::after {
    content: '';
    display: table;
    clear: both; }
  .sub-nav .sub-nav-menu {
    float: left;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .sub-nav .sub-nav-menu li {
      display: inline; }
      .sub-nav .sub-nav-menu li a {
        display: inline-block;
        padding: 25px 0 20px;
        margin: 0 12px;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        border-bottom: 4px solid transparent;
        color: rgba(0, 0, 0, 0.4); }
        .sub-nav .sub-nav-menu li a:hover {
          text-decoration: none;
          color: #111; }
      .sub-nav .sub-nav-menu li.active a {
        color: #111;
        border-bottom-color: #43c5b8; }
  .sub-nav .button {
    margin: 12px 0 12px 12px;
    float: right; }
    .sub-nav .button.icon-only {
      margin-left: 0; }
      .sub-nav .button.icon-only:hover .twitter {
        color: #33C6F4; }
      .sub-nav .button.icon-only:hover .facebook {
        color: #3C599F; }
  .sub-nav .user-teams {
    float: right;
    height: 60px;
    padding: 12px 0; }
    .sub-nav .user-teams dt {
      display: block;
      float: left;
      height: 36px;
      line-height: 36px;
      margin: 0; }
    .sub-nav .user-teams dd {
      display: block;
      float: left;
      width: 36px;
      height: 36px;
      margin-left: 12px; }
    @media (max-width: 767px) {
      .sub-nav .user-teams {
        display: none; } }
  .sub-nav .playlist-progress {
    margin: 12px;
    float: right;
    width: 36px;
    height: 36px;
    position: relative; }
    .sub-nav .playlist-progress span {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      font-size: 11px;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.4); }
    @media (max-width: 767px) {
      .sub-nav .playlist-progress {
        float: none;
        position: absolute;
        right: 0;
        top: 0; } }
  @media (max-width: 767px) {
    .sub-nav {
      position: relative; }
      .sub-nav .sub-nav-menu {
        text-align: center;
        float: none; }
        .sub-nav .sub-nav-menu li a {
          margin: 0 8px; }
          .sub-nav .sub-nav-menu li a span {
            display: none; }
      .sub-nav .button {
        display: none; } }

.tabs-content .tabs-pane {
  display: none;
  position: relative;
  min-height: 500px; }
  .tabs-content .tabs-pane.active {
    display: block; }

.tabs-content .container:first-child {
  padding-top: 60px; }

/*== Bottom Navbar ==============================*/
#bottom-navbar {
  z-index: 200;
  position: fixed;
  bottom: 0;
  height: 60px;
  background-color: #fff;
  left: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  #bottom-navbar ul {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0 auto;
    width: 1008px;
    position: relative;
    text-align: center; }
    #bottom-navbar ul li {
      display: inline-block; }
      #bottom-navbar ul li a {
        height: 36px; }
        #bottom-navbar ul li a .ss-icon, #bottom-navbar ul li a .sidebar-button, #bottom-navbar ul li a .playlist-container .playlist-toggle, .playlist-container #bottom-navbar ul li a .playlist-toggle, #bottom-navbar ul #notifications-list li a .avatar-container .avatar:last-child:after, #notifications-list #bottom-navbar ul li a .avatar-container .avatar:last-child:after, #bottom-navbar ul #notifications-list li .avatar-container a .avatar:last-child:after, #notifications-list #bottom-navbar ul li .avatar-container a .avatar:last-child:after, #bottom-navbar ul li a .feed-message .close-button, .feed-message #bottom-navbar ul li a .close-button, #bottom-navbar ul li a .notification .close, .notification #bottom-navbar ul li a .close {
          vertical-align: middle;
          font-size: 14px; }
        #bottom-navbar ul li a .count {
          margin-left: 6px;
          font-size: 11px;
          font-weight: 700;
          display: inline-block;
          height: 36px;
          line-height: 36px; }
      #bottom-navbar ul li .small, #bottom-navbar ul li form .form-content .form-element-helper, form .form-content #bottom-navbar ul li .form-element-helper, #bottom-navbar ul li #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header #bottom-navbar ul li .free, #bottom-navbar ul li #plan-selector .check-list li, #plan-selector .check-list #bottom-navbar ul li li, #bottom-navbar ul #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown #bottom-navbar ul li a, #bottom-navbar ul li .error .error-message, .error #bottom-navbar ul li .error-message, #bottom-navbar ul li .sub-nav .user-teams dt, .sub-nav .user-teams #bottom-navbar ul li dt, #bottom-navbar ul li #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter #bottom-navbar ul li .condensed-sub-links, #bottom-navbar ul li #billing .billing-table thead, #billing .billing-table #bottom-navbar ul li thead, #bottom-navbar ul .big-selector.subs.open li .sub, .big-selector.subs.open #bottom-navbar ul li .sub, #bottom-navbar ul li .user-card .user-card-meta li, .user-card .user-card-meta #bottom-navbar ul li li, #bottom-navbar ul li
      .user-card .bottom-button li,
      .user-card .bottom-button #bottom-navbar ul li li, #bottom-navbar ul li
      .user-card-flipped .user-card-meta li,
      .user-card-flipped .user-card-meta #bottom-navbar ul li li, #bottom-navbar ul li
      .user-card-flipped .bottom-button li,
      .user-card-flipped .bottom-button #bottom-navbar ul li li, #bottom-navbar ul li .topic-container .toggle-button, .topic-container #bottom-navbar ul li .toggle-button, #bottom-navbar #notifications-filters ul li label, #notifications-filters #bottom-navbar ul li label, #bottom-navbar ul li .message p, .message #bottom-navbar ul li p, #bottom-navbar ul li #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info #bottom-navbar ul li .variable {
        line-height: 60px; }
      #bottom-navbar ul li.pull-left {
        float: left; }
      #bottom-navbar ul li.pull-right {
        float: right; }
    #bottom-navbar ul .icon-holder {
      float: right;
      margin-left: 18px; }
      #bottom-navbar ul .icon-holder a {
        display: inline-block;
        vertical-align: middle;
        padding: 0 8px;
        height: 36px;
        color: rgba(0, 0, 0, 0.32);
        margin: 12px 0 0;
        line-height: 36px;
        -webkit-transition: color 0.2s ease-in;
                transition: color 0.2s ease-in; }
        #bottom-navbar ul .icon-holder a span {
          font-size: 14px;
          line-height: 36px;
          vertical-align: middle;
          margin-right: 0; }
        #bottom-navbar ul .icon-holder a:hover {
          color: rgba(0, 0, 0, 0.4); }
          #bottom-navbar ul .icon-holder a:hover .star {
            color: #faca55; }
          #bottom-navbar ul .icon-holder a:hover .twitter {
            color: #33C6F4; }
          #bottom-navbar ul .icon-holder a:hover .facebook {
            color: #3C599F; }
        #bottom-navbar ul .icon-holder a.comment-toggle.active {
          color: rgba(0, 0, 0, 0.6); }
        #bottom-navbar ul .icon-holder a.favorite-toggle.active .ss-icon, #bottom-navbar ul .icon-holder a.favorite-toggle.active .sidebar-button, #bottom-navbar ul .icon-holder a.favorite-toggle.active .playlist-container .playlist-toggle, .playlist-container #bottom-navbar ul .icon-holder a.favorite-toggle.active .playlist-toggle, #bottom-navbar ul .icon-holder a.favorite-toggle.active #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container #bottom-navbar ul .icon-holder a.favorite-toggle.active .avatar:last-child:after, #bottom-navbar ul .icon-holder a.favorite-toggle.active .feed-message .close-button, .feed-message #bottom-navbar ul .icon-holder a.favorite-toggle.active .close-button, #bottom-navbar ul .icon-holder a.favorite-toggle.active .notification .close, .notification #bottom-navbar ul .icon-holder a.favorite-toggle.active .close {
          color: #faca55; }
        #bottom-navbar ul .icon-holder a b {
          font-size: 11px;
          vertical-align: middle;
          font-weight: 700; }
    #bottom-navbar ul .back {
      padding: 18px 10px;
      margin-right: 12px; }
    #bottom-navbar ul .close a {
      color: rgba(0, 0, 0, 0.32);
      display: block;
      height: 36px;
      margin: 12px; }
      #bottom-navbar ul .close a span {
        font-size: 18px;
        line-height: 36px; }
    #bottom-navbar ul .next,
    #bottom-navbar ul .action {
      padding-top: 12px;
      margin-left: 12px; }
      #bottom-navbar ul .next img,
      #bottom-navbar ul .action img {
        -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
                transform: rotate(270deg); }
    #bottom-navbar ul .context {
      margin-top: 15px;
      font-size: 14px;
      vertical-align: middle;
      text-align: left; }
      #bottom-navbar ul .context a {
        display: inline-block; }
      #bottom-navbar ul .context:hover,
      #bottom-navbar ul .context:hover small,
      #bottom-navbar ul .context:hover .detail-header .avatar .small, .detail-header .avatar
      #bottom-navbar ul .context:hover .small,
      #bottom-navbar ul .context:hover .detail-header .avatar form .form-content .form-element-helper, .detail-header .avatar form .form-content
      #bottom-navbar ul .context:hover .form-element-helper,
      #bottom-navbar ul .context:hover form .form-content .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar
      #bottom-navbar ul .context:hover .form-element-helper,
      #bottom-navbar ul .context:hover .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header
      #bottom-navbar ul .context:hover .free,
      #bottom-navbar ul .context:hover #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar
      #bottom-navbar ul .context:hover .free,
      #bottom-navbar ul .context:hover .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li
      #bottom-navbar ul .context:hover a,
      #bottom-navbar ul .context:hover #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar
      #bottom-navbar ul .context:hover a,
      #bottom-navbar ul .context:hover .detail-header .avatar .error .error-message, .detail-header .avatar .error
      #bottom-navbar ul .context:hover .error-message,
      #bottom-navbar ul .context:hover .error .detail-header .avatar .error-message, .error .detail-header .avatar
      #bottom-navbar ul .context:hover .error-message,
      #bottom-navbar ul .context:hover .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams
      #bottom-navbar ul .context:hover dt,
      #bottom-navbar ul .context:hover .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar
      #bottom-navbar ul .context:hover dt,
      #bottom-navbar ul .context:hover .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter
      #bottom-navbar ul .context:hover .condensed-sub-links,
      #bottom-navbar ul .context:hover #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar
      #bottom-navbar ul .context:hover .condensed-sub-links,
      #bottom-navbar ul .context:hover .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table
      #bottom-navbar ul .context:hover thead,
      #bottom-navbar ul .context:hover #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar
      #bottom-navbar ul .context:hover thead,
      #bottom-navbar ul .context:hover .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li
      #bottom-navbar ul .context:hover .sub,
      #bottom-navbar ul .context:hover .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar
      #bottom-navbar ul .context:hover .sub,
      #bottom-navbar ul .context:hover .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover .detail-header .avatar
      .user-card .bottom-button li, .detail-header .avatar
      .user-card .bottom-button
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover
      .user-card .bottom-button .detail-header .avatar li,
      .user-card .bottom-button .detail-header .avatar
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover .detail-header .avatar
      .user-card-flipped .user-card-meta li, .detail-header .avatar
      .user-card-flipped .user-card-meta
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover
      .user-card-flipped .user-card-meta .detail-header .avatar li,
      .user-card-flipped .user-card-meta .detail-header .avatar
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover .detail-header .avatar
      .user-card-flipped .bottom-button li, .detail-header .avatar
      .user-card-flipped .bottom-button
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover
      .user-card-flipped .bottom-button .detail-header .avatar li,
      .user-card-flipped .bottom-button .detail-header .avatar
      #bottom-navbar ul .context:hover li,
      #bottom-navbar ul .context:hover .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container
      #bottom-navbar ul .context:hover .toggle-button,
      #bottom-navbar ul .context:hover .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar
      #bottom-navbar ul .context:hover .toggle-button,
      #bottom-navbar .detail-header .avatar #notifications-filters ul .context:hover li label, .detail-header .avatar #notifications-filters
      #bottom-navbar ul .context:hover li label,
      #bottom-navbar .detail-header .avatar #notifications-filters ul li .context:hover label, .detail-header .avatar #notifications-filters
      #bottom-navbar ul li .context:hover label,
      #bottom-navbar #notifications-filters ul .context:hover li .detail-header .avatar label, #notifications-filters
      #bottom-navbar ul .context:hover li .detail-header .avatar label,
      #bottom-navbar #notifications-filters ul li .detail-header .avatar .context:hover label, #notifications-filters
      #bottom-navbar ul li .detail-header .avatar .context:hover label,
      #bottom-navbar ul .context:hover .detail-header .avatar .message p, .detail-header .avatar .message
      #bottom-navbar ul .context:hover p,
      #bottom-navbar ul .context:hover .message .detail-header .avatar p, .message .detail-header .avatar
      #bottom-navbar ul .context:hover p,
      #bottom-navbar ul .context:hover .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info
      #bottom-navbar ul .context:hover .variable,
      #bottom-navbar ul .context:hover #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar
      #bottom-navbar ul .context:hover .variable {
        color: rgba(0, 0, 0, 0.75); }
    #bottom-navbar ul small, #bottom-navbar ul .detail-header .avatar .small, .detail-header .avatar #bottom-navbar ul .small, #bottom-navbar ul .detail-header .avatar form .form-content .form-element-helper, .detail-header .avatar form .form-content #bottom-navbar ul .form-element-helper, #bottom-navbar ul form .form-content .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar #bottom-navbar ul .form-element-helper, #bottom-navbar ul .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul .free, #bottom-navbar ul #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul .free, #bottom-navbar ul .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li, #bottom-navbar ul #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li a, .detail-header .avatar #playlist-dropdown-selector .dropdown li #bottom-navbar ul a, #bottom-navbar ul #playlist-dropdown-selector .dropdown li .detail-header .avatar a, #playlist-dropdown-selector .dropdown li .detail-header .avatar #bottom-navbar ul a, #bottom-navbar ul .detail-header .avatar .error .error-message, .detail-header .avatar .error #bottom-navbar ul .error-message, #bottom-navbar ul .error .detail-header .avatar .error-message, .error .detail-header .avatar #bottom-navbar ul .error-message, #bottom-navbar ul .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul dt, #bottom-navbar ul .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul dt, #bottom-navbar ul .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul .condensed-sub-links, #bottom-navbar ul .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table #bottom-navbar ul thead, #bottom-navbar ul #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar #bottom-navbar ul thead, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li .sub, .detail-header .avatar .big-selector.subs.open li #bottom-navbar ul .sub, #bottom-navbar ul .big-selector.subs.open li .detail-header .avatar .sub, .big-selector.subs.open li .detail-header .avatar #bottom-navbar ul .sub, #bottom-navbar ul .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li, #bottom-navbar ul .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
    .user-card .bottom-button li, .detail-header .avatar
    .user-card .bottom-button #bottom-navbar ul li, #bottom-navbar ul
    .user-card .bottom-button .detail-header .avatar li,
    .user-card .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
    .user-card-flipped .user-card-meta li, .detail-header .avatar
    .user-card-flipped .user-card-meta #bottom-navbar ul li, #bottom-navbar ul
    .user-card-flipped .user-card-meta .detail-header .avatar li,
    .user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar
    .user-card-flipped .bottom-button li, .detail-header .avatar
    .user-card-flipped .bottom-button #bottom-navbar ul li, #bottom-navbar ul
    .user-card-flipped .bottom-button .detail-header .avatar li,
    .user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li, #bottom-navbar ul .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container #bottom-navbar ul .toggle-button, #bottom-navbar ul .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar #bottom-navbar ul .toggle-button, #bottom-navbar .detail-header .avatar #notifications-filters ul li label, .detail-header .avatar #notifications-filters #bottom-navbar ul li label, #bottom-navbar #notifications-filters ul li .detail-header .avatar label, #notifications-filters #bottom-navbar ul li .detail-header .avatar label, #bottom-navbar ul .detail-header .avatar .message p, .detail-header .avatar .message #bottom-navbar ul p, #bottom-navbar ul .message .detail-header .avatar p, .message .detail-header .avatar #bottom-navbar ul p, #bottom-navbar ul .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul .variable, #bottom-navbar ul #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul .variable {
      margin-top: 4px;
      display: block;
      -webkit-transition: color 0.2s;
              transition: color 0.2s; }
    #bottom-navbar ul .select-container {
      border: 1px solid rgba(0, 0, 0, 0.12);
      height: 36px;
      margin-top: 12px;
      padding: 8px;
      margin-right: 12px;
      border-radius: 2px; }
      #bottom-navbar ul .select-container select {
        min-width: 200px; }
    #bottom-navbar ul .next-up-mobile,
    #bottom-navbar ul .start-learning-mobile {
      display: none; }
  #bottom-navbar.writing-mode li {
    margin-top: 12px; }
    #bottom-navbar.writing-mode li .go-back img {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
    #bottom-navbar.writing-mode li .delete {
      color: rgba(0, 0, 0, 0.32);
      margin-left: 12px; }
  #bottom-navbar.writing-mode #changes-are-saved {
    line-height: 34px;
    margin-right: 6px; }
  @media (max-width: 1024px) {
    #bottom-navbar.writing-mode ul {
      width: 100%;
      padding: 0 12px; } }
  @media (max-width: 767px) {
    #bottom-navbar.writing-mode ul {
      padding: 0 5px; }
      #bottom-navbar.writing-mode ul li {
        margin-top: 5px; } }
  @media (max-width: 767px) {
    #bottom-navbar {
      height: 48px;
      bottom: inherit;
      top: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      border-top: 0;
      box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05); }
      #bottom-navbar ul {
        width: inherit; }
        #bottom-navbar ul li {
          padding: 0; }
          #bottom-navbar ul li.back {
            padding: 0; }
            #bottom-navbar ul li.back a {
              height: inherit;
              display: block;
              width: 48px;
              height: 48px;
              text-align: center;
              padding-top: 12px;
              border-right: 1px solid rgba(0, 0, 0, 0.12); }
          #bottom-navbar ul li.context {
            font-size: 12px;
            margin-top: 10px;
            overflow-x: hidden;
            white-space: nowrap;
            max-width: 75%; }
            #bottom-navbar ul li.context small, #bottom-navbar ul li.context .detail-header .avatar .small, .detail-header .avatar #bottom-navbar ul li.context .small, #bottom-navbar ul li.context .detail-header .avatar form .form-content .form-element-helper, .detail-header .avatar form .form-content #bottom-navbar ul li.context .form-element-helper, #bottom-navbar ul li.context form .form-content .detail-header .avatar .form-element-helper, form .form-content .detail-header .avatar #bottom-navbar ul li.context .form-element-helper, #bottom-navbar ul li.context .detail-header .avatar #plan-selector .plan .plan-header .free, .detail-header .avatar #plan-selector .plan .plan-header #bottom-navbar ul li.context .free, #bottom-navbar ul li.context #plan-selector .plan .plan-header .detail-header .avatar .free, #plan-selector .plan .plan-header .detail-header .avatar #bottom-navbar ul li.context .free, #bottom-navbar ul li.context .detail-header .avatar #plan-selector .check-list li, .detail-header .avatar #plan-selector .check-list #bottom-navbar ul li.context li, #bottom-navbar ul li.context #plan-selector .check-list .detail-header .avatar li, #plan-selector .check-list .detail-header .avatar #bottom-navbar ul li.context li, #bottom-navbar ul .detail-header .avatar #playlist-dropdown-selector .dropdown li.context a, .detail-header .avatar #playlist-dropdown-selector .dropdown #bottom-navbar ul li.context a, #bottom-navbar ul #playlist-dropdown-selector .dropdown li.context .detail-header .avatar a, #playlist-dropdown-selector .dropdown #bottom-navbar ul li.context .detail-header .avatar a, #bottom-navbar ul li.context .detail-header .avatar .error .error-message, .detail-header .avatar .error #bottom-navbar ul li.context .error-message, #bottom-navbar ul li.context .error .detail-header .avatar .error-message, .error .detail-header .avatar #bottom-navbar ul li.context .error-message, #bottom-navbar ul li.context .detail-header .avatar .sub-nav .user-teams dt, .detail-header .avatar .sub-nav .user-teams #bottom-navbar ul li.context dt, #bottom-navbar ul li.context .sub-nav .user-teams .detail-header .avatar dt, .sub-nav .user-teams .detail-header .avatar #bottom-navbar ul li.context dt, #bottom-navbar ul li.context .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, .detail-header .avatar #chapters.condensed .chapter #bottom-navbar ul li.context .condensed-sub-links, #bottom-navbar ul li.context #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar #bottom-navbar ul li.context .condensed-sub-links, #bottom-navbar ul li.context .detail-header .avatar #billing .billing-table thead, .detail-header .avatar #billing .billing-table #bottom-navbar ul li.context thead, #bottom-navbar ul li.context #billing .billing-table .detail-header .avatar thead, #billing .billing-table .detail-header .avatar #bottom-navbar ul li.context thead, #bottom-navbar ul .detail-header .avatar .big-selector.subs.open li.context .sub, .detail-header .avatar .big-selector.subs.open #bottom-navbar ul li.context .sub, #bottom-navbar ul .big-selector.subs.open li.context .detail-header .avatar .sub, .big-selector.subs.open #bottom-navbar ul li.context .detail-header .avatar .sub, #bottom-navbar ul li.context .detail-header .avatar .user-card .user-card-meta li, .detail-header .avatar .user-card .user-card-meta #bottom-navbar ul li.context li, #bottom-navbar ul li.context .user-card .user-card-meta .detail-header .avatar li, .user-card .user-card-meta .detail-header .avatar #bottom-navbar ul li.context li, #bottom-navbar ul li.context .detail-header .avatar
            .user-card .bottom-button li, .detail-header .avatar
            .user-card .bottom-button #bottom-navbar ul li.context li, #bottom-navbar ul li.context
            .user-card .bottom-button .detail-header .avatar li,
            .user-card .bottom-button .detail-header .avatar #bottom-navbar ul li.context li, #bottom-navbar ul li.context .detail-header .avatar
            .user-card-flipped .user-card-meta li, .detail-header .avatar
            .user-card-flipped .user-card-meta #bottom-navbar ul li.context li, #bottom-navbar ul li.context
            .user-card-flipped .user-card-meta .detail-header .avatar li,
            .user-card-flipped .user-card-meta .detail-header .avatar #bottom-navbar ul li.context li, #bottom-navbar ul li.context .detail-header .avatar
            .user-card-flipped .bottom-button li, .detail-header .avatar
            .user-card-flipped .bottom-button #bottom-navbar ul li.context li, #bottom-navbar ul li.context
            .user-card-flipped .bottom-button .detail-header .avatar li,
            .user-card-flipped .bottom-button .detail-header .avatar #bottom-navbar ul li.context li, #bottom-navbar ul li.context .detail-header .avatar .topic-container .toggle-button, .detail-header .avatar .topic-container #bottom-navbar ul li.context .toggle-button, #bottom-navbar ul li.context .topic-container .detail-header .avatar .toggle-button, .topic-container .detail-header .avatar #bottom-navbar ul li.context .toggle-button, #bottom-navbar .detail-header .avatar #notifications-filters ul li.context label, .detail-header .avatar #notifications-filters #bottom-navbar ul li.context label, #bottom-navbar #notifications-filters ul li.context .detail-header .avatar label, #notifications-filters #bottom-navbar ul li.context .detail-header .avatar label, #bottom-navbar ul li.context .detail-header .avatar .message p, .detail-header .avatar .message #bottom-navbar ul li.context p, #bottom-navbar ul li.context .message .detail-header .avatar p, .message .detail-header .avatar #bottom-navbar ul li.context p, #bottom-navbar ul li.context .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, .detail-header .avatar #style-guide .swatch-container .swatch-info #bottom-navbar ul li.context .variable, #bottom-navbar ul li.context #style-guide .swatch-container .swatch-info .detail-header .avatar .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar #bottom-navbar ul li.context .variable {
              font-size: 10px; }
          #bottom-navbar ul li.next, #bottom-navbar ul li.icon-holder {
            display: none; }
          #bottom-navbar ul li.next-up-mobile {
            display: block;
            position: absolute;
            z-index: 10;
            right: 0;
            top: 0; }
            #bottom-navbar ul li.next-up-mobile a {
              display: block;
              width: 48px;
              height: 47px;
              line-height: 48px;
              background: #fff;
              border-left: 1px solid rgba(0, 0, 0, 0.12); }
          #bottom-navbar ul li.start-learning-mobile {
            display: block;
            position: absolute;
            z-index: 10;
            right: 0;
            top: 0; }
            #bottom-navbar ul li.start-learning-mobile a {
              display: block;
              height: 47px;
              line-height: 48px;
              border-left: 1px solid rgba(0, 0, 0, 0.12);
              font-size: 10px;
              padding: 0 12px;
              text-transform: uppercase;
              font-weight: 600; } }

/*=========================================
  3. Detail Pages
===========================================*/
/*== Detail Pages / Headers ==============*/
.detail-header {
  padding: 36px 0;
  position: relative;
  text-align: center;
  font-family: "Libre Baskerville", serif; }
  @media (max-width: 767px) {
    .detail-header {
      padding: 48px 12px 36px !important; } }
  .detail-header h1, .detail-header #editor-chapter-title {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 12px; }
    @media (max-width: 767px) {
      .detail-header h1, .detail-header #editor-chapter-title {
        font-size: 24px; } }
  .detail-header .detail-header-subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.32);
    margin-bottom: 12px;
    font-weight: normal; }
    .detail-header .detail-header-subtitle span {
      display: inline-block; }
    .detail-header .detail-header-subtitle img {
      display: inline-block;
      vertical-align: middle;
      margin-right: 12px;
      border-radius: 25px; }
  .detail-header .detail-header-meta {
    margin-bottom: 24px;
    font-family: "Open Sans", sans-serif; }
  .detail-header .avatar {
    margin: 0 auto 24px; }
    .detail-header .avatar .small, .detail-header .avatar form .form-content .form-element-helper, form .form-content .detail-header .avatar .form-element-helper, .detail-header .avatar #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header .detail-header .avatar .free, .detail-header .avatar #plan-selector .check-list li, #plan-selector .check-list .detail-header .avatar li, .detail-header .avatar #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown li .detail-header .avatar a, .detail-header .avatar .error .error-message, .error .detail-header .avatar .error-message, .detail-header .avatar .sub-nav .user-teams dt, .sub-nav .user-teams .detail-header .avatar dt, .detail-header .avatar #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter .detail-header .avatar .condensed-sub-links, .detail-header .avatar #billing .billing-table thead, #billing .billing-table .detail-header .avatar thead, .detail-header .avatar .big-selector.subs.open li .sub, .big-selector.subs.open li .detail-header .avatar .sub, .detail-header .avatar .user-card .user-card-meta li, .user-card .user-card-meta .detail-header .avatar li, .detail-header .avatar
    .user-card .bottom-button li,
    .user-card .bottom-button .detail-header .avatar li, .detail-header .avatar
    .user-card-flipped .user-card-meta li,
    .user-card-flipped .user-card-meta .detail-header .avatar li, .detail-header .avatar
    .user-card-flipped .bottom-button li,
    .user-card-flipped .bottom-button .detail-header .avatar li, .detail-header .avatar .topic-container .toggle-button, .topic-container .detail-header .avatar .toggle-button, .detail-header .avatar #notifications-filters ul li label, #notifications-filters ul li .detail-header .avatar label, .detail-header .avatar .message p, .message .detail-header .avatar p, .detail-header .avatar #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info .detail-header .avatar .variable {
      font-family: "Open Sans", sans-serif;
      font-size: 10px;
      top: 56px;
      width: 72px; }
  .detail-header .small a, .detail-header form .form-content .form-element-helper a, form .form-content .detail-header .form-element-helper a, .detail-header #plan-selector .plan .plan-header .free a, #plan-selector .plan .plan-header .detail-header .free a, .detail-header #plan-selector .check-list li a, #plan-selector .check-list .detail-header li a, .detail-header #playlist-dropdown-selector .dropdown li a a, #playlist-dropdown-selector .dropdown li .detail-header a a, .detail-header .error .error-message a, .error .detail-header .error-message a, .detail-header .sub-nav .user-teams dt a, .sub-nav .user-teams .detail-header dt a, .detail-header #chapters.condensed .chapter .condensed-sub-links a, #chapters.condensed .chapter .detail-header .condensed-sub-links a, .detail-header #billing .billing-table thead a, #billing .billing-table .detail-header thead a, .detail-header .big-selector.subs.open li .sub a, .big-selector.subs.open li .detail-header .sub a, .detail-header .user-card .user-card-meta li a, .user-card .user-card-meta .detail-header li a, .detail-header
  .user-card .bottom-button li a,
  .user-card .bottom-button .detail-header li a, .detail-header
  .user-card-flipped .user-card-meta li a,
  .user-card-flipped .user-card-meta .detail-header li a, .detail-header
  .user-card-flipped .bottom-button li a,
  .user-card-flipped .bottom-button .detail-header li a, .detail-header .topic-container .toggle-button a, .topic-container .detail-header .toggle-button a, .detail-header #notifications-filters ul li label a, #notifications-filters ul li .detail-header label a, .detail-header .message p a, .message .detail-header p a, .detail-header #style-guide .swatch-container .swatch-info .variable a, #style-guide .swatch-container .swatch-info .detail-header .variable a {
    border-color: transparent; }
    .detail-header .small a:hover, .detail-header form .form-content .form-element-helper a:hover, form .form-content .detail-header .form-element-helper a:hover, .detail-header #plan-selector .plan .plan-header .free a:hover, #plan-selector .plan .plan-header .detail-header .free a:hover, .detail-header #plan-selector .check-list li a:hover, #plan-selector .check-list .detail-header li a:hover, .detail-header #playlist-dropdown-selector .dropdown li a a:hover, #playlist-dropdown-selector .dropdown li .detail-header a a:hover, .detail-header .error .error-message a:hover, .error .detail-header .error-message a:hover, .detail-header .sub-nav .user-teams dt a:hover, .sub-nav .user-teams .detail-header dt a:hover, .detail-header #chapters.condensed .chapter .condensed-sub-links a:hover, #chapters.condensed .chapter .detail-header .condensed-sub-links a:hover, .detail-header #billing .billing-table thead a:hover, #billing .billing-table .detail-header thead a:hover, .detail-header .big-selector.subs.open li .sub a:hover, .big-selector.subs.open li .detail-header .sub a:hover, .detail-header .user-card .user-card-meta li a:hover, .user-card .user-card-meta .detail-header li a:hover, .detail-header
    .user-card .bottom-button li a:hover,
    .user-card .bottom-button .detail-header li a:hover, .detail-header
    .user-card-flipped .user-card-meta li a:hover,
    .user-card-flipped .user-card-meta .detail-header li a:hover, .detail-header
    .user-card-flipped .bottom-button li a:hover,
    .user-card-flipped .bottom-button .detail-header li a:hover, .detail-header .topic-container .toggle-button a:hover, .topic-container .detail-header .toggle-button a:hover, .detail-header #notifications-filters ul li label a:hover, #notifications-filters ul li .detail-header label a:hover, .detail-header .message p a:hover, .message .detail-header p a:hover, .detail-header #style-guide .swatch-container .swatch-info .variable a:hover, #style-guide .swatch-container .swatch-info .detail-header .variable a:hover {
      border-color: rgba(0, 0, 0, 0.32); }
  .detail-header .mobile-buttons {
    display: none; }
    @media (max-width: 767px) {
      .detail-header .mobile-buttons {
        display: block;
        text-align: center;
        margin: 24px 0;
        position: relative;
        z-index: 10; } }

.user-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

.team-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

.header-users {
  position: relative;
  z-index: 1000; }
  .header-users li {
    display: inline-block;
    margin: 0 2px;
    vertical-align: middle; }
    .header-users li .avatar {
      margin: 0;
      display: block; }

.playlist-header {
  padding: 96px 0 84px;
  background-color: #111;
  position: relative;
  margin-left: -1px;
  overflow: hidden; }
  .playlist-header .detail-header-title,
  .playlist-header .detail-header-subtitle {
    color: white;
    z-index: 10;
    position: relative; }
    .playlist-header .detail-header-title a:hover,
    .playlist-header .detail-header-subtitle a:hover {
      color: white;
      border-color: rgba(255, 255, 255, 0.4) !important; }
  .playlist-header .playlist-header-branding {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; }
    .playlist-header .playlist-header-branding .banner {
      display: block;
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      width: 320px;
      height: 110px;
      top: -85px;
      left: -85px;
      position: absolute; }
    .playlist-header .playlist-header-branding .avatar {
      position: absolute;
      top: 12px;
      left: 12px; }
    @media (max-width: 767px) {
      .playlist-header .playlist-header-branding .banner {
        top: -105px;
        left: -110px; }
      .playlist-header .playlist-header-branding .avatar {
        height: 24px;
        width: 24px; } }
  .playlist-header .detail-header-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0.85;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: blur(14px);
            filter: blur(14px); }
  .playlist-header .detail-header-background-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 5; }
  .playlist-header .avatar {
    display: inline-block;
    margin-right: 12px; }

.header-status {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: help;
  z-index: 10; }
  .header-status i {
    vertical-align: middle;
    margin-right: 3px;
    font-size: 12px;
    position: relative;
    bottom: -1px; }
  .header-status.status-brilliant {
    background: rgba(250, 202, 85, 0.24);
    color: #caa829; }

/*== Detail Pages / Playlists ==*/
#chapters {
  padding-top: 0;
  -webkit-transition: padding 0s;
          transition: padding 0s; }
  #chapters .intro {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 120px 0; }
    @media (max-width: 767px) {
      #chapters .intro {
        padding: 72px 12px 36px; } }
    #chapters .intro article {
      max-width: 600px;
      margin: 0 auto;
      font-family: "Libre Baskerville", serif; }
      #chapters .intro article .author .avatar {
        vertical-align: top;
        display: inline-block;
        margin: 6px 12px 0 0; }
      #chapters .intro article .author .author-info {
        vertical-align: top;
        display: inline-block;
        max-width: 540px; }
        #chapters .intro article .author .author-info p {
          margin-bottom: 0; }
        #chapters .intro article .author .author-info a {
          border-color: transparent; }
        #chapters .intro article .author .author-info span {
          display: block;
          font-family: "Open Sans", sans-serif; }
  #chapters .meta,
  #chapters p,
  #chapters .actions {
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  #chapters.condensed {
    padding-top: 60px; }
    #chapters.condensed .intro,
    #chapters.condensed .message {
      display: none; }
    #chapters.condensed .chapter {
      padding-top: 0px;
      padding-bottom: 0px;
      border-bottom-color: transparent;
      margin-bottom: 24px; }
      @media (max-width: 767px) {
        #chapters.condensed .chapter {
          padding: 0 12px; } }
      #chapters.condensed .chapter h1, #chapters.condensed .chapter #editor-chapter-title {
        font-size: 24px;
        margin-bottom: 3px; }
      #chapters.condensed .chapter .condensed-sub-links {
        display: block !important;
        visibility: visible;
        max-width: 600px;
        margin: 0 auto; }
        #chapters.condensed .chapter .condensed-sub-links .tip {
          border-bottom: 1px dotted rgba(0, 0, 0, 0.12); }
          #chapters.condensed .chapter .condensed-sub-links .tip.yellow {
            color: #caa829; }
        #chapters.condensed .chapter .condensed-sub-links a:hover {
          color: rgba(0, 0, 0, 0.6);
          text-decoration: underline; }
      #chapters.condensed .chapter .meta,
      #chapters.condensed .chapter p,
      #chapters.condensed .chapter .actions {
        overflow: hidden;
        height: 0;
        padding: 0;
        margin: 0; }
      #chapters.condensed .chapter .media {
        display: none; }
      #chapters.condensed .chapter .hidden-title {
        display: block; }
    #chapters.condensed .sortable .reorder-grabber {
      visibility: visible;
      display: block;
      opacity: 0;
      position: absolute;
      padding: 12px 9px;
      background: rgba(0, 0, 0, 0.02);
      top: -6px;
      left: -46px;
      font-weight: bold;
      font-size: 24px;
      margin: 0; }
    #chapters.condensed .sortable .chapter-number,
    #chapters.condensed .sortable .reorder-grabber {
      -webkit-transition: opacity 0.2s;
              transition: opacity 0.2s; }
    #chapters.condensed .sortable .chapter:hover .chapter-number {
      display: none; }
    #chapters.condensed .sortable .chapter:hover .reorder-grabber {
      opacity: 1; }
      #chapters.condensed .sortable .chapter:hover .reorder-grabber:hover {
        opacity: 0.8;
        cursor: move; }
    #chapters.condensed .sortable .ui-sortable-placeholder {
      background: rgba(0, 0, 0, 0.02);
      visibility: visible !important;
      max-width: 600px;
      margin: 0 auto 24px;
      outline: 2px dashed rgba(0, 0, 0, 0.12); }
  #chapters.hide-chapters .chapter.read {
    display: none; }

/*== Detail Pages / Playlists / Add Chapter  ====*/
#link-info {
  display: none; }
  #link-info.show {
    display: block; }

/*== Detail Pages / Playlists / Write Chapter  ==*/
#editor-chapter-title {
  display: block;
  width: 100%;
  height: 36px;
  border: 0;
  font-family: "Libre Baskerville", serif; }
  #editor-chapter-title.error {
    background: #ffefef; }

.medium-editor-placeholder:after {
  color: rgba(0, 0, 0, 0.32) !important;
  font-style: normal;
  top: 6px; }

/*== Detail Pages / Team ========================*/
#welcome-steps {
  margin-top: 36px;
  display: block; }
  #welcome-steps li {
    padding-left: 48px;
    position: relative;
    margin-bottom: 30px; }
    #welcome-steps li .count {
      position: absolute;
      top: -6px;
      left: 0;
      width: 36px;
      height: 36px;
      line-height: 36px;
      border-radius: 36px;
      text-align: center;
      background: #43c5b8;
      color: #fff; }
    #welcome-steps li .button {
      margin-top: 12px; }

/*== Detail Pages / Team / Insights =============*/
#stats {
  position: relative; }
  #stats .row {
    margin-bottom: 2%; }
  #stats .stat-block {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.02);
    padding: 36px;
    border-radius: 2px; }
    #stats .stat-block .small, #stats .stat-block form .form-content .form-element-helper, form .form-content #stats .stat-block .form-element-helper, #stats .stat-block #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header #stats .stat-block .free, #stats .stat-block #plan-selector .check-list li, #plan-selector .check-list #stats .stat-block li, #stats .stat-block #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown li #stats .stat-block a, #stats .stat-block .error .error-message, .error #stats .stat-block .error-message, #stats .stat-block .sub-nav .user-teams dt, .sub-nav .user-teams #stats .stat-block dt, #stats .stat-block #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter #stats .stat-block .condensed-sub-links, #stats .stat-block #billing .billing-table thead, #billing .billing-table #stats .stat-block thead, #stats .stat-block .big-selector.subs.open li .sub, .big-selector.subs.open li #stats .stat-block .sub, #stats .stat-block .user-card .user-card-meta li, .user-card .user-card-meta #stats .stat-block li, #stats .stat-block
    .user-card .bottom-button li,
    .user-card .bottom-button #stats .stat-block li, #stats .stat-block
    .user-card-flipped .user-card-meta li,
    .user-card-flipped .user-card-meta #stats .stat-block li, #stats .stat-block
    .user-card-flipped .bottom-button li,
    .user-card-flipped .bottom-button #stats .stat-block li, #stats .stat-block .topic-container .toggle-button, .topic-container #stats .stat-block .toggle-button, #stats .stat-block #notifications-filters ul li label, #notifications-filters ul li #stats .stat-block label, #stats .stat-block .message p, .message #stats .stat-block p, #stats .stat-block #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info #stats .stat-block .variable {
      margin-bottom: 0; }
  #stats .leaderboard li {
    padding: 8px 0;
    position: relative; }
    #stats .leaderboard li .number {
      color: rgba(0, 0, 0, 0.6);
      font-weight: 700;
      margin-right: 3px; }
    #stats .leaderboard li a {
      display: block;
      padding: 3px 0;
      border-radius: 2px; }
      #stats .leaderboard li a:hover {
        background: rgba(0, 0, 0, 0.02); }
    #stats .leaderboard li .avatar {
      display: inline-block;
      margin-right: 12px;
      vertical-align: middle; }
    #stats .leaderboard li .title {
      display: inline-block;
      vertical-align: middle; }
    #stats .leaderboard li .small, #stats .leaderboard li form .form-content .form-element-helper, form .form-content #stats .leaderboard li .form-element-helper, #stats .leaderboard li #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header #stats .leaderboard li .free, #stats .leaderboard li #plan-selector .check-list li, #plan-selector .check-list #stats .leaderboard li li, #stats .leaderboard #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown #stats .leaderboard li a, #stats .leaderboard li .error .error-message, .error #stats .leaderboard li .error-message, #stats .leaderboard li .sub-nav .user-teams dt, .sub-nav .user-teams #stats .leaderboard li dt, #stats .leaderboard li #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter #stats .leaderboard li .condensed-sub-links, #stats .leaderboard li #billing .billing-table thead, #billing .billing-table #stats .leaderboard li thead, #stats .leaderboard .big-selector.subs.open li .sub, .big-selector.subs.open #stats .leaderboard li .sub, #stats .leaderboard li .user-card .user-card-meta li, .user-card .user-card-meta #stats .leaderboard li li, #stats .leaderboard li
    .user-card .bottom-button li,
    .user-card .bottom-button #stats .leaderboard li li, #stats .leaderboard li
    .user-card-flipped .user-card-meta li,
    .user-card-flipped .user-card-meta #stats .leaderboard li li, #stats .leaderboard li
    .user-card-flipped .bottom-button li,
    .user-card-flipped .bottom-button #stats .leaderboard li li, #stats .leaderboard li .topic-container .toggle-button, .topic-container #stats .leaderboard li .toggle-button, #stats .leaderboard #notifications-filters ul li label, #notifications-filters ul #stats .leaderboard li label, #stats .leaderboard li .message p, .message #stats .leaderboard li p, #stats .leaderboard li #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info #stats .leaderboard li .variable {
      margin-top: 4px;
      display: block; }

.chart-legend {
  margin-left: 36px; }
  .chart-legend li {
    display: inline-block;
    margin-right: 36px; }
    .chart-legend li::before {
      content: '';
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 12px;
      background: #ddd;
      position: relative;
      top: 1px;
      margin-right: 5px; }
    .chart-legend li.var-1::before {
      background: #f56363; }
    .chart-legend li.var-2::before {
      background: #43c5b8; }

.hidden-stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  padding: 36px 0;
  z-index: 100; }
  .hidden-stats .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 24px !important;
    background: #fff; }
    .hidden-stats .container .badge {
      text-transform: uppercase;
      font-size: 11px;
      display: inline-block;
      background: rgba(250, 202, 85, 0.24);
      color: #caa829;
      padding: 6px 10px;
      border-radius: 2px;
      margin-bottom: 12px;
      font-weight: 600;
      cursor: help; }
    .hidden-stats .container p {
      margin-bottom: 24px; }
  @media (max-width: 1024px) {
    .hidden-stats {
      padding: 12px; }
      .hidden-stats .container {
        text-align: left; } }

/*== Detail Pages / Team / Billing ==============*/
#billing h5 {
  margin-bottom: 12px; }

#billing .billing-container {
  border-top: 1px solid rgba(0, 0, 0, 0.12); }
  #billing .billing-container .billing-empty {
    text-align: center;
    padding: 36px; }

#billing .billing-table {
  width: 100%; }
  #billing .billing-table thead {
    border-bottom: 1px solid #efefef; }
  #billing .billing-table tr th, #billing .billing-table tr td {
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
    text-align: left; }
  #billing .billing-table tr td {
    font-size: 14px; }
    #billing .billing-table tr td a {
      text-decoration: underline; }
      #billing .billing-table tr td a:hover {
        color: #f56363; }
  #billing .billing-table tr:last-child th, #billing .billing-table tr:last-child td {
    border-bottom: 0; }
  #billing .billing-table tr .paid {
    color: #43c5b8;
    font-style: italic; }
  #billing .billing-table tr .failed {
    color: #f56363;
    font-style: italic; }
  @media (max-width: 767px) {
    #billing .billing-table thead {
      display: none; }
    #billing .billing-table tr {
      margin-bottom: 10px;
      display: block;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 12px 24px; }
      #billing .billing-table tr td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted rgba(0, 0, 0, 0.12) !important; }
        #billing .billing-table tr td:before {
          color: rgba(0, 0, 0, 0.4);
          content: attr(data-label);
          float: left; }
        #billing .billing-table tr td:last-child {
          border-bottom: 0 !important; } }

#billing .billing-details,
#billing .plan-details {
  margin-bottom: 24px; }
  #billing .billing-details p,
  #billing .plan-details p {
    margin-bottom: 12px; }
  #billing .billing-details .upgrade-form,
  #billing .plan-details .upgrade-form {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 48px;
    text-align: center;
    border-radius: 3px; }

#plan-usage {
  margin-bottom: 12px;
  display: block; }
  #plan-usage li {
    margin-bottom: 12px;
    display: inline-block;
    width: 49%; }
    #plan-usage li p {
      margin-bottom: 6px; }
  #plan-usage .progress-bar {
    width: 93%; }

/*== Detail Pages / Playlist ====================*/
.playlist-overview {
  margin: 0px auto;
  display: block; }

.big-selector {
  position: relative;
  border-radius: 3px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  height: 37px; }
  .big-selector li {
    font-size: 14px;
    line-height: 22px;
    position: relative;
    height: 36px;
    display: none;
    margin: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 0;
    z-index: 10;
    background-color: #fff; }
    .big-selector li.selected {
      display: block; }
    .big-selector li a {
      display: block;
      padding: 7px; }
      .big-selector li a:hover {
        background-color: rgba(0, 0, 0, 0.02);
        color: #000; }
    .big-selector li .avatar {
      display: inline-block;
      border-radius: 12px;
      vertical-align: middle;
      margin-right: 6px;
      top: -2px; }
    .big-selector li .arrow {
      position: absolute;
      right: 12px;
      top: 12px;
      line-height: 12px; }
  .big-selector.open li {
    display: block;
    border-color: #ccc; }
    .big-selector.open li:last-child {
      border-bottom: 1px solid #ccc; }
  .big-selector.unfold {
    height: inherit;
    border: none;
    margin-left: -18px;
    margin-right: -18px; }
    .big-selector.unfold li {
      display: block;
      border: none;
      overflow: hidden; }
      .big-selector.unfold li a {
        padding-left: 18px;
        padding-right: 6px; }
        .big-selector.unfold li a .new-playlist {
          background: rgba(0, 0, 0, 0.12);
          text-align: center;
          line-height: 24px;
          font-size: 17px;
          font-weight: 200;
          color: rgba(0, 0, 0, 0.98); }
      .big-selector.unfold li.selected a {
        background: #43c5b8;
        color: #fff; }
      .big-selector.unfold li:last-child {
        border-bottom: none; }
  .big-selector.playlist-selector li .avatar {
    border-radius: 2px;
    width: 20px;
    background: #333; }
    .big-selector.playlist-selector li .avatar img {
      border-radius: 2px;
      width: 20px; }
  .big-selector.privacy-selector .ss-icon, .big-selector.privacy-selector .sidebar-button, .big-selector.privacy-selector .playlist-container .playlist-toggle, .playlist-container .big-selector.privacy-selector .playlist-toggle, .big-selector.privacy-selector #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .big-selector.privacy-selector .avatar:last-child:after, .big-selector.privacy-selector .feed-message .close-button, .feed-message .big-selector.privacy-selector .close-button, .big-selector.privacy-selector .notification .close, .notification .big-selector.privacy-selector .close {
    position: relative;
    top: 2px;
    margin-right: 6px;
    margin-left: 2px; }
  .big-selector.subs .sub {
    display: none; }
  .big-selector.subs.open li {
    height: 75px; }
    .big-selector.subs.open li .sub {
      display: block;
      margin-top: 5px; }

.playlist-visibility {
  display: none; }
  .playlist-visibility.show {
    display: block; }
  .playlist-visibility ul {
    margin-top: 12px; }
    .playlist-visibility ul li {
      margin-bottom: 18px;
      position: relative;
      padding-left: 26px; }
      .playlist-visibility ul li input[type="radio"] {
        position: absolute;
        left: 0;
        top: -5px;
        display: block; }
      .playlist-visibility ul li label {
        display: block;
        vertical-align: top; }
        .playlist-visibility ul li label .ss-icon, .playlist-visibility ul li label .sidebar-button, .playlist-visibility ul li label .playlist-container .playlist-toggle, .playlist-container .playlist-visibility ul li label .playlist-toggle, .playlist-visibility ul #notifications-list li label .avatar-container .avatar:last-child:after, #notifications-list .playlist-visibility ul li label .avatar-container .avatar:last-child:after, .playlist-visibility ul #notifications-list li .avatar-container label .avatar:last-child:after, #notifications-list .playlist-visibility ul li .avatar-container label .avatar:last-child:after, .playlist-visibility ul li label .feed-message .close-button, .feed-message .playlist-visibility ul li label .close-button, .playlist-visibility ul li label .notification .close, .notification .playlist-visibility ul li label .close {
          left: 0;
          display: inline-block;
          font-size: 11px;
          float: left;
          margin-right: 4px; }
        .playlist-visibility ul li label .title {
          display: block;
          margin-bottom: 4px; }
        .playlist-visibility ul li label .body {
          font-weight: normal;
          line-height: 18px; }

/*== Detail Pages / Settings ===================*/
.settings-header {
  text-align: center; }
  .settings-header .page-title {
    margin-bottom: 12px; }

.settings-tabs {
  background-color: transparent; }
  .settings-tabs .sub-nav-menu {
    text-align: center;
    float: none; }

.settings-content .tabs-pane {
  padding-top: 36px; }

.settings-connections li {
  padding: 24px 0;
  border-bottom: 1px solid #efefef; }
  .settings-connections li:last-child {
    border-bottom: 0; }
  .settings-connections li .button {
    float: right;
    position: relative;
    top: -5px; }
    @media (max-width: 767px) {
      .settings-connections li .button {
        float: none; } }
  .settings-connections li .ss-social {
    display: inline-block;
    vertical-align: middle;
    width: 24px; }

.settings-integrations p {
  margin-bottom: 12px; }

.settings-integrations .button-integration img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: relative;
  top: -1px; }

.settings-design .playlist-cover-container {
  padding: 0 4%;
  text-align: center; }
  .settings-design .playlist-cover-container .playlist-cover {
    margin-bottom: 12px; }

.settings-notifications li {
  padding: 6px 0; }

/*=========================================
  4. Chapters
===========================================*/
.chapter {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 120px 0;
  -webkit-transition: padding 0.3s ease;
          transition: padding 0.3s ease;
  -webkit-transition: border-color 0.3s ease;
          transition: border-color 0.3s ease; }
  .chapter.search-chapter {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    border-bottom: none; }
    .chapter.search-chapter article {
      border-bottom: 1px solid rgba(0, 0, 0, 0.16); }
    .chapter.search-chapter h3 {
      margin-bottom: 0; }
  @media (max-width: 767px) {
    .chapter {
      padding: 36px 0; } }
  .chapter .actions {
    max-width: 600px;
    margin: 0 auto 24px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .chapter .actions a {
      margin-right: 12px;
      color: rgba(0, 0, 0, 0.32); }
      .chapter .actions a.icon-action {
        font-size: 11px;
        font-weight: 700;
        display: inline-block;
        height: 36px;
        line-height: 36px;
        margin: 0 12px; }
        .chapter .actions a.icon-action .ss-icon, .chapter .actions a.icon-action .sidebar-button, .chapter .actions a.icon-action .playlist-container .playlist-toggle, .playlist-container .chapter .actions a.icon-action .playlist-toggle, .chapter .actions a.icon-action #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .chapter .actions a.icon-action .avatar:last-child:after, .chapter .actions a.icon-action .feed-message .close-button, .feed-message .chapter .actions a.icon-action .close-button, .chapter .actions a.icon-action .notification .close, .notification .chapter .actions a.icon-action .close {
          display: inline-block;
          vertical-align: middle;
          margin-right: 6px; }
        .chapter .actions a.icon-action:hover, .chapter .actions a.icon-action.active {
          color: rgba(0, 0, 0, 0.6); }
        .chapter .actions a.icon-action.favorite-toggle.active .ss-icon, .chapter .actions a.icon-action.favorite-toggle.active .sidebar-button, .chapter .actions a.icon-action.favorite-toggle.active .playlist-container .playlist-toggle, .playlist-container .chapter .actions a.icon-action.favorite-toggle.active .playlist-toggle, .chapter .actions a.icon-action.favorite-toggle.active #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .chapter .actions a.icon-action.favorite-toggle.active .avatar:last-child:after, .chapter .actions a.icon-action.favorite-toggle.active .feed-message .close-button, .feed-message .chapter .actions a.icon-action.favorite-toggle.active .close-button, .chapter .actions a.icon-action.favorite-toggle.active .notification .close, .notification .chapter .actions a.icon-action.favorite-toggle.active .close {
          color: #faca55; }
  .chapter.read h1, .chapter.read #editor-chapter-title {
    color: rgba(0, 0, 0, 0.4); }
  .chapter.read .read-icon {
    color: #43c5b8;
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    left: -30px;
    top: 7px; }
    @media (max-width: 767px) {
      .chapter.read .read-icon {
        position: static;
        padding: 0;
        font-size: 14px; } }
  .chapter.read .chapter-number {
    display: none; }
  .chapter.draft .message {
    margin-bottom: 24px; }
  .chapter .chapter-info .ss-icon, .chapter .chapter-info .sidebar-button, .chapter .chapter-info .playlist-container .playlist-toggle, .playlist-container .chapter .chapter-info .playlist-toggle, .chapter .chapter-info #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .chapter .chapter-info .avatar:last-child:after, .chapter .chapter-info .feed-message .close-button, .feed-message .chapter .chapter-info .close-button, .chapter .chapter-info .notification .close, .notification .chapter .chapter-info .close {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px; }
  .chapter .chapter-info a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    -webkit-transition: border-color 0.2s;
            transition: border-color 0.2s; }
    .chapter .chapter-info a:hover {
      color: rgba(0, 0, 0, 0.4);
      border-bottom-color: rgba(0, 0, 0, 0.32); }
  .chapter .media {
    margin: 26px -36px 36px; }
    @media (max-width: 767px) {
      .chapter .media {
        margin-left: 6px;
        margin-right: 6px; } }
  @media (max-width: 767px) {
    .chapter {
      padding-left: 12px;
      padding-right: 12px; } }

.chapter-view {
  padding-top: 36px;
  padding-bottom: 84px; }
  .chapter-view .media {
    background: rgba(0, 0, 0, 0.02);
    margin-bottom: 24px; }
    .chapter-view .media .media-container {
      max-width: 1008px;
      margin: 0 auto; }
    .chapter-view .media iframe {
      display: block;
      margin: 0 auto; }
    .chapter-view .media.screenshot {
      margin-left: -48px;
      margin-right: -48px; }
      @media (max-width: 767px) {
        .chapter-view .media.screenshot {
          margin: 12px 0; } }
  .chapter-view blockquote {
    padding-left: 30px;
    border-left: 3px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 36px;
    font-family: "Libre Baskerville", serif;
    font-style: italic; }
  .chapter-view ol, .chapter-view ul {
    list-style: inherit; }
  .chapter-view hr {
    width: 24px;
    height: 3px;
    margin: 48px auto;
    border: 0;
    display: block;
    background: rgba(0, 0, 0, 0.32); }
  .chapter-view .actions {
    text-align: center; }
  .chapter-view article .meta {
    margin-bottom: 30px !important; }
  @media (max-width: 767px) {
    .chapter-view {
      padding: 72px 12px 12px; } }

.box-view-viewer {
  display: block;
  margin: 0;
  height: 100%; }

.crocodoc-page-inner {
  border: 1px solid #ccc;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); }

article {
  max-width: 600px;
  margin: 0 auto;
  font-family: "Libre Baskerville", serif;
  position: relative; }
  article h1, article #editor-chapter-title {
    line-height: 36px;
    font-size: 27.6px;
    position: relative;
    margin-bottom: 19px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.75); }
  article .chapter-number {
    position: absolute;
    left: -30px;
    top: 3px;
    font-size: 18px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.32); }
    article .chapter-number:after {
      content: '.';
      display: inline-block; }
    @media (max-width: 767px) {
      article .chapter-number {
        position: static;
        padding: 0 2px; } }
  article p, article p:last-of-type {
    margin-bottom: 27.6px; }
    article p.meta, article p:last-of-type.meta {
      min-height: 36px;
      line-height: 36px;
      margin-bottom: 16.8px; }
    article p.note, article p:last-of-type.note {
      color: rgba(0, 0, 0, 0.32);
      margin-top: -4px;
      margin-bottom: 21.6px; }
      article p.note a, article p:last-of-type.note a {
        border-color: transparent; }
        article p.note a:hover, article p:last-of-type.note a:hover {
          border-color: rgba(0, 0, 0, 0.4); }
  article .avatar {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 12px;
    border: none;
    top: -2px; }
  article .media {
    overflow: hidden;
    margin: 26px 0 36px;
    position: relative;
    border-radius: 2px; }
    article .media video {
      max-width: 100%;
      height: auto; }
    article .media iframe,
    article .media embed,
    article .media object {
      max-width: 100%; }
    article .media.screenshot {
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-top: 16px solid rgba(0, 0, 0, 0.12);
      min-height: 100px; }
      article .media.screenshot img {
        display: block; }
    @media (max-width: 767px) {
      article .media {
        margin: 12px -12px 24px; } }
  article code {
    line-height: 28px; }
  article .amazon {
    border: 1px solid rgba(0, 0, 0, 0.12);
    min-height: 120px;
    padding: 24px;
    margin: 0 48px !important; }
    article .amazon .book-cover {
      max-width: 120px;
      display: inline-block;
      vertical-align: top;
      margin-right: 24px; }
    article .amazon .book-info {
      max-width: calc(100% - 150px);
      display: inline-block;
      vertical-align: top; }
      article .amazon .book-info h1, article .amazon .book-info #editor-chapter-title {
        font-size: 24px;
        line-height: 32px; }
  article .file {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.02);
    padding: 36px; }
    article .file .file-type {
      vertical-align: middle;
      display: inline-block;
      width: 60px;
      height: 60px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.12);
      margin-right: 12px;
      border-radius: 3px; }
    article .file .file-info {
      width: calc(100% - 80px);
      vertical-align: middle;
      display: inline-block; }
      article .file .file-info h3 {
        margin-bottom: 6px; }
      article .file .file-info p {
        font-family: "Open Sans", sans-serif;
        color: rgba(0, 0, 0, 0.32);
        margin-bottom: 0; }
  article .hidden-title {
    display: none; }

.empty-state {
  padding: 120px 24px;
  text-align: center; }
  .empty-state p {
    margin-bottom: 24px; }

/*== Iframe ===============================*/
#bottom-navbar.iframe-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.05); }
  @media (max-width: 767px) {
    #bottom-navbar.iframe-header {
      border-top: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05); } }
  #bottom-navbar.iframe-header ul {
    border: none; }

.iframe-container {
  position: absolute;
  bottom: 60px;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  .iframe-container #loading-page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px;
    z-index: 95;
    text-align: center; }
    .iframe-container #loading-page img {
      margin-right: 12px; }
    .iframe-container #loading-page a {
      display: inline; }
  .iframe-container #full-frame {
    width: 100%;
    margin: 0; }
  @media (max-width: 767px) {
    .iframe-container {
      bottom: 0;
      top: 48px; } }

#teacher-note {
  font-family: "Libre Baskerville", serif; }
  #teacher-note .meta {
    margin-bottom: 12px; }
    #teacher-note .meta .avatar {
      vertical-align: middle;
      display: inline-block;
      margin-right: 6px; }
    #teacher-note .meta .user {
      display: inline-block;
      vertical-align: middle;
      color: rgba(0, 0, 0, 0.4); }
  #teacher-note .note {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 24px; }
  @media (max-width: 767px) {
    #teacher-note {
      bottom: inherit;
      top: 48px; } }

#whats-gibbon-popup .info-col {
  padding-left: 36px; }
  #whats-gibbon-popup .info-col h2, #whats-gibbon-popup .info-col p {
    margin-bottom: 12px; }
  @media (max-width: 767px) {
    #whats-gibbon-popup .info-col {
      padding: inherit; } }

@media (max-width: 767px) {
  #whats-gibbon-popup .playlist-col {
    display: none; } }

@media (max-width: 767px) {
  #whats-gibbon-popup {
    top: 48px;
    padding: 24px;
    bottom: inherit; } }

/*== Discussions ===========================*/
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.discussion-toggle .ss-icon.spinning, .discussion-toggle .spinning.sidebar-button, .discussion-toggle .playlist-container .spinning.playlist-toggle, .playlist-container .discussion-toggle .spinning.playlist-toggle, .discussion-toggle #notifications-list li .avatar-container .spinning.avatar:last-child:after, #notifications-list li .avatar-container .discussion-toggle .spinning.avatar:last-child:after, .discussion-toggle .feed-message .spinning.close-button, .feed-message .discussion-toggle .spinning.close-button, .discussion-toggle .notification .spinning.close, .notification .discussion-toggle .spinning.close {
  -webkit-animation: spin 0.4s infinite;
          animation: spin 0.4s infinite; }

.chapter-discussion {
  background-color: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: -120px;
  display: none;
  padding: 18px 0;
  -webkit-transition: height 0.3s;
          transition: height 0.3s;
  min-height: 120px; }
  .chapter-discussion.loading {
    position: relative; }
  .chapter-discussion .avatar {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px; }
  .chapter-discussion .chapter-discussion-container {
    max-width: 600px;
    margin: 12px auto; }
  @media (max-width: 767px) {
    .chapter-discussion {
      margin: 0px -12px -37px -12px;
      padding: 12px 0 0; }
      .chapter-discussion .chapter-discussion-container {
        padding: 0 12px; } }

#playlist-discussion {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: -100px;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 48px 0;
  z-index: 100;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
          transition: transform 0.6s ease-in-out;
  border-top: 1px solid rgba(0, 0, 0, 0.12); }
  #playlist-discussion.visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    height: 100%;
    overflow: auto; }
  #playlist-discussion .playlist-discussion-container {
    margin: 0 auto;
    max-width: 600px;
    padding-bottom: 96px; }
  #playlist-discussion .avatar {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px; }
  #playlist-discussion .playlist-discussion-close {
    position: absolute;
    display: block;
    top: 36px;
    right: 36px;
    color: rgba(0, 0, 0, 0.32); }
  #playlist-discussion .chapter-discussion-container {
    max-width: 600px;
    margin: 0 auto; }
  @media (max-width: 1024px) {
    #playlist-discussion {
      display: none; } }

.add-discussion {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .add-discussion .avatar {
    display: inline-block; }
  .add-discussion textarea {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 54px);
    height: 36px;
    -webkit-transition: height 0.3s;
            transition: height 0.3s;
    margin-bottom: 12px; }
  .add-discussion .button-holder {
    text-align: right; }
    .add-discussion .button-holder button {
      visibility: hidden;
      opacity: 0;
      display: none; }
  .add-discussion.open textarea {
    height: 108px; }
  .add-discussion.open button {
    opacity: 1;
    visibility: visible;
    display: inline-block; }

.discussion-list li {
  padding: 36px 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .discussion-list li .delete-comment {
    position: absolute;
    right: 0;
    top: 42px;
    font-size: 11px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.16); }
  .discussion-list li.empty {
    text-align: center;
    padding: 24px 0 0;
    border: 0; }
  .discussion-list li:last-child {
    border-bottom: 0; }

.discussion-list .discussion-header {
  margin-bottom: 12px; }
  .discussion-list .discussion-header p {
    display: inline-block;
    vertical-align: middle;
    line-height: 18px; }
    .discussion-list .discussion-header p span {
      display: block;
      margin-top: 3px; }

.discussion-list .discussion-content {
  font-family: "Libre Baskerville", serif; }
  .discussion-list .discussion-content p {
    font-size: 14px;
    line-height: 24px; }

/*=========================================
  5. Covers & User Cards
===========================================*/
.playlist-cover,
.user-card {
  overflow: hidden;
  width: 100%;
  height: 288px;
  position: relative;
  display: inline-block;
  -webkit-transition: height 0s;
          transition: height 0s; }

/*== Covers ===============================*/
.playlist-cover {
  text-align: right;
  background-color: #333;
  border-radius: 3px; }
  .playlist-cover .follow-button {
    display: none; }
  .playlist-cover .playlist-cover-info {
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 18px 0;
    -webkit-transition: padding 0.15s ease-out;
            transition: padding 0.15s ease-out; }
    @media (max-width: 767px) {
      .playlist-cover .playlist-cover-info {
        padding: 12px 12px 0; } }
    .playlist-cover .playlist-cover-info h3 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 6px;
      color: #fff;
      font-weight: 600;
      font-family: "Libre Baskerville", serif; }
      @media (max-width: 767px) {
        .playlist-cover .playlist-cover-info h3 {
          font-size: 16px;
          line-height: 22px; } }
    .playlist-cover .playlist-cover-info h4 {
      font-size: 12px;
      line-height: 12px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 12px;
      font-weight: 400; }
      @media (max-width: 767px) {
        .playlist-cover .playlist-cover-info h4 {
          margin-bottom: 0; } }
      .playlist-cover .playlist-cover-info h4 .status {
        color: rgba(255, 255, 255, 0.8);
        vertical-align: middle; }
    .playlist-cover .playlist-cover-info .playlist-cover-meta {
      color: #fff;
      opacity: 0;
      -webkit-transition: opacity 0.15s ease-out;
              transition: opacity 0.15s ease-out; }
      .playlist-cover .playlist-cover-info .playlist-cover-meta li {
        display: inline;
        font-size: 12px;
        margin-left: 12px; }
        .playlist-cover .playlist-cover-info .playlist-cover-meta li .ss-icon, .playlist-cover .playlist-cover-info .playlist-cover-meta li .sidebar-button, .playlist-cover .playlist-cover-info .playlist-cover-meta li .playlist-container .playlist-toggle, .playlist-container .playlist-cover .playlist-cover-info .playlist-cover-meta li .playlist-toggle, .playlist-cover .playlist-cover-info .playlist-cover-meta #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list .playlist-cover .playlist-cover-info .playlist-cover-meta li .avatar-container .avatar:last-child:after, .playlist-cover .playlist-cover-info .playlist-cover-meta li .feed-message .close-button, .feed-message .playlist-cover .playlist-cover-info .playlist-cover-meta li .close-button, .playlist-cover .playlist-cover-info .playlist-cover-meta li .notification .close, .notification .playlist-cover .playlist-cover-info .playlist-cover-meta li .close {
          font-size: 12px;
          vertical-align: middle;
          margin-right: 5px; }
  .playlist-cover.has-follow {
    position: relative; }
    .playlist-cover.has-follow .playlist-cover-info {
      padding-bottom: 24px; }
    .playlist-cover.has-follow .button {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: 15;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity .3s ease;
              transition: opacity .3s ease;
      width: 60%;
      text-align: center; }
      @media (max-width: 767px) {
        .playlist-cover.has-follow .button {
          width: 80%;
          top: 25%; } }
    .playlist-cover.has-follow:hover .button {
      opacity: 1;
      visibility: visible; }
    .playlist-cover.has-follow.followed .button {
      opacity: 1;
      visibility: visible;
      background-color: rgba(0, 0, 0, 0.3); }
    .playlist-cover.has-follow.followed .playlist-cover-image {
      opacity: 0.5; }
  .playlist-cover .playlist-cover-image {
    z-index: 5;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
    .playlist-cover .playlist-cover-image:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -webkit-linear-gradient(top, transparent 0%, transparent 33%, rgba(0, 0, 0, 0.63) 61%, #000 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 33%, rgba(0, 0, 0, 0.63) 61%, #000 100%);
      opacity: .6;
      -webkit-transition: opacity 0.2s ease-out;
              transition: opacity 0.2s ease-out; }
  .playlist-cover:hover .playlist-cover-info {
    padding-bottom: 24px; }
  .playlist-cover:hover .playlist-cover-meta {
    opacity: 1; }
  .playlist-cover:hover .playlist-cover-image {
    -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
            transform: scale(1.03);
    opacity: 0.8; }
  .playlist-cover.private .status {
    margin-left: 6px; }
    .playlist-cover.private .status:after {
      content: 'lock'; }
  .playlist-cover.branded .playlist-cover-brand {
    z-index: 10;
    position: relative; }
    .playlist-cover.branded .playlist-cover-brand .banner {
      position: absolute;
      width: 120px;
      height: 50px;
      display: block;
      left: -43px;
      top: -16px;
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .playlist-cover.branded .playlist-cover-brand .brand-logo {
      position: absolute;
      left: 6px;
      top: 6px; }
  .playlist-cover.empty {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.16); }
    .playlist-cover.empty .playlist-cover-info h3, .playlist-cover.empty .playlist-cover-info h4, .playlist-cover.empty .playlist-cover-info .playlist-cover-meta {
      color: rgba(0, 0, 0, 0.32); }
    .playlist-cover.empty .playlist-cover-image:before {
      display: none; }
    .playlist-cover.empty .playlist-cover-image-placeholder {
      opacity: 1; }
    .playlist-cover.empty.playlist-add {
      text-align: center;
      border: 1px dashed rgba(0, 0, 0, 0.32);
      background: rgba(0, 0, 0, 0.02); }
      .playlist-cover.empty.playlist-add p {
        color: rgba(0, 0, 0, 0.4);
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        .playlist-cover.empty.playlist-add p span {
          display: block;
          margin: 12px auto;
          font-size: 30px;
          width: 48px;
          height: 48px;
          line-height: 46px;
          text-align: center;
          border-radius: 24px;
          background: #fff;
          color: rgba(0, 0, 0, 0.32);
          border: 1px solid rgba(0, 0, 0, 0.12); }
      .playlist-cover.empty.playlist-add:hover {
        border-color: rgba(0, 0, 0, 0.6);
        background-color: rgba(0, 0, 0, 0.02); }
  .playlist-cover .playlist-cover-image-placeholder {
    opacity: 0;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    padding: 50px 10px 0;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.32); }
    .playlist-cover .playlist-cover-image-placeholder span {
      display: block;
      font-size: 24px;
      margin-bottom: 12px;
      color: rgba(0, 0, 0, 0.32); }
  .playlist-cover.loading .playlist-cover-image {
    opacity: 0.7; }

.playlist-container {
  position: relative; }
  .playlist-container .progress-bar {
    margin-top: 6px; }
  .playlist-container .playlist-toggle {
    width: 36px;
    height: 36px;
    background: #43c5b8;
    color: #fff;
    position: absolute;
    top: -18px;
    right: -18px;
    text-align: center;
    z-index: 10;
    line-height: 39px;
    border-radius: 24px;
    font-size: 14px; }
    .playlist-container .playlist-toggle:after {
      content: 'plus'; }
    .playlist-container .playlist-toggle.following:after {
      content: 'check'; }

/*== Cover - User Meta  ===================*/
.playlist-user-meta {
  padding: 12px 0;
  height: 60px; }
  .playlist-user-meta .playlist-user-meta-images {
    float: left;
    margin-right: 18px;
    height: 36px; }
    .playlist-user-meta .playlist-user-meta-images .avatar,
    .playlist-user-meta .playlist-user-meta-images .num-circle {
      display: inline-block;
      margin-right: -12px;
      overflow: hidden;
      vertical-align: middle;
      position: relative; }
    .playlist-user-meta .playlist-user-meta-images .avatar img {
      border: 1px solid rgba(255, 255, 255, 0.3); }
  .playlist-user-meta p {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 3px; }
    .playlist-user-meta p a {
      color: #43c5b8;
      border-color: transparent;
      font-weight: 600; }
      .playlist-user-meta p a:hover {
        color: #32a398; }
  .playlist-user-meta.big p {
    max-width: 55%; }
  .playlist-user-meta.medium p {
    max-width: 65%; }
  .playlist-user-meta.small p, form .form-content .playlist-user-meta.form-element-helper p, #plan-selector .plan .plan-header .playlist-user-meta.free p, #plan-selector .check-list li.playlist-user-meta p, #playlist-dropdown-selector .dropdown li a.playlist-user-meta p, .error .playlist-user-meta.error-message p, .sub-nav .user-teams dt.playlist-user-meta p, #chapters.condensed .chapter .playlist-user-meta.condensed-sub-links p, #billing .billing-table thead.playlist-user-meta p, .big-selector.subs.open li .playlist-user-meta.sub p, .user-card .user-card-meta li.playlist-user-meta p,
  .user-card .bottom-button li.playlist-user-meta p,
  .user-card-flipped .user-card-meta li.playlist-user-meta p,
  .user-card-flipped .bottom-button li.playlist-user-meta p, .topic-container .playlist-user-meta.toggle-button p, #notifications-filters ul li label.playlist-user-meta p, .message p.playlist-user-meta p, #style-guide .swatch-container .swatch-info .playlist-user-meta.variable p {
    max-width: 80%;
    top: 11px; }

/*== User Cards ===========================*/
.flip-container {
  margin: 0 auto;
  max-width: 275px; }
  .flip-container .flipper {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-transition: 0.6s cubic-bezier(0.68, -0.25, 0.265, 1.45);
            transition: 0.6s cubic-bezier(0.68, -0.25, 0.265, 1.45); }
    .flip-container .flipper .user-card {
      z-index: 3;
      -webkit-transform: rotateY(0deg);
              transform: rotateY(0deg); }
    .flip-container .flipper .user-card-flipped {
      z-index: 2;
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg);
      position: absolute;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 12px;
      text-align: center;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .flip-container .flipper .user-card,
    .flip-container .flipper .user-card-flipped {
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
      .flip-container .flipper .user-card .ss-icon, .flip-container .flipper .user-card .sidebar-button, .flip-container .flipper .user-card .playlist-container .playlist-toggle, .playlist-container .flip-container .flipper .user-card .playlist-toggle, .flip-container .flipper .user-card #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .flip-container .flipper .user-card .avatar:last-child:after, .flip-container .flipper .user-card .feed-message .close-button, .feed-message .flip-container .flipper .user-card .close-button, .flip-container .flipper .user-card .notification .close, .notification .flip-container .flipper .user-card .close,
      .flip-container .flipper .user-card-flipped .ss-icon,
      .flip-container .flipper .user-card-flipped .sidebar-button,
      .flip-container .flipper .user-card-flipped .playlist-container .playlist-toggle, .playlist-container
      .flip-container .flipper .user-card-flipped .playlist-toggle,
      .flip-container .flipper .user-card-flipped #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container
      .flip-container .flipper .user-card-flipped .avatar:last-child:after,
      .flip-container .flipper .user-card-flipped .feed-message .close-button, .feed-message
      .flip-container .flipper .user-card-flipped .close-button,
      .flip-container .flipper .user-card-flipped .notification .close, .notification
      .flip-container .flipper .user-card-flipped .close {
        position: absolute;
        right: 12px;
        top: 12px; }
    .flip-container .flipper.flipped {
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg); }
      .flip-container .flipper.flipped .user-card {
        z-index: 2; }
      .flip-container .flipper.flipped .user-card-flipped {
        z-index: 3; }

.user-card,
.user-card-flipped {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 3px; }
  .user-card .status,
  .user-card-flipped .status {
    position: absolute;
    top: 12px;
    left: 12px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: default; }
  .user-card .avatar,
  .user-card-flipped .avatar {
    margin: 6px auto 16px;
    position: relative;
    width: 60px;
    height: 60px; }
  .user-card .button,
  .user-card-flipped .button {
    margin-bottom: 12px; }
  .user-card h4,
  .user-card-flipped h4 {
    font-family: "Libre Baskerville", serif; }
  .user-card .user-card-bio,
  .user-card-flipped .user-card-bio {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: 12px;
    line-height: 21px;
    z-index: 1;
    position: relative; }
  .user-card .user-card-meta,
  .user-card .bottom-button,
  .user-card-flipped .user-card-meta,
  .user-card-flipped .bottom-button {
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    text-align: center;
    position: absolute;
    z-index: 3; }
    .user-card .user-card-meta li,
    .user-card .bottom-button li,
    .user-card-flipped .user-card-meta li,
    .user-card-flipped .bottom-button li {
      display: inline-block;
      margin: 12px; }
      .user-card .user-card-meta li span,
      .user-card .bottom-button li span,
      .user-card-flipped .user-card-meta li span,
      .user-card-flipped .bottom-button li span {
        font-weight: 600;
        color: rgba(0, 0, 0, 0.6); }
    .user-card .user-card-meta .button,
    .user-card .bottom-button .button,
    .user-card-flipped .user-card-meta .button,
    .user-card-flipped .bottom-button .button {
      margin: 13px 12px 13px; }
  .user-card.no-member,
  .user-card-flipped.no-member {
    border-style: dashed; }
    .user-card.no-member p,
    .user-card-flipped.no-member p {
      margin-bottom: 36px; }

/*=========================================
  6. Pages
===========================================*/
.page-header .row {
  padding-top: 36px; }

/*== FILTER BAR ==============================*/
#filter-bar {
  position: relative;
  height: 36px; }

.search-input {
  position: relative; }
  .search-input input {
    -webkit-appearance: textfield;
    border: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-left: 24px;
    padding-right: 72px;
    border-radius: 0; }
  .search-input .ss-icon, .search-input .sidebar-button, .search-input .playlist-container .playlist-toggle, .playlist-container .search-input .playlist-toggle, .search-input #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .search-input .avatar:last-child:after, .search-input .feed-message .close-button, .feed-message .search-input .close-button, .search-input .notification .close, .notification .search-input .close {
    position: absolute;
    top: 12px;
    left: 0;
    color: rgba(0, 0, 0, 0.4); }

.topic-container {
  position: absolute;
  right: 0;
  display: inline-block;
  top: 0; }
  .topic-container .toggle-button {
    line-height: 36px; }
    .topic-container .toggle-button img {
      -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
              transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .topic-container .topic-dropdown {
    position: absolute;
    z-index: 2000;
    top: 44px;
    right: 0;
    width: 360px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
            transform: translateY(-12px);
    text-align: left; }
    .topic-container .topic-dropdown ul {
      padding: 12px 0; }
      .topic-container .topic-dropdown ul li {
        display: inline-block;
        width: 50%;
        margin-left: -4px; }
        .topic-container .topic-dropdown ul li a {
          display: block;
          color: rgba(0, 0, 0, 0.32);
          font-size: 14px;
          padding: 6px 24px; }
          .topic-container .topic-dropdown ul li a:hover {
            color: rgba(0, 0, 0, 0.6); }
    .topic-container .topic-dropdown:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 7px 5px 7px;
      border-color: transparent transparent #fcfcfc;
      position: absolute;
      right: 8px;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      top: -5px; }
    .topic-container .topic-dropdown:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 8px 6px 8px;
      border-color: transparent transparent #ddd;
      position: absolute;
      right: 6px;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      top: -6px; }
  .topic-container.active .toggle-button {
    color: rgba(0, 0, 0, 0.6); }
    .topic-container.active .toggle-button img {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  .topic-container.active .topic-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

.search-tabs {
  margin: 18px;
  border: none; }
  .search-tabs .tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    display: inline-block;
    padding: 0; }
    .search-tabs .tabs li:first-child a {
      margin-left: 0; }
    .search-tabs .tabs li:last-child a {
      margin-right: 0; }

/*== Notifications ===============================*/
#notifications-list li {
  padding: 18px 0;
  margin-bottom: 0;
  position: relative; }
  @media (max-width: 1024px) {
    #notifications-list li {
      padding: 12px 0; } }
  #notifications-list li:after {
    content: '';
    display: table;
    clear: both; }
  #notifications-list li .avatar-container {
    position: relative;
    height: 48px;
    width: 70px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 24px;
    position: relative;
    float: left;
    white-space: nowrap; }
    #notifications-list li .avatar-container .avatar {
      margin-right: -36px;
      display: inline-block; }
      #notifications-list li .avatar-container .avatar img {
        border: 2px solid rgba(255, 255, 255, 0.9); }
      #notifications-list li .avatar-container .avatar:last-child {
        margin-right: 0;
        position: relative; }
        #notifications-list li .avatar-container .avatar:last-child:after {
          content: '';
          display: block;
          width: 24px;
          height: 24px;
          position: absolute;
          bottom: -8px;
          right: -6px;
          z-index: 10;
          font-size: 12px;
          line-height: 28px;
          background: #fff;
          color: rgba(0, 0, 0, 0.4);
          border-radius: 12px;
          text-align: center; }
    @media (max-width: 1024px) {
      #notifications-list li .avatar-container {
        width: 36px;
        height: 36px;
        margin-right: 12px; } }
  #notifications-list li.started-following .avatar:last-child:after {
    content: 'plus'; }
  #notifications-list li.favorited .avatar:last-child:after {
    content: 'star';
    color: #faca55; }
  #notifications-list li.commented .avatar:last-child:after {
    content: 'comment'; }
  #notifications-list li.read .avatar:last-child:after {
    content: 'eye'; }
  #notifications-list li.completed .avatar:last-child:after {
    content: 'check'; }
  #notifications-list li.created-playlist .avatar:last-child:after {
    content: 'list'; }
  #notifications-list li.joined-team .avatar:last-child:after {
    content: 'usergroup'; }
  #notifications-list li.new-chapter .avatar:last-child:after {
    content: 'textfile'; }
  #notifications-list li .content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 95px); }
    #notifications-list li .content p a {
      font-weight: 600;
      border-color: transparent;
      -webkit-transition: border-color 0.2s;
              transition: border-color 0.2s; }
      #notifications-list li .content p a:hover {
        border-color: rgba(0, 0, 0, 0.12); }
    #notifications-list li .content p .small, #notifications-list li .content p form .form-content .form-element-helper, form .form-content #notifications-list li .content p .form-element-helper, #notifications-list li .content p #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header #notifications-list li .content p .free, #notifications-list li .content p #plan-selector .check-list li, #plan-selector .check-list #notifications-list li .content p li, #notifications-list #playlist-dropdown-selector .dropdown li .content p a, #playlist-dropdown-selector .dropdown #notifications-list li .content p a, #notifications-list li .content p .error .error-message, .error #notifications-list li .content p .error-message, #notifications-list li .content p .sub-nav .user-teams dt, .sub-nav .user-teams #notifications-list li .content p dt, #notifications-list li .content p #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter #notifications-list li .content p .condensed-sub-links, #notifications-list li .content p #billing .billing-table thead, #billing .billing-table #notifications-list li .content p thead, #notifications-list .big-selector.subs.open li .content p .sub, .big-selector.subs.open #notifications-list li .content p .sub, #notifications-list li .content p .user-card .user-card-meta li, .user-card .user-card-meta #notifications-list li .content p li, #notifications-list li .content p
    .user-card .bottom-button li,
    .user-card .bottom-button #notifications-list li .content p li, #notifications-list li .content p
    .user-card-flipped .user-card-meta li,
    .user-card-flipped .user-card-meta #notifications-list li .content p li, #notifications-list li .content p
    .user-card-flipped .bottom-button li,
    .user-card-flipped .bottom-button #notifications-list li .content p li, #notifications-list li .content p .topic-container .toggle-button, .topic-container #notifications-list li .content p .toggle-button, #notifications-list #notifications-filters ul li .content p label, #notifications-filters ul #notifications-list li .content p label, #notifications-list li .content p .message p, .message #notifications-list li .content p p, #notifications-list li .content p #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info #notifications-list li .content p .variable {
      font-family: "Open Sans", sans-serif;
      margin-top: 3px; }
    @media (max-width: 1024px) {
      #notifications-list li .content {
        width: inherit;
        max-width: calc(100% - 52px); } }
  #notifications-list li:last-child {
    border-bottom: 0; }
  #notifications-list li .comment {
    background: #fff;
    clear: both;
    padding: 18px;
    border-radius: 3px;
    margin-top: 12px;
    font-family: "Libre Baskerville", serif;
    font-size: 14px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.12); }
    @media (max-width: 1024px) {
      #notifications-list li .comment {
        margin-left: inherit; } }
    #notifications-list li .comment:hover {
      border-color: rgba(0, 0, 0, 0.32);
      color: rgba(0, 0, 0, 0.75); }
  #notifications-list li.new {
    background: #fafafa;
    color: rgba(0, 0, 0, 0.6);
    -webkit-animation: FadeNew 0.75s ease-in-out 10s both;
            animation: FadeNew 0.75s ease-in-out 10s both;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.12);
    margin-top: -2px; }

@media (max-width: 1024px) {
  #notifications-list li {
    margin-bottom: 0; }
  #notifications-list .avatar.medium {
    width: 36px;
    height: 36px; } }

@-webkit-keyframes FadeNew {
  0% {
    background: #fafafa;
    border-color: rgba(0, 0, 0, 0.12); }
  100% {
    background: #fff;
    border-color: transparent; } }

@keyframes FadeNew {
  0% {
    background: #fafafa;
    border-color: rgba(0, 0, 0, 0.12); }
  100% {
    background: #fff;
    border-color: transparent; } }

#notifications-filters {
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.12); }
  #notifications-filters ul {
    margin-bottom: 12px; }
    #notifications-filters ul li {
      line-height: 30px; }
      #notifications-filters ul li input {
        margin-right: 8px; }
  @media (max-width: 1024px) {
    #notifications-filters {
      border: 0;
      padding: 0; }
      #notifications-filters ul {
        display: inline-block;
        max-width: 49%;
        vertical-align: top;
        margin-right: 24px; } }
  @media (max-width: 420px) {
    #notifications-filters ul {
      width: inherit; } }

/*=========================================
  8. Onboarding
===========================================*/
.single-form-container {
  height: 100vh;
  display: table;
  width: 100%;
  position: relative; }
  .single-form-container .single-form-wrapper {
    vertical-align: middle;
    display: table-cell;
    padding: 48px 0;
    position: relative; }
    .single-form-container .single-form-wrapper form {
      padding-bottom: 72px; }
  @media (max-width: 767px) {
    .single-form-container {
      display: block;
      height: inherit; }
      .single-form-container .single-form-wrapper {
        vertical-align: inherit;
        display: block; } }

.single-form-container:before,
.onboarding-banner:before {
  content: '';
  display: block;
  height: 4px;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  background-image: -webkit-linear-gradient(left, #36BAC2, #3CD3AD);
  background-image: linear-gradient(to right, #36BAC2, #3CD3AD); }

#logo-icon {
  display: inline-block;
  margin-bottom: 36px; }

/*== Onboarding Banner ====================*/
.onboarding-banner {
  border-bottom: 1px solid #eee;
  background-color: rgba(0, 0, 0, 0.02);
  padding-top: 28px;
  padding-bottom: 24px;
  text-align: center; }
  @media (max-width: 767px) {
    .onboarding-banner {
      padding-top: 60px; }
      .onboarding-banner h2 {
        font-size: 22px;
        margin-bottom: 12px; }
      .onboarding-banner br {
        display: none; } }

/*== Onboarding Welcome ===================*/
#page-welcome {
  padding-bottom: 120px; }
  @media (max-width: 767px) {
    #page-welcome {
      padding-bottom: 24px; } }

.onboarding-section {
  padding-top: 36px;
  padding-bottom: 36px; }
  @media (max-width: 767px) {
    .onboarding-section {
      padding-top: 24px;
      padding-bottom: 24px; } }

.onboarding-friends a {
  display: block;
  -webkit-transition: color 0.2s ease;
          transition: color 0.2s ease; }
  .onboarding-friends a p {
    display: inline-block;
    vertical-align: middle;
    line-height: 22px; }
    .onboarding-friends a p span {
      display: block;
      margin-bottom: 0;
      color: rgba(0, 0, 0, 0.32);
      -webkit-transition: color 0.2s ease;
              transition: color 0.2s ease; }
      .onboarding-friends a p span .ss-icon, .onboarding-friends a p span .sidebar-button, .onboarding-friends a p span .playlist-container .playlist-toggle, .playlist-container .onboarding-friends a p span .playlist-toggle, .onboarding-friends a p span #notifications-list li .avatar-container .avatar:last-child:after, #notifications-list li .avatar-container .onboarding-friends a p span .avatar:last-child:after, .onboarding-friends a p span .feed-message .close-button, .feed-message .onboarding-friends a p span .close-button, .onboarding-friends a p span .notification .close, .notification .onboarding-friends a p span .close {
        vertical-align: middle;
        font-size: 11px; }
  .onboarding-friends a:hover {
    color: #333; }
    .onboarding-friends a:hover span {
      color: #f56363; }
  .onboarding-friends a.following span {
    color: #43c5b8; }

.onboarding-friends .avatar {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px; }
  .onboarding-friends .avatar img {
    margin-bottom: 0; }

/*=========================================
  9. Modals & Notifications
===========================================*/
.message {
  font-family: "Open Sans", sans-serif;
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
  padding: 12px 12px 10px;
  margin-bottom: 12px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  margin-bottom: 12px; }
  .message.float {
    z-index: 100;
    position: fixed;
    margin: 0 auto;
    left: 40%;
    right: 40%;
    top: 12px;
    padding: 12px 36px 10px; }
    .message.float.if-sidebar {
      left: calc(33% + 265px);
      right: 33%; }
    @media (max-width: 1024px) {
      .message.float {
        left: 12px;
        right: 12px;
        top: 60px; } }
    .message.float.slide {
      -webkit-animation: animation 7000ms linear both;
              animation: animation 7000ms linear both; }
  .message p {
    margin-bottom: 0 !important; }
  .message.teal {
    background: #E7F8F6;
    border-color: #C5DFDB; }
  .message.yellow {
    border-color: #E8E4D2;
    background: #FAF7EA; }
  .message.red {
    border-color: #EAD9D9;
    background: #FCF1F1; }

/* Generated with Bounce.js. Edit at http://goo.gl/1PzTb2 */
@-webkit-keyframes animation {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1); }
  0.64% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -51.473, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -51.473, 0, 1); }
  1.29% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.002, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.002, 0, 1); }
  1.93% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 8.742, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 8.742, 0, 1); }
  2.56% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 13.922, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 13.922, 0, 1); }
  4.15% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 3.229, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 3.229, 0, 1); }
  4.95% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.593, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.593, 0, 1); }
  5.73% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -1.543, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -1.543, 0, 1); }
  8.91% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.171, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.171, 0, 1); }
  12.1% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.019, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.019, 0, 1); }
  14.29% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.61% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.71% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  86.21% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -37.191, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -37.191, 0, 1); }
  86.7% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -63.073, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -63.073, 0, 1); }
  87.19% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -80.355, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -80.355, 0, 1); }
  87.67% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -91.082, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -91.082, 0, 1); }
  88.65% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.336, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.336, 0, 1); }
  89.62% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -101.951, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -101.951, 0, 1); }
  92.48% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.262, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.262, 0, 1); }
  95.34% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -99.985, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -99.985, 0, 1); }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1); } }
@keyframes animation {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1); }
  0.64% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -51.473, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -51.473, 0, 1); }
  1.29% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.002, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.002, 0, 1); }
  1.93% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 8.742, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 8.742, 0, 1); }
  2.56% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 13.922, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 13.922, 0, 1); }
  4.15% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 3.229, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 3.229, 0, 1); }
  4.95% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.593, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.593, 0, 1); }
  5.73% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -1.543, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -1.543, 0, 1); }
  8.91% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.171, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.171, 0, 1); }
  12.1% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.019, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.019, 0, 1); }
  14.29% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.61% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.71% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  86.21% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -37.191, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -37.191, 0, 1); }
  86.7% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -63.073, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -63.073, 0, 1); }
  87.19% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -80.355, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -80.355, 0, 1); }
  87.67% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -91.082, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -91.082, 0, 1); }
  88.65% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.336, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.336, 0, 1); }
  89.62% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -101.951, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -101.951, 0, 1); }
  92.48% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.262, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100.262, 0, 1); }
  95.34% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -99.985, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -99.985, 0, 1); }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100, 0, 1); } }

.feed-message {
  padding-top: 36px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1000;
  text-align: center;
  background: -webkit-linear-gradient(top, #fff, #fafafa);
  background: linear-gradient(to bottom, #fff, #fafafa); }
  .feed-message .close-button {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    top: 12px;
    right: 12px;
    color: rgba(0, 0, 0, 0.4); }
    .feed-message .close-button:hover {
      color: rgba(0, 0, 0, 0.6); }
  .feed-message .button-row {
    text-align: center; }
    .feed-message .button-row .button {
      margin: 0 10px; }
      @media (max-width: 767px) {
        .feed-message .button-row .button {
          margin: 0 6px 12px; } }
  .feed-message .avatar {
    display: inline-block;
    margin-bottom: 12px; }

.overlay-form {
  position: fixed;
  max-width: 100%;
  width: 400px;
  left: 50%;
  top: 0;
  padding: 48px;
  background: #fff;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  z-index: 2000;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
          transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden; }
  .overlay-form .close {
    visibility: hidden;
    opacity: 0; }
  .overlay-form.visible {
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  .overlay-form.wide {
    width: 600px; }
  @media (max-width: 767px) {
    .overlay-form {
      top: 0;
      bottom: 0;
      padding: 36px;
      width: 100%;
      position: fixed; }
      .overlay-form .close {
        visibility: visible;
        opacity: 1;
        position: absolute;
        top: 12px;
        right: 12px;
        color: rgba(0, 0, 0, 0.32); } }
  .overlay-form iframe {
    margin: 24px 0; }

.overlay-form-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
          transition: all .2s; }
  .overlay-form-bg.visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .2s;
            transition: all .2s; }

.feed-helper {
  position: absolute;
  right: 12px;
  top: 12px; }
  .feed-helper.switcher .switcher-helper-toggle img {
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .feed-helper.switcher .switcher-helper-dropdown {
    position: absolute;
    top: 24px;
    right: 0;
    font-size: 12px;
    border: 1px solid #efefef;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
            transform: translateY(-10%);
    min-width: 100px;
    z-index: 1000; }
    .feed-helper.switcher .switcher-helper-dropdown li {
      line-height: 18px; }
    .feed-helper.switcher .switcher-helper-dropdown a {
      display: block;
      padding: 6px 10px;
      white-space: nowrap;
      background: #fff; }
      .feed-helper.switcher .switcher-helper-dropdown a:hover {
        color: rgba(0, 0, 0, 0.75);
        background-color: rgba(0, 0, 0, 0.02); }
  .feed-helper.switcher.active .switcher-helper-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .feed-helper.switcher.active .switcher-helper-toggle img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .feed-helper.hide-read-chapters {
    right: inherit;
    left: 24px;
    top: 24px; }
    .feed-helper.hide-read-chapters input[type=checkbox] {
      display: inline-block;
      vertical-align: middle;
      margin-left: 0; }
    .feed-helper.hide-read-chapters label {
      display: inline-block;
      color: rgba(0, 0, 0, 0.4);
      margin-bottom: 6px;
      font-weight: 600;
      font-size: 12px; }

.toggle-condensedView {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 74px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px; }
  .toggle-condensedView a {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin: 0;
    position: relative; }
    .toggle-condensedView a img {
      position: absolute;
      top: 12px;
      left: 12px;
      opacity: 0.4; }
    .toggle-condensedView a:hover {
      background-color: rgba(0, 0, 0, 0.02); }
      .toggle-condensedView a:hover img {
        opacity: 0.8; }
    .toggle-condensedView a.active {
      background-color: rgba(0, 0, 0, 0.02); }
      .toggle-condensedView a.active img {
        opacity: 1; }
    .toggle-condensedView a.normal {
      border-right: 1px solid rgba(0, 0, 0, 0.12); }

.notification {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 12px;
  left: 265px;
  bottom: 0;
  right: 0;
  text-align: center;
  position: fixed;
  z-index: 500;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
  .notification.visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .notification .close {
    position: absolute;
    right: 12px;
    bottom: 12px; }
  .notification p {
    color: #fff; }
    .notification p a {
      color: #fff;
      -webkit-transition: border-color 0.2s;
              transition: border-color 0.2s;
      border-bottom-color: rgba(255, 255, 255, 0.3); }
      .notification p a:hover {
        border-bottom-color: rgba(255, 255, 255, 0.6); }

#uservoice {
  position: fixed;
  color: rgba(0, 0, 0, 0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  bottom: 12px;
  right: 12px;
  display: block;
  padding: 4px 6px;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 2px;
  background: #fff;
  z-index: 50; }
  #uservoice:hover {
    background-color: #43c5b8;
    border-color: #43c5b8;
    color: #fff; }

/*=========================================
  10. Static Pages
===========================================*/
.full-page-header {
  background-size: cover; }
  .full-page-header #logo {
    margin: 0; }
    @media (max-width: 767px) {
      .full-page-header #logo {
        left: 12px;
        top: 6px;
        -webkit-transform: translateX(0px);
            -ms-transform: translateX(0px);
                transform: translateX(0px); } }
  .full-page-header nav.col-12 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 2%; }
  .full-page-header.teal {
    background-image: -webkit-linear-gradient(left, #36BAC2, #3CD3AD);
    background-image: linear-gradient(to right, #36BAC2, #3CD3AD);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#36BAC2', endColorstr='#3CD3AD'); }
    .full-page-header.teal nav {
      border-bottom-color: rgba(255, 255, 255, 0.2); }
    .full-page-header.teal h1, .full-page-header.teal #editor-chapter-title {
      font-size: 36px;
      color: #fff;
      margin-top: 48px;
      margin-bottom: 24px; }
      @media (max-width: 1024px) {
        .full-page-header.teal h1, .full-page-header.teal #editor-chapter-title {
          margin-top: 18px; } }
      @media (max-width: 767px) {
        .full-page-header.teal h1, .full-page-header.teal #editor-chapter-title {
          font-size: 24px !important; }
          .full-page-header.teal h1 br, .full-page-header.teal #editor-chapter-title br {
            display: none; } }
    .full-page-header.teal .intro {
      max-width: 600px;
      margin: 0 auto 24px; }
    .full-page-header.teal .button-box {
      padding: 3px;
      border-radius: 3px;
      background: #fff;
      display: inline-block;
      margin: 0 0 12px; }
    .full-page-header.teal .screenshot {
      display: block;
      margin: 0 auto;
      border-bottom: 1px solid #eee; }
  .full-page-header .title {
    margin-bottom: 5%;
    text-align: center; }

#page-about .full-page-header {
  background-image: url(/assets/images/bg-leiden.jpg); }

@media (max-width: 767px) {
  #page-home .hide-mobile {
    display: none; }
  #page-home #logo {
    position: static;
    left: 0;
    top: 0; }
    #page-home #logo img {
      max-width: 90%;
      margin: 0 auto;
      display: inline-block;
      position: static; }
  #page-home h1, #page-home #editor-chapter-title {
    margin-top: 0; }
  #page-home .mobile-center {
    text-align: center; } }

#page-home p em {
  font-style: italic; }

#page-home .col-12 {
  margin-bottom: 0;
  overflow: hidden; }

#page-home ul.bullet {
  list-style: disc;
  line-height: 32px;
  margin-bottom: 12px;
  list-style-position: inside; }

#page-home #home-header {
  background: url(/assets/images/home-intro-bg.jpg);
  background-position: center center;
  background-size: cover;
  padding: 96px 0;
  text-align: center; }
  @media (max-width: 1024px) {
    #page-home #home-header {
      padding: 36px 12px; } }
  #page-home #home-header #logo {
    margin: 0; }
    #page-home #home-header #logo img {
      margin: 0 auto 24px; }
      @media (max-width: 1024px) {
        #page-home #home-header #logo img {
          width: 120px; } }
    @media (max-width: 1024px) {
      #page-home #home-header #logo {
        position: static;
        left: inherit;
        margin-bottom: 0; }
        #page-home #home-header #logo img {
          margin-bottom: 0; } }
  #page-home #home-header h1, #page-home #home-header #editor-chapter-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 6px;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  #page-home #home-header p {
    margin-bottom: 30px;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s; }
    #page-home #home-header p span {
      font-weight: bold; }
  #page-home #home-header .login-toggle {
    position: absolute;
    top: 12px;
    right: 12px; }
  #page-home #home-header .button-box {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s; }
    @media (max-width: 1024px) {
      #page-home #home-header .button-box {
        margin-bottom: 12px; } }

#page-home #collect-library {
  padding: 48px 0;
  overflow: hidden; }
  #page-home #collect-library .screenshot-container {
    position: relative; }
    #page-home #collect-library .screenshot-container .screenshot {
      position: absolute;
      width: 968px;
      top: -60px;
      left: 24px;
      max-width: inherit; }
      @media (max-width: 1024px) {
        #page-home #collect-library .screenshot-container .screenshot {
          margin-top: 24px;
          max-width: 100%;
          position: relative;
          top: inherit;
          left: inherit; } }
  @media (max-width: 1024px) {
    #page-home #collect-library {
      padding: 24px 12px; } }

#page-home #usecase-container {
  position: relative;
  max-width: 500px; }
  @media (max-width: 1024px) {
    #page-home #usecase-container {
      margin-bottom: 24px;
      text-align: center; } }
  @media (max-width: 1024px) {
    #page-home #usecase-container .usecase {
      padding: 4px; } }
  #page-home #usecase-container .playlist-container {
    width: 40%;
    display: inline-block;
    vertical-align: middle; }
    #page-home #usecase-container .playlist-container .playlist-cover {
      margin: 0; }
    @media (max-width: 1024px) {
      #page-home #usecase-container .playlist-container {
        width: 100%;
        max-width: 250px; } }
  #page-home #usecase-container .usecase-info {
    display: inline-block;
    vertical-align: middle;
    padding: 24px;
    text-align: center;
    width: 59%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 0;
    background: #fff;
    border-radius: 0 3px 3px 0; }
    @media (max-width: 1024px) {
      #page-home #usecase-container .usecase-info {
        width: 100%;
        border: 1px solid rgba(0, 0, 0, 0.12);
        margin-top: 12px; } }
    #page-home #usecase-container .usecase-info p {
      margin-bottom: 12px; }
    #page-home #usecase-container .usecase-info .avatar {
      display: inline-block;
      margin-right: -12px; }
      #page-home #usecase-container .usecase-info .avatar img {
        border: 1px solid rgba(0, 0, 0, 0.12); }
  #page-home #usecase-container .bx-controls-direction {
    position: absolute;
    left: -24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-family: "SSPika"; }
    #page-home #usecase-container .bx-controls-direction a {
      font-size: 16px;
      display: block;
      color: rgba(0, 0, 0, 0.32); }
      #page-home #usecase-container .bx-controls-direction a:hover {
        color: rgba(0, 0, 0, 0.4); }

#top-nav {
  float: right;
  text-align: right; }
  #top-nav li {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 36px;
    line-height: 33px; }
    @media (max-width: 767px) {
      #top-nav li {
        margin-right: 12px;
        margin-left: 0; } }
    #top-nav li a {
      color: #fff; }

.alt {
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

#page-footer {
  margin-top: -1px;
  border-top: 1px solid #ddd; }
  #page-footer .small, #page-footer form .form-content .form-element-helper, form .form-content #page-footer .form-element-helper, #page-footer #plan-selector .plan .plan-header .free, #plan-selector .plan .plan-header #page-footer .free, #page-footer #plan-selector .check-list li, #plan-selector .check-list #page-footer li, #page-footer #playlist-dropdown-selector .dropdown li a, #playlist-dropdown-selector .dropdown li #page-footer a, #page-footer .error .error-message, .error #page-footer .error-message, #page-footer .sub-nav .user-teams dt, .sub-nav .user-teams #page-footer dt, #page-footer #chapters.condensed .chapter .condensed-sub-links, #chapters.condensed .chapter #page-footer .condensed-sub-links, #page-footer #billing .billing-table thead, #billing .billing-table #page-footer thead, #page-footer .big-selector.subs.open li .sub, .big-selector.subs.open li #page-footer .sub, #page-footer .user-card .user-card-meta li, .user-card .user-card-meta #page-footer li, #page-footer
  .user-card .bottom-button li,
  .user-card .bottom-button #page-footer li, #page-footer
  .user-card-flipped .user-card-meta li,
  .user-card-flipped .user-card-meta #page-footer li, #page-footer
  .user-card-flipped .bottom-button li,
  .user-card-flipped .bottom-button #page-footer li, #page-footer .topic-container .toggle-button, .topic-container #page-footer .toggle-button, #page-footer #notifications-filters ul li label, #notifications-filters ul li #page-footer label, #page-footer .message p, .message #page-footer p, #page-footer #style-guide .swatch-container .swatch-info .variable, #style-guide .swatch-container .swatch-info #page-footer .variable {
    line-height: 21.6px; }
  #page-footer .footer-links li {
    line-height: 21.6px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4); }
    #page-footer .footer-links li a {
      border-bottom: 1px solid transparent; }
      #page-footer .footer-links li a:hover {
        border-color: rgba(0, 0, 0, 0.16); }

@-webkit-keyframes fadein {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes fadein {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

.circled {
  font-size: 28.8px;
  line-height: 76px;
  color: #43c5b8;
  border: 2px solid #43c5b8;
  display: inline-block;
  height: 72px;
  width: 72px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 48px;
  text-align: center; }
  .circled.red {
    color: #f56363;
    border-color: #f56363; }

.pricing-plan {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 2px; }
  .pricing-plan .plan-header {
    text-align: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    .pricing-plan .plan-header h2 {
      margin-bottom: 0; }
  .pricing-plan .plan-features {
    margin: 0 24px;
    text-align: center; }
    .pricing-plan .plan-features li {
      padding: 24px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
      .pricing-plan .plan-features li:last-child {
        border-bottom: none; }
  .pricing-plan .plan-footer {
    padding: 0 24px 24px; }

/*== About ================================*/
#map .col-7 {
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  -webkit-transform: rotate(-3deg);
      -ms-transform: rotate(-3deg);
          transform: rotate(-3deg); }

/*== Style Guide ==========================*/
#page-styleguide {
  background-color: rgba(0, 0, 0, 0.02); }
  #page-styleguide .page-header {
    padding-top: 48px;
    padding-bottom: 48px; }
    #page-styleguide .page-header .logo {
      display: block; }
      #page-styleguide .page-header .logo img {
        margin: 0 auto 12px; }

#style-guide .grid {
  background-position: center top; }

#style-guide code {
  font-family: monospace;
  padding: 4px;
  background-color: rgba(0, 0, 0, 0.02); }

#style-guide .class-name {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  font-family: monospace;
  color: rgba(0, 0, 0, 0.4); }

#style-guide .container {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 10%; }
  #style-guide .container .row {
    padding-bottom: 2%; }

#style-guide .divider {
  display: block;
  border: 0;
  height: 1px;
  margin: 0 0 36px;
  background-color: rgba(0, 0, 0, 0.12); }

#style-guide #sans-light h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300; }

#style-guide #sans-regular h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400; }

#style-guide #sans-semibold h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600; }

#style-guide #serif-regular h3 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400; }

#style-guide #serif-bold h3 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700; }

#style-guide .grid-container [class*="col-"] {
  background-color: rgba(0, 0, 0, 0.12);
  text-align: center;
  font-size: 12px;
  padding: 10px; }

#style-guide .swatch-container .swatch {
  height: 100px;
  position: relative;
  border-radius: 3px 3px 0 0; }
  #style-guide .swatch-container .swatch span {
    position: absolute;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

#style-guide .swatch-container.teal .swatch {
  background-color: #43c5b8; }

#style-guide .swatch-container.cta .swatch {
  background-color: #f56363; }

#style-guide .swatch-container.gray .swatch {
  background-color: rgba(0, 0, 0, 0.4); }

#style-guide .swatch-container .swatch-info {
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 0;
  border-radius: 0 0 3px 3px; }

#style-guide .playlist-cover,
#style-guide .user-card {
  max-width: 250px;
  margin-bottom: 12px; }

#style-guide .chapter-container {
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  margin-top: 4px; }
  #style-guide .chapter-container .chapter {
    padding: 0;
    border-bottom: 0; }
    #style-guide .chapter-container .chapter .actions {
      margin-bottom: 0; }

/*=========================================
  11. Inline Editor
===========================================*/
.editor {
  font-family: "Libre Baskerville", serif;
  min-height: 500px; }
  .editor ::-webkit-input-placeholder {
    color: #ccc;
    position: relative;
    top: 3px; }
  .editor blockquote {
    padding-left: 30px;
    border-left: 3px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 36px;
    font-family: "Libre Baskerville", serif;
    font-style: italic; }
  .editor ol, .editor ul {
    list-style: inherit; }
  .editor:focus {
    outline: 0; }

.medium-editor-hidden {
  display: none;
  visibility: hidden;
  opacity: 0; }

.medium-toolbar-arrow-under:after {
  top: 50px;
  border-color: #f5f5f5 transparent transparent transparent; }

.medium-toolbar-arrow-over:before {
  top: -8px;
  border-color: transparent transparent #f5f5f5 transparent; }

.medium-editor-toolbar {
  border: 1px solid #f5f5f5;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
  -webkit-transition: all 0s;
          transition: all 0s; }
  .medium-editor-toolbar li {
    padding: 0; }
    .medium-editor-toolbar li button {
      min-width: 50px;
      height: 50px;
      border: none;
      border-right: 1px solid #eee;
      border-bottom: 3px solid transparent;
      -webkit-transition: all 0.2s;
              transition: all 0.2s;
      background-color: transparent;
      color: #333;
      font-size: 14px;
      font-family: "Open Sans", sans-serif; }
      .medium-editor-toolbar li button b {
        font-weight: normal;
        color: #333; }
      .medium-editor-toolbar li button.medium-editor-action-anchor, .medium-editor-toolbar li button.medium-editor-action-quote, .medium-editor-toolbar li button.medium-editor-action-unorderedlist {
        font-family: "SSPika";
        line-height: 26px; }
      .medium-editor-toolbar li button.medium-editor-action-italic, .medium-editor-toolbar li button.medium-editor-action-bold, .medium-editor-toolbar li button.medium-editor-action-header2 {
        font-family: "Libre Baskerville", serif; }
      .medium-editor-toolbar li button.medium-editor-action-bold b {
        font-weight: bold; }
      .medium-editor-toolbar li button.medium-editor-action-italic i {
        font-style: italic; }
      .medium-editor-toolbar li button:hover {
        background-color: #efefef; }
    .medium-editor-toolbar li .medium-editor-button-active {
      border-bottom-color: #43c5b8; }
    .medium-editor-toolbar li .medium-editor-button-last button {
      border-right: none; }

.medium-editor-toolbar-form {
  background-color: #fff;
  width: 348px;
  height: 50px;
  padding: 7px; }
  .medium-editor-toolbar-form .medium-editor-toolbar-input {
    width: 250px;
    height: 36px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px; }
  .medium-editor-toolbar-form a {
    width: 36px;
    height: 36px;
    display: inline-block;
    font-family: "SSPika";
    line-height: 42px;
    font-size: 18px;
    vertical-align: middle;
    text-align: center;
    border-radius: 2px; }
  .medium-editor-toolbar-form .medium-editor-toolbar-save {
    background-color: #43c5b8;
    color: #fff;
    margin-right: 6px; }
  .medium-editor-toolbar-form .medium-editor-toolbar-close {
    color: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(0, 0, 0, 0.12); }

#medium-editor-toolbar-form-anchor-1 {
  display: none; }

.medium-editor-toolbar-anchor-preview {
  background: #fff;
  border: 1px solid #f5f5f5;
  padding: 6px 9px;
  border-radius: 2px;
  color: #333;
  font-family: "Libre Baskerville", serif;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
  .medium-editor-toolbar-anchor-preview a {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.4);
    font-size: 11px; }

#producthunt-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #da552f;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 24px;
  text-align: center; }
  #producthunt-banner a {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3); }
  #producthunt-banner img {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  #producthunt-banner code {
    font-family: monospace;
    padding: 4px;
    background: rgba(0, 0, 0, 0.12);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 13px; }
  @media (max-width: 1024px) {
    #producthunt-banner {
      top: inherit;
      bottom: 0; }
      #producthunt-banner img {
        display: none; } }

.morphext > .animated {
  display: inline-block; }
