﻿
body {
    background-color: #2f003e;
    padding: 0px;
    margin: 0px;
}

/*  main {
        padding: 0px;
        margin: 0px;
        width: 100%;
    }*/

.inventory-update {
    width: 100%;
    gap: 6px;
}
.inventory-container {
    width: 100%;
    gap: 6px;
}
.inventory-container-hdr {
    color: #ffa533;
    font-size: 1.2em;
    width: 98%;
    text-align: center;
    background-color: #711a8d;
    border-radius: 10px;
}
.game-wrapper {
    border-color: #333;
    background-color: #711a8d;
    padding: 5px;
    justify-content: flex-start;
    align-items: start;
    border-radius: 10px;
    gap: 2px;
    width: 48%;
    max-width: 48%
}

.row-wrapper {
    width: 100%;
    justify-content: flex-start;
    align-items: center
}

.game-category {
    padding-right: 5px;
    color: #ffa533;
    font-weight: 500;
    font-size: 1.1em;
    align-items: center;
    justify-content: flex-end;
}

.game-cat-wrapper {
    border: 1px solid #54006f;
    border-radius: 10px;
    padding: 4px;
    background-color: #54006f;
    align-items: center
}

.game-items {
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    color: yellow !important;
    font-size: 1em;
    align-items: center;
    justify-content: flex-start;
}
.highlight-item {
    color: white;
    border: 1px solid white;
    border-radius: 7px;
    padding-left: 4px;
    padding-right: 4px
}

.game-logo {
    width: 100%;
    justify-content: flex-start;
}

    .game-logo img {
        width: 100px;
        height: auto;
    }/*
#browserinf {
    width: auto;
    height: 22px;
    background-color: #ccc;
    color: #222;
    margin-left: 5px;
    font-size: 20px;
    text-align: center;
    position:absolute;
    z-index:5000;
    top:0;
    left:0;
    display:block;
}*/
@media only screen and (min-width:1201px) and (max-width:5000px) {
    .game-wrapper {
        width: 32%;
        max-width: 32%
    }

    .inventory-update {
        width: 98%;
    }
}
@media only screen and (min-width:841px) and (max-width:1200px) {
    .game-wrapper {
        width: 49%;
        max-width: 49%
    }
    .inventory-update {
        width: 98%;
    }
}
@media only screen and (min-width:0px) and (max-width:840px) {
    .game-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .inventory-update {
        width: 100%;
    }
}