body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Open Sans',sans-serif;
}

h1 {
  font-size: 2.828rem;
  line-height: 3.4rem;
}

a {
  color: rgb(0, 204, 0);
}

#main {
  width: 100vw;
  height: 100vh;
  background-color: rgb(49, 54, 65);
  display: flex;
  align-items: center;
  z-index: 0;
}

#main-header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 70px;
  border-bottom: 1px solid rgb(150, 150, 150);
  background-color: rgb(49, 54, 65);
  display: flex;
  align-items: center;
  z-index: 999;
}

#main-body {
  margin: auto;
  text-align: center;
  background-color: rgb(49, 54, 65);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  justify-content:center;
  z-index: 2;
}

#main-footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 40px;
  border-top: 2px solid rgb(150, 150, 150);
  background-color: rgb(49, 54, 65);
  display: flex;
  align-items: center;
  z-index: 999;
}

.band-green {
  font-family: 'ITCAvantGardeStdBk',sans-serif;
  color: rgb(0, 204, 0);
  padding-left: 10px;
  padding-right: 10px;
}

.band-red {
  font-family: 'ITCAvantGardeStdBk',sans-serif;
  color: rgb(255, 0, 0);
  padding-left: 10px;
  padding-right: 10px;
}

.band-blue {
  font-family: 'ITCAvantGardeStdBk',sans-serif;
  color: rgb(77, 136, 255);
  padding-left: 10px;
  padding-right: 10px;
}

.band-yellow {
  font-family: 'ITCAvantGardeStdBk',sans-serif;
  color: rgb(255, 255, 0);
  padding-left: 10px;
  padding-right: 10px;
}

.text-normal {
  font-size: 106.25%;
  line-height: 1.7rem;
  padding-left: 10px;
  padding-right: 10px;
  color: rgb(205, 205, 205);
}

.text-large {
  opacity: 0;
  font-size: 1.414rem;
  line-height: 1.7rem;
  padding-left: 10px;
  padding-right: 10px;
  color: rgb(205, 205, 205);
}

@keyframes opacity-basic {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

.fade {
  -webkit-animation: 1s opacity-basic .5s ease-in forwards;
  animation: 1s opacity-basic .5s ease-in forwards;
}

.image-fade {
  -webkit-animation: 1s opacity-basic 1.5s ease-in forwards;
  animation: 1s opacity-basic 1.5s ease-in forwards;
}

.icon-connect {
  fill: rgba(0, 204, 0, .7);
  opacity: 0;
  display: inline-block;
  height: 5.1rem;
  transform: rotate(-135deg);
  -webkit-animation: 1.2s opacity-basic 1.8s ease-in forwards;
  animation: 1.2s opacity-basic 1.8s ease-in forwards;
}

.icon-disconnect {
  fill: rgba(255, 0, 0, 0.45);
  opacity: 0;
  display: inline-block;
  height: 5.1rem;
  margin: auto 10px;
  -webkit-animation: 1.2s opacity-basic 1.8s ease-in forwards;
  animation: 1.2s opacity-basic 1.8s ease-in forwards;
}

.icon {
  opacity: 0;
  display: inline-block;
  height: 5.1rem;
  margin: 1.7rem .5rem 0;
}

.logo-icon {
  height: 40px;
  margin: 15px;
}

@keyframes rotation {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotation {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
  }
}

.loading-wrap {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  fill: rgb(230, 230, 230);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.loading-wrap::after {
  word-break: break-all;
  content: "This may take a few minutes, please wait ...";
  color: rgb(230, 230, 230);
}

.loading-icon {
  width: 4rem;
  height: 4rem;
  fill: rgb(230, 230, 230);
  margin-bottom: 12px;
  animation: rotation 1.5s linear infinite;
  -moz-animation: rotation 1.5s linear infinite;
  -webkit-animation: rotation 1.5s linear infinite;
  -o-animation: rotation 1.5s linear infinite;
}

.logo-text {
  color: rgb(230, 230, 230);
  font-size: 1.3rem;
  font-weight: 600;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
}

.doc-link {
  position: absolute;
  right: 10px;
  padding: .25em .75em;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  transition-duration: .4s;
  transition-property: color;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  box-sizing: border-box;
}
.doc-link:hover {
  border-bottom: 3px solid rgb(120, 120, 120);
}

.download-btn {
  position: absolute;
  right: 15px;
  width: auto;
  height: auto;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  line-height: 1.5;
  border-radius: 3px !important;
  background: rgba(255, 255, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 0, 0.8) !important;
  border-radius: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.download-btn:hover {
  background: rgba(255, 255, 0, 0.30) !important;
}
.download-btn:active {
  background: rgba(255, 255, 0, 0.35) !important;
}

.send-btn {
  margin: 20px auto 0;
  font-size: 20px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  line-height: 1.5;
  border-radius: 3px !important;
  background: rgba(0, 204, 0, 0.3) !important;
  border: 1px solid rgb(0, 204, 0) !important;
  border-radius: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.send-btn:hover {
  background: rgba(0, 204, 0, 0.38) !important;
}
.send-btn:active {
  background: rgba(0, 204, 0, 0.5) !important;
}

.manual-btn {
  margin: 30px auto 0;
  font-size: 16px;
  height: auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  line-height: 1.5;
  border-radius: 3px !important;
  background: rgba(255, 255, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 0, .8) !important;
  border-radius: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.manual-btn:hover {
  background: rgba(255, 255, 0, 0.28) !important;
}
.manual-btn:active {
  background: rgba(255, 255, 0, 0.4) !important;
}

.cancel-send-btn {
  margin: 30px auto 0;
  font-size: 1rem;
  height: auto;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  line-height: 1.5;
  border-radius: 3px !important;
  background: rgba(255, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 0, 0, 1) !important;
  border-radius: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.cancel-send-btn:hover {
  background: rgba(255, 0, 0, 0.45) !important;
}
.cancel-send-btn:active {
  background: rgba(255, 0, 0, 0.55) !important;
}

.copy-right {
  margin: auto;
  color: rgb(230, 230, 230);
}

.address-group {
  display: flex;
  align-items: center;
  margin: 10px 0 20px 0;
}

.address {
  width: 360px;
  box-sizing: border-box;
  max-width: 80vw;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: table-cell;
  font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 20px;
  color: white;
  vertical-align: middle;
  background-color: rgb(28, 30, 35);
  box-shadow: 0px 0px 6px inset black;
  border: 1px solid black !important;
  background-repeat: no-repeat;
  background-position: right 8px center;
  border: none;
  border-radius: 3px;
  outline: none;
  overflow: visible;
}

.address-go {
  font-size: 16px;
  box-sizing: border-box;
  padding: 7px;
  margin-left: 2px;
  cursor: pointer;
  color: white;
  border-radius: 3px !important;
  background: rgba(0, 204, 0, 0.3) !important;
  border: 1px solid rgb(0, 204, 0) !important;
  border-radius: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.address-go:hover {
  background: rgba(0, 204, 0, 0.38) !important;
}
.address-go:active {
  background: rgba(0, 204, 0, 0.5) !important;
}

.tip {
  color: rgb(230, 230, 230);
  font-style: italic;
}

.help-group {
  opacity: 0;
  margin: 30px 0 20px 0;
  display: flex;
  align-items: center;
}

.help-link {
  color: rgb(230, 230, 230);
  text-decoration: underline;
  margin: 0 6px;
}