.pl-2, .px-2 {
    padding-left: .5rem!important;
}
.pr-2, .px-2 {
    padding-right: .5rem!important;
}
.pt-0, .py-0 {
    padding-top: 0!important;
}
.poker_game_container {
	max-width: 500px;
	padding: 5px 0px 15px;
	width: 100%;
}
.game_poker_payout_tbl {
    margin: 10px 0px;
    padding: 5px 15px 5px;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #DDD;
}
.game_poker_payout_tbl .input_group {
	margin: 2px;
	height: 32px;
	padding: 1px 5px;
}
.game_poker_payout_tbl .input_group .text {
	font-size: 12px;
    text-transform: uppercase;
    padding: 5px 0px;
	color: #333;
	width: 100%;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}
.game_poker_board {
    margin: 10px 0px;
    padding: 0px 5px;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #DDD;
	display: flex; flex-wrap: nowrap;
}
.poker_card {
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    height: 126px;
    width: 80px;
    margin: 15px auto;
}


@media (max-width: 768px) {
	.poker_card {
		height: 120px;
		width: 75px;
	}
}
@media (max-width: 500px) {
	.poker_card {
		height: 100px;
		width: 62.5px;
	}
}
@media (max-width: 400px) {
	.poker_card {
		height: 80px;
		width: 50px;
	}
}
.poker_card .poker_card_inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.poker_card .poker_card_inner.flipped{
    transform: rotateY(180deg);
}
.poker_card .poker_card_inner.heart p,  .poker_card .poker_card_inner.diamond p{
    color: #f44336;
}
.poker_card .front {
    width: 100%;
    height: 100%;
    background: #FFF;
    box-shadow: 0 1px #DDD;
    padding: 10px;
    border: 1px solid #DDD;
    border-radius: 3px;
    position: absolute;
    backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.poker_card .front p {
    width: 40px;
    font-size: 35px;
    text-align: center;
    line-height: 25px;
    margin: 0px;
}
@media (max-width: 500px) {
	.poker_card .front p {
		width: 30px;
		font-size: 25px;
		line-height: 15px;
	}
}
.poker_card .front i {
    font-size: 22px;
    line-height: 27px;
}
@media (max-width: 500px) {
	.poker_card .front i {
		font-size: 14px;
		line-height: 20px;
	}
}
.poker_card .front .text {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    background: #3f51b5;
    height: 15px;
    line-height: 15px;
    text-align: center;
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 7px;
    border-radius: 3px;
    display: none;
}
@media (max-width: 500px) {
	.poker_card .front .text {
		font-size: 7px;
		height: 12px;
		line-height: 12px;
		bottom: 2px;
		border-radius: 2px;
	}
}
.poker_card .back {
    width: 100%;
    height: 100%;
    background: #00bcd4;
    box-shadow: 0 1px #DDD;
    padding: 10px;
    border-radius: 3px;
    border: 3px solid #FFF;
    position: absolute;
    transform: rotateY(180deg);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.poker_card .back div {
    background: #EEE;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
}
@media (max-width: 500px) {
	.poker_card .back div {
		height: 3px;
		width: 3px;
	}
}
.poker_card .back div:nth-child(1) {
    top: 10px;
    left: 10px;
}
.poker_card .back div:nth-child(2) {
    top: 10px;
    right: 10px;
}
.poker_card .back div:nth-child(3) {
    bottom: 10px;
    left: 10px;
}
.poker_card .back div:nth-child(4) {
    bottom: 10px;
    right: 10px;
}
.poker_card .poker_card_inner.picked .front {
    border-radius: 5px;
    border: 2px solid #03a9f4;
}
@media (max-width: 500px) {
	.poker_card .poker_card_inner.picked .front {
		border-radius: 3px;
		border: 1px solid #03a9f4;
	}
}
@media (max-width: 500px) {
	.poker_card .back i {
		font-size: 15px;
		top: calc(50% - 7.5px);
		left: calc(50% - 7.5px);
	}
}
.poker_card .back i {
    color: #EFEFEF;
    font-size: 25px;
    position: absolute;
    top: calc(50% - 12.5px);
    left: calc(50% - 12.5px);
}
.poker_card .poker_card_inner.picked .front .text {
    display: block;
}
.game_main .bet_btn {
    max-width: 350px;
    width: 100%;
    height: 50px;
    font-weight: bold;
    font-size: 13px;
    margin: 0px auto 10px;
    background: #03a9f4 !important;
    border: 1px solid #03a9f4 !important;
    opacity: 0.8;
    margin-top: 20px;
    color: #FFF;
}
.hand.highlight {
	border: 1px solid #2196F3 !important;
	background: #2196F3 !important;
}
.hand.highlight .text {
	color: #FFF;
}
.hand.highlight i{
	color: #FFF !important;
}
.prize.highlight {
	border: 1px solid #2196F3 !important;
	background: #2196F3 !important;
}
.prize.highlight .text {
	color: #FFF;
}

.hand.highlight2 {
	border: 1px solid #8BC34A !important;
	background: #8BC34A !important;
}
.hand.highlight2 .text {
	color: #FFF;
}
.hand.highlight2 i{
	color: #FFF !important;
}
.prize.highlight2 {
	border: 1px solid #8BC34A  !important;
	background: #8BC34A  !important;
}
.prize.highlight2 .text {
	color: #FFF;
}
.poker_card .poker_card_inner.blurred .front{
	opacity: 0.6;
}
.poker_card .poker_card_inner.highlight .front {
    border-radius: 5px;
    border: 2px solid #8BC34A;
}
@media (max-width: 500px) {
	.poker_card .poker_card_inner.highlight .front {
		border-radius: 3px;
		border: 1px solid #8BC34A;
	}
}
.poker_card .poker_card_inner.highlight.blurred .front {
	opacity: 1;
}
