:root {
  --colorDarkRed: #190004;
  --colorYellow: #e49c16;
  --colorRed: #a01e06;
  --boxShadow: 2px 2px 10px var(--colorRed), -2px -2px 10px var(--colorRed);
}
* {
  padding: 0;
  margin: 0;
}
#scrollBody {
  height: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: translate3d(0, 0, 0);
  justify-content: space-between;
}

#scrollBody .item {
  min-width: 175px;
  height: 260px;
  background: url(../images/backgrounds/lastrares-xmasbg.png);
  background-position: top;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  box-shadow: var(--boxShadow);
  transition: 250ms all ease-in-out;
}
#scrollBody .item::before {
  content: " ";
  position: absolute;
  height: 60%;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--colorDarkRed);
  z-index: -1;
  opacity: 0.8;
}
#scrollBody .item::after {
  content: " ";
  position: absolute;
  height: 40%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--colorDarkRed);
  z-index: -1;
}
#scrollBody .item:hover {
  transform: scale(1.05);
  box-shadow: 1px 1px 5px var(--colorHoverGreen),
    -1px -1px 5px var(--colorHoverGreen);
}
#scrollBody .item .itemImg {
  margin: 0 auto 0 auto;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
}
#scrollBody .item .name {
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  bottom: 50px;
  text-align: center;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollBody .item .price,
#scrollBody .item .history {
  font-size: 11px;
  position: absolute;
  color: #fff;
  padding: 3px 5px;
  border-radius: 3px;
  font-weight: 700;
}
#scrollBody .item .history {
  bottom: 10px;
  right: 10px;
  background-color: green;
}
#scrollBody .item .price {
  left: 10px;
  bottom: 10px;
  background-color: red;
}
#scrollBody .item .price img {
  width: 11px;
  position: relative;
  margin-bottom: -2px;
  margin-left: 1px;
}
#scrollBody .item hr {
  position: absolute;
  bottom: 45px;
  left: 5px;
  right: 5px;
  opacity: 0.5;
  border-color: var(--colorRed);
  border-width: 2px;
}
