.FourInARow #Player .Image {display: none;}
.FourInARow #World {background-image: url('graphics/games/fourinarow/fourinarow.jpg'); background-size: cover; background-color: blue;}

.FourInARow .ShieldItem {width: 49px; height: 49px; transition: none;}
    .FourInARow .ShieldItem .Body {border-radius: 30px;}
    .FourInARow .ShieldItem .Text {font-size: 22pt; padding-top: 6px; transition: opacity 0.5s;}
    .FourInARow .ShieldItem .Image {display: block; border: solid 1px black; opacity: 1; animation: none; background-image: url('graphics/entities/chipholder.png');}
    .FourInARow .ShieldItem .Explosion {display: block; box-sizing: border-box; animation: none; opacity: 0; transform: scale(1.2); transition: opacity 0.5s, transform 0.5s; background-image: url('graphics/entities/goldcoin.png'); background-size: contain; border: solid 1px black; border-radius: 40px;}
    .FourInARow .ShieldItem.Collected {pointer-events: none; cursor: default;}
        .FourInARow .ShieldItem.Collected .Explosion {display: block; opacity: 1 !important; transform: scale(1);}
    .FourInARow .ShieldItem.EnemyCollected {pointer-events: none; cursor: default;}
        .FourInARow .ShieldItem.EnemyCollected .Explosion {display: block; opacity: 1; background-image: url('graphics/entities/redcoin.png'); transform: scale(1);}
        .FourInARow .ShieldItem.EnemyCollected .Text {opacity: 0;}