
* {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

h1 {
  margin-top: 0;
  padding-top: 0;
  font-size: 36px;
}

h2 {
  margin-top: .3em;
  padding-top: .3em;
  font-size: 28px;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
}

#main-container {
  background-color: #000000;
}

#address-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#address-box {
  z-index: 120;
  width: 45%;
  font-size: 1.4em;
  min-width: 250px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 111, 173, .9);
  color: white;
  text-align: left;
  vertical-align: middle;
  padding: 1em 1.5em 1.5em;

  border: 10px solid rgba(255, 255, 255, 1);
  overflow-x: hidden;
}

#address-box form {
  width: 100%;
  height: 100%;
}

#address-box table {
  width: 100%;
  height: 100%;
}

tr td:nth-child(1) {
  min-width: 100px;
  width: 30%;
}

tr td:nth-child(2) {
  width: 70%;
}

tr td:nth-child(2) select,
tr td:nth-child(2) option {
  width: 100%;
  min-height: 1.5em;
  background-color: white;
  padding: .3em;
  font-weight: bolder;
  color: #006FAD;
}

tr td:nth-child(2) option {
  font-size: 1.1em;
}

tr:first-child {
  text-align: center;
}

tr:last-child > td {
  text-align: center;
  padding-top: .5em;
}

#address-box-show-button-container {
  font-size: 1.3em;
  z-index: 100;
  position: absolute;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  width: 8em;
  padding: .6em;
  background-color: rgba(0, 111, 173, .9);
  color: white;
  bottom: 55px;
  left: 15px;
  cursor: pointer;
}

#address-button {
  background-color: white;
  color: #006FAD;
  padding: .7em 1.5em;
  border: 0 none;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}

#logo {
  position: absolute;
  z-index: 50;
  height: 15%;
  top: 3%;
  left: 2%;
  background-color: rgba(255, 255, 255, .0);
}

#logo img {
  height: 100%;
}

#help-container {
  display: flex;
  position: absolute;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: flex-end;
}

#help {
  position: absolute;
  bottom: 1%;
  z-index: 100;
  padding: .4em .6em;
  background-color: rgba(0, 111, 173, .9);
  color: white;
  border: 2px solid rgba(255, 255, 255, .9);
  font-weight: bolder;
}

#authorize_button {
  position: absolute;
  top: 20%;
  left: 20%;
  color:red;
  background-color: yellow;
  font-weight: bold;
  z-index: 999;
}

#app-author {
  position: relative;
  /* z-index: 99999; */
  bottom: 8px;
  left: 8px;
  font-size: 12px;
  font-weight: bold;
  color:rgba(255, 255, 255, .8);
}

