.grid-table{width:350px;height:350px;display:flex;flex-flow:row wrap}.grid-table .cell{margin:5px;background-color:rgba(0,0,102,.15);border-radius:5px;cursor:pointer}@media screen and (max-width:350px){.grid-table{width:300px;height:300px}}.visual-memory-game-wrap{padding:0 30px}.visual-memory-game-wrap .grid-table .show{animation:showCell 2s linear}.visual-memory-game-wrap .grid-table .right-click{animation:rotateCell .3s linear;background-color:#fff}.visual-memory-game-wrap .grid-table .wrong-click{animation:shakeCell .3s linear;background-color:rgba(0,0,0,.5019607843)}@keyframes showCell{0%{background-color:rgba(0,0,102,.15)}30%,80%{background-color:#fff}to{background-color:rgba(0,0,102,.15)}}@keyframes rotateCell{0%{transform:rotateX(0deg)}to{transform:rotateX(180deg)}}@keyframes shakeCell{0%{transform:translate(0)}33%{transform:translate(5px)}to{transform:translate(-5px)}}