/* *** GLOBALS *** */
.cf:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.cf { display: inline-block; }
* html .cf { height: 1%; } /* Hides from IE-mac \*/
.cf { display: block; }
.fleft { float: left; }
.fright { float: right; }

/* *** GAME LIST STYLE - SPECYFIC *** */
/* GAME ITEM */
.gameItem {
    padding: 10px 30px 10px 10px;
    border: 1px solid #d0ddec;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.gameItem .gameImage {
    float: left;
    width: 150px;
    height: 150px;
    margin: 0 10px 10px 0;
}
.gameItem .gameDescriptionWrapper {
    margin-left: 170px;
}

.gameItem .gameImage img {
    display: block;
    max-width: 100%;
    max-height: 150px;
}
.gameItem .gameItemFooter {
    border-top: 1px solid #d0ddec;
    /*margin: 10px 0;*/
    padding: 10px 0;
}
.gameItem .gameItemFooter > * {
    float: left;
}
.gameItem .gameItemFooter .gameGallery {
    /*width: 40%;*/
    width: 28%;
}
.gameItem .gameItemFooter .gameRequirements {
    /*width: 60%;*/
    width: 70%;
    margin-left: 1%;
}
/* GAME ITEM HEADER */
.gameItemHeader {
    text-align: right;
    font-weight: 700;
}
.gameItemHeader > * {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
.gameItemHeader > div:first-child {
    margin-left: 0;
}
.gameItemHeader .name {
    color: #4b4646;
    font-size: 20px;
}
.gameItemHeader .price {
    position: relative;
    color: #0d91d4;
    font-size: 20px;
    margin-left: 20px;
}
.gameItemHeader .price:before {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 6px;
    height: 9px;
    margin-top: -4px;
    background: url("/images/nk/arrow_blue.png") no-repeat 0 0;
    content: "";
}
.gameItemHeader .btnBuyNow {
    background: #3a2461;
    color: #fff;
    padding: 5px 30px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    -webkit-transition: background 0.2s ease-in;
    -moz-transition: background 0.2s ease-in;
    -ms-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
}
.gameItemHeader .btnBuyNow:hover {
    background: #48326f;
}
/* GAME ITEM INFO */
.gameInfo {
    width: 90%;
    line-height: 1.5;
    font-size: 10px;
    margin-top: 15px;
}
.gameInfo > * {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}
.gameInfo > * > * {
    display: inline-block;
    vertical-align: middle;
}
.gameDescription {
    font-size: 10px;
    line-height: 1.4;
    margin: 15px 0 20px 0;
}

/* GAME ITEM THUMB GALLERY */
.gameGallery {}
.gameGallery a {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 5px;
}
.gameGallery img {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 5px;
}

/* GAME ITEM Requirements */
.gameRequirements {

    color: #333;
}
.gameRequirements > div {
    font-size: 10px;
    font-weight: 400;
    margin: 1px 0;
}
.gameRequirements > div > * {
    /*display: inline-block;*/
    /*vertical-align: middle;*/
    display: block;
}
.gameRequirements > div > strong {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-left: 10px;
    float: left;
    vertical-align: middle;
}
.gameRequirements > div > strong img {
    width: 15px;
}
.gameRequirements .name {
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
}
.gameRequirements > div[class*="req-"]{
    display: inline-block;
    vertical-align: top;
    width: 49%;
}
.gameRequirements .req-left {}
.gameRequirements .req-right {}
