* {
  box-sizing: border-box;
}

body {
  background: whitesmoke;
  color: #539;
  font: 18px "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

h1, h2 {
  letter-spacing: -0.02em;
}

h2, p {
  margin: 0;
}

hr {
  border: 0;
  border-bottom: 1px solid #dde;
}

input, textarea {
  font: inherit;
}

input[type=color] {
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

fieldset {
  border: 1px solid rebeccapurple;
  border-radius: 0.5em;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

#loginbg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  background: white url(images/loginbg-3.jpg) center/100% 100% no-repeat;
}

#login {
  background: white;
  max-width: 400px;
  margin: 110px auto 0;
  border-radius: 0.3em;
  box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 1em;
  transition: all 0.2s;
  opacity: 0;
  animation: loginfadein 1s ease 0.5s forwards;
}
#login img {
  height: 100px;
  width: 100px;
}

@keyframes loginfadein {
  from {
    opacity: 0;
    transform: translatey(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#submit {
  background: rebeccapurple;
  color: white;
  border-radius: 10px;
  padding: 0.5em;
  margin: 0.5em;
  cursor: pointer;
  display: block;
  transform: scale(1);
  transition: transform 0.1s;
}
#submit:active {
  transform: scale(0.95);
}

.flyin {
  animation: flyin 0.8s ease 0s 1 forwards;
}

@keyframes flyin {
  from {
    opacity: 0;
    transform: translatey(20px);
  }
  to {
    opacity: 1;
    transform: translatey(0);
  }
}
nav.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  margin: 0;
  padding: 0;
  text-align: center;
  transition: all 0.5s;
  z-index: 5;
}
nav.sidebar.hidden {
  transform: translatex(-100%);
}
nav.sidebar h3 {
  display: inline-block;
  margin: 0;
}
nav.sidebar a {
  text-decoration: none;
  transition: background-color 0.1s;
}
nav.sidebar a:hover {
  background-color: #eef;
}
nav.sidebar ul {
  display: inline-block;
  vertical-align: middle;
}
nav.sidebar li {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.1s;
}
nav.sidebar li:active {
  transform: scale(0.9);
}
nav.sidebar li a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  padding: 0.5em;
}
nav.sidebar li span {
  display: none;
}
nav.sidebar > ul > li > a > i {
  font-size: 1.2em;
}
nav.sidebar img {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}
nav.sidebar time {
  display: block;
}

#notifications-menu,
#settings-menu {
  height: 100vh;
  overflow: auto;
}

#settings-menu {
  text-align: left;
}
#settings-menu a {
  display: block;
  padding: 0.5em;
  font-size: 0.8em;
  border-top: 1px solid #eee;
}

#li-notif,
#li-search {
  position: relative;
  padding: 0.5em;
}

button#search-icon {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  border: none;
  color: rebeccapurple;
}

#search-form {
  display: none;
}

#search-box {
  margin: 0;
  padding: 0.3em;
  border: 0;
}
#search-box::-moz-placeholder {
  color: mediumpurple;
}
#search-box::placeholder {
  color: mediumpurple;
}

#notificationsbutton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  height: 1.5em;
  width: 1.5em;
  font-weight: bold;
  color: white;
  padding: 0.2em;
  border-radius: 1.5em;
  cursor: pointer;
  transition: all 0.2s;
  background: #ccc;
}
#notificationsbutton.red {
  background: red;
}

.close-menu {
  background: rebeccapurple;
  color: white;
  border-radius: 50%;
  font-size: 1.5em;
  height: 1.3em;
  width: 1.3em;
  border: none;
  line-height: 1em;
  cursor: pointer;
}

#notifications-menu {
  text-align: left;
}
#notifications-menu div {
  min-height: 80px;
  padding: 0.2em;
  color: gray;
  text-align: left;
  font-size: 0.9em;
  border-bottom: 1px solid #eee;
  clear: both;
}
#notifications-menu div.highlighted {
  color: #539;
  font-weight: bold;
  background-color: #eef;
}
#notifications-menu img {
  height: 1.2em;
  width: 1.2em;
  display: inline-block;
  vertical-align: middle;
  margin: 0.1em 0.3em;
}

main {
  height: 100%;
  width: 100%;
  padding-top: 120px;
  opacity: 0;
  animation: flyin 0.8s ease 0s 1 forwards;
}

.post {
  margin-bottom: 2em;
  clear: both;
}

.postinner, .statusupdate, #customize {
  position: relative;
  background: white;
  border-radius: 0.5em;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1333333333);
  padding: 0.6em;
  margin: 1rem 0;
}
.postinner a, .statusupdate a, #customize a {
  text-decoration: none;
}
.postinner .headshot, .statusupdate .headshot, #customize .headshot {
  height: 80px;
  width: 80px;
  margin: 0 0.5em 0 0;
  line-height: 75px;
  font-size: 1rem;
  float: left;
}

/* target any post images that aren't icons or badges */
.postinner p img,
.postinner p + img {
  display: block;
  width: 100%;
  max-height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

.post.redacted .postinner,
.comment.redacted .commentinner {
  background: lightgrey;
  color: #777;
}

.statusupdate {
  min-height: 110px;
  margin-bottom: 1rem;
}
.statusupdate textarea {
  width: calc(100% - 130px);
  border: none;
  resize: none;
}

#imginput, #videoinput, #pollinput {
  display: none;
  width: calc(100% - 50px);
}

#oldernewer {
  text-align: center;
}

#oldernewer a {
  background: rebeccapurple;
  color: white;
  text-decoration: none;
  padding: 0.4em;
  border-radius: 0.4em;
}

.info {
  font-size: 0.8em;
  padding: 0.2em;
}
.info a {
  text-decoration: none;
  font-weight: bold;
}
.info a:hover {
  text-decoration: underline;
}
.info a.nobold {
  font-weight: normal;
}
.info i {
  font-size: 1.2em;
}

img.user {
  height: 66px;
  width: 66px;
  border-radius: 50%;
  padding: 0 10px 10px 0;
  float: left;
}

time {
  display: inline-block;
  font-size: 0.8em;
  opacity: 0.6;
}

.post time {
  display: block;
}

.statustext, .redactedtext {
  clear: left;
}

.redactedtext,
.comment.redacted .commentinner {
  background: black;
  color: #ddd;
  font-weight: bold;
  font-variant: all-small-caps;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.2em 0.4em;
  max-width: 32em;
}

.icon {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  width: 2.2rem;
  height: 2.2rem;
  text-align: center;
  float: right;
  clear: right;
  cursor: pointer;
  margin-bottom: 0.2em;
  border-radius: 50%;
  overflow: visible;
  transition: all 0.1s;
}
.icon:hover {
  background: rgba(102, 51, 153, 0.1333333333);
}
.icon:active {
  transform: scale(0.9);
  background: rgba(102, 51, 153, 0.2666666667);
}
.icon .fa-comment-alt {
  line-height: 1.6em;
}

#coverphoto {
  width: 95%;
  max-width: 820px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  background-color: lightslategray;
  margin: 20px;
}

#profile-header {
  font-family: "Open Sans", sans-serif;
}
#profile-header h1, #profile-header #titles, #profile-header #badges {
  margin: 0;
}
#profile-header .postinner {
  background: white;
  color: #333;
  clear: both;
}

#profile-header-inner {
  background: rgba(0, 0, 0, 0.6666666667);
  color: white;
  padding: 1rem;
}

.headshot {
  height: 180px;
  width: 180px;
  background: #ccd;
  color: white;
  line-height: 170px;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px outset #eee;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}

.badge {
  width: 60px;
  vertical-align: middle;
  margin-right: -10px;
}

#vanderchat {
  display: none;
}

.post h2 {
  display: inline-block;
}

.postbadges {
  display: inline-block;
}
.postbadges img {
  width: 32px;
}

.likes {
  width: 90%;
  font-size: 0.8em;
  opacity: 0.8;
  border-top: 1px solid rgba(0, 0, 0, 0.1333333333);
  padding-top: 0.4em;
  margin-top: 0.4em;
}

.comments {
  background: white;
  width: 90%;
  max-width: 750px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1333333333);
  line-height: 30px;
  margin: -18px 0 0 1em;
  border-radius: 0 0 0.5em 0.5em;
  padding: 0.5em;
}
.comments .headshot {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  width: 40px;
  line-height: 33px;
  font-size: 0.5rem;
  border: none;
  box-shadow: none;
}
.comments input {
  border: none;
  color: inherit;
  width: calc(100% - 45px);
  background: transparent;
}

#customize {
  display: inline-block;
}
#customize h2 {
  cursor: pointer;
}

#customize-form {
  display: none;
}

.radiogroup, .colorgroup {
  display: inline-block;
  vertical-align: middle;
  margin: 0.5em;
}

#postbutton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: mediumpurple;
  color: white;
  border-radius: 4px;
}

#vanderbook_name {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: black;
  border: none;
}

.result {
  background: white;
  text-decoration: none;
  display: inline-block;
  width: 280px;
  text-align: center;
  margin: 0.2em;
  padding: 0.4em;
  border-radius: 1em;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2666666667);
}
.result .headshot {
  margin: 0 auto;
}

.vid {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  padding: 0.2rem 0.5rem;
  margin: 0.3rem;
  background-color: lightslategray;
  color: white;
  border-radius: 0.5rem;
}

footer {
  text-align: center;
  font-size: 0.8em;
  padding: 1em;
}
footer a {
  color: inherit;
}

@media screen and (min-width: 700px) {
  nav.sidebar {
    width: 90px;
    height: 100vh;
    padding-top: 100px;
    border-right: 1px solid #ddd;
  }
  nav.sidebar ul {
    display: block;
  }
  nav.sidebar li {
    display: list-item;
  }
  nav.sidebar li span {
    display: block; /* override display:none */
  }
  #notificationsbutton {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    font-size: 1.2rem;
    width: 1.3em;
    height: 1.3em;
    padding: 0;
  }
  #notifications-menu,
  #settings-menu {
    width: 336px;
  }
  #search-form {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: -1px;
    border: 1px solid #ddd;
    border-left-color: white;
    border-radius: 0 0.3em 0.3em 0;
    box-shadow: 6px 3px 6px rgba(0, 0, 0, 0.1333333333);
  }
  main {
    padding: 2px 0 0 100px;
  }
  .postinner, .statusupdate {
    width: 90%;
    max-width: 800px;
  }
  #vanderchat {
    display: block;
    position: fixed;
    z-index: 5;
    bottom: 0;
    right: 0;
    transform: translatey(calc(100% - 40px));
    max-height: 90vh;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.1333333333);
    border-radius: 0.2em;
    overflow: auto;
  }
  #vanderchat:hover {
    transform: translatey(calc(100% - 42px));
  }
  #vanderchat.chatopen {
    transform: none;
    width: 300px;
  }
  #vanderchat.chatopen:hover {
    transform: none;
  }
  #vanderchat h3 {
    position: sticky;
    top: 0;
    background: mediumpurple;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0.3em;
    cursor: pointer;
    position: relative;
  }
  #vanderchat .pane {
    display: none;
    padding: 0.2em;
    font-size: 1rem;
    max-height: 75vh;
    overflow: auto;
  }
  #vanderchat .paneButton {
    font-size: 18px;
    padding: 0.2em 0.5em;
  }
  #vanderchat .paneButton:hover {
    background: rgba(102, 0, 255, 0.0666666667);
  }
  #vanderchat #chatbackbutton {
    display: none;
  }
  #profile-header .headshot {
    float: left;
    margin: 0 1rem 0 0;
  }
}/*# sourceMappingURL=vanderbook.css.map */