/**
 * Unceremoniusly lifted from: http://www.sitepoint.com/extra-map-functions-sass/
 *
 * jQuery-style extend function
 * About `map-merge()`:
 * * only takes 2 arguments
 * * is not recursive
 * @param {Map} $map - first map
 * @param {ArgList} $maps - other maps
 * @param {Bool} $deep - recursive mode
 * @return {Map}
 */
.a11y-text {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

/**
   * Settings for the various entities
   */
/**
   * Builds the map for stacked facepiles. Using a function to get around the
   * non-recursiveness of map-merge
   * @param $entity The entity config
   * @param $padding The amount of padding the normal entity has. Used to recalculate dimensions
   * @param $border-radius The border-radius to set for the entity. Defaults to circle.
   */
/**
   * THE ACTUAL CODE FOR GENERATING THE CODE
   */
/**
 * Will apply styles passed to CJK locales only
 *
 * Usage:
 *  @include is-cjk() {
 *    // Your styles here
 *  }
 */
@keyframes loaderspin {
  from {
    -webkit-transform: rotate(0deg) translate(-30px, -30px);
            transform: rotate(0deg) translate(-30px, -30px); }
  to {
    -webkit-transform: rotate(360deg) translate(-30px, -30px);
            transform: rotate(360deg) translate(-30px, -30px); } }

@-webkit-keyframes loaderspin {
  from {
    -webkit-transform: rotate(0deg) translate(-30px, -30px); }
  to {
    -webkit-transform: rotate(360deg) translate(-30px, -30px); } }

@-webkit-keyframes pebbleDraw {
  to {
    stroke-dashoffset: 0; } }

@keyframes pebbleDraw {
  to {
    stroke-dashoffset: 0; } }

@-webkit-keyframes pebbleGrow {
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes pebbleGrow {
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

use {
  fill-opacity: 1;
  stroke-opacity: 1;
  fill: transparent;
  stroke: transparent; }
  use[data-size=small], use[data-state=active],
  .active use[*|href^="#nav-"] {
    fill-opacity: 0;
    stroke-opacity: 0;
    fill: currentColor;
    stroke: currentColor; }

li-icon[type=loader] > svg {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: loaderspin 1s steps(12) infinite;
  animation: loaderspin 1s steps(12) infinite; }

li-icon {
  display: inline-block;
  width: 300px;
  height: 150px;
  overflow: hidden; }
  li-icon[type$="-icon"] {
    width: 24px;
    height: 24px; }
    li-icon[type$="-icon"][size="small"] {
      width: 16px;
      height: 16px; }
    li-icon[type$="-icon"] > svg {
      vertical-align: top; }
  li-icon[type^="nav-"] {
    width: 32px;
    height: 32px; }
  li-icon .inactive-item,
  li-icon .large-icon {
    fill: currentColor; }
  li-icon .active-item,
  li-icon .small-icon {
    fill: currentColor;
    visibility: hidden; }
  li-icon[size=small] .inactive-item,
  li-icon[size=small] .large-icon, li-icon[type^="nav-"][active] .inactive-item,
  li-icon[type^="nav-"][active] .large-icon {
    visibility: hidden; }
  li-icon[size=small] .active-item,
  li-icon[size=small] .small-icon, li-icon[type^="nav-"][active] .active-item,
  li-icon[type^="nav-"][active] .small-icon {
    visibility: visible; }
  li-icon[type="loader"] {
    fill-opacity: 1;
    stroke-opacity: 1;
    fill: transparent;
    stroke: transparent; }
    li-icon[type="loader"][size="small"] {
      fill-opacity: 0;
      stroke-opacity: 0;
      fill: currentColor;
      stroke: currentColor; }
  li-icon .color-icon {
    display: none; }
  li-icon[color] .solid-icon {
    display: none; }
  li-icon[color] .color-icon {
    display: block; }
  li-icon[type^="large-"], li-icon[type^="large-"][size="small"] {
    width: 48px;
    height: 48px; }
  [dir=rtl] li-icon[type*=arrow], [dir=rtl] li-icon[type*=chevron], [dir=rtl] li-icon[type=to-start-icon], [dir=rtl] li-icon[type=to-end-icon], [dir=rtl] li-icon[type=question-pebble-icon], [dir=rtl] li-icon[type=share-ios-icon] {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  li-icon[type$="-pebble-icon"][animate] {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    -webkit-animation: pebbleGrow 334ms ease-in-out forwards;
            animation: pebbleGrow 334ms ease-in-out forwards; }
    li-icon[type$="-pebble-icon"][animate] .circle {
      stroke-dasharray: 63;
      stroke-dashoffset: 63;
      -webkit-animation: pebbleDraw 500ms ease-out forwards;
              animation: pebbleDraw 500ms ease-out forwards;
      -webkit-animation-delay: 334ms;
              animation-delay: 334ms; }
    li-icon[type$="-pebble-icon"][animate][size="small"] .circle {
      stroke-dasharray: 38;
      stroke-dashoffset: 38; }

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

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

hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 1rem 0 24px 0;
  padding: 0;
  border-color: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(0, 0, 0, 0.15); }
  @media (max-width: 976px) {
    hr {
      margin-bottom: 16px; } }

input, select {
  vertical-align: middle; }

svg {
  width: 24px;
  height: 24px; }

/* Initial Reset */
input, select {
  vertical-align: middle; }

/* Label Styles */
label {
  color: rgba(0, 0, 0, 0.55);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  display: block;
  margin: 12px 0 3px; }
  label:lang(ja), label:lang(zh), label:lang(ko) {
    font-size: 1.4rem;
    line-height: 2.2rem; }
  label:lang(ar) {
    font-size: 1.5rem;
    line-height: 2rem; }
  label:lang(th) {
    font-size: 1.3rem;
    line-height: 2rem; }
  label.required:after {
    content: '*';
    color: #008CC9;
    margin-left: 2px; }

/* Input Styles */
textarea, input[type="date"], input[type="datetime"], input[type="datetime-local"],
input[type="email"], input[type="month"], input[type="number"], input[type="password"],
input[type="search"], input[type="tel"], input[type="text"], input[type="time"],
input[type="url"], input[type="week"] {
  box-shadow: none;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0 10px;
  width: 100%;
  outline: 0;
  height: 32px;
  -webkit-transition: border-color .15s;
          transition: border-color .15s;
  box-sizing: border-box;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.5rem;
  line-height: 2.0rem;
  font-weight: normal; }
  textarea::-webkit-input-placeholder, textarea:-moz-placeholder, textarea::-moz-placeholder, textarea:-ms-input-placeholder, textarea::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="date"]:-moz-placeholder, input[type="date"]::-moz-placeholder, input[type="date"]:-ms-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="datetime"]::-webkit-input-placeholder, input[type="datetime"]:-moz-placeholder, input[type="datetime"]::-moz-placeholder, input[type="datetime"]:-ms-input-placeholder, input[type="datetime"]::-webkit-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder, input[type="datetime-local"]:-moz-placeholder, input[type="datetime-local"]::-moz-placeholder, input[type="datetime-local"]:-ms-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="email"]::-webkit-input-placeholder, input[type="month"]::-webkit-input-placeholder, input[type="month"]:-moz-placeholder, input[type="month"]::-moz-placeholder, input[type="month"]:-ms-input-placeholder, input[type="month"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="number"]:-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="number"]:-ms-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="password"]:-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="password"]:-ms-input-placeholder, input[type="password"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder,
  input[type="search"]:-moz-placeholder,
  input[type="search"]::-moz-placeholder,
  input[type="search"]:-ms-input-placeholder,
  input[type="search"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="tel"]:-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="text"]:-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="text"]:-ms-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="time"]::-webkit-input-placeholder, input[type="time"]:-moz-placeholder, input[type="time"]::-moz-placeholder, input[type="time"]:-ms-input-placeholder, input[type="time"]::-webkit-input-placeholder,
  input[type="url"]::-webkit-input-placeholder,
  input[type="url"]:-moz-placeholder,
  input[type="url"]::-moz-placeholder,
  input[type="url"]:-ms-input-placeholder,
  input[type="url"]::-webkit-input-placeholder, input[type="week"]::-webkit-input-placeholder, input[type="week"]:-moz-placeholder, input[type="week"]::-moz-placeholder, input[type="week"]:-ms-input-placeholder, input[type="week"]::-webkit-input-placeholder {
    line-height: 3.5rem;
    color: rgba(0, 0, 0, 0.55); }
  textarea::-webkit-input-placeholder, textarea:-moz-placeholder, textarea::-moz-placeholder, textarea:-ms-input-placeholder, textarea::placeholder, input[type="date"]::-webkit-input-placeholder, input[type="date"]:-moz-placeholder, input[type="date"]::-moz-placeholder, input[type="date"]:-ms-input-placeholder, input[type="date"]::placeholder, input[type="datetime"]::-webkit-input-placeholder, input[type="datetime"]:-moz-placeholder, input[type="datetime"]::-moz-placeholder, input[type="datetime"]:-ms-input-placeholder, input[type="datetime"]::placeholder, input[type="datetime-local"]::-webkit-input-placeholder, input[type="datetime-local"]:-moz-placeholder, input[type="datetime-local"]::-moz-placeholder, input[type="datetime-local"]:-ms-input-placeholder, input[type="datetime-local"]::placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="email"]::placeholder, input[type="month"]::-webkit-input-placeholder, input[type="month"]:-moz-placeholder, input[type="month"]::-moz-placeholder, input[type="month"]:-ms-input-placeholder, input[type="month"]::placeholder, input[type="number"]::-webkit-input-placeholder, input[type="number"]:-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="number"]:-ms-input-placeholder, input[type="number"]::placeholder, input[type="password"]::-webkit-input-placeholder, input[type="password"]:-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="password"]:-ms-input-placeholder, input[type="password"]::placeholder,
  input[type="search"]::-webkit-input-placeholder,
  input[type="search"]:-moz-placeholder,
  input[type="search"]::-moz-placeholder,
  input[type="search"]:-ms-input-placeholder,
  input[type="search"]::placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="tel"]:-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="tel"]::placeholder, input[type="text"]::-webkit-input-placeholder, input[type="text"]:-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="text"]:-ms-input-placeholder, input[type="text"]::placeholder, input[type="time"]::-webkit-input-placeholder, input[type="time"]:-moz-placeholder, input[type="time"]::-moz-placeholder, input[type="time"]:-ms-input-placeholder, input[type="time"]::placeholder,
  input[type="url"]::-webkit-input-placeholder,
  input[type="url"]:-moz-placeholder,
  input[type="url"]::-moz-placeholder,
  input[type="url"]:-ms-input-placeholder,
  input[type="url"]::placeholder, input[type="week"]::-webkit-input-placeholder, input[type="week"]:-moz-placeholder, input[type="week"]::-moz-placeholder, input[type="week"]:-ms-input-placeholder, input[type="week"]::placeholder {
    line-height: 3.5rem;
    color: rgba(0, 0, 0, 0.55); }
  textarea:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus,
  input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus,
  input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus,
  input[type="url"]:focus, input[type="week"]:focus {
    border-color: #008CC9; }
  textarea[disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled],
  input[type="email"][disabled], input[type="month"][disabled], input[type="number"][disabled], input[type="password"][disabled],
  input[type="search"][disabled], input[type="tel"][disabled], input[type="text"][disabled], input[type="time"][disabled],
  input[type="url"][disabled], input[type="week"][disabled] {
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.25); }
    textarea[disabled]::-webkit-input-placeholder, input[type="date"][disabled]::-webkit-input-placeholder, input[type="datetime"][disabled]::-webkit-input-placeholder, input[type="datetime-local"][disabled]::-webkit-input-placeholder,
    input[type="email"][disabled]::-webkit-input-placeholder, input[type="month"][disabled]::-webkit-input-placeholder, input[type="number"][disabled]::-webkit-input-placeholder, input[type="password"][disabled]::-webkit-input-placeholder,
    input[type="search"][disabled]::-webkit-input-placeholder, input[type="tel"][disabled]::-webkit-input-placeholder, input[type="text"][disabled]::-webkit-input-placeholder, input[type="time"][disabled]::-webkit-input-placeholder,
    input[type="url"][disabled]::-webkit-input-placeholder, input[type="week"][disabled]::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    textarea[disabled]::-moz-placeholder, input[type="date"][disabled]::-moz-placeholder, input[type="datetime"][disabled]::-moz-placeholder, input[type="datetime-local"][disabled]::-moz-placeholder,
    input[type="email"][disabled]::-moz-placeholder, input[type="month"][disabled]::-moz-placeholder, input[type="number"][disabled]::-moz-placeholder, input[type="password"][disabled]::-moz-placeholder,
    input[type="search"][disabled]::-moz-placeholder, input[type="tel"][disabled]::-moz-placeholder, input[type="text"][disabled]::-moz-placeholder, input[type="time"][disabled]::-moz-placeholder,
    input[type="url"][disabled]::-moz-placeholder, input[type="week"][disabled]::-moz-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    textarea[disabled]:-ms-input-placeholder, input[type="date"][disabled]:-ms-input-placeholder, input[type="datetime"][disabled]:-ms-input-placeholder, input[type="datetime-local"][disabled]:-ms-input-placeholder,
    input[type="email"][disabled]:-ms-input-placeholder, input[type="month"][disabled]:-ms-input-placeholder, input[type="number"][disabled]:-ms-input-placeholder, input[type="password"][disabled]:-ms-input-placeholder,
    input[type="search"][disabled]:-ms-input-placeholder, input[type="tel"][disabled]:-ms-input-placeholder, input[type="text"][disabled]:-ms-input-placeholder, input[type="time"][disabled]:-ms-input-placeholder,
    input[type="url"][disabled]:-ms-input-placeholder, input[type="week"][disabled]:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    textarea[disabled]::placeholder, input[type="date"][disabled]::placeholder, input[type="datetime"][disabled]::placeholder, input[type="datetime-local"][disabled]::placeholder,
    input[type="email"][disabled]::placeholder, input[type="month"][disabled]::placeholder, input[type="number"][disabled]::placeholder, input[type="password"][disabled]::placeholder,
    input[type="search"][disabled]::placeholder, input[type="tel"][disabled]::placeholder, input[type="text"][disabled]::placeholder, input[type="time"][disabled]::placeholder,
    input[type="url"][disabled]::placeholder, input[type="week"][disabled]::placeholder {
      color: rgba(0, 0, 0, 0.25); }
  textarea.error, input[type="date"].error, input[type="datetime"].error, input[type="datetime-local"].error,
  input[type="email"].error, input[type="month"].error, input[type="number"].error, input[type="password"].error,
  input[type="search"].error, input[type="tel"].error, input[type="text"].error, input[type="time"].error,
  input[type="url"].error, input[type="week"].error {
    border-color: #DD2E1F; }

/* Select Elements */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: 0;
  height: 32px;
  background: transparent;
  position: relative;
  z-index: 2;
  background: transparent;
  background-image: url(/sc/h/1lacdnuuuup1h43otcimx9yjf);
  background-repeat: no-repeat;
  background-position: top -41px right 1px;
  box-sizing: border-box;
  border: 0;
  text-indent: 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding-right: 32px;
  -webkit-transition: box-shadow 0.15s;
          transition: box-shadow 0.15s;
  border-radius: 1px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.5rem;
  line-height: 2.0rem;
  font-weight: normal; }
  select::-ms-expand {
    display: none; }
  select:focus {
    border-color: #008CC9; }
  select[disabled] {
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.25);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), -webkit-linear-gradient(white, white), url(/sc/h/1lacdnuuuup1h43otcimx9yjf), -webkit-linear-gradient(white, white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), linear-gradient(white, white), url(/sc/h/1lacdnuuuup1h43otcimx9yjf), linear-gradient(white, white); }
  select.error {
    border-color: #DD2E1F; }
  select::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.55); }
  select::-moz-placeholder {
    color: rgba(0, 0, 0, 0.55); }
  select:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.55); }
  select::placeholder {
    color: rgba(0, 0, 0, 0.55); }

/* Textarea Overrides */
textarea {
  height: auto;
  padding-top: 7px; }

/* Submit Button Styles */
button {
  cursor: pointer; }

/* Checkboxes and Radios */
input[type=radio],
input[type=checkbox] {
  opacity: 0;
  margin: 16px 2px 0 0;
  position: absolute; }
  input[type=radio] + label,
  input[type=checkbox] + label {
    color: rgba(0, 0, 0, 0.7);
    display: block;
    line-height: 20px;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    padding-left: 28px; }
    input[type=radio] + label:before, input[type=radio] + label:after,
    input[type=checkbox] + label:before,
    input[type=checkbox] + label:after {
      content: " ";
      height: 20px;
      width: 20px;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      box-sizing: border-box; }
    input[type=radio] + label:before,
    input[type=checkbox] + label:before {
      border: 1px solid rgba(0, 0, 0, 0.55); }
  input[type=radio]:focus,
  input[type=checkbox]:focus {
    outline: none; }
    input[type=radio]:focus + label:before,
    input[type=checkbox]:focus + label:before {
      border-color: #00A0DC; }
  input[type=radio][disabled] + label,
  input[type=checkbox][disabled] + label {
    color: rgba(0, 0, 0, 0.25); }
    input[type=radio][disabled] + label:before,
    input[type=checkbox][disabled] + label:before {
      border-color: rgba(0, 0, 0, 0.1); }
  input[type=radio]:checked + label:after,
  input[type=checkbox]:checked + label:after {
    display: block; }
  input[type=radio].small-input + label,
  input[type=checkbox].small-input + label {
    line-height: 16px; }
    input[type=radio].small-input + label:before, input[type=radio].small-input + label:after,
    input[type=checkbox].small-input + label:before,
    input[type=checkbox].small-input + label:after {
      height: 16px;
      width: 16px; }

input[type=radio] + label:before {
  border-radius: 50%; }

input[type=radio] + label:after {
  border-radius: 50%;
  border: 0 solid #00A0DC;
  -webkit-transition: border-width 167ms cubic-bezier(0, 0, 0.2, 1);
          transition: border-width 167ms cubic-bezier(0, 0, 0.2, 1);
  border-width: 0px; }

input[type=radio]:checked + label:after {
  border-width: 6px; }

input[type=radio].small-input:checked + label:after {
  border-width: 5px; }

input[type=checkbox] + label:before {
  border-radius: 2px; }

input[type=checkbox] + label:after {
  display: none;
  height: 16px;
  width: 16px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  background-image: url(/sc/h/1lacdnuuuup1h43otcimx9yjf);
  background-position: 0px 0px;
  overflow: hidden;
  margin: 2px; }

input[type=checkbox]:checked + label:after {
  display: block; }

input[type=checkbox].small-input + label:after {
  top: -2px;
  left: -2px; }

form.inverse-form label {
  color: #FFFFFF; }

form.inverse-form textarea, form.inverse-form input[type="date"], form.inverse-form input[type="datetime"], form.inverse-form input[type="datetime-local"],
form.inverse-form input[type="email"], form.inverse-form input[type="month"], form.inverse-form input[type="number"], form.inverse-form input[type="password"],
form.inverse-form input[type="search"], form.inverse-form input[type="tel"], form.inverse-form input[type="text"], form.inverse-form input[type="time"],
form.inverse-form input[type="url"], form.inverse-form input[type="week"], form.inverse-form select {
  color: #FFFFFF;
  border-color: #FFFFFF; }
  form.inverse-form textarea::-webkit-input-placeholder, form.inverse-form input[type="date"]::-webkit-input-placeholder, form.inverse-form input[type="datetime"]::-webkit-input-placeholder, form.inverse-form input[type="datetime-local"]::-webkit-input-placeholder,
  form.inverse-form input[type="email"]::-webkit-input-placeholder, form.inverse-form input[type="month"]::-webkit-input-placeholder, form.inverse-form input[type="number"]::-webkit-input-placeholder, form.inverse-form input[type="password"]::-webkit-input-placeholder,
  form.inverse-form input[type="search"]::-webkit-input-placeholder, form.inverse-form input[type="tel"]::-webkit-input-placeholder, form.inverse-form input[type="text"]::-webkit-input-placeholder, form.inverse-form input[type="time"]::-webkit-input-placeholder,
  form.inverse-form input[type="url"]::-webkit-input-placeholder, form.inverse-form input[type="week"]::-webkit-input-placeholder, form.inverse-form select::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.55); }
  form.inverse-form textarea::-moz-placeholder, form.inverse-form input[type="date"]::-moz-placeholder, form.inverse-form input[type="datetime"]::-moz-placeholder, form.inverse-form input[type="datetime-local"]::-moz-placeholder,
  form.inverse-form input[type="email"]::-moz-placeholder, form.inverse-form input[type="month"]::-moz-placeholder, form.inverse-form input[type="number"]::-moz-placeholder, form.inverse-form input[type="password"]::-moz-placeholder,
  form.inverse-form input[type="search"]::-moz-placeholder, form.inverse-form input[type="tel"]::-moz-placeholder, form.inverse-form input[type="text"]::-moz-placeholder, form.inverse-form input[type="time"]::-moz-placeholder,
  form.inverse-form input[type="url"]::-moz-placeholder, form.inverse-form input[type="week"]::-moz-placeholder, form.inverse-form select::-moz-placeholder {
    color: rgba(255, 255, 255, 0.55); }
  form.inverse-form textarea:-ms-input-placeholder, form.inverse-form input[type="date"]:-ms-input-placeholder, form.inverse-form input[type="datetime"]:-ms-input-placeholder, form.inverse-form input[type="datetime-local"]:-ms-input-placeholder,
  form.inverse-form input[type="email"]:-ms-input-placeholder, form.inverse-form input[type="month"]:-ms-input-placeholder, form.inverse-form input[type="number"]:-ms-input-placeholder, form.inverse-form input[type="password"]:-ms-input-placeholder,
  form.inverse-form input[type="search"]:-ms-input-placeholder, form.inverse-form input[type="tel"]:-ms-input-placeholder, form.inverse-form input[type="text"]:-ms-input-placeholder, form.inverse-form input[type="time"]:-ms-input-placeholder,
  form.inverse-form input[type="url"]:-ms-input-placeholder, form.inverse-form input[type="week"]:-ms-input-placeholder, form.inverse-form select:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.55); }
  form.inverse-form textarea::placeholder, form.inverse-form input[type="date"]::placeholder, form.inverse-form input[type="datetime"]::placeholder, form.inverse-form input[type="datetime-local"]::placeholder,
  form.inverse-form input[type="email"]::placeholder, form.inverse-form input[type="month"]::placeholder, form.inverse-form input[type="number"]::placeholder, form.inverse-form input[type="password"]::placeholder,
  form.inverse-form input[type="search"]::placeholder, form.inverse-form input[type="tel"]::placeholder, form.inverse-form input[type="text"]::placeholder, form.inverse-form input[type="time"]::placeholder,
  form.inverse-form input[type="url"]::placeholder, form.inverse-form input[type="week"]::placeholder, form.inverse-form select::placeholder {
    color: rgba(255, 255, 255, 0.55); }
  form.inverse-form textarea:disabled, form.inverse-form input[type="date"]:disabled, form.inverse-form input[type="datetime"]:disabled, form.inverse-form input[type="datetime-local"]:disabled,
  form.inverse-form input[type="email"]:disabled, form.inverse-form input[type="month"]:disabled, form.inverse-form input[type="number"]:disabled, form.inverse-form input[type="password"]:disabled,
  form.inverse-form input[type="search"]:disabled, form.inverse-form input[type="tel"]:disabled, form.inverse-form input[type="text"]:disabled, form.inverse-form input[type="time"]:disabled,
  form.inverse-form input[type="url"]:disabled, form.inverse-form input[type="week"]:disabled, form.inverse-form select:disabled {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.25); }
    form.inverse-form textarea:disabled::-webkit-input-placeholder, form.inverse-form input[type="date"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="datetime"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="datetime-local"]:disabled::-webkit-input-placeholder,
    form.inverse-form input[type="email"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="month"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="number"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="password"]:disabled::-webkit-input-placeholder,
    form.inverse-form input[type="search"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="tel"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="text"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="time"]:disabled::-webkit-input-placeholder,
    form.inverse-form input[type="url"]:disabled::-webkit-input-placeholder, form.inverse-form input[type="week"]:disabled::-webkit-input-placeholder, form.inverse-form select:disabled::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.25); }
    form.inverse-form textarea:disabled::-moz-placeholder, form.inverse-form input[type="date"]:disabled::-moz-placeholder, form.inverse-form input[type="datetime"]:disabled::-moz-placeholder, form.inverse-form input[type="datetime-local"]:disabled::-moz-placeholder,
    form.inverse-form input[type="email"]:disabled::-moz-placeholder, form.inverse-form input[type="month"]:disabled::-moz-placeholder, form.inverse-form input[type="number"]:disabled::-moz-placeholder, form.inverse-form input[type="password"]:disabled::-moz-placeholder,
    form.inverse-form input[type="search"]:disabled::-moz-placeholder, form.inverse-form input[type="tel"]:disabled::-moz-placeholder, form.inverse-form input[type="text"]:disabled::-moz-placeholder, form.inverse-form input[type="time"]:disabled::-moz-placeholder,
    form.inverse-form input[type="url"]:disabled::-moz-placeholder, form.inverse-form input[type="week"]:disabled::-moz-placeholder, form.inverse-form select:disabled::-moz-placeholder {
      color: rgba(255, 255, 255, 0.25); }
    form.inverse-form textarea:disabled:-ms-input-placeholder, form.inverse-form input[type="date"]:disabled:-ms-input-placeholder, form.inverse-form input[type="datetime"]:disabled:-ms-input-placeholder, form.inverse-form input[type="datetime-local"]:disabled:-ms-input-placeholder,
    form.inverse-form input[type="email"]:disabled:-ms-input-placeholder, form.inverse-form input[type="month"]:disabled:-ms-input-placeholder, form.inverse-form input[type="number"]:disabled:-ms-input-placeholder, form.inverse-form input[type="password"]:disabled:-ms-input-placeholder,
    form.inverse-form input[type="search"]:disabled:-ms-input-placeholder, form.inverse-form input[type="tel"]:disabled:-ms-input-placeholder, form.inverse-form input[type="text"]:disabled:-ms-input-placeholder, form.inverse-form input[type="time"]:disabled:-ms-input-placeholder,
    form.inverse-form input[type="url"]:disabled:-ms-input-placeholder, form.inverse-form input[type="week"]:disabled:-ms-input-placeholder, form.inverse-form select:disabled:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.25); }
    form.inverse-form textarea:disabled::placeholder, form.inverse-form input[type="date"]:disabled::placeholder, form.inverse-form input[type="datetime"]:disabled::placeholder, form.inverse-form input[type="datetime-local"]:disabled::placeholder,
    form.inverse-form input[type="email"]:disabled::placeholder, form.inverse-form input[type="month"]:disabled::placeholder, form.inverse-form input[type="number"]:disabled::placeholder, form.inverse-form input[type="password"]:disabled::placeholder,
    form.inverse-form input[type="search"]:disabled::placeholder, form.inverse-form input[type="tel"]:disabled::placeholder, form.inverse-form input[type="text"]:disabled::placeholder, form.inverse-form input[type="time"]:disabled::placeholder,
    form.inverse-form input[type="url"]:disabled::placeholder, form.inverse-form input[type="week"]:disabled::placeholder, form.inverse-form select:disabled::placeholder {
      color: rgba(255, 255, 255, 0.25); }

form.inverse-form select {
  background-position: top -65px right 0px; }

form.inverse-form input[type=radio] + label:after {
  border-color: #FFFFFF; }

form.inverse-form input[type=checkbox] + label:after {
  background-position: 0px -24px; }

form.inverse-form input[type=radio] + label,
form.inverse-form input[type=checkbox] + label {
  color: #FFFFFF; }
  form.inverse-form input[type=radio] + label:before,
  form.inverse-form input[type=checkbox] + label:before {
    border-color: #FFFFFF; }

form.inverse-form input[type=radio]:disabled + label,
form.inverse-form input[type=checkbox]:disabled + label {
  color: rgba(255, 255, 255, 0.25); }
  form.inverse-form input[type=radio]:disabled + label:before,
  form.inverse-form input[type=checkbox]:disabled + label:before {
    border-color: rgba(255, 255, 255, 0.1); }

form.simple-form input[type="date"], form.simple-form input[type="datetime"], form.simple-form input[type="datetime-local"],
form.simple-form input[type="email"], form.simple-form input[type="month"], form.simple-form input[type="number"], form.simple-form input[type="password"],
form.simple-form input[type="search"], form.simple-form input[type="tel"], form.simple-form input[type="text"], form.simple-form input[type="time"],
form.simple-form input[type="url"], form.simple-form input[type="week"], form.simple-form select {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0; }

form.simple-form select {
  text-indent: 0; }

form.simple-form .floating-label {
  position: relative;
  display: block;
  margin-top: 35px; }
  form.simple-form .floating-label .label-text {
    position: absolute;
    top: 10px;
    left: 0px;
    -webkit-transition: all 0.35s ease;
            transition: all 0.35s ease;
    margin: 0; }
  form.simple-form .floating-label[data-form-elem-focus=true] .label-text {
    transform: translate(0, -25px);
    -webkit-transform: translate(0, -25px); }

html.artdeco body {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; }

html.artdeco #body[role=main],
html.artdeco #layout-main {
  -webkit-font-smoothing: antialiased; }

html {
  font-size: 62.5%; }
  html body {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; }
  html:lang(ar) body {
    font-family: 'Noto Naskh Arabic', 'Source Sans Pro', 'Droid Arabic Naskh', 'Geeza Pro', 'Simplified Arabic', sans-serif; }
  html:lang(th) body {
    font-family: 'Source Sans Pro', 'Noto Sans Thai', 'Thonburi', 'Dokchampa', 'Droid Sans Thai', sans-serif; }
  html.ios:lang(zh) body, html.ios:lang(ja) body, html.ios:lang(ko) body {
    font-family: -apple-system, 'Helvetica Neue', 'Heiti SC', sans-serif; }
  html.osx:lang(zh) body, html.osx:lang(ja) body, html.osx:lang(ko) body {
    font-family: -apple-system, '.SFNSDisplay-Regular', 'San Francisco', 'Helvetica Neue', 'Hiragino Sans GB W3', 'Heiti SC', sans-serif; }
  html.windows:lang(zh) body, html.windows:lang(ja) body, html.windows:lang(ko) body {
    font-family: 'Segoe UI', 'Microsoft Yahei', sans-serif; }
  html.android:lang(zh) body, html.android:lang(ja) body, html.android:lang(ko) body {
    font-family: 'Source Sans Pro', 'Droid Sans Fallback', sans-serif; }

a {
  outline: none;
  text-decoration: none;
  font-weight: bold;
  background-color: transparent;
  border: 0;
  color: #008CC9; }
  a:hover, a:focus {
    text-decoration: underline; }
  a:active {
    text-decoration: none;
    color: #005E93; }
  a:visited {
    color: #8C68CB; }
    a:visited:active {
      color: #6A4BA7; }

::-moz-selection {
  background: #008CC9;
  /* WebKit/Blink Browsers */
  color: #FFFFFF; }

::selection {
  background: #008CC9;
  /* WebKit/Blink Browsers */
  color: #FFFFFF; }

::-moz-selection {
  background: #008CC9;
  /* Firefox */
  color: #FFFFFF; }

strong, b {
  font-weight: bold; }

body, p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.7rem;
  line-height: 2rem;
  font-weight: normal; }
  body:lang(ja), body:lang(zh), body:lang(ko), p:lang(ja), p:lang(zh), p:lang(ko) {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: normal !important; }
  body:lang(ar), p:lang(ar) {
    font-size: 1.7rem;
    line-height: 2.1rem; }
  body:lang(th), p:lang(th) {
    font-size: 1.5rem;
    line-height: 2.2rem; }

h1, .large-header {
  color: rgba(0, 0, 0, 0.85);
  font-size: 4.2rem;
  line-height: 4.4rem;
  font-weight: 200; }
  h1:lang(ja), h1:lang(zh), h1:lang(ko), .large-header:lang(ja), .large-header:lang(zh), .large-header:lang(ko) {
    font-size: 3.2rem;
    line-height: 4.4rem; }
  h1:lang(ar), .large-header:lang(ar) {
    font-size: 4.2rem;
    line-height: 5rem; }
  h1:lang(th), .large-header:lang(th) {
    font-size: 3.4rem;
    line-height: 4.8rem; }

h2 {
  color: rgba(0, 0, 0, 0.85);
  font-size: 3.4rem;
  line-height: 3.6rem;
  font-weight: 200; }
  h2:lang(ja), h2:lang(zh), h2:lang(ko) {
    font-size: 2.8rem;
    line-height: 3.8rem; }
  h2:lang(ar) {
    font-size: 3.4rem;
    line-height: 4.1rem; }
  h2:lang(th) {
    font-size: 2.8rem;
    line-height: 4rem; }

h3, .large-text {
  color: rgba(0, 0, 0, 0.85);
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: 200; }
  h3:lang(ja), h3:lang(zh), h3:lang(ko), .large-text:lang(ja), .large-text:lang(zh), .large-text:lang(ko) {
    font-size: 2.2rem;
    line-height: 3.1rem; }
  h3:lang(ar), .large-text:lang(ar) {
    font-size: 2.6rem;
    line-height: 3.2rem; }
  h3:lang(th), .large-text:lang(th) {
    font-size: 2rem;
    line-height: 2.8rem; }

h4, .medium-text {
  color: rgba(0, 0, 0, 0.85);
  font-size: 2.1rem;
  line-height: 2.4rem;
  font-weight: 200; }
  h4:lang(ja), h4:lang(zh), h4:lang(ko), .medium-text:lang(ja), .medium-text:lang(zh), .medium-text:lang(ko) {
    font-size: 2rem;
    line-height: 2.8rem; }
  h4:lang(ar), .medium-text:lang(ar) {
    font-size: 2.1rem;
    line-height: 2.6rem; }
  h4:lang(th), .medium-text:lang(th) {
    font-size: 1.9rem;
    line-height: 2.6rem; }

h5, .small-text {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.7rem;
  line-height: 2rem;
  font-weight: normal; }
  h5:lang(ja), h5:lang(zh), h5:lang(ko), .small-text:lang(ja), .small-text:lang(zh), .small-text:lang(ko) {
    font-size: 1.6rem;
    line-height: 2.3rem; }
  h5:lang(ar), .small-text:lang(ar) {
    font-size: 1.7rem;
    line-height: 2.1rem; }
  h5:lang(th), .small-text:lang(th) {
    font-size: 1.5rem;
    line-height: 2.2rem; }

h6 {
  color: rgba(0, 0, 0, 0.55);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal; }
  h6:lang(ja), h6:lang(zh), h6:lang(ko) {
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: normal !important; }
  h6:lang(ar) {
    font-size: 1.5rem;
    line-height: 2rem; }
  h6:lang(th) {
    font-size: 1.3rem;
    line-height: 2rem; }

em, i {
  font-style: italic; }
  em:lang(zh), em:lang(ja), em:lang(ko), i:lang(zh), i:lang(ja), i:lang(ko) {
    font-style: normal !important; }
  em:lang(ar), em:lang(th), i:lang(ar), i:lang(th) {
    font-style: normal !important; }

input,
select,
textarea,
button {
  font-family: inherit; }

input, button, .small-text {
  font-size: 1.45rem;
  line-height: 1.375; }

blockquote {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.7rem;
  line-height: 2.4rem;
  font-weight: normal; }
  blockquote:lang(ja), blockquote:lang(zh), blockquote:lang(ko) {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: normal !important; }
  blockquote:lang(ar) {
    font-size: 1.7rem;
    line-height: 2.4rem; }
  blockquote:lang(th) {
    font-size: 1.5rem;
    line-height: 2.4rem; }

/**
 * Tipsy.sass
 * @author: Dang Van Thanh
 * @description: A Simple Mixin Tooltip CSS Using Sass
 * @version: 1.0.5
 */
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

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

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

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

@keyframes borderWarning {
  0% { }
  20% {
    border-color: #DD2E1F; }
  60% {
    border-color: #DD2E1F; }
  100% { } }

@-webkit-keyframes borderWarning {
  0% { }
  20% {
    border-color: #DD2E1F; }
  60% {
    border-color: #DD2E1F; }
  100% { } }

/*

  @include hovercard()

  Displays a hovercard on hover/focus. Apply to the hovercard trigger
  and add the hovercard-tooltip class to the element that contains your
  message.

  Markup example:
  <button class="hovercard-trigger">
    <div class="hovercard-tooltip">Message you want in hovercard!</div>
  </button>

  In this example the hovercard mixin should be applied to the button.

*/
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding: 0 16px;
  max-width: 1200px; }
  .container-fluid:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 768px) {
    .container-fluid {
      padding: 0 24px; } }
  @media (min-width: 1024px) {
    .container-fluid {
      padding: 0 36px; } }

.row:after, .top-bar-center-wrap:after {
  content: "";
  display: table;
  clear: both; }

@media (min-width: 768px) {
  .row, .top-bar-center-wrap {
    margin-left: -8px;
    margin-right: -8px; } }

@media (min-width: 1024px) {
  .row, .top-bar-center-wrap {
    margin-left: -12px;
    margin-right: -12px; } }

.col-md-1, .col-lg-1, .col-md-2, .col-lg-2, .col-md-3, .col-lg-3, .col-md-4, .col-lg-4, .col-md-5, .col-lg-5, .col-md-6, .col-lg-6, .col-md-7, .col-lg-7, .col-md-8, .col-lg-8, .col-md-9, .col-lg-9, .col-md-10, .col-lg-10, .col-md-11, .col-lg-11, .col-md-12, .col-lg-12, .col-md-13, .col-lg-13, .col-md-14, .col-lg-14, .col-md-15, .col-lg-15, .col-md-16, .col-lg-16, .col-md-17, .col-lg-17, .col-md-18, .col-lg-18, .col-md-19, .col-lg-19, .col-md-20, .col-lg-20, .col-md-21, .col-lg-21, .col-md-22, .col-lg-22, .col-md-23, .col-lg-23, .col-md-24, .col-lg-24 {
  position: relative;
  min-height: 1px; }
  @media (min-width: 768px) {
    .col-md-1, .col-lg-1, .col-md-2, .col-lg-2, .col-md-3, .col-lg-3, .col-md-4, .col-lg-4, .col-md-5, .col-lg-5, .col-md-6, .col-lg-6, .col-md-7, .col-lg-7, .col-md-8, .col-lg-8, .col-md-9, .col-lg-9, .col-md-10, .col-lg-10, .col-md-11, .col-lg-11, .col-md-12, .col-lg-12, .col-md-13, .col-lg-13, .col-md-14, .col-lg-14, .col-md-15, .col-lg-15, .col-md-16, .col-lg-16, .col-md-17, .col-lg-17, .col-md-18, .col-lg-18, .col-md-19, .col-lg-19, .col-md-20, .col-lg-20, .col-md-21, .col-lg-21, .col-md-22, .col-lg-22, .col-md-23, .col-lg-23, .col-md-24, .col-lg-24 {
      padding-left: 8px;
      padding-right: 8px; } }
  @media (min-width: 1024px) {
    .col-md-1, .col-lg-1, .col-md-2, .col-lg-2, .col-md-3, .col-lg-3, .col-md-4, .col-lg-4, .col-md-5, .col-lg-5, .col-md-6, .col-lg-6, .col-md-7, .col-lg-7, .col-md-8, .col-lg-8, .col-md-9, .col-lg-9, .col-md-10, .col-lg-10, .col-md-11, .col-lg-11, .col-md-12, .col-lg-12, .col-md-13, .col-lg-13, .col-md-14, .col-lg-14, .col-md-15, .col-lg-15, .col-md-16, .col-lg-16, .col-md-17, .col-lg-17, .col-md-18, .col-lg-18, .col-md-19, .col-lg-19, .col-md-20, .col-lg-20, .col-md-21, .col-lg-21, .col-md-22, .col-lg-22, .col-md-23, .col-lg-23, .col-md-24, .col-lg-24 {
      padding-left: 12px;
      padding-right: 12px; } }

@media (min-width: 768px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24 {
    float: left; }
  .col-md-1 {
    width: 4.16667%; }
  .col-md-2 {
    width: 8.33333%; }
  .col-md-3 {
    width: 12.5%; }
  .col-md-4 {
    width: 16.66667%; }
  .col-md-5 {
    width: 20.83333%; }
  .col-md-6 {
    width: 25%; }
  .col-md-7 {
    width: 29.16667%; }
  .col-md-8 {
    width: 33.33333%; }
  .col-md-9 {
    width: 37.5%; }
  .col-md-10 {
    width: 41.66667%; }
  .col-md-11 {
    width: 45.83333%; }
  .col-md-12 {
    width: 50%; }
  .col-md-13 {
    width: 54.16667%; }
  .col-md-14 {
    width: 58.33333%; }
  .col-md-15 {
    width: 62.5%; }
  .col-md-16 {
    width: 66.66667%; }
  .col-md-17 {
    width: 70.83333%; }
  .col-md-18 {
    width: 75%; }
  .col-md-19 {
    width: 79.16667%; }
  .col-md-20 {
    width: 83.33333%; }
  .col-md-21 {
    width: 87.5%; }
  .col-md-22 {
    width: 91.66667%; }
  .col-md-23 {
    width: 95.83333%; }
  .col-md-24 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 4.16667%; }
  .col-md-pull-2 {
    right: 8.33333%; }
  .col-md-pull-3 {
    right: 12.5%; }
  .col-md-pull-4 {
    right: 16.66667%; }
  .col-md-pull-5 {
    right: 20.83333%; }
  .col-md-pull-6 {
    right: 25%; }
  .col-md-pull-7 {
    right: 29.16667%; }
  .col-md-pull-8 {
    right: 33.33333%; }
  .col-md-pull-9 {
    right: 37.5%; }
  .col-md-pull-10 {
    right: 41.66667%; }
  .col-md-pull-11 {
    right: 45.83333%; }
  .col-md-pull-12 {
    right: 50%; }
  .col-md-pull-13 {
    right: 54.16667%; }
  .col-md-pull-14 {
    right: 58.33333%; }
  .col-md-pull-15 {
    right: 62.5%; }
  .col-md-pull-16 {
    right: 66.66667%; }
  .col-md-pull-17 {
    right: 70.83333%; }
  .col-md-pull-18 {
    right: 75%; }
  .col-md-pull-19 {
    right: 79.16667%; }
  .col-md-pull-20 {
    right: 83.33333%; }
  .col-md-pull-21 {
    right: 87.5%; }
  .col-md-pull-22 {
    right: 91.66667%; }
  .col-md-pull-23 {
    right: 95.83333%; }
  .col-md-pull-24 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 4.16667%; }
  .col-md-push-2 {
    left: 8.33333%; }
  .col-md-push-3 {
    left: 12.5%; }
  .col-md-push-4 {
    left: 16.66667%; }
  .col-md-push-5 {
    left: 20.83333%; }
  .col-md-push-6 {
    left: 25%; }
  .col-md-push-7 {
    left: 29.16667%; }
  .col-md-push-8 {
    left: 33.33333%; }
  .col-md-push-9 {
    left: 37.5%; }
  .col-md-push-10 {
    left: 41.66667%; }
  .col-md-push-11 {
    left: 45.83333%; }
  .col-md-push-12 {
    left: 50%; }
  .col-md-push-13 {
    left: 54.16667%; }
  .col-md-push-14 {
    left: 58.33333%; }
  .col-md-push-15 {
    left: 62.5%; }
  .col-md-push-16 {
    left: 66.66667%; }
  .col-md-push-17 {
    left: 70.83333%; }
  .col-md-push-18 {
    left: 75%; }
  .col-md-push-19 {
    left: 79.16667%; }
  .col-md-push-20 {
    left: 83.33333%; }
  .col-md-push-21 {
    left: 87.5%; }
  .col-md-push-22 {
    left: 91.66667%; }
  .col-md-push-23 {
    left: 95.83333%; }
  .col-md-push-24 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 4.16667%; }
  .col-md-offset-2 {
    margin-left: 8.33333%; }
  .col-md-offset-3 {
    margin-left: 12.5%; }
  .col-md-offset-4 {
    margin-left: 16.66667%; }
  .col-md-offset-5 {
    margin-left: 20.83333%; }
  .col-md-offset-6 {
    margin-left: 25%; }
  .col-md-offset-7 {
    margin-left: 29.16667%; }
  .col-md-offset-8 {
    margin-left: 33.33333%; }
  .col-md-offset-9 {
    margin-left: 37.5%; }
  .col-md-offset-10 {
    margin-left: 41.66667%; }
  .col-md-offset-11 {
    margin-left: 45.83333%; }
  .col-md-offset-12 {
    margin-left: 50%; }
  .col-md-offset-13 {
    margin-left: 54.16667%; }
  .col-md-offset-14 {
    margin-left: 58.33333%; }
  .col-md-offset-15 {
    margin-left: 62.5%; }
  .col-md-offset-16 {
    margin-left: 66.66667%; }
  .col-md-offset-17 {
    margin-left: 70.83333%; }
  .col-md-offset-18 {
    margin-left: 75%; }
  .col-md-offset-19 {
    margin-left: 79.16667%; }
  .col-md-offset-20 {
    margin-left: 83.33333%; }
  .col-md-offset-21 {
    margin-left: 87.5%; }
  .col-md-offset-22 {
    margin-left: 91.66667%; }
  .col-md-offset-23 {
    margin-left: 95.83333%; }
  .col-md-offset-24 {
    margin-left: 100%; } }

@media (min-width: 1024px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24 {
    float: left; }
  .col-lg-1 {
    width: 4.16667%; }
  .col-lg-2 {
    width: 8.33333%; }
  .col-lg-3 {
    width: 12.5%; }
  .col-lg-4 {
    width: 16.66667%; }
  .col-lg-5 {
    width: 20.83333%; }
  .col-lg-6 {
    width: 25%; }
  .col-lg-7 {
    width: 29.16667%; }
  .col-lg-8 {
    width: 33.33333%; }
  .col-lg-9 {
    width: 37.5%; }
  .col-lg-10 {
    width: 41.66667%; }
  .col-lg-11 {
    width: 45.83333%; }
  .col-lg-12 {
    width: 50%; }
  .col-lg-13 {
    width: 54.16667%; }
  .col-lg-14 {
    width: 58.33333%; }
  .col-lg-15 {
    width: 62.5%; }
  .col-lg-16 {
    width: 66.66667%; }
  .col-lg-17 {
    width: 70.83333%; }
  .col-lg-18 {
    width: 75%; }
  .col-lg-19 {
    width: 79.16667%; }
  .col-lg-20 {
    width: 83.33333%; }
  .col-lg-21 {
    width: 87.5%; }
  .col-lg-22 {
    width: 91.66667%; }
  .col-lg-23 {
    width: 95.83333%; }
  .col-lg-24 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 4.16667%; }
  .col-lg-pull-2 {
    right: 8.33333%; }
  .col-lg-pull-3 {
    right: 12.5%; }
  .col-lg-pull-4 {
    right: 16.66667%; }
  .col-lg-pull-5 {
    right: 20.83333%; }
  .col-lg-pull-6 {
    right: 25%; }
  .col-lg-pull-7 {
    right: 29.16667%; }
  .col-lg-pull-8 {
    right: 33.33333%; }
  .col-lg-pull-9 {
    right: 37.5%; }
  .col-lg-pull-10 {
    right: 41.66667%; }
  .col-lg-pull-11 {
    right: 45.83333%; }
  .col-lg-pull-12 {
    right: 50%; }
  .col-lg-pull-13 {
    right: 54.16667%; }
  .col-lg-pull-14 {
    right: 58.33333%; }
  .col-lg-pull-15 {
    right: 62.5%; }
  .col-lg-pull-16 {
    right: 66.66667%; }
  .col-lg-pull-17 {
    right: 70.83333%; }
  .col-lg-pull-18 {
    right: 75%; }
  .col-lg-pull-19 {
    right: 79.16667%; }
  .col-lg-pull-20 {
    right: 83.33333%; }
  .col-lg-pull-21 {
    right: 87.5%; }
  .col-lg-pull-22 {
    right: 91.66667%; }
  .col-lg-pull-23 {
    right: 95.83333%; }
  .col-lg-pull-24 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 4.16667%; }
  .col-lg-push-2 {
    left: 8.33333%; }
  .col-lg-push-3 {
    left: 12.5%; }
  .col-lg-push-4 {
    left: 16.66667%; }
  .col-lg-push-5 {
    left: 20.83333%; }
  .col-lg-push-6 {
    left: 25%; }
  .col-lg-push-7 {
    left: 29.16667%; }
  .col-lg-push-8 {
    left: 33.33333%; }
  .col-lg-push-9 {
    left: 37.5%; }
  .col-lg-push-10 {
    left: 41.66667%; }
  .col-lg-push-11 {
    left: 45.83333%; }
  .col-lg-push-12 {
    left: 50%; }
  .col-lg-push-13 {
    left: 54.16667%; }
  .col-lg-push-14 {
    left: 58.33333%; }
  .col-lg-push-15 {
    left: 62.5%; }
  .col-lg-push-16 {
    left: 66.66667%; }
  .col-lg-push-17 {
    left: 70.83333%; }
  .col-lg-push-18 {
    left: 75%; }
  .col-lg-push-19 {
    left: 79.16667%; }
  .col-lg-push-20 {
    left: 83.33333%; }
  .col-lg-push-21 {
    left: 87.5%; }
  .col-lg-push-22 {
    left: 91.66667%; }
  .col-lg-push-23 {
    left: 95.83333%; }
  .col-lg-push-24 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 4.16667%; }
  .col-lg-offset-2 {
    margin-left: 8.33333%; }
  .col-lg-offset-3 {
    margin-left: 12.5%; }
  .col-lg-offset-4 {
    margin-left: 16.66667%; }
  .col-lg-offset-5 {
    margin-left: 20.83333%; }
  .col-lg-offset-6 {
    margin-left: 25%; }
  .col-lg-offset-7 {
    margin-left: 29.16667%; }
  .col-lg-offset-8 {
    margin-left: 33.33333%; }
  .col-lg-offset-9 {
    margin-left: 37.5%; }
  .col-lg-offset-10 {
    margin-left: 41.66667%; }
  .col-lg-offset-11 {
    margin-left: 45.83333%; }
  .col-lg-offset-12 {
    margin-left: 50%; }
  .col-lg-offset-13 {
    margin-left: 54.16667%; }
  .col-lg-offset-14 {
    margin-left: 58.33333%; }
  .col-lg-offset-15 {
    margin-left: 62.5%; }
  .col-lg-offset-16 {
    margin-left: 66.66667%; }
  .col-lg-offset-17 {
    margin-left: 70.83333%; }
  .col-lg-offset-18 {
    margin-left: 75%; }
  .col-lg-offset-19 {
    margin-left: 79.16667%; }
  .col-lg-offset-20 {
    margin-left: 83.33333%; }
  .col-lg-offset-21 {
    margin-left: 87.5%; }
  .col-lg-offset-22 {
    margin-left: 91.66667%; }
  .col-lg-offset-23 {
    margin-left: 95.83333%; }
  .col-lg-offset-24 {
    margin-left: 100%; } }

.bold-uppercase-header {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 12.0px; }

.mobile-view-on-desktop {
  display: none; }

.mobile-only {
  display: block; }

.mobile-excluded {
  display: none !important; }

.desktop-excluded {
  display: block; }

.screen-reader {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  display: block; }

.overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: block; }

.hidden {
  display: none !important; }

.a11y-hidden, .a11y-hidden-mobile {
  position: absolute !important;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.svg-icon {
  vertical-align: middle;
  text-indent: 0; }

.btn-primary {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: #008CC9;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #FFFFFF;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  box-shadow: none;
  z-index: 0;
  overflow: hidden; }
  .btn-primary li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .btn-primary:visited {
    color: #FFFFFF; }
  .btn-primary:hover:not(:disabled), .btn-primary:focus:not(:disabled) {
    background-color: #0077B5;
    box-shadow: none; }
  .btn-primary::-moz-focus-inner {
    border: 0; }
  .btn-primary:active:not(:disabled) {
    background-color: #005E93;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93; }
  .btn-primary:disabled {
    opacity: 0.4;
    cursor: default; }

.btn-secondary {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: transparent;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #008CC9;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle; }
  .btn-secondary li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .btn-secondary:visited {
    color: #008CC9; }
  .btn-secondary:hover:not(:disabled), .btn-secondary:focus:not(:disabled) {
    background-color: transparent;
    color: #0077B5;
    box-shadow: inset 0 0 0 2px #008CC9; }
  .btn-secondary::-moz-focus-inner {
    border: 0; }
  .btn-secondary:active:not(:disabled) {
    background-color: transparent;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93;
    color: #005E93; }
  .btn-secondary:disabled {
    opacity: 0.4;
    cursor: default; }

.utility-button {
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 18px;
  padding: 3px 16px;
  background-color: transparent;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #008CC9;
  height: 24px;
  text-align: center;
  position: relative;
  vertical-align: middle; }
  .utility-button li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 11px;
    padding: 0 6px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .utility-button:visited {
    color: #008CC9; }
  .utility-button:hover:not(:disabled), .utility-button:focus:not(:disabled) {
    background-color: transparent;
    color: #0077B5;
    box-shadow: inset 0 0 0 2px #008CC9; }
  .utility-button::-moz-focus-inner {
    border: 0; }
  .utility-button:active:not(:disabled) {
    background-color: transparent;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93;
    color: #005E93; }
  .utility-button:disabled {
    opacity: 0.4;
    cursor: default; }

.plain-button {
  background: none;
  border: 0 none;
  cursor: pointer;
  padding: 0; }

.no-scroll {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch; }

@-webkit-keyframes rotateSpinner {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

@keyframes rotateSpinner {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

.page-title {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 300;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.07692308;
  display: block;
  padding: 5px 0 3px;
  margin-bottom: -8px;
  margin-top: 12.0px;
  position: relative;
  z-index: 1; }
  .page-title.centered {
    text-align: center; }

.nbsp {
  white-space: nowrap;
  display: inline-block; }

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 101 !important; }

@media (min-width: 768px) {
  .bold-uppercase-header {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 28.0px; }
  .mobile-only {
    display: none !important; }
  .mobile-excluded {
    display: block !important; }
  .a11y-hidden-mobile {
    position: static !important;
    left: auto;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .no-scroll {
    position: static; }
  .page-title {
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.04761905;
    display: block;
    margin-bottom: -12px;
    padding: 3px 0 5px;
    margin-top: 32.0px; } }

@media (min-width: 1024px) {
  .desktop-excluded {
    display: none !important; } }

/* Media query to show items on desktop/laptop devices that are in a baby-bear view */
@media (min-device-width: 1024px) and (max-width: 767px) {
  .mobile-view-on-desktop {
    display: block; } }

html[dir="rtl"] .svg-icon {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }

.content-with-pre-footer {
  background: #FFFFFF;
  overflow: hidden; }

.has-pre-footer {
  background: #F0F3F6; }

.is-contact-us .sidebar {
  display: none; }

@media (min-width: 768px) {
  .is-contact-us .sidebar {
    display: block; } }

.top-bar {
  color: #FFFFFF;
  background: #008CC9;
  padding: 0;
  height: 56px;
  position: relative;
  z-index: 99;
  -webkit-transition-property: top;
          transition-property: top;
  -webkit-transition-duration: 0.400s;
          transition-duration: 0.400s; }
  .product-lynda .top-bar {
    background: #313335; }
  .top-bar .top-bar-container {
    padding: 0 12px;
    height: 100%; }
  .top-bar a {
    color: #FFFFFF; }
  .top-bar .logo-block {
    height: 100%; }
  .top-bar .mobile-menu-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    padding: 4px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    height: 40px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    width: 40px;
    border-radius: 20px;
    padding: 0 !important;
    text-index: -999px;
    font-size: 0;
    box-shadow: none;
    float: right;
    width: 32px;
    height: 100%;
    z-index: 1; }
    .top-bar .mobile-menu-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: absolute;
      top: 50%;
      padding: 0;
      left: 50%;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .top-bar .mobile-menu-button:visited {
      color: rgba(255, 255, 255, 0.7); }
    .top-bar .mobile-menu-button:hover:not(:disabled), .top-bar .mobile-menu-button:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(255, 255, 255, 0.85);
      box-shadow: none; }
    .top-bar .mobile-menu-button::-moz-focus-inner {
      border: 0; }
    .top-bar .mobile-menu-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: none;
      color: #FFFFFF; }
    .top-bar .mobile-menu-button:disabled {
      opacity: 0.4;
      cursor: default; }
  body.transition-in .top-bar {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s; }
  body.transition-out .top-bar {
    -webkit-transition-duration: 0.334s;
            transition-duration: 0.334s; }
  .internal-instance .top-bar {
    background: #00AEB3; }

.li-logo {
  height: 32px;
  width: 40px;
  vertical-align: middle;
  display: inline-block; }
  .product-lynda .li-logo {
    width: auto;
    height: 20px;
    margin-right: 8px;
    margin-top: 8px; }

.home-link {
  display: inline-block;
  float: left;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding: 6px;
  margin: 5px 0 0 -6px; }
  .home-link:focus {
    background: rgba(255, 255, 255, 0.2); }
  .home-link:hover:focus {
    background: transparent; }

.hc-title {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471;
  padding: 0;
  margin: 0;
  margin-left: 8px;
  display: none;
  vertical-align: middle; }

.nav-block {
  height: 100%;
  position: relative; }
  .nav-block .product-menu {
    float: right;
    margin-right: 8px; }
    .nav-block .product-menu .product-button {
      background: none;
      border: 0 none;
      cursor: pointer;
      padding: 0;
      opacity: 0.7;
      display: inline-block;
      height: 56px;
      padding: 16px 8px; }
      .nav-block .product-menu .product-button:hover, .nav-block .product-menu .product-button:focus {
        opacity: 0.85;
        outline: 0 none; }
      .nav-block .product-menu .product-button:active {
        opacity: 1; }
      .nav-block .product-menu .product-button[disabled], .nav-block .product-menu .product-button.disabled {
        opacity: 0.4; }
      .nav-block .product-menu .product-button .svg-icon {
        color: #FFFFFF; }
  .nav-block .user-menu-item {
    float: right; }
    .nav-block .user-menu-item .user-button {
      display: inline-block;
      height: 56px;
      padding: 16px 8px; }
      .nav-block .user-menu-item .user-button:hover .profile-image, .nav-block .user-menu-item .user-button:focus .profile-image {
        border-color: #68C7EC;
        box-shadow: 0 0 2px #68C7EC; }
    .nav-block .user-menu-item.active .profile-image {
      border-color: #FFFFFF;
      box-shadow: 0 0 2px #68C7EC; }
  .nav-block .header-link {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    padding: 4px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    height: 56px;
    line-height: 56px;
    padding: 1px 8px;
    border: 0 none; }
    .nav-block .header-link li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .nav-block .header-link:visited {
      color: rgba(255, 255, 255, 0.7); }
    .nav-block .header-link:hover:not(:disabled), .nav-block .header-link:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(255, 255, 255, 0.85);
      box-shadow: none; }
    .nav-block .header-link::-moz-focus-inner {
      border: 0; }
    .nav-block .header-link:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: none;
      color: #FFFFFF; }
    .nav-block .header-link:disabled {
      opacity: 0.4;
      cursor: default; }
  .nav-block .subnav-links.user-subnav, .nav-block .subnav-links.product-subnav {
    margin-top: -5px; }
    .nav-block .subnav-links.user-subnav .subnav-link-item .svg-icon, .nav-block .subnav-links.product-subnav .subnav-link-item .svg-icon {
      color: rgba(0, 0, 0, 0.55);
      margin: 2px -32px 0 0; }
    .nav-block .subnav-links.user-subnav .subnav-link-item:hover .svg-icon, .nav-block .subnav-links.user-subnav .subnav-link-item:focus .svg-icon, .nav-block .subnav-links.product-subnav .subnav-link-item:hover .svg-icon, .nav-block .subnav-links.product-subnav .subnav-link-item:focus .svg-icon {
      color: #FFFFFF; }
  .nav-block .subnav-links .subnav-placeholder {
    box-shadow: #E6E9EC 0px 0 0 inset, #E6E9EC 0px 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0px 0 inset;
    overflow: hidden; }
    .nav-block .subnav-links .subnav-placeholder:after {
      content: '';
      width: 100%;
      display: inline-block; }
    .nav-block .subnav-links .subnav-placeholder.product-title {
      min-width: 275px; }
  .nav-block .subnav-links .user-name {
    font-weight: 400;
    display: inline-block; }
  .nav-block .subnav-links .sign-out-wrapper {
    display: inline-block;
    padding-left: 80px; }
    .nav-block .subnav-links .sign-out-wrapper .sign-out-link {
      color: #008CC9;
      display: inline-block;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      .nav-block .subnav-links .sign-out-wrapper .sign-out-link:hover, .nav-block .subnav-links .sign-out-wrapper .sign-out-link:focus {
        color: #0077B5; }
      .nav-block .subnav-links .sign-out-wrapper .sign-out-link:active {
        color: #005E93; }
  .nav-block .subnav-links .subnav-link-item {
    padding-right: 64px; }
    .nav-block .subnav-links .subnav-link-item:hover .case-number-label, .nav-block .subnav-links .subnav-link-item:focus .case-number-label {
      color: #008CC9;
      background: #FFFFFF; }
  .nav-block .subnav-links .case-number-label {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .nav-block .subnav-links .case-number-label:empty {
      display: none; }
  .nav-block .profile-image {
    height: 24px;
    width: 24px;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 50%;
    box-sizing: content-box;
    border: 1px solid transparent;
    margin: -1px; }

@media (min-width: 768px) {
  .has-search-banner .top-bar {
    background: transparent; }
  .top-bar .top-bar-container {
    padding: 0 24px; }
  .top-bar .search-block {
    margin-top: 12px; }
  .top-bar .mobile-menu-button {
    display: none; }
  .li-logo {
    width: 43px;
    height: 34px; }
    .product-lynda .li-logo {
      width: auto;
      height: 20px;
      margin: 7px 8px 7px 0; }
  .hc-title {
    display: inline-block; } }

@media (min-width: 1024px) {
  .top-bar .top-bar-container {
    padding: 0 36px; } }

.primary-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 16px 0 16px;
  margin: 0;
  background: #303336; }
  .primary-footer:after {
    content: "";
    display: table;
    clear: both; }
  .primary-footer .footer-logo-item {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 16.0px;
    margin-top: 16px; }
    .primary-footer .footer-logo-item .footer-logo {
      height: 16px;
      width: auto;
      margin-right: 8px;
      margin-bottom: -3px; }
  .primary-footer .language-subnav {
    max-height: 308px;
    overflow-y: auto; }
  .primary-footer .linkedin-copy {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 16.0px; }
  .primary-footer .footer-pod-header {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 8.0px; }
    .primary-footer .footer-pod-header .footer-header-link-item {
      color: #FFFFFF; }
      .primary-footer .footer-pod-header .footer-header-link-item:not(.disabled):hover, .primary-footer .footer-pod-header .footer-header-link-item:not(.disabled):focus {
        color: #00A0DC;
        text-decoration: none; }
      .primary-footer .footer-pod-header .footer-header-link-item:not(.disabled):active {
        color: #0077B5; }
  .primary-footer .footer-pod {
    padding-bottom: 8px;
    text-align: center; }
  .primary-footer .footer-nav-link {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 16.0px;
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px; }
    .primary-footer .footer-nav-link .chat-link {
      color: rgba(255, 255, 255, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334; }
    .primary-footer .footer-nav-link .chat-button {
      background: none;
      border: none;
      padding: 0;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      cursor: pointer; }
      .primary-footer .footer-nav-link .chat-button:hover, .primary-footer .footer-nav-link .chat-button:focus {
        color: #00A0DC;
        text-decoration: none; }
    .primary-footer .footer-nav-link .footer-nav-link-item {
      color: rgba(255, 255, 255, 0.85); }
      .primary-footer .footer-nav-link .footer-nav-link-item:not(.disabled):hover, .primary-footer .footer-nav-link .footer-nav-link-item:not(.disabled):focus {
        color: #00A0DC;
        text-decoration: none; }
      .primary-footer .footer-nav-link .footer-nav-link-item:not(.disabled):active {
        color: #0077B5; }
      .primary-footer .footer-nav-link .footer-nav-link-item .chevron-icon {
        vertical-align: bottom; }
      .primary-footer .footer-nav-link .footer-nav-link-item .contact-icon {
        margin: 0 8px 0 -5px;
        float: left;
        color: rgba(255, 255, 255, 0.55); }
  .primary-footer .contact-telephone .phone-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334; }
  .primary-footer .mobile-language-switcher:focus {
    font-size: 16px; }

@media (min-width: 768px) {
  .primary-footer {
    height: 224px; }
    .primary-footer .mobile-copyright {
      display: none; }
    .primary-footer .footer-nav-link {
      color: #FFFFFF;
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 12.0px;
      margin-left: 0;
      margin-right: 0; }
      .primary-footer .footer-nav-link .footer-nav-link-item .chevron-icon {
        vertical-align: middle; }
    .primary-footer .footer-pod {
      text-align: left; } }

@media (min-width: 1024px) {
  .primary-footer {
    padding-bottom: 48px; } }

.sidebar.gray-bar {
  background: #F0F3F6;
  margin: 0 -16px 0;
  padding: 16px; }
  .sidebar.gray-bar:empty {
    display: none; }

.center-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box; }

.gray-side {
  display: none; }

.top-bar-center-wrap {
  height: 100%; }

.content-container {
  background: #FFFFFF;
  padding: 0 0 40px; }
  .content-container.hc-answer {
    padding-bottom: 24px; }

.flex-container:after {
  content: "";
  display: table;
  clear: both; }

.flex-container.presentation-offset {
  margin-top: -80px; }

.sidebar {
  clear: both; }

@media (min-width: 768px) {
  .sidebar.gray-bar {
    padding: 16px 24px;
    margin-top: 24px; }
  .center-wrap {
    padding: 0 20px;
    margin: 0; }
  .content-container {
    padding: 16px 0 40px; } }

@media (min-width: 1024px) {
  .sidebar {
    clear: none; }
  .center-wrap {
    width: 90%;
    padding: 0;
    margin: 0 auto; }
  .gray-side {
    display: block; }
    .gray-side:before {
      position: fixed;
      z-index: -2;
      height: 100%;
      background: #F0F3F6;
      width: 99999px;
      bottom: 0;
      content: ""; }
  .sidebar.gray-bar {
    margin: 0;
    padding: 0; } }

.flex-card {
  padding-bottom: 24px; }
  .flex-card.click-card {
    display: block; }
    .flex-card.click-card:hover, .flex-card.click-card:focus {
      text-decoration: none;
      cursor: pointer; }
      .flex-card.click-card:hover .card-header .card-title, .flex-card.click-card:focus .card-header .card-title {
        color: #0077B5; }
  .flex-card .card-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px; }
  .flex-card .card-footer {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 16.0px; }
  .flex-card .content-nav-list .list-entry {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px;
    display: inline-block; }
    .flex-card .content-nav-list .list-entry .link-icon {
      margin-right: 16px;
      float: left; }
      .flex-card .content-nav-list .list-entry .link-icon.cases-icon:before {
        font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
        font-weight: normal;
        font-style: normal;
        text-decoration: inherit;
        speak: none;
        font-size: 16px;
        color: inherit;
        content: "\e006"; }
      .flex-card .content-nav-list .list-entry .link-icon.phone-icon:before {
        font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
        font-weight: normal;
        font-style: normal;
        text-decoration: inherit;
        speak: none;
        font-size: 16px;
        color: inherit;
        content: "\e073"; }
      .flex-card .content-nav-list .list-entry .link-icon.chat-icon:before {
        font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
        font-weight: normal;
        font-style: normal;
        text-decoration: inherit;
        speak: none;
        font-size: 16px;
        color: inherit;
        content: "\e00a"; }
    .flex-card .content-nav-list .list-entry.active {
      color: #005E93;
      position: relative; }
    .flex-card .content-nav-list .list-entry:hover, .flex-card .content-nav-list .list-entry:focus {
      color: #0077B5; }
  .flex-card .card-content {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .flex-card.in-vertical {
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
  .flex-card.in-medium-grid {
    padding-top: 8px;
    padding-bottom: 16px; }

.two-line-ellipsis {
  overflow: hidden;
  top: 0;
  bottom: 0;
  height: 45px;
  line-height: 25px;
  margin: 0px; }
  .two-line-ellipsis:before {
    content: "";
    float: left;
    width: 5px;
    height: 100%; }
  .two-line-ellipsis > *:first-child {
    float: right;
    width: 100%;
    margin-left: -5px; }
  .two-line-ellipsis:after {
    content: "\02026";
    color: rgba(0, 0, 0, 0.55);
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    float: right;
    position: relative;
    top: -25px;
    left: 100%;
    width: 3em;
    margin-left: -3em;
    padding-right: 5px;
    text-align: right;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white 50%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%); }

.sidebar .flex-card {
  padding: 0 0 40px; }
  .sidebar .flex-card:last-of-type {
    box-shadow: none; }
  .sidebar .flex-card:first-of-type .card-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 16.0px; }
  .sidebar .flex-card .card-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 8.0px; }

@media (min-width: 768px) {
  .sidebar .flex-card:first-of-type .card-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 32.0px; }
  .sidebar .flex-card .card-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 24.0px; }
  .flex-card .card-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 16.0px; }
  .flex-card .card-footer {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .flex-card .card-content {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .flex-card .content-list .list-entry a {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 20.0px;
    display: block; }
  .flex-card .content-list .list-entry.active:after {
    content: " ";
    position: absolute;
    left: -15px;
    top: 24%;
    height: 62%;
    width: 2px;
    background: #008CC9; } }

@media (min-width: 1024px) {
  .flex-card .content-nav-list .list-entry {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 20.0px;
    display: inline-block; } }

.hero-image {
  margin: 0;
  width: 100%;
  background: url(/sc/h/4hgh1dfazvda7bpo2246l88p6);
  background-size: cover;
  background-position: left bottom 55%;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -56px; }
  .hero-image:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.90;
    background: #008CC9; }
  .product-lynda .hero-image:before {
    background: #313335; }
  .hero-image .container-fluid,
  .hero-image .row,
  .hero-image .top-bar-center-wrap {
    overflow: hidden; }
  .internal-instance .hero-image:before {
    background: #00AEB3; }

@media (min-width: 768px) {
  .hero-image {
    height: 248px;
    padding-top: 56px; }
    .hero-image .container-fluid,
    .hero-image .row,
    .hero-image .top-bar-center-wrap {
      height: 100%; }
  .home-greeting {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 52.0px;
    text-align: left; } }

@media (min-width: 1024px) {
  .home-greeting {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 40.0px; } }

.page-header {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.05882353;
  display: block;
  margin-bottom: -12px;
  padding: 2px 0 6px;
  margin-top: 32.0px; }

.section-header {
  margin: 24px 0; }
  .section-header .header-link {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px;
    display: block;
    float: right; }

.pagination {
  overflow: hidden;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .pagination .page-link {
    float: left;
    margin: 0 12px 16px 0;
    text-align: center;
    border-radius: 3px; }
    .pagination .page-link:last-of-type {
      margin-right: 0; }
    .pagination .page-link.active {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      line-height: 1.88235294;
      padding: 0 12px; }
    .pagination .page-link.next, .pagination .page-link.prev {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .pagination .page-link.next a, .pagination .page-link.prev a {
        padding: 0 13px; }
    .pagination .page-link.more {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      line-height: 1.88235294; }
    .pagination .page-link a {
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      padding: 0 12px;
      line-height: 1.88235294;
      display: block;
      box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
      border-radius: 3px;
      background-color: #FFFFFF; }
      .pagination .page-link a:visited {
        color: rgba(0, 0, 0, 0.7); }
      .pagination .page-link a:hover, .pagination .page-link a:focus {
        text-decoration: none;
        color: inherit;
        box-shadow: #008CC9 -1px 0 0 inset, #008CC9 1px 0 0 inset, #008CC9 0 -1px 0 inset, #008CC9 0 1px 0 inset; }

@media (min-width: 768px) {
  .pagination {
    display: block; }
    .pagination .page-link.active {
      color: #FFFFFF;
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      background-color: #0077B5;
      box-shadow: #0077B5 -1px 0 0 inset, #0077B5 1px 0 0 inset, #0077B5 0 -1px 0 inset, #0077B5 0 1px 0 inset;
      line-height: 1.88235294;
      padding: 0 12px; }
    .pagination .page-link.next, .pagination .page-link.previous {
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      width: auto; } }

.search-assist {
  position: relative;
  width: 100%; }
  .hero-image .search-assist {
    margin: 24px 0 0;
    max-width: 624px; }
    .hero-image .search-assist .search-assist-container {
      width: 100%;
      display: inline-block; }
  .top-bar .search-assist {
    padding: 12px 36px 12px 48px; }
    .top-bar .search-assist .mobile-search-icon {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 32px;
      padding: 4px;
      color: rgba(0, 0, 0, 0.55); }
    .top-bar .search-assist .search-assist-container {
      margin: 0 auto; }
      .top-bar .search-assist .search-assist-container .search-assist-input {
        padding-left: 34px; }
  .product-lynda .top-bar .search-assist {
    padding-left: 104px; }
  .search-results-content .search-assist {
    display: none; }

.search-assist-container {
  position: relative;
  width: 100%;
  margin: 0;
  background: #FFFFFF;
  background-clip: padding-box;
  border-radius: 2px; }
  .search-assist-container .search-assist-input {
    width: 100%;
    background: none;
    border: none;
    -webkit-appearance: textfield;
    appearance: textfield; }
    .search-assist-container .search-assist-input::-webkit-search-decoration {
      -webkit-appearance: none; }
  .search-assist-container .submit-button {
    background: #F0F3F6;
    border: none;
    border-radius: 0 2px 2px 0;
    margin: 0;
    padding: 6px 24px;
    position: absolute;
    cursor: pointer; }
    .search-assist-container .submit-button:hover:not(:disabled), .search-assist-container .submit-button:focus:not(:disabled) {
      outline: none;
      background: #E6E9EC; }
    .search-assist-container .submit-button:active:not(:disabled) {
      background: #D0D3D6; }
    .search-assist-container .submit-button:disabled {
      cursor: default; }
    .search-assist-container .submit-button .svg-icon-top-bar {
      color: rgba(0, 0, 0, 0.55); }
    .search-assist-container .submit-button .svg-icon {
      color: rgba(0, 0, 0, 0.55); }
    .search-assist-container .submit-button.searching {
      width: 21px;
      height: 21px; }
      .search-assist-container .submit-button.searching:before {
        content: ''; }

.search-assist-results {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px 0 0 0; }
  .search-assist-results .result-list {
    min-height: 20px;
    background: #FFFFFF;
    list-style: none;
    padding: 0 10px; }
    .search-assist-results .result-list .suggestion {
      border-bottom: 1px solid #D0D3D6; }
      .search-assist-results .result-list .suggestion .suggestion-link {
        display: block;
        padding: 10px 20px;
        text-decoration: none; }
        .search-assist-results .result-list .suggestion .suggestion-link.selected {
          color: #FFFFFF;
          background: #D0D3D6; }
      .search-assist-results .result-list .suggestion:last-child {
        border: none; }

@media (min-width: 768px) {
  .top-bar .search-assist {
    overflow: hidden;
    width: auto;
    padding: 12px 0 0 32px;
    max-width: 512px; }
    .top-bar .search-assist .submit-button {
      position: absolute;
      right: 0;
      left: auto;
      top: 0;
      bottom: 0;
      padding: 4px 12px; }
    .top-bar .search-assist .search-assist-container .search-assist-input {
      padding-left: 10px;
      padding-right: 50px; }
  .search-results-content .search-assist {
    display: block;
    width: auto;
    padding: 24px 0 0 0;
    max-width: 624px; }
    .search-results-content .search-assist .submit-button {
      position: absolute;
      right: 0;
      left: auto;
      top: 0;
      bottom: 0;
      padding: 8px 24px; }
    .search-results-content .search-assist .search-assist-container {
      box-shadow: #D0D3D6 1px 0 0, #D0D3D6 -1px 0 0, #D0D3D6 0 1px 0, #D0D3D6 0 -1px 0; }
      .search-results-content .search-assist .search-assist-container .search-assist-input {
        padding-left: 18px;
        padding-right: 90px;
        height: 40px;
        line-height: 40px; }
  .hero-image .search-assist .search-assist-input {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    height: 40px;
    padding: 8px 84px 8px 12px; }
    .hero-image .search-assist .search-assist-input::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.55); }
    .hero-image .search-assist .search-assist-input:-moz-placeholder {
      color: rgba(0, 0, 0, 0.55); }
    .hero-image .search-assist .search-assist-input::-moz-placeholder {
      color: rgba(0, 0, 0, 0.55); }
    .hero-image .search-assist .search-assist-input:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.55); }
  .hero-image .search-assist .submit-button {
    height: 40px;
    top: 0;
    right: 0; }
    .hero-image .search-assist .submit-button .svg-icon-top-bar {
      display: none; }
  .popular-search-topics {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }
    .popular-search-topics .popular-search-link {
      color: #FFFFFF;
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334; }
      .popular-search-topics .popular-search-link:hover, .popular-search-topics .popular-search-link:focus {
        text-decoration: underline; } }

.system-message {
  background: #FFFFFF;
  color: #FFFFFF;
  overflow: hidden; }
  .system-message.success-system-message {
    background: #4E8F13; }
  .system-message.attention-system-message {
    background: #DD2E1F; }
  .system-message.warning-system-message {
    background: #EC640C; }
  .system-message.notice-system-message {
    background: #737679; }
  .system-message .system-message-copy {
    position: relative;
    overflow: hidden;
    padding: 0 8px 0 4px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .system-message .system-message-copy a {
      color: #FFFFFF;
      text-decoration: underline; }
      .system-message .system-message-copy a:hover, .system-message .system-message-copy a:focus {
        text-decoration: underline; }
      .system-message .system-message-copy a:active {
        text-decoration: none; }
  .system-message .system-message-icon-wrapper {
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    padding-top: 10px; }
  .system-message .system-message-text {
    padding: 12px 32px; }
  .system-message .system-message-dismiss-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    padding-top: 12px; }
  .system-message .system-message-icon {
    color: #FFFFFF; }

.notification {
  background: #FFFFFF;
  color: #FFFFFF;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height;
          transition-property: height;
  -webkit-transition-duration: 0.667s;
          transition-duration: 0.667s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
  .notification.success-notification {
    background: #4E8F13; }
  .notification.attention-notification {
    background: #DD2E1F; }
  .notification.warning-notification {
    background: #EC640C; }
  .notification.notice-notification {
    background: #737679; }
  .notification .notification-copy {
    position: relative;
    overflow: hidden;
    padding: 0 8px 0 4px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition-property: -webkit-transform;
            transition-property: transform;
    -webkit-transition-duration: 0.667s;
            transition-duration: 0.667s;
    -webkit-transition-delay: 0.083s;
            transition-delay: 0.083s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .notification .notification-copy a {
      color: white;
      font-weight: bold;
      text-decoration: underline; }
      .notification .notification-copy a:hover, .notification .notification-copy a:focus {
        color: white; }
  .notification .notification-icon-wrapper {
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    padding-top: 12px; }
  .notification .notification-text {
    padding: 12px 32px; }
  .notification .notification-dismiss-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    padding-top: 12px; }
  .notification .notification-icon {
    color: #FFFFFF; }
  .notification .notification-dismiss {
    color: #FFFFFF;
    background: none;
    border: 0 none;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    display: inline-block; }
    .notification .notification-dismiss:hover, .notification .notification-dismiss:focus {
      opacity: 0.85;
      outline: 0 none; }
    .notification .notification-dismiss:active {
      opacity: 1; }
    .notification .notification-dismiss[disabled], .notification .notification-dismiss.disabled {
      opacity: 0.4; }
    .notification .notification-dismiss .svg-icon {
      -webkit-transition-property: -webkit-transform;
              transition-property: transform;
      -webkit-transition-duration: 0.167s;
              transition-duration: 0.167s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .notification .notification-dismiss:active .svg-icon {
      -webkit-transition-duration: 0.050s;
              transition-duration: 0.050s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      -webkit-transform: scale(0.5);
              transform: scale(0.5); }
  .notification.notification-open {
    height: 48px; }
    .notification.notification-open .notification-copy {
      -webkit-transform: translateY(0);
              transform: translateY(0); }
  .notification.notification-closed {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
    height: 0px; }
    .notification.notification-closed .notification-icon-wrapper,
    .notification.notification-closed .notification-text,
    .notification.notification-closed .notification-dismiss-wrapper {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%); }

.accordion {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 0, rgba(0, 0, 0, 0.15) 0 0 0, rgba(0, 0, 0, 0.15) 0 1px 0, rgba(0, 0, 0, 0.15) 0 0 0;
  margin-top: 32px; }
  .accordion .accordion-item {
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 0, rgba(0, 0, 0, 0.15) 0 0 0, rgba(0, 0, 0, 0.15) 0 0 0, rgba(0, 0, 0, 0.15) 0 -1px 0;
    overflow: hidden; }
    .accordion .accordion-item .accordion-header-wrapper {
      padding: 0;
      margin: 0; }
    .accordion .accordion-item .accordion-header {
      background: transparent;
      border: none;
      box-shadow: none;
      display: block;
      width: 100%;
      text-align: left;
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      padding: 16px 24px;
      margin: 0;
      cursor: pointer; }
      .accordion .accordion-item .accordion-header:hover, .accordion .accordion-item .accordion-header:focus {
        background: #F0F3F6;
        outline: none; }
      .accordion .accordion-item .accordion-header .svg-icon {
        color: rgba(0, 0, 0, 0.55);
        float: right;
        margin-left: 8px;
        -webkit-transition-property: -webkit-transform;
                transition-property: transform;
        -webkit-transition-duration: 0.667s;
                transition-duration: 0.667s;
        -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
    .accordion .accordion-item .accordion-content-wrapper {
      overflow: hidden;
      display: none;
      height: 0; }
      .accordion .accordion-item .accordion-content-wrapper.transition-waiting, .accordion .accordion-item .accordion-content-wrapper.transition-running {
        -webkit-transition-property: height;
                transition-property: height;
        -webkit-transition-duration: 0.667s;
                transition-duration: 0.667s;
        -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
    .accordion .accordion-item .accordion-content {
      padding: 0 24px 32px;
      overflow: hidden; }
    .accordion .accordion-item.anim-accordion-open .accordion-header .svg-icon {
      -webkit-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    .accordion .accordion-item.show-content {
      background: #F0F3F6; }
      .accordion .accordion-item.show-content .accordion-content-wrapper {
        display: block; }

@media (min-width: 768px) {
  .accordion {
    margin-top: 48px; } }

.dropdown-nav {
  position: relative; }
  .dropdown-nav .subnav-trigger .chevron-icon {
    margin: 0 0 0 6px;
    color: rgba(255, 255, 255, 0.55);
    height: 16px; }
  .dropdown-nav.active .subnav-links {
    display: block; }
  .dropdown-nav.language-dropdown {
    margin-top: 24px; }
    .dropdown-nav.language-dropdown .subnav-trigger {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.7);
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      text-align: left;
      display: block; }
      .dropdown-nav.language-dropdown .subnav-trigger li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .dropdown-nav.language-dropdown .subnav-trigger:visited {
        color: rgba(255, 255, 255, 0.7); }
      .dropdown-nav.language-dropdown .subnav-trigger:hover:not(:disabled), .dropdown-nav.language-dropdown .subnav-trigger:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(255, 255, 255, 0.85);
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7); }
      .dropdown-nav.language-dropdown .subnav-trigger::-moz-focus-inner {
        border: 0; }
      .dropdown-nav.language-dropdown .subnav-trigger:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #FFFFFF;
        color: #FFFFFF; }
      .dropdown-nav.language-dropdown .subnav-trigger:disabled {
        opacity: 0.4;
        cursor: default; }
      .dropdown-nav.language-dropdown .subnav-trigger li-icon.svg-icon {
        float: right;
        top: 16px;
        margin-right: -8px; }

.subnav-links {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  z-index: 200;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
  left: 0;
  min-width: 100%;
  display: none;
  white-space: nowrap; }
  .subnav-links .subnav-link .subnav-placeholder {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    padding: 10px 16px; }
  .subnav-links .subnav-link .subnav-link-item {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    padding: 8px 40px 8px 16px; }
    .subnav-links .subnav-link .subnav-link-item:hover, .subnav-links .subnav-link .subnav-link-item:focus {
      color: #FFFFFF;
      text-decoration: none;
      background: #00A0DC; }
    .subnav-links .subnav-link .subnav-link-item .svg-icon {
      float: right;
      margin-right: -28px; }
  .subnav-links .subnav-link:focus .subnav-link-item {
    color: #FFFFFF;
    text-decoration: none;
    background: #00A0DC; }
  .subnav-links.flyup {
    top: auto;
    bottom: 0; }
  .subnav-links.inverse {
    position: absolute;
    border-radius: 2px;
    overflow: hidden;
    z-index: 200;
    background: #434649;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.45); }
    .subnav-links.inverse .subnav-link .subnav-placeholder {
      color: rgba(255, 255, 255, 0.55);
      font-weight: 700;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      padding: 8px 16px; }
    .subnav-links.inverse .subnav-link .subnav-link-item {
      color: rgba(255, 255, 255, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      padding: 8px 40px 8px 16px; }
      .subnav-links.inverse .subnav-link .subnav-link-item:hover, .subnav-links.inverse .subnav-link .subnav-link-item:focus {
        color: #FFFFFF;
        text-decoration: none;
        background: transparent; }
      .subnav-links.inverse .subnav-link .subnav-link-item .svg-icon {
        float: right;
        margin-right: -32px; }
    .subnav-links.inverse .subnav-link:focus .subnav-link-item {
      color: #FFFFFF;
      text-decoration: none;
      background: transparent; }
  .subnav-links.aligned-right {
    left: auto;
    right: 0; }
    .subnav-links.aligned-right.has-caret {
      right: -22px; }
  .subnav-links.has-caret {
    overflow: visible; }
    .subnav-links.has-caret:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      top: -6px;
      right: 36px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #FFFFFF; }
  .subnav-links.has-caret-outline {
    overflow: visible; }
    .subnav-links.has-caret-outline:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      top: -6px;
      right: 36px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #FFFFFF;
      z-index: 2; }
    .subnav-links.has-caret-outline:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      top: -8px;
      right: 34px;
      border: 8px solid transparent;
      border-top: none;
      border-bottom-color: rgba(0, 0, 0, 0.15); }
  .active .subnav-links {
    display: block; }
  .subnav-links .subnav-link-item,
  .subnav-links .subnav-placeholder {
    display: block;
    text-align: left;
    white-space: nowrap;
    position: relative; }

.notice-label {
  height: 20px;
  width: 20px;
  background: #008CC9;
  display: inline-block;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  line-height: 20px;
  text-align: center;
  border-radius: 2px; }

.flex-card.browse-icon {
  background-repeat: no-repeat;
  background-size: 56px;
  background-position: top 24px center; }
  .all-topics-row .flex-card.browse-icon {
    background-position: top 12px left 32px;
    background-size: 40px; }
  .flex-card.browse-icon.browse-icon-admin {
    background-image: url(/sc/h/cqvvl6pjkr3jfhxcreeyugth8); }
  .flex-card.browse-icon.browse-icon-cancel {
    background-image: url(/sc/h/1vrrqxb401sp51rsiscker5vl); }
  .flex-card.browse-icon.browse-icon-companybrand {
    background-image: url(/sc/h/1mmokf3b1rftu1pwcvlz5tdq8); }
  .flex-card.browse-icon.browse-icon-dashboard {
    background-image: url(/sc/h/82ggjqpqd0rngdatylj8ka6dl); }
  .flex-card.browse-icon.browse-icon-getting-started {
    background-image: url(/sc/h/3o95y2pfjr4sjz9y72qtink7j); }
  .flex-card.browse-icon.browse-icon-inmail {
    background-image: url(/sc/h/a23ak84cspuyo57sijtidru6x); }
  .flex-card.browse-icon.browse-icon-jobs {
    background-image: url(/sc/h/9z0zza3ahsiaduhbhofzcjzzp); }
  .flex-card.browse-icon.browse-icon-money {
    background-image: url(/sc/h/278s2o2ve2c2ml1w3cfr6ktb6); }
  .flex-card.browse-icon.browse-icon-online {
    background-image: url(/sc/h/ex4xx3tvta47isvdkjvd79s2h); }
  .flex-card.browse-icon.browse-icon-reports {
    background-image: url(/sc/h/8xf6woyq8kk6378owfpmsochf); }
  .flex-card.browse-icon.browse-icon-search {
    background-image: url(/sc/h/6jxqghev257u9hx88e5w1k9aa); }
  .flex-card.browse-icon.browse-icon-tools {
    background-image: url(/sc/h/9bn12av7srcs2kigedk5o5x8y); }
  .flex-card.browse-icon.browse-icon-understanding {
    background-image: url(/sc/h/5mm3iwz7i6x0ivkgiq3d64w6q); }
  .flex-card.browse-icon.browse-icon-upgrade {
    background-image: url(/sc/h/wufog4cdhz5x5hn7x6o3z2vp); }
  .flex-card.browse-icon.browse-icon-usage-reporting {
    background-image: url(/sc/h/edsm38cse1iijseumjl051vv8); }

@media (min-width: 768px) {
  .all-topics-row .flex-card.browse-icon {
    background-position: top 24px center;
    background-size: 56px; } }

.tabs {
  margin-top: 24px; }
  .tabs .tablist {
    box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0 0 inset;
    padding-bottom: 16px;
    overflow: hidden; }
  .tabs .tab {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    float: left;
    margin-right: 64px;
    cursor: pointer; }
    .tabs .tab:hover, .tabs .tab:focus {
      color: rgba(0, 0, 0, 0.7); }
    .tabs .tab:active {
      color: rgba(0, 0, 0, 0.85); }
    .tabs .tab.active {
      color: rgba(0, 0, 0, 0.85);
      position: relative; }
      .tabs .tab.active:after {
        content: "";
        display: block;
        position: absolute;
        bottom: -8px;
        left: 0;
        height: 1px;
        width: 100%;
        background: #00A0DC; }
  .tabs .tabpanel {
    overflow: hidden;
    display: none; }
    .tabs .tabpanel.active {
      display: block; }

@-webkit-keyframes loaderfade {
  from {
    opacity: 1; }
  to {
    opacity: 0.05; } }

@keyframes loaderfade {
  from {
    opacity: 1; }
  to {
    opacity: 0.05; } }

#loader g path {
  -webkit-animation: loaderfade 1.1s infinite;
  animation: loaderfade 1.1s infinite; }

#loader g path:nth-of-type(12n+1) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s; }

#loader g path:nth-of-type(12n+2) {
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s; }

#loader g path:nth-of-type(12n+3) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

#loader g path:nth-of-type(12n+4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }

#loader g path:nth-of-type(12n+5) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s; }

#loader g path:nth-of-type(12n+6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

#loader g path:nth-of-type(12n+7) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

#loader g path:nth-of-type(12n+8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

#loader g path:nth-of-type(12n+9) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

#loader g path:nth-of-type(12n+10) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

#loader g path:nth-of-type(12n+11) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.tag-list {
  margin-top: 8px; }
  .tag-list .tag-list-item {
    margin: 8px 8px 0 0;
    display: inline-block; }
    .tag-list .tag-list-item .forum-question-tag {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      box-shadow: #F0F3F6 -1px 0 0 inset, #F0F3F6 1px 0 0 inset, #F0F3F6 0 -1px 0 inset, #F0F3F6 0 1px 0 inset;
      border-radius: 24px;
      background-color: #F0F3F6;
      height: 24px;
      line-height: 24px;
      padding: 0 12px;
      display: block; }
      .tag-list .tag-list-item .forum-question-tag.sidebar-tag {
        box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset; }
      .tag-list .tag-list-item .forum-question-tag.inverse-tag {
        box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
        background: transparent; }
      .tag-list .tag-list-item .forum-question-tag:hover, .tag-list .tag-list-item .forum-question-tag:focus {
        box-shadow: #A0A3A6 -1px 0 0 inset, #A0A3A6 1px 0 0 inset, #A0A3A6 0 -1px 0 inset, #A0A3A6 0 1px 0 inset; }
      .tag-list .tag-list-item .forum-question-tag:active {
        box-shadow: #737679 -1px 0 0 inset, #737679 1px 0 0 inset, #737679 0 -1px 0 inset, #737679 0 1px 0 inset; }

.davinci-icon {
  display: none;
  margin: 0px 4px !important; }
  .davinci-icon.show {
    display: inline; }
  .davinci-icon .ok-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e000"; }
  .davinci-icon .remove-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e001"; }
  .davinci-icon .exclamation-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e002"; }
  .davinci-icon .warning-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e003"; }
  .davinci-icon .search:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e004"; }
  .davinci-icon .filter:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e005"; }
  .davinci-icon .envelope:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 15px;
    color: inherit;
    content: "\e006"; }
  .davinci-icon .flag:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 16px;
    color: inherit;
    content: "\e007"; }
  .davinci-icon .follow:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 15px;
    color: inherit;
    content: "\e008"; }
  .davinci-icon .thumbs-up:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e009"; }
  .davinci-icon .comment:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e00a"; }
  .davinci-icon .fire:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e00b"; }
  .davinci-icon .plus-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e00c"; }
  .davinci-icon .minus-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e00d"; }
  .davinci-icon .ok:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e00e"; }
  .davinci-icon .remove:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e00f"; }
  .davinci-icon .cog:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e010"; }
  .davinci-icon .lock:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e011"; }
  .davinci-icon .paper-clip:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 16px;
    color: inherit;
    content: "\e012"; }
  .davinci-icon .notes:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e013"; }
  .davinci-icon .magview:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e014"; }
  .davinci-icon .list:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e015"; }
  .davinci-icon .info-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e016"; }
  .davinci-icon .share:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 14px;
    color: inherit;
    content: "\e07b"; }
  .davinci-icon .pencil:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 16px;
    color: inherit;
    content: "\e018"; }
  .davinci-icon .sort:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e019"; }
  .davinci-icon .resize-vertical:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e01a"; }
  .davinci-icon .bold:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e01b"; }
  .davinci-icon .italic:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e01c"; }
  .davinci-icon .underline:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e01d"; }
  .davinci-icon .list-ol:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e01e"; }
  .davinci-icon .list-ul:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e01f"; }
  .davinci-icon .resize:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e020"; }
  .davinci-icon .refresh:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e021"; }
  .davinci-icon .undo:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e022"; }
  .davinci-icon .repeat:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e023"; }
  .davinci-icon .chevron-left:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e025"; }
  .davinci-icon .chevron-right:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e024"; }
  .davinci-icon .chevron-down:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e026"; }
  .davinci-icon .chevron-up:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e027"; }
  .davinci-icon .arrow-left:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e029"; }
  .davinci-icon .arrow-right:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e028"; }
  .davinci-icon .arrow-down:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e02a"; }
  .davinci-icon .arrow-up:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e02b"; }
  .davinci-icon .dot:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e02c"; }
  .davinci-icon .globe-west:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e02d"; }
  .davinci-icon .pencil-square:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e02e"; }
  .davinci-icon .share-android:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e017"; }
  .davinci-icon .share-ios:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e02f"; }
  .davinci-icon .question-sign:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0b7"; }
  .davinci-icon .shared:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e031"; }
  .davinci-icon .briefcase:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e032"; }
  .davinci-icon .bell:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e033"; }
  .davinci-icon .link:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 16px;
    color: inherit;
    content: "\e035"; }
  .davinci-icon .file:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e036"; }
  .davinci-icon .image:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e037"; }
  .davinci-icon .spreadsheet:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e038"; }
  .davinci-icon .summary:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e039"; }
  .davinci-icon .experience:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e03a"; }
  .davinci-icon .education:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e03b"; }
  .davinci-icon .skills:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e03c"; }
  .davinci-icon .addl-info:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e03d"; }
  .davinci-icon .projects:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e03e"; }
  .davinci-icon .test-scores:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e03f"; }
  .davinci-icon .honors-awards:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e040"; }
  .davinci-icon .volunteering:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e041"; }
  .davinci-icon .patents:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e042"; }
  .davinci-icon .organizations:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e043"; }
  .davinci-icon .courses:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e044"; }
  .davinci-icon .publications:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e045"; }
  .davinci-icon .languages:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e046"; }
  .davinci-icon .certificate:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e047"; }
  .davinci-icon .camera:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e048"; }
  .davinci-icon .companies:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e049"; }
  .davinci-icon .eye-open:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e04a"; }
  .davinci-icon .assoc-with:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e04c"; }
  .davinci-icon .blank:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e04d"; }
  .davinci-icon .tag:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e04e"; }
  .davinci-icon .facebook:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e04f"; }
  .davinci-icon .twitter:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e050"; }
  .davinci-icon .globe:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e051"; }
  .davinci-icon .zoom-in:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e052"; }
  .davinci-icon .contacts:before,
  .davinci-icon .contact-card:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e053"; }
  .davinci-icon .download:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e054"; }
  .davinci-icon .retail:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e055"; }
  .davinci-icon .manufacturing:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e056"; }
  .davinci-icon .architecture-eng:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e057"; }
  .davinci-icon .media-entertainment:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e058"; }
  .davinci-icon .tech-hardware:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e059"; }
  .davinci-icon .finance:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e05a"; }
  .davinci-icon .nav-list-mobile:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e05b"; }
  .davinci-icon .govt-edu-nonprofit:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e05c"; }
  .davinci-icon .tech-software:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e05d"; }
  .davinci-icon .aero-auto-transport:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e05e"; }
  .davinci-icon .staffing:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e05f"; }
  .davinci-icon .oil-energy:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e060"; }
  .davinci-icon .health-care:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e061"; }
  .davinci-icon .telecomm:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e062"; }
  .davinci-icon .star:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e063"; }
  .davinci-icon .star-empty:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e064"; }
  .davinci-icon .block:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e06e"; }
  .davinci-icon .unblock:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e06f"; }
  .davinci-icon .info-collected:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e070"; }
  .davinci-icon .expand:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e071"; }
  .davinci-icon .contract:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e072"; }
  .davinci-icon .phone:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e073"; }
  .davinci-icon .targeted:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e074"; }
  .davinci-icon .interested:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e075"; }
  .davinci-icon .play-circle:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0b0"; }
  .davinci-icon .play-circle-o:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0af"; }
  .davinci-icon .archive:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e078"; }
  .davinci-icon .trash:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e079"; }
  .davinci-icon .reply:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 12px;
    color: inherit;
    content: "\e07a"; }
  .davinci-icon .forward:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e07b"; }
  .davinci-icon .read:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e07c"; }
  .davinci-icon .align-left:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e07d"; }
  .davinci-icon .align-center:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e07e"; }
  .davinci-icon .align-right:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e07f"; }
  .davinci-icon .quote-left:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0a1"; }
  .davinci-icon .markup:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e081"; }
  .davinci-icon .strikethrough:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e082"; }
  .davinci-icon .clock:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e083"; }
  .davinci-icon .chevron-left-thin:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e085"; }
  .davinci-icon .chevron-right-thin:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e084"; }
  .davinci-icon .chevron-down-thin:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e086"; }
  .davinci-icon .chevron-up-thin:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e087"; }
  .davinci-icon .bar-chart:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e088"; }
  .davinci-icon .shield:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e08a"; }
  .davinci-icon .volume-off:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e08b"; }
  .davinci-icon .volume-up:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e08c"; }
  .davinci-icon .person:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e08d"; }
  .davinci-icon .award:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e08e"; }
  .davinci-icon .home:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e08f"; }
  .davinci-icon .map-marker:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e090"; }
  .davinci-icon .presentation:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e091"; }
  .davinci-icon .rss-square:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e092"; }
  .davinci-icon .pie-chart:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e093"; }
  .davinci-icon .project:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e094"; }
  .davinci-icon .check-list:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e095"; }
  .davinci-icon .connections:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e096"; }
  .davinci-icon .click-to-add:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e097"; }
  .davinci-icon .following:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e099"; }
  .davinci-icon .add-project:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e09c"; }
  .davinci-icon .remove-project:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e09d"; }
  .davinci-icon .print:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e09e"; }
  .davinci-icon .calendar:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e09f"; }
  .davinci-icon .reader-mobile:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0a0"; }
  .davinci-icon .quote-right:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e080"; }
  .davinci-icon .long-arrow-left:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0ad"; }
  .davinci-icon .recommendations:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0ae"; }
  .davinci-icon .profile-update:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0a5"; }
  .davinci-icon .logo-twitter:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e050"; }
  .davinci-icon .logo-facebook:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e04f"; }
  .davinci-icon .logo-google:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e065"; }
  .davinci-icon .logo-yahoo:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e066"; }
  .davinci-icon .logo-icq:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e067"; }
  .davinci-icon .logo-skype:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e068"; }
  .davinci-icon .logo-aim:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e069"; }
  .davinci-icon .logo-tencent:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e06a"; }
  .davinci-icon .logo-qq:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e06b"; }
  .davinci-icon .logo-wechat:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e06c"; }
  .davinci-icon .logo-weibo:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e06d"; }
  .davinci-icon .logo-inject:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e089"; }
  .davinci-icon .logo-groups:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e098"; }
  .davinci-icon .logo-pulse:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e09a"; }
  .davinci-icon .logo-cardmunch:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e09b"; }
  .davinci-icon .logo-linkedin:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e0a4"; }
  .davinci-icon .logo-contacts:before {
    font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    speak: none;
    font-size: 100%;
    color: inherit;
    content: "\e046"; }

/**

  ALERT MODAL

  <div class="alert-modal">
    <header class="modal-header">

      <h1 class="modal-title"></h1>

      <button type="button" class="dialog-close plain-button js-dialog-close">
        {@partial icon="cancel-icon" size="large"}
          {>"templates/partials/svg" /}
        {/partial}
        <span class="a11y-hidden">{@i18n template="templates/shared/static_strings" key="i18n_notification_dismiss" /}</span>
      </button>

    </header>

    <div class="modal-body"></div>

    <div class="modal-footer">
      <button class="modal-footer-button confirm-button"></button>
    </div>
  </div>

  */
.alert-modal {
  position: absolute;
  top: 150%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  outline: none;
  text-align: left;
  -webkit-transition: top 0.5s;
          transition: top 0.5s;
  top: 50%;
  left: 50%;
  width: 600px;
  max-width: 95%;
  height: auto;
  max-height: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-y: auto;
  border-radius: 5px;
  border: 1px solid #D0D3D6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 1s;
          transition: opacity 1s; }
  .alert-modal .dialog-title .dialog-close {
    display: none; }
  .alert-modal.open {
    top: 0; }
  .alert-modal .dialog-content-container {
    height: 100%; }
  .alert-modal .dialog-title {
    padding: 20px; }
    .alert-modal .dialog-title .title {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      padding: 0;
      margin: 0; }
  .alert-modal .dialog-body {
    padding: 20px; }
  .alert-modal.open {
    top: 50%;
    opacity: 1; }
  .alert-modal .modal-header {
    position: absolute;
    height: 48px;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #D0D3D6; }
    .alert-modal .modal-header .modal-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      line-height: 48px;
      padding: 0 0 0 24px; }
    .alert-modal .modal-header .dialog-close {
      position: absolute;
      right: 0;
      top: 0;
      height: 48px;
      width: 48px;
      background: none;
      border: 0 none;
      cursor: pointer;
      padding: 0;
      opacity: 0.55;
      display: inline-block; }
      .alert-modal .modal-header .dialog-close:hover, .alert-modal .modal-header .dialog-close:focus {
        opacity: 0.7;
        outline: 0 none; }
      .alert-modal .modal-header .dialog-close:active {
        opacity: 0.85; }
      .alert-modal .modal-header .dialog-close[disabled], .alert-modal .modal-header .dialog-close.disabled {
        opacity: 0.4; }
      .alert-modal .modal-header .dialog-close .svg-icon {
        -webkit-transition-property: -webkit-transform;
                transition-property: transform;
        -webkit-transition-duration: 0.167s;
                transition-duration: 0.167s;
        -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
                transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
      .alert-modal .modal-header .dialog-close:active .svg-icon {
        -webkit-transition-duration: 0.050s;
                transition-duration: 0.050s;
        -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
                transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
        -webkit-transform: scale(0.5);
                transform: scale(0.5); }
  .alert-modal .modal-body {
    overflow: hidden;
    padding: 64px 24px 32px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059; }
  .alert-modal .modal-footer {
    padding: 12px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    text-align: right; }
  .alert-modal .confirm-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
    line-height: 24px;
    padding: 4px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.55);
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle; }
    .alert-modal .confirm-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .alert-modal .confirm-button:visited {
      color: rgba(0, 0, 0, 0.55); }
    .alert-modal .confirm-button:hover:not(:disabled), .alert-modal .confirm-button:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.7);
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.55); }
    .alert-modal .confirm-button::-moz-focus-inner {
      border: 0; }
    .alert-modal .confirm-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.85);
      color: rgba(0, 0, 0, 0.85); }
    .alert-modal .confirm-button:disabled {
      opacity: 0.4;
      cursor: default; }

/**

  CONFIRMATION MODAL

  <div class="confirmation-modal">
    <div class="modal-body">
      <h1 class="modal-title"></h1>
      <p class="modal-description"></p>
    </div>
    <div class="modal-footer">
      <button class="modal-footer-button cancel-button"></button>
      <button class="modal-footer-button confirm-button"></button>
    </div>
  </div>

  */
.confirmation-modal {
  position: absolute;
  top: 150%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  outline: none;
  text-align: left;
  -webkit-transition: top 0.5s;
          transition: top 0.5s;
  top: 50%;
  left: 50%;
  width: 600px;
  max-width: 95%;
  height: auto;
  max-height: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-y: auto;
  border-radius: 5px;
  border: 1px solid #D0D3D6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 1s;
          transition: opacity 1s; }
  .confirmation-modal .dialog-title .dialog-close {
    display: none; }
  .confirmation-modal.open {
    top: 0; }
  .confirmation-modal .dialog-content-container {
    height: 100%; }
  .confirmation-modal .dialog-title {
    padding: 20px; }
    .confirmation-modal .dialog-title .title {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      padding: 0;
      margin: 0; }
  .confirmation-modal .dialog-body {
    padding: 20px; }
  .confirmation-modal.open {
    top: 50%;
    opacity: 1; }
  .confirmation-modal .modal-body {
    overflow: hidden;
    padding: 24px 24px 40px;
    text-align: center; }
  .confirmation-modal .modal-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 8.0px; }
  .confirmation-modal .modal-description {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px; }
  .confirmation-modal .modal-footer {
    padding: 16px 0;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    text-align: center; }
    .confirmation-modal .modal-footer .modal-footer-button {
      margin: 0 4px; }
  .confirmation-modal .cancel-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
    line-height: 24px;
    padding: 4px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.55);
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle; }
    .confirmation-modal .cancel-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .confirmation-modal .cancel-button:visited {
      color: rgba(0, 0, 0, 0.55); }
    .confirmation-modal .cancel-button:hover:not(:disabled), .confirmation-modal .cancel-button:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.7);
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.55); }
    .confirmation-modal .cancel-button::-moz-focus-inner {
      border: 0; }
    .confirmation-modal .cancel-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.85);
      color: rgba(0, 0, 0, 0.85); }
    .confirmation-modal .cancel-button:disabled {
      opacity: 0.4;
      cursor: default; }
  .confirmation-modal .confirm-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden; }
    .confirmation-modal .confirm-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .confirmation-modal .confirm-button:visited {
      color: #FFFFFF; }
    .confirmation-modal .confirm-button:hover:not(:disabled), .confirmation-modal .confirm-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .confirmation-modal .confirm-button::-moz-focus-inner {
      border: 0; }
    .confirmation-modal .confirm-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .confirmation-modal .confirm-button:disabled {
      opacity: 0.4;
      cursor: default; }

/**

  FORM MODAL

  <div class="form-modal">
    <form class="modal-form">
      <h3 class="modal-title"></h3>
      <p class="modal-description"></p>

      <div class="field"></div>
      <div class="field"></div>

      <div class="modal-footer">
        <button type="button" class="cancel-button"></button>
        <button class="btn-primary loading-button"></button>
      </div>

    </form>
  </div>

  */
.form-modal {
  position: absolute;
  top: 150%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  outline: none;
  text-align: left;
  -webkit-transition: top 0.5s;
          transition: top 0.5s;
  padding: 0 24px; }
  .form-modal .dialog-title .dialog-close {
    display: none; }
  .form-modal.open {
    top: 0; }
  .form-modal .dialog-content-container {
    height: 100%; }
  .form-modal .dialog-title {
    padding: 20px; }
    .form-modal .dialog-title .title {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      padding: 0;
      margin: 0; }
  .form-modal .dialog-body {
    padding: 20px; }
  @media (min-width: 768px) {
    .form-modal {
      top: 50%;
      left: 50%;
      width: 700px;
      max-width: 95%;
      height: auto;
      max-height: 80%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      overflow-y: auto;
      border-radius: 5px;
      border: 1px solid #D0D3D6;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      -webkit-transition: opacity 1s;
              transition: opacity 1s; }
      .form-modal.open {
        top: 50%;
        opacity: 1; } }
  .form-modal .modal-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 16.0px; }
  .form-modal .modal-description {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px; }
  .form-modal .modal-footer {
    text-align: right;
    margin: 16px 0; }
    .form-modal .modal-footer .cancel-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      margin-right: 8px; }
      .form-modal .modal-footer .cancel-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .form-modal .modal-footer .cancel-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .form-modal .modal-footer .cancel-button:hover:not(:disabled), .form-modal .modal-footer .cancel-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.55); }
      .form-modal .modal-footer .cancel-button::-moz-focus-inner {
        border: 0; }
      .form-modal .modal-footer .cancel-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.85);
        color: rgba(0, 0, 0, 0.85); }
      .form-modal .modal-footer .cancel-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .form-modal .modal-form .error-message {
    color: #DD2E1F;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0; }
  .form-modal .modal-form .field {
    margin-bottom: 8px; }
    .form-modal .modal-form .field:first-of-type {
      margin-top: 16px; }
    .form-modal .modal-form .field textarea {
      resize: vertical;
      height: 240px;
      display: block; }
  .form-modal .modal-form .input-container {
    margin-top: 8px; }

/**

  ACTION MODAL

  <div class="action-modal">
    <ul class="action-list">
      <li class="action-list-item">
        <button class="action-button"></button>
      </li>
      <li class="action-list-item">
        <button class="action-button"></button>
      </li>
      <li class="action-list-item">
        <button class="action-button cancel-button">Cancel</button>
      </li>
    </ul>
  </div>

  */
.action-modal {
  position: absolute;
  top: 150%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  outline: none;
  text-align: left;
  -webkit-transition: top 0.5s;
          transition: top 0.5s;
  top: 50%;
  left: 50%;
  width: 280px;
  max-width: 95%;
  height: auto;
  max-height: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-y: auto;
  border-radius: 5px;
  border: 1px solid #D0D3D6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 1s;
          transition: opacity 1s; }
  .action-modal .dialog-title .dialog-close {
    display: none; }
  .action-modal.open {
    top: 0; }
  .action-modal .dialog-content-container {
    height: 100%; }
  .action-modal .dialog-title {
    padding: 20px; }
    .action-modal .dialog-title .title {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      padding: 0;
      margin: 0; }
  .action-modal .dialog-body {
    padding: 20px; }
  .action-modal.open {
    top: 50%;
    opacity: 1; }
  .action-modal .action-list .action-list-item {
    padding: 4px 0;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .action-modal .action-list .action-list-item:last-of-type {
      box-shadow: none; }
  .action-modal .action-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
    padding: 4px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.55);
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    width: 100%; }
    .action-modal .action-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .action-modal .action-button:visited {
      color: rgba(0, 0, 0, 0.55); }
    .action-modal .action-button:hover:not(:disabled), .action-modal .action-button:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.7);
      box-shadow: none; }
    .action-modal .action-button::-moz-focus-inner {
      border: 0; }
    .action-modal .action-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: none;
      color: rgba(0, 0, 0, 0.85); }
    .action-modal .action-button:disabled {
      opacity: 0.4;
      cursor: default; }
    .action-modal .action-button.cancel-button {
      color: #EC4339; }
      .action-modal .action-button.cancel-button:hover, .action-modal .action-button.cancel-button:focus {
        color: #DD2E1F; }
      .action-modal .action-button.cancel-button:active {
        color: #C11F1D; }

/**

  IMAGE MODAL

  <div class="image-modal">
    <header class="modal-header">

      <h1 class="modal-title"></h1>

      <button type="button" class="dialog-close plain-button js-dialog-close">
        {@partial icon="cancel-icon" size="large"}
          {>"templates/partials/svg" /}
        {/partial}
        <span class="a11y-hidden">{@i18n template="templates/shared/static_strings" key="i18n_notification_dismiss" /}</span>
      </button>

    </header>

    <div class="modal-body">

      <img>

    </div>
  </div>

  */
.image-modal {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  padding-top: 48px;
  max-width: 95%;
  max-height: 95%;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  text-align: left;
  -webkit-transition: opacity 1s;
          transition: opacity 1s; }
  .image-modal .modal-header {
    position: absolute;
    height: 48px;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #D0D3D6; }
    .image-modal .modal-header .modal-title {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      line-height: 48px;
      padding: 0 0 0 24px; }
    .image-modal .modal-header .dialog-close {
      position: absolute;
      right: 0;
      top: 0;
      height: 48px;
      width: 48px;
      background: none;
      border: 0 none;
      cursor: pointer;
      padding: 0;
      opacity: 0.55;
      display: inline-block; }
      .image-modal .modal-header .dialog-close:hover, .image-modal .modal-header .dialog-close:focus {
        opacity: 0.7;
        outline: 0 none; }
      .image-modal .modal-header .dialog-close:active {
        opacity: 0.85; }
      .image-modal .modal-header .dialog-close[disabled], .image-modal .modal-header .dialog-close.disabled {
        opacity: 0.4; }
      .image-modal .modal-header .dialog-close .svg-icon {
        -webkit-transition-property: -webkit-transform;
                transition-property: transform;
        -webkit-transition-duration: 0.167s;
                transition-duration: 0.167s;
        -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
                transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
      .image-modal .modal-header .dialog-close:active .svg-icon {
        -webkit-transition-duration: 0.050s;
                transition-duration: 0.050s;
        -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
                transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
        -webkit-transform: scale(0.5);
                transform: scale(0.5); }
  .image-modal .image {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; }
  .image-modal.open {
    opacity: 1; }

.loading-mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation: fadeIn 100ms linear both;
  animation: fadeIn 100ms linear both; }
  .loading-mask .loading-icon {
    height: 100%;
    width: 100%;
    color: #00A0DC; }

.a11y-header {
  background: #0077B5;
  color: #FFFFFF;
  z-index: 10012;
  padding: 4px 0;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: -40px;
  -webkit-transition-property: margin-top;
          transition-property: margin-top; }
  .a11y-header .skip-header {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-weight: normal;
    color: #FFFFFF;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 32px; }
  .a11y-header .skip-link {
    display: inline-block; }
  .a11y-header .skip-to-content-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin: 0 0 0 15px; }
    .a11y-header .skip-to-content-link:hover, .a11y-header .skip-to-content-link:focus {
      border-bottom: 1px solid #FFFFFF; }
    .a11y-header .skip-to-content-link:active {
      border-bottom: 0 none; }
    .a11y-header .skip-to-content-link:after {
      display: block;
      content: "";
      position: absolute;
      top: 10%;
      bottom: 10%;
      right: -15px;
      width: 1px;
      background: #FFFFFF; }
    .a11y-header .skip-to-content-link:last-of-type:after {
      display: none; }
  .a11y-header .a11y-header-dismiss {
    float: right;
    margin-right: 8px;
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    padding: 3px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    width: 32px;
    border-radius: 16px;
    padding: 0 !important;
    text-index: -999px;
    font-size: 0;
    box-shadow: none; }
    .a11y-header .a11y-header-dismiss li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: absolute;
      top: 50%;
      padding: 0;
      left: 50%;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .a11y-header .a11y-header-dismiss:visited {
      color: rgba(255, 255, 255, 0.7); }
    .a11y-header .a11y-header-dismiss:hover:not(:disabled), .a11y-header .a11y-header-dismiss:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(255, 255, 255, 0.85);
      box-shadow: none; }
    .a11y-header .a11y-header-dismiss::-moz-focus-inner {
      border: 0; }
    .a11y-header .a11y-header-dismiss:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: none;
      color: #FFFFFF; }
    .a11y-header .a11y-header-dismiss:disabled {
      opacity: 0.4;
      cursor: default; }
    .a11y-header .a11y-header-dismiss .svg-icon {
      -webkit-transition-property: -webkit-transform;
              transition-property: transform;
      -webkit-transition-duration: 0.167s;
              transition-duration: 0.167s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      /* TODO: Review this after we update the icons after converting to the NPM pipeline */
      height: 16px;
      width: 16px;
      margin: -8px 0 0 -8px; }
    .a11y-header .a11y-header-dismiss:active .svg-icon {
      -webkit-transition-duration: 0.050s;
              transition-duration: 0.050s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
      -webkit-transform: scale(0.5);
              transform: scale(0.5); }
  .a11y-header-visible .a11y-header {
    margin-top: 0; }
  body.transition-in .a11y-header {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s; }
  body.transition-out .a11y-header {
    -webkit-transition-duration: 0.334s;
            transition-duration: 0.334s; }

.search-results-header {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  display: block;
  padding: 5px 0 4px;
  margin-bottom: -9px;
  margin-top: 8.0px; }

.hc-search-results .hc-search-results-item {
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
  overflow: hidden; }
  .hc-search-results .hc-search-results-item:first-of-type {
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .hc-search-results .hc-search-results-item:first-of-type .card-header {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 20.0px; }
  .hc-search-results .hc-search-results-item .card-title-link {
    color: #008CC9;
    margin-right: 12px; }
    .hc-search-results .hc-search-results-item .card-title-link:hover, .hc-search-results .hc-search-results-item .card-title-link:focus {
      color: #0077B5; }
    .hc-search-results .hc-search-results-item .card-title-link:active {
      color: #005E93; }
    .hc-search-results .hc-search-results-item .card-title-link:visited {
      color: #8C68CB; }
  .hc-search-results .hc-search-results-item .video-icon {
    position: relative;
    top: -3px;
    left: -3px;
    height: 20px;
    margin-right: 8px;
    color: rgba(0, 0, 0, 0.55); }
  .hc-search-results .hc-search-results-item .card-content {
    max-width: 625px;
    padding-right: 24px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }

.some-suggestions {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 28.0px; }

.suggestion-list {
  margin-top: 16px; }

.browse-all-button {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: #008CC9;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #FFFFFF;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  box-shadow: none;
  z-index: 0;
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 40px; }
  .browse-all-button li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .browse-all-button:visited {
    color: #FFFFFF; }
  .browse-all-button:hover:not(:disabled), .browse-all-button:focus:not(:disabled) {
    background-color: #0077B5;
    box-shadow: none; }
  .browse-all-button::-moz-focus-inner {
    border: 0; }
  .browse-all-button:active:not(:disabled) {
    background-color: #005E93;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93; }
  .browse-all-button:disabled {
    opacity: 0.4;
    cursor: default; }
  .browse-all-button:hover, .browse-all-button:focus {
    color: #FFFFFF; }

.search-results-tag {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.8181818182;
  font-weight: bold;
  padding: 0 6px;
  border-radius: 2px;
  background: #F0F3F6;
  color: rgba(0, 0, 0, 0.55);
  display: inline-block;
  position: relative;
  top: -1px; }

@media (min-width: 768px) {
  .search-results-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 32.0px; }
  .hc-search-results .hc-search-results-item {
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
    overflow: hidden; }
    .hc-search-results .hc-search-results-item:first-of-type .card-header {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 24.0px; }
    .hc-search-results .hc-search-results-item .card-header {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 8.0px; }
  .hc-search-results .card-content {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }
  .some-suggestions {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 32.0px; } }

.helpfulness {
  display: block;
  margin: 32px -16px 0;
  padding: 16px;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
  overflow: hidden;
  text-align: center; }
  .helpfulness .helpfulness-header {
    width: 100%;
    overflow: hidden;
    padding: 0; }
  .helpfulness .helpfulness-footer {
    width: 100%;
    overflow: hidden;
    padding: 16px 22px 0px 22px;
    margin-top: 16px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    text-align: right; }
  .helpfulness .rate-actions {
    margin: 16px 0 8px; }
  .helpfulness .rate-action {
    margin-left: 8px; }
    .helpfulness .rate-action .name {
      display: block; }
  .helpfulness .feedback {
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    position: relative;
    display: none;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    -webkit-transition-property: all;
            transition-property: all;
    -webkit-transition-duration: 0.400s;
            transition-duration: 0.400s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
    .helpfulness .feedback .feedback-header {
      text-align: left; }
    .helpfulness .feedback p.feedback-note {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px; }
      .helpfulness .feedback p.feedback-note .contact-link {
        color: #008CC9; }
        .helpfulness .feedback p.feedback-note .contact-link:hover, .helpfulness .feedback p.feedback-note .contact-link:focus {
          color: #0077B5; }
        .helpfulness .feedback p.feedback-note .contact-link:active {
          color: #005E93; }
    .helpfulness .feedback .warning-message {
      color: #DD2E1F;
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 20.0px;
      display: none; }
    .helpfulness .feedback .feedback-form .field {
      padding: 0px 22px; }
    .helpfulness .feedback .feedback-form .radio-button-group {
      margin-top: 16px;
      margin-bottom: 8px; }
    .helpfulness .feedback .feedback-form .radio-button-row .radio-button {
      margin-bottom: 8px; }
    .helpfulness .feedback .feedback-form .radio-button-row .radio-button-label {
      color: rgba(0, 0, 0, 0.7); }
    .helpfulness .feedback .feedback-form .input-container {
      margin-top: 8px; }
    .helpfulness .feedback .feedback-form .feedback-text {
      height: 112px;
      resize: none; }
    .helpfulness .feedback .feedback-form .char-limit-feedback {
      width: 100%;
      overflow: hidden;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 300;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px;
      height: 32px;
      color: #F16D64; }
    .helpfulness .feedback .close-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #008CC9;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle; }
      .helpfulness .feedback .close-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .helpfulness .feedback .close-button:visited {
        color: #008CC9; }
      .helpfulness .feedback .close-button:hover:not(:disabled), .helpfulness .feedback .close-button:focus:not(:disabled) {
        background-color: transparent;
        color: #0077B5;
        box-shadow: inset 0 0 0 2px #008CC9; }
      .helpfulness .feedback .close-button::-moz-focus-inner {
        border: 0; }
      .helpfulness .feedback .close-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93;
        color: #005E93; }
      .helpfulness .feedback .close-button:disabled {
        opacity: 0.4;
        cursor: default; }
    .helpfulness .feedback .submit-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: #008CC9;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #FFFFFF;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      z-index: 0;
      overflow: hidden;
      margin-left: 14px; }
      .helpfulness .feedback .submit-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .helpfulness .feedback .submit-button:visited {
        color: #FFFFFF; }
      .helpfulness .feedback .submit-button:hover:not(:disabled), .helpfulness .feedback .submit-button:focus:not(:disabled) {
        background-color: #0077B5;
        box-shadow: none; }
      .helpfulness .feedback .submit-button::-moz-focus-inner {
        border: 0; }
      .helpfulness .feedback .submit-button:active:not(:disabled) {
        background-color: #005E93;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93; }
      .helpfulness .feedback .submit-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .helpfulness.feedback-missing .warning-message {
    display: block; }
  .helpfulness.enter-feedback .feedback {
    display: block; }
    .helpfulness.enter-feedback .feedback.show-feedback {
      padding: 16px 0 0 0;
      margin-top: 16px; }
  .helpfulness .prompt {
    height: 24px;
    margin: 0 0 8px; }
    .helpfulness .prompt .prompt-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 0; }
  .helpfulness.rating-succeeded .rate-action {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
            transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0; }
  .helpfulness.rating-succeeded.unhelpful .rate-action.rate-unhelpful,
  .helpfulness.rating-succeeded.helpful .rate-action.rate-helpful {
    background-color: #34B3E4;
    border-color: rgba(0, 0, 0, 0.08); }
    .helpfulness.rating-succeeded.unhelpful .rate-action.rate-unhelpful:before,
    .helpfulness.rating-succeeded.helpful .rate-action.rate-helpful:before {
      color: #FFFFFF; }

@media (min-width: 768px) {
  .helpfulness {
    text-align: left;
    box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
    border-radius: 4px;
    margin: 32px 0 12px;
    padding: 16px 0px 16px;
    width: 100%; }
    .helpfulness .helpfulness-header {
      padding: 0px 12px 0px 22px; }
    .helpfulness .prompt {
      float: left;
      margin: -2px 0 2px 0; }
      .helpfulness .prompt .prompt-title {
        color: rgba(0, 0, 0, 0.85);
        font-weight: 400;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.41176471;
        padding: 0; }
    .helpfulness .rate-actions {
      float: right;
      margin: 0px 6px; }
    .helpfulness.enter-feedback .feedback {
      display: block; } }

.browse-back-link {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 12.0px;
  display: inline-block; }
  .browse-back-link:hover, .browse-back-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .browse-back-link:active {
    color: rgba(0, 0, 0, 0.85); }
  .browse-back-link .svg-icon {
    height: 16px;
    width: 16px;
    margin: -4px 8px 0 0; }
  .browse-back-link .answer-header .hc-page-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 32.0px; }

.browse-flow-content-container {
  min-height: 140px;
  position: relative;
  z-index: 1; }
  .browse-flow-content-container .helpfulness {
    margin-bottom: -24px; }
  .browse-flow-content-container .hc-answer .answer-header .hc-page-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 12.0px; }

.browse-children-header-wrapper {
  overflow: hidden;
  padding-bottom: 16px;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
  .browse-children-header-wrapper .browse-children-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 24.0px; }

.view-more-forum-questions {
  text-align: right; }
  .view-more-forum-questions .view-more-forum-questions-link {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    display: inline-block; }
    .view-more-forum-questions .view-more-forum-questions-link:hover, .view-more-forum-questions .view-more-forum-questions-link:focus {
      color: rgba(0, 0, 0, 0.7); }
    .view-more-forum-questions .view-more-forum-questions-link:active {
      color: rgba(0, 0, 0, 0.85); }
    .view-more-forum-questions .view-more-forum-questions-link .svg-icon {
      height: 16px;
      width: 16px;
      margin: -4px 8px 0 0; }
    .view-more-forum-questions .view-more-forum-questions-link .svg-icon {
      margin: -1px 0 0 8px; }

@media (min-width: 768px) {
  .browse-flow-content-container {
    min-height: 400px; }
    .browse-flow-content-container .loading-mask {
      height: calc(100% + 8px); }
    .browse-flow-content-container .helpfulness {
      margin-bottom: 0; }
    .browse-flow-content-container .hc-answer .answer-header .hc-page-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 700;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 16.0px; }
  .browse-children-header-wrapper {
    overflow: hidden;
    padding-bottom: 24px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .browse-children-header-wrapper .browse-children-header {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 48.0px; } }

@media (min-width: 1024px) {
  .popular-list {
    padding-bottom: 0; } }

.hc-answer {
  padding-bottom: 0; }
  .hc-answer .answer-header .hc-page-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 16.0px; }
  .hc-answer .answer-header .hc-page-label {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 24.0px; }
    .hc-answer .answer-header .hc-page-label + .hc-page-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 700;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0; }
  .hc-answer .browse-parent-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    padding: 8px 16px;
    margin: 0 -16px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
  .hc-answer .metadata-container {
    display: none; }
  .hc-answer .rnt-answer-body .table-wrapper,
  .hc-answer .browse-flow-answer .table-wrapper {
    width: 100%;
    overflow-y: auto; }
  .hc-answer .rnt-answer-body table,
  .hc-answer .browse-flow-answer table {
    box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    border-radius: 2px;
    margin: 16px auto;
    border-collapse: collapse;
    border-spacing: 0; }
    .hc-answer .rnt-answer-body table caption,
    .hc-answer .rnt-answer-body table th,
    .hc-answer .rnt-answer-body table td,
    .hc-answer .browse-flow-answer table caption,
    .hc-answer .browse-flow-answer table th,
    .hc-answer .browse-flow-answer table td {
      text-align: left;
      font-weight: normal; }
    .hc-answer .rnt-answer-body table th,
    .hc-answer .rnt-answer-body table td,
    .hc-answer .browse-flow-answer table th,
    .hc-answer .browse-flow-answer table td {
      padding: 16px 0 16px 24px;
      box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
      .hc-answer .rnt-answer-body table th:last-child,
      .hc-answer .rnt-answer-body table td:last-child,
      .hc-answer .browse-flow-answer table th:last-child,
      .hc-answer .browse-flow-answer table td:last-child {
        padding-right: 24px; }
    .hc-answer .rnt-answer-body table th,
    .hc-answer .browse-flow-answer table th {
      padding: 12px 0 12px 24px;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 700;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      white-space: nowrap;
      vertical-align: bottom;
      text-transform: uppercase; }
  .hc-answer .rnt-answer-body .answer-url-link,
  .hc-answer .browse-flow-answer .answer-url-link {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin-top: 32px; }
    .hc-answer .rnt-answer-body .answer-url-link li-icon.svg-icon,
    .hc-answer .browse-flow-answer .answer-url-link li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .hc-answer .rnt-answer-body .answer-url-link:visited,
    .hc-answer .browse-flow-answer .answer-url-link:visited {
      color: #FFFFFF; }
    .hc-answer .rnt-answer-body .answer-url-link:hover:not(:disabled), .hc-answer .rnt-answer-body .answer-url-link:focus:not(:disabled),
    .hc-answer .browse-flow-answer .answer-url-link:hover:not(:disabled),
    .hc-answer .browse-flow-answer .answer-url-link:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .hc-answer .rnt-answer-body .answer-url-link::-moz-focus-inner,
    .hc-answer .browse-flow-answer .answer-url-link::-moz-focus-inner {
      border: 0; }
    .hc-answer .rnt-answer-body .answer-url-link:active:not(:disabled),
    .hc-answer .browse-flow-answer .answer-url-link:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .hc-answer .rnt-answer-body .answer-url-link:disabled,
    .hc-answer .browse-flow-answer .answer-url-link:disabled {
      opacity: 0.4;
      cursor: default; }
  .hc-answer .rnt-answer-body .video,
  .hc-answer .browse-flow-answer .video {
    margin-top: 32px; }
  .hc-answer .rnt-answer-body .youtube-slideshare-container,
  .hc-answer .browse-flow-answer .youtube-slideshare-container {
    position: relative;
    height: 0;
    margin-top: 32px;
    overflow: hidden;
    max-width: 100%; }
    .hc-answer .rnt-answer-body .youtube-slideshare-container.aspectratio-16x9,
    .hc-answer .browse-flow-answer .youtube-slideshare-container.aspectratio-16x9 {
      padding-bottom: 56.25%; }
    .hc-answer .rnt-answer-body .youtube-slideshare-container.aspectratio-4x3,
    .hc-answer .browse-flow-answer .youtube-slideshare-container.aspectratio-4x3 {
      padding-bottom: 75%; }
    .hc-answer .rnt-answer-body .youtube-slideshare-container iframe, .hc-answer .rnt-answer-body .youtube-slideshare-container object, .hc-answer .rnt-answer-body .youtube-slideshare-container embed,
    .hc-answer .browse-flow-answer .youtube-slideshare-container iframe,
    .hc-answer .browse-flow-answer .youtube-slideshare-container object,
    .hc-answer .browse-flow-answer .youtube-slideshare-container embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .hc-answer .rnt-answer-body p,
  .hc-answer .browse-flow-answer p {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .hc-answer .rnt-answer-body h1,
  .hc-answer .browse-flow-answer h1 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 24.0px; }
  .hc-answer .rnt-answer-body h2,
  .hc-answer .browse-flow-answer h2 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 24.0px; }
  .hc-answer .rnt-answer-body h3,
  .hc-answer .browse-flow-answer h3 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 16.0px; }
  .hc-answer .rnt-answer-body h4,
  .hc-answer .browse-flow-answer h4 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px; }
  .hc-answer .rnt-answer-body ol,
  .hc-answer .rnt-answer-body ul,
  .hc-answer .browse-flow-answer ol,
  .hc-answer .browse-flow-answer ul {
    list-style-position: inside;
    list-style-type: decimal; }
    .hc-answer .rnt-answer-body ol a,
    .hc-answer .rnt-answer-body ul a,
    .hc-answer .browse-flow-answer ol a,
    .hc-answer .browse-flow-answer ul a {
      list-style-type: lower-alpha !important; }
    .hc-answer .rnt-answer-body ol > li,
    .hc-answer .rnt-answer-body ul > li,
    .hc-answer .browse-flow-answer ol > li,
    .hc-answer .browse-flow-answer ul > li {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px;
      display: list-item; }
      .hc-answer .rnt-answer-body ol > li:first-of-type,
      .hc-answer .rnt-answer-body ul > li:first-of-type,
      .hc-answer .browse-flow-answer ol > li:first-of-type,
      .hc-answer .browse-flow-answer ul > li:first-of-type {
        color: rgba(0, 0, 0, 0.7);
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0;
        margin-top: 12.0px;
        display: list-item; }
    .hc-answer .rnt-answer-body ol ol,
    .hc-answer .rnt-answer-body ol ul,
    .hc-answer .rnt-answer-body ul ol,
    .hc-answer .rnt-answer-body ul ul,
    .hc-answer .browse-flow-answer ol ol,
    .hc-answer .browse-flow-answer ol ul,
    .hc-answer .browse-flow-answer ul ol,
    .hc-answer .browse-flow-answer ul ul {
      margin: -15px 0 16px 24px; }
  .hc-answer .rnt-answer-body ol,
  .hc-answer .browse-flow-answer ol {
    margin-left: 47px; }
    .hc-answer .rnt-answer-body ol.type_a li,
    .hc-answer .browse-flow-answer ol.type_a li {
      list-style-type: lower-alpha; }
    .hc-answer .rnt-answer-body ol.type_i li,
    .hc-answer .browse-flow-answer ol.type_i li {
      list-style-type: lower-roman; }
    .hc-answer .rnt-answer-body ol > li,
    .hc-answer .browse-flow-answer ol > li {
      list-style-type: decimal; }
      .hc-answer .rnt-answer-body ol > li ol > li,
      .hc-answer .browse-flow-answer ol > li ol > li {
        list-style-type: lower-alpha; }
  .hc-answer .rnt-answer-body ul,
  .hc-answer .browse-flow-answer ul {
    margin-left: 47px; }
    .hc-answer .rnt-answer-body ul > li,
    .hc-answer .browse-flow-answer ul > li {
      list-style-type: disc; }
      .hc-answer .rnt-answer-body ul > li ol > li,
      .hc-answer .browse-flow-answer ul > li ol > li {
        list-style-type: decimal; }
    .hc-answer .rnt-answer-body ul.float li,
    .hc-answer .browse-flow-answer ul.float li {
      float: left;
      width: 130px; }
  .hc-answer .rnt-answer-body li > *:first-child:not(pre),
  .hc-answer .browse-flow-answer li > *:first-child:not(pre) {
    margin-top: 0;
    padding-top: 0; }
  .hc-answer .rnt-answer-body li > *:last-child:not(pre),
  .hc-answer .browse-flow-answer li > *:last-child:not(pre) {
    margin-bottom: 0; }
  .hc-answer .rnt-answer-body .rn_DataValue ul,
  .hc-answer .browse-flow-answer .rn_DataValue ul {
    list-style-type: none;
    margin-bottom: 0; }
  .hc-answer .rnt-answer-body em,
  .hc-answer .browse-flow-answer em {
    font-style: normal;
    font-weight: bold; }
  .hc-answer .rnt-answer-body .faq ul li,
  .hc-answer .browse-flow-answer .faq ul li {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    display: list-item;
    list-style-type: disc; }
  .hc-answer .rnt-answer-body a:not(.answer-url-link),
  .hc-answer .browse-flow-answer a:not(.answer-url-link) {
    color: #0077B5;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .hc-answer .rnt-answer-body a:not(.answer-url-link):visited,
    .hc-answer .browse-flow-answer a:not(.answer-url-link):visited {
      color: #8C68CB; }
    .hc-answer .rnt-answer-body a:not(.answer-url-link):hover, .hc-answer .rnt-answer-body a:not(.answer-url-link):focus,
    .hc-answer .browse-flow-answer a:not(.answer-url-link):hover,
    .hc-answer .browse-flow-answer a:not(.answer-url-link):focus {
      text-decoration: underline; }
    .hc-answer .rnt-answer-body a:not(.answer-url-link):active,
    .hc-answer .browse-flow-answer a:not(.answer-url-link):active {
      text-decoration: none;
      color: #005E93; }
  .hc-answer .rnt-answer-body .collapsible .collapsible-header-wrapper,
  .hc-answer .browse-flow-answer .collapsible .collapsible-header-wrapper {
    margin: 0;
    padding: 0; }
  .hc-answer .rnt-answer-body .collapsible .collapsible-header,
  .hc-answer .browse-flow-answer .collapsible .collapsible-header {
    background: transparent;
    border: none;
    box-shadow: none;
    display: block;
    width: 100%;
    text-align: left;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px;
    cursor: pointer;
    padding-left: 24px;
    position: relative; }
    .hc-answer .rnt-answer-body .collapsible .collapsible-header:hover, .hc-answer .rnt-answer-body .collapsible .collapsible-header:focus,
    .hc-answer .browse-flow-answer .collapsible .collapsible-header:hover,
    .hc-answer .browse-flow-answer .collapsible .collapsible-header:focus {
      outline: 0 none;
      color: rgba(0, 0, 0, 0.85); }
    .hc-answer .rnt-answer-body .collapsible .collapsible-header:active,
    .hc-answer .browse-flow-answer .collapsible .collapsible-header:active {
      color: #000000; }
    .hc-answer .rnt-answer-body .collapsible .collapsible-header:before,
    .hc-answer .browse-flow-answer .collapsible .collapsible-header:before {
      content: "";
      position: absolute;
      top: 50%;
      left: -8px;
      margin-top: -12px;
      background-image: url(/sc/h/1lacdnuuuup1h43otcimx9yjf);
      background-repeat: no-repeat;
      background-position: top -40px right -4px;
      height: 24px;
      width: 24px;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg); }
  .hc-answer .rnt-answer-body .collapsible > .collapsible-content,
  .hc-answer .browse-flow-answer .collapsible > .collapsible-content {
    display: none;
    padding-left: 24px; }
  .hc-answer .rnt-answer-body .collapsible.expanded .collapsible-header:before,
  .hc-answer .browse-flow-answer .collapsible.expanded .collapsible-header:before {
    -webkit-transform: none;
            transform: none;
    margin-top: -16px;
    left: -4px; }
  .hc-answer .rnt-answer-body .collapsible.expanded > .collapsible-content,
  .hc-answer .browse-flow-answer .collapsible.expanded > .collapsible-content {
    display: block; }
  .hc-answer .rnt-answer-body span.screenshot,
  .hc-answer .browse-flow-answer span.screenshot {
    display: none !important; }
  .hc-answer .rnt-answer-body .screenshot,
  .hc-answer .browse-flow-answer .screenshot {
    position: relative;
    box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
    width: 85%;
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 4px;
    cursor: pointer; }
    .hc-answer .rnt-answer-body .screenshot img,
    .hc-answer .browse-flow-answer .screenshot img {
      width: 100%; }
    .hc-answer .rnt-answer-body .screenshot .description,
    .hc-answer .browse-flow-answer .screenshot .description {
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0; }
    .hc-answer .rnt-answer-body .screenshot.thumb,
    .hc-answer .browse-flow-answer .screenshot.thumb {
      width: 43%;
      display: inline-block; }
    .hc-answer .rnt-answer-body .screenshot.full,
    .hc-answer .browse-flow-answer .screenshot.full {
      width: auto;
      margin: 0px;
      cursor: default; }
  .hc-answer .rnt-answer-body.browse-flow-answer .hide-on-browse,
  .hc-answer .browse-flow-answer.browse-flow-answer .hide-on-browse {
    display: none; }
  .hc-answer .rnt-answer-body .content-type h4,
  .hc-answer .browse-flow-answer .content-type h4 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 16.0px; }
  .hc-answer .rnt-answer-body .content-type a,
  .hc-answer .browse-flow-answer .content-type a {
    display: none; }
  .hc-answer .rnt-answer-body .svg-icon,
  .hc-answer .browse-flow-answer .svg-icon {
    color: rgba(0, 0, 0, 0.55); }
  .hc-answer .rnt-answer-body pre,
  .hc-answer .browse-flow-answer pre {
    padding: 16px;
    margin: 16px auto;
    box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
    border-radius: 2px;
    background: #F0F3F6;
    font-family: monospace;
    font-size: 1.3rem;
    width: 100%;
    max-height: 400px;
    overflow: auto; }
  .hc-answer .rnt-answer-body .MTdisclaimer,
  .hc-answer .browse-flow-answer .MTdisclaimer {
    color: rgba(0, 0, 0, 0.55);
    font-style: italic;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 24.0px; }
  .hc-answer .answer-footer {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 8.0px; }
    .hc-answer .answer-footer p {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 8.0px; }

html[dir="rtl"] .hc-answer .answer-body .collapsible > div:first-child:before {
  font-family: "LinkedIn-Glyphs-2.0.2", "LinkedIn-Glyphs";
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  speak: none;
  font-size: 16px;
  color: #0077B5;
  content: "\e029"; }

.content-not-available {
  color: #DD2E1F;
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 4.0px; }

@media (min-width: 768px) {
  .hc-answer {
    padding-bottom: 36px; }
    .hc-answer .answer-header .hc-page-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 700;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 28.0px; }
    .hc-answer .answer-header .hc-page-label {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 700;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 28.0px; }
      .hc-answer .answer-header .hc-page-label + .hc-page-title {
        color: rgba(0, 0, 0, 0.85);
        font-weight: 700;
        font-size: 26px;
        font-size: 2.6rem;
        line-height: 1.07692308;
        display: block;
        padding: 5px 0 3px;
        margin-bottom: -8px;
        margin-top: 12.0px; }
    .hc-answer .metadata-container {
      display: block; }
    .hc-answer .rnt-answer-body p,
    .hc-answer .browse-flow-answer p {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 20.0px; }
    .hc-answer .rnt-answer-body h1,
    .hc-answer .browse-flow-answer h1 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 28.0px; }
    .hc-answer .rnt-answer-body h2,
    .hc-answer .browse-flow-answer h2 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 28.0px; }
    .hc-answer .rnt-answer-body h3,
    .hc-answer .browse-flow-answer h3 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 24.0px; }
    .hc-answer .rnt-answer-body h4,
    .hc-answer .browse-flow-answer h4 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 16.0px; }
    .hc-answer .rnt-answer-body ol > li,
    .hc-answer .rnt-answer-body ul > li,
    .hc-answer .browse-flow-answer ol > li,
    .hc-answer .browse-flow-answer ul > li {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px;
      display: list-item; }
      .hc-answer .rnt-answer-body ol > li:first-of-type,
      .hc-answer .rnt-answer-body ul > li:first-of-type,
      .hc-answer .browse-flow-answer ol > li:first-of-type,
      .hc-answer .browse-flow-answer ul > li:first-of-type {
        color: rgba(0, 0, 0, 0.7);
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0;
        margin-top: 20.0px;
        display: list-item; }
    .hc-answer .rnt-answer-body .faq ul li,
    .hc-answer .browse-flow-answer .faq ul li {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      display: list-item;
      list-style-type: disc; }
    .hc-answer .rnt-answer-body .collapsible .collapsible-header,
    .hc-answer .browse-flow-answer .collapsible .collapsible-header {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 700;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 20.0px;
      padding-left: 24px; }
    .hc-answer .rnt-answer-body .screenshot .description,
    .hc-answer .browse-flow-answer .screenshot .description {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 0px; }
    .hc-answer .rnt-answer-body .content-type h4,
    .hc-answer .browse-flow-answer .content-type h4 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 16.0px; }
    .hc-answer .rnt-answer-body .content-type a,
    .hc-answer .browse-flow-answer .content-type a {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: #008CC9;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #FFFFFF;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      z-index: 0;
      overflow: hidden;
      margin-top: 24px;
      color: #FFFFFF;
      text-decoration: none; }
      .hc-answer .rnt-answer-body .content-type a li-icon.svg-icon,
      .hc-answer .browse-flow-answer .content-type a li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .hc-answer .rnt-answer-body .content-type a:visited,
      .hc-answer .browse-flow-answer .content-type a:visited {
        color: #FFFFFF; }
      .hc-answer .rnt-answer-body .content-type a:hover:not(:disabled), .hc-answer .rnt-answer-body .content-type a:focus:not(:disabled),
      .hc-answer .browse-flow-answer .content-type a:hover:not(:disabled),
      .hc-answer .browse-flow-answer .content-type a:focus:not(:disabled) {
        background-color: #0077B5;
        box-shadow: none; }
      .hc-answer .rnt-answer-body .content-type a::-moz-focus-inner,
      .hc-answer .browse-flow-answer .content-type a::-moz-focus-inner {
        border: 0; }
      .hc-answer .rnt-answer-body .content-type a:active:not(:disabled),
      .hc-answer .browse-flow-answer .content-type a:active:not(:disabled) {
        background-color: #005E93;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93; }
      .hc-answer .rnt-answer-body .content-type a:disabled,
      .hc-answer .browse-flow-answer .content-type a:disabled {
        opacity: 0.4;
        cursor: default; }
    .hc-answer .rnt-answer-body .MTdisclaimer,
    .hc-answer .browse-flow-answer .MTdisclaimer {
      color: rgba(0, 0, 0, 0.55);
      font-style: italic;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 20.0px; }
    .hc-answer .answer-footer {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 12.0px; }
      .hc-answer .answer-footer p {
        color: rgba(0, 0, 0, 0.55);
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0;
        margin-top: 12.0px;
        padding: 0; } }

.hc-answer .answer-type-tag {
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  padding: 4px 8px;
  border-radius: 2px;
  background: #00A0DC;
  color: white;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: -5px;
  right: -8px; }

.hc-answer .answer-info {
  padding: 8px 0 32px 0; }
  .hc-answer .answer-info .answer-info-item {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }
    .hc-answer .answer-info .answer-info-item .answer-info-label {
      display: inline-block;
      margin-right: 8px;
      text-transform: uppercase;
      font-weight: bold;
      width: 180px; }

.hc-answer .metadata-container {
  display: block;
  margin: 64px 0 0;
  padding: 32px 4px;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset; }
  .hc-answer .metadata-container .metadata-title {
    display: inline-block;
    padding: 0px; }
  .hc-answer .metadata-container .mark-reviewed-button {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 18px;
    padding: 3px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 24px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    float: right; }
    .hc-answer .metadata-container .mark-reviewed-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 11px;
      padding: 0 6px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .hc-answer .metadata-container .mark-reviewed-button:visited {
      color: #FFFFFF; }
    .hc-answer .metadata-container .mark-reviewed-button:hover:not(:disabled), .hc-answer .metadata-container .mark-reviewed-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .hc-answer .metadata-container .mark-reviewed-button::-moz-focus-inner {
      border: 0; }
    .hc-answer .metadata-container .mark-reviewed-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .hc-answer .metadata-container .mark-reviewed-button:disabled {
      opacity: 0.4;
      cursor: default; }
  .hc-answer .metadata-container a {
    color: #0077B5;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .hc-answer .metadata-container a:visited {
      color: #8C68CB; }
    .hc-answer .metadata-container a:hover, .hc-answer .metadata-container a:focus {
      text-decoration: underline; }
    .hc-answer .metadata-container a:active {
      text-decoration: none;
      color: #005E93; }
  .hc-answer .metadata-container .status_Current {
    color: #7CB82F; }
  .hc-answer .metadata-container .Hold {
    color: #F47B16; }
  .hc-answer .metadata-container .status_Need {
    color: #EC4339; }
  .hc-answer .metadata-container .i18n-siblings-table {
    box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    border-radius: 2px;
    margin: 16px auto 0;
    font-size: 1.2rem;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%; }
    .hc-answer .metadata-container .i18n-siblings-table caption,
    .hc-answer .metadata-container .i18n-siblings-table th,
    .hc-answer .metadata-container .i18n-siblings-table td {
      text-align: left;
      font-weight: normal; }
    .hc-answer .metadata-container .i18n-siblings-table th,
    .hc-answer .metadata-container .i18n-siblings-table td {
      padding: 4px 8px;
      box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
      .hc-answer .metadata-container .i18n-siblings-table th:last-child,
      .hc-answer .metadata-container .i18n-siblings-table td:last-child {
        box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .hc-answer .metadata-container .i18n-siblings-table tr.current td {
      background: rgba(52, 179, 228, 0.1); }
    .hc-answer .metadata-container .i18n-siblings-table th {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 700;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      white-space: nowrap;
      vertical-align: bottom;
      text-transform: uppercase; }

.account-container .requests-header {
  font-weight: 400;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.05882353;
  display: block;
  margin-bottom: -12px;
  padding: 2px 0 6px;
  margin-top: 40.0px; }

.account-container .case-header {
  font-weight: 300;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  display: block;
  padding: 5px 0 4px;
  margin-bottom: -9px;
  margin-top: 16.0px; }

.account-container .case-list {
  margin: 16px -16px 0;
  clear: both;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset; }
  .account-container .case-list .case-mini {
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
    padding: 0 16px 24px;
    overflow: hidden; }
    .account-container .case-list .case-mini .card-header {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 8.0px; }
      .account-container .case-list .case-mini .card-header .card-header-link {
        color: #008CC9; }
        .account-container .case-list .case-mini .card-header .card-header-link:visited {
          color: #7C5BBB; }
        .account-container .case-list .case-mini .card-header .card-header-link:hover, .account-container .case-list .case-mini .card-header .card-header-link:focus {
          color: #008CC9; }
        .account-container .case-list .case-mini .card-header .card-header-link:active {
          color: #005E93; }
    .account-container .case-list .case-mini .card-content {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px; }

.account-container .no-cases {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471;
  display: block;
  margin-bottom: -8px;
  padding: 6px 0 2px 0;
  margin-top: 80px;
  margin-bottom: 168px;
  text-align: center; }

.unanswered-container {
  text-align: center;
  padding-bottom: 40px; }
  .unanswered-container .unanswered-text {
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 32.0px; }
  .unanswered-container .browse-topics-button {
    margin-top: 24px;
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 28px;
    padding: 6px 24px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 40px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden; }
    .unanswered-container .browse-topics-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 9px;
      padding: 0 6px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .unanswered-container .browse-topics-button:visited {
      color: #FFFFFF; }
    .unanswered-container .browse-topics-button:hover:not(:disabled), .unanswered-container .browse-topics-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .unanswered-container .browse-topics-button::-moz-focus-inner {
      border: 0; }
    .unanswered-container .browse-topics-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .unanswered-container .browse-topics-button:disabled {
      opacity: 0.4;
      cursor: default; }

@media (min-width: 768px) {
  .account-container {
    padding-bottom: 64px; }
    .account-container .case-header {
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 12.0px; }
    .account-container .case-list {
      margin-left: 0;
      margin-right: 0; }
      .account-container .case-list .case-mini {
        padding: 0 24px 32px; }
        .account-container .case-list .case-mini .card-header {
          font-size: 21px;
          font-size: 2.1rem;
          line-height: 1.14285714;
          display: block;
          padding: 5px 0 4px;
          margin-bottom: -9px;
          margin-top: 24.0px; }
          .account-container .case-list .case-mini .card-header .card-header-link {
            color: rgba(0, 0, 0, 0.85); }
        .account-container .case-list .case-mini .card-content {
          color: rgba(0, 0, 0, 0.55);
          font-weight: 400;
          font-size: 17px;
          font-size: 1.7rem;
          line-height: 1.41176471;
          display: block;
          margin-bottom: -8px;
          padding: 6px 0 2px 0;
          margin-top: 8.0px; }
    .account-container .no-cases {
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 12.0px;
      margin-top: 128px;
      margin-bottom: 232px; }
  .unanswered-container {
    padding-bottom: 56px; }
    .unanswered-container .unanswered-text {
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 44.0px; } }

.return-to-case-list {
  margin: 0 -16px;
  overflow: hidden; }
  .return-to-case-list:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    background: #D0D3D6;
    height: 1px; }

.return-to-case-button {
  display: block;
  width: 100%;
  padding: 8px 16px 8px 16px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471; }
  .return-to-case-button:hover, .return-to-case-button:focus {
    color: rgba(0, 0, 0, 0.7); }
  .return-to-case-button:active {
    color: rgba(0, 0, 0, 0.85); }
  .return-to-case-button .svg-icon {
    height: 16px;
    width: 16px;
    margin: -4px 8px 0 0; }

.ticket-header {
  margin: 0 -16px;
  padding: 0 16px 24px;
  overflow: hidden;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
  .ticket-header .close-button,
  .ticket-header .reopen-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    margin-top: 16px;
    position: relative; }
    .ticket-header .close-button li-icon.svg-icon,
    .ticket-header .reopen-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .ticket-header .close-button:visited,
    .ticket-header .reopen-button:visited {
      color: #FFFFFF; }
    .ticket-header .close-button:hover:not(:disabled), .ticket-header .close-button:focus:not(:disabled),
    .ticket-header .reopen-button:hover:not(:disabled),
    .ticket-header .reopen-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .ticket-header .close-button::-moz-focus-inner,
    .ticket-header .reopen-button::-moz-focus-inner {
      border: 0; }
    .ticket-header .close-button:active:not(:disabled),
    .ticket-header .reopen-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .ticket-header .close-button:disabled,
    .ticket-header .reopen-button:disabled {
      opacity: 0.4;
      cursor: default; }
  .ticket-header .ticket-data .ticket-data-description {
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }
    .ticket-header .ticket-data .ticket-data-description.new-block {
      font-weight: 300;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 12.0px; }
  .ticket-header .ticket-data .ticket-data-term {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px;
    float: left;
    margin-right: 8px; }
    .ticket-header .ticket-data .ticket-data-term.new-block {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 12.0px; }
  .ticket-header .ticket-subject {
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 8.0px; }
  .ticket-header .created-time {
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }

.message-history .message-history-title {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 12.0px; }

.message-history .thread-list {
  padding-bottom: 24px;
  margin-top: 16px; }

.message-history .thread-entry {
  margin-top: 16px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 0 0, rgba(0, 0, 0, 0.15) -1px 0 0, rgba(0, 0, 0, 0.15) 0 1px 0, rgba(0, 0, 0, 0.15) 0 -1px 0;
  border-radius: 2px;
  overflow: hidden; }
  .message-history .thread-entry .thread-header {
    overflow: hidden;
    padding: 12px 16px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0 0 inset, rgba(0, 0, 0, 0.15) 0px 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0px 0 inset; }
    .message-history .thread-entry .thread-header.from-hc-support {
      background: #F0F3F6; }
    .message-history .thread-entry .thread-header .thread-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      padding: 0;
      margin: 0 0 -6px; }
    .message-history .thread-entry .thread-header .time-stamp {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      margin: 4px 0 -2px 0;
      padding: 0; }
    .message-history .thread-entry .thread-header .avatar {
      height: 32px;
      width: 32px;
      margin: 0 10px 0 0;
      float: left;
      background-color: #B6B9BC;
      border-radius: 50%;
      overflow: hidden; }
      .message-history .thread-entry .thread-header .avatar.lynda-avatar {
        border-radius: 2px;
        background: url(/sc/h/b6rzyksbbu2vin3423yz5gjio) no-repeat center;
        background-size: contain; }
      .message-history .thread-entry .thread-header .avatar.hc-avatar {
        border-radius: 2px;
        background: url(/sc/h/8jcbb24r4oxdr6msi8p53dj7g) no-repeat center;
        background-size: contain; }
      .message-history .thread-entry .thread-header .avatar .avatar-image {
        height: 100%;
        width: 100%; }
  .message-history .thread-entry .thread-body {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    padding: 12px 16px;
    white-space: pre-wrap; }
  .message-history .thread-entry .thread-attachments {
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 0 inset, rgba(0, 0, 0, 0.25) 0 0 0 inset, rgba(0, 0, 0, 0.25) 0 0 0 inset, rgba(0, 0, 0, 0.25) 0 1px 0 inset;
    overflow: hidden;
    padding: 0; }

.message-history .new-message-button {
  color: #00A0DC;
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right; }

.comment-form-wrapper {
  overflow: hidden;
  -webkit-transition-property: height, opacity;
          transition-property: height, opacity;
  -webkit-transition-duration: 0.667s;
          transition-duration: 0.667s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.comment-form.dynaform {
  margin-top: 24px; }

.comment-form .field-group {
  margin-bottom: 0; }

.comment-form .field-label {
  display: block;
  text-align: left;
  width: 100%;
  height: 48px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  margin: 0;
  padding: 12px 16px;
  line-height: 24px; }

.comment-form .input-combo-collapsible-container {
  -webkit-transition-property: height;
          transition-property: height;
  -webkit-transition-duration: 0.667s;
          transition-duration: 0.667s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 0; }
  .comment-form .input-combo-collapsible-container.is-expanded {
    -webkit-transition-property: none;
            transition-property: none;
    height: auto; }

.comment-form .input-container {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0 0 inset, rgba(0, 0, 0, 0.15) 0px 0 0 inset, rgba(0, 0, 0, 0.15) 0 0px 0 inset, rgba(0, 0, 0, 0.15) 0 1px 0 inset; }

.comment-form textarea.textarea {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  border-radius: 0;
  padding: 11px 16px 13px;
  resize: none; }
  .comment-form textarea.textarea:focus {
    border-color: #008CC9; }

.comment-form.dynaform .textattachment .input-container {
  margin-top: 0; }

.comment-form.dynaform .textattachment textarea {
  margin-bottom: 0; }

.comment-form.dynaform .textattachment .input-combo-wrapper {
  margin-top: 0;
  overflow: hidden; }
  .comment-form.dynaform .textattachment .input-combo-wrapper .field-label {
    box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 0 0 inset, rgba(0, 0, 0, 0.25) 0 1px 0 inset;
    border-radius: 2px 2px 0 0; }

.comment-form.dynaform .textattachment .input-combo-footer {
  padding: 12px 16px;
  clear: both;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 -1px 0 inset, rgba(0, 0, 0, 0.25) 0 0 0 inset;
  border-radius: 0 0 2px 2px; }
  .comment-form.dynaform .textattachment .input-combo-footer .attachments {
    float: left;
    margin: 0;
    box-shadow: none;
    height: 32px;
    margin-left: -16px; }
    .comment-form.dynaform .textattachment .input-combo-footer .attachments .field-label {
      padding: 0;
      color: #008CC9;
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      line-height: 32px;
      height: 32px;
      box-shadow: none; }
      .comment-form.dynaform .textattachment .input-combo-footer .attachments .field-label.has-focus {
        color: #0077B5; }
      .comment-form.dynaform .textattachment .input-combo-footer .attachments .field-label.is-active {
        color: #005E93; }
    .comment-form.dynaform .textattachment .input-combo-footer .attachments .attachments-error-message {
      line-height: 32px; }

.comment-form.dynaform.is-collapsed .input-combo-wrapper .field-label {
  box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 -1px 0 inset, rgba(0, 0, 0, 0.25) 0 1px 0 inset;
  border-radius: 2px; }

.comment-form .field {
  padding: 0; }

.comment-form .comment-body {
  height: 200px;
  border: none;
  padding: 0;
  resize: none; }

.comment-form .submit-button {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: #008CC9;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #FFFFFF;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  box-shadow: none;
  z-index: 0;
  overflow: hidden;
  float: right; }
  .comment-form .submit-button li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .comment-form .submit-button:visited {
    color: #FFFFFF; }
  .comment-form .submit-button:hover:not(:disabled), .comment-form .submit-button:focus:not(:disabled) {
    background-color: #0077B5;
    box-shadow: none; }
  .comment-form .submit-button::-moz-focus-inner {
    border: 0; }
  .comment-form .submit-button:active:not(:disabled) {
    background-color: #005E93;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93; }
  .comment-form .submit-button:disabled {
    opacity: 0.4;
    cursor: default; }

@media (min-width: 768px) {
  .return-to-case-list {
    margin: 0; }
  .return-to-case-button {
    display: inline-block;
    width: auto;
    margin-left: -12px; }
  .ticket {
    position: relative; }
  .ticket-header {
    margin: 0;
    padding: 0 0 40px; }
    .ticket-header .close-button,
    .ticket-header .reopen-button {
      width: auto;
      margin-top: 32px;
      position: absolute;
      top: 0;
      right: 0;
      max-width: 240px;
      height: auto; }
    .ticket-header .ticket-data .ticket-data-description {
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 8.0px; }
      .ticket-header .ticket-data .ticket-data-description.new-block {
        font-weight: 300;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.41176471;
        display: block;
        margin-bottom: -8px;
        padding: 6px 0 2px 0;
        margin-top: 16.0px; }
    .ticket-header .ticket-data .ticket-data-term {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 8.0px; }
      .ticket-header .ticket-data .ticket-data-term.new-block {
        font-weight: 400;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.41176471;
        display: block;
        margin-bottom: -8px;
        padding: 6px 0 2px 0;
        margin-top: 16.0px; }
    .ticket-header .ticket-subject {
      font-weight: 400;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 28.0px;
      padding-right: 264px; }
    .ticket-header .created-time {
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 8.0px; }
  .message-history .message-history-title {
    font-weight: 400;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 32.0px; }
  .message-history .thread-list {
    margin-top: 24px; }
  .message-history .thread-entry .thread-header {
    height: 72px;
    padding: 16px 24px;
    position: relative; }
    .message-history .thread-entry .thread-header .avatar {
      height: 40px;
      width: 40px;
      margin-top: 0; }
    .message-history .thread-entry .thread-header .thread-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      line-height: 40px;
      margin: 0;
      padding-right: 264px; }
    .message-history .thread-entry .thread-header .time-stamp {
      position: absolute;
      right: 24px;
      top: 16px;
      margin: 0;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      line-height: 40px; }
  .message-history .thread-entry .thread-body {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    padding: 16px 24px; }
  .message-history .thread-entry .thread-attachments {
    box-shadow: none;
    padding: 0 8px 8px; }
  .comment-form.dynaform .textattachment .attachments-preview-panel-open {
    padding: 2px 24px 0 24px; }
  .comment-form.dynaform .textattachment .input-combo-footer {
    padding: 16px 24px; }
    .comment-form.dynaform .textattachment .input-combo-footer .attachments .field-label {
      color: #008CC9;
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      line-height: 32px; }
  .comment-form.dynaform.is-collapsed .input-combo-wrapper .field-label {
    box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 0 0 inset, rgba(0, 0, 0, 0.25) 0 1px 0 inset;
    border-radius: 2px 2px 0 0; }
  .comment-form .input-combo-collapsible-container {
    -webkit-transition-property: none;
            transition-property: none;
    height: auto !important; }
  .comment-form .field-label {
    height: 56px;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    padding: 16px 24px;
    line-height: 24px; }
  .comment-form textarea.textarea {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    padding: 15px 24px 17px; }
  .comment-form .submit-button {
    min-width: 100px;
    width: auto;
    float: right; } }

@media (min-width: 1024px) {
  .message-history .thread-list {
    padding-bottom: 8px; } }

.modal {
  position: absolute;
  top: 150%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  outline: none;
  text-align: left;
  -webkit-transition: top 0.5s;
          transition: top 0.5s; }
  .modal .dialog-title .dialog-close {
    display: none; }
  .modal.open {
    top: 0; }
  .modal .dialog-content-container {
    height: 100%; }
  .modal .dialog-title {
    padding: 20px; }
    .modal .dialog-title .title {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      padding: 0;
      margin: 0; }
  .modal .dialog-body {
    padding: 20px; }
  @media (min-width: 768px) {
    .modal {
      top: 50%;
      left: 50%;
      width: 700px;
      max-width: 95%;
      height: auto;
      max-height: 80%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      overflow-y: auto;
      border-radius: 5px;
      border: 1px solid #D0D3D6;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      -webkit-transition: opacity 1s;
              transition: opacity 1s; }
      .modal.open {
        top: 50%;
        opacity: 1; } }

.mask {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
          transition: opacity 0.5s; }
  .mask:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .mask.open {
    opacity: 1; }

.required-indicator {
  color: #008CC9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.hc-contact {
  padding-bottom: 16px; }

.dynaform .dynaform-title {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 4.0px; }

.dynaform a {
  color: #008CC9; }
  .dynaform a:visited {
    color: #008CC9; }
  .dynaform a:hover, .dynaform a:focus {
    color: #0077B5; }
  .dynaform a:active {
    color: #005E93; }

.dynaform .dynaform-name {
  margin-top: 16px; }

.dynaform > .fields {
  margin-top: 24px;
  padding-top: 8px;
  box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 1px 0 inset; }

.dynaform .dynaform-group-header {
  margin-top: 8px;
  margin-bottom: -1px; }

.dynaform .field-group {
  margin-bottom: 8px; }
  .dynaform .field-group:after {
    content: "";
    display: table;
    clear: both; }
  .dynaform .field-group.static-values {
    margin-bottom: 16px; }

.dynaform .field {
  margin-bottom: 12px; }
  .dynaform .field textarea {
    resize: vertical;
    height: 120px; }

.dynaform .user-name .static-values {
  margin-bottom: 4px; }

.dynaform .user-email .static-values {
  margin-bottom: 24px; }

.dynaform .error-message {
  color: #DD2E1F;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  display: none; }

.dynaform .has-error .error-message {
  display: block; }

.dynaform .has-error .dynaform-option-group label:before {
  border-color: #DD2E1F; }

.dynaform .field-separator {
  height: 1px;
  border-top: 1px solid #F0F3F6;
  margin-bottom: -1px;
  margin-top: 16px; }

.dynaform .input-container {
  margin-top: 8px; }

.dynaform .select-container {
  display: inline-block;
  width: 100%; }
  .dynaform .select-container select {
    display: inline-block;
    width: 100%; }

.dynaform .dynamic-form-legal {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 16.0px; }

.dynaform .form-submit {
  width: 100%;
  margin: 8px 0 0; }

.dynaform .field-desc {
  color: rgba(0, 0, 0, 0.55);
  font-style: italic;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0; }

.dynaform .static-value {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0; }

.dynaform .user-email .static-value {
  color: rgba(0, 0, 0, 0.55); }

.dynaform .dynaform-option-group {
  margin-top: 8px; }

.dynaform .sa-container .input-container {
  margin-top: 0; }
  .dynaform .sa-container .input-container .fields .field {
    margin-bottom: 0; }
  .dynaform .sa-container .input-container textarea {
    background: transparent; }
    .dynaform .sa-container .input-container textarea:focus {
      border-color: #008CC9; }

.dynaform .sa-container .input-combo-wrapper {
  border-radius: 2px;
  margin-top: 8px; }

.dynaform .textattachment textarea {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
  margin-bottom: -1px; }

.dynaform pre {
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  padding: 16px;
  background: #F0F3F6;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.15) -1px 0 0 inset, rgba(0, 0, 0, 0.15) 1px 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 1px 0 inset; }

.post-submit-container {
  text-align: center; }
  .post-submit-container .thanks-text {
    font-weight: 400;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 36.0px; }
  .post-submit-container .submitted-text {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .post-submit-container .home-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin: 32px 0;
    display: block;
    height: auto; }
    .post-submit-container .home-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .post-submit-container .home-button:visited {
      color: #FFFFFF; }
    .post-submit-container .home-button:hover:not(:disabled), .post-submit-container .home-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .post-submit-container .home-button::-moz-focus-inner {
      border: 0; }
    .post-submit-container .home-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .post-submit-container .home-button:disabled {
      opacity: 0.4;
      cursor: default; }
    .post-submit-container .home-button.secondary {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #008CC9;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      display: block;
      height: auto;
      margin: 32px 0 0; }
      .post-submit-container .home-button.secondary li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .post-submit-container .home-button.secondary:visited {
        color: #008CC9; }
      .post-submit-container .home-button.secondary:hover:not(:disabled), .post-submit-container .home-button.secondary:focus:not(:disabled) {
        background-color: transparent;
        color: #0077B5;
        box-shadow: inset 0 0 0 2px #008CC9; }
      .post-submit-container .home-button.secondary::-moz-focus-inner {
        border: 0; }
      .post-submit-container .home-button.secondary:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93;
        color: #005E93; }
      .post-submit-container .home-button.secondary:disabled {
        opacity: 0.4;
        cursor: default; }
  .post-submit-container .view-case-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin: 8px 0 32px;
    display: block;
    height: auto; }
    .post-submit-container .view-case-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .post-submit-container .view-case-button:visited {
      color: #FFFFFF; }
    .post-submit-container .view-case-button:hover:not(:disabled), .post-submit-container .view-case-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .post-submit-container .view-case-button::-moz-focus-inner {
      border: 0; }
    .post-submit-container .view-case-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .post-submit-container .view-case-button:disabled {
      opacity: 0.4;
      cursor: default; }

/* Slides the open cases banner in from the top */
@-webkit-keyframes BannerIn {
  0% {
    height: 0;
    opacity: 0; }
  100% {
    height: 40px;
    opacity: 1.0; } }

@keyframes BannerIn {
  0% {
    height: 0;
    opacity: 0; }
  100% {
    height: 40px;
    opacity: 1.0; } }

.mobile-open-cases {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  padding: 8px 16px;
  margin: 0 -16px;
  height: 0;
  opacity: 0;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
  -webkit-animation-name: BannerIn;
  -webkit-animation-duration: 200ms;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: BannerIn;
          animation-name: BannerIn;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  .mobile-open-cases:hover, .mobile-open-cases:focus {
    color: rgba(0, 0, 0, 0.7);
    background: #E6E9EC; }
  .mobile-open-cases .info-icon {
    margin: -2px 4px 0 -4px;
    color: rgba(0, 0, 0, 0.55); }
  .mobile-open-cases .chevron-icon {
    float: right;
    margin-right: -8px;
    color: rgba(0, 0, 0, 0.55); }

.dynaform-telephone {
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
  margin: 0 -16px;
  padding: 0 16px 40px;
  overflow: hidden; }
  .dynaform-telephone .want-to-talk {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px; }
  .dynaform-telephone .phone-label {
    color: rgba(0, 0, 0, 0.7);
    margin-right: 8px; }
  .dynaform-telephone .us-phone {
    color: #008CC9;
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 12.0px; }
  .dynaform-telephone .eu-phone {
    color: #008CC9;
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0; }

@media (min-width: 768px) {
  .hc-contact {
    padding-bottom: 24px; }
  .dynaform > .fields {
    margin-top: 32px;
    padding-top: 24px; }
  .dynaform .dynaform-title {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 20.0px; }
  .dynaform .select-container,
  .dynaform .short-field-container {
    max-width: 416px; }
  .dynaform .sa-container .input-combo-footer {
    height: 64px;
    padding: 16px 24px; }
  .dynaform .dynamic-form-legal {
    margin-top: 0; }
  .dynaform .form-submit {
    float: right;
    width: auto;
    margin: 4px 0 0 80px; }
  .post-submit-container .thanks-text {
    font-weight: 300;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 112.0px; }
  .post-submit-container .submitted-text {
    font-weight: 300;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 16.0px; }
  .post-submit-container .home-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin: 40px 0; }
    .post-submit-container .home-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .post-submit-container .home-button:visited {
      color: #FFFFFF; }
    .post-submit-container .home-button:hover:not(:disabled), .post-submit-container .home-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .post-submit-container .home-button::-moz-focus-inner {
      border: 0; }
    .post-submit-container .home-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .post-submit-container .home-button:disabled {
      opacity: 0.4;
      cursor: default; }
    .post-submit-container .home-button.secondary {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #008CC9;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      margin: 40px 8px 40px 0; }
      .post-submit-container .home-button.secondary li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .post-submit-container .home-button.secondary:visited {
        color: #008CC9; }
      .post-submit-container .home-button.secondary:hover:not(:disabled), .post-submit-container .home-button.secondary:focus:not(:disabled) {
        background-color: transparent;
        color: #0077B5;
        box-shadow: inset 0 0 0 2px #008CC9; }
      .post-submit-container .home-button.secondary::-moz-focus-inner {
        border: 0; }
      .post-submit-container .home-button.secondary:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93;
        color: #005E93; }
      .post-submit-container .home-button.secondary:disabled {
        opacity: 0.4;
        cursor: default; }
  .post-submit-container .view-case-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin: 40px 0; }
    .post-submit-container .view-case-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .post-submit-container .view-case-button:visited {
      color: #FFFFFF; }
    .post-submit-container .view-case-button:hover:not(:disabled), .post-submit-container .view-case-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .post-submit-container .view-case-button::-moz-focus-inner {
      border: 0; }
    .post-submit-container .view-case-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .post-submit-container .view-case-button:disabled {
      opacity: 0.4;
      cursor: default; } }

@media (min-width: 1024px) {
  .post-submit-container .thanks-text {
    font-weight: 300;
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.04761905;
    display: block;
    margin-bottom: -12px;
    padding: 3px 0 5px;
    margin-top: 136.0px; }
  .post-submit-container .submitted-text {
    font-weight: 300;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 20.0px; }
  .post-submit-container .home-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin: 48px 0; }
    .post-submit-container .home-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .post-submit-container .home-button:visited {
      color: #FFFFFF; }
    .post-submit-container .home-button:hover:not(:disabled), .post-submit-container .home-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .post-submit-container .home-button::-moz-focus-inner {
      border: 0; }
    .post-submit-container .home-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .post-submit-container .home-button:disabled {
      opacity: 0.4;
      cursor: default; }
    .post-submit-container .home-button.secondary {
      margin: 48px 8px 48px 0; }
  .post-submit-container .view-case-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #008CC9;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #FFFFFF;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    margin: 48px 0; }
    .post-submit-container .view-case-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .post-submit-container .view-case-button:visited {
      color: #FFFFFF; }
    .post-submit-container .view-case-button:hover:not(:disabled), .post-submit-container .view-case-button:focus:not(:disabled) {
      background-color: #0077B5;
      box-shadow: none; }
    .post-submit-container .view-case-button::-moz-focus-inner {
      border: 0; }
    .post-submit-container .view-case-button:active:not(:disabled) {
      background-color: #005E93;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93; }
    .post-submit-container .view-case-button:disabled {
      opacity: 0.4;
      cursor: default; } }

.attachments {
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 -1px 0 inset, rgba(0, 0, 0, 0.25) 0 1px 0 inset;
  border-radius: 2px;
  height: 48px; }
  .textattachment .attachments {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 -1px 0 inset, rgba(0, 0, 0, 0.25) 0 0 0 inset;
    clear: both; }
  .attachments .attachment-wrapper {
    position: relative;
    float: left; }
    .attachments .attachment-wrapper .field-label {
      color: #008CC9;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      float: left;
      height: 48px;
      line-height: 48px;
      text-indent: 8px;
      padding: 0;
      margin: 0 16px 0 0; }
      .attachments .attachment-wrapper .field-label.has-focus {
        color: #0077B5; }
      .attachments .attachment-wrapper .field-label.is-active {
        color: #005E93; }
      .attachments .attachment-wrapper .field-label .svg-icon {
        position: relative;
        margin-top: 4px; }
    .attachments .attachment-wrapper input[type=file] {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      opacity: 0;
      cursor: pointer;
      height: 100%;
      width: 100%;
      font-size: 1000px; }
  .attachments .attachments-error-message {
    position: relative;
    opacity: 0;
    overflow: hidden;
    color: #DD2E1F;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    line-height: 48px;
    top: -32px; }
    .attachments .attachments-error-message.show-error {
      opacity: 1;
      top: 0px;
      -webkit-transition-property: top, opacity;
              transition-property: top, opacity;
      -webkit-transition-duration: 0.5s, 0.5s;
              transition-duration: 0.5s, 0.5s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .attachments .attachments-error-message.dismiss-error {
      opacity: 0;
      top: 32px;
      -webkit-transition-property: top, opacity;
              transition-property: top, opacity;
      -webkit-transition-duration: 0.5s, 0.5s;
              transition-duration: 0.5s, 0.5s;
      /*
      The 6 second delay is the amount of time the error should be on the
      screen. The other option was putting a setTimeout in the JS. We show
      the error and immediately set the dismiss class.
       */
      -webkit-transition-delay: 6s, 6s;
              transition-delay: 6s, 6s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
  .attachments .error,
  .attachments progress {
    display: none; }

.attachments-preview-panel {
  position: relative;
  border: 0 none;
  overflow: hidden;
  height: 0;
  padding: 0;
  opacity: 0;
  -webkit-transition-property: height, opacity;
          transition-property: height, opacity;
  -webkit-transition-duration: 0.25s, 0.25s;
          transition-duration: 0.25s, 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }

.attachments-preview-panel-open {
  display: block;
  opacity: 1;
  padding: 0;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-top: 0;
  -webkit-transition-property: height, width, opacity;
          transition-property: height, width, opacity;
  -webkit-transition-duration: 0.25s, 0.25s, 0.25s;
          transition-duration: 0.25s, 0.25s, 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

.attachment-preview {
  display: block;
  height: 56px;
  border: 1px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  margin: -1px;
  position: relative; }
  .attachment-preview:last-of-type {
    border-bottom-color: transparent; }
  .attachment-preview.animating {
    overflow: hidden; }
  .attachment-preview.attachment-preview-error {
    opacity: 0.7;
    border: 1px solid #DD2E1F; }
  .attachment-preview .attachment-close-panel {
    height: 56px;
    width: 24px;
    float: right; }
  .attachment-preview .attachment-discard {
    background: none;
    border: 0 none;
    cursor: pointer;
    padding: 0;
    opacity: 0.55;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 20px;
    height: 24px;
    width: 24px; }
    .attachment-preview .attachment-discard:hover, .attachment-preview .attachment-discard:focus {
      opacity: 0.7;
      outline: 0 none; }
    .attachment-preview .attachment-discard:active {
      opacity: 0.85; }
    .attachment-preview .attachment-discard[disabled], .attachment-preview .attachment-discard.disabled {
      opacity: 0.4; }
    .attachment-preview .attachment-discard:hover {
      color: black; }
    .attachment-preview .attachment-discard:focus {
      outline: none;
      color: black; }
  .attachment-preview .attachment-desc {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    opacity: 0;
    left: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: absolute;
    display: block; }
    .attachment-preview .attachment-desc.attachment-desc-error {
      color: #DD2E1F;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      top: -5px;
      opacity: 0;
      white-space: normal;
      word-wrap: break-word; }
    .attachment-preview .attachment-desc.attachment-desc-filename {
      max-width: 190px;
      opacity: 0;
      top: -5px; }
    .attachment-preview .attachment-desc.attachment-desc-filesize {
      max-width: 210px;
      opacity: 0;
      top: 15px; }
  .attachment-preview .attachment-progress-bar {
    position: absolute;
    height: 3px;
    display: block;
    opacity: 1;
    width: 100%;
    background-color: #E6E9EC;
    margin: 0;
    bottom: 0;
    overflow: hidden; }
    .attachment-preview .attachment-progress-bar .inner-bar {
      position: absolute;
      background-color: inherit;
      top: 0;
      bottom: 0;
      background-color: #008CC9;
      -webkit-transition-property: width;
              transition-property: width;
      -webkit-transition-duration: 0.3s;
              transition-duration: 0.3s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
    .attachment-preview .attachment-progress-bar .inner-bar-done-uploading {
      width: 100%; }
    .attachment-preview .attachment-progress-bar .inner-bar-show-success {
      right: 0;
      width: 0;
      -webkit-transition-property: width;
              transition-property: width;
      -webkit-transition-duration: 0.634s;
              transition-duration: 0.634s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
    .attachment-preview .attachment-progress-bar .inner-bar-show-error {
      background-color: #DD2E1F; }
  .attachment-preview .attachment-progress-bar-hide {
    opacity: 0;
    -webkit-transition-property: opacity;
            transition-property: opacity;
    -webkit-transition-duration: 0.834s;
            transition-duration: 0.834s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transition-delay: 1.3s;
            transition-delay: 1.3s; }

.attachment-preview-in .attachment-desc.attachment-desc-filename {
  top: 5px;
  opacity: 1; }

.attachment-preview-in .attachment-desc.attachment-desc-filesize {
  top: 25px;
  opacity: 1; }

.attachment-preview-in .attachment-desc.attachment-desc-error {
  opacity: 1;
  top: 5px; }

.attachment-preview-wrapper {
  width: 54px;
  height: 54px;
  padding: 0;
  border-right: 1px solid #E6E9EC;
  background-size: cover;
  background-position: center center; }
  .attachment-preview-wrapper .svg-icon {
    position: relative;
    margin: 16px;
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5); }
    .attachment-preview-wrapper .svg-icon.svg-icon-error {
      color: #DD2E1F; }
  .attachment-preview-wrapper.tipsy--se {
    position: relative;
    display: inline-block; }
    .attachment-preview-wrapper.tipsy--se:hover:before, .attachment-preview-wrapper.tipsy--se:hover:after, .attachment-preview-wrapper.tipsy--se:focus:before, .attachment-preview-wrapper.tipsy--se:focus:after {
      visibility: visible;
      opacity: 1; }
    .attachment-preview-wrapper.tipsy--se:before, .attachment-preview-wrapper.tipsy--se:after {
      position: absolute;
      visibility: hidden;
      opacity: 0;
      z-index: 1000000;
      pointer-events: none;
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transition: 250ms ease-in-out;
      -webkit-transition: 250ms ease-in-out; }
    .attachment-preview-wrapper.tipsy--se:before {
      content: '';
      border: 4px solid transparent;
      bottom: 0;
      z-index: 1000001; }
    .attachment-preview-wrapper.tipsy--se:after {
      content: attr(data-tipsy);
      background-color: #434649;
      border-radius: 2px;
      color: white;
      text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
      padding: 5px 10px;
      white-space: nowrap;
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }
    .attachment-preview-wrapper.tipsy--se:hover:before, .attachment-preview-wrapper.tipsy--se:focus:before {
      bottom: -15%; }
    .attachment-preview-wrapper.tipsy--se:hover:after, .attachment-preview-wrapper.tipsy--se:focus:after {
      top: 115%; }
    .attachment-preview-wrapper.tipsy--se:before {
      border-bottom-color: #434649;
      left: 60%;
      bottom: -35%; }
    .attachment-preview-wrapper.tipsy--se:after {
      left: 50%;
      top: 135%; }

@media (min-width: 768px) {
  .attachments .attachment-wrapper .field-label .svg-icon {
    margin: 0 8px 0 0; }
  .attachments .attachments-error-message {
    color: #DD2E1F;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    line-height: 48px; }
  .attachments-preview-panel-open {
    padding: 2px 12px 0 12px;
    height: 80px; }
  .attachment-preview {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    float: left;
    margin: 8px 8px 0 0;
    width: 0;
    opacity: 0;
    top: 1px;
    -webkit-transition-property: width, opacity;
            transition-property: width, opacity;
    -webkit-transition-duration: 0.534s, 0.834s;
            transition-duration: 0.534s, 0.834s;
    -webkit-transition-delay: 0.15s, 0.15s;
            transition-delay: 0.15s, 0.15s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .attachment-preview:last-of-type {
      border-bottom-color: rgba(0, 0, 0, 0.25); }
    .attachment-preview .attachment-discard {
      top: 0; }
    .attachment-preview.attachment-preview-in {
      width: 280px;
      opacity: 1; }
    .attachment-preview.attachment-preview-shrunk {
      width: 82px;
      opacity: 1; }
      .attachment-preview.attachment-preview-shrunk .attachment-desc.attachment-desc-filename, .attachment-preview.attachment-preview-shrunk .attachment-desc.attachment-desc-filesize, .attachment-preview.attachment-preview-shrunk .attachment-desc.attachment-desc-error {
        opacity: 0;
        width: 0;
        -webkit-transition-property: width, opacity;
                transition-property: width, opacity;
        -webkit-transition-duration: 0.534s, 0.834s;
                transition-duration: 0.534s, 0.834s;
        -webkit-transition-delay: 0.15s, 0.15s;
                transition-delay: 0.15s, 0.15s;
        -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
                transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .attachment-preview.attachment-preview-out {
      width: 0;
      opacity: 0;
      -webkit-transition-duration: 0.3s, 0.3s;
              transition-duration: 0.3s, 0.3s;
      -webkit-transition-delay: 0.15s, 0.15s;
              transition-delay: 0.15s, 0.15s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .attachment-preview:last-of-type {
      border-bottom-color: rgba(0, 0, 0, 0.25); }
    .attachment-preview .attachment-desc {
      color: rgba(0, 0, 0, 0.55);
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334; }
      .attachment-preview .attachment-desc.attachment-desc-filename {
        top: 5px;
        opacity: 1; }
      .attachment-preview .attachment-desc.attachment-desc-filesize {
        top: 25px;
        opacity: 1; }
      .attachment-preview .attachment-desc.attachment-desc-error {
        opacity: 1;
        top: 5px; } }

.detailed-list-entry-link {
  display: block; }
  .detailed-list-entry-link .detailed-content-header {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 16.0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .detailed-list-entry-link .date-header {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 8.0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .detailed-list-entry-link:hover .detailed-content-header, .detailed-list-entry-link:focus .detailed-content-header {
    color: #0077B5; }
  .detailed-list-entry-link:active .detailed-content-header {
    color: #005E93; }

.sign-in-cases,
.no-open-cases {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 12.0px; }

.survey {
  position: fixed;
  bottom: 0;
  right: 24px;
  border: 1px solid #E6E9EC;
  border-bottom: 0 none;
  overflow: hidden;
  background: #FFFFFF;
  width: 384px;
  border-radius: 2px 2px 0 0;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-property: -webkit-transform, bottom;
          transition-property: transform, bottom;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.667s, 0.667s;
          transition-duration: 0.667s, 0.667s; }
  .survey.is-not-started {
    bottom: 48px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
    .survey.is-not-started .survey-form-container {
      -webkit-transform: translateY(20%);
              transform: translateY(20%); }
  .survey.is-minimized .survey-form-container {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .survey.is-in-progress .survey-prompt .survey-trigger {
    background: #F0F3F6; }
  .survey.remove {
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s; }
  .survey .survey-questions,
  .survey .survey-form-container,
  .survey .survey-form,
  .survey .question-container {
    overflow: hidden; }
  .survey .survey-prompt {
    width: 100%;
    height: 48px;
    position: relative; }
    .survey .survey-prompt .survey-trigger {
      position: absolute;
      height: 100%;
      width: 100%;
      text-align: left;
      padding: 0 52px 0 24px;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      background: #FFFFFF; }
      .survey .survey-prompt .survey-trigger:hover, .survey .survey-prompt .survey-trigger:focus {
        background: #F0F3F6;
        outline: 0 none; }
      .survey .survey-prompt .survey-trigger:active {
        background: #E6E9EC; }
    .survey .survey-prompt .survey-dismiss {
      background: none;
      border: 0 none;
      cursor: pointer;
      padding: 0;
      opacity: 0.55;
      display: inline-block;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 52px; }
      .survey .survey-prompt .survey-dismiss:hover, .survey .survey-prompt .survey-dismiss:focus {
        opacity: 0.7;
        outline: 0 none; }
      .survey .survey-prompt .survey-dismiss:active {
        opacity: 0.85; }
      .survey .survey-prompt .survey-dismiss[disabled], .survey .survey-prompt .survey-dismiss.disabled {
        opacity: 0.4; }
  .survey .survey-form-container {
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-property: -webkit-transform;
            transition-property: transform;
    -webkit-transition-duration: 0.667s;
            transition-duration: 0.667s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
    .survey .survey-form-container[aria-hidden=true] {
      visibility: hidden; }
    .survey .survey-form-container .question-container {
      width: 400%;
      overflow: hidden;
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-transition-property: -webkit-transform;
              transition-property: transform;
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .survey .survey-form-container .field {
      float: left;
      width: 25%;
      padding: 16px 24px 24px;
      opacity: 0;
      visibility: hidden;
      -webkit-transition-property: opacity;
              transition-property: opacity;
      -webkit-transition-duration: 0.417s;
              transition-duration: 0.417s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
      -webkit-transition-delay: 0.083s;
              transition-delay: 0.083s; }
      .survey .survey-form-container .field.current, .survey .survey-form-container .field.previous {
        opacity: 1;
        visibility: visible; }
    .survey .survey-form-container .survey-question {
      display: block;
      width: 100%;
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      padding-top: 16px; }
    .survey .survey-form-container .feedback-text {
      height: 120px;
      resize: none; }
    .survey .survey-form-container .feedback-warning {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 8.0px; }
  .survey .controls-container {
    box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 1px 0 inset;
    padding: 16px 24px;
    overflow: hidden; }
    .survey .controls-container .survey-progress {
      display: inline-block;
      margin-top: 9px;
      color: rgba(0, 0, 0, 0.55);
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923; }
    .survey .controls-container .survey-buttons {
      float: right; }
      .survey .controls-container .survey-buttons .survey-pagination {
        float: right; }
      .survey .controls-container .survey-buttons .btn {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin-left: 8px;
        float: right; }
  .survey .survey-complete {
    padding: 36px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    opacity: 0;
    -webkit-transition-property: opacity;
            transition-property: opacity;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s; }
    .survey .survey-complete.is-shown {
      opacity: 1; }
    .survey .survey-complete .survey-complete-message {
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 100%;
      padding: 36px; }
    .survey .survey-complete .icon-wrapper {
      display: inline-block;
      border: 2px solid #737679;
      border-radius: 50%;
      padding: 8px; }
    .survey .survey-complete .survey-complete-message-header {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 8.0px; }
    .survey .survey-complete .survey-complete-message-copy {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 12.0px; }
    .survey .survey-complete .survey-dismiss {
      position: absolute;
      margin: 0;
      right: 8px;
      top: 10px; }
  .survey .survey-dismiss {
    background: none;
    border: 0 none;
    cursor: pointer;
    padding: 0;
    opacity: 0.55;
    display: inline-block; }
    .survey .survey-dismiss:hover, .survey .survey-dismiss:focus {
      opacity: 0.7;
      outline: 0 none; }
    .survey .survey-dismiss:active {
      opacity: 0.85; }
    .survey .survey-dismiss[disabled], .survey .survey-dismiss.disabled {
      opacity: 0.4; }
    .survey .survey-dismiss .svg-icon {
      -webkit-transition-property: -webkit-transform;
              transition-property: transform;
      -webkit-transition-duration: 0.167s;
              transition-duration: 0.167s;
      -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .survey .survey-dismiss:active .svg-icon {
      -webkit-transition-duration: 0.050s;
              transition-duration: 0.050s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      -webkit-transform: scale(0.5);
              transform: scale(0.5); }

.smart-assist-mask {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
          transition: opacity 0.5s; }
  .smart-assist-mask:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .smart-assist-mask.open {
    opacity: 1; }

.smart-assist-modal {
  position: absolute;
  top: 150%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  outline: none;
  text-align: left;
  -webkit-transition: top 0.5s;
          transition: top 0.5s;
  padding: 48px 0 56px 0; }
  .smart-assist-modal .dialog-title .dialog-close {
    display: none; }
  .smart-assist-modal.open {
    top: 0; }
  .smart-assist-modal .dialog-content-container {
    height: 100%; }
  .smart-assist-modal .dialog-title {
    padding: 20px; }
    .smart-assist-modal .dialog-title .title {
      font-weight: 300;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      padding: 0;
      margin: 0; }
  .smart-assist-modal .dialog-body {
    padding: 20px; }
  @media (min-width: 768px) {
    .smart-assist-modal {
      top: 50%;
      left: 50%;
      width: 700px;
      max-width: 95%;
      height: auto;
      max-height: 80%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      overflow-y: auto;
      border-radius: 5px;
      border: 1px solid #D0D3D6;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      -webkit-transition: opacity 1s;
              transition: opacity 1s; }
      .smart-assist-modal.open {
        top: 50%;
        opacity: 1; } }
  .smart-assist-modal .dialog-header {
    position: absolute;
    height: 48px;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #D0D3D6; }
    .smart-assist-modal .dialog-header .dialog-title {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      line-height: 48px;
      padding: 0 0 0 24px; }
    .smart-assist-modal .dialog-header .dialog-close {
      position: absolute;
      right: 0;
      top: 0;
      height: 48px;
      width: 48px;
      background: none;
      border: 0 none;
      cursor: pointer;
      padding: 0;
      opacity: 0.55;
      display: inline-block; }
      .smart-assist-modal .dialog-header .dialog-close:hover, .smart-assist-modal .dialog-header .dialog-close:focus {
        opacity: 0.7;
        outline: 0 none; }
      .smart-assist-modal .dialog-header .dialog-close:active {
        opacity: 0.85; }
      .smart-assist-modal .dialog-header .dialog-close[disabled], .smart-assist-modal .dialog-header .dialog-close.disabled {
        opacity: 0.4; }
      .smart-assist-modal .dialog-header .dialog-close .svg-icon {
        -webkit-transition-property: -webkit-transform;
                transition-property: transform;
        -webkit-transition-duration: 0.167s;
                transition-duration: 0.167s;
        -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
                transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
      .smart-assist-modal .dialog-header .dialog-close:active .svg-icon {
        -webkit-transition-duration: 0.050s;
                transition-duration: 0.050s;
        -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
                transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
        -webkit-transform: scale(0.5);
                transform: scale(0.5); }
  .smart-assist-modal .loading-mask .loading-icon {
    top: 50%; }
  .smart-assist-modal .dialog-footer {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset;
    background: #FFFFFF;
    text-align: center; }
    .smart-assist-modal .dialog-footer .home-link,
    .smart-assist-modal .dialog-footer .next-button {
      color: #008CC9;
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      height: 24px;
      margin: 0;
      padding: 0; }
      .smart-assist-modal .dialog-footer .home-link:hover, .smart-assist-modal .dialog-footer .home-link:focus,
      .smart-assist-modal .dialog-footer .next-button:hover,
      .smart-assist-modal .dialog-footer .next-button:focus {
        outline: 0 none;
        color: #0077B5; }
      .smart-assist-modal .dialog-footer .home-link:active,
      .smart-assist-modal .dialog-footer .next-button:active {
        color: #005E93; }
    .smart-assist-modal .dialog-footer .next-button {
      float: right; }
      .smart-assist-modal .dialog-footer .next-button .svg-icon {
        color: #008CC9;
        float: right;
        margin: -1px 0 0 8px; }
    .smart-assist-modal .dialog-footer .dialog-next {
      display: none; }
    .smart-assist-modal .dialog-footer .dialog-complete {
      display: none;
      text-align: center; }
    .smart-assist-modal .dialog-footer .dialog-feedback .prompt {
      height: 24px; }
      .smart-assist-modal .dialog-footer .dialog-feedback .prompt h3 {
        color: rgba(0, 0, 0, 0.85);
        font-weight: 400;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.41176471;
        margin: 0;
        padding: 0; }
    .smart-assist-modal .dialog-footer .dialog-feedback .rate-actions {
      margin: 8px 6px 0; }
    .smart-assist-modal .dialog-footer .dialog-feedback .rate-action {
      margin-left: 8px; }
      .smart-assist-modal .dialog-footer .dialog-feedback .rate-action .name {
        display: block; }
    .smart-assist-modal .dialog-footer.answer-helpful .dialog-feedback {
      display: none; }
    .smart-assist-modal .dialog-footer.answer-helpful .dialog-complete {
      display: block; }
    .smart-assist-modal .dialog-footer.answer-unhelpful .dialog-feedback {
      display: none; }
    .smart-assist-modal .dialog-footer.answer-unhelpful .dialog-next {
      display: block; }
  .smart-assist-modal .dialog-body {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0; }
  .smart-assist-modal .hc-answer {
    -webkit-animation: fadeIn 200ms linear both;
    animation: fadeIn 200ms linear both;
    padding: 24px 24px 48px 24px; }
    .smart-assist-modal .hc-answer .answer-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px; }
    .smart-assist-modal .hc-answer .rnt-answer-body h1 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 32.0px; }
    .smart-assist-modal .hc-answer .rnt-answer-body h2 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 32.0px; }
    .smart-assist-modal .hc-answer .rnt-answer-body h3 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 24.0px; }
    .smart-assist-modal .hc-answer .rnt-answer-body h4 {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 20.0px; }
    .smart-assist-modal .hc-answer .rnt-answer-body .collapsible {
      margin-top: 16px; }
    .smart-assist-modal .hc-answer.answer-out {
      position: absolute; }
  @media (min-width: 768px) {
    .smart-assist-modal {
      overflow: hidden;
      height: 90%;
      width: 80%;
      max-width: 1200px; } }

.smart-assistant-results {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-top: 0 none; }
  .smart-assistant-results .assist-result-wrapper {
    position: relative;
    padding: 0 10px;
    overflow: hidden; }
  .smart-assistant-results .feature-launcher {
    margin-top: 16px; }
  .smart-assistant-results .assist-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 8.0px;
    padding-bottom: 8px; }
  .smart-assistant-results .assist-entry {
    padding-bottom: 16px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .smart-assistant-results .assist-entry:last-of-type {
      box-shadow: none; }
  .smart-assistant-results .assist-button {
    text-align: left; }
    .smart-assistant-results .assist-button:hover, .smart-assistant-results .assist-button:focus {
      outline: 0 none; }
      .smart-assistant-results .assist-button:hover .assist-entry-title, .smart-assistant-results .assist-button:focus .assist-entry-title {
        color: #0077B5; }
    .smart-assistant-results .assist-button:active .assist-entry-title {
      color: #005E93; }
    .smart-assistant-results .assist-button .assist-entry-title {
      color: #008CC9;
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 20.0px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .smart-assistant-results .assist-button .assist-entry-excerpt {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px; }

@media (min-width: 768px) {
  .smart-assist-modal .dialog-body {
    overflow: auto; }
  .smart-assist-modal .dialog-footer {
    padding: 16px 12px 16px 24px;
    bottom: -1px; }
    .smart-assist-modal .dialog-footer .dialog-feedback .prompt {
      float: left; }
    .smart-assist-modal .dialog-footer .dialog-feedback .rate-actions {
      float: right;
      margin: 0px 6px; }
  .smart-assistant-results .assist-entry {
    padding-bottom: 24px; }
  .smart-assistant-results .assist-button .assist-entry-title {
    color: #008CC9;
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 8.0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; } }

.mobile-drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 100;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  /* JavaScript will not see clicks on mobile without cursor: pointer; Otherwise have to use touch events. */
  cursor: pointer; }
  .mobile-drawer-mask.show-mask {
    display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  padding: 48px 0 41px;
  background: #FFFFFF;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 101;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition-property: -webkit-transform;
          transition-property: transform;
  -webkit-transition-duration: 0.667s;
          transition-duration: 0.667s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
  .mobile-drawer.drawer-open {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  .mobile-drawer.closing {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
  .mobile-drawer .drawer-header {
    position: absolute;
    top: 0;
    left: 0;
    height: 48px;
    width: 100%;
    padding-right: 40px;
    border-bottom: 1px solid #F0F3F6; }
  .mobile-drawer .drawer-header-branding {
    padding: 8px 12px; }
    .mobile-drawer .drawer-header-branding .hc-title {
      display: inline-block;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471; }
    .mobile-drawer .drawer-header-branding .li-logo {
      height: 32px;
      margin: 0; }
  .mobile-drawer .drawer-header-product-switcher {
    position: absolute;
    right: 0;
    top: 0;
    height: 48px;
    width: 40px; }
    .mobile-drawer .drawer-header-product-switcher .product-menu {
      position: absolute;
      right: 0;
      top: 0;
      height: 48px;
      width: 40px; }
      .mobile-drawer .drawer-header-product-switcher .product-menu .mobile-product-switcher {
        position: absolute;
        right: 0;
        top: 0;
        height: 48px;
        width: 40px;
        opacity: 0; }
    .mobile-drawer .drawer-header-product-switcher .product-button {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      height: 48px;
      width: 40px;
      padding: 12px 8px;
      text-align: center;
      color: rgba(0, 0, 0, 0.55); }
      .mobile-drawer .drawer-header-product-switcher .product-button.is-focused {
        color: rgba(0, 0, 0, 0.7); }
  .mobile-drawer .drawer-content {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: 100%; }
    .mobile-drawer .drawer-content .drawer-inner-content {
      height: calc(100% + 1px); }
  .mobile-drawer .drawer-content-link-list {
    overflow: hidden;
    padding-top: 16px; }
  .mobile-drawer .drawer-content-link {
    display: block;
    position: relative;
    padding: 8px 16px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059; }
    .mobile-drawer .drawer-content-link.cases-link {
      padding-right: 52px; }
    .mobile-drawer .drawer-content-link:hover, .mobile-drawer .drawer-content-link:focus {
      color: #008CC9; }
    .mobile-drawer .drawer-content-link:active {
      color: #0077B5; }
    .mobile-drawer .drawer-content-link .case-number-label {
      position: absolute;
      right: 16px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
      .mobile-drawer .drawer-content-link .case-number-label:empty {
        display: none; }
  .mobile-drawer .drawer-footer {
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 40px;
    border-top: 1px solid #F0F3F6; }
  .mobile-drawer .drawer-footer-profile {
    height: 40px; }
    .mobile-drawer .drawer-footer-profile .anon-user {
      display: block;
      color: #008CC9;
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      text-align: center;
      line-height: 40px; }
      .mobile-drawer .drawer-footer-profile .anon-user:hover, .mobile-drawer .drawer-footer-profile .anon-user:focus {
        color: #0077B5; }
      .mobile-drawer .drawer-footer-profile .anon-user:active {
        color: #005E93; }
    .mobile-drawer .drawer-footer-profile .drawer-footer-signout {
      display: block;
      overflow: hidden;
      padding: 8px 12px;
      color: #008CC9;
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      line-height: 24px; }
      .mobile-drawer .drawer-footer-profile .drawer-footer-signout:hover, .mobile-drawer .drawer-footer-profile .drawer-footer-signout:focus {
        color: #0077B5; }
      .mobile-drawer .drawer-footer-profile .drawer-footer-signout:active {
        color: #005E93; }
    .mobile-drawer .drawer-footer-profile .profile-image {
      float: right;
      height: 24px;
      width: 24px;
      overflow: hidden;
      vertical-align: middle;
      border-radius: 50%;
      box-sizing: content-box;
      border: 1px solid #F0F3F6;
      margin: -1px; }

.forum-filter-bar {
  overflow: hidden;
  margin: 0 -16px;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
  /* TODO: Review this after we update the icons after converting to the NPM pipeline */ }
  .forum-filter-bar .forum-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 300;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    padding: 16px;
    margin: 0;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
  .forum-filter-bar .forum-sort-dropdown {
    display: none; }
  .forum-filter-bar .sort-select-wrapper {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    float: left;
    padding: 16px 0 16px 16px;
    position: relative; }
    .forum-filter-bar .sort-select-wrapper .forum-sort-emphasis {
      font-weight: 200;
      display: inline-block;
      padding: 0;
      margin: 0; }
      .forum-filter-bar .sort-select-wrapper .forum-sort-emphasis:hover, .forum-filter-bar .sort-select-wrapper .forum-sort-emphasis:focus {
        color: #008CC9; }
      .forum-filter-bar .sort-select-wrapper .forum-sort-emphasis:active {
        color: #0077B5; }
    .forum-filter-bar .sort-select-wrapper .forum-sort-icon {
      margin-left: 4px; }
    .forum-filter-bar .sort-select-wrapper .sort-select {
      opacity: 0;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      font-size: 16px;
      height: auto;
      width: auto;
      padding: 0; }
  .forum-filter-bar .forum-filter-dropdown {
    display: none; }
  .forum-filter-bar .filter-select-wrapper {
    float: right;
    padding: 16px 16px 16px 0;
    width: auto;
    position: relative; }
    .forum-filter-bar .filter-select-wrapper .filter-select-trigger {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      padding: 0;
      margin: 0; }
    .forum-filter-bar .filter-select-wrapper .filter-select {
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      font-size: 16px;
      height: auto;
      width: auto; }
  .forum-filter-bar .forum-filter-icon {
    margin: 0 4px 0 0;
    height: 16px;
    width: 16px; }

.applied-tag-list {
  box-shadow: #D0D3D6 0 0 0, #D0D3D6 0 0 0, #D0D3D6 0 1px 0, #D0D3D6 0 0 0;
  margin: 0 -16px; }
  .applied-tag-list .tag-list {
    margin-top: 0;
    padding: 0 16px 8px; }

.forum-question-list {
  margin-bottom: 24px; }

.forum-question-item {
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
  overflow: hidden;
  position: relative;
  padding-bottom: 16px; }
  .forum-question-item .profile-img {
    border-radius: 16px;
    height: 32px;
    width: 32px;
    float: left;
    margin: 20px 16px 0 0; }
  .forum-question-item .content-wrapper {
    overflow: hidden; }
  .forum-question-item .forum-question-detail {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }
    .forum-question-item .forum-question-detail:after {
      display: none; }
    .forum-question-item .forum-question-detail .profile-url-link {
      color: rgba(0, 0, 0, 0.55); }
      .forum-question-item .forum-question-detail .profile-url-link:hover, .forum-question-item .forum-question-detail .profile-url-link:focus {
        color: #008CC9; }
      .forum-question-item .forum-question-detail .profile-url-link:active {
        color: #0077B5; }
  .forum-question-item .tag-list {
    display: none; }
  .forum-question-item .forum-question-stat-list .forum-question-stat {
    display: inline-block;
    margin-right: 8px; }
  .forum-question-item .forum-question-stat-list .forum-question-stat-count {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px;
    margin-right: 4px;
    display: inline-block; }
  .forum-question-item .forum-question-stat-list .forum-question-stat-label {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 8.0px;
    display: inline-block; }
  .forum-question-item .resolved-question-tag {
    color: #4E8F13;
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 0px; }
    .forum-question-item .resolved-question-tag .resolved-tag-text {
      display: inline-block;
      vertical-align: middle;
      margin-bottom: -2px; }

.forum-card-title {
  color: rgba(0, 0, 0, 0.85); }
  .forum-card-title:active {
    color: #0077B5; }

.ask-community-button {
  margin: 24px 0; }
  .ask-community-button:hover, .ask-community-button:focus {
    color: #FFFFFF; }

.no-results-container {
  padding-top: 16px;
  padding-bottom: 40px; }

.forum-suggestions {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 12.0px; }
  .forum-suggestions a {
    color: #008CC9; }
    .forum-suggestions a:hover, .forum-suggestions a:focus {
      color: #0077B5; }
    .forum-suggestions a:active {
      color: #005E93; }

.view-admin-link {
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
  line-height: 18px;
  padding: 3px 16px;
  background-color: transparent;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.55);
  height: 24px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  margin-top: 16px; }
  .view-admin-link li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 11px;
    padding: 0 6px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .view-admin-link:visited {
    color: rgba(0, 0, 0, 0.55); }
  .view-admin-link:hover:not(:disabled), .view-admin-link:focus:not(:disabled) {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.55); }
  .view-admin-link::-moz-focus-inner {
    border: 0; }
  .view-admin-link:active:not(:disabled) {
    background-color: transparent;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.85);
    color: rgba(0, 0, 0, 0.85); }
  .view-admin-link:disabled {
    opacity: 0.4;
    cursor: default; }
  .question-container .view-admin-link {
    margin-top: 8px;
    float: right; }

@media (min-width: 768px) {
  .forum-filter-bar {
    margin: 0;
    padding-bottom: 16px;
    box-shadow: none; }
    .forum-filter-bar .sort-select-wrapper {
      padding: 0;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 28.0px;
      margin-left: 8px; }
    .forum-filter-bar .filter-select-wrapper {
      padding: 0;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 28.0px; }
    .forum-filter-bar .forum-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 300;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.07692308;
      display: block;
      padding: 5px 0 3px;
      margin-bottom: -8px;
      margin-top: 20.0px;
      float: left;
      box-shadow: none; }
  .applied-tag-list {
    box-shadow: #D0D3D6 0 0 0, #D0D3D6 0 0 0, #D0D3D6 0 1px 0, #D0D3D6 0 -1px 0;
    margin: 0; }
    .applied-tag-list .tag-list {
      margin-top: 0;
      padding: 0 0 8px; }
  .forum-question-item {
    padding-right: 280px;
    padding-bottom: 24px; }
    .forum-question-item:first-child {
      box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset; }
      .browse-question-list .forum-question-item:first-child {
        box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0px 0 inset; }
    .forum-question-item .tag-list {
      display: block; }
    .forum-question-item .profile-img {
      border-radius: 20px;
      height: 40px;
      width: 40px; }
    .forum-question-item .forum-question-stat-list {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
      .forum-question-item .forum-question-stat-list .forum-question-stat {
        width: 80px;
        text-align: center;
        margin: 0; }
      .forum-question-item .forum-question-stat-list .forum-question-stat-count {
        color: rgba(0, 0, 0, 0.55);
        font-weight: 300;
        font-size: 32px;
        font-size: 3.2rem;
        margin: 0;
        padding: 0;
        margin-bottom: -8px;
        display: block; }
      .forum-question-item .forum-question-stat-list .forum-question-stat-label {
        color: rgba(0, 0, 0, 0.7);
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        margin: 0;
        padding: 0;
        display: block; }
    .forum-question-item .resolved-question-tag {
      color: #4E8F13;
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px; }
      .forum-question-item .resolved-question-tag .resolved-tag-text {
        margin-bottom: 0; }
  .no-results-container {
    padding-top: 0; }
  .forum-suggestions {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 16.0px; } }

@media (min-width: 1024px) {
  .forum-filter-bar .forum-sort-dropdown {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 28.0px;
    float: left;
    padding-left: 16px;
    display: block; }
    .forum-filter-bar .forum-sort-dropdown .forum-sort-emphasis {
      font-weight: 200; }
      .forum-filter-bar .forum-sort-dropdown .forum-sort-emphasis:hover, .forum-filter-bar .forum-sort-dropdown .forum-sort-emphasis:focus {
        color: #008CC9; }
      .forum-filter-bar .forum-sort-dropdown .forum-sort-emphasis:active {
        color: #0077B5; }
    .forum-filter-bar .forum-sort-dropdown .forum-sort-icon {
      margin-left: 4px; }
    .forum-filter-bar .forum-sort-dropdown .forum-sort-subnav-links {
      left: auto;
      min-width: 0;
      top: auto;
      margin-top: 4px;
      margin-left: 48px;
      z-index: 1; }
  .forum-filter-bar .sort-select-wrapper {
    display: none; }
  .forum-filter-bar .filter-select-wrapper {
    display: none; }
  .forum-filter-bar .forum-filter-dropdown {
    float: right;
    display: block; }
    .forum-filter-bar .forum-filter-dropdown .subnav-trigger {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 28.0px; }
      .forum-filter-bar .forum-filter-dropdown .subnav-trigger:hover, .forum-filter-bar .forum-filter-dropdown .subnav-trigger:focus {
        color: #008CC9; }
      .forum-filter-bar .forum-filter-dropdown .subnav-trigger:active {
        color: #0077B5; }
    .forum-filter-bar .forum-filter-dropdown .filter-button-bar {
      box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0px 0 inset;
      margin-bottom: 8px; }
    .forum-filter-bar .forum-filter-dropdown .forum-filter-subnav-links {
      top: auto;
      left: auto;
      min-width: 0;
      width: 460px;
      margin: 24px 0 0 -152px;
      z-index: 2; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-subnav-links.has-caret:before {
        top: -12px;
        right: 50%;
        border: 12px solid transparent;
        border-top: none;
        border-bottom-color: #FFFFFF;
        z-index: 2; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-subnav-links.has-caret:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        top: -14px;
        right: 50%;
        margin-right: -2px;
        border: 14px solid transparent;
        border-top: none;
        border-bottom-color: rgba(0, 0, 0, 0.15); }
    .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel,
    .forum-filter-bar .forum-filter-dropdown .forum-filter-submit {
      display: inline-block;
      width: 50%;
      text-align: center;
      margin: 8px 0; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button,
      .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button {
        font-weight: 400;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.17647059;
        border: 0;
        border-radius: 2px;
        box-sizing: border-box;
        box-shadow: inset 0 0 0 1px #008CC9;
        padding: 4px 16px;
        background-color: transparent;
        outline: none;
        display: inline-block;
        text-decoration: none;
        -webkit-transition: color .15s;
                transition: color .15s;
        cursor: pointer;
        color: #008CC9;
        height: 32px;
        text-align: center;
        position: relative;
        vertical-align: middle;
        box-shadow: none;
        color: rgba(0, 0, 0, 0.55);
        font-weight: 400;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.17647059; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button li-icon.svg-icon,
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button li-icon.svg-icon {
          width: 24px;
          height: 24px;
          position: relative;
          top: 10px;
          padding: 0 4px 0 0;
          left: 0;
          margin: -12px 0 0 -8px;
          vertical-align: baseline; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button:visited,
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button:visited {
          color: #008CC9; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button:hover:not(:disabled), .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button:focus:not(:disabled),
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button:hover:not(:disabled),
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button:focus:not(:disabled) {
          background-color: transparent;
          color: #0077B5;
          box-shadow: none; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button::-moz-focus-inner,
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button::-moz-focus-inner {
          border: 0; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button:active:not(:disabled),
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button:active:not(:disabled) {
          background-color: transparent;
          -webkit-transition: box-shadow .15s, color .15s;
                  transition: box-shadow .15s, color .15s;
          box-shadow: none;
          color: #005E93; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-cancel .filter-dropdown-button:disabled,
        .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button:disabled {
          opacity: 0.4;
          cursor: default; }
    .forum-filter-bar .forum-filter-dropdown .forum-filter-submit {
      box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-submit .filter-dropdown-button {
        color: #008CC9;
        font-weight: 400;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.17647059; }
    .forum-filter-bar .forum-filter-dropdown .filter-select-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #008CC9;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      color: rgba(0, 0, 0, 0.55);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      margin: 4px 7px 4px -10px; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button:visited {
        color: #008CC9; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button:hover:not(:disabled), .forum-filter-bar .forum-filter-dropdown .filter-select-button:focus:not(:disabled) {
        background-color: transparent;
        color: #0077B5;
        box-shadow: none; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button::-moz-focus-inner {
        border: 0; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: none;
        color: #005E93; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button:disabled {
        opacity: 0.4;
        cursor: default; }
      .forum-filter-bar .forum-filter-dropdown .filter-select-button:first-of-type {
        margin-left: 7px; }
    .forum-filter-bar .forum-filter-dropdown .forum-filter-questions,
    .forum-filter-bar .forum-filter-dropdown .forum-filter-tags {
      padding: 0 24px; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-questions .forum-filter-header,
      .forum-filter-bar .forum-filter-dropdown .forum-filter-tags .forum-filter-header {
        padding-bottom: 8px;
        color: rgba(0, 0, 0, 0.55);
        font-weight: 700;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0;
        margin-top: 12.0px;
        text-transform: uppercase; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-questions .forum-filter-list,
      .forum-filter-bar .forum-filter-dropdown .forum-filter-tags .forum-filter-list {
        overflow: hidden;
        margin-top: 4px; }
      .forum-filter-bar .forum-filter-dropdown .forum-filter-questions .forum-filter-type,
      .forum-filter-bar .forum-filter-dropdown .forum-filter-tags .forum-filter-type {
        padding: 4px 8px 4px 0;
        width: 50%;
        float: left; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-questions .forum-filter-type:focus .forum-filter-label,
        .forum-filter-bar .forum-filter-dropdown .forum-filter-tags .forum-filter-type:focus .forum-filter-label {
          color: #0077B5; }
        .forum-filter-bar .forum-filter-dropdown .forum-filter-questions .forum-filter-type .forum-filter-label,
        .forum-filter-bar .forum-filter-dropdown .forum-filter-tags .forum-filter-type .forum-filter-label {
          white-space: normal; }
    .forum-filter-bar .forum-filter-dropdown .forum-filter-questions {
      margin-bottom: 4px; }
    .forum-filter-bar .forum-filter-dropdown .forum-filter-tags {
      box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0px 0 inset;
      padding-bottom: 16px; } }

.forum-profile-info {
  margin-top: 40px;
  padding: 24px;
  border-radius: 2px;
  box-shadow: #E6E9EC -1px 0 0 inset, #E6E9EC 1px 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 1px 0 inset;
  overflow: hidden; }
  .forum-profile-info .profile-picture {
    height: 72px;
    width: 72px;
    border-radius: 35px;
    float: left;
    margin-right: 16px; }
  .forum-profile-info .profile-name {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 16.0px;
    float: left; }
  .forum-profile-info .answers-wrapper {
    float: right;
    text-align: center; }
    .forum-profile-info .answers-wrapper .answers-number {
      font-size: 46px;
      color: rgba(0, 0, 0, 0.55);
      line-height: 1;
      margin-top: 4px;
      margin-bottom: -10px; }
    .forum-profile-info .answers-wrapper .answers-text {
      color: rgba(0, 0, 0, 0.55);
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0; }

.forum-ask-link {
  color: #008CC9; }
  .forum-ask-link:hover, .forum-ask-link:focus {
    color: #0077B5; }
  .forum-ask-link:active {
    color: #005E93; }

.forum-ask-form .forum-ask-title-wrapper {
  padding-bottom: 24px;
  overflow: hidden;
  box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0 0 inset; }
  .forum-ask-form .forum-ask-title-wrapper .forum-ask-title {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }

.forum-ask-form .forum-ask-name {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 300;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 20.0px; }

.forum-ask-form .field-desc {
  color: rgba(0, 0, 0, 0.55);
  font-style: italic;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0; }

.forum-ask-form .error-message {
  color: #DD2E1F;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0; }

.forum-ask-form .question-field {
  margin-top: 16px; }

.forum-ask-form > .fields {
  margin-top: 8px; }

.forum-ask-form .field {
  margin-bottom: 8px; }
  .forum-ask-form .field textarea {
    resize: vertical;
    height: 240px;
    display: block; }

.forum-ask-form .input-container {
  margin-top: 8px; }

.forum-ask-form .forum-ask-submit {
  width: 100%;
  margin: 8px 0; }

.forum-ask-form .static-value {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0; }

.forum-ask-form .topics-list {
  padding: 16px 24px 24px;
  box-shadow: rgba(0, 0, 0, 0.25) -1px 0 0 inset, rgba(0, 0, 0, 0.25) 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 -1px 0 inset, rgba(0, 0, 0, 0.25) 0 1px 0 inset;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 8px; }
  .forum-ask-form .topics-list.input-field-error {
    box-shadow: #DD2E1F -1px 0 0 inset, #DD2E1F 1px 0 0 inset, #DD2E1F 0 -1px 0 inset, #DD2E1F 0 1px 0 inset; }

.forum-ask-form .add-filters-wrapper {
  margin-top: 8px;
  width: 100%;
  position: relative;
  height: 32px; }

.forum-ask-form .forum-ask-add-filters {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: transparent;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #008CC9;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  width: 100%; }
  .forum-ask-form .forum-ask-add-filters li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .forum-ask-form .forum-ask-add-filters:visited {
    color: #008CC9; }
  .forum-ask-form .forum-ask-add-filters:hover:not(:disabled), .forum-ask-form .forum-ask-add-filters:focus:not(:disabled) {
    background-color: transparent;
    color: #0077B5;
    box-shadow: inset 0 0 0 2px #008CC9; }
  .forum-ask-form .forum-ask-add-filters::-moz-focus-inner {
    border: 0; }
  .forum-ask-form .forum-ask-add-filters:active:not(:disabled) {
    background-color: transparent;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93;
    color: #005E93; }
  .forum-ask-form .forum-ask-add-filters:disabled {
    opacity: 0.4;
    cursor: default; }

.forum-ask-form .forum-filters-select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  font-size: 16px;
  z-index: -1; }

.forum-ask-form .topics-item {
  width: 33%;
  float: left;
  margin-top: 8px; }
  .forum-ask-form .topics-item:nth-of-type(3n + 1) {
    clear: both; }

.forum-ask-form .forum-submit-wrapper {
  padding: 24px 16px;
  margin: 24px -16px 0;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset; }

.about-forum-title {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 4.0px;
  text-transform: uppercase; }

.forum-tips-title {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 28.0px;
  text-transform: uppercase; }

.forum-tips-list {
  padding: 0 0 16px 24px; }
  .forum-tips-list .forum-tips-item {
    list-style: disc outside none;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 20.0px;
    display: list-item; }
    .forum-tips-list .forum-tips-item:first-child {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 12.0px;
      display: list-item; }

.about-forum-description {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 12.0px; }

@media (min-width: 768px) {
  .forum-ask-form .forum-ask-title-wrapper {
    padding-bottom: 40px;
    overflow: hidden;
    box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0 0 inset; }
    .forum-ask-form .forum-ask-title-wrapper .forum-ask-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 28.0px; }
  .forum-ask-form .forum-ask-name {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 24.0px; }
  .forum-ask-form .forum-ask-submit {
    float: right;
    width: auto;
    margin-bottom: 24px; }
  .forum-ask-form .topics-list {
    display: block; }
  .forum-ask-form .forum-submit-wrapper {
    padding: 0;
    margin: 16px 0;
    box-shadow: none; }
  .forum-ask-form .add-filters-wrapper {
    display: none; }
  .about-forum-title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 28.0px; } }

.add-email-container {
  overflow: hidden;
  text-align: center;
  padding-bottom: 40px; }
  .add-email-container .add-email-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 24.0px; }
  .add-email-container .add-email-description {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }

.add-email-button {
  font-weight: 400;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 28px;
  padding: 6px 24px;
  background-color: #008CC9;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #FFFFFF;
  height: 40px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  box-shadow: none;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  margin-top: 32px; }
  .add-email-button li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 9px;
    padding: 0 6px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .add-email-button:visited {
    color: #FFFFFF; }
  .add-email-button:hover:not(:disabled), .add-email-button:focus:not(:disabled) {
    background-color: #0077B5;
    box-shadow: none; }
  .add-email-button::-moz-focus-inner {
    border: 0; }
  .add-email-button:active:not(:disabled) {
    background-color: #005E93;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93; }
  .add-email-button:disabled {
    opacity: 0.4;
    cursor: default; }
  .add-email-button:hover, .add-email-button:focus {
    color: white; }

@media (min-width: 768px) {
  .add-email-container {
    padding-bottom: 208px;
    max-width: 744px;
    margin: 0 auto; }
    .add-email-container .add-email-title {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 34px;
      font-size: 3.4rem;
      line-height: 1.05882353;
      display: block;
      margin-bottom: -12px;
      padding: 2px 0 6px;
      margin-top: 176.0px; }
    .add-email-container .add-email-description {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 300;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.41176471;
      display: block;
      margin-bottom: -8px;
      padding: 6px 0 2px 0;
      margin-top: 16.0px; }
  .add-email-button {
    width: auto; } }

.forum-question-detail {
  position: relative; }
  .forum-question-detail:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -16px;
    right: -16px;
    height: 1px;
    background: #D0D3D6; }

.forum-title {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.07692308;
  display: block;
  padding: 5px 0 3px;
  margin-bottom: -8px;
  margin-top: 20.0px; }

.question-container {
  position: relative;
  z-index: 1; }

.profile-img-mini {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  margin: 2px 12px 0 -48px;
  position: absolute;
  left: 48px;
  overflow: hidden; }

.forum-post-author {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  float: left;
  margin-right: 8px; }

.forum-post-relative-time {
  color: rgba(0, 0, 0, 0.55);
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  float: right; }

.forum-post-body {
  white-space: pre-wrap;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 20.0px; }
  .forum-post-body .forum-post-link {
    color: #008CC9; }
    .forum-post-body .forum-post-link:hover, .forum-post-body .forum-post-link:focus {
      color: #0077B5; }
    .forum-post-body .forum-post-link:active {
      color: #005E93; }

.forum-post-activity-counts {
  clear: both;
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
  padding: 3px 16px;
  background-color: transparent;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.55);
  height: 24px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  box-shadow: none;
  font-size: 1.3rem;
  margin: 23px 0 1px -16px; }
  .forum-post-activity-counts li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 11px;
    padding: 0 6px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .forum-post-activity-counts:visited {
    color: rgba(0, 0, 0, 0.55); }
  .forum-post-activity-counts:hover:not(:disabled), .forum-post-activity-counts:focus:not(:disabled) {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.7);
    box-shadow: none; }
  .forum-post-activity-counts::-moz-focus-inner {
    border: 0; }
  .forum-post-activity-counts:active:not(:disabled) {
    background-color: transparent;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.85); }
  .forum-post-activity-counts:disabled {
    opacity: 0.4;
    cursor: default; }
  .forum-post-activity-counts:after {
    content: "";
    display: table;
    clear: both; }

.forum-post-count-item:before {
  content: "\00b7";
  padding: 0 5px; }

.forum-post-count-item:first-of-type:before {
  display: none; }

.forum-post-footer {
  margin: 8px 0 0 -12px; }
  .forum-post-footer:after {
    content: "";
    display: table;
    clear: both; }
  .forum-post-footer .forum-post-like {
    float: left;
    margin-left: 8px; }
    .forum-post-footer .forum-post-like .vote-button {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      padding: 3px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 24px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      font-size: 1.2rem;
      font-weight: bold; }
      .forum-post-footer .forum-post-like .vote-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 11px;
        padding: 0 6px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-post-footer .forum-post-like .vote-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .forum-post-footer .forum-post-like .vote-button:hover:not(:disabled), .forum-post-footer .forum-post-like .vote-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: none; }
      .forum-post-footer .forum-post-like .vote-button::-moz-focus-inner {
        border: 0; }
      .forum-post-footer .forum-post-like .vote-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: none;
        color: rgba(0, 0, 0, 0.85); }
      .forum-post-footer .forum-post-like .vote-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .forum-post-footer .forum-post-comment {
    float: left;
    margin-left: 8px; }
    .forum-post-footer .forum-post-comment .speech-bubble-button {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      padding: 3px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 24px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      font-size: 1.2rem;
      font-weight: bold; }
      .forum-post-footer .forum-post-comment .speech-bubble-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 11px;
        padding: 0 6px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-post-footer .forum-post-comment .speech-bubble-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .forum-post-footer .forum-post-comment .speech-bubble-button:hover:not(:disabled), .forum-post-footer .forum-post-comment .speech-bubble-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: none; }
      .forum-post-footer .forum-post-comment .speech-bubble-button::-moz-focus-inner {
        border: 0; }
      .forum-post-footer .forum-post-comment .speech-bubble-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: none;
        color: rgba(0, 0, 0, 0.85); }
      .forum-post-footer .forum-post-comment .speech-bubble-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .forum-post-footer .forum-post-accept {
    overflow: hidden;
    clear: both;
    position: relative;
    top: 12px;
    padding-left: 12px; }
    .forum-post-footer .forum-post-accept .accept-solution-button {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      line-height: 18px;
      padding: 3px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 24px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      font-weight: bold;
      width: 100%; }
      .forum-post-footer .forum-post-accept .accept-solution-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 11px;
        padding: 0 6px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-post-footer .forum-post-accept .accept-solution-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .forum-post-footer .forum-post-accept .accept-solution-button:hover:not(:disabled), .forum-post-footer .forum-post-accept .accept-solution-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.55); }
      .forum-post-footer .forum-post-accept .accept-solution-button::-moz-focus-inner {
        border: 0; }
      .forum-post-footer .forum-post-accept .accept-solution-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.85);
        color: rgba(0, 0, 0, 0.85); }
      .forum-post-footer .forum-post-accept .accept-solution-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .forum-post-footer .remove-solution-button {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #60AA14;
    line-height: 18px;
    padding: 3px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #60AA14;
    height: 24px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    width: 100%; }
    .forum-post-footer .remove-solution-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 11px;
      padding: 0 6px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .forum-post-footer .remove-solution-button:visited {
      color: #60AA14; }
    .forum-post-footer .remove-solution-button:hover:not(:disabled), .forum-post-footer .remove-solution-button:focus:not(:disabled) {
      background-color: transparent;
      color: #000000;
      color: #4E8F13;
      box-shadow: inset 0 0 0 2px #60AA14; }
    .forum-post-footer .remove-solution-button::-moz-focus-inner {
      border: 0; }
    .forum-post-footer .remove-solution-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      color: #000000;
      box-shadow: inset 0 0 0 2px #3B7511;
      color: #3B7511; }
    .forum-post-footer .remove-solution-button:disabled {
      opacity: 0.4;
      cursor: default; }

.forum-post-controls {
  float: right;
  margin-left: 8px;
  position: relative; }
  .forum-post-controls .author-post-controls {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
    padding: 3px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.55);
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    width: 32px;
    border-radius: 16px;
    padding: 0 !important;
    text-index: -999px;
    font-size: 0;
    box-shadow: none;
    height: 24px; }
    .forum-post-controls .author-post-controls li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: absolute;
      top: 50%;
      padding: 0;
      left: 50%;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .forum-post-controls .author-post-controls:visited {
      color: rgba(0, 0, 0, 0.55); }
    .forum-post-controls .author-post-controls:hover:not(:disabled), .forum-post-controls .author-post-controls:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.7);
      box-shadow: none; }
    .forum-post-controls .author-post-controls::-moz-focus-inner {
      border: 0; }
    .forum-post-controls .author-post-controls:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: none;
      color: rgba(0, 0, 0, 0.85); }
    .forum-post-controls .author-post-controls:disabled {
      opacity: 0.4;
      cursor: default; }
  .forum-post-controls .post-controls-subnav-links {
    position: absolute;
    width: auto;
    left: auto;
    padding: 8px 0;
    margin-top: 8px;
    right: -8px; }
    .forum-post-controls .post-controls-subnav-links:before {
      right: 17px; }
    .forum-post-controls .post-controls-subnav-links:after {
      right: 15px; }
    .forum-post-controls .post-controls-subnav-links .post-control-button {
      width: auto;
      color: rgba(0, 0, 0, 0.7);
      text-align: left;
      padding: 8px 16px;
      font-size: 12px;
      min-width: 100%; }
      .forum-post-controls .post-controls-subnav-links .post-control-button.state-change-button {
        font-weight: bold; }
      .forum-post-controls .post-controls-subnav-links .post-control-button:hover, .forum-post-controls .post-controls-subnav-links .post-control-button:focus {
        color: rgba(0, 0, 0, 0.85);
        background: #F0F3F6;
        outline: none; }
      .forum-post-controls .post-controls-subnav-links .post-control-button:active {
        color: #000000;
        background: #E6E9EC;
        outline: none; }

.response-container {
  position: relative;
  margin-top: 24px;
  padding-top: 8px; }
  .response-container:before {
    display: block;
    content: "";
    position: absolute;
    right: -16px;
    left: -16px;
    top: 0;
    height: 0px;
    border-top: 1px solid #D0D3D6; }

.forum-post {
  padding: 24px 0 0 0; }
  .forum-post .forum-post-header {
    padding-left: 48px; }
    .forum-post .forum-post-header:after {
      content: "";
      display: table;
      clear: both; }

.forum-add-answer {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 300;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.07692308;
  display: block;
  padding: 5px 0 3px;
  margin-bottom: -8px;
  margin-top: 28.0px; }

.sign-in-container {
  overflow: hidden;
  padding-bottom: 8px; }
  .sign-in-container .sign-in-text {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 20.0px; }
    .sign-in-container .sign-in-text .sign-in-link {
      color: #008CC9; }
      .sign-in-container .sign-in-text .sign-in-link:hover, .sign-in-container .sign-in-text .sign-in-link:focus {
        color: #0077B5; }
      .sign-in-container .sign-in-text .sign-in-link:active {
        color: #005E93; }

.forum-answer-box {
  padding: 24px 0 8px 0;
  overflow: hidden; }
  .forum-answer-box .forum-response-header {
    padding-left: 48px; }
    .forum-answer-box .forum-response-header .profile-img-mini {
      margin-top: 0; }
    .forum-answer-box .forum-response-header .forum-response-author {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 700;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      float: left;
      margin-right: 8px; }
  .forum-answer-box .textarea {
    height: 44px;
    margin-bottom: 4px;
    margin-top: 48px;
    resize: vertical;
    display: block;
    resize: none;
    padding: 10px; }
  .forum-answer-box .forum-submit {
    width: 100%;
    margin-top: 16px;
    display: none; }
  .forum-answer-box.forum-comment-box {
    margin-bottom: 0;
    border: none;
    padding: 16px 0 0 0;
    position: relative; }
    .forum-answer-box.forum-comment-box .profile-img-mini {
      height: 24px;
      width: 24px;
      margin: 0 12px 0 -40px;
      left: 40px; }
    .forum-answer-box.forum-comment-box .forum-response-header {
      padding-left: 40px; }
      .forum-answer-box.forum-comment-box .forum-response-header .forum-response-author {
        color: rgba(0, 0, 0, 0.7);
        font-weight: 700;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0; }
    .forum-answer-box.forum-comment-box .textarea {
      height: 128px;
      margin-bottom: 0;
      margin-top: 48px; }
    .forum-answer-box.forum-comment-box .forum-submit {
      display: block; }
  .forum-answer-box.show .textarea {
    height: 128px;
    margin-bottom: 0; }
  .forum-answer-box.show .forum-submit {
    display: block; }

.forum-follow-button {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: transparent;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #008CC9;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  margin-top: 8px;
  width: 100%; }
  .forum-follow-button li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .forum-follow-button:visited {
    color: #008CC9; }
  .forum-follow-button:hover:not(:disabled), .forum-follow-button:focus:not(:disabled) {
    background-color: transparent;
    color: #0077B5;
    box-shadow: inset 0 0 0 2px #008CC9; }
  .forum-follow-button::-moz-focus-inner {
    border: 0; }
  .forum-follow-button:active:not(:disabled) {
    background-color: transparent;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93;
    color: #005E93; }
  .forum-follow-button:disabled {
    opacity: 0.4;
    cursor: default; }
  .forum-follow-button .hovercard-tooltip {
    position: absolute;
    padding: 16px;
    top: calc(100% + 8px);
    left: -99999px;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    text-align: left;
    z-index: 100;
    cursor: default; }
    .forum-follow-button .hovercard-tooltip:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      top: -6px;
      left: 50%;
      margin-left: -3px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid white; }
    .forum-follow-button .hovercard-tooltip:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      top: -7px;
      left: 50%;
      margin-left: -4px;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid rgba(0, 0, 0, 0.15); }
  @media (min-width: 1024px) {
    .forum-follow-button:hover .hovercard-tooltip,
    .forum-follow-button:focus .hovercard-tooltip {
      left: 0; } }
  .forum-follow-button .svg-icon {
    margin: -12px 0 0 -8px; }

.unfollow-button {
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #008CC9;
  line-height: 24px;
  padding: 4px 16px;
  background-color: #008CC9;
  outline: none;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color .15s;
          transition: color .15s;
  cursor: pointer;
  color: #FFFFFF;
  height: 32px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  box-shadow: none;
  z-index: 0;
  overflow: hidden;
  margin-top: 8px;
  width: 100%; }
  .unfollow-button li-icon.svg-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 10px;
    padding: 0 4px 0 0;
    left: 0;
    margin: -12px 0 0 -8px;
    vertical-align: baseline; }
  .unfollow-button:visited {
    color: #FFFFFF; }
  .unfollow-button:hover:not(:disabled), .unfollow-button:focus:not(:disabled) {
    background-color: #0077B5;
    box-shadow: none; }
  .unfollow-button::-moz-focus-inner {
    border: 0; }
  .unfollow-button:active:not(:disabled) {
    background-color: #005E93;
    -webkit-transition: box-shadow .15s, color .15s;
            transition: box-shadow .15s, color .15s;
    box-shadow: inset 0 0 0 2px #005E93; }
  .unfollow-button:disabled {
    opacity: 0.4;
    cursor: default; }
  .unfollow-button .svg-icon {
    margin: -12px 0 0 -8px; }
  .unfollow-button .hover-content {
    display: none; }
  .unfollow-button:hover .button-content, .unfollow-button:focus .button-content {
    display: none; }
    .unfollow-button:hover .button-content.hover-content, .unfollow-button:focus .button-content.hover-content {
      display: inline; }

.follow-description {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 8.0px;
  padding-left: 4px;
  padding-right: 4px; }

.forum-tags-header {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 20.0px; }

.forum-views-header {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 28.0px; }

.forum-views {
  color: #008CC9;
  font-weight: 300;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: -10px; }

.forum-related-questions {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 28.0px; }

.forum-guidelines {
  color: #008CC9;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  margin-top: 28.0px;
  clear: both;
  margin-bottom: 0; }

.forum-selected-response {
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
  margin: 24px -16px 0;
  padding: 32px 16px 32px;
  position: relative; }
  .forum-selected-response .forum-solution-stamp {
    color: #7CB82F;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 16px;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .forum-selected-response .forum-solution-stamp .forum-solution-text {
      padding: 3px 0;
      display: block;
      height: 24px; }
  .forum-selected-response .profile-img-mini {
    margin-left: -32px; }

.forum-answer-list {
  margin-top: 32px;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset; }
  .forum-answer-list .forum-answer-list-item {
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset;
    padding-bottom: 24px;
    -webkit-transition-property: background;
            transition-property: background;
    -webkit-transition-duration: 0.667s;
            transition-duration: 0.667s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    .forum-answer-list .forum-answer-list-item:last-of-type {
      box-shadow: none; }
    .forum-answer-list .forum-answer-list-item.new-list-item {
      background: rgba(230, 233, 236, 0.3); }
  .forum-answer-list.no-answers {
    box-shadow: none; }

.question-wrapper {
  margin-top: 8px; }

.comment-wrapper {
  margin: 24px 0 40px;
  padding: 8px 24px 24px;
  box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
  border-radius: 3px; }
  .forum-selected-response .comment-wrapper {
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 1px 0 inset; }
  .comment-wrapper .forum-post {
    padding: 8px 0 24px 0;
    box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
    .comment-wrapper .forum-post .profile-img-mini {
      height: 24px;
      width: 24px;
      margin: 4px 12px 0 -16px;
      left: 40px; }
    .comment-wrapper .forum-post .forum-post-author {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 700;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0; }
    .comment-wrapper .forum-post .forum-post-relative-time {
      color: rgba(0, 0, 0, 0.55);
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0; }
    .comment-wrapper .forum-post .forum-post-header {
      padding-left: 40px; }
    .comment-wrapper .forum-post .forum-post-body {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 16.0px; }
  .comment-wrapper .sign-in-container {
    padding-left: 40px;
    padding-bottom: 16px;
    box-shadow: none; }
  .comment-wrapper .comment-notice {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 16.0px; }
    .comment-wrapper .comment-notice.comments-empty {
      margin-top: 8px; }

.comment-delete-button {
  background: none;
  border: 0 none;
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  display: inline-block;
  float: right;
  margin-top: 4px; }
  .comment-delete-button:hover, .comment-delete-button:focus {
    opacity: 0.7;
    outline: 0 none; }
  .comment-delete-button:active {
    opacity: 0.85; }
  .comment-delete-button[disabled], .comment-delete-button.disabled {
    opacity: 0.4; }

.upvote-signed-out {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  font-size: 1.2rem;
  padding: 3px 16px 3px 9px; }

.edit-answer-modal .forum-answer-box {
  padding: 0; }
  .edit-answer-modal .forum-answer-box .textarea {
    height: 128px;
    margin-bottom: 0; }
  .edit-answer-modal .forum-answer-box .forum-submit {
    display: block; }

.forum-post-label-wrapper {
  overflow: hidden;
  margin-bottom: 24px;
  margin-left: -48px; }

.node-label {
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  padding: 4px 8px;
  border-radius: 2px;
  background: #F0F3F6;
  color: rgba(0, 0, 0, 0.55);
  display: inline-block;
  margin-right: 16px;
  float: left; }

.author-label {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.8181818182;
  font-weight: bold;
  padding: 0 6px;
  border-radius: 2px;
  background: #F0F3F6;
  color: rgba(0, 0, 0, 0.55);
  display: inline-block;
  margin-right: 8px;
  float: left;
  position: relative;
  top: 5px; }
  .author-label.moderator-label {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.8181818182;
    font-weight: bold;
    padding: 0 6px;
    border-radius: 2px;
    background: #0077B5;
    color: white;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

@media (min-width: 768px) {
  .forum-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 28.0px; }
  .forum-question-detail:after {
    display: none; }
  .forum-post {
    padding: 24px 0 0 48px; }
    .forum-post .forum-post-header {
      padding-left: 0; }
  .forum-post-body {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .profile-img-mini {
    margin: 2px 12px 0 -48px; }
  .forum-post-report {
    float: left;
    margin-left: 8px; }
    .forum-post-report .report-button {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      padding: 3px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 24px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      font-weight: bold; }
      .forum-post-report .report-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 11px;
        padding: 0 6px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-post-report .report-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .forum-post-report .report-button:hover:not(:disabled), .forum-post-report .report-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: none; }
      .forum-post-report .report-button::-moz-focus-inner {
        border: 0; }
      .forum-post-report .report-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: none;
        color: rgba(0, 0, 0, 0.85); }
      .forum-post-report .report-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .forum-follow-button,
  .unfollow-button {
    width: auto;
    margin-top: 32px; }
  .forum-post-footer .forum-post-like {
    margin: 0; }
    .forum-post-footer .forum-post-like .vote-button {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      padding: 3px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 24px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      font-weight: bold; }
      .forum-post-footer .forum-post-like .vote-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 11px;
        padding: 0 6px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-post-footer .forum-post-like .vote-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .forum-post-footer .forum-post-like .vote-button:hover:not(:disabled), .forum-post-footer .forum-post-like .vote-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: none; }
      .forum-post-footer .forum-post-like .vote-button::-moz-focus-inner {
        border: 0; }
      .forum-post-footer .forum-post-like .vote-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: none;
        color: rgba(0, 0, 0, 0.85); }
      .forum-post-footer .forum-post-like .vote-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .forum-post-footer .forum-post-comment .speech-bubble-button {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
    padding: 3px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.55);
    height: 24px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    font-weight: bold; }
    .forum-post-footer .forum-post-comment .speech-bubble-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 11px;
      padding: 0 6px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .forum-post-footer .forum-post-comment .speech-bubble-button:visited {
      color: rgba(0, 0, 0, 0.55); }
    .forum-post-footer .forum-post-comment .speech-bubble-button:hover:not(:disabled), .forum-post-footer .forum-post-comment .speech-bubble-button:focus:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.7);
      box-shadow: none; }
    .forum-post-footer .forum-post-comment .speech-bubble-button::-moz-focus-inner {
      border: 0; }
    .forum-post-footer .forum-post-comment .speech-bubble-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: none;
      color: rgba(0, 0, 0, 0.85); }
    .forum-post-footer .forum-post-comment .speech-bubble-button:disabled {
      opacity: 0.4;
      cursor: default; }
  .forum-post-footer .forum-post-accept {
    float: left;
    clear: none;
    margin: 0 0 0 8px;
    padding: 0;
    border: 0 none;
    position: static;
    top: 0; }
    .forum-post-footer .forum-post-accept .accept-solution-button {
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      padding: 3px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 24px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      font-weight: bold;
      width: auto; }
      .forum-post-footer .forum-post-accept .accept-solution-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 11px;
        padding: 0 6px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .forum-post-footer .forum-post-accept .accept-solution-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .forum-post-footer .forum-post-accept .accept-solution-button:hover:not(:disabled), .forum-post-footer .forum-post-accept .accept-solution-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: none; }
      .forum-post-footer .forum-post-accept .accept-solution-button::-moz-focus-inner {
        border: 0; }
      .forum-post-footer .forum-post-accept .accept-solution-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: none;
        color: rgba(0, 0, 0, 0.85); }
      .forum-post-footer .forum-post-accept .accept-solution-button:disabled {
        opacity: 0.4;
        cursor: default; }
      .forum-post-footer .forum-post-accept .accept-solution-button:hover, .forum-post-footer .forum-post-accept .accept-solution-button:focus {
        box-shadow: none; }
  .forum-post-footer .remove-solution-button {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #60AA14;
    line-height: 18px;
    padding: 3px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #60AA14;
    height: 24px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    width: auto; }
    .forum-post-footer .remove-solution-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 11px;
      padding: 0 6px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .forum-post-footer .remove-solution-button:visited {
      color: #60AA14; }
    .forum-post-footer .remove-solution-button:hover:not(:disabled), .forum-post-footer .remove-solution-button:focus:not(:disabled) {
      background-color: transparent;
      color: #000000;
      color: #4E8F13;
      box-shadow: inset 0 0 0 2px #60AA14; }
    .forum-post-footer .remove-solution-button::-moz-focus-inner {
      border: 0; }
    .forum-post-footer .remove-solution-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      color: #000000;
      box-shadow: inset 0 0 0 2px #3B7511;
      color: #3B7511; }
    .forum-post-footer .remove-solution-button:disabled {
      opacity: 0.4;
      cursor: default; }
  .forum-selected-response {
    border-radius: 2px;
    box-shadow: none;
    box-shadow: 0 0 4px #D0D3D6, 0 0 12px #D0D3D6;
    position: relative;
    padding-top: 8px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px; }
    .forum-selected-response .forum-solution-stamp {
      position: static;
      padding: 0;
      box-shadow: none;
      float: left;
      margin-left: 8px; }
    .forum-selected-response .profile-img-mini {
      margin-left: -24px; }
  .comment-wrapper .forum-post {
    padding: 8px 0 24px 40px; }
    .comment-wrapper .forum-post .profile-img-mini {
      margin-left: 32px; }
    .comment-wrapper .forum-post .forum-post-header {
      padding-left: 0; }
    .comment-wrapper .forum-post .forum-post-author {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 700;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0; }
    .comment-wrapper .forum-post .forum-post-relative-time {
      color: rgba(0, 0, 0, 0.55);
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0; }
    .comment-wrapper .forum-post .forum-post-body {
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 8.0px; }
  .comment-wrapper .forum-post-header {
    padding-left: 0; }
  .comment-wrapper .forum-post-body {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 8.0px; }
  .forum-answer-box {
    padding-left: 48px; }
    .forum-answer-box .forum-response-header {
      padding-left: 0;
      padding-bottom: 8px; }
    .forum-answer-box .textarea {
      margin-top: 40px; }
    .forum-answer-box .forum-submit {
      width: auto;
      float: right; }
    .forum-answer-box.forum-comment-box {
      padding-left: 40px; }
      .forum-answer-box.forum-comment-box .forum-response-header {
        padding-left: 0; }
      .forum-answer-box.forum-comment-box .textarea {
        margin-top: 40px;
        margin-bottom: 0; }
  .forum-submit {
    float: right;
    width: auto; }
  .forum-post-author {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0; }
  .forum-post-relative-time {
    color: rgba(0, 0, 0, 0.55);
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0; }
  .response-container:before {
    right: -24px;
    left: -24px; }
  .sign-in-container .sign-in-text {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 28.0px; }
  .upvote-signed-out {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334; } }

@media (min-width: 1024px) {
  .forum-answer-list .forum-answer-list-item:last-of-type {
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset; }
  .response-container:before {
    right: -72px;
    left: auto;
    width: 100000px; }
  .follow-description {
    display: none; } }

.accordion.nav-accordion {
  box-shadow: none; }
  .accordion.nav-accordion .accordion-item {
    position: relative;
    overflow: visible;
    box-shadow: none; }
    .accordion.nav-accordion .accordion-item .nav-link:hover, .accordion.nav-accordion .accordion-item .nav-link:focus {
      color: #000000; }
    .accordion.nav-accordion .accordion-item .nav-link:active {
      text-decoration: none;
      color: #000000; }
    .accordion.nav-accordion .accordion-item .nav-link.active {
      text-decoration: none;
      font-weight: bold; }
    .accordion.nav-accordion .accordion-item .accordion-header {
      position: relative; }
      .accordion.nav-accordion .accordion-item .accordion-header:hover, .accordion.nav-accordion .accordion-item .accordion-header:focus {
        background: transparent;
        outline: none; }
        .accordion.nav-accordion .accordion-item .accordion-header:hover:after, .accordion.nav-accordion .accordion-item .accordion-header:focus:after {
          content: "";
          display: block;
          position: absolute;
          bottom: 0;
          top: 0;
          left: 0;
          right: 0;
          background: #F0F3F6;
          z-index: -1; }
    .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item {
      padding-bottom: 16px; }
      .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry {
        color: rgba(0, 0, 0, 0.85);
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0;
        margin-top: 4.0px;
        padding-left: 10px; }
        .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry:hover, .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry:focus {
          color: #000000; }
        .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry:active {
          text-decoration: none;
          color: #000000; }
        .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry.active {
          text-decoration: none;
          font-weight: bold; }
    .accordion.nav-accordion .accordion-item.is-expanded .accordion-content-wrapper {
      height: auto; }
    .accordion.nav-accordion .accordion-item.show-content {
      background: transparent; }
      .accordion.nav-accordion .accordion-item.show-content:after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        top: 0;
        left: -16px;
        right: -16px;
        background: #F0F3F6;
        z-index: -1; }

@media (max-width: 1023px) {
  .sidebar.sidebar-nav {
    overflow: visible; }
  .collapsible-nav .nav-header,
  .collapsible-nav .nav-content {
    box-sizing: content-box;
    margin: 0 -16px 0;
    padding: 0 16px; }
  .collapsible-nav .nav-header {
    padding: 8px 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: block;
    width: 100%;
    text-align: left;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset;
    cursor: pointer;
    line-height: 32px;
    background: #F0F3F6; }
    .collapsible-nav .nav-header:hover, .collapsible-nav .nav-header:focus {
      background: #E6E9EC;
      outline: none; }
    .collapsible-nav .nav-header .svg-icon {
      color: rgba(0, 0, 0, 0.55);
      float: right;
      margin-left: 8px;
      margin-top: 5px;
      -webkit-transition-property: -webkit-transform;
              transition-property: transform;
      -webkit-transition-duration: 0.667s;
              transition-duration: 0.667s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  .collapsible-nav .nav-content {
    overflow: hidden;
    height: 0; }
    .collapsible-nav .nav-content.transition-waiting, .collapsible-nav .nav-content.transition-running {
      -webkit-transition-property: height;
              transition-property: height;
      -webkit-transition-duration: 0.667s;
              transition-duration: 0.667s;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  .collapsible-nav.is-expanded .nav-header .svg-icon {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .accordion.nav-accordion {
    box-sizing: content-box;
    margin: 0 -16px 0;
    padding: 0 16px; }
    .accordion.nav-accordion .accordion-item {
      box-sizing: content-box;
      margin: 0 -16px 0;
      padding: 0 16px; }
      .accordion.nav-accordion .accordion-item .accordion-header,
      .accordion.nav-accordion .accordion-item .content-nav-item,
      .accordion.nav-accordion .accordion-item .nav-link {
        display: block; }
      .accordion.nav-accordion .accordion-item .accordion-header,
      .accordion.nav-accordion .accordion-item .content-nav-item,
      .accordion.nav-accordion .accordion-item .accordion-content-wrapper,
      .accordion.nav-accordion .accordion-item .accordion-content {
        box-sizing: content-box;
        margin: 0 -16px 0;
        padding: 0 16px; }
      .accordion.nav-accordion .accordion-item .accordion-header,
      .accordion.nav-accordion .accordion-item .content-nav-item {
        box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset; }
      .accordion.nav-accordion .accordion-item .content-nav-item {
        margin: 0 -16px 0 0;
        padding: 0 16px 0 0; }
        .accordion.nav-accordion .accordion-item .content-nav-item:last-of-type {
          box-shadow: none; }
      .accordion.nav-accordion .accordion-item .accordion-header {
        padding: 8px 16px; }
      .accordion.nav-accordion .accordion-item .accordion-header,
      .accordion.nav-accordion .accordion-item .nav-link {
        color: rgba(0, 0, 0, 0.85);
        font-weight: 300;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.17647059;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .accordion.nav-accordion .accordion-item .content-nav-list .list-entry {
        padding: 8px 0 8px 16px;
        margin: 0; }
      .accordion.nav-accordion .accordion-item .nav-link {
        padding: 8px 0; }
      .accordion.nav-accordion .accordion-item.show-content {
        box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset; }
      .accordion.nav-accordion .accordion-item.no-sub-items {
        box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .collapsible-nav .nav-header,
  .collapsible-nav .nav-content {
    box-sizing: content-box;
    margin: 0 -24px 0;
    padding: 0 24px; }
  .collapsible-nav .nav-header {
    padding: 8px 24px; }
  .accordion.nav-accordion {
    box-sizing: content-box;
    margin: 0 -24px 0;
    padding: 0 24px; }
    .accordion.nav-accordion .accordion-item {
      box-sizing: content-box;
      margin: 0 -24px 0;
      padding: 0 24px; }
      .accordion.nav-accordion .accordion-item .accordion-header,
      .accordion.nav-accordion .accordion-item .content-nav-item,
      .accordion.nav-accordion .accordion-item .accordion-content-wrapper,
      .accordion.nav-accordion .accordion-item .accordion-content {
        box-sizing: content-box;
        margin: 0 -24px 0;
        padding: 0 24px; }
      .accordion.nav-accordion .accordion-item .accordion-header {
        padding: 8px 24px; }
      .accordion.nav-accordion .accordion-item .content-nav-item {
        margin: 0 -24px 0 0;
        padding: 0 24px 0 0; } }

@media (min-width: 1024px) {
  .accordion.nav-accordion {
    margin-top: 32px; }
    .accordion.nav-accordion .accordion-item .accordion-header,
    .accordion.nav-accordion .accordion-item .nav-link {
      display: block;
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      box-sizing: content-box;
      margin: 0 -16px 0;
      padding: 8px 16px; }
    .accordion.nav-accordion .accordion-item .accordion-content {
      padding: 0 16px 24px;
      overflow: hidden; }
    .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item:first-of-type .list-entry {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 400;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      display: block;
      margin-bottom: -9px;
      padding: 5px 0 4px 0;
      margin-top: 4.0px; }
    .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item {
      padding-bottom: 0; }
      .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry {
        color: rgba(0, 0, 0, 0.85);
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.3333334;
        display: block;
        margin-bottom: -9px;
        padding: 5px 0 4px 0;
        margin-top: 12.0px; }
        .accordion.nav-accordion .accordion-item .content-nav-list .content-nav-item .list-entry.active {
          font-weight: bold; } }

.entity-list {
  margin-top: 7px;
  padding-bottom: 1px; }
  .entity-list .entity-list-item {
    padding-top: 8px; }
    .entity-list .entity-list-item .list-entry {
      color: #008CC9;
      font-weight: 700;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      .entity-list .entity-list-item .list-entry:visited {
        color: #8C68CB; }
      .entity-list .entity-list-item .list-entry:hover, .entity-list .entity-list-item .list-entry:focus {
        color: #0077B5; }
      .entity-list .entity-list-item .list-entry:active {
        text-decoration: none;
        color: #005E93; }

@media (min-width: 768px) {
  .entity-list {
    margin-top: 1px;
    padding-bottom: 3px; }
    .entity-list .entity-list-item {
      padding-top: 16px; } }

@media (min-width: 1024px) {
  .entity-list-header {
    font-weight: 700;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 56.0px; }
  .entity-list {
    -webkit-column-count: 2;
    -webkit-column-gap: 24px;
    -moz-column-count: 2;
    -moz-column-gap: 24px;
    -moz-column-fill: balance;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    -webkit-column-fill: balance;
       -moz-column-fill: balance;
            column-fill: balance; }
    .entity-list .entity-list-item {
      -webkit-column-break-inside: avoid;
      -moz-column-break-inside: avoid;
      page-break-inside: avoid;
      column-break-inside: avoid;
      break-inside: avoid; } }

.popular-header {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  display: block;
  padding: 5px 0 4px;
  margin-bottom: -9px;
  margin-top: 16.0px;
  background-image: url(/sc/h/5fqek38qo496t1vzex1x5u0a0);
  background-repeat: no-repeat;
  background-size: 44px 44px;
  background-position: left -5px bottom -8px;
  padding-left: 48px; }

.popular-list .popular-list-item {
  padding-bottom: 24px;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset; }
  .popular-list .popular-list-item:first-of-type .popular-item-header {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 24.0px; }
  .popular-list .popular-list-item .popular-item-header {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 8.0px; }
    .popular-list .popular-list-item .popular-item-header .popular-title-link {
      color: #0077B5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      .popular-list .popular-list-item .popular-item-header .popular-title-link:visited {
        color: #8C68CB; }
      .popular-list .popular-list-item .popular-item-header .popular-title-link:hover, .popular-list .popular-list-item .popular-item-header .popular-title-link:focus {
        text-decoration: underline; }
      .popular-list .popular-list-item .popular-item-header .popular-title-link:active {
        text-decoration: none;
        color: #005E93; }
  .popular-list .popular-list-item .popular-content {
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }

@media (min-width: 768px) {
  .popular-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 28.0px;
    background-size: 46px 46px;
    padding-left: 56px; }
  .popular-list .popular-list-item:first-of-type .popular-item-header {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 32.0px; } }

@media (min-width: 1024px) {
  .popular-list .popular-list-item {
    padding-bottom: 32px; }
    .popular-list .popular-list-item:first-of-type .popular-item-header {
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 32.0px; }
    .popular-list .popular-list-item .popular-item-header {
      font-weight: 400;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 16.0px; } }

.error-page {
  padding: 56px 0; }
  .error-page .error-page-header {
    font-weight: 300;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 16.0px;
    text-align: center; }
  .error-page .error-page-subheader {
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px;
    text-align: center; }
    .error-page .error-page-subheader .error-link {
      color: #008CC9; }
      .error-page .error-page-subheader .error-link:hover, .error-page .error-page-subheader .error-link:focus {
        color: #0077B5; }
      .error-page .error-page-subheader .error-link:active {
        color: #005E93; }
  .error-page .error-icon {
    background-repeat: no-repeat;
    background-size: 120px;
    background-position: center center;
    width: 120px;
    height: 120px;
    margin: 0 auto; }
    .error-page .error-icon.error-wire-icon {
      background-image: url(/sc/h/87lcmi9fqvmy1ny02t06wn2kq); }
    .error-page .error-icon.error-blank-icon {
      background-image: url(/sc/h/990m6wil621gnz8m0fkypztet); }
  .error-page .error-page-text {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    text-align: center; }

@media (min-width: 768px) {
  .error-page .error-page-header {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 32.0px; }
  .error-page .error-page-subheader {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 16.0px; } }

@media (min-width: 1024px) {
  .error-page .error-page-header {
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.04761905;
    display: block;
    margin-bottom: -12px;
    padding: 3px 0 5px;
    margin-top: 32.0px; }
  .error-page .error-page-subheader {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 24.0px; } }

.safety-heading {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  display: block;
  padding: 5px 0 4px;
  margin-bottom: -9px;
  margin-top: 16.0px; }

.safety-subheading {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471;
  display: block;
  margin-bottom: -8px;
  padding: 6px 0 2px 0;
  margin-top: 16.0px; }
  .safety-subheading a {
    color: #008CC9; }
    .safety-subheading a:visited {
      color: #8C68CB; }
    .safety-subheading a:hover, .safety-subheading a:focus {
      color: #0077B5; }
    .safety-subheading a:active {
      color: #005E93; }

.safety-excerpt {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 8.0px; }

.safety-topic-group-preview-image {
  display: block;
  width: 528px;
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 0 40px; }

.safety-topic-group-list .safety-topic-group-list-item {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0 0 inset, rgba(0, 0, 0, 0.15) 0px 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0px 0 inset; }

.safety-external-links .safety-external-link-item {
  padding: 0 0 0 68px;
  margin-top: 40px;
  background-repeat: no-repeat;
  background-size: 48px 48px;
  background-position: left top;
  min-height: 48px; }
  .safety-external-links .safety-external-link-item.report-link-item {
    background-image: url(/sc/h/m912w5fozi2aq7pzmczziigc); }
  .safety-external-links .safety-external-link-item.settings-link-item {
    background-image: url(/sc/h/1r0xhmeit7e13hb2ugre4bbzl); }
  .safety-external-links .safety-external-link-item .safety-external-link-heading {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471; }
  .safety-external-links .safety-external-link-item .safety-external-link-excerpt {
    color: rgba(0, 0, 0, 0.55);
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    margin-top: 8px; }
  .safety-external-links .safety-external-link-item .safety-external-link {
    color: rgba(0, 0, 0, 0.85);
    /* TODO: Review this after we update the icons after converting to the NPM pipeline */ }
    .safety-external-links .safety-external-link-item .safety-external-link:hover, .safety-external-links .safety-external-link-item .safety-external-link:focus {
      color: #0077B5; }
    .safety-external-links .safety-external-link-item .safety-external-link:active {
      color: #005E93; }
    .safety-external-links .safety-external-link-item .safety-external-link .svg-icon {
      vertical-align: top;
      margin: 4px;
      height: 16px;
      width: 16px; }

.safety-topic-group .safety-topic-group-topics-list .safety-topic-group-topics-list-item {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset, rgba(0, 0, 0, 0.15) 0 -1px 0 inset, rgba(0, 0, 0, 0.15) 0 0 0 inset;
  padding-bottom: 32px; }
  .safety-topic-group .safety-topic-group-topics-list .safety-topic-group-topics-list-item:last-of-type {
    box-shadow: none; }

@media (min-width: 768px) {
  .safety-heading {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 28.0px; }
  .safety-subheading {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.14285714;
    display: block;
    padding: 5px 0 4px;
    margin-bottom: -9px;
    margin-top: 32.0px; }
  .safety-excerpt {
    color: rgba(0, 0, 0, 0.55);
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .safety-topic-group-preview-image {
    padding: 40px 0 56px; }
  .safety-external-links .safety-external-link-item {
    padding: 8px 0 0 100px;
    margin-top: 40px;
    background-size: 72px 72px;
    background-position: left center;
    min-height: 72px; }
    .safety-external-links .safety-external-link-item .safety-external-link-heading {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714; }
    .safety-external-links .safety-external-link-item .safety-external-link-excerpt {
      color: rgba(0, 0, 0, 0.55);
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.3333334;
      margin-top: 4px; }
  .safety-topic-group .safety-topic-group-topics-list .safety-topic-group-topics-list-item {
    padding-bottom: 48px; } }

.mobile-apps-heading {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  display: block;
  padding: 5px 0 4px;
  margin-bottom: -9px;
  margin-top: 16.0px; }

.mobile-apps-excerpt {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 8.0px; }

.mobile-apps-description {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23076923;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0;
  margin-top: 16.0px; }

.mobile-apps-topic-group-preview-image {
  display: block;
  width: 100%;
  height: auto; }

.mobile-apps-topic-group-list .mobile-apps-topic-group-list-item {
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 0 0, rgba(0, 0, 0, 0.15) -1px 0 0, rgba(0, 0, 0, 0.15) 0 1px 0, rgba(0, 0, 0, 0.15) 0 -1px 0;
  overflow: hidden;
  margin-top: 40px; }
  .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-title-link {
    display: block;
    width: 100%; }
    .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-title-link:hover .mobile-apps-topic-group-content .mobile-apps-subheading, .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-title-link:focus .mobile-apps-topic-group-content .mobile-apps-subheading {
      color: #0077B5; }
    .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-title-link:active .mobile-apps-topic-group-content .mobile-apps-subheading {
      color: #005E93; }
  .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-content {
    padding: 8px 20px 16px;
    box-shadow: #F0F3F6 0px 0 0 inset, #F0F3F6 0px 0 0 inset, #F0F3F6 0 0px 0 inset, #F0F3F6 0 1px 0 inset; }
    .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-content .mobile-apps-subheading {
      color: rgba(0, 0, 0, 0.85);
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0; }
    .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-content .mobile-apps-excerpt {
      color: rgba(0, 0, 0, 0.55);
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.23076923;
      display: block;
      margin-bottom: -8px;
      padding: 4px 0 4px 0;
      margin-top: 8.0px; }

.mobile-apps-topic-group-topics-list {
  -webkit-column-gap: 64px;
  -moz-column-gap: 64px;
  column-gap: 64px; }
  .mobile-apps-topic-group-topics-list .mobile-apps-topic-group-topics-list-item .mobile-apps-subheading {
    color: rgba(0, 0, 0, 0.85);
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 24.0px; }
  .mobile-apps-topic-group-topics-list .mobile-apps-topic-group-entities-list-item {
    padding-top: 8px; }

@media (min-width: 768px) {
  .mobile-apps-heading {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.07692308;
    display: block;
    padding: 5px 0 3px;
    margin-bottom: -8px;
    margin-top: 28.0px; }
  .mobile-apps-excerpt {
    color: rgba(0, 0, 0, 0.55);
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 12.0px; }
  .mobile-apps-description {
    color: rgba(0, 0, 0, 0.55);
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 20.0px; }
  .mobile-apps-topic-group-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row; }
    .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      width: 31%; }
      .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item:nth-of-type(3n+2) {
        margin-left: 3.5%;
        margin-right: 3.5%; }
      .mobile-apps-topic-group-list .mobile-apps-topic-group-list-item .mobile-apps-topic-group-content .mobile-apps-subheading {
        color: rgba(0, 0, 0, 0.85);
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.41176471;
        display: block;
        margin-bottom: -8px;
        padding: 6px 0 2px 0; }
  .mobile-apps-topic-group-topics-list .mobile-apps-topic-group-topics-list-item {
    padding-bottom: 24px; }
    .mobile-apps-topic-group-topics-list .mobile-apps-topic-group-topics-list-item .mobile-apps-subheading {
      color: rgba(0, 0, 0, 0.85);
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 0px; }
    .mobile-apps-topic-group-topics-list .mobile-apps-topic-group-topics-list-item:first-of-type .mobile-apps-subheading {
      color: rgba(0, 0, 0, 0.85);
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px;
      margin-top: 32.0px; }
  .mobile-apps-topic-group-topics-list .mobile-apps-topic-group-entities-list-item {
    padding-top: 16px; } }

.loading-button.processing .button-content {
  visibility: hidden; }

.loading-button .processing-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -11px;
  margin-left: -11px;
  z-index: 2;
  height: 22px;
  width: 22px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTZDRjcxREM5OTg1MTFFMUE5Q0ZBQzc1Q0FBMzQ3NDUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTZDRjcxREQ5OTg1MTFFMUE5Q0ZBQzc1Q0FBMzQ3NDUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFNkNGNzFEQTk5ODUxMUUxQTlDRkFDNzVDQUEzNDc0NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNGNzFEQjk5ODUxMUUxQTlDRkFDNzVDQUEzNDc0NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtHGHP0AAAGWSURBVHja1JS/SgNBEMZvzwPFPxDkMIdYWKYIaJHCwuJEbC/aaZcy5fkGsfEpAmplmcQXiKWdig9wWqSOhSDY6DfwiZNz71wMCA782Nu5uW9n53bW8xzt/cvWvd8YPpwBy2DJJpzzdUDPaTEELYBVMlskjMdNtYvUNesqhcMS4SFdGagUCc2BNRCo+WfW83lhDPsq25bSSSfKgkkdxGAbRPSFFK5ahG85HaqFMvp64guo/QJCzmsUH4E38CoBBqY2eQGewYDisXp3ny/HIn9ITBoO/yJTJZGax2XBUoKG1NxBOKV4y/srM1jtyPrCmEvXjrT5fe/fG3Ymx60Ntqb5eb4KihhwCOQc1xzyaALptLP8cfMpKo42g8QewRP8XZAUZCqNMQDXdIuGiHd0xhFH6aY+TsQ5xj2wAhKKjQSVqQg1EbuD8YDJiG3oDCpSU7l8OJfnK7KbF3a+hCxb7VL0VPl0xvraHNuuTd8imrAEYmVNcsxRRL+disDywQ2ogwz1eyhsWWPukMQJa9qf5nxPlOIn+xBgAKrv1M+08QkQAAAAAElFTkSuQmCC");
  -webkit-animation: rotateSpinner 1s infinite linear;
  animation: rotateSpinner 1s infinite linear; }

.feature-launcher {
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
  padding: 0 16px 16px;
  overflow: hidden; }
  .feature-launcher .launcher-text-wrapper .launcher-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0;
    margin-top: 8.0px; }
  .feature-launcher .launcher-text-wrapper .launcher-content {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0;
    margin-top: 4.0px; }
  .feature-launcher .launcher-button-wrapper {
    margin-top: 16px; }
    .feature-launcher .launcher-button-wrapper .launcher-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #008CC9;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      white-space: nowrap;
      width: 100%; }
      .feature-launcher .launcher-button-wrapper .launcher-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .feature-launcher .launcher-button-wrapper .launcher-button:visited {
        color: #008CC9; }
      .feature-launcher .launcher-button-wrapper .launcher-button:hover:not(:disabled), .feature-launcher .launcher-button-wrapper .launcher-button:focus:not(:disabled) {
        background-color: transparent;
        color: #0077B5;
        box-shadow: inset 0 0 0 2px #008CC9; }
      .feature-launcher .launcher-button-wrapper .launcher-button::-moz-focus-inner {
        border: 0; }
      .feature-launcher .launcher-button-wrapper .launcher-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93;
        color: #005E93; }
      .feature-launcher .launcher-button-wrapper .launcher-button:disabled {
        opacity: 0.4;
        cursor: default; }
  .search-results-content .feature-launcher {
    margin: 32px -16px 0; }
  .hc-answer .feature-launcher {
    margin: 24px -16px 16px; }
  .popular-header + .feature-launcher {
    margin: 32px -16px 0; }

@media (min-width: 768px) {
  .feature-launcher {
    box-shadow: #D0D3D6 -1px 0 0 inset, #D0D3D6 1px 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 1px 0 inset;
    padding: 0 24px;
    display: table; }
    .feature-launcher .launcher-text-wrapper {
      display: table-cell;
      padding: 0 16px 24px 0; }
    .feature-launcher .launcher-button-wrapper {
      display: table-cell;
      vertical-align: middle;
      margin: 0; }
      .feature-launcher .launcher-button-wrapper .launcher-button {
        width: auto; }
    .search-results-content .feature-launcher {
      margin: 32px 0 0 0; }
    .hc-answer .feature-launcher {
      margin: 24px 0 16px; }
    .popular-header + .feature-launcher {
      margin: 40px 0 0 0; } }

.forum-banner {
  background: url(/sc/h/18xzssqvquh8xdbx6f35txmvv) no-repeat center 0; }

.why-banner {
  background: url(/sc/h/9v5qsbnkwvf5mjo6j54fxoczi) no-repeat center 0; }

.banner-container {
  padding-top: 24px; }

.home-banner {
  background-size: 44px 36px;
  margin: 0 -16px;
  padding: 32px 16px 48px;
  text-align: center; }
  .home-banner .home-banner-header {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.41176471;
    display: block;
    margin-bottom: -8px;
    padding: 6px 0 2px 0; }
  .home-banner .home-banner-description {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333334;
    display: block;
    margin-bottom: -9px;
    padding: 5px 0 4px 0; }
    .home-banner .home-banner-description a {
      color: #008CC9;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      .home-banner .home-banner-description a:hover, .home-banner .home-banner-description a:focus {
        color: #0077B5; }
      .home-banner .home-banner-description a:active {
        color: #005E93; }

@media (min-width: 768px) {
  .banner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0; }
  .home-banner {
    background-position: left 28px;
    margin: 0;
    padding: 24px 0 32px 56px;
    text-align: left; }
    .home-banner.forum-banner {
      padding-right: 24px; }
    .home-banner .home-banner-header {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 700;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.14285714;
      display: block;
      padding: 5px 0 4px;
      margin-bottom: -9px; } }

@media (min-width: 1024px) {
  .home-banner {
    background-position: left 44px;
    padding: 32px 0 0 56px; }
    .home-banner.forum-banner {
      padding-right: 24px; } }

.lynda-consent-container {
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 80px; }
  .lynda-consent-container .consent-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 300;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    display: block;
    margin-bottom: -12px;
    padding: 2px 0 6px;
    margin-top: 48.0px;
    text-align: center; }
  .lynda-consent-container .consent-text {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    margin-top: 28.0px; }
    .lynda-consent-container .consent-text .learn-more-link {
      color: rgba(0, 0, 0, 0.7);
      font-weight: bold;
      text-decoration: underline; }
      .lynda-consent-container .consent-text .learn-more-link:hover, .lynda-consent-container .consent-text .learn-more-link:focus {
        color: rgba(0, 0, 0, 0.85); }
  .lynda-consent-container .button-wrapper {
    text-align: center;
    margin-top: 40px; }
    .lynda-consent-container .button-wrapper .agree-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px #008CC9;
      line-height: 24px;
      padding: 4px 16px;
      background-color: #008CC9;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: #FFFFFF;
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      box-shadow: none;
      z-index: 0;
      overflow: hidden;
      margin: 0 8px;
      width: 100px; }
      .lynda-consent-container .button-wrapper .agree-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .lynda-consent-container .button-wrapper .agree-button:visited {
        color: #FFFFFF; }
      .lynda-consent-container .button-wrapper .agree-button:hover:not(:disabled), .lynda-consent-container .button-wrapper .agree-button:focus:not(:disabled) {
        background-color: #0077B5;
        box-shadow: none; }
      .lynda-consent-container .button-wrapper .agree-button::-moz-focus-inner {
        border: 0; }
      .lynda-consent-container .button-wrapper .agree-button:active:not(:disabled) {
        background-color: #005E93;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px #005E93; }
      .lynda-consent-container .button-wrapper .agree-button:disabled {
        opacity: 0.4;
        cursor: default; }
    .lynda-consent-container .button-wrapper .disagree-button {
      font-weight: 400;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.17647059;
      border: 0;
      border-radius: 2px;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
      line-height: 24px;
      padding: 4px 16px;
      background-color: transparent;
      outline: none;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: color .15s;
              transition: color .15s;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.55);
      height: 32px;
      text-align: center;
      position: relative;
      vertical-align: middle;
      margin: 0 8px;
      width: 100px; }
      .lynda-consent-container .button-wrapper .disagree-button li-icon.svg-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 10px;
        padding: 0 4px 0 0;
        left: 0;
        margin: -12px 0 0 -8px;
        vertical-align: baseline; }
      .lynda-consent-container .button-wrapper .disagree-button:visited {
        color: rgba(0, 0, 0, 0.55); }
      .lynda-consent-container .button-wrapper .disagree-button:hover:not(:disabled), .lynda-consent-container .button-wrapper .disagree-button:focus:not(:disabled) {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.7);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.55); }
      .lynda-consent-container .button-wrapper .disagree-button::-moz-focus-inner {
        border: 0; }
      .lynda-consent-container .button-wrapper .disagree-button:active:not(:disabled) {
        background-color: transparent;
        -webkit-transition: box-shadow .15s, color .15s;
                transition: box-shadow .15s, color .15s;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.85);
        color: rgba(0, 0, 0, 0.85); }
      .lynda-consent-container .button-wrapper .disagree-button:disabled {
        opacity: 0.4;
        cursor: default; }

@media (min-width: 768px) {
  .lynda-consent-container .consent-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 300;
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.04761905;
    display: block;
    margin-bottom: -12px;
    padding: 3px 0 5px;
    margin-top: 80.0px; } }

.contact-us-content {
  padding-bottom: 32px; }

.contact-us-header {
  margin-top: 16px;
  overflow: hidden; }
  .contact-us-header .page-title {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 300;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1.05882353;
    margin: 0; }

.contact-step .contact-step-header-wrapper .contact-step-header {
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  width: 100%;
  text-align: left;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471;
  margin: 0;
  cursor: pointer;
  box-shadow: #D0D3D6 0 0 0 inset, #D0D3D6 0 0 0 inset, #D0D3D6 0 -1px 0 inset, #D0D3D6 0 0 0 inset;
  padding: 8px 0;
  outline: none; }
  .contact-step .contact-step-header-wrapper .contact-step-header:hover, .contact-step .contact-step-header-wrapper .contact-step-header:focus {
    box-shadow: #A0A3A6 0 0 0 inset, #A0A3A6 0 0 0 inset, #A0A3A6 0 -1px 0 inset, #A0A3A6 0 0 0 inset; }
  .contact-step .contact-step-header-wrapper .contact-step-header:active {
    box-shadow: #737679 0 0 0 inset, #737679 0 0 0 inset, #737679 0 -1px 0 inset, #737679 0 0 0 inset; }
  .contact-step .contact-step-header-wrapper .contact-step-header .svg-icon {
    color: rgba(0, 0, 0, 0.55);
    float: right;
    margin-top: 4px;
    margin-right: 4px; }

.contact-step .contact-step-content {
  padding-top: 16px;
  display: none; }
  .contact-step .contact-step-content .input-container {
    margin-top: 8px; }
  .contact-step .contact-step-content .next-button {
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.17647059;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #008CC9;
    line-height: 24px;
    padding: 4px 16px;
    background-color: transparent;
    outline: none;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: color .15s;
            transition: color .15s;
    cursor: pointer;
    color: #008CC9;
    height: 32px;
    text-align: center;
    position: relative;
    vertical-align: middle;
    margin-top: 16px; }
    .contact-step .contact-step-content .next-button li-icon.svg-icon {
      width: 24px;
      height: 24px;
      position: relative;
      top: 10px;
      padding: 0 4px 0 0;
      left: 0;
      margin: -12px 0 0 -8px;
      vertical-align: baseline; }
    .contact-step .contact-step-content .next-button:visited {
      color: #008CC9; }
    .contact-step .contact-step-content .next-button:hover:not(:disabled), .contact-step .contact-step-content .next-button:focus:not(:disabled) {
      background-color: transparent;
      color: #0077B5;
      box-shadow: inset 0 0 0 2px #008CC9; }
    .contact-step .contact-step-content .next-button::-moz-focus-inner {
      border: 0; }
    .contact-step .contact-step-content .next-button:active:not(:disabled) {
      background-color: transparent;
      -webkit-transition: box-shadow .15s, color .15s;
              transition: box-shadow .15s, color .15s;
      box-shadow: inset 0 0 0 2px #005E93;
      color: #005E93; }
    .contact-step .contact-step-content .next-button:disabled {
      opacity: 0.4;
      cursor: default; }
    .contact-step .contact-step-content .next-button.invisible {
      display: none; }
  .contact-step .contact-step-content .fields {
    box-shadow: none;
    padding: 0;
    margin-top: 8px; }
  .contact-step .contact-step-content .field .error-message {
    color: #DD2E1F;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23076923;
    display: block;
    margin-bottom: -8px;
    padding: 4px 0 4px 0;
    display: none; }
  .contact-step .contact-step-content .has-error .error-message {
    display: block; }

.contact-step.expanded .contact-step-header .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.contact-step.expanded .contact-step-content {
  display: block; }

.contact-step.disabled .contact-step-header-wrapper .contact-step-header {
  color: rgba(0, 0, 0, 0.55);
  box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0 0 inset; }
  .contact-step.disabled .contact-step-header-wrapper .contact-step-header:hover, .contact-step.disabled .contact-step-header-wrapper .contact-step-header:focus {
    box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0 0 inset; }
  .contact-step.disabled .contact-step-header-wrapper .contact-step-header:active {
    box-shadow: #E6E9EC 0 0 0 inset, #E6E9EC 0 0 0 inset, #E6E9EC 0 -1px 0 inset, #E6E9EC 0 0 0 inset; }
  .contact-step.disabled .contact-step-header-wrapper .contact-step-header .svg-icon {
    color: rgba(0, 0, 0, 0.25); }

@media (min-width: 768px) {
  .contact-us-header {
    margin-top: 40px; }
    .contact-us-header .page-title {
      float: left; }
  .contact-step {
    margin-top: 24px; }
    .contact-step .contact-step-content .next-button.invisible {
      display: block;
      visibility: hidden; } }

html {
  height: 100%; }

body {
  line-height: 1;
  background: #FFFFFF;
  padding: 0 0 174px 0;
  min-height: 100%;
  position: relative;
  -webkit-transition-property: padding-top;
          transition-property: padding-top; }
  body.transition-in {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s; }
  body.transition-out {
    -webkit-transition-duration: 0.334s;
            transition-duration: 0.334s; }
  body.a11y-header-visible {
    padding-top: 40px; }

label,
.fake-label {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media (min-width: 768px) {
  body {
    padding-bottom: 225px; } }

@media (min-width: 1024px) {
  body {
    padding-bottom: 288px; } }

html {
  font-size: 10px; }
  html body, html * {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    box-sizing: border-box; }

a {
  outline: none;
  color: rgba(0, 0, 0, 0.7);
  font-weight: normal;
  text-decoration: none; }
  a:visited {
    color: rgba(0, 0, 0, 0.7); }
  a:hover, a:focus {
    color: #008CC9;
    text-decoration: none; }
  a:active {
    color: #0077B5; }

::-moz-selection {
  background: rgba(55, 98, 127, 0.5);
  /* Safari */ }

::selection {
  background: rgba(55, 98, 127, 0.5);
  /* Safari */ }

::-moz-selection {
  background: rgba(55, 98, 127, 0.5);
  /* Firefox */ }

strong, b {
  font-weight: bold; }

body {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334; }

p {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0; }

h1, .large-header {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.05882353;
  display: block;
  margin-bottom: -12px;
  padding: 2px 0 6px; }

h2 {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.07692308;
  display: block;
  padding: 5px 0 3px;
  margin-bottom: -8px; }

h3, .large-text {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14285714;
  display: block;
  padding: 5px 0 4px;
  margin-bottom: -9px; }

h4, .medium-text {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471;
  display: block;
  margin-bottom: -8px;
  padding: 6px 0 2px 0; }

h5, .small-text {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647059;
  display: block;
  margin-bottom: -8px;
  padding: 4px 0 4px 0; }

h6 {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333334;
  display: block;
  margin-bottom: -9px;
  padding: 5px 0 4px 0; }

em, i {
  font-style: italic; }

ol,
li {
  list-style: none; }

blockquote {
  color: #86898C;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176471;
  display: block;
  margin-bottom: -8px;
  padding: 6px 0 2px 0; }
