.game_categories {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.game_categories > .game_category {
    width: 200px;
    height: 200px;
    border: none;
    display: inline-block;
    position: relative;
    text-align: center;
}

.game_categories > .game_category:last-child {
    margin-right: 0;
}

.game_categories > .game_category:hover {
    cursor: pointer;
}

.game_categories > .game_category > .img {
    position: absolute;
    top: 0;
    left: 0;
}

.game_categories > .game_category > .info {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1.0;
}

.game_categories > .game_category:hover > .info {
    display: block;
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.game_categories > .game_category > .stub {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.game_categories > .game_category > .discount {
    position: absolute;
    top: 13px;
    right: -21px;
    width: 100px;
    height: 30px;
    background: url("../img/sale_full.gif") no-repeat;
    background-size: contain;
    transform: rotate(45deg);
    padding-top: 2px;
    color: yellow;
    line-height: 1.2;
}

.game_categories > .game_category > .discount:before {
    content: "-";
}

.game_categories > .game_category > .discount:after {
    content: "%";
}

.game_categories > .game_category > .info button {
    /*margin-top: 100px;*/
    margin-top: 140px;
}

.game_categories > .game_category > .img > img {
    width: 100%;
    height: 100%;
    border: none;
}

.game_categories > .game_category > .spins {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    border-radius: 50%;
    color: whitesmoke;
    background-color: rgba(0, 0, 0, 0.7);
    font-weight: 900;
    font-size: 18px;
}


.items-view {
    display: flex;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.items-view > .item-view {
    position: relative;
    width: 154px;
    height: 154px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.items-view > .item-view img {
    width: 154px;
    border: none;
    outline: none;
}

.items-view > .item-view > .title {
    position: absolute;
    bottom: 7px;
    left: calc(50% - 68px);
    width: 136px;
    height: 22px;
    font-weight: 500;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-top: 2px;
    line-height: 1.2;
}

.items-view > .item-view > .g {
    color: yellow;
    box-shadow: 0 0 10px yellow;
}

.items-view > .item-view > .g:after {
    content: " G";
    color: yellow;
    font-weight: bolder;
}

.items-view > .item-view > .d {
    color: saddlebrown;
    box-shadow: 0 0 10px saddlebrown;
}

.items-view > .item-view > .d:after {
    content: " D";
    color: saddlebrown;
    font-weight: bolder;
}