@charset "UTF-8";
/**
 * Breakpoints
 * - These are generic breakpoints. Use component-specific breakpoints for each component
 */
/**
 * Spacing
 * @see https://builttoadapt.io/intro-to-the-8-point-grid-system-d2573cde8632#6bf2
 */
/**
 * Layout
 */
/**
 * Elements
 */
/**
 * Colors
 */
/**
 * Create functions for helping us get complex values
 * 
 * Mixins are very similar to functions but the main difference between the two is
 * that mixins output lines of Sass code that will compile directly into CSS styles,
 * while functions return a value that can then become the value for a CSS property
 * or become something that might be passed to another function or mixin.
 * @see https://dev.to/keinchy/sass--function-mixin-placeholder-extend-18g6
 */
/**
 * Create mixins to help with animations
 */
/**
 * Animate
 * Mixin for re-using basic animation code while overriding specifics, if necessary
 */
/***
 * Create mixins to help with layout
 */
/***
 * Container
 * - This is what we will include for the container of each component
 * 
 * @param {boolean} $large - If the container should be large
 * @param {boolean} $full - If the container should be full-width
 */
/**
 * Inner Container
 * - This is used for containers inside of a normal container.
 * It allows for us to have the content contained in the parent while giving it 100% width for responsiveness
 */
/**
 * Breakpoint mixin.
 */
/**
 * Font Sizes should ideally be something defined in a style guide which comes from the visual design.
 * - Currently there are some generic size titles, adjust and add as needed per project
 */
/**
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain)
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

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

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

* {
  box-sizing: border-box;
  color: inherit; }

a,
a:hover,
a:visited,
a:active,
a:focus {
  text-decoration: none; }

/**
 * This file is for setting styles at the basic html elements scope
 * - Examples could include form elements such as inputs, buttons or anchors
 */
*,
*:before,
*:after {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  line-height: 1; }

body {
  font-family: trade-gothic-next, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 300;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  position: relative; }
  body a {
    color: #522D80;
    font-weight: 700;
    text-decoration: none; }
    body a:hover {
      color: #522D80; }
  body h1, body h2, body h3, body h4 {
    margin: 0; }
  body h1 {
    font-family: trade-gothic-next, sans-serif;
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 40px;
    line-height: 4rem;
    color: #522D80;
    font-weight: 700; }
  body h2 {
    font-family: trade-gothic-next, sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    line-height: 3rem;
    color: #522D80;
    font-weight: 300; }
  body h3 {
    font-family: trade-gothic-next, sans-serif;
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 34px;
    line-height: 3.4rem;
    color: #522D80;
    font-weight: 700; }
  body img {
    display: block; }
  body figure {
    margin: 0; }
    body figure img {
      margin: 0 auto;
      max-width: 100%;
      object-fit: cover; }
  body p {
    margin: 0 0 15px; }
  body em {
    font-style: italic; }
  body strong,
  body .bold {
    font-weight: 700; }
  body ul {
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 16px; }
  body iframe {
    width: 100%; }
  body button,
  body i {
    cursor: pointer; }
  body button {
    background-color: #F56600;
    border: 0;
    color: #ffffff;
    margin: 0;
    padding: 10px 20px; }
  body a:focus,
  body button:focus {
    outline: 1px dotted #C8C9C7; }

/**
 * Import fonts and create font-face rules here
 * @TODO add various font formats [otf,ttf,woff,eot]
 * @see font-weight guidelines: https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight#Common_weight_name_mapping
 */
/**
 * See variables file for font-weights.
 * Try to set the font-family and weights in the component stylesheet if possible.
 * Otherwise use these utility classes on markup if _necessary_.
 */
.fontw-light {
  font-weight: 300; }

.fontw-regular {
  font-weight: 400; }

.fontw-bold {
  font-weight: 700; }

/**
 * Simple helper class for nowrap white-space on text
 * 
 * X: text-
 *    wrapping
 * 
 * ✓: no-text-wrapping
 */
.nowrap {
  white-space: nowrap; }

#__next,
#app {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
  overflow-x: hidden;
  width: 100%; }

#__next {
  align-items: stretch;
  background-color: #522D80;
  background-image: url("/images/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex; }

#header,
.main,
#footer {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 90%;
  max-width: 100%;
  width: 100%;
  background-color: #ffffff;
  height: auto; }
  @media screen and (min-width: 768px) {
    #header,
    .main,
    #footer {
      width: 650px; } }

.main {
  height: auto;
  padding-bottom: 48px; }
  @media screen and (min-width: 992px) {
    .main {
      padding-bottom: 0; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:focus {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: auto;
  height: auto;
  margin: 0;
  color: #ffffff;
  background-color: #333333;
  clip: inherit; }

.noscroll {
  height: 100vh;
  overflow: hidden; }

.clearfix {
  clear: both; }

.button {
  font-family: trade-gothic-next, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: normal;
  font-weight: 700;
  background-color: #F56600;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  padding: 5px 18px 10px; }
  .button a {
    color: #ffffff; }
  .button .icon {
    display: inline-block;
    height: 16px;
    margin-left: 10px;
    width: 20px; }
    .button .icon svg {
      fill: #ffffff; }
  .button:hover {
    background-color: #B94700;
    color: #ffffff; }
  .button.back {
    font-family: trade-gothic-next, sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    align-items: center;
    background-color: transparent;
    color: #888B8D;
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    width: 89px; }
    .button.back .icon {
      height: 7px;
      margin-left: 0;
      margin-right: 5px;
      position: relative;
      width: 9px; }
      .button.back .icon svg {
        fill: #888B8D;
        height: 7px;
        position: absolute;
        top: 0;
        width: 9px; }
    .button.back span {
      transform: rotate(180deg); }
  .button.next {
    font-family: trade-gothic-next, sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    align-items: center;
    background-color: transparent;
    color: #888B8D;
    display: flex;
    justify-content: flex-end;
    padding: 5px;
    width: 89px; }
    .button.next .icon {
      height: 7px;
      margin-left: 5px;
      position: relative;
      width: 9px; }
      .button.next .icon svg {
        fill: #888B8D;
        height: 7px;
        position: absolute;
        top: 0;
        width: 9px; }

[class$="__container"] {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 90%; }
  @media screen and (min-width: 768px) {
    [class$="__container"] {
      width: 650px; } }

span.hashtag {
  color: #1DA1F2;
  word-break: break-word; }

.icon--svg svg {
  width: 100%;
  height: 100%; }

/**
 * Styles for our main element in Layout.js
 **/
.video-transcript {
  margin-top: 10px; }
  .video-transcript.active {
    height: auto; }
    .video-transcript.active .video-transcript__toggle .icon {
      transform: rotate(0deg); }
    .video-transcript.active .video-transcript__transcript {
      display: block; }
  .video-transcript__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    width: auto;
    height: 20px;
    margin-top: 1px;
    margin-left: 1px;
    background: transparent;
    color: #333333;
    font-size: 16px;
    font-weight: 500; }
    .video-transcript__toggle:hover {
      background-color: transparent !important; }
    .video-transcript__toggle:focus {
      outline: 3px double #333333;
      outline-offset: 2px; }
    .video-transcript__toggle .icon {
      width: 15px;
      height: 15px;
      transform: rotate(45deg);
      transition: transform ease 0.3s; }
  .video-transcript__transcript {
    display: none;
    padding-top: 10px; }
    .video-transcript__transcript > p {
      font-size: 16px;
      line-height: 1.5em; }

.breadcrumbs {
  font-family: trade-gothic-next, sans-serif;
  display: none;
  height: 20px; }
  @media screen and (min-width: 992px) {
    .breadcrumbs {
      display: block; } }
  .breadcrumbs__wrapper {
    display: flex;
    align-items: center;
    width: 100%; }
  .breadcrumbs a:hover {
    text-decoration: underline; }

.facebook__post {
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
  color: #161616;
  font-family: neue-haas-unica, sans-serif;
  margin: 20px -9px;
  padding: 0 0 9px; }
  @media screen and (min-width: 992px) {
    .facebook__post {
      padding: 0 0 9px; } }
  .facebook__post__header {
    align-items: center;
    display: flex;
    margin-bottom: 25px;
    padding: 0 20px; }
    @media screen and (min-width: 992px) {
      .facebook__post__header {
        padding: 0 30px; } }
    .facebook__post__header__image {
      height: 36px;
      margin-right: 5px;
      width: 36px; }
      .facebook__post__header__image img {
        border-radius: 50%;
        height: auto;
        width: 100%; }
    .facebook__post__header__content {
      flex: 1; }
    .facebook__post__header__content + .icon {
      align-self: flex-end;
      height: 22px;
      width: 28px; }
    .facebook__post__header__name {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: normal;
      font-weight: 400; }
    .facebook__post__header__date {
      font-size: 11px;
      font-size: 1.1rem;
      line-height: normal;
      color: #888B8D; }
  .facebook__post__body {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    line-height: 2.4rem;
    margin-bottom: 24px;
    padding: 0 20px; }
    @media screen and (min-width: 992px) {
      .facebook__post__body {
        padding: 0 30px; } }
  .facebook__post__image {
    margin-bottom: 10px;
    max-width: 100%;
    width: 650px; }
    .facebook__post__image img {
      height: auto;
      width: 100%; }
  .facebook__post__attribution {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    margin-bottom: 10px;
    padding: 0 20px; }
    @media screen and (min-width: 992px) {
      .facebook__post__attribution {
        padding: 0 30px; } }
    .facebook__post__attribution__url {
      font-size: 11px;
      font-size: 1.1rem;
      line-height: 25px;
      line-height: 2.5rem;
      color: #888B8D; }
    .facebook__post__attribution__headline {
      font-weight: 400; }
  .facebook__post__unavailable {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    border: 1px solid #C8C9C7;
    display: flex;
    margin: 0 20px;
    padding: 16px; }
    .facebook__post__unavailable svg {
      height: 16px;
      margin-right: 11px;
      width: 16px; }
    .facebook__post__unavailable strong {
      font-weight: 400; }
  .facebook__post__counts {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    display: flex;
    margin-top: 10px;
    padding: 0 20px; }
    @media screen and (min-width: 992px) {
      .facebook__post__counts {
        padding: 0 30px; } }
    .facebook__post__counts__likes {
      color: #607482;
      display: flex;
      flex: 1; }
      .facebook__post__counts__likes svg {
        height: 18px;
        margin-right: 5px;
        width: 18px; }
    .facebook__post__counts__comments {
      text-align: right; }
    .facebook__post__counts__shares {
      margin-left: 13px; }

.facebook__profile {
  font-family: neue-haas-unica, sans-serif;
  color: #161616;
  margin: 0 -9px;
  position: relative; }
  .facebook__profile__image {
    height: 210px;
    margin-bottom: 41px;
    position: relative; }
    .facebook__profile__image__background {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 210px;
      margin-bottom: 59px;
      max-width: 100%;
      width: 650px; }
      .facebook__profile__image__background img {
        height: 100%;
        width: auto; }
    .facebook__profile__image__image {
      border-radius: 50%;
      border: 4px solid #ffffff;
      bottom: -29px;
      height: 140px;
      margin: 0 20px;
      position: absolute;
      width: 140px; }
  .facebook__profile__name {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 35px;
    line-height: 3.5rem;
    margin: 0 20px 10px; }
  .facebook__profile__description {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 2.6rem;
    color: #607482;
    margin: 0 20px 24px; }
  .facebook__profile__counts {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
    line-height: 1.8rem;
    display: flex;
    padding: 0 20px 20px; }
    @media screen and (min-width: 992px) {
      .facebook__profile__counts {
        padding: 0 30px 20px; } }
    .facebook__profile__counts strong {
      font-weight: 400; }
  .facebook__profile__labels {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 35px;
    line-height: 3.5rem;
    border-bottom: 1px solid #EAEAEA;
    color: #333333;
    font-weight: 400;
    padding-left: 20px;
    width: 100%; }
    @media screen and (min-width: 992px) {
      .facebook__profile__labels {
        padding-left: 30px; } }
    .facebook__profile__labels::before {
      background-color: #F6F6F6;
      content: " ";
      display: block;
      border-bottom: 1px solid #EAEAEA;
      border-top: 1px solid #EAEAEA;
      margin-left: -20px;
      margin-right: -20px;
      height: 16px;
      width: 650px; }
      @media screen and (min-width: 992px) {
        .facebook__profile__labels::before {
          margin-left: -30px;
          margin-right: -30px; } }

.instagram__post {
  display: flex;
  flex-direction: column;
  margin-left: -9px;
  margin-right: -9px; }
  @media screen and (min-width: 992px) {
    .instagram__post {
      flex-direction: row;
      flex-wrap: wrap; }
      .instagram__post__wrapper {
        order: 1;
        width: 287px; } }
  .instagram__post::before {
    background-color: #F6F6F6;
    content: " ";
    display: block;
    border-bottom: 1px solid #EAEAEA;
    border-top: 1px solid #EAEAEA;
    max-width: 100%;
    height: 16px;
    width: 650px; }
  .instagram__post__header {
    align-items: center;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    margin-bottom: 13px;
    padding: 13px 9px 16px; }
    .instagram__post__header__image {
      height: 36px;
      margin-right: 5px;
      width: 36px; }
      .instagram__post__header__image img {
        border-radius: 50%;
        height: auto;
        width: 100%; }
    .instagram__post__header__name {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: normal;
      flex: 1;
      font-weight: 400; }
    .instagram__post__header svg {
      height: 21px;
      width: 21px; }
  .instagram__post__body {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    line-height: 2.4rem;
    margin-bottom: 13px;
    padding: 0 9px;
    word-break: break-word; }
  .instagram__post__date {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 25px;
    line-height: 2.5rem;
    color: #888B8D;
    margin-bottom: 13px;
    padding: 0 9px; }
  .instagram__post__counts {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    display: flex;
    margin-bottom: 16px;
    padding: 0 9px; }
    .instagram__post__counts > div {
      margin-right: 13px; }
  .instagram__post__image, .instagram__post__video {
    max-width: 100%;
    width: 650px; }
    @media screen and (min-width: 992px) {
      .instagram__post__image, .instagram__post__video {
        margin-right: 20px;
        width: 325px; } }
    .instagram__post__image img, .instagram__post__video img {
      height: auto;
      width: 100%; }
  .instagram__post__video .video-react-big-play-button {
    background-color: transparent;
    background-image: url("/images/icons/icon-video.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    height: 83px;
    left: 50%;
    margin-left: -41px;
    margin-top: -41px;
    top: 50%;
    width: 83px; }
    .instagram__post__video .video-react-big-play-button::before {
      display: none; }
  .instagram__post:last-child {
    margin-bottom: 16px; }

.instagram__profile {
  font-family: neue-haas-unica, sans-serif;
  color: #161616;
  padding: 0 11px;
  position: relative; }
  @media screen and (min-width: 992px) {
    .instagram__profile {
      padding: 0 21px; } }
  .instagram__profile__image {
    align-items: center;
    display: flex;
    margin-bottom: 15px;
    position: relative; }
    .instagram__profile__image__image {
      border-radius: 50%;
      border: 4px solid #ffffff;
      height: 94px;
      margin-right: 13px;
      width: 94px; }
    .instagram__profile__image__details {
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .instagram__profile__image__details__username {
        font-size: 21px;
        font-size: 2.1rem;
        line-height: 35px;
        line-height: 3.5rem;
        font-weight: 400; }
      .instagram__profile__image__details svg {
        height: 29px;
        width: 150px; }
  .instagram__profile__name, .instagram__profile__description {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 2.6rem;
    color: #607482; }
  .instagram__profile__counts {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
    line-height: 1.8rem; }
  .instagram__profile__counts {
    border-top: 1px solid #EAEAEA;
    display: flex;
    color: #607482;
    justify-content: space-between;
    margin: 20px -20px 0;
    padding: 20px 20px; }
    @media screen and (min-width: 992px) {
      .instagram__profile__counts {
        margin: 20px -30px 0;
        padding: 20px 30px; } }
    .instagram__profile__counts strong {
      color: #161616;
      font-weight: 400; }

.main-menu ul {
  list-style: none; }

.main-menu__list {
  margin: 0;
  padding-left: 0; }
  .main-menu__list__item {
    background-color: #ffffff;
    border-bottom: 1px solid #444444;
    margin: 0;
    padding: 20px; }
    .main-menu__list__item:last-child {
      display: flex;
      flex-direction: column; }
    .main-menu__list__item:last-child {
      margin-bottom: 30px; }
    .main-menu__list__item__submenu {
      height: 0;
      overflow: hidden;
      padding-left: 0; }
      .main-menu__list__item__submenu.active {
        height: auto; }
      .main-menu__list__item__submenu__title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 32px;
        line-height: 3.2rem;
        color: #888B8D;
        font-weight: 300;
        margin-bottom: 17px;
        text-transform: uppercase; }
      .main-menu__list__item__submenu__item a {
        align-items: center;
        display: flex;
        font-weight: 400;
        margin-bottom: 12px; }
        .main-menu__list__item__submenu__item a img {
          border-radius: 50%;
          height: 33px;
          margin-right: 5px;
          width: 33px; }
        .main-menu__list__item__submenu__item a:hover {
          text-decoration: underline; }
    .main-menu__list__item > a {
      font-family: trade-gothic-next, sans-serif;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: normal;
      font-weight: 700; }

.reset-quiz {
  color: #133643;
  text-align: center; }
  .reset-quiz a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 18px;
    line-height: 1.8rem;
    color: #133643;
    font-weight: 300;
    text-decoration: underline; }
  .reset-quiz p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 18px;
    line-height: 1.8rem;
    color: #133643;
    font-weight: 300; }

.twitter__post {
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
  color: #161616;
  font-family: neue-haas-unica, sans-serif;
  margin: 20px -9px;
  padding: 0 20px 20px; }
  @media screen and (min-width: 992px) {
    .twitter__post {
      padding: 0 30px 20px; } }
  .twitter__post:last-child {
    border-bottom: 2px solid rgba(51, 51, 51, 0.16); }
  .twitter__post__header {
    align-items: center;
    display: flex;
    margin-bottom: 25px; }
    .twitter__post__header__image {
      height: 36px;
      margin-right: 5px;
      width: 36px; }
      .twitter__post__header__image img {
        border-radius: 50%;
        height: auto;
        width: 100%; }
    .twitter__post__header__content {
      flex: 1; }
    .twitter__post__header__content + .icon {
      align-self: flex-end;
      height: 22px;
      width: 28px; }
    .twitter__post__header__name, .twitter__post__header__username {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: normal;
      font-weight: 400; }
  .twitter__post__body {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    line-height: 2.4rem;
    color: #333333;
    margin-bottom: 15px; }
  .twitter__post__image {
    border: 2px solid #CCD6DD;
    border-radius: 10px;
    height: auto;
    margin-bottom: 15px;
    width: 100%; }
  .twitter__post__video {
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden; }
    .twitter__post__video .video-react-big-play-button {
      background-color: transparent;
      background-image: url("/images/icons/icon-video.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      border: 0;
      height: 83px;
      left: 50%;
      margin-left: -41px;
      margin-top: -41px;
      top: 50%;
      width: 83px; }
      .twitter__post__video .video-react-big-play-button::before {
        display: none; }
  .twitter__post__attribution {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    color: #888B8D;
    margin-bottom: 13px; }
    .twitter__post__attribution strong {
      color: #161616;
      font-weight: 400; }
    .twitter__post__attribution svg {
      height: 16px;
      margin-bottom: -3px;
      margin-left: 5px;
      width: 16px; }
  .twitter__post__date {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    color: #607482;
    margin-bottom: 20px; }
  .twitter__post__footer {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    align-items: center;
    color: #607482;
    display: flex;
    justify-content: space-between; }
    .twitter__post__footer svg {
      fill: #607482;
      height: 13px;
      margin-bottom: -3px;
      margin-right: 5px;
      width: 13px; }
  .twitter__post__comments, .twitter__post__retweets, .twitter__post__likes {
    align-items: center;
    display: flex; }
  .twitter__post__retweets svg {
    height: 15px;
    width: 15px; }

.twitter__profile {
  font-family: neue-haas-unica, sans-serif;
  color: #161616;
  padding: 0 11px;
  position: relative; }
  @media screen and (min-width: 992px) {
    .twitter__profile {
      padding: 0 21px; } }
  .twitter__profile__image {
    height: 210px;
    margin-bottom: 29px;
    position: relative; }
    .twitter__profile__image__background {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 210px;
      margin-bottom: 59px;
      margin-left: -20px;
      margin-right: -20px;
      width: 650px; }
      @media screen and (min-width: 992px) {
        .twitter__profile__image__background {
          margin-left: -30px;
          margin-right: -30px; } }
      .twitter__profile__image__background img {
        height: 100%;
        width: auto; }
    .twitter__profile__image__image {
      border-radius: 50%;
      border: 4px solid #ffffff;
      bottom: -29px;
      height: 140px;
      position: absolute;
      width: 140px; }
  .twitter__profile__buttons {
    height: 29px;
    margin-top: -10px;
    position: relative; }
    .twitter__profile__buttons img {
      position: absolute;
      right: 0; }
  .twitter__profile__details {
    margin-bottom: 20px; }
    .twitter__profile__details__name {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 35px;
      line-height: 3.5rem;
      font-weight: 400; }
    .twitter__profile__details__username {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 25px;
      line-height: 2.5rem;
      color: #607482;
      font-weight: 400;
      margin-bottom: 20px; }
    .twitter__profile__details__description, .twitter__profile__details__location, .twitter__profile__details__joined {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 18px;
      line-height: 1.8rem;
      color: #607482;
      font-weight: 300;
      margin-bottom: 6px; }
  .twitter__profile__counts {
    border-bottom: 1px solid rgba(51, 51, 51, 0.16);
    display: flex;
    margin: 20px -20px 0;
    padding: 20px 20px; }
    @media screen and (min-width: 992px) {
      .twitter__profile__counts {
        margin: 20px -30px 0;
        padding: 20px 30px; } }
    .twitter__profile__counts strong {
      font-weight: 400; }
    .twitter__profile__counts__followers {
      margin-left: 15px; }
  .twitter__profile__labels {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 35px;
    line-height: 3.5rem;
    align-items: center;
    border-bottom: 1px solid #EAEAEA;
    color: #888B8D;
    display: flex;
    font-family: trade-gothic-next, sans-serif;
    justify-content: space-between;
    margin: 0 -20px;
    padding: 0 20px; }
    @media screen and (min-width: 992px) {
      .twitter__profile__labels {
        margin: 0 -30px;
        padding: 0 30px; } }
    .twitter__profile__labels__label {
      padding: 17px;
      text-align: center; }
      .twitter__profile__labels__label:first-child {
        border-bottom: 3px solid #1DA1F2; }

.twitter__quote {
  border: 2px solid #C8C9C7;
  border-radius: 10px;
  margin-bottom: 10px; }
  .twitter__quote__info {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    display: flex;
    color: #888B8D;
    padding: 13px 13px 20px; }
    .twitter__quote__info__image {
      border-radius: 50%;
      height: 28px;
      margin-right: 5px;
      width: 28px; }
    .twitter__quote__info__name {
      color: #161616; }
      .twitter__quote__info__name svg {
        height: 16px;
        margin-left: 5px;
        margin-right: 13px;
        width: 16px; }
    .twitter__quote__info__username {
      flex: 1;
      margin-right: 13px; }
  .twitter__quote__text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 16px;
    line-height: 1.6rem;
    padding: 0 13px 13px; }
  .twitter__quote__image img,
  .twitter__quote__image .video-react-poster {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: auto;
    margin-top: 13px;
    width: 100%; }
  .twitter__quote__image .video-react-poster {
    margin-top: 0;
    overflow: hidden; }
  .twitter__quote__image .video-react-big-play-button {
    background-color: transparent;
    background-image: url("/images/icons/icon-video.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    height: 83px;
    left: 50%;
    margin-left: -41px;
    margin-top: -41px;
    top: 50%;
    width: 83px; }
    .twitter__quote__image .video-react-big-play-button::before {
      display: none; }

.twitter__retweet__retweet {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 13px;
  line-height: 1.3rem;
  display: flex;
  color: #888B8D;
  justify-content: flex-start;
  margin-bottom: 15px; }
  .twitter__retweet__retweet svg {
    height: 13px;
    margin-right: 5px;
    width: 13px; }

.twitter__retweet__info {
  align-items: center;
  display: flex;
  margin-bottom: 25px; }
  .twitter__retweet__info .icon {
    align-self: flex-start;
    height: 22px;
    width: 28px; }
  .twitter__retweet__info__name {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal;
    display: flex;
    flex: 1;
    flex-direction: column; }
    .twitter__retweet__info__name svg {
      height: 16px;
      margin-left: 5px;
      width: 16px; }
  .twitter__retweet__info__image {
    border-radius: 50%;
    height: 36px;
    margin-right: 8px;
    width: 36px; }

@media screen and (min-width: 992px) {
  .footer {
    margin-bottom: 48px; } }

.header {
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 992px) {
    .header {
      margin-top: 48px; } }
  .header--overlay {
    background-color: rgba(46, 26, 71, 0.6);
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1; }
    .header--overlay.active {
      display: block; }
  .header__content {
    align-items: center;
    display: flex;
    padding: 14px 0 14px 20px; }
    .header__content__logo {
      flex: 1; }
      .header__content__logo svg {
        height: 17px;
        width: 180px; }
        @media screen and (min-width: 992px) {
          .header__content__logo svg {
            height: 26px;
            width: 270px; } }
    .header__content__trigger {
      z-index: 2; }
      .header__content__trigger button {
        background-color: transparent; }
      .header__content__trigger svg {
        height: 24px;
        width: 28px; }
      .header__content__trigger.active svg {
        height: 25px;
        width: 25px; }
  .header__drawer {
    display: flex;
    height: auto;
    justify-content: flex-end;
    min-height: 100vh;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 0px;
    transition: width 0.4s;
    z-index: 2; }
    .header__drawer.active {
      max-width: 100%;
      width: 324px; }
    .header__drawer__wrapper {
      background-color: #F6F6F6;
      border: 1px solid #444444;
      width: 324px; }
    .header__drawer__shares {
      padding: 0 20px; }
      .header__drawer__shares__icons {
        align-items: center;
        color: #2E1A47;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start; }
        .header__drawer__shares__icons .menu__list__item__submenu__title {
          margin-top: 10px;
          width: 100%; }
      .header__drawer__shares textarea {
        right: -200%;
        position: absolute; }
      .header__drawer__shares svg {
        height: 30px;
        width: 30px; }
      .header__drawer__shares a {
        display: block;
        font-size: 0;
        margin: 0 5.5px; }
    .header__drawer__sitemap {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 20px;
      line-height: 2rem;
      margin-bottom: 50px;
      margin-top: 30px;
      text-align: center; }
      .header__drawer__sitemap a {
        font-weight: 300; }
        .header__drawer__sitemap a:hover {
          text-decoration: underline; }

.video-player {
  position: relative; }
  .video-player .video-react-big-play-button {
    font-size: 0;
    position: absolute; }

.popout {
  background-color: rgba(46, 26, 71, 0.6);
  align-items: center;
  display: flex;
  height: 100%;
  left: 0;
  justify-content: center;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: -200%;
  transition: all 0.3s;
  width: 100%;
  z-index: 99; }
  .popout.active {
    opacity: 1;
    top: 0; }
  .popout__button {
    background-color: transparent;
    display: block;
    height: 36px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 36px;
    z-index: 1; }
    .popout__button svg {
      height: 36px;
      width: 36px; }
  .popout__content {
    background-color: #ffffff;
    border-radius: 10px;
    height: auto;
    max-height: 90%;
    overflow-y: scroll;
    padding: 30px;
    position: relative;
    width: 600px; }
    @media screen and (min-width: 992px) {
      .popout__content {
        width: 900px; } }
    .popout__content img {
      height: auto;
      margin: 0 auto;
      max-width: 100%;
      width: auto; }

.question__hint__profile-image {
  border-radius: 50%;
  height: 200px;
  margin: 20px auto;
  width: 200px; }

.question__hint__profile-info {
  margin: 24px auto 30px;
  max-width: 300px; }
  .question__hint__profile-info__username {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 35px;
    line-height: 3.5rem;
    font-weight: 400; }
  .question__hint__profile-info__name {
    font-weight: 400; }
  .question__hint__profile-info__name, .question__hint__profile-info__details {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: normal; }

.question__hint__question-mark {
  font-size: 200px;
  font-size: 20rem;
  line-height: 252px;
  line-height: 25.2rem;
  color: #2E1A47;
  font-weight: 700;
  margin: 0 auto 20px;
  text-align: center; }

.question__hint__wrapper {
  background-color: #2E1A47;
  border-radius: 4px;
  color: #ffffff;
  padding: 20px 30px 30px 30px; }

.question__hint__navigation {
  display: flex;
  justify-content: space-between; }

.question__hint .back,
.question__hint .next {
  margin-bottom: 20px; }

.question__hint__prefix {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #F56600;
  font-weight: 400; }

.question__hint__title {
  font-family: trade-gothic-next, sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 40px;
  line-height: 4rem;
  color: #ffffff;
  font-weight: 700;
  margin: 5px 0 13px; }

.question__hint .icon {
  display: block;
  text-align: center;
  width: 100%; }
  .question__hint .icon svg {
    height: 28px;
    margin: 0 auto;
    width: 60px; }

.question__hint__next {
  background-color: #2E1A47;
  border-radius: 4px;
  color: #ffffff;
  padding: 42px 30px 70px;
  text-align: center; }
  .question__hint__next .question__response__more {
    margin-bottom: 40px;
    margin-top: 0; }
  .question__hint__next__button {
    text-align: center; }
  .question__hint__next__more {
    margin: 0 auto 41px;
    max-width: 90%;
    text-align: center;
    width: 350px; }
    .question__hint__next__more svg {
      fill: #ffffff;
      height: 13px;
      width: 13px; }
    .question__hint__next__more a {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 24px;
      line-height: 2.4rem;
      color: #ffffff;
      display: block;
      font-weight: 300;
      text-align: center;
      text-transform: uppercase; }
      .question__hint__next__more a:hover {
        color: #ffffff;
        text-decoration: underline; }

.question__response {
  background-color: #2E1A47;
  border-radius: 4px;
  color: #ffffff;
  padding: 30px; }
  .question__response button.back {
    margin-top: -12px; }
  .question__response__correct {
    font-family: trade-gothic-next, sans-serif;
    font-size: 50px;
    font-size: 5rem;
    line-height: 63px;
    line-height: 6.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px; }
  .question__response__profile img {
    border-radius: 50%;
    border: 4px solid #ffffff;
    height: 140px;
    margin: 0 auto;
    width: 140px; }
  .question__response__details {
    margin-bottom: 24px;
    margin-top: 24px; }
    .question__response__details a {
      color: #ffffff;
      font-weight: 300;
      text-decoration: underline; }
      .question__response__details a:hover {
        color: #F56600; }
  .question__response__button {
    text-align: center; }
  .question__response__more {
    margin: 41px auto 0;
    max-width: 90%;
    text-align: center;
    width: 350px; }
    .question__response__more svg {
      fill: #ffffff;
      height: 13px;
      width: 13px; }
    .question__response__more a {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 24px;
      line-height: 2.4rem;
      color: #ffffff;
      display: block;
      font-weight: 300;
      text-align: center;
      text-transform: uppercase; }
      .question__response__more a:hover {
        color: #ffffff;
        text-decoration: underline; }
  .page-question-voted .question__response {
    height: 100%; }

.question__vote {
  background-color: #2E1A47;
  color: #ffffff;
  margin-bottom: 10px;
  padding: 20px; }
  .question__vote__text {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: normal;
    margin-bottom: 15px;
    text-align: center; }
  .question__vote__buttons {
    align-items: center;
    display: flex;
    justify-content: center; }
    .question__vote__buttons__troll.button, .question__vote__buttons__not.button {
      padding-left: 20px;
      padding-right: 20px; }
    .question__vote__buttons span {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: normal;
      align-items: center;
      background-color: #B94700;
      border-radius: 50%;
      display: flex;
      font-weight: 600;
      height: 30px;
      justify-content: center;
      margin: 0 15px;
      padding-bottom: 5px;
      text-align: center;
      text-transform: lowercase;
      width: 30px; }

.resource-link {
  margin-bottom: 25px; }
  .resource-link__header {
    font-family: trade-gothic-next, sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 24px;
    line-height: 2.4rem;
    color: #888B8D;
    text-transform: uppercase;
    margin-bottom: 7px; }
  .resource-link__link {
    font-family: trade-gothic-next, sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 28px;
    line-height: 2.8rem;
    color: #2E1A47;
    font-family: plantin, sans-serif;
    margin-bottom: 7px; }
    .resource-link__link a {
      color: #2E1A47; }
      .resource-link__link a:hover {
        text-decoration: underline; }
  .resource-link__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem; }

.resources-view-all {
  font-family: trade-gothic-next, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #2E1A47;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  text-align: center; }
  .resources-view-all span {
    color: #F56600; }
  .resources-view-all:hover {
    text-decoration: underline; }

.similar-accounts {
  border-bottom: 2px solid rgba(51, 51, 51, 0.16);
  border-top: 2px solid rgba(51, 51, 51, 0.16);
  margin: 24px auto;
  max-width: 450px;
  padding: 24px 0; }
  .similar-accounts__header {
    color: #888B8D;
    margin-bottom: 10px; }
  .similar-accounts ul {
    list-style: none; }
    .similar-accounts ul li a {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 36px;
      line-height: 3.6rem;
      display: flex;
      font-weight: 400; }
      .similar-accounts ul li a img {
        border-radius: 50%;
        height: 36px;
        margin-bottom: 10px;
        margin-right: 10px;
        width: 36px; }

.page {
  height: auto;
  max-width: 100vw;
  padding: 0 9px 9px;
  width: 100%; }
  .page.page-start, .page.page-about, .page.page-privacy, .page.page-resources, .page.page-resources-indepth {
    padding-left: 20px;
    padding-right: 20px; }
    @media screen and (min-width: 992px) {
      .page.page-start, .page.page-about, .page.page-privacy, .page.page-resources, .page.page-resources-indepth {
        padding-left: 30px;
        padding-right: 30px; } }
  .page__body {
    margin: 30px 0; }
  .page.sitemap h1 {
    margin-top: 30px; }
  .page.sitemap .page-start__body {
    margin: 30px 0; }
    @media screen and (min-width: 992px) {
      .page.sitemap .page-start__body {
        margin: 60px 0; } }
    .page.sitemap .page-start__body a:hover {
      text-decoration: underline; }

.page-about {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem; }
  .page-about h2,
  .page-about h3 {
    margin-bottom: 20px; }
  .page-about .page__body__section {
    margin-bottom: 50px; }
    .page-about .page__body__section a {
      display: inline-block; }
    .page-about .page__body__section:nth-child(2) {
      text-align: center; }
    .page-about .page__body__section:nth-child(4) {
      margin-bottom: 0; }
      .page-about .page__body__section:nth-child(4) svg {
        height: 40px;
        width: 181px; }
    .page-about .page__body__section:nth-child(5), .page-about .page__body__section:nth-child(6) {
      margin-bottom: 20px; }
      .page-about .page__body__section:nth-child(5) img, .page-about .page__body__section:nth-child(6) img {
        height: auto;
        width: 181px; }
    .page-about .page__body__section:nth-child(7) h3 {
      margin-top: 50px; }
  .page-about .page__body .icon-twitter img {
    display: inline-block;
    margin-left: 10px;
    width: 20px; }

/**
 * This styles our custom _error page/component
 */
.page-error {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  width: 100%; }

.error__status {
  font-size: 24px;
  font-weight: bold;
  margin-right: 16px;
  margin-top: 10px; }

.error__divider {
  width: 2px;
  height: 50px;
  margin-right: 16px;
  margin-top: 10px;
  background-color: #EAEAEA; }

.main-front {
  padding-bottom: 48px; }
  @media screen and (min-width: 992px) {
    .main-front {
      padding-bottom: 0; } }

.page-front__intro {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 90%;
  font-family: trade-gothic-next, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: normal;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin: 22px auto 30px;
  text-align: center;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .page-front__intro {
      width: 650px; } }
  @media screen and (min-width: 415px) {
    .page-front__intro {
      margin: 32px auto 50px; } }
  .page-front__intro a {
    font-family: trade-gothic-next, sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: normal;
    font-family: neue-haas-unica, sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline; }
    .page-front__intro a:hover {
      color: #F56600; }

.page-front__logo {
  background-color: #ffffff;
  border-bottom: 7px solid #F56600;
  border-top: 7px solid #F56600;
  margin: 0 -9px 35px;
  padding: 40px 0 20px;
  text-align: center;
  width: 100vw; }
  @media screen and (min-width: 415px) {
    .page-front__logo {
      margin-bottom: 55px; } }
  .page-front__logo svg {
    height: auto;
    width: 288px; }

.page-front__body p {
  text-align: center; }

.page-front__startbutton {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 90%;
  margin-top: 20px;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .page-front__startbutton {
      width: 650px; } }
  @media screen and (min-width: 415px) {
    .page-front__startbutton {
      margin-top: 40px; } }

.page-front__body {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 90%;
  color: #ffffff; }
  @media screen and (min-width: 768px) {
    .page-front__body {
      width: 650px; } }

.page-privacy__body h2 {
  font-family: trade-gothic-next, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 34px;
  line-height: 3.4rem;
  color: #522D80;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 10px; }

.page-privacy__body h3 {
  font-family: trade-gothic-next, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 30px;
  line-height: 3rem;
  color: #522D80;
  font-weight: 300;
  margin-bottom: 5px; }

.page-privacy__body h4 {
  font-weight: 700; }

.page-privacy__body ul {
  margin-bottom: 20px;
  margin-left: 15px; }
  .page-privacy__body ul li {
    margin-bottom: 10px; }

.question {
  position: relative; }
  .question h1 {
    font-family: trade-gothic-next, sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 40px;
    line-height: 4rem;
    font-weight: 700;
    color: #F56600;
    margin-bottom: 10px; }
  .question__intro {
    margin-bottom: 10px; }
    .question__intro__wrapper {
      background-color: #2E1A47;
      border-radius: 4px;
      color: #ffffff;
      padding: 20px 30px 30px 30px; }
      .question__intro__wrapper .back,
      .question__intro__wrapper .next {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 20px; }
    .question__intro__navigation {
      display: flex;
      justify-content: space-between; }
    .question__intro .icon--arrow-down {
      display: block;
      text-align: center;
      width: 100%; }
      .question__intro .icon--arrow-down svg {
        height: 28px;
        margin: -1px auto 0;
        width: 60px; }
  .page-question-voted .question {
    height: 100%; }

.page-resources__body {
  margin: 30px 0; }

.page-resources__button {
  margin: 30px 0;
  text-align: center; }

.page-resources-index .page__body__section h2 {
  font-family: trade-gothic-next, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 34px;
  line-height: 3.4rem;
  color: #522D80;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 35px; }

.page-resources-index .page__body__section__header {
  color: #B94700;
  font-style: italic;
  margin-bottom: 15px; }
  .page-resources-index .page__body__section__header strong {
    padding-right: 5px; }
  .page-resources-index .page__body__section__header a {
    color: #B94700;
    font-weight: 400;
    padding: 0 5px;
    text-decoration: underline; }

.page-resources-indepth .back {
  margin-bottom: 15px; }

.page-resources-indepth__header {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  line-height: 1.8rem;
  align-items: center;
  color: #2E1A47;
  display: flex;
  font-weight: 300;
  justify-content: flex-start;
  margin-bottom: 10px;
  text-transform: uppercase; }
  .page-resources-indepth__header .icon {
    margin-right: 10px; }
  .page-resources-indepth__header svg {
    height: 18px;
    width: 22px; }

.page-resources-indepth__title {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px; }
  .page-resources-indepth__title__image {
    border-radius: 50%;
    height: 75px;
    margin-right: 5px;
    width: 75px; }
  .page-resources-indepth__title h1 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 34px;
    line-height: 3.4rem; }

.page-resources-indepth__body {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem; }
  .page-resources-indepth__body__section.post {
    border: 2px solid rgba(51, 51, 51, 0.16);
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    max-width: 450px; }
    .page-resources-indepth__body__section.post .image {
      height: auto;
      width: 100%; }
    .page-resources-indepth__body__section.post .twitter__post {
      margin: 0;
      padding: 18px; }
    .page-resources-indepth__body__section.post .twitter__post:last-child {
      border-bottom: 0; }
    .page-resources-indepth__body__section.post .facebook__post {
      margin: 0;
      padding: 18px 0; }
    .page-resources-indepth__body__section.post .instagram__post {
      flex-direction: column;
      margin: 0; }
      .page-resources-indepth__body__section.post .instagram__post::before {
        display: none; }
      .page-resources-indepth__body__section.post .instagram__post__wrapper, .page-resources-indepth__body__section.post .instagram__post__image {
        margin-left: 0;
        margin-right: 0;
        order: 0;
        width: 100%; }
      .page-resources-indepth__body__section.post .instagram__post__header, .page-resources-indepth__body__section.post .instagram__post__counts, .page-resources-indepth__body__section.post .instagram__post__date {
        padding-left: 18px;
        padding-right: 18px; }
      .page-resources-indepth__body__section.post .instagram__post__counts {
        padding-bottom: 0; }
  .page-resources-indepth__body__section.text {
    margin: 0 0 24px;
    padding: 0 0 24px; }

.page-resources-indepth__button {
  background-color: #2E1A47;
  border-radius: 4px;
  color: #ffffff;
  margin: 0 -21px 9px;
  padding: 30px;
  text-align: center; }
  .page-resources-indepth__button a {
    color: #ffffff; }

.page-resources-indepth__links {
  background-color: #EAEAEA;
  margin-bottom: -9px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 30px 20px; }
  @media screen and (min-width: 992px) {
    .page-resources-indepth__links {
      margin-left: -30px;
      margin-right: -30px;
      padding: 50px 30px;
      width: 650px; } }
  .page-resources-indepth__links h3 {
    margin-bottom: 20px; }
  .page-resources-indepth__links svg {
    height: 10px;
    width: 10px; }

.results__score__share {
  margin-bottom: 10px; }
  .results__score__share__wrapper {
    background-color: #2E1A47;
    border-radius: 4px;
    color: #ffffff;
    margin: 10px 10px 0;
    padding: 30px; }
  .results__score__share__title {
    font-family: trade-gothic-next, sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 40px;
    line-height: 4rem;
    font-weight: 700;
    color: #F56600;
    color: #F56600;
    margin-bottom: 13px;
    text-align: center; }
  .results__score__share__buttons {
    display: flex;
    justify-content: center;
    font-size: 0; }
    .results__score__share__buttons a {
      display: block; }
      .results__score__share__buttons a:nth-child(3) {
        display: none; }
    .results__score__share__buttons textarea {
      position: absolute;
      right: 200%; }
    .results__score__share__buttons svg {
      height: 36px;
      margin: 0 12px;
      width: 36px; }
  .results__score__share__wrapper + .icon {
    display: block;
    margin-top: -5px;
    text-align: center;
    width: 100%; }
    .results__score__share__wrapper + .icon svg {
      height: 36px;
      margin: 0 auto;
      width: 60px; }

.results__score__score {
  border: 8px solid #F56600;
  border-radius: 50%;
  height: 192px;
  margin: 15px auto;
  width: 188px; }
  .results__score__score__title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: normal;
    color: #522D80;
    font-weight: 700;
    margin-top: 30px;
    text-align: center;
    text-transform: uppercase; }
  .results__score__score__content {
    font-size: 95px;
    font-size: 9.5rem;
    line-height: 73px;
    line-height: 7.3rem;
    font-family: trade-gothic-next, sans-serif;
    font-family: trade-gothic-next-compressed, sans-serif;
    font-weight: 800;
    align-items: center;
    color: #522D80;
    display: flex;
    justify-content: center; }

.results__score__body {
  margin-bottom: 30px;
  padding: 0 50px; }
  .results__score__body h2, .results__score__body h3 {
    text-align: center; }
  .results__score__body p:nth-of-type(1) {
    margin-top: 20px; }

.results__score__quiz-start {
  margin-bottom: 20px;
  text-align: center; }

.results__score__links a {
  display: block;
  margin-bottom: 24px;
  text-align: center; }
  .results__score__links a svg {
    height: 10px;
    width: 10px; }

.page-start h1,
.page-start h2 {
  margin-bottom: 15px; }

.page-start__button {
  margin-bottom: 80px;
  margin-top: 35px;
  text-align: center; }

.page-start .reset-quiz {
  margin-bottom: 50px; }

.page-start .resources-view-all {
  display: block; }
  .page-start .resources-view-all:not(:last-child) {
    margin-bottom: 25px; }

.page-start .reset-quiz {
  margin-top: 50px; }

/* Make clicks pass-through */
#nprogress {
  pointer-events: none; }

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

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

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px; }

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #F56600;
  border-left-color: #F56600;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite; }

.nprogress-custom-parent {
  overflow: hidden;
  position: relative; }

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute; }

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

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

