body, html {
  margin: auto;
  font-family: arial;
  background: transparent;
  font-size: 0.9em;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
#loginBanner {
  overflow: hidden;
  background-color: #4A7;
  color: #FFF !important;
  font-weight: bolder;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
  height: 0;
  transition: all 1s ease-out;
  text-decoration: none;
}
#settingsMenu {
  display: block;
  width: 90%;
  margin: 0;
  padding: 5vw;
  height: 100%;
  overflow: auto;
}
#footer {
  padding: 2.5vw;
  font-size: 10pt;
  text-align: center;
  max-width: 500px;
  margin: auto;
}
#footer > a {
  color: inherit !important;
}
#footer > a:hover {
  text-decoration: none;
}
#serverInfoWrap {
  width: auto;
  border: solid 1px #999;
  padding: 15px;
}
#logoutBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  user-select: none;
}
#logoutBtn:hover {
  color: #F33;
}
#chatId{
  width: auto;
  white-space: nowrap;
  overflow-x: scroll;
}
.subreddit:before {
  content: "c";
  font-size: 5pt;
  font-weight: bold;
  color: #FFF;
  background-image: url('/c.png');
  background-size: 100 100;
  display: inline-block;
  width: 7pt;
  height: 7pt;
  margin-right: 3px;
  border-radius: 50%;
  border: solid 1px #EEE;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
#confirmation {
  text-align: center;
  color: #3B3;
  font-weight: bolder;
  height: 20px;
}
label {
  word-break: break-word;
  display: block;
  margin: 10px;
}
input[type=text] {
  display: inline;
}
#name {
  display: inline-block;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label:after {
  content: "No";
  display: inline;
  word-break: break-word;
  font-weight: 12pt;
  color: #DD3333;
  border-radius: 50%;
  font-weight: bold;
  margin-left: 15px;
  cursor: pointer;
}
input[type=checkbox]:checked + label:after {
  content: "Yes";
  display: inline;
  word-break: break-word;
  font-weight: 12pt;
  color: #55DD33;
  border-radius: 50%;
  font-weight: bold;
  margin-left: 10px;
}
#buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 500px) {
  body, html {
    margin: 0;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
  }
  body::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
  }
  #content {
    width: calc(100vw - 30px);
    padding: 15px;
    margin: 0;
  }
  h1, h2, p, hr {
    margin: 0;
  }
}