#feed-row-cominginhot {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  max-width: 100%;
  height: 150px;
}

.level-item {
  display: inline-block;
  vertical-align: top;
  width: 160px;
  height: 128px;
  margin-right: 12px;
  background-color: black;
  overflow: hidden;
  padding-bottom: 4px;
  border: 2px solid gray;
  position: relative;
}

.level-thumb {
  width: 100%;
  height: 100%;
  display: block;
  background-color: white;
}

.level-thumb:hover {
  width: 110%;
  height: 110%;
  display: block;
  background-color: white;
}

.level-thumb:active {
  width: 105%;
  height: 105%;
  display: block;
  background-color: white;
  filter: brightness(0.9);
}

.level-name, .level-author {
  position: absolute;
  top: 0px;
  text-align: left;
  text-wrap: wrap;
  background-color: rgba(255,255,255,0.75);
  padding: 2px 4px;
  width: 100%;
  color: black;
}

.level-name {
  font-size: 13px;
}

.level-author {
  font-size: 10px;
  text-align: right;
  top: 115px;
  right: 0px;
  background-color: black;
  color: white;
}

