* { box-sizing: border-box; }
body {
  font: 16px Arial;
  text-align: center;
  color: #ffffff;
  height: 100%;
  background-color:rgba(32,32,32,1.0);
  overflow-y: scroll; 
}
.header {
  position: fixed;
  font-family: minecrafter;
  font-size: 22px;
  top: 0;
  margin:0 -20px;
  padding: 0px;
  padding-top: 10px;
  width:800px;
  background-color: rgba(32,32,32,1.0);
  z-index: 2;
}
.float-footer {
  position: fixed;
  font-family: minecrafter;
  font-size: 22px;
  bottom: 0;
  right: 0;
  margin:-5px 0;
  padding: 0px;
  text-align: right;
  background-color: rgba(32,32,32,1.0);
  z-index: 2;
}
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  text-align: left;
  color: #000000;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}
.result {
  padding-top: 20px;
  padding-left: 10px;
  height: 80px;
}
.regions {
  margin: auto;
  width: 400px;
  padding-top: 20px;
  padding-left: 10px;
}
.regions a:link {
  text-decoration: none;
  color: #ffffff;
}
.regions a:visited {
  color: #ffffff;
}
.regions a:hover {
  color: #ffffff;
}
.regions a:active {
  color: #ffffff;
}
.footer {
  cursor: default;
  position: fixed;
  height: 82px; bottom: 0;
  width: 100%;
  text-align: center;
  color: rgba(64,64,64,1.0);
  background-color:rgba(32,32,32,1.0);
}
.header_icon {
  width:32px;height:32px;vertical-align: middle;
}
.title {
  font-family: minecrafter;
  font-size: 42px;
  text-align: center;
}
.separator_top {
  border-left: none;
  border-right: none;
  height: 4px;
  background-color:rgba(8,8,8,1.0);
}
.separator {
  position: absolute;
  border-left: none;
  border-right: none;
  left: 0;
  right: 0;
  height: 22px;
  background-color:rgba(32,32,32,1.0);
}

a:link {
  color: #ffffff;
}
a:visited {
  color: #ffffff;
}
a:hover {
  color: #ffffff;
}
a:active {
  color: #ffffff;
}

.item_img {vertical-align:middle;image-rendering:pixelated;image-rendering: -moz-crisp-edges;image-rendering: crisp-edges;width:64px;height:64px}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #212121;
}


@font-face {
  font-family: minecrafter;
  src: url(Minecrafter.Reg.ttf);
}