 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
 
body {
  -webkit-box-align: top;
          align-items: center;
  background: #ffffff;
  color: #fff;
  display: -webkit-box;
  display: flex;
  font: 30px/1.375 "Lato", arial, sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
}


.fill{
    width:100%;
    height:100%;
    min-height:100%;
    background-color:#ffffff;
    color:#efefef;
}
.full-screen-div {
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
}

.note {
  font-size: 0.5em;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 1px;
}


#hint {
      font-size: 0.5em;

  font-weight: bold;
  color: #888888;
  letter-spacing: 1px;
}
 
 
#search {
    position:absolute;
  -webkit-box-align: top;
          align-items: center;
  background: #004242;
  border-radius: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin: 0.5em 0;
  padding: 0.5em 0.5em 0.5em 1em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 90%;
}

#results {
          align-items: center;
  background: #008282;
  border-radius: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin: 0.5em 0;
  padding: 0.5em 0.5em 0.5em 1em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #000000;
  width: 90%;
}

span {
 
        display:inline-block;
        font-weight: normal;
	width: 100%;
     }

a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}
 
#search:hover, #search:focus {
  background: #008282;
}
#search button,
#search input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  outline: 0;
  flex: 1;
}
#search button {
  cursor: pointer;
  padding: 0 0.15em;
  position: absolute;
  right: 10px;
}
#search input {
  -webkit-box-flex: 1;
          flex: 1;
}
#search input::-webkit-input-placeholder {
  color: #fff;
}
#search input::-moz-placeholder {
  color: #fff;
}
#search input:-ms-input-placeholder {
  color: #fff;
}
#search input::-ms-input-placeholder {
  color: #fff;
}
#search input::placeholder {
  color: #fff;
}
#search .spinner {
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
  display: none;
  padding: 0 0.25em;
}
 
#search.loading button {
  display: none;
}
#search.loading .spinner {
  display: block;
}
 
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
 
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }

.container{
    width:100%;
    height:auto;
    position:relative;
        max-width: unset;

}

.container #search{
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
}
