.round-badge {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  box-shadow: 0 0 3px 2px black; }
  .round-badge.s {
    width: 30px;
    height: 30px;
    margin-right: 10px; }

.card-badge {
  margin-right: 20px;
  width: 120px;
  height: 120px;
  flex-shrink: 0; }
  .card-badge.s {
    width: 70px;
    height: 70px; }

.card-action.horizontal {
  border-radius: 2px 0 0 2px;
  border-top: 0;
  border-left: 1px solid rgba(160, 160, 160, 0.2);
  padding: 0 10px;
  height: 70px; }
  .card-action.horizontal a {
    margin-right: 0 !important;
    min-width: 70px; }

.puzzle-item > * {
  margin-right: 10px; }

.puzzle-item > *:last-child {
  margin-right: 0; }

@media screen and (max-width: 400px) {
  .puzzle-item > *:nth-child(3) {
    display: none; } }

.low-space-after {
  margin-bottom: 5px; }

.round-badge-text {
  font-weight: 400;
  font-size: 200%; }
  .round-badge-text.s {
    font-size: 130%; }

.puzzle-header {
  font-size: 150%; }

.puzzle-continue {
  font-size: 110%; }

.vconnector {
  height: 40px;
  width: 3px;
  margin: 5px 0 5px 14px; }

.seethrough-blue {
  background-color: rgba(25, 118, 210, 0.7) !important; }

.puzzle-list {
  width: 80%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 500px) {
    .puzzle-list {
      width: 100%; } }
  .puzzle-list:nth-last-child(2) {
    color: rgba(0, 0, 0, 0.5);
    width: 200px; }

#current-puzzle {
  background: transparent; }
  #current-puzzle:before {
    background: url("/public/img/puzzle-back.svg") no-repeat 30px;
    background-size: 100%;
    content: "";
    opacity: 0.4;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }

.imagesorter {
  position: relative;
  z-index: 1; }

.sortee {
  position: absolute; }
  .sortee:not([data-dragging="true"]) {
    transition: left 0.5s, top 0.5s; }

.switch {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 10px;
  border: 1px solid black;
  background: #a9100e;
  transition: background 1s ease, border-radius 0.3s 0.5s ease;
  box-shadow: inset 0 0 11px 2px #000082;
  text-align: center;
  color: white; }
  .switch.active {
    background: #00c000;
    border-radius: 50%; }
    .switch.active.interactive:hover {
      background: #c0ba1c;
      border-radius: 30%; }
  .switch.interactive:hover {
    background: #c06010;
    border-radius: 20%; }

table.sudoku {
  tab-index: 0;
  max-width: 630px;
  border-collapse: collapse; }
  table.sudoku tr:nth-child(1), table.sudoku tr:nth-child(4), table.sudoku tr:nth-child(7) {
    border-top: 3px solid black; }
  table.sudoku tr:last-child {
    border-bottom: 3px solid black; }
  table.sudoku td:nth-child(1), table.sudoku td:nth-child(4), table.sudoku td:nth-child(7) {
    border-left: 3px solid black; }
  table.sudoku td:last-child {
    border-right: 3px solid black; }
  table.sudoku td {
    padding: 0;
    position: relative;
    border: 1px solid black;
    width: 11.111111%;
    transition: background-color 0.3s; }
    table.sudoku td .square-content {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 5px; }
    table.sudoku td:hover {
      background: #d1d1d1; }
    table.sudoku td.active {
      background: #adadad; }
    table.sudoku td.active:hover {
      background: #9e9e9e; }
    table.sudoku td.ground-truth {
      background: #e3f2fd; }
      table.sudoku td.ground-truth.active, table.sudoku td.ground-truth:hover {
        background: #90caf9; }
    table.sudoku td.conflict {
      background: #ff9800; }
      table.sudoku td.conflict.active, table.sudoku td.conflict:hover {
        background: #ef6c00; }
    table.sudoku td.changed {
      color: #3f51b5; }
    table.sudoku td.wrong > div {
      border: 2px solid red;
      border-radius: 50%;
      margin: 5px; }
  table.sudoku td:after {
    content: '';
    display: block;
    margin-top: 100%; }
  table.sudoku.highlight-foreign td.foreign {
    color: #827717; }
  table.sudoku.highlight-foreign td.ground-truth.foreign {
    background: #f9fbe7;
    color: black; }
    table.sudoku.highlight-foreign td.ground-truth.foreign.active, table.sudoku.highlight-foreign td.ground-truth.foreign:hover {
      background: #e6ee9c; }

.edit-box .square-content {
  border: 1px solid black;
  margin: 10px;
  cursor: pointer;
  min-width: 25px;
  min-height: 25px;
  transition: background-color 0.3s; }
  .edit-box .square-content:hover {
    background: #d1d1d1; }
  .edit-box .square-content.disabled {
    color: #5a5a5a;
    border-color: #5a5a5a;
    background: #bbb !important;
    cursor: not-allowed; }

#cell-info div {
  margin: 5px;
  text-align: center;
  transition: height 0.3s, opacity 0.3s; }
  #cell-info div * {
    vertical-align: middle; }

.away {
  height: 0;
  opacity: 0; }

a.disabled:not(.btn) {
  pointer-events: none;
  color: #036191; }

#game {
  position: relative;
  margin: 5px auto; }
  #game div.tile {
    position: absolute;
    transition: box-shadow 0.5s, opacity 0.5s ease, left 0.5s ease, top 0.5s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center; }
    #game div.tile.highlight {
      opacity: 0.7; }
    #game div.tile.new {
      background-color: black !important; }
    #game div.tile i {
      font-size: 250%;
      opacity: 0.7;
      pointer-events: none; }

#score-host {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 18;
  pointer-events: none; }

#score, #gravity {
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.85);
  line-height: 30px;
  font-weight: 300;
  text-align: center; }

#score {
  min-width: 120px;
  margin-bottom: 5px; }

#gravity i.material-icons {
  vertical-align: bottom; }

#score-gained {
  position: absolute;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none; }

#score-gained-text {
  padding: 5px 15px;
  background-color: white;
  border-radius: 5px;
  font-weight: bold; }

.connector-host {
  transition: height 0.5s ease;
  height: 2px;
  background: #f6f6f6;
  position: relative;
  overflow: hidden; }
  .connector-host.expanded {
    height: 100px; }
    .connector-host.expanded svg {
      opacity: 1; }
  .connector-host .info {
    position: absolute;
    top: 5px;
    font-size: 200%;
    line-height: 200%;
    white-space: nowrap; }
  .connector-host svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0; }

.negated {
  text-decoration: overline; }

#reward-bar {
  align-self: stretch;
  width: 80px;
  min-height: 400px;
  margin: 5px 20px;
  border: 1px solid #585858;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  transition: box-shadow .5s;
  background-color: transparent;
  position: relative; }
  #reward-bar:hover {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 0 10px 2px rgba(0, 0, 0, 0.5) inset; }
  #reward-bar div.filler {
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    position: absolute;
    background-color: #0D47A1;
    z-index: -1;
    transition: height 1s ease-in-out; }

a[disabled] {
  color: #F44336 !important;
  cursor: default; }

.rewards div.card {
  margin-right: 15px; }

.locations-map {
  flex: 3 0 auto;
  height: 100%;
  content: "map"; }

.map-container {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  height: 100vh; }

.locations-sidebar {
  align-items: stretch;
  transition: color 0.5s, width 0.5s;
  padding: 5px;
  box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.14);
  overflow-y: auto; }
  .locations-sidebar > :last-child {
    margin-bottom: 10px; }

.location-info {
  margin: 1px 5px;
  padding: 5px;
  transition: box-shadow 0.5s, background-color 0.5s;
  flex: 0 0 auto; }
  .location-info div.grow {
    flex-basis: 0; }
  .location-info .heading {
    line-height: 22px;
    font-size: 18px; }
  .location-info.disclaimer {
    padding: 10px; }
    .location-info.disclaimer .heading {
      line-height: 26px;
      font-size: 20px; }
  .location-info .geolocation {
    font-style: italic; }
  .location-info:not(.disclaimer).active, .location-info:not(.disclaimer):hover {
    background: #bdbdbd;
    box-shadow: 0 0 3px 0 #636363; }
  .location-info:not(.disclaimer):hover .open-icon {
    color: #039be5 !important; }
  .location-info .open-icon {
    margin: 10px 0 10px 3px;
    transition: color 0.5s ease; }

.location-small {
  width: 65px;
  height: 34px;
  margin: 5px auto;
  border: 1px solid #666;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  transition: background-color 1s ease, color 1s ease; }
  .location-small.active, .location-small:hover {
    background: #bdbdbd; }

.locations-sidebar-collapsed {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 75px;
  display: flex;
  flex: 0 0 0;
  flex-flow: column nowrap;
  background: white;
  box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.14);
  transition: left 0.5s ease;
  padding-top: 75px;
  overflow-y: auto;
  z-index: 1;
  opacity: 0.8; }

.locations-sidebar-button {
  position: absolute;
  top: 9px;
  z-index: 5;
  transition: left 0.5s ease; }

#toggle-sidebar i {
  transition: transform 1s ease;
  flex: 0 0 0; }

@media only screen and (max-width: 600px) {
  .map-container .locations-sidebar {
    position: absolute;
    transition: left 1s ease;
    left: -350px;
    top: 0;
    bottom: 0;
    width: 350px;
    background: white;
    z-index: 3;
    opacity: 0.8; }
  .location-info.disclaimer {
    height: 56px;
    margin: 4px 9px 9px 75px;
    padding: 0;
    text-align: left;
    display: flex; }
    .location-info.disclaimer .heading {
      display: flex;
      align-items: center; }
  .locations-sidebar-collapsed {
    transition-delay: 1s; }
  .locations-sidebar-button {
    left: 9px; }
  .map-container.expanded .locations-sidebar {
    left: 0;
    transition-delay: 0.5s; }
  .map-container.expanded .locations-sidebar-collapsed {
    left: -75px;
    transition-delay: 0s; }
  .map-container.expanded #toggle-sidebar i {
    transform: rotate(180deg); } }

@media only screen and (min-width: 601px) {
  .map-container .locations-sidebar {
    flex: 1 0 0;
    min-width: 250px;
    max-width: 350px; }
  .locations-sidebar-collapsed {
    left: -75px; }
  .locations-sidebar-button {
    left: -60px; } }

.card.thumbnail {
  margin-left: 3px;
  margin-right: 3px; }
  .card.thumbnail i.material-icons {
    vertical-align: bottom;
    margin-left: 2px; }
  .card.thumbnail .card-content {
    padding: 15px; }

.flex-spread-items {
  justify-content: space-evenly; }

#presenter {
  bottom: 5%;
  width: 90%;
  max-height: unset !important;
  overflow: hidden; }
  #presenter #sss-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  #presenter .heading {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 5%;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    padding: 5px;
    z-index: 5; }
    #presenter .heading h4 {
      margin: 0;
      min-width: 50px; }
    #presenter .heading a {
      display: flex;
      align-items: center; }
  #presenter .meta {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    overflow-y: auto; }
    #presenter .meta .meta-container {
      position: absolute;
      left: 20%;
      right: 20%;
      height: 100%; }
      #presenter .meta .meta-container .metaspacer {
        height: 95%;
        height: calc(100% - 50px);
        background: transparent; }
        #presenter .meta .meta-container .metaspacer.after {
          height: 50px; }
      #presenter .meta .meta-container .metacontent {
        height: 100px;
        background: #d4ffd4; }
      #presenter .meta .meta-container > div {
        margin-bottom: 10px; }

i.material-icons.inline {
  vertical-align: bottom; }

input[type=range]::-webkit-slider-thumb {
  background-color: #2196F3; }

input[type=range]::-moz-range-thumb {
  background-color: #2196F3; }

input[type=range]::-ms-thumb {
  background-color: #2196F3; }

/***** These are to edit the thumb and the text inside the thumb *****/
input[type=range] + .thumb {
  background-color: #2196F3; }

input[type=range] + .thumb.active .value {
  color: white; }

.rater {
  background: rgba(250, 250, 250, 0.7); }
  .rater .second {
    padding: 5px; }
    .rater .second p {
      margin: 0; }

.flexible {
  flex: 1 1 auto; }

@media only screen and (max-width: 700px) {
  .meta-container {
    left: 5% !important;
    right: 5% !important; }
  .heading {
    left: 0 !important;
    right: 0 !important; } }

.comment {
  background: transparent; }
  .comment img {
    width: 70px;
    height: 70px;
    flex: 0 0 auto; }
  .comment .comment-content {
    background: #fafafa;
    padding: 5px 10px;
    margin-left: 10px;
    position: relative; }
    .comment .comment-content .bubble {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      top: 0;
      left: -10px;
      border-bottom: 15px solid transparent;
      border-right: 15px solid #fafafa; }

.flex-vcenter-items {
  align-items: center; }

#sss-comment-submit {
  margin-left: 2px; }

.rate-icon {
  width: 120px;
  height: 172px;
  object-fit: contain; }

.rambles {
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center; }
  .rambles div.card {
    width: 400px;
    height: 200px;
    margin-left: 5px;
    margin-right: 5px; }

body, html {
  height: 100%; }

body {
  width: 100%; }

.hidden {
  opacity: 0; }

.hideable {
  transition: opacity 0.5s; }

.side-header {
  background: url("/public/img/header2.png") no-repeat center center;
  background-size: cover;
  height: 150px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-flow: row nowrap;
  padding: 10px 15px; }

.side-avatar {
  width: 48px;
  height: 48px;
  margin-right: 5px;
  padding: 4px; }

.side-nav .collapsible-header {
  padding: 0 32px; }

.full-height {
  height: 100%; }

.sidebar-loader {
  margin-top: 6px; }

.header {
  padding-top: 100px; }

.avatar {
  width: 100px;
  height: 100px; }
  .avatar.big {
    width: 200px;
    height: 200px; }
  .avatar.spaced {
    margin: 20px; }

.celebrate {
  margin-left: 30px;
  margin-right: 30px;
  font-size: 7rem;
  animation: celebrate-rotate 1.5s ease-in-out infinite; }

@keyframes celebrate-rotate {
  0% {
    transform: rotate(-15deg); }
  50% {
    transform: rotate(15deg); }
  100% {
    transform: rotate(-15deg); } }

.hcenter {
  display: flex;
  flex-flow: column; }
  .hcenter > * {
    display: flex;
    align-self: center; }

form.login {
  margin-top: 20px; }

.input-field.nolabel {
  margin-top: 0; }

.space-top {
  margin-top: 20px; }
  .space-top.l {
    margin-top: 50px; }
  .space-top.xl {
    margin-top: 150px; }
  .space-top.xxl {
    margin-top: 300px; }
  @media screen and (max-width: 550px) {
    .space-top.l {
      margin-top: 30px; }
    .space-top.xl {
      margin-top: 50px; }
    .space-top.xxl {
      margin-top: 100px; } }

.space-left {
  margin-left: 10px; }
  .space-left.m {
    margin-left: 20px; }

.space-right {
  margin-right: 10px; }
  .space-right.m {
    margin-right: 20px; }

i.inline-td {
  font-size: 14.5px; }

.card-panel.spacious {
  padding: 20px; }

.fixed-action-btn.top {
  bottom: unset;
  top: 23px;
  padding-top: 0;
  padding-bottom: 15px;
  margin-bottom: 0;
  transition: top 1s; }
  @media screen and (max-width: 550px) {
    .fixed-action-btn.top {
      top: -7px; } }

.separator.vertical {
  width: 3px;
  height: 100%; }

.separator.horizontal {
  width: 100%;
  height: 3px; }

.inline-user {
  display: flex !important;
  align-items: flex-end;
  flex-flow: row nowrap; }

.online-status {
  position: relative; }
  .online-status:after {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #afafaf; }
  .online-status.online:after {
    background-color: #4caf50; }
  .online-status.afk:after {
    background-color: #ffc107; }
  .online-status.unavailable:after {
    background-color: #ec1e1e; }

input.slim {
  height: 2rem !important;
  margin: 0 !important; }

#notifications {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 5000; }

.notification {
  width: 200px;
  z-index: 300;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start; }
  @media screen and (min-width: 350px) {
    .notification {
      width: 300px; } }
  @media screen and (min-width: 450px) {
    .notification {
      width: 400px; } }
  @media screen and (min-width: 550px) {
    .notification {
      width: 500px; } }
  .notification span {
    flex: 1 0 0; }

.gray {
  background-color: #444444 !important; }

.inline-image {
  vertical-align: bottom;
  height: 1.1em; }

.image-container {
  margin-bottom: 20px;
  position: relative; }
  .image-container img, .image-container video {
    width: 100%;
    height: 100%;
    max-height: 95vh;
    object-fit: contain; }
  .image-container .controls-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, color 0.5s;
    color: #cbcbcb;
    cursor: pointer; }
    .image-container .controls-overlay:hover {
      color: white; }
    .image-container .controls-overlay i.material-icons {
      font-size: 100px;
      transition: transform 0.5s ease; }
      .image-container .controls-overlay i.material-icons:hover {
        transform: scale(1.1); }
    .image-container .controls-overlay.playing {
      opacity: 0;
      pointer-events: none; }
  .image-container .caption {
    margin: 10px auto 0 auto;
    width: 80%;
    max-width: 1000px; }

.panorama {
  overflow-x: auto;
  max-width: 100%; }
  .panorama img {
    width: auto; }

.fill {
  width: 100% !important; }

.tutorial-img {
  max-width: 200px; }

.tutorial-section {
  display: flex;
  flex-flow: column nowrap;
  align-items: center; }

.flexcolumn {
  display: flex !important;
  flex-flow: column nowrap; }
  .flexcolumn.reversed {
    flex-direction: column-reverse; }

.flexrow {
  display: flex !important;
  flex-flow: row nowrap; }
  .flexrow.reversed {
    flex-direction: row-reverse; }
  .flexrow.wrap {
    flex-wrap: wrap; }

.flex-center-items {
  justify-content: center; }

.material-icons.narrow.left {
  margin-right: 5px; }

.material-icons.narrow.right {
  margin-left: 5px; }

.card.xs {
  width: 250px;
  height: 180px; }

.card.auto {
  height: auto; }

small.very {
  font-size: 60%; }

.bigger {
  font-size: 170%; }

.buttonlist a {
  margin-left: 2px;
  margin-right: 2px; }

.scrollable.horizontal {
  overflow-x: auto; }

.scrollable.vertical {
  overflow-y: auto; }

.noshrink {
  flex-shrink: 0; }

@media screen and (max-width: 550px) {
  #tutorial-sections {
    flex-flow: column nowrap;
    align-items: stretch;
    padding: 0 20px; }
    #tutorial-sections div {
      flex-basis: auto; }
      #tutorial-sections div img {
        flex: 0 0 100px;
        height: 100px; }
    #tutorial-sections i {
      transform: rotate(90deg); } }

a.wide {
  width: 300px;
  margin: 5px; }

.btn-outline {
  line-height: 50px;
  background-color: white;
  border: 2px solid gray;
  border-radius: 2px; }
  .btn-outline:hover {
    background-color: #c5c5c5;
    border: 2px solid black;
    border-radius: 2px; }
  .btn-outline:focus {
    background-color: #636363; }

.horizontal-flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start; }

.distribute-items {
  justify-content: space-around; }

.grow {
  flex: 1 0 auto; }
  .grow.same {
    flex-basis: 100px; }

.flex-center {
  align-self: center; }

.flow-text.small {
  font-weight: 300; }
  @media only screen and (min-width: 360px) {
    .flow-text.small {
      font-size: 0.8rem; } }
  @media only screen and (min-width: 390px) {
    .flow-text.small {
      font-size: 0.816rem; } }
  @media only screen and (min-width: 420px) {
    .flow-text.small {
      font-size: 0.832rem; } }
  @media only screen and (min-width: 450px) {
    .flow-text.small {
      font-size: 0.848rem; } }
  @media only screen and (min-width: 480px) {
    .flow-text.small {
      font-size: 0.864rem; } }
  @media only screen and (min-width: 510px) {
    .flow-text.small {
      font-size: 0.88rem; } }
  @media only screen and (min-width: 540px) {
    .flow-text.small {
      font-size: 0.896rem; } }
  @media only screen and (min-width: 570px) {
    .flow-text.small {
      font-size: 0.912rem; } }
  @media only screen and (min-width: 600px) {
    .flow-text.small {
      font-size: 0.928rem; } }
  @media only screen and (min-width: 630px) {
    .flow-text.small {
      font-size: 0.944rem; } }
  @media only screen and (min-width: 660px) {
    .flow-text.small {
      font-size: 0.96rem; } }
  @media only screen and (min-width: 690px) {
    .flow-text.small {
      font-size: 0.976rem; } }
  @media only screen and (min-width: 720px) {
    .flow-text.small {
      font-size: 0.992rem; } }
  @media only screen and (min-width: 750px) {
    .flow-text.small {
      font-size: 1.008rem; } }
  @media only screen and (min-width: 780px) {
    .flow-text.small {
      font-size: 1.024rem; } }
  @media only screen and (min-width: 810px) {
    .flow-text.small {
      font-size: 1.04rem; } }
  @media only screen and (min-width: 840px) {
    .flow-text.small {
      font-size: 1.056rem; } }
  @media only screen and (min-width: 870px) {
    .flow-text.small {
      font-size: 1.072rem; } }
  @media only screen and (min-width: 900px) {
    .flow-text.small {
      font-size: 1.088rem; } }
  @media only screen and (min-width: 930px) {
    .flow-text.small {
      font-size: 1.104rem; } }
  @media only screen and (min-width: 960px) {
    .flow-text.small {
      font-size: 1.12rem; } }
  @media only screen and (max-width: 360px) {
    .flow-text.small {
      font-size: 0.8rem; } }

.flow-text.bigger {
  font-weight: 300; }
  @media only screen and (min-width: 360px) {
    .flow-text.bigger {
      font-size: 1.4rem; } }
  @media only screen and (min-width: 390px) {
    .flow-text.bigger {
      font-size: 1.428rem; } }
  @media only screen and (min-width: 420px) {
    .flow-text.bigger {
      font-size: 1.456rem; } }
  @media only screen and (min-width: 450px) {
    .flow-text.bigger {
      font-size: 1.484rem; } }
  @media only screen and (min-width: 480px) {
    .flow-text.bigger {
      font-size: 1.512rem; } }
  @media only screen and (min-width: 510px) {
    .flow-text.bigger {
      font-size: 1.54rem; } }
  @media only screen and (min-width: 540px) {
    .flow-text.bigger {
      font-size: 1.568rem; } }
  @media only screen and (min-width: 570px) {
    .flow-text.bigger {
      font-size: 1.596rem; } }
  @media only screen and (min-width: 600px) {
    .flow-text.bigger {
      font-size: 1.624rem; } }
  @media only screen and (min-width: 630px) {
    .flow-text.bigger {
      font-size: 1.652rem; } }
  @media only screen and (min-width: 660px) {
    .flow-text.bigger {
      font-size: 1.68rem; } }
  @media only screen and (min-width: 690px) {
    .flow-text.bigger {
      font-size: 1.708rem; } }
  @media only screen and (min-width: 720px) {
    .flow-text.bigger {
      font-size: 1.736rem; } }
  @media only screen and (min-width: 750px) {
    .flow-text.bigger {
      font-size: 1.764rem; } }
  @media only screen and (min-width: 780px) {
    .flow-text.bigger {
      font-size: 1.792rem; } }
  @media only screen and (min-width: 810px) {
    .flow-text.bigger {
      font-size: 1.82rem; } }
  @media only screen and (min-width: 840px) {
    .flow-text.bigger {
      font-size: 1.848rem; } }
  @media only screen and (min-width: 870px) {
    .flow-text.bigger {
      font-size: 1.876rem; } }
  @media only screen and (min-width: 900px) {
    .flow-text.bigger {
      font-size: 1.904rem; } }
  @media only screen and (min-width: 930px) {
    .flow-text.bigger {
      font-size: 1.932rem; } }
  @media only screen and (min-width: 960px) {
    .flow-text.bigger {
      font-size: 1.96rem; } }
  @media only screen and (max-width: 360px) {
    .flow-text.bigger {
      font-size: 1.2rem; } }

#hijack {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0.8;
  z-index: 17000;
  text-align: center;
  line-height: 100vh;
  font-size: 500%;
  color: white; }

.overlay-parent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  z-index: 17;
  font-size: 500%;
  color: white;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
  align-items: center; }
  .overlay-parent.partial {
    opacity: 0.8; }
  .overlay-parent.invisible {
    opacity: 0;
    pointer-events: none; }

.gone {
  display: none; }

/* entire container, keeps perspective */
.flip-container {
  width: 80%;
  min-width: 700px;
  margin-left: auto;
  margin-right: auto;
  perspective: 2000px; }

/* flip the pane when hovered */
.flipper.flipped {
  transform: rotateY(180deg); }

.flipper, .front, .back {
  width: 100%;
  height: 100%; }

/* flip speed goes here */
.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative; }

/* hide back of pane during swap */
.front, .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 1px 1px 3px 1px #5c5c5c;
  line-height: 200%; }

/* front pane, placed above back */
.front {
  z-index: 2;
  /* for firefox 31 */
  transform: rotateY(0deg);
  background-size: cover;
  background-position: center;
  color: white; }
  .front .front-text {
    margin-top: 30%; }

/* back, initially hidden pane */
.back {
  transform: rotateY(180deg);
  background: url("/public/img/postcards/background.png") repeat; }

.address {
  margin: 30% 50px 50px 50px;
  width: 25%;
  line-height: 150%; }
  .address * {
    width: 100%;
    border-bottom: 1px solid black; }

.leaderboard-user {
  width: 180px;
  height: 210px;
  margin: 0 10px;
  transition: box-shadow 0.5s, color 0.5s;
  color: black; }
  .leaderboard-user:hover {
    box-shadow: inset 0 0 4px 0 #505050;
    color: #039be5; }
  .leaderboard-user img {
    width: 100%;
    padding: 10px 10px 5px 10px; }
  .leaderboard-user .caption {
    line-height: 20px;
    text-align: center;
    margin-bottom: 10px; }

.profile-content .profile-title {
  line-height: 36px;
  font-size: 28px; }

.profile-content .profile-info {
  line-height: 24px;
  font-size: 18px;
  font-weight: 300; }

.profile-content * {
  margin-bottom: 10px; }

.profile-card {
  min-width: 300px;
  max-width: 600px;
  width: 100%;
  height: 248px;
  margin: 0 auto; }

.profile-user {
  width: 200px;
  height: 100%;
  margin-right: 15px; }
  .profile-user img {
    width: 100%;
    height: 100%;
    padding: 10px;
    transition: box-shadow 0.5s; }
    .profile-user img:hover {
      box-shadow: inset 0 0 4px 0 #505050; }

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/public/fonts/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(/public/fonts/MaterialIcons-Regular.woff2) format("woff2"), url(/public/fonts/MaterialIcons-Regular.woff) format("woff"), url(/public/fonts/MaterialIcons-Regular.ttf) format("truetype"); }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

.material-icons.same {
  font-size: inherit;
  line-height: inherit; }

.force-link {
  cursor: pointer; }

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJzaXRlLmNzcyIsInNvdXJjZVJvb3QiOiIifQ==*/