#view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

.wall-frame {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  cursor: text;
  background: white;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .wall-frame.inactive {
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    pointer-events: none;
    overflow: initial; }

.wall-container {
  width: 100%;
  height: 100%;
  border: 1px dotted #d4dcec;
  position: fixed;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .wall-container article {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    font-family: monospace;
    opacity: 0;
    white-space: pre;
    pointer-events: none;
    tab-size: 4;
    /* guides while moving textblobs */ }
    .wall-container article.moving span:first-child:before {
      content: "";
      position: absolute;
      top: 0;
      border-top: 1px dashed #ccc; }
    .wall-container article.moving span:last-child:before {
      content: "";
      position: absolute;
      bottom: 0;
      border-bottom: 1px dashed #ccc; }
    .wall-container article.moving:before {
      content: "";
      position: absolute;
      left: 0;
      border-left: 1px dashed #ccc; }
    .wall-container article.moving:after {
      content: "";
      position: absolute;
      right: 0;
      border-right: 1px dashed #ccc; }
    .wall-container article.list-item {
      position: static;
      white-space: pre-wrap; }
    .wall-container article span {
      font-size: 14px;
      line-height: 14px;
      font-family: monospace;
      cursor: grab;
      cursor: -moz-grab;
      cursor: -webkit-grab;
      pointer-events: auto;
      outline: none; }
      .wall-container article span a {
        cursor: pointer; }
    .wall-container article span:focus {
      cursor: grabbing;
      cursor: -moz-grabbing;
      cursor: -webkit-grabbing; }

.location {
  background: rgba(55, 55, 55, 0.4);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  display: flex; }

.location-input {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0; }

.location-value {
  cursor: pointer;
  background: transparent;
  display: block;
  border: 0;
  color: white;
  font-family: monospace;
  font-size: 15px;
  padding: 4px 6px;
  margin: 0; }
  .location-value:before {
    content: "#"; }

.location-participants {
  padding: 5px 6px 0 6px;
  font-size: 14px; }
  .location-participants svg {
    display: inline;
    height: 13px;
    width: 10px; }

.formatting {
  position: absolute;
  border-right: 1px solid #ccc;
  left: 0;
  top: 40px;
  bottom: 0;
  width: 40px;
  background: white;
  z-index: 100;
  font-size: 16px;
  transition: opacity .3s ease;
  box-sizing: border-box; }
  .formatting.hidden {
    opacity: 0;
    pointer-events: none; }
  .formatting .style {
    /*display: flex;*/ }
  .formatting .style button {
    background: transparent;
    display: block;
    border: 0;
    font-size: 16px;
    font-family: serif;
    width: 100%;
    height: 40px;
    cursor: pointer; }
    .formatting .style button:hover {
      background: #eee; }
    .formatting .style button.underline {
      text-decoration: underline; }
  .formatting .colors {
    /*display: flex;*/
    /*justify-content: space-between;*/ }
    .formatting .colors button {
      display: block;
      width: 100%;
      height: 20px;
      border: 1px solid white;
      cursor: pointer; }
      .formatting .colors button:hover {
        border-color: #444; }
      .formatting .colors button.red {
        background: #EB2525; }
      .formatting .colors button.blue {
        background: #252BEB; }
      .formatting .colors button.orange {
        background: #fc6600; }
      .formatting .colors button.grey {
        background: #888; }
      .formatting .colors button.green {
        background: #2EC300; }
      .formatting .colors button.purple {
        background: #9C00FB; }
      .formatting .colors button.black {
        background: #000; }
  .formatting button.bigger sup {
    font-size: 7px; }

#input {
  position: fixed;
  left: -99999px;
  resize: none;
  overflow: hidden;
  z-index: 10;
  background: transparent;
  outline: 1px solid #FE2;
  outline-offset: 0;
  font-family: monospace;
  font-size: 14px;
  line-height: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  tab-size: 4; }

#input.red, article.red {
  color: #EB2525;
  border-color: #EB2525; }
#input.blue, article.blue {
  color: #252BEB;
  border-color: #252BEB; }
#input.orange, article.orange {
  color: #fc6600;
  border-color: #fc6600; }
#input.grey, article.grey {
  color: #888;
  border-color: #888; }
#input.green, article.green {
  color: #2EC300;
  border-color: #2EC300; }
#input.purple, article.purple {
  color: #9C00FB;
  border-color: #9C00FB; }
#input.black, article.black {
  color: #000;
  border-color: #000; }

.bold {
  font-weight: bold; }

.italic {
  font-style: italic; }

.strikethrough {
  text-decoration: line-through; }

article.underline span {
  text-decoration: underline; }

#input.underline.strikethrough {
  text-decoration: line-through underline; }

#input.bigger, article.bigger {
  font-size: 28px;
  line-height: 28px; }
  #input.bigger span, article.bigger span {
    font-size: 28px;
    line-height: 28px; }

@media (max-width: 600px) {
  .formatting .colors button {
    height: 18px; } }
/* Adjust markers based on zoom for performance */
.zoom-100 article.moving span:first-child:before {
  left: -120vw;
  right: -120vw; }
.zoom-100 article.moving span:last-child:before {
  left: -120vw;
  right: -120vw; }
.zoom-100 article.moving:before {
  top: -120vh;
  bottom: -120vh; }
.zoom-100 article.moving:after {
  top: -120vh;
  bottom: -120vh; }

.zoom-80 article.moving span:first-child:before {
  left: -150vw;
  right: -150vw; }
.zoom-80 article.moving span:last-child:before {
  left: -150vw;
  right: -150vw; }
.zoom-80 article.moving:before {
  top: -150vh;
  bottom: -150vh; }
.zoom-80 article.moving:after {
  top: -150vh;
  bottom: -150vh; }

.zoom-60 article.moving span:first-child:before {
  left: -200vw;
  right: -200vw; }
.zoom-60 article.moving span:last-child:before {
  left: -200vw;
  right: -200vw; }
.zoom-60 article.moving:before {
  top: -200vh;
  bottom: -200vh; }
.zoom-60 article.moving:after {
  top: -200vh;
  bottom: -200vh; }

.zoom-50 article.moving span:first-child:before {
  left: -240vw;
  right: -240vw; }
.zoom-50 article.moving span:last-child:before {
  left: -240vw;
  right: -240vw; }
.zoom-50 article.moving:before {
  top: -240vh;
  bottom: -240vh; }
.zoom-50 article.moving:after {
  top: -240vh;
  bottom: -240vh; }

.zoom-40 article.moving span:first-child:before {
  left: -300vw;
  right: -300vw; }
.zoom-40 article.moving span:last-child:before {
  left: -300vw;
  right: -300vw; }
.zoom-40 article.moving:before {
  top: -300vh;
  bottom: -300vh; }
.zoom-40 article.moving:after {
  top: -300vh;
  bottom: -300vh; }

.zoom-20 article.moving span:first-child:before {
  left: -600vw;
  right: -600vw; }
.zoom-20 article.moving span:last-child:before {
  left: -600vw;
  right: -600vw; }
.zoom-20 article.moving:before {
  top: -600vh;
  bottom: -600vh; }
.zoom-20 article.moving:after {
  top: -600vh;
  bottom: -600vh; }

.zoom-10 article.moving span:first-child:before {
  left: -1200vw;
  right: -1200vw; }
.zoom-10 article.moving span:last-child:before {
  left: -1200vw;
  right: -1200vw; }
.zoom-10 article.moving:before {
  top: -1200vh;
  bottom: -1200vh; }
.zoom-10 article.moving:after {
  top: -1200vh;
  bottom: -1200vh; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #9860FF;
  z-index: 1000;
  transition: background-color 0.4s linear; }

.header-logo {
  position: absolute;
  left: 50%;
  padding: 8px;
  margin-left: -69px;
  cursor: pointer; }
  .header-logo img {
    vertical-align: middle; }
  .header-logo:hover {
    background: rgba(0, 0, 0, 0.1); }

.header-right {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  box-sizing: border-box;
  height: 40px; }

.header-left {
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px;
  box-sizing: border-box;
  height: 40px; }

.btn.disabled {
  opacity: 0.2; }

#user-btn {
  width: 35px;
  height: 30px; }

#user-btn.logged-in {
  background-size: cover; }
  #user-btn.logged-in svg {
    visibility: hidden; }

#format-btn {
  display: none; }

.page-body {
  max-width: 500px;
  margin: auto;
  padding: 0 10px; }

@media (max-width: 600px) {
  #format-btn {
    display: inline-block; }

  .btn-inner {
    display: none; } }
.user-photo {
  background-size: cover;
  width: 40px;
  height: 40px;
  float: right;
  border-radius: 2px; }

.user-email {
  word-break: break-all;
  line-height: 20px; }

.pull-right {
  float: right; }

#invite-email {
  flex: 1; }

.user-actions {
  margin-top: 10px; }

.popup {
  position: absolute;
  top: 40px;
  bottom: 0;
  z-index: 100;
  overflow: auto;
  width: 320px;
  background: #efedf0;
  background: linear-gradient(#f5f5f5, #efedf0);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  transition: .3s left ease, .3s right ease; }
  .popup .exit-btn {
    position: absolute;
    right: 3px;
    top: 10px;
    width: 25px;
    height: 25px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #666;
    font-size: 15px; }
    .popup .exit-btn:hover {
      color: #000; }
  .popup .popup-content {
    padding: 15px; }
    .popup .popup-content h2 {
      margin-top: 0;
      font-size: 20px; }
    .popup .popup-content h3 {
      margin-top: 0;
      text-align: center;
      color: #666;
      font-size: 16px; }
  .popup .divider {
    border-top: 1px solid #dad6dc;
    margin-bottom: 10px; }

.wall-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .wall-list li {
    margin: 0;
    padding: 0; }

.wall-link {
  border: 1px solid #ccc;
  padding: 10px;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #444;
  background: white; }
  .wall-link:hover {
    background: #f7f7f7; }

.list-name {
  font-size: 18px;
  font-weight: bold; }

.list-metadata {
  font-size: 12px;
  color: #8e8e8e; }

.list-owner {
  font-size: 10px;
  background: #9860FF;
  color: white;
  padding: 6px 3px 8px;
  line-height: 0;
  border-radius: 3px;
  float: right; }

#zoom-select {
  flex: 1; }

p {
  line-height: 1.3333; }

.form.inline .form-group {
  display: flex; }
.form.inline .btn {
  height: 46px;
  margin: 5px 0 5px 5px; }

.form-group {
  margin-bottom: 10px; }
  .form-group label {
    display: block;
    font-weight: 700;
    color: #333; }
  .form-group .form-control {
    margin: 5px 0; }
  .form-group.-inline {
    display: flex;
    align-items: center; }
    .form-group.-inline label {
      margin-right: 5px; }

input.form-control {
  border: 1px solid #ccc;
  margin: 5px 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  width: 100%;
  color: #555;
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
  box-sizing: border-box; }
  input.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

select.form-control {
  outline: none;
  border: 0;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42857143;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0px, rgba(255, 255, 255, 0.2));
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  cursor: pointer; }

.form-control.form-solid {
  background-color: #9860FF; }

.form-control.form-solid.dull {
  background-color: #888; }

.form-control.form-block {
  display: block;
  width: 100%; }

.btn {
  display: inline-block;
  color: white;
  padding: 10px 16px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  /*vertical-align: middle;*/
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0px, rgba(255, 255, 255, 0.2)); }
  .btn:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0px, rgba(255, 255, 255, 0.3)); }
  .btn.btn-link {
    background: none;
    border-color: transparent;
    color: #9860FF; }
    .btn.btn-link:hover {
      color: #555; }
  .btn.btn-solid {
    background-color: #9860FF; }
  .btn.btn-small {
    font-size: 14px;
    padding: 4px 10px;
    height: 30px;
    border-radius: 3px; }

.btn-icon {
  position: relative;
  top: 1px; }
  .btn-icon svg {
    vertical-align: text-top;
    height: 15px;
    opacity: 0.7; }
    .btn-icon svg path {
      fill: white; }

.btn-group {
  display: flex; }
  .btn-group.-full {
    flex-wrap: wrap; }
    .btn-group.-full .btn {
      width: 100%; }

.error {
  color: #EB2525;
  margin-bottom: 15px;
  margin-top: 15px;
  display: none; }

.invititaion-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between; }

.invitation-space {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px; }

.invitation-name {
  word-break: break-all;
  font-size: 14px; }

.invitation-action {
  flex: 0; }

@media (max-width: 600px) {
  .invitation-action select, .invitation-action button {
    display: block; } }
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  -webkit-text-size-adjust: none;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; }
