/* game filters */
.grayscale {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

/* big dialog */
.dialog-joker-button {
	padding-left: 24px !important;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 16px center;
    background-image: url(../../../images/suits/n.svg);
}

/* handy dialog */
.handy-dialog .big-dialog-inner {
	margin-bottom: 130px;
}

.handy-dialog {
	align-items: end !important;
	align-items: flex-end !important;
}

.handy-dialog-transparent .big-dialog-inner {
	background-color: transparent !important;
}

.handy-dialog-transparent .big-dialog-inner {
	margin-bottom: 130px;
}

.handy-dialog-transparent {
	align-items: end !important;
	align-items: flex-end !important;
}
/* handy dialog */

/* callCards dialog */
.call-cards-dialog .big-dialog-inner {
	margin-bottom: 135px;
}

.call-cards-dialog {
	background-color: rgba(0, 0, 0, 0.3) !important;
	align-items: end !important;
	align-items: flex-end !important;
}

.call-cards-dialog .big-dialog-inner {
	background-color: transparent !important;
}

.call-cards-dialog .big-dialog-inner {
	margin-bottom: 120px;
}

.call-cards-dialog {
	align-items: end !important;
	align-items: flex-end !important;
}
/* callCards dialog */

/* game cards */
.game-cards .card-item {
	position: absolute;
}


@-webkit-keyframes animateSuitRequire {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

@keyframes animateSuitRequire {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

.game-cards .card-item[card-suit-require="c"]::before,
.game-cards .card-item[card-suit-require="d"]::before,
.game-cards .card-item[card-suit-require="h"]::before,
.game-cards .card-item[card-suit-require="s"]::before,
.game-cards .card-item[card-suit-require="cx"]::before,
.game-cards .card-item[card-suit-require="dx"]::before,
.game-cards .card-item[card-suit-require="hx"]::before,
.game-cards .card-item[card-suit-require="sx"]::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background-size: 16px 16px;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: center center;

	-webkit-animation: animateSuitRequire 0.7s linear infinite alternate;
	animation: animateSuitRequire 0.7s linear infinite alternate;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.game-cards .card-item[card-suit-require="c"]::before {
	background-image: url(../../../images/suits/c.svg?v2);
}

.game-cards .card-item[card-suit-require="d"]::before {
	background-image: url(../../../images/suits/d.svg?v2);
}

.game-cards .card-item[card-suit-require="h"]::before {
	background-image: url(../../../images/suits/h.svg?v2);
}

.game-cards .card-item[card-suit-require="s"]::before {
	background-image: url(../../../images/suits/s.svg?v2);
}

.game-cards .card-item[card-suit-require="cx"]::before {
	background-image: url(../../../images/suits/outline/c.svg?v2);
}

.game-cards .card-item[card-suit-require="dx"]::before {
	background-image: url(../../../images/suits/outline/d.svg?v2);
}

.game-cards .card-item[card-suit-require="hx"]::before {
	background-image: url(../../../images/suits/outline/h.svg?v2);
}

.game-cards .card-item[card-suit-require="sx"]::before {
	background-image: url(../../../images/suits/outline/s.svg?v2);
}

.game-cards .card-item[card-suit-require="xx"],
.game-cards .card-item[card-suit-require="cx"],
.game-cards .card-item[card-suit-require="dx"],
.game-cards .card-item[card-suit-require="hx"],
.game-cards .card-item[card-suit-require="sx"] {
	opacity: 0.8;

	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

/* table cards */
.game-cards .card-item[card-location="table"] {
    position: absolute;
    left: 4px;
    top: 50%;
    width: 50px !important;
    height: 75px !important;
    margin-top: 68px;
}

.game-cards .card-item[card-location="table"][card-visible="yes"] {
	margin-left: 24px;
	z-index: -1;

	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* player cards */
.game-cards .card-item[card-owner="player"][card-location="hand"] {
	left: 50%;
	top: 100%;
	cursor: pointer;

	-webkit-transform: translate(0%, -100%);
	transform: translate(0%, -100%);
}

.game-cards .card-item[card-owner="player"][card-location="hand"][card-selected="yes"] {
	margin-top: -10px;
}

.game-cards .card-item[card-owner="player"][card-location="hand"]:hover {
	opacity: 0.8;
}

.game-cards .card-item[card-owner="player"][card-location="middle"] {
	margin-top: 0px;
	margin-left: 0px;
	top: 50% !important;
	left: 50% !important;
	
	-webkit-transform: translate(-50%, 20%);
    transform: translate(-50%, 20%);
}


/* opponent 1 cards */
.game-cards .card-item[card-owner="opponent-1"][card-location="hand"] {
	opacity: 0.6;
	left: 0px;
	top: 50%;

	-webkit-transform: translate(20%, -50%) rotate(90deg) scale(0.7);
	transform: translate(20%, -50%) rotate(90deg) scale(0.7);
}

.game-cards .card-item[card-owner="opponent-1"][card-location="middle"] {
	margin-left: 0px;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
}

/* opponent 2 cards */
.game-cards .card-item[card-owner="opponent-2"][card-location="hand"] {
	opacity: 0.6;
	left: 50%;
	top: 0px;

	-webkit-transform: translate(-50%, -10%) scale(0.7);
	transform: translate(-50%, -10%) scale(0.7);
}

.game-cards .card-item[card-owner="opponent-2"][card-location="middle"] {
	margin-top: 0px;
	margin-left: 0px;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(-50%, -120%);
    transform: translate(-50%, -120%);
}

/* opponent 3 cards */
.game-cards .card-item[card-owner="opponent-3"][card-location="hand"] {
	opacity: 0.6;
	left: 100%;
	top: 50%;

	-webkit-transform: translate(-120%, -50%) rotate(90deg) scale(0.7);
	transform: translate(-120%, -50%) rotate(90deg) scale(0.7);
}

.game-cards .card-item[card-owner="opponent-3"][card-location="middle"] {
	margin-top: 0px;
	margin-left: 0px;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

/* middle cards */
@-webkit-keyframes animateWinner0 { from { margin-top: 0px; opacity: 1; } to { margin-top: 200px; opacity: 0; } }
@keyframes animateWinner0 { from { margin-top: 0px; opacity: 1; } to { margin-top: 200px; opacity: 0; } }

.game-cards .card-item[card-location="middle"][card-winner-i="0"] {
	-webkit-animation: animateWinner0 1s ease-in 1s 1 normal forwards;
	animation: animateWinner0 1s ease-in 1s 1 normal forwards;
}

@-webkit-keyframes animateWinner1 { from { margin-left: 0px; opacity: 1; } to { margin-left: -200px; opacity: 0; } }
@keyframes animateWinner1 { from { margin-left: 0px; opacity: 1; } to { margin-left: -200px; opacity: 0; } }

.game-cards .card-item[card-location="middle"][card-winner-i="1"] {
	-webkit-animation: animateWinner1 1s ease-in 1s 1 normal forwards;
	animation: animateWinner1 1s ease-in 1s 1 normal forwards;
}

@-webkit-keyframes animateWinner2 { from { margin-top: 0px; opacity: 1; } to { margin-top: -200px; opacity: 0; } }
@keyframes animateWinner2 { from { margin-top: 0px; opacity: 1; } to { margin-top: -200px; opacity: 0; } }

.game-cards .card-item[card-location="middle"][card-winner-i="2"] {
	-webkit-animation: animateWinner2 1s ease-in 1s 1 normal forwards;
	animation: animateWinner2 1s ease-in 1s 1 normal forwards;
}

@-webkit-keyframes animateWinner3 { from { margin-left: 0px; opacity: 1; } to { margin-left: 200px; opacity: 0; } }
@keyframes animateWinner3 { from { margin-left: 0px; opacity: 1; } to { margin-left: 200px; opacity: 0; } }

.game-cards .card-item[card-location="middle"][card-winner-i="3"] {
	-webkit-animation: animateWinner3 1s ease-in 1s 1 normal forwards;
	animation: animateWinner3 1s ease-in 1s 1 normal forwards;
}

.game-cards .card-item[card-location="middle"][card-active="no"] {
	z-index: -1;
}

/* game cards */

/* card item */
.card-item {
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	background-color: rgba(0, 0, 0, 0.2);
	vertical-align: middle;
	text-align: center;

	-webkit-transition: left 0.2s linear, top 0.2s linear, transform 0.2s linear, margin 0.2s linear;
	transition: left 0.2s linear, top 0.2s linear, transform 0.2s linear, margin 0.2s linear;

	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.card-item[card-reset-transition="yes"] {
	-webkit-transition: none !important;
	transition: none !important;
}

/* card item */

/* game score */
.game-score {
	position: absolute;
    left: -5px;
    top: 50%;
    width: 56px;
    height: 64px;
    line-height: 56px;
    text-align: center;
    background-image: url(../../../images/icon-cards-back.png?2);
    background-size: 56px;
    background-repeat: no-repeat;
    background-position: center center;
    color: #ffffff;
    font-size: 18px;
}
/* game score */

/* user score */
.user-info[user-type="opponents"] {
	width: 72px;
	height: 72px;
}

.user-info[user-type="opponents"][user-i="0"] {
	bottom: -26px;
	left: 50%;
	margin-left: -36px;
}

.user-info[user-type="opponents"][user-i="1"] {
	top: 50%;
	left: -10px;
	margin-top: -36px;
}

.user-info[user-type="opponents"][user-i="2"] {
	top: -10px;
	left: 50%;
	margin-left: -36px;
}

.user-info[user-type="opponents"][user-i="3"] {
	top: 50%;
	right: -10px;
	margin-top: -36px;
}

.user-info[user-type="opponents"][user-action-i="3"]::after {
	content: "D";
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #ffee01;
    color: #413f27;
    font-size: 14px;
    font-weight: bold;
    z-index: +1;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.user-info[user-type="opponents"][user-action-i="3"][user-i="1"]::after {
	right: -8px;
    top: 10px;
}

.user-info[user-type="opponents"][user-action-i="3"][user-i="2"]::after {
	left: 50%;
    bottom: -8px;
	margin-left: -10px;
}

.user-info[user-type="opponents"][user-action-i="3"][user-i="3"]::after {
	left: -8px;
    top: 10px;
}

.user-info[user-type="opponents"][user-action-i="3"][user-i="0"]::after {
	left: 50%;
    top: -8px;
	margin-left: -10px;
}

.user-info[user-type="opponents"] div[user-content="temp_score"] {
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: rgb(0, 0, 0, 0.75);
	color: #00d748;
	font-size: 22px;
	font-weight: bold;
	height: 72px;
	line-height: 72px;
	width: 72px;
	text-align: center;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.user-info[user-type="opponents"][user-i="0"] div[user-content="temp_score"] {
	line-height: 56px;
}

.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="1"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="2"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="3"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="4"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="5"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="6"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="7"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="8"],
.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="9"] {
	display: block;
}

.game-area[item-user-mandatory="callCards"] .user-info[user-type="opponents"] div[user-content="temp_score"][item-want="-"] {
	display: block;
	font-size: 17px;
	color: #ffee01;
}

.user-info[user-type="opponents"] div[user-content="progress"] {
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.user-info[user-type="opponents"] div[user-content="score"] {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 40px;
	height: 30px;
	line-height: 30px;
	margin-top: -20px;
    margin-left: 16px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	white-space: nowrap;
	z-index: +1;

	-webkit-border-radius: 10px;
	border-radius: 10px;
}

@keyframes scoreAnimationPlus {
	0% {
		transform: scale(1);
		background-color: rgba(0, 0, 0, 0.8);
	}

	50% {
		transform: scale(1.5);
		background-color: rgb(0, 255, 115);
	}

	100% {
		transform: scale(1);
		background-color: rgba(0, 0, 0, 0.8);
	}
}

@keyframes scoreAnimationMinus {
	0% {
		transform: scale(1);
		background-color: rgba(0, 0, 0, 0.8);
	}

	50% {
		transform: scale(1.5);
		background-color: rgb(255, 234, 0);
	}

	100% {
		transform: scale(1);
		background-color: rgba(0, 0, 0, 0.8);
	}
}

.user-info[user-type="opponents"][user-i="0"] div[user-content="score"][item-status="+"],
.user-info[user-type="opponents"][user-i="0"] div[user-content="score"][item-status="-"] {
    animation-duration: 0.7s;
    animation-direction: normal;
    animation-iteration-count: 1;
	animation-delay: 0.5s;
    animation-timing-function: linear;
}

.user-info[user-type="opponents"][user-i="0"] div[user-content="score"][item-status="+"] {
	animation-name: scoreAnimationPlus;
}

.user-info[user-type="opponents"][user-i="0"] div[user-content="score"][item-status="-"] {
	animation-name: scoreAnimationMinus;
}


.user-info[user-type="opponents"][user-i="0"] div[user-content="score"] {
	margin-left: -30px;
    margin-top: 12px;
}

.user-info[user-type="opponents"][user-i="2"] div[user-content="score"] {
	margin-left: -30px;
    margin-top: 24px;
}

.user-info[user-type="opponents"] div[user-content="total_score"] {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 40px;
	height: 30px;
	line-height: 30px;
	margin-top: 62px;
    margin-left: 16px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	z-index: +1;

	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.user-info[user-type="opponents"][user-i="0"] div[user-content="total_score"] {
	margin-left: 62px;
    margin-top: 12px;
}

.user-info[user-type="opponents"][user-i="2"] div[user-content="total_score"] {
	margin-left: 62px;
    margin-top: 24px;
}

.user-info[user-type="opponents"][user-extra="bonus"] div[user-content="total_score"] {
	background-color: rgba(0, 215, 72, 0.8);
}

/* user score */

/* user bot */
.user-info[user-type="opponents"] div[user-content="bot"] {
	display: none;
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../../images/ninja-icon.png);

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.user-info[user-type="opponents"] div[user-content="bot"][item-visible="yes"] {
	display: block;
}

.bot-dialog-transparent .big-dialog-inner {
	background-color: transparent !important;
	margin-bottom: 130px !important;
}

.bot-dialog-transparent .big-dialog-title {
	color: #b2b2b2 !important;
	line-height: normal !important;
}

.bot-dialog-transparent .big-dialog-footer {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.bot-dialog-transparent {
	z-index: 10000000 !important;
	background-color: rgba(0, 0, 0, 0.8) !important;
	align-items: end !important;
	align-items: flex-end !important;
}
/* user bot */

/* dialog suit */
.big-dialog .suit-icon {
	display: inline-block;
	width: 80px;
	height: 30px;
	padding-top: 50px;
	font-size: 15px;
	background-size: 20px 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	color: #525252;
	cursor: pointer;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.big-dialog .suit-icon:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.big-dialog .or::after {
	content: 'ან';
	display: block;
	width: 50px;
    height: 50px;
    line-height: 50px;
	margin-top: -28px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: #040c15;
    border: 1px solid #040c15;
    font-size: 18px;
    color: #ffffff;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.big-dialog .or::before {
	content: '';
	display: block;
	border-top: 7px solid #040c15;
}
/* dialog suit */

/* trump suit */
.game-trump-suit {
	display: none;
	position: absolute;
    left: 4px;
    top: 50%;
    margin-top: -128px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.3);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.game-trump-suit[item-suit="c"] {
	display: block;
	background-image: url(../../../images/suits/c.svg);
}

.game-trump-suit[item-suit="d"] {
	display: block;
	background-image: url(../../../images/suits/d.svg);
}

.game-trump-suit[item-suit="h"] {
	display: block;
	background-image: url(../../../images/suits/h.svg);
}

.game-trump-suit[item-suit="s"] {
	display: block;
	background-image: url(../../../images/suits/s.svg);
}

.game-trump-suit[item-suit="n"] {
	display: block;
	background-image: url(../../../images/suits/n.svg);
}
/* trump suit */

/* cards more/less */
.cards-more-less {
	display: none;
	position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -134px;
    font-size: 14px;
    font-weight: bold;
}

.cards-more-less[item-cards="-1"],
.cards-more-less[item-cards="-2"],
.cards-more-less[item-cards="-3"],
.cards-more-less[item-cards="-4"],
.cards-more-less[item-cards="-5"],
.cards-more-less[item-cards="-6"],
.cards-more-less[item-cards="-7"],
.cards-more-less[item-cards="-8"],
.cards-more-less[item-cards="-9"] {
	display: block;
	color: #f30909;
}

.cards-more-less[item-cards="+1"],
.cards-more-less[item-cards="+2"],
.cards-more-less[item-cards="+3"],
.cards-more-less[item-cards="+4"],
.cards-more-less[item-cards="+5"],
.cards-more-less[item-cards="+6"],
.cards-more-less[item-cards="+7"],
.cards-more-less[item-cards="+8"],
.cards-more-less[item-cards="+9"] {
	display: block;
	color: #0dcc67;
}
/* cards more/less */

/* call cards */
.call-cards-block {
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.2);

	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.call-cards-block::after {
	position: absolute;
	content: "";
    border-width: 16px;
    border-style: solid;
	margin-left: -16px;
	border-color: transparent;
    border-top-color: rgba(0, 0, 0, 0.2);
}

.call-cards-number {
	display: inline-block;
	background-color: #2e997b;
    color: #ffffff;
	text-align: center;
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin: 5px;
	font-size: 18px;
	vertical-align: middle;

	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.call-cards-number[item-active="yes"] {
	cursor: pointer;
}

.call-cards-number[item-active="no"] {
	background-color: #1a1919;
}

.call-cards-number[item-color="red"] {
	background-color: #1a1919;
}

.call-cards-number[item-active="yes"]:hover {
	background-color: #248f70;
}

.call-cards-number[item-value="0"] {
	width: 170px;

	-webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}
/* call cards */

/* joker table */
.joker-table-icon {
	position: absolute;
	right: 4px;
	top: 50%;
	margin-top: 72px;
	width: 48px;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.3);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;
	background-image: url(../../../images/icon-paper.svg);
	cursor: pointer;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.joker-table-finish-button {
	padding-left: 30px !important;
	background-repeat: no-repeat;
	background-position: 16px center;
	background-size: 20px 20px;
	background-image: url(../../../images/icon-paper.svg);
}

.joker-table-dialog .big-dialog-inner {
	width: 100%;
}

.joker-table {
    border-collapse: collapse;
    font-size: 15px;
}

.joker-table thead tr {
    border-bottom: 1px solid #4528ff;
}

.joker-table thead th {
    text-align: left;
}

.joker-table tbody tr th, .joker-table tbody tr td {
	font-weight: bold;
	padding: 5px;
}

.joker-table tbody tr td {
	border-right: 1px solid #4528ff;
}

.joker-table thead tr th {
	border-right: 1px solid #4528ff;
}

.joker-table tbody tr th {
	background-color: #0000001f;
	font-size: 16px;
    padding: 10px;
}

.joker-table tbody td[item-removed="yes"] {
	text-decoration: line-through;
}

.joker-table .table-join {
	background-color: #f5f5f5;
	border-top: 1px solid #4528ff;
	border-bottom: 1px solid #4528ff;
}
/* joker table */

/* last cards */
.last-cards-icon {
	position: absolute;
    left: 4px;
    top: 50%;
    margin-top: 80px;
    width: 48px;
    height: 48px;
	z-index: +1;
    background-color: rgba(255, 255, 255, 0.05);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;
	background-image: url(../../../images/icon-cards.svg);

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.last-cards {
	display: none;
	position: absolute;
	left: 72px;
	top: 50%;
	margin-top: 36px;
	width: 130px;
	height: 130px;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: +1;

	-webkit-border-radius: 16px;
	border-radius: 16px;
}

.last-cards::after {
	content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -12px;
    margin-left: -24px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.6) transparent transparent;
}

.last-cards .last-cards-user {
	position: absolute;
	left: 50%;
	top: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	width: 36px;
    height: 36px;
	margin-top: -23px;
	margin-left: -23px;
    cursor: pointer;
    z-index: 1000000;
	border: 5px solid #ffffff;
	
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.last-cards .last-cards-item {
	position: absolute;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	width: 40px;
	height: 60px;
}

.last-cards .last-cards-item[card-owner="player"] {
	left: 50%;
    margin-left: -20px;
    bottom: 4px;
}

.last-cards .last-cards-item[card-owner="opponent-1"] {
	left: 4px;
    margin-top: -30px;
    top: 50%;
}

.last-cards .last-cards-item[card-owner="opponent-2"] {
	left: 50%;
    margin-left: -20px;
    top: 4px;
}

.last-cards .last-cards-item[card-owner="opponent-3"] {
	top: 50%;
    margin-top: -30px;
    right: 4px;
}
/* last cards */

/* joker radio */
.joker-radio-item {
	display: inline-block;
	vertical-align: middle;
	padding: 10px;
	margin-right: 4px;
	margin-top: 4px;
	border: 1px solid rgba(0, 0, 0, 0.1);

	-webkit-border-radius: 10px;
    border-radius: 10px;
}

.joker-radio-item input,
.joker-radio-item label {
	vertical-align: middle;
	cursor: pointer;
}
/* joker radio */

/* joker finish */
.finish-player {
	text-align: left;
	padding: 10px;
	padding-left: 18px;
}

.finish-player-photo {
	position: relative;
	width: 48px;
	height: 48px;
}

.finish-player-photo[item-bot="yes"]::after {
	content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    margin-bottom: -8px;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../../images/ninja-icon.png);
	
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.finish-player-name {
	font-size: 16px;
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.finish-player-score {
	font-weight: bold;
	font-size: 16px;
}

.finish-player-coins {
	position: absolute;
	background-image: url(../../../images/coin.png);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: top center;
	padding-top: 18px;
	font-weight: bold;
	font-size: 18px;
	color: #00d748;
	width: 76px;
	text-align: center;
	margin-top: -30px;
	margin-left: 10px;
}

.finish-player-likes {
	background-color: rgba(0, 0, 0, 0.05);
	width: 44px;
	height: 44px;
	text-align: center;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.finish-player-likes[item-selected="yes"] {
	background-color: rgba(0, 0, 0, 0.1);
}

.finish-player-likes img {
	width: 24px;
}

.finish-player-likes div[item-id="likes"] {
	font-size: 14px;
}

.finish-player-group {
	position: relative;
    margin: 5px;

	-webkit-border-radius: 10px;
    border-radius: 10px;
}

.finish-player-group[item-color="green"] {
	margin-top: 24px;
	border: 2px solid #0dcc67;
}

.finish-player-group[item-color="red"] {
	margin-top: 24px;
	border: 2px solid #f30909;
}

.finish-player-group-title {
	position: absolute;
    left: 50%;
    background-color: #ffffff;
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    top: -15px;
    font-size: 18px;
    font-weight: bold;

	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.finish-player-group[item-color="green"] .finish-player-group-title {
	color: #0dcc67;
}

.finish-player-group[item-color="red"] .finish-player-group-title {
	color: #f30909;
}
/* joker finish */