html, body {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%; }

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Metro, Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

button, input[type="submit"] {
  background-color: #F37022;
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  text-transform: uppercase; }
  button.disabled, input[type="submit"].disabled {
    opacity: 0.5; }

.hidden {
  visibility: hidden;
  opacity: 0; }

.template, .fullscreen {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.footerNav {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%; }
  .footerNav button {
    position: absolute;
    bottom: 20px; }
    .footerNav button.left {
      left: 20px; }
    .footerNav button.right {
      right: 20px; }

body[nav="intake"] .footerNav {
  display: none; }
body[nav="initials"] .footerNav .left {
  display: none; }
body[nav="ending"] .footerNav .right {
  display: none; }

#intake_form .landing {
  background: url("../img/welcome.jpg") center top no-repeat;
  display: flex;
  align-items: center; }
  #intake_form .landing .panel {
    background: url("../img/landing_panel.png");
    background-size: 100% 100%;
    width: 450px;
    height: 100%; }
    #intake_form .landing .panel .formContainer {
      padding: 300px 50px;
      text-align: center; }
      #intake_form .landing .panel .formContainer .header {
        font-weight: bold;
        font-size: 70px;
        text-transform: uppercase;
        line-height: 65px;
        margin-bottom: 30px; }
      #intake_form .landing .panel .formContainer input[type="text"] {
        display: block;
        padding: 5px 10px;
        margin: 0 auto 20px; }
        #intake_form .landing .panel .formContainer input[type="text"].default {
          color: #999; }
        #intake_form .landing .panel .formContainer input[type="text"].error {
          outline: 2px solid #f00; }
      #intake_form .landing .panel .formContainer input[type="submit"] {
        width: 50%;
        display: inline-block; }
  #intake_form .landing .title {
    height: 100px;
    margin-left: 50px;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 102px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); }
@media (max-width: 1145px) {
  #intake_form .landing {
    display: block;
    background-position: right -260px top 0; }
    #intake_form .landing .title {
      position: absolute;
      top: 100px;
      text-shadow: 0 0 3px black;
      margin-left: 0;
      text-align: center;
      width: 100%; }
    #intake_form .landing .panel {
      background: none;
      width: 100%; }
      #intake_form .landing .panel .formContainer {
        padding: 25px;
        width: calc(100% - 50px);
        background: rgba(0, 0, 0, 0.75);
        position: absolute;
        bottom: 0; } }
@media (max-width: 880px) {
  #intake_form .landing .title {
    font-size: 82px; } }
@media (max-width: 692px) {
  #intake_form .landing .title {
    font-size: 64px; }
  #intake_form .landing .panel .formContainer .header {
    font-size: 36px;
    line-height: 40px; } }
@media (max-width: 590px) {
  #intake_form .landing .title {
    font-size: 44px;
    top: 20px; } }
@media (max-width: 390px) {
  #intake_form .landing .title {
    font-size: 36px;
    top: 20px; } }

#starmap, #demomap {
  background: url("../img/constellation_dark.jpg");
  background-size: cover; }
  #starmap #cameraLens, #demomap #cameraLens {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: top left; }
    #starmap #cameraLens .debugBox, #demomap #cameraLens .debugBox {
      position: absolute;
      border: 1px solid #f00;
      pointer-events: none;
      display: none; }
  #starmap .map, #demomap .map {
    width: 1900px;
    height: 1080px; }
    #starmap .map .constellations .constellation, #demomap .map .constellations .constellation {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 1000px; }
    #starmap .map .sun, #demomap .map .sun {
      position: absolute;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: #ffa500;
      left: calc(50% - 70px);
      top: calc(50% - 70px);
      border: 5px solid #fff;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      #starmap .map .sun .label, #demomap .map .sun .label {
        width: 100%;
        text-align: center;
        color: #000;
        font-size: 16px; }
    #starmap .map .star, #demomap .map .star {
      position: absolute;
      left: 50%;
      top: 50%;
      text-align: center;
      display: none;
      transition: 0.5s;
      transition-property: opacity, box-shadow; }
      #starmap .map .star .spoke, #demomap .map .star .spoke {
        position: absolute;
        left: -5px;
        top: 10px;
        width: 10px;
        height: 380px;
        border-radius: 5px; }
      #starmap .map .star .track, #demomap .map .star .track {
        position: absolute;
        height: 340px;
        width: 1px;
        background: #fff;
        opacity: 0.1;
        top: 20px; }
      #starmap .map .star .ball, #demomap .map .star .ball {
        transform-origin: center;
        padding-top: 2px;
        width: 20px;
        height: 18px;
        position: absolute;
        border-radius: 50%;
        left: -10px;
        top: 200px; }
        #starmap .map .star .ball.old, #demomap .map .star .ball.old {
          opacity: 0; }
        #starmap .map .star .ball.current, #demomap .map .star .ball.current {
          border: 2px solid #fff;
          background: #f00;
          margin: -2px 0 0 -2px; }
      #starmap .map .star .label, #demomap .map .star .label {
        width: 100px;
        left: -50px;
        top: 390px;
        position: absolute;
        pointer-events: none;
        opacity: 0.3; }
      #starmap .map .star.unlocked, #demomap .map .star.unlocked {
        display: block; }
      #starmap .map .star.catFocus, #demomap .map .star.catFocus {
        opacity: 1; }
      #starmap .map .star.focus .ball.current, #demomap .map .star.focus .ball.current {
        box-shadow: 0 0 10px 2px white; }
      #starmap .map .star.focus .track, #demomap .map .star.focus .track {
        opacity: 0.6; }
      #starmap .map .star.focus .label, #demomap .map .star.focus .label {
        opacity: 1;
        transition: 0.3s; }
      #starmap .map .star.unfocus, #demomap .map .star.unfocus {
        opacity: 0.1; }
        #starmap .map .star.unfocus .label, #demomap .map .star.unfocus .label {
          opacity: 0; }
      #starmap .map .star.active .ball.current, #demomap .map .star.active .ball.current {
        cursor: move; }
      #starmap .map .star .trackChange, #demomap .map .star .trackChange {
        display: none; }
      #starmap .map .star.revise .ball.old, #demomap .map .star.revise .ball.old {
        opacity: 0.3; }
      #starmap .map .star.revise .trackChange, #demomap .map .star.revise .trackChange {
        display: block;
        position: absolute;
        top: 100px;
        left: -2px;
        width: 4px;
        height: 50px; }
      #starmap .map .star.revised .label, #demomap .map .star.revised .label {
        opacity: 0.8; }
      #starmap .map .star.spoke, #demomap .map .star.spoke {
        cursor: pointer; }
        #starmap .map .star.spoke .label, #demomap .map .star.spoke .label {
          pointer-events: auto; }
        #starmap .map .star.spoke:hover .label, #starmap .map .star.spoke.priority .label, #demomap .map .star.spoke:hover .label, #demomap .map .star.spoke.priority .label {
          opacity: 1;
          transition: 0.3s; }
        #starmap .map .star.spoke.priority .spoke, #demomap .map .star.spoke.priority .spoke {
          transition: 0.5s;
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.5) inset; }
  #starmap .levels, #demomap .levels {
    position: absolute;
    left: 10px;
    top: calc(50% - 364px);
    height: 728px;
    width: 150px;
    background: url("../img/left_curve.png") right center no-repeat;
    background-size: 82px 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around; }
    #starmap .levels .meter, #demomap .levels .meter {
      position: absolute;
      left: 0;
      top: 0;
      width: 82px;
      height: 100%;
      background: url("../img/meter_left.png") no-repeat;
      background-size: 100% 100%; }
      #starmap .levels .meter .arrow, #demomap .levels .meter .arrow {
        width: 55px;
        height: 20px;
        background-color: #fff;
        position: absolute;
        border-radius: 10px;
        box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.5);
        margin-top: -10px;
        opacity: 0; }
    #starmap .levels .level, #demomap .levels .level {
      position: relative;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      transition: 0.3s;
      transition-property: color; }
      #starmap .levels .level.active, #demomap .levels .level.active {
        color: #fff; }
  #starmap .categories, #demomap .categories {
    position: absolute;
    right: 10px;
    top: calc(50% - 364px);
    height: 728px;
    width: 250px;
    background: url("../img/right_curve.png") right top no-repeat;
    background-size: 82px 100%;
    text-transform: uppercase;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    #starmap .categories .category, #demomap .categories .category {
      position: relative;
      color: rgba(255, 255, 255, 0.5);
      transition: 0.3s;
      transition-property: color;
      padding-right: 70px; }
      #starmap .categories .category .ball, #demomap .categories .category .ball {
        width: 60px;
        height: 60px;
        transform: scale(0.6);
        position: absolute;
        right: 0;
        top: -27px;
        border: 6px solid #fff;
        border-radius: 50%; }
      #starmap .categories .category.focus, #demomap .categories .category.focus {
        transition: 0.3s;
        color: #fff; }
        #starmap .categories .category.focus .ball, #demomap .categories .category.focus .ball {
          box-shadow: 0 0 45px rgba(255, 255, 255, 0.7); }
      #starmap .categories .category.active, #demomap .categories .category.active {
        cursor: pointer; }
  #starmap .levels, #starmap .categories, #demomap .levels, #demomap .categories {
    opacity: 1;
    transition: 0.5s;
    transition-property: opacity; }
  @media (max-width: 1350px) {
    #starmap .levels, #starmap .categories, #demomap .levels, #demomap .categories {
      opacity: 0;
      pointer-events: none; } }
  #starmap .ui .header, #demomap .ui .header {
    position: absolute;
    top: 0;
    width: 100%;
    background: #000;
    display: flex;
    padding: 15px 0;
    justify-content: space-around;
    align-items: center; }
    #starmap .ui .header .name, #demomap .ui .header .name {
      font-size: 25px;
      width: 10%;
      text-align: center; }
    #starmap .ui .header .description, #demomap .ui .header .description {
      width: 80%;
      font-size: 24px; }
    #starmap .ui .header[mode="instructions"] .name, #demomap .ui .header[mode="instructions"] .name {
      display: none; }
    #starmap .ui .header[mode="instructions"] .description, #demomap .ui .header[mode="instructions"] .description {
      text-align: center;
      width: 100%; }
  @media (max-width: 1220px) {
    #starmap .ui .header .name, #demomap .ui .header .name {
      width: 20%; }
    #starmap .ui .header .description, #demomap .ui .header .description {
      width: 70%; } }
  @media (max-width: 800px) {
    #starmap .ui .header, #demomap .ui .header {
      display: block;
      padding: 10px 50px 20px;
      width: calc(100% - 100px); }
      #starmap .ui .header .name, #demomap .ui .header .name {
        width: auto;
        text-align: left;
        padding: 10px 0; }
      #starmap .ui .header .description, #demomap .ui .header .description {
        width: auto;
        font-size: 18px; } }
  @media (max-width: 480px) {
    #starmap .ui .header, #demomap .ui .header {
      padding: 10px 20px;
      width: calc(100% - 40px); }
      #starmap .ui .header .name, #demomap .ui .header .name {
        padding: 0;
        font-size: 20px; }
      #starmap .ui .header .description, #demomap .ui .header .description {
        font-size: 14px; } }
  #starmap .ui .transition, #demomap .ui .transition {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8); }
    #starmap .ui .transition .bar, #demomap .ui .transition .bar {
      padding: 200px 200px; }
      #starmap .ui .transition .bar .text, #demomap .ui .transition .bar .text {
        font-size: 36px;
        margin-bottom: 20px; }
      #starmap .ui .transition .bar .buttons, #demomap .ui .transition .bar .buttons {
        text-align: center; }
        #starmap .ui .transition .bar .buttons button, #demomap .ui .transition .bar .buttons button {
          margin: 0 50px; }
  @media (max-width: 1000px) {
    #starmap .ui .transition .bar, #demomap .ui .transition .bar {
      padding: 50px; }
      #starmap .ui .transition .bar .text, #demomap .ui .transition .bar .text {
        font-size: 22px; } }
  @media (max-width: 400px) {
    #starmap .ui .transition .bar .text, #demomap .ui .transition .bar .text {
      font-size: 16px; } }
  #starmap .ui .footer, #demomap .ui .footer {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    text-align: center; }

#goals {
  background: url("../img/priorities.jpg") no-repeat left bottom;
  background-size: cover; }
  #goals .main {
    width: calc(100% - 653px);
    padding: 50px;
    text-align: center; }
    #goals .main .title {
      font-size: 44px;
      font-weight: 100;
      text-transform: uppercase; }
      #goals .main .title .name {
        font-weight: 500; }
    #goals .main .dragBox {
      margin: 100px auto 0; }
    #goals .main .list {
      width: 698px;
      position: relative;
      text-align: left;
      padding: 30px 0; }
      #goals .main .list .container {
        font-size: 28px;
        padding: 7px 0 17px;
        margin: 10px 0; }
      #goals .main .list .change {
        background: #fff;
        position: absolute;
        right: 0;
        top: 0;
        color: #000;
        width: 580px;
        height: 42px;
        font-size: 24px;
        padding: 5px 5px 5px 50px; }
        #goals .main .list .change .icon {
          position: absolute;
          width: 42px;
          height: 42px;
          left: -21px;
          top: 0;
          border-radius: 50%;
          background: #000;
          border: 5px solid #fff; }
        #goals .main .list .change.ui-draggable {
          cursor: move; }
        #goals .main .list .change.ui-draggable-dragging {
          z-index: 2;
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }
  #goals .rightPanel {
    position: absolute;
    right: 0;
    top: 0;
    background: url("../img/landing_panel.png") no-repeat left bottom;
    background-size: cover;
    width: 455px;
    height: 100%;
    padding: 50px 60px 0;
    text-align: center; }
    #goals .rightPanel .mapView {
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(0, 0, 0, 0.7);
      width: 400px;
      height: 400px;
      margin: 0 auto 30px;
      overflow: hidden;
      background: url("../img/constellation_dark.jpg");
      display: none;
      overflow: hidden; }
      #goals .rightPanel .mapView #cameraLens {
        position: absolute;
        left: 0;
        top: 0;
        transform-origin: center; }
        #goals .rightPanel .mapView #cameraLens .boundingBox {
          background: rgba(255, 0, 0, 0.5);
          position: absolute; }
        #goals .rightPanel .mapView #cameraLens .star.unfocus {
          opacity: 0.1 !important; }
        #goals .rightPanel .mapView #cameraLens .map {
          overflow: visible; }
    #goals .rightPanel .header {
      font-size: 36px;
      text-transform: uppercase; }
    #goals .rightPanel .instructions {
      text-align: left;
      margin-top: 50px; }
    #goals .rightPanel button {
      width: 50%;
      font-size: 24px;
      margin-top: 40px; }
  @media (max-width: 1300px) {
    #goals .main .list {
      width: auto; }
      #goals .main .list .change {
        width: auto; } }
  @media (max-width: 1150px) {
    #goals .main {
      width: auto; }
      #goals .main .list {
        margin-top: 10px; }
    #goals .rightPanel {
      width: calc(100% - 50px);
      height: auto;
      position: absolute;
      bottom: 0;
      top: auto;
      background: rgba(0, 0, 0, 0.6);
      padding: 25px; }
      #goals .rightPanel .instructions {
        margin-top: 10px; }
      #goals .rightPanel .mapView {
        display: none !important; } }
  @media (max-width: 700px) {
    #goals .main .list {
      width: calc(100%); }
      #goals .main .list .container {
        padding: 7px 17px 0;
        text-align: right; }
      #goals .main .list .change {
        width: auto;
        height: auto;
        left: 0 !important;
        right: 60px;
        padding: 9px; }
        #goals .main .list .change .icon {
          display: none; }
    #goals .rightPanel .mapView {
      display: none !important; } }
  @media (max-width: 550px) {
    #goals .main {
      padding: 10px 0; }
      #goals .main .title {
        font-size: 20px; }
      #goals .main .dragBox {
        margin-top: 0; }
      #goals .main .list .change {
        left: 25px !important;
        font-size: 20px;
        right: 40px;
        font-size: 18px; }
    #goals .rightPanel {
      padding: 10px;
      width: calc(100% - 20px); }
      #goals .rightPanel .header {
        font-size: 18px; }
      #goals .rightPanel .instructions {
        font-size: 14px; }
      #goals .rightPanel .submit {
        margin-top: 10px;
        font-size: 16px;
        padding: 5px 15px;
        width: auto; } }
  @media (max-height: 500px) {
    #goals .rightPanel .instructions .prompt {
      display: none; } }

#outro {
  display: none; }
  #outro .panel {
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/landing_panel.png") no-repeat left bottom;
    background-size: cover;
    width: 455px;
    height: 100%;
    padding: 50px 60px 0;
    text-align: center; }
    #outro .panel .textBlock #svg {
      display: none; }
    #outro .panel .textBlock .mainText {
      margin-bottom: 30px; }
      #outro .panel .textBlock .mainText p {
        font-size: 26px;
        text-align: left; }
    #outro .panel .textBlock .optIn {
      padding-left: 45px;
      position: relative; }
      #outro .panel .textBlock .optIn .text {
        font-size: 26px;
        text-align: left; }
      #outro .panel .textBlock .optIn input[type="checkbox"] {
        position: absolute;
        left: 0;
        right: 0;
        width: 20px;
        height: 20px; }
    #outro .panel .textBlock input[type="submit"] {
      margin-top: 35px;
      font-size: 16px;
      width: 330px; }
  #outro .titles {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 1125px;
    text-align: center;
    text-transform: uppercase; }
    #outro .titles .thanks {
      font-size: 57px;
      font-weight: bold; }
    #outro .titles .appName {
      font-size: 65px;
      font-weight: 100; }

@media (max-width: 880px) {
  #starmap.outro {
    display: none; }

  #outro {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    flex: 1; }
    #outro .outro {
      position: relative;
      width: auto;
      height: auto;
      overflow: visible; }
      #outro .outro .titles {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        padding: 20px 0; }
      #outro .outro .panel {
        background: none;
        position: relative;
        width: auto;
        height: auto;
        padding: 0; }
        #outro .outro .panel .textBlock {
          padding: 20px; }
          #outro .outro .panel .textBlock #svg {
            margin: 0 auto;
            display: block;
            max-width: calc(100% - 40px);
            max-height: 400px; }
          #outro .outro .panel .textBlock .mainText {
            margin-bottom: 20px; }
            #outro .outro .panel .textBlock .mainText p {
              font-size: 18px; }
          #outro .outro .panel .textBlock .optIn .text {
            font-size: 18px; }
          #outro .outro .panel .textBlock .submit {
            margin: 40px 0;
            width: auto;
            padding: 10px 15px; } }
@media (max-width: 640px) {
  html.outroReset, body.outroReset {
    overflow: auto;
    position: relative;
    height: auto;
    width: auto;
    overscroll-behavior: auto; }

  #outro .outro .titles {
    font-size: 42px; }
    #outro .outro .titles .thanks {
      font-size: 34px;
      margin-bottom: 20px; }
    #outro .outro .titles .appName {
      font-size: 36px; } }
.visualizer {
  height: 100%; }
  .visualizer .introText {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 20% auto 0; }
    .visualizer .introText .text {
      font-size: 70px;
      font-weight: bold;
      text-transform: uppercase; }
    .visualizer .introText button {
      margin-top: 40px;
      width: 160px;
      font-size: 18px; }
  .visualizer #demo {
    visibility: hidden;
    opacity: 0;
    background: url("../img/constellation_dark.jpg");
    background-size: cover; }
    .visualizer #demo .header {
      padding: 20px;
      text-align: center;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      /*
      h2{
      	min-height:60px;
      	font-weight:normal;
      	font-style:italic;
      	margin-top:50px;
      }
      */ }
      .visualizer #demo .header h3, .visualizer #demo .header h1, .visualizer #demo .header h2 {
        margin: 0; }
      .visualizer #demo .header h3 {
        font-size: 30px; }
      .visualizer #demo .header h1 {
        font-size: 80px;
        text-transform: uppercase;
        margin: 0; }
      @media (max-width: 1900px) {
        .visualizer #demo .header h1 {
          font-size: 60px; } }
      @media (max-width: 1400px) {
        .visualizer #demo .header h1 {
          font-size: 40px; } }
      .visualizer #demo .header ol {
        width: 1000px;
        margin: auto; }
        .visualizer #demo .header ol li {
          font-size: 22px;
          text-align: left;
          margin: 10px 0;
          opacity: 0.5;
          transition: 0.5s;
          transition-property: opacity; }
          .visualizer #demo .header ol li.focus {
            opacity: 1; }
    .visualizer #demo .demos {
      display: flex;
      justify-content: space-around;
      width: 100%;
      margin-top: 100px; }
      .visualizer #demo .demos img {
        width: 500px; }
      @media (max-width: 1575px) {
        .visualizer #demo .demos img {
          width: 400px; } }
      @media (max-width: 1450px) {
        .visualizer #demo .demos img {
          width: 300px; } }
      .visualizer #demo .demos .demo {
        position: relative; }
        .visualizer #demo .demos .demo .screen {
          position: relative;
          background: #000;
          overflow: hidden; }
          .visualizer #demo .demos .demo .screen .constellation {
            transform-origin: center;
            position: absolute;
            background: #000; }
        .visualizer #demo .demos .demo.phone {
          width: 255px;
          height: 512px;
          background: url("../img/iphone6-black-512.png"); }
          .visualizer #demo .demos .demo.phone .screen {
            margin: 61px 0 0 19px;
            width: 219px;
            height: 390px; }
        .visualizer #demo .demos .demo.tablet {
          width: 787px;
          height: 522px;
          background: url("../img/boldicons-ipad-512.png");
          background-size: cover; }
          .visualizer #demo .demos .demo.tablet .screen {
            margin: 36px 0 0 89px;
            width: 601px;
            height: 450px; }
    .visualizer #demo .next {
      position: absolute;
      right: 40px;
      bottom: 40px; }
  .visualizer #demomap .header {
    z-index: 10; }
  .visualizer #starmap {
    display: none; }
    .visualizer #starmap .levels, .visualizer #starmap .categories {
      display: none; }
    .visualizer #starmap .sun {
      opacity: 0; }
    .visualizer #starmap .star .label {
      pointer-events: auto;
      opacity: 1; }
  .visualizer #goals {
    visibility: hidden;
    opacity: 0; }
  .visualizer #goalCats {
    visibility: hidden;
    opacity: 0;
    background: url("../img/constellation_dark.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column; }
    .visualizer #goalCats .goalCats {
      width: 800px;
      margin: auto;
      position: relative; }
      .visualizer #goalCats .goalCats .titleBar {
        position: relative;
        font-size: 20px;
        padding: 0;
        width: 800px;
        height: 50px;
        text-transform: uppercase; }
        .visualizer #goalCats .goalCats .titleBar .sort {
          position: absolute;
          top: 0;
          opacity: 0.7; }
          .visualizer #goalCats .goalCats .titleBar .sort.highlight {
            opacity: 1; }
          .visualizer #goalCats .goalCats .titleBar .sort.left {
            left: 0;
            text-align: left; }
          .visualizer #goalCats .goalCats .titleBar .sort.right {
            right: 0;
            text-align: right; }
      .visualizer #goalCats .goalCats .container {
        position: relative;
        margin: 40px 0;
        height: 30px; }
      .visualizer #goalCats .goalCats .cat {
        position: absolute;
        font-size: 30px;
        text-transform: uppercase;
        text-align: center;
        padding: 0 150px 0 50px;
        width: 600px; }
        .visualizer #goalCats .goalCats .cat .num {
          position: absolute;
          top: 0;
          left: 0;
          width: 40px;
          border: 2px solid #fff;
          opacity: 0.5; }
        .visualizer #goalCats .goalCats .cat .meter {
          background: rgba(255, 255, 255, 0.4);
          width: 150px;
          position: absolute;
          right: 0px;
          top: 0px;
          height: 100%; }
        .visualizer #goalCats .goalCats .cat .fill {
          position: absolute;
          width: 0;
          height: 100%;
          background: #f00; }
  .visualizer #demomap .ui .header {
    display: block; }
    .visualizer #demomap .ui .header .demoController .text {
      width: 800px;
      margin: auto;
      font-size: 20px; }
    .visualizer #demomap .ui .header .demoController button.next {
      position: absolute;
      right: 20px;
      top: calc(50% - 20px); }
    .visualizer #demomap .ui .header .name, .visualizer #demomap .ui .header .description {
      display: none; }
  .visualizer #demomap .ui .footer {
    display: none; }

.orientationWarning {
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 60px);
  padding: 0 30px;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  justify-content: center;
  font-size: 28px;
  z-index: 20;
  text-align: center;
  display: none; }

@media (max-width: 640px) and (max-height: 640px) {
  body[orientation="landscape"] .orientationWarning {
    display: flex; } }

/*# sourceMappingURL=main.css.map */
