
/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


#root {
  display: inline-block;
  /*border: solid 1px black;*/
  /*border-bottom: black 1px dashed;*/
  line-height: 36px;

  position: relative;

  height: 36px;
  width: 100%;
  /*overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  */
  overflow-x: hidden;
  overflow-y: hidden;

}


#feed {
  width: max-content;
  display: inline-block;
  font-size: 16px;
  /*background-color: crimson;*/
  position: absolute;
  padding: 0 12px 0 12px;
}

#feed:hover {
  cursor: pointer;
}

.hitem {
  display: inline-block;
  box-sizing: border-box;
  padding: 0 5px 0 5px;
}

a.hitem {
  color: black;
}
a.hitem:hover {
  color: #009dd1;
}