body {
  font-family: 'Lato', sans-serif;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; }

.page-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding-left: 5vw;
  padding-right: 5vw;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

@media (max-width: 35em) {
  html, body {
    height: 100%; }

  html {
    overflow-y: hidden; }

  body {
    overflow-y: scroll;
    background-color: #000000; } }
.page-header .navlinks .signup, .nudge .signup-button {
  color: #1998f5;
  background-color: white;
  height: 1.5em;
  padding: 0.25em 2em 0.25em 2em;
  border-radius: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  font-family: 'Poppins';
  text-decoration: none;
  box-shadow: 0 6px 4px -4px rgba(0, 0, 0, 0.3); }
  .page-header .navlinks .signup:hover, .nudge .signup-button:hover {
    color: #1998f5;
    box-shadow: 0 12px 8px -8px rgba(0, 0, 0, 0.5); }

.page-header {
  margin-top: 0;
  font-family: 'Poppins';
  box-sizing: border-box;
  width: 100%;
  padding: 1em 0 1em 0;
  display: flex;
  align-items: center;
  border-bottom: none; }
  .page-header .navlinks {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center; }
    .page-header .navlinks .divider {
      position: relative; }
      .page-header .navlinks .divider:after {
        content: '';
        top: -50%;
        left: 50%;
        position: absolute;
        height: 200%;
        width: 1px;
        border-right: 1px solid lightgray; }
    .page-header .navlinks a {
      font-size: medium;
      margin-left: 0.75em;
      margin-right: 0.75em;
      color: white;
      text-decoration: none; }
      .page-header .navlinks a:hover {
        color: lightgray; }

.nombler-logo {
  height: 1.5em; }
  .nombler-logo img {
    height: 1.5em; }

#search {
  height: 2em;
  width: 2em;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1em;
  padding: 0.5em;
  color: white;
  position: relative;
  transition: width 0.5s, opacity 0.3s;
  border: none; }
  #search::-webkit-placeholder {
    color: #c8c8c8; }
  #search::placeholder {
    color: #c8c8c8; }
  #search:focus {
    width: 11em;
    opacity: 1;
    outline: none; }
  #search:after {
    content: "\25AE";
    font-family: FontAwesome;
    left: -5px;
    position: absolute;
    top: 0; }

.search-label {
  position: absolute;
  top: 0;
  right: 0.2em;
  font-size: 1.5em;
  color: white; }

.search-container {
  position: relative;
  margin-left: 0.75em; }

#search-results {
  width: 11em;
  top: 1.5em;
  padding: 0;
  border: none; }
  #search-results li a {
    display: flex;
    border-bottom: 1px solid #c8c8c8;
    align-items: center;
    justify-content: space-between;
    padding: 0.3em 0.5em 0.3em 0.5em;
    margin: 0; }
    #search-results li a div {
      display: flex;
      flex-direction: column;
      margin-right: 1em; }
    #search-results li a object, #search-results li a img {
      margin-left: 0.15em;
      object-position: center;
      object-fit: cover;
      width: 2em;
      height: 2em;
      border-radius: 50%;
      vertical-align: middle; }
    #search-results li a img {
      border: 2px solid black;
      background-color: #969696; }
  #search-results li:first-child a {
    margin-top: 0.15em; }
  #search-results li:last-child a {
    border-bottom: none;
    margin-bottom: 0.15em; }

.search-result-name {
  font-weight: bolder;
  color: black;
  word-break: break-all;
  white-space: normal; }

.search-result-username {
  font-size: 0.8em;
  color: #646464;
  word-break: break-all;
  white-space: normal; }

.search-animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3em; }

.search-animation-line {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 0.7em;
  background-color: #c8c8c8;
  margin-right: 0.4em; }

.search-animation-line:nth-last-child(1) {
  animation: search-animation-bounce .6s .1s linear infinite; }

.search-animation-line:nth-last-child(2) {
  animation: search-animation-bounce .6s .2s linear infinite; }

.search-animation-line:nth-last-child(3) {
  animation: search-animation-bounce .6s .3s linear infinite; }

@keyframes search-animation-bounce {
  0% {
    transform: translate(0, -0.3em); }
  30% {
    transform: translate(0, 0.3em); }
  100% {
    transform: translate(0, -0.3em); } }
@media (max-width: 35em) {
  .page-header {
    padding: 1em; }

  .navlinks {
    display: flex;
    flex-direction: column-reverse;
    text-align: right; }
    .navlinks .divider {
      display: none; }
    .navlinks a {
      margin-bottom: 0.5em; }

  .search-container {
    margin-bottom: 0.5em; }

  .search-label {
    top: 0; } }
.page-footer {
  font-family: 'Fira Sans';
  color: white;
  margin-top: 2em;
  box-sizing: border-box;
  width: 100%;
  height: 4em;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .page-footer a {
    color: white;
    text-decoration: none; }
    .page-footer a:hover {
      color: gray; }
  .page-footer .social {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
    .page-footer .social a {
      margin: 0.5em; }
  .page-footer .copyright {
    font-size: 80%; }
  .page-footer .legal a {
    margin-left: 0.5em;
    margin-right: 0.5em;
    font-size: 80%; }
  .page-footer .inquiries {
    font-weight: bold;
    font-size: 80%;
    margin-left: 0.5em;
    margin-right: 0.5em; }

@media (max-width: 45em) {
  .page-footer {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: baseline;
    min-height: 4em;
    height: auto; }
    .page-footer .legal a:first-child {
      margin-left: 0; }
    .page-footer .social {
      position: static;
      transform: none; }
      .page-footer .social a {
        margin-left: 0; } }
.page-header .navlinks .signup, .nudge .signup-button {
  color: #1998f5;
  background-color: white;
  height: 1.5em;
  padding: 0.25em 2em 0.25em 2em;
  border-radius: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  font-family: 'Poppins';
  text-decoration: none;
  box-shadow: 0 6px 4px -4px rgba(0, 0, 0, 0.3); }
  .page-header .navlinks .signup:hover, .nudge .signup-button:hover {
    color: #1998f5;
    box-shadow: 0 12px 8px -8px rgba(0, 0, 0, 0.5); }

.title .fa {
  font-size: 80%;
  color: indianred;
  vertical-align: 0.1em; }
  .title .fa:hover {
    color: #d98383; }
.title .bounce {
  animation: 5s bounce 1s infinite;
  transition: transform; }

.byline object, .byline img {
  margin-left: 0.15em;
  object-position: center;
  object-fit: cover;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  vertical-align: middle; }
.byline img {
  border: 2px solid black;
  background-color: #969696; }

@keyframes bounce {
  0%, 10%, 20%, 30% {
    transform: translateY(0) scale(1.3, 1.3);
    color: indianred; }
  5%, 15%, 25% {
    transform: translateY(-8px) scale(1.3, 1.3);
    color: indianred; }
  31% {
    transform: translateY(0) scale(1, 1);
    color: rgba(100, 100, 100, 0.3); } }
.nudge {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 1em;
  right: 0;
  font-size: 120%;
  font-weight: bold;
  border-radius: 4px 0 0 4px;
  padding: 0.5em;
  padding-right: 1em;
  width: 10em;
  background-color: rgba(240, 84, 110, 0.8);
  color: white;
  animation: 2s ease-out 6s 1 normal forwards running nudgein;
  transform: translateX(1000px);
  z-index: 1; }
  .nudge a {
    color: white; }
  .nudge .signup-button {
    margin-top: 0.5em; }

.goaway {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; }

.nudge:hover .goaway {
  opacity: 0.3; }
.nudge:hover .goaway:hover {
  opacity: 1;
  cursor: pointer; }

@keyframes nudgein {
  from {
    transform: translateX(1000px); }
  to {
    transform: translateX(0); } }
.add-eatery {
  color: white;
  opacity: 0.5;
  text-align: center;
  display: block;
  width: 100%; }
  .add-eatery:hover {
    cursor: not-allowed; }

@media (max-width: 35em) {
  body {
    background-image: url("/nombler-public/img/city_background_small.jpeg"); } }
@media (min-width: 35em) {
  body {
    background-image: url("/nombler-public/img/city_background_large.jpeg"); } }

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