.skeleton {
 animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.gameItems__wrap{
 overflow: inherit !important;
}

.gameItems-view > .skeleton{
 max-height: 250px;
 height: 200px !important;
}

.gameItems-control > li > a{
 width: 100%;
 height: 100%;
 display: block;
}

.game-name-content{
  position: relative;
  height: 16px;
}

.game-name-content .game-name-custom{
  position: absolute;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
    width: calc(100% - 12px);
}