.baccarat_game_container {
	max-width: 500px;
	padding: 5px 0px 15px;
	width: 100%;
}
.bc_board {
    margin: 10px 0px;
    padding: 0px 5px;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #DDD;
	position: inherit;
}
.bc_result_multiplier {
	background-color: rgba(255,255,255,.6);
    bottom: 0;
    font-size: 6rem;
    font-weight: 700;
    left: 0;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: opacity 300ms ease-in-out;
    z-index: 10;
    height: 100%;
	border-radius: 5px;
}
.bc_result_multiplier.showing {
    opacity: 1;
}
.bc_result_multiplier.showing span {
    transform: scale(1);
}
.bc_result_multiplier span:nth-child(1) {
    top: calc(50% - 0.5em);
}
.bc_result_multiplier span {
    left: 0;
    position: absolute;
    right: 0;
    transform: scale(0);
    transition: transform 300ms ease-in-out;
    color: #8bc34a;
}
.bc_board .bc_deck {
	position: absolute;
    top: 15px;
    right: auto;
    bottom: auto;
    left: 20px;
    z-index: 0;
    box-shadow: 0px 3px 10px 1px rgb(0 0 0 / 35%);
	border-radius: 3px;
}
.bc_board .bc_row {
	display: inline-flex;
	flex-wrap: nowrap;
	margin-left: 50%;
	height: 95px;
}
.bc_board .bc_summary {
	height: 20px;
	width: 100px;
	border-radius: 15px;
	margin: 10px auto;
	background: #9e9e9ec2;
	color: #FFF;
	text-align: center;
	font-size: 12px;
	line-height: 20px;
}
.bc_board .bc_summary.win {
	background: #8bc34a;
}
.bc_board .bc_summary.lose {
	background: #ff5722;
}
.bc_board .bc_summary.tie {
	background: #03a9f4;
}

.bc_board .bc_payout {
	text-align: center;
	line-height: 20px;
    width: 200px;
    height: 40px;
	padding: 10px;
    background: #ebebe4;
    margin: 40px auto;
    border-radius: 10px;
    border: 1px solid #CCC;
	font-size: 12px;
    text-transform: uppercase;
	color: #777;
	font-style: italic;
}
.bc_board .bc_card {
    border-radius: 1px;
    cursor: pointer;
    position: relative;
    height: 95px !important;
    width: 60px !important;
    transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
}

.bc_board .bc_row .bc_card {
	margin-left: -20px !important;
}

.bc_board .bc_card .bc_card_inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
	border: 1px solid #DDD !important;
	border-radius: 3px;
}
.bc_board .bc_row.win .bc_card .bc_card_inner{
	border: 1px solid #8bc34a !important;
}
.bc_board .bc_row.tie .bc_card .bc_card_inner{
	border: 1px solid #03a9f4 !important;
}
.bc_board .bc_card .bc_card_inner.flipped{
    transform: rotateY(180deg);
}
.bc_board .bc_card .bc_card_inner.heart p,  .bc_card .bc_card_inner.diamond p{
    color: #f44336;
}
.bc_board .bc_card .front {
    width: 100%;
    height: 100%;
    background: #FFF;
    padding: 10px;
    border: none !important;
    border-radius: 3px;
    position: absolute;
    backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.bc_board .bc_card .front p {
    width: 25px;
    font-size: 22px;
    text-align: center;
    line-height: 18px;
    margin: 0px;
}
.bc_board .bc_card .front i {
    font-size: 15px;
    line-height: 18px;
}
.bc_board .bc_card .back {
    width: 100%;
    height: 100%;
    background: #00bcd4;
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #FFF;
    position: absolute;
    transform: rotateY(180deg);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.bc_board .bc_card .back div {
    background: #EEE;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    position: absolute;
}
.bc_board .bc_card .back div:nth-child(1) {
    top: 10px;
    left: 10px;
}
.bc_board .bc_card .back div:nth-child(2) {
    top: 10px;
    right: 10px;
}
.bc_board .bc_card .back div:nth-child(3) {
    bottom: 10px;
    left: 10px;
}
.bc_board .bc_card .back div:nth-child(4) {
    bottom: 10px;
    right: 10px;
}
.bc_board .bc_card .back i {
    color: #EFEFEF;
    font-size: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}