.matchings {
    position:relative;
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    border-radius: 1em;
    margin: 10px;
    padding: 1em;
}
.matchings .disabled.show{
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.matchings .text-left h3 {
    font-size: 33px;
    left: 50%;
    margin-top: 0;
    position: absolute;
    top: 20px;
    -moz-transform: translateX(-50%);/* FF3.5+ */
    -webkit-transform: translateX(-50%);/*Saf3.1+, Chrome*/
    -o-transform: translateX(-50%);/* Opera 10.5 */
    -ms-transform: translateX(-50%);/* IE 9 */
    transform: translateX(-50%);
    display:none;
}
.game_board {
    max-width: 480px;
    margin-left:auto;
    margin-right:auto;
    perspective: 600px;
}


.game_board .card {
    display: inline-block;
    width: 21%;
    text-align: center;
    margin: 2%;
    line-height: 25px;
    vertical-align:top;
    position:relative;
    border:none;
    box-shadow: 2px 2px 4px #cfcbc3, 0 0 0 1px #cfcbc3;
    border-radius: 10px;
    overflow: hidden;
    cursor:pointer;
    padding-bottom:21%;
    font-size:0px;
}
.game_board .card:hover {

}
.game_board .card.selected {
    z-index:3;
}
.game_board .card > span {
    left:0px;
    top:0px;
    position:absolute;
    border-radius: 10px;
}
.game_board .card span.textBlock {
    height:100%;
    width:100%;
    background:#fff;
    z-index:2;
    display:block;
    font-size:16px;
    font-weight:bold;
    line-height:1;
}
.game_board .card span.textBlock.fs60 {
    font-size:60px;
}
.game_board .card[id^="englishWord"] span.textBlock {
    background-color:#820808;
    color:#fff;
}
.game_board .card span.textBlock span {
    position:absolute;
    left:50%;
    top:50%;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display:block;
    word-break: break-word;
    hyphens: auto;
    width: 100%;
    padding: 2px;
}
.game_board .card span.imgBlock {
    height:100%;
    width:100%;
    -moz-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform:rotateY(-180deg);
    transform: rotateY(-180deg);
    background:#fff;
    z-index:1;

}
.game_board .card span.imgBlock img {
    height: auto;
    width: 100%;
    max-width:100%;
    border-radius: 10px;
}
.game_board .card.showImg {
    opacity: 0.5;
}
.game_board .card.showImg span.textBlock {
    display:none;
}
.game_board .card.showImg span.textBlock {
    z-index:1;
}
.game_board .card.showImg span.imgBlock {
    z-index:2;
}
.buttonsBlock,
.volumenBlock {
    max-width: 480px;
    margin-left:auto;
    margin-right:auto;
}
.matchings .buttonsBlock {
    text-align: center;
    margin-top:20px;
}
.matchings .buttonsBlock label {
    font-size: 10px;
    margin-right: 15px;
}
.matchings .buttonsBlock label:last-child {
    margin-right:0px;
}
.matchings .buttonsBlock .btn {
    border-radius: 5em;
    padding: .1em 1.2em !important;
    border-width: 0;
    margin-bottom: 5px;
}
@media screen and (max-width:500px) {
    .game_board .card span.textBlock {
        font-size:3vw;
    }
}
