@import url(https://fonts.googleapis.com/css?family=Space+Mono:400,700&display=swap);body {
  margin: 0px;
  min-height: 100%; }

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0; }

a {
  color: inherit;
  text-decoration: none; }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Space Mono', monospace; }

input, button {
  font-family: 'Space Mono', monospace;
  font-size: 1rem; }

button, .download {
  background: #98FAAD;
  border: 0px;
  padding: 20px 20px;
  border-radius: 5px;
  line-height: 0;
  display: inline-block; }

input {
  background-color: #EDEDED;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 0; }

.result {
  display: flex; }
  .result div {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin-right: 50px; }
  .result__name {
    width: 50%; }
  .result__geo {
    width: 50%; }

.info-open .wrapper {
  opacity: 0.3; }

.processing {
  height: 100vh;
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; }

.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  left: 0px;
  right: 50%; }

.data {
  padding: 100px 20px 20px;
  background: #ffffff;
  position: fixed;
  top: 100px;
  left: 0px;
  right: 50%;
  bottom: 0px;
  overflow: scroll; }
  .bar-visible .data {
    bottom: 100px; }

.errors {
  background: #FFFAF1;
  width: 50%;
  overflow: scroll;
  box-sizing: border-box;
  padding: 20px;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 50%;
  bottom: 0px; }
  .bar-visible .errors {
    bottom: 100px; }

.error {
  color: #FF5353; }

.download-bar {
  height: 100px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  box-shadow: 0px 9px 28px rgba(0, 0, 0, 0.33); }
  .bar-visible .download-bar {
    -webkit-transform: translateY(0);
            transform: translateY(0); }

.info-button {
  background: #ffffff;
  padding: 20px;
  position: fixed;
  top: 20px;
  right: 20px;
  line-height: 0;
  cursor: pointer;
  border: 1px solid #000000; }
  .info-button:hover {
    background: #98FAAD; }

.info {
  padding: 20px;
  width: 500px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #000000;
  display: none; }
  .info-open .info {
    display: block; }
