
.rtp__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.game-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 8px rgb(0 0 0/90%);
  box-shadow: 0 0 8px var(--GameItemShadow);
  position: relative;
  width: 100%;
  height: 130px;
  background: transparent;
}
.rtp-box {
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  color: #fff;
}
.rtp-box .text {
    font-weight: 600;
    margin-right: 4px;
}
.my-auto {
    margin-top: auto!important;
    margin-bottom: auto!important;
}
.text-12 {
    font-size: 12px!important;
}
.ml-1 {
    margin-left: 4px!important;
}
.game-item .img-game {
    border-radius: 8px;
}
.game-item .game-name {
    height: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background: rgba(0,0,0,.6);
    color: #fff;

}
.game-item .game-name {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-radius: 0 0 8px 8px;
}
.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 5px;
    font-size: 16px;
}