/****************/
/**** COLORS ****/
/****************/
/*dark-gray: #202020*/
/*green: rgb(234, 46, 46)*/
/*dark red: #88082f*/
html, body {
  padding: 0;
  margin: 0; }

@media screen and (max-width: 767px), projection and (max-width: 767px) {
  ::-webkit-scrollbar {
    display: none; } }
body {
  font: 16px/1.5 Change Calibre,Helvetica Neue,Helvetica,Arial,Tahoma,sans-serif;
  font-weight: 300;
  color: #202020;
  letter-spacing: 0.1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

@media screen and (max-width: 767px), projection and (max-width: 767px) {
  .question-label {
    font-size: 20px;
    margin: 10px 0; } }

.u-hidden {
  display: none !important; }

.main-column {
  display: flex;
  flex-direction: column;
  width: 800px; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .main-column {
      width: 100%;
      padding-top: 40px; } }

button.btn {
  cursor: pointer; }

.highlights-btn {
  display: flex;
  flex-direction: row; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .highlights-btn {
      flex-wrap: wrap; } }
  .highlights-btn .btn {
    margin: 1em; }

.highlight-btn__img {
  margin-top: 0.5em; }

.highlight-btn__img--top {
  margin-bottom: 0.5em;
  margin-top: 0; }

img.banner {
  margin-bottom: 1em; }

.chart-container {
  width: 80%;
  padding: 20px; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .chart-container {
      width: 100%;
      padding: 0;
      overflow: scroll; } }

.chart .bar {
  fill: #ea2e2e; }

.chart .bar-label {
  font-size: 12px; }

.chart .bar-value {
  text-anchor: end;
  fill: white;
  font-weight: bold; }

.chart .bar-value.bar-value--small {
  text-anchor: start;
  fill: #ea2e2e;
  font-weight: bold; }

.info-segment__question {
  color: #202020;
  font-size: 13px; }

.intro {
  text-align: center;
  padding: 30px; }

.wordcloud-text {
  text-anchor: middle; }

.nav-menu {
  position: fixed;
  width: 700px;
  left: -700px;
  background: white;
  transition: all ease 300ms;
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -webkit-box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.26);
  box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.26);
  height: 100%;
  display: flex;
  z-index: 1; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .nav-menu {
      width: 85%;
      left: -85%; } }

.toggle-menu-handle {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #ea2e2e;
  transition: all ease 300ms;
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  color: white;
  width: 65px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 50; }

.branding {
  height: 40px;
  text-align: right;
  position: absolute;
  right: 0; }
  .branding img {
    max-height: 40px;
    max-width: 100px;
    display: inline-block; }
  .branding .credits {
    background: white;
    height: 0px;
    overflow: hidden;
    transition: height 0.5s;
    width: auto;
    font-size: 12px; }
    .branding .credits p {
      margin: 0; }
  .branding:hover .credits, .branding:focus .credits {
    height: 60px; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .branding:hover .credits, .branding:focus .credits {
      height: 100px; } }

.nav-menu.nav-menu--open {
  left: 0; }

.nav-menu.nav-menu--open .toggle-menu-handle {
  left: 700px; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .nav-menu.nav-menu--open .toggle-menu-handle {
      left: 85%; } }

.menu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 0;
  transition: opacity ease 300ms;
  -webkit-transition: opacity ease 300ms;
  -moz-transition: opacity ease 300ms; }

.menu-overlay.menu-overlay--open {
  pointer-events: auto;
  opacity: 1; }

.menu-list li {
  /*width: 250px;*/
  padding: 0;
  list-style-type: none; }

.menu-question-theme--label {
  color: #ea2e2e;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px;
  margin: 0; }

.menu-question-item:hover {
  background-color: #f2f2f2; }

.menu-question-item {
  padding: 5px;
  cursor: pointer; }

.menu-list {
  padding: 0; }

.menu-content {
  overflow: scroll;
  flex: 1; }

.segment-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto; }

@media screen and (max-width: 767px), projection and (max-width: 767px) {
  .segment-controls,
  .choose-segment {
    width: auto;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0; } }
.segment-controls span,
.choose-segment span {
  display: inline-block;
  padding: 10px;
  border: 1px #ea2e2e solid;
  margin: 3px;
  transition: background,color ease 200ms;
  cursor: pointer; }
  @media screen and (max-width: 767px), projection and (max-width: 767px) {
    .segment-controls span,
    .choose-segment span {
      padding: 3px;
      margin: 0; } }

.segment.selected,
.segment-controls span.selected,
.choose-segment span.selected {
  background: #ea2e2e;
  color: white; }
