html, body {
	height: 100%;
}

body {
	font-family: 'Conv_bpg_arial';
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

body[disable-scroll] {
	overflow-y: hidden !important;
}

body[disable-scroll] .content {
	overflow-y: hidden !important;
}

* {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

input, textarea {
	-webkit-tap-highlight-color: #000000;
	-webkit-touch-callout: default;

	-webkit-user-select: auto;
	-moz-user-select: auto;
	user-select: auto;
}

*:focus {
	outline: 0;
}

a {
	text-decoration: none;
}

.round {
	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.shadow {
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
}

.text-shadow {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	-webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.invisible {
	width: 1px;
	height: 1px;
	border: none;
	overflow: hidden;
	visibility: hidden;
}

.logged-only:not([user-logged]) {
	display: none;
}

button {
	font-family: 'Conv_bpg_arial';
}

@font-face {
	font-family: BPGMrgvlovaniCaps; src:url('../fonts/bpg_mrgvlovani_caps_2010.ttf');
}

@font-face {
	font-family: 'Conv_bpg_arial';
	src: url('../fonts/bpg_arial.eot');
	src: url('../fonts/bpg_arial.woff') format('woff'), url('../fonts/bpg_arial.ttf') format('truetype'), url('../fonts/bpg_arial.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* keyframes */
@-webkit-keyframes spinner {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spinner {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* keyframes */

/* common */
.content {
	height: 100%;
}

.middle {
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	text-align: center;

	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.lang-icon {
	position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    padding: 4px;
    background-color: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: +1;

	-webkit-border-radius: 5px;
    border-radius: 5px;
}

.lang-icon img {
    vertical-align: middle;
    width: 28px;

	-webkit-border-radius: 4px;
    border-radius: 4px;
}

.top {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	text-align: center;
}

.logo {
	display: inline-block;
	width: 64px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	background-image: url(../images/logo.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.growthAnimate {
	-webkit-animation: growthAnimate .5s 1;
	animation: growthAnimate .5s 1;
}

@-webkit-keyframes growthAnimate {
	0% {
    	font-size: 20px;
    }

    50% {
    	font-size: 30px;
    }

	100% {
    	font-size: 25px;
    }
}

@keyframes growthAnimate {
    0% {
		transform: scale(1);
    }

    50% {
    	transform: scale(1.5);
    }

	100% {
    	transform: scale(1);
    }
}
/* common */

/* checkbox */
.app-checkbox {
	display: none;
}

.app-checkbox-ui {
	cursor: pointer;
}

.app-checkbox:checked + .app-checkbox-ui .app-checkbox-ui-box {
	background-color: #0dcc67;
}

.app-checkbox:checked + .app-checkbox-ui .app-checkbox-ui-box:after {
	position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -10px;
    margin-left: -4px;
    display: block;
    content: "";
    width: 8px;
    height: 16px;
    box-sizing: border-box;
    transform: rotate(45deg);
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.app-checkbox-ui-box {
	position: relative;
	border: 2px solid #0dcc67;
	width: 20px;
	height: 20px;
	text-align: center;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.app-checkbox-ui-label {
	font-family: Conv_bpg_arial;
	font-size: 16px;
	font-weight: normal;
	line-height: 20px;
	color: #7d7d7d;
}

.app-checkbox-ui-label a {
	font-family: Conv_bpg_arial;
	font-size: 16px;
	font-weight: normal;
	color: #585858;
}

.app-checkbox-ui[item-style="red"] .app-checkbox-ui-box {
	border: 2px solid #f93e2b;
}

.app-checkbox:checked + .app-checkbox-ui[item-style="red"] .app-checkbox-ui-box {
	background-color: #f93e2b;
}
/* checkbox */

/* toast */
.toast {
	position: absolute;
	left: 0px;
    text-align: center;
	font-size: 18px;
    padding: 10px;
    padding-left: 16px;
	padding-right: 16px;
	margin-left: 8px;
	margin-right: 8px;
	visibility: hidden;
	z-index: 1000001;

    -webkit-border-radius: 16px;
    border-radius: 16px;
}

.toast[toast-style="default"] {
	background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.toast[toast-style="light"] {
	background-color: rgba(255, 255, 255, 0.9);
	color: #2D2D2D;
	
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
}

.toast[toast-position="top"] {
	top: 20px;
}

.toast[toast-position="center"] {
	top: 50%;

	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.toast[toast-position="bottom"] {
	bottom: 20px;
}
/* toast */

/* preloader */
@keyframes preloader_blinker_frames {
	50% {
		opacity: 0.1;
	}
}

@-webkit-keyframes preloader_blinker_frames {
	50% {
		opacity: 0.1;
	}
}

.preloader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: +1;
}

.preloader[is-onTop="yes"] {
	z-index: 1000000000 !important;
}

.preloader[has-graphics="yes"] {
	background-color: rgba(0, 0, 0, 0.8);
	background-image: url(../images/preloader.svg);
	background-repeat: no-repeat;
	background-size: 64px 64px;
	background-position: center center;
}

.preloader[item-icon="update"] {
	background-image: url(../images/updating.svg);
}

.preloader-text {
	font-size: 17px;
	color: #ffffff;
	position: absolute;
	top: 50%;
	margin-top: 64px;
	width: 100%;
	text-align: center;

	-webkit-animation: preloader_blinker_frames 1s linear infinite;
	animation: preloader_blinker_frames 1s linear infinite;
	
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
/* preloader */

/* button / input /select */
.app-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;

	padding: 10px;
	width: 100%;
	outline: 0;
	box-shadow: none;
	border: 0;
	cursor: pointer;

	-webkit-border-radius: 5px;
    border-radius: 5px;

	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
}

.app-button {
	display: inline-block;
	width: 100%;
	padding: 10px;
	padding-left: 15px;
	padding-right: 15px;
	border: none;
	font-size: 17px;
	background-color: #0dcc67;
	color: #ffffff;
	cursor: pointer;
	
	-webkit-border-radius: 25px;
    border-radius: 25px;
}

.app-button[button-style="light"] {
	background-color: #e0e0e0 !important;
    color: #3a3a3a !important;;
}

.app-button:hover {
	opacity: 0.7;
}

.app-button-desc {
	width: 100%;
    font-size: 14px;
    margin-top: -40px;
    padding-top: 50px;
    padding-bottom: 8px;
    background-color: #e4e4e4;
	color: #484848;
	
    -webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.app-input {
	background-color: rgba(0, 0, 0, 0.1);
	width: calc(100% - 20px);
	padding: 10px;
	border: none;
	
	-webkit-border-radius: 5px;
    border-radius: 5px;
}
/* button / input */

/* icons */
.circle-icon {
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.6);
	background-repeat: no-repeat;
	background-position: center center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	vertical-align: middle;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.circle-icon:hover {
	opacity: 0.7;
}
/* icons */

/* main area */
.main-area {
	position: relative;
	width: 100%;
	height: 100%;
}
/* main area */

/* user */
.user-warning {
	background-color: #b2b2b21a;
    font-size: 15px;
    padding: 5px;
    margin-top: 5px;
	cursor: pointer;

	-webkit-border-radius: 5px;
    border-radius: 5px;
}

.user-container {
	text-align: center;
}

@media screen and (min-height: 768px) {
	.user-container {
		position: absolute;
		left: 0px;
		top: 50%;
		width: 100%;

		-webkit-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
	}
}

.user-photo {
	margin-left: auto;
	margin-right: auto;
	width: 80px;
	height: 80px;
	background-color: #F0F0F0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	
	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.user-photo[item-size="small"] {
	width: 56px !important;
	height: 56px !important;
}

.user-name {
	display: inline-block;
	margin-top: 16px;
	font-size: 18px;
}

.user-name-edit {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: rgba(255, 255, 255, 0.3);
	background-image: url(../images/icon-edit.svg);
	background-size: 16px 16px;
	background-position: center center;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-left: 8px;
	cursor: pointer;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.user-name-edit:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.user-photo-upload {
	width: 40px;
	height: 40px;
	margin-left: 40px;
	background-color: rgba(255, 255, 255, 0.7);
	background-image: url(../images/icon-camera.svg);
	background-size: 28px 28px;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.user-photo-upload[item-state="loading"] {
	background-image: url(../images/puff-dark.svg);
}

.user-photo-upload:hover {
	background-color: rgba(255, 255, 255, 0.9);
}
/* user */

/* play button */
.play-button {
	background-color: #4caf50;
	background-image: url(../images/icon-joystick.svg);
	background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 32px 32px;
	color: #ffffff;
	font-size: 17px;
	font-weight: bold;
	border: none;
	padding: 10px;
	width: 260px;
	cursor: pointer;
	text-align: center;

	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
	
	-webkit-border-radius: 25px;
    border-radius: 25px;
}

.play-button:hover {
	background-color: #39923d;
}
/* play button */

/* progress */
.circle-progress {
	width: 100%;
	height: 100%;
}

.circle-progress svg {
	width: 100%;
	height: 100%;
}

.circle-progress svg circle {
	transform: rotate(-90deg);
	transform-origin: center;
	stroke: #ff0063;
	stroke-dasharray: 0, 100;
}

.circle-animation svg circle {
	animation-name: circle-animation;
	animation-delay: 0s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;

	-webkit-animation-name: circle-animation;
	-webkit-animation-delay: 0s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
}

@keyframes circle-animation {
	to {
		stroke-dasharray: 100, 100;
	}
}

@-webkit-keyframes circle-animation {
	to {
		stroke-dasharray: 100, 100;
	}
}

.user-info:not([user-i='0']) .circle-progress::before,
.user-info:not([user-i='0']) .circle-progress::after {
  	content: "";
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	right: 0px;
  	bottom: 0px;

	-webkit-border-radius: 50%;
  	border-radius: 50%;
}

.user-info[user-action="yes"][user-i='1'] .circle-progress::before,
.user-info[user-action="yes"][user-i='2'] .circle-progress::before,
.user-info[user-action="yes"][user-i='3'] .circle-progress::before {
  	animation: user_ripple .5s linear 0.5s 1 forwards;
}


@keyframes user_ripple {
	0% {
		box-shadow: 0 0 0 .1rem rgba(255, 255, 255, 0.3);
	}

	100% {
		box-shadow: 0 0 0 8rem rgba(255, 255, 255, 0);
	}
}
/* progress */

/* coins history */
.coins-history-list {
	padding: 20px;
    padding-top: 0px;
    margin-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.coins-history-item {
	margin-top: 16px;
}

.coins-history-item-coins {
	font-size: 24px;
}

.coins-history-item-note {
	font-weight: bold;
	font-size: 15px;
}

.coins-history-item-date {
	font-size: 16px;
	margin-top: 6px;
}

.coins-history-circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.coins-history-circle[item-id="1"] {
	border: 5px solid #4CAF50;
    color: #4caf50;
    font-weight: bold;
}


.coins-history-circle[item-id="2"] {
	border: 5px solid #ffa307;
    color: #ffa307;
    font-weight: bold;
}


.coins-history-circle[item-id="3"] {
	border: 5px solid #e81303;
    color: #e81303;
    font-weight: bold;
}

/* coins history */

/* games history */
.games-history-list {
	padding: 20px;
}

.games-history-item {
	margin-bottom: 16px;
	cursor: pointer;
}

.games-history-item[item-online="online"] .games-history-item-photo::before {
    position: absolute;
    bottom: -2px;
    right: -2px;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #00d748;
    border: 4px solid #ffffff;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.games-history-item[item-online="playing"] .games-history-item-photo::before {
    position: absolute;
    bottom: -2px;
    right: -2px;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/icon-playing.svg);
    border: 3px solid #ffffff;

    -webkit-border-radius: 50%;
    border-radius: 50%;

    -webkit-animation: spinner 3s linear infinite;
    animation: spinner 3s linear infinite;
}

.games-history-item-photo {
	position: relative;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 56px;
	height: 56px;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.games-history-item-name {
	font-weight: bold;
	font-size: 15px;
}

.games-history-item-score {
	font-size: 16px;
}

/* games history */

/* game p2p */
.game-p2p-item {
	-webkit-border-radius: 7px;
    border-radius: 7px;
}

.game-p2p-header {
    padding: 5px;
}

.game-p2p-item[item-type="friend"] {
	border: 2px solid #25d366;
}

.game-p2p-item[item-type="friend"] .game-p2p-header {
	background-color: #25d366;
}

.game-p2p-item[item-type="tournament"] {
	border: 2px solid #178ae4;
}

.game-p2p-item[item-type="tournament"] .game-p2p-header {
	background-color: #178ae4;
}

.game-p2p-item[item-type="random"] {
	border: 2px solid #fdb42d;
}

.game-p2p-item[item-type="random"] .game-p2p-header {
	background-color: #fdb42d;
}
/* game p2p */

/* friends */
.friends-list {
	padding: 10px;
	overflow-x: hidden;
}

.friends-other {
	background-color: rgba(0, 0, 0, 0.05);
	font-size: 16px;
	padding: 15px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
	color: #9c00b7;
	cursor: pointer;
}

.friends-other:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.friend-item {
	position: relative;
	padding: 12px;
}

.friend-item.clickable {
	cursor: pointer;

	-webkit-border-radius: 10px;
    border-radius: 10px;
}

.friend-item[item-online="online"] .friend-item-photo::before {
    position: absolute;
    bottom: -2px;
    right: -2px;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #00d748;
    border: 4px solid #ffffff;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.friend-item[item-online="playing"] .friend-item-photo::before {
    position: absolute;
    bottom: -2px;
    right: -2px;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/icon-playing.svg);
    border: 3px solid #ffffff;

    -webkit-border-radius: 50%;
    border-radius: 50%;

    -webkit-animation: spinner 3s linear infinite;
    animation: spinner 3s linear infinite;
}

.friend-item[item-msg]::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	background-color: #ff0034;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.friend-item-play {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    font-size: 17px;
    background-color: #3f51b5;
    color: #ffffff;
	cursor: pointer;
	
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.friend-item-play:hover {
	opacity: 0.7;
}

.friend-item.clickable .friend-item-photo {
	cursor: pointer;
}

.friend-item-photo {
	position: relative;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 56px;
	height: 56px;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.friend-item-delete {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/icon-delete.svg);
	background-size: 24px 24px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	vertical-align: middle;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.friend-item-name {
	font-weight: bold;
	font-size: 17px;
}

.friend-item-message {
	font-size: 15px;
	color: #959595;
}

.friends-dialog {
	justify-content: end !important;
    align-items: end !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
}

.friends-dialog .big-dialog-inner {
	max-height: calc(100% - 100px) !important;
	margin-left: 10px !important;
    margin-right: 10px !important;

	-webkit-border-bottom-right-radius: 0px !important;
	-webkit-border-bottom-left-radius: 0px !important;
	-moz-border-radius-bottomright: 0px !important;
	-moz-border-radius-bottomleft: 0px !important;
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}
/* friends */

/* random */
.random-container {
	position: relative;
	width: 100%;
	height: 150px;
	overflow: hidden;
}

.random-container[item-type="loading"] {
	background-image: url(../images/puff-dark.svg);
	background-repeat: no-repeat;
	background-size: 64px 64px;
	background-position: center center;
}

.random-container[item-type="connecting"] {
	background-image: url(../images/puff-dark.svg);
	background-repeat: no-repeat;
	background-size: 120px 120px;
	background-position: center center;
}

.random-item {
	position: absolute;
	top: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 64px;
	height: 64px;
	margin-top: -64px;
	border-radius: 50%;
	overflow: hidden;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
/* random */

/* fb group */
.fb-group-icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-left: 16px;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
	background-image: url(../images/icon-fb.svg?v2);
}

.fb-group-tooltip {
	position: relative;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	font-size: 16px;
	padding: 10px;
	vertical-align: middle;

	-webkit-border-radius: 8px;
    border-radius: 8px;
}

.fb-group-tooltip::after {
	content: "";
    position: absolute;
    top: 8px;
    right: 0%;
    margin-right: -24px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.6);
}
/* fb group */

/* users ratings */
.users-ratings {
	width: 280px;
	margin-left: auto;
	margin-right: auto;
}

.users-ratings-title {
	padding-top: 20px;
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 17px;
	color: #ffffff;
}

.users-ratings[item-style="dark"] .users-ratings-item-name {
	color: #585858;
}

.users-ratings-item {
	margin-bottom: 10px;
	cursor: pointer;
	text-align: left;
}

.big-dialog .users-ratings-item[item-user-online="online"] .users-ratings-item-photo::before {
    position: absolute;
    bottom: -4px;
    right: -4px;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #00d748;
    border: 4px solid #ffffff;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.big-dialog .users-ratings-item[item-user-online="playing"] .users-ratings-item-photo::before {
    position: absolute;
    bottom: -4px;
    right: -4px;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/icon-playing.svg);
    border: 3px solid #ffffff;

    -webkit-border-radius: 50%;
    border-radius: 50%;

    -webkit-animation: spinner 3s linear infinite;
    animation: spinner 3s linear infinite;
}

.users-ratings-item-photo {
	position: relative;
	display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 40px;
	height: 40px;
	
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.users-ratings-item-name {
	font-weight: bold;
	font-size: 15px;
	color: #ffffff;
}

.users-ratings-item-wins {
	margin-top: 2px;
	font-size: 14px;
	color: #4caf50;
}

.users-ratings-switch {
	cursor: pointer;
}

.users-ratings[item-style="light"] .users-ratings-switch {
	color: #ffffff;
}

.users-ratings-switch[item-selected="yes"] {
	padding: 2px;
    padding-bottom: 5px;
    color: #2196f3 !important;
    border-bottom: 2px solid #2d9bf3;
}
/* users ratings */

/* user stickers */
.user-sticker {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: 40px 40px;
	background-position: center center;
	vertical-align: middle;

	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.user-sticker:hover {
	width: 48px;
	height: 48px;
	background-size: 48px 48px;
}
/* user stickers */

/* user rating */
.user-status {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: 40px 40px;
	background-position: center center;
	vertical-align: middle;
}

.user-status[item-size="small"] {
	width: 24px;
	height: 32px;
	background-size: 32px 32px;
}

.user-likes {
	margin-top: 20px;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
	text-align: center;
    background-color: rgba(0, 0, 0, 0.08);

	-webkit-border-radius: 5px;
    border-radius: 5px;
}

.user-likes img {
	height: 32px;
	vertical-align: middle;
}

.user-likes span {
	margin-left: 4px;
}

.user-likes table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.user-likes table td {
	width: 50%;
	text-align: center;
}

.user-actions {
	width: 240px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
}

.user-actions table {
	width: 100%;
}

.user-actions table td {
	width: 33%;
	text-align: center;
}

.user-actions-icon {
	display: inline-block;
	width: 48px;
	height: 48px;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgb(236, 236, 236);
	background-size: 20px;
	cursor: pointer;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.user-actions-icon:hover {
	background-color: rgb(233, 231, 231);
}

.user-actions-icon[item-id="add-friend"] {
	background-image: url(../images/icon-add-friend.svg);
	background-size: 24px;
}

.user-actions-icon[item-id="is-friend"] {
	background-image: url(../images/icon-friendship.svg);
	background-size: 24px;
}

.user-actions-icon[item-id="message"] {
	background-image: url(../images/icon-message.svg);
}

.user-actions-icon[item-id="report"] {
	background-image: url(../images/icon-report.svg);
}

.user-actions-icon[item-id="send-coins"] {
    background-image: url(../images/icon-profile-send-coins.svg);
}

.user-ratings {
	width: 260px;
	margin-left: auto;
	margin-right: auto;
}

.user-rating-switch {
	cursor: pointer;
}

.user-rating-switch[item-selected="yes"] {
	padding: 2px;
    padding-bottom: 5px;
    color: #2196f3;
    border-bottom: 2px solid #2d9bf3;
}
/* user rating */

/* user menu */
.user-menu-profile {
	cursor: pointer;
}

.user-menu-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 72px;
	z-index: +1;

	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
}

.user-menu-container[is-open="yes"] {
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
    box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.12);
}

.user-menu-container[is-open="yes"] .user-menu-content {
	display: block;
	opacity: 1;
}

.user-menu {
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: +1;
	padding-top: 24px;
	padding-bottom: 24px;
}

.user-menu-item {
	margin-top: 20px;
	cursor: pointer;
}

.user-menu-item-photo {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	background-position: center center;
	vertical-align: middle;
}

.user-menu-item-name {
	display: inline-block;
	margin-left: 12px;
	font-size: 18px;
	vertical-align: middle;
}

.user-menu-content {
	display: none;
	position: absolute;
    top: 0px;
	left: 0px;
	width: 100%;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.9);
	padding-top: 92px;
	padding-bottom: 20px;
	padding-left: 20px;

	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
}

.user-menu-icon {
	width: 30px;
	cursor: pointer;
	vertical-align: middle;
}

.user-menu-icon:after, 
.user-menu-icon:before, 
.user-menu-icon div {
	display: block;
	background-color: #4caf50;
	content: '';
	height: 4px;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.user-menu-icon:after {
	margin-top: 6px;
}

.user-menu-icon:before {
	margin-bottom: 6px;
}

.user-menu-container[is-open="yes"] .user-menu-icon:before {
	-webkit-transform: translateY(10px) rotate(135deg);
	transform: translateY(10px) rotate(135deg);
}

.user-menu-container[is-open="yes"] .user-menu-icon:after {
	-webkit-transform: translateY(-10px) rotate(-135deg);
	transform: translateY(-10px) rotate(-135deg);
}

.user-menu-container[is-open="yes"] .user-menu-icon div {
	-webkit-transform: scale(0);
	transform: scale(0);
}
/* user menu */

/* edit profile */
.edit-item {
	margin-bottom: 30px;
}

.edit-item-title {
	font-size: 18px;
	padding-bottom: 10px;
}

.edit-item-title img {
	width: 20px;
	margin-right: 5px;
	vertical-align: middle;
}

/* edit profile */

/* settings */
.settings-item {
	margin-bottom: 30px;
}

.settings-item-title {
	font-size: 18px;
	padding-bottom: 10px;
}

.settings-item-title img {
	width: 20px;
	margin-right: 5px;
	vertical-align: middle;
}

.settings-bg-item {
	display: inline-block;
	width: 64px;
	height: 64px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	opacity: 0.8;
	border: 5px solid #ffffff;
	cursor: pointer;

	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.settings-bg-item:hover {
	opacity: 1;
}

.settings-bg-item[item-selected="yes"] {
	border: 5px solid #E91E63;
	opacity: 1 !important;
}

.settings-card-item {
	display: inline-block;
	width: 72px;
	height: 96px;
	background-repeat: no-repeat;
	background-size: 90% 90%;
	background-position: center center;
	border: 2px solid transparent;
	text-align: center;
	vertical-align: top;
	cursor: pointer;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.settings-card-item:hover {
	border: 2px solid rgba(0, 0, 0, 0.2);
}

.settings-card-item[item-selected="yes"] {
	border: 2px solid #008eff;
}

/* settings */

/* coins */
@-webkit-keyframes coins_send {
	from {
    	background-color: #ffdf00;
    }

    to {
    	background-color: #ff9d00;
    }
}

@keyframes coins_send {
    from {
    	background-color: #ffdf00;
    }

    to {
    	background-color: #ff9d00;
    }
}

.coins-send {
	margin-left: 12px;
	width: 20px;
	vertical-align: middle;
	padding: 5px;
	background-color: #ffdf00;
	cursor: pointer;

	-webkit-animation: coins_send 1s infinite alternate;
    animation: coins_send 1s infinite alternate;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.coins-send:hover {
	opacity: 0.6;
}

.coins-counter {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
}

.coins-counter img[item-id="coin-icon"] {
	width: 24px;
	margin-right: 4px;
	vertical-align: middle;
}

.coins-counter span[item-id="coin-count"] {
	margin-left: 2px;
}

.coins-counter span[item-id="coin-count"][item-type="positive"] {
	color: #02af53;
}

.coins-counter span[item-id="coin-count"][item-type="negative"] {
	color: #ff0b0b;
}

.coin-flake {
	position: absolute;
	top: -100px;
	left: 0%;
	background-image: url(../images/coin.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	width: 48px;
	height: 48px;
	z-index: +1;
}

/* coins */



/* play coins */
.play-coins {
	font-size: 15px;
    font-weight: bold;
    padding: 12px;
    background-color: rgb(164 148 23 / 10%);
    margin-bottom: 10px;
	cursor: pointer;

	-webkit-border-radius: 8px;
    border-radius: 8px;
}

.play-coins:hover {
	background-color: rgb(164 148 23 / 15%);
}
/* play coins */

/* play icons */
.play-icon {
    background-size: 24px 24px;
    background-position: 10px center;
    background-repeat: no-repeat;
}

.play-icon[item-icon="tournament"] {
	background-image: url(../images/icon-play-tournament.svg);
	background-color: #3f51b5;
}

.play-icon[item-icon="friend"] {
	background-image: url(../images/icon-play-friend.svg);
}

.play-icon[item-icon="random"] {
	background-image: url(../images/icon-play-random.svg);
	background-size: 20px 20px;
}

.play-icon[item-icon="girlvsboy"] {
	background-image: url(../images/icon-play-girlvsboy.svg?2);
	background-size: 20px 20px;
}

.play-icon[item-icon="freecoins"] {
	background-color: #9d09f3;
	background-image: url(../images/icon-promo.png?2);
	background-size: 24px 24px;

	box-shadow: 2px 1px 13px -5px rgba(157,9,243,0.7);
	-webkit-box-shadow: 2px 1px 13px -5px rgba(157,9,243,0.7);
	-moz-box-shadow: 2px 1px 13px -5px rgba(157,9,243,0.7);
}
/* play icons */

/* assets icons */
.assets-icon {
    background-size: 24px 24px;
    background-position: 10px center;
    background-repeat: no-repeat;
}

.assets-icon[item-icon="coins"] {
	background-image: url(../images/coin.png);
	background-color: #ee6400;
}

.assets-icon[item-icon="boxes"] {
	background-image: url(../images/icon-box.svg?v3);
	background-color: #3f55b5;
}
/* assets icons */

/* sound control */
.sound-control {
	position: absolute;
	left: 15px;
    top: 90px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center center;
	background-color: rgba(255, 255, 255, 0.1);
    background-image: url(../images/icon-sound.svg?v7);
    z-index: +1;
    cursor: pointer;

	-webkit-border-radius: 50%;
    border-radius: 50%;
}

.sound-control[item-game="yes"] {
	background-color: rgba(255, 255, 255, 0.2) !important;
	left: 5px !important;
    top: 70px !important;
}

.sound-control[item-disabled="yes"] {
	background-image: url(../images/icon-sound-disabled.svg?v7);
}

/* sound control */

/* boxes */
.boxes-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url(../images/icon-box.svg?v3);
    cursor: pointer;

    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.boxes-icon[icon-position="top"] {
	position: absolute;
    left: 15px;
    top: 165px;
    z-index: +1;
}

.boxes-icon[icon-position="top"]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
	z-index: -1;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -webkit-animation: blinking 1s infinite alternate;
    animation: blinking 1s infinite alternate;
}

.boxes-icon span {
	display: block;
    bottom: 0px;
    position: absolute;
    margin-bottom: -6px;
    margin-right: -6px;
    right: 0px;
    text-align: center;
    min-width: 16px;
    padding: 5px;
    background-color: #0b0b0b;
    color: #ffffff;
	
    -webkit-border-radius: 12px;
    border-radius: 12px;
}
/* boxes */

/* smiles */
.smile-item {
	display: inline-block;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: center center;
}
/* smiles */

/* toggle switch */
.toggle-switch {
	display: none;
}

.toggle-switch + label {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 26px;
	background: #434257;
	cursor: pointer;
	
	transition: all 0.3s;
	-webkit-transition: all 0.3s;

	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.toggle-switch:checked + label {
	background: #00d084;
}

.toggle-switch + label::before {
	content: "";
	position: absolute; 
	left: 1px;
	top: 1px;
	width: 24px;
	height: 24px;
	background: #ffffff;
	border-radius: 50%;

	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.toggle-switch:checked + label::before {
	margin-left: 24px;
}

.toggle-switch + label::after {
	content: '';
	position: absolute;
    top: 0px;
    left: 26px;
    width: 20px;
	height: 100%;
	background-image: url(../images/icon-toggle-unchecked.svg?v2);
    background-size: 12px 12px;
    background-position: center center;
    background-repeat: no-repeat;
}

.toggle-switch:checked + label::after {
	left: 4px;
	background-size: 14px 14px;
	background-image: url(../images/icon-toggle-checked.svg?v2);
}

/* toggle switch */

/* roulette */
.roulette {
	display: inline-block;
	position: relative;
	overflow: hidden;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.roulette canvas {
	display: block;
	
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.roulette span {
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	height: 30%;
	margin: -15%;
	background: #000;
	color: #fff;
	font-size: 20px;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.roulette span::after {
	content: "";
	position: absolute;
	top: -8px;
	border: 10px solid transparent;
	border-bottom-color: #000;
	border-top: none;
}
/* roulette */

/* report */
.report-button {
	display: inline-block;
	font-size: 17px;
	text-align: center;
	padding: 10px;
	color: #d90000;
	cursor: pointer;
}

.report-button img {
	width: 24px;
	margin-right: 4px;
	vertical-align: middle;
}

.report-dialog .big-dialog-button {
	background-color: #f93e2b;
}
/* report */

/* notification */
.notification {
	position: fixed;
    left: 50%;
    top: 20px;
    width: 300px;
    padding-top: 10px;
    margin-left: -150px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10100000;

	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	
	-webkit-border-radius: 16px;
	border-radius: 16px;
}

.notification table {
	width: 100%;
	border-spacing: 0px;
	border-collapse: collapse;
}

.notification-close {
	width: 24px;
	padding: 10px;
	vertical-align: middle;
	cursor: pointer;
}

.notification-icon {
	width: 46px;
	vertical-align: middle;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.notification-actions {
	display: -webkit-flex;
	display: flex;
	background-color: rgba(0, 0, 0, 0.05);
	margin-top: 5px;
}

.notification-action {
	font-size: 16px;
    flex: 1;
    color: #4caf50;
    padding: 10px;
	cursor: pointer;
    text-align: center;
}
/* notification */

/* notifications */
.notifications-container::before {
	content: '';
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: +1;
}

.notifications {
    position: absolute;
    top: 150px;
    right: 15px;
    width: 280px;
    padding: 10px;
    min-height: 100px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: +1;

    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.notifications::before {
	content: "";
    position: absolute;
    border-width: 8px;
    border-style: solid;
    position: absolute;
    top: 0px;
    right: 12px;
    margin-top: -15px;
    border-color: transparent;
    border-bottom-color: #e7e7e8;
}

.notifications-content {
	-ms-overflow-style: none;
  	scrollbar-width: none;
	overflow-y: auto;
}

.notifications-content::-webkit-scrollbar {
	display: none;
}

.notifications-content:empty {
	background-image: url(../images/icon-notifications.svg);
	background-size: 64px 64px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 150px;
}

.notifications-content[is-loading="yes"] {
	background-image: url(../images/puff-dark.svg);
	background-size: 64px 64px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 150px;
}

.notifications-title {
	text-align: center;
    padding: 15px;
    font-size: 18px;
    color: #121212;
}

.notifications-item {
    width: 100%;
    padding-top: 15px;
    background-color: #ffffff;
    margin-bottom: 10px;

	-webkit-border-radius: 10px;
    border-radius: 10px;
}

.notifications-item table {
	width: 100%;
	border-spacing: 0px;
	border-collapse: collapse;
}

.notifications-item-close {
	width: 20px;
	padding: 10px;
	vertical-align: middle;
	cursor: pointer;
}

.notifications-item[item-online="online"] .notifications-item-icon::before {
    position: absolute;
    bottom: -2px;
    right: -2px;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #00d748;
    border: 4px solid #ffffff;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.notifications-item[item-online="playing"] .notifications-item-icon::before {
    position: absolute;
    bottom: -2px;
    right: -2px;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/icon-playing.svg);
    border: 3px solid #ffffff;

    -webkit-border-radius: 50%;
    border-radius: 50%;

    -webkit-animation: spinner 3s linear infinite;
    animation: spinner 3s linear infinite;
}

.notifications-item-icon {
	position: relative;
	display: inline-block;
	height: 46px;
	width: 46px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	vertical-align: middle;
	cursor: pointer;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.notifications-item-actions {
	display: -webkit-flex;
	display: flex;
	margin-top: 5px;
}

.notifications-item-action {
	font-size: 16px;
    flex: 1;
    background-color: rgba(0, 0, 0, 0.05);
    color: #3f51b5;
    padding: 10px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
	cursor: pointer;

	-webkit-border-radius: 20px;
    border-radius: 20px;
}

.notifications-item-action:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.notifications-item-action img {
	width: 16px;
	margin-right: 4px;
	vertical-align: middle;
	opacity: 0.6;
}

.notifications-icon {
	position: absolute;
	right: 15px;
    top: 90px;
    display: inline-block;
    width: 40px;
    height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
    z-index: +1;
    cursor: pointer;

	-webkit-border-radius: 50%;
    border-radius: 50%;

	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
}

.notifications-container ~ .notifications-icon {
	background-color: rgba(255, 255, 255, 1);
	z-index: +1;
}

.notifications-icon img {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
}

.notifications-icon[item-notifications]::before {
	content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 14px;
    height: 14px;
	
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -webkit-animation: blinking_notifications 5s infinite alternate;
    animation: blinking_notifications 5s infinite alternate;
}

@keyframes blinking_notifications {
	0% {
		width: 14px;
		height: 14px;
		background-color: #ffee01;
		transform: scale(1);
	}

	25% {
		width: 14px;
		height: 14px;
		background-color: #f30909;
		transform: scale(0.7);
	}

	50% {
		width: 14px;
		height: 14px;
		background-color: #ffee01;
		transform: scale(1);
	}

	75% {
		width: 14px;
		height: 14px;
		background-color: #f30909;
		transform: scale(0.7);
	}

    100% {
		width: 40px;
		height: 40px;
		background-color: #ffee01;
		transform: scale(1);
	}
}

/* notifications */

/* login */
.login-line {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
	margin-bottom: 15px;
}

.login-button {
    height: 40px;
    line-height: 40px;
    width: 250px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
    font-size: 17px;
    background-color: #17c561;
    background-image: url(../images/icon-login.svg?5);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 16px center;
    color: #ffffff;
	font-weight: bold;
    cursor: pointer;

    -webkit-border-radius: 25px;
    border-radius: 25px;
}

.signup-line {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
	margin-bottom: 15px;
}

.signup-button {
    height: 40px;
    line-height: 40px;
    width: 250px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
    font-size: 17px;
    background-color: #17c561;
    background-image: url(../images/icon-signup.svg);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    background-position: 17px center;
    color: #ffffff;
	font-weight: bold;
    cursor: pointer;

    -webkit-border-radius: 25px;
    border-radius: 25px;
}

.signup-upload {
	background-image: url(../images/signup-upload.svg?3);
}

.signup-upload[item-state="loading"] {
	background-image: url(../images/puff-dark.svg);
}

.fb-login-btn {
    height: 40px;
    line-height: 40px;
    width: 250px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
    font-size: 17px;
    background-color: #4266B3;
    color: #ffffff;
	font-weight: bold;
    cursor: pointer;

    -webkit-border-radius: 25px;
    border-radius: 25px;
}
/* login */

/* by */
.by {
	color: #ffffff;
	font-size: 16px;
	margin-top: 30px;
}

.by span {
	color: #8a8a8a;
	font-size: 15px;
}
/* by */

/* game float */
.game-float {
	position: fixed;
    left: 10px;
    bottom: 10px;
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.game-float span {
	content: "";
	display: block;
	position: absolute;
	top: 14px;
	left: 14px;
	width: 36px;
	height: 36px;
	background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
	overflow: hidden;

	-webkit-transition: background-image 2s ease;
	transition: background-image 2s ease;

	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.game-float[game-id="game"] span {
	background-image: url(../../files/games/game/logo.png?58);
}

.game-float[game-id="bura3"] span {
	background-image: url(../../files/games/bura3/logo.png?58);
}

.game-float[game-id="bura5"] span {
	background-image: url(../../files/games/bura5/logo.png?58);
}

.game-float[game-id="jeirani"] span {
	background-image: url(../../files/games/jeirani/logo.png?58);
}

.game-float[game-id="checkers"] span {
	background-image: url(../../files/games/checkers/logo.png?58);
}
/* game float */

/* smart tooltip */
.smart-tooltip {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	color: #ffffff;
	padding: 10px;
	min-width: 100px;
	height: 30px;
	line-height: 30px;
    text-align: center;
    font-size: 17px;
	white-space: nowrap;
	border-color: rgba(0, 0, 0, 0.8);

	-webkit-transition: all 0.15s linear;
	transition: all 0.15s linear;

	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.smart-tooltip[item-mode="right"] {
	margin-left: -10px;
	
	-webkit-transform: translate(-100%, 0%);
	transform: translate(-100%, 0%);
}

.smart-tooltip::after {
	content: "";
    position: absolute;
    border-width: 12px;
    border-style: solid;
}

.smart-tooltip[item-arrow="left"]::after {
	top: 13px;
	left: 0px;
	margin-left: -24px;
	border-color: transparent;
    border-right-color: inherit;
}

.smart-tooltip[item-arrow="right"]::after {
	top: 13px;
	right: 0px;
	margin-right: -23px;
	border-color: transparent;
    border-left-color: #070f17;
}

.smart-tooltip[item-arrow="top"]::after {
    top: 0px;
    left: 50%;
    margin-top: -24px;
    margin-left: -12px;
    border-color: transparent;
    border-bottom-color: inherit;
}

.smart-tooltip[item-arrow="bottom"]::after {
	bottom: 0px;
	left: 50%;
	margin-bottom: -24px;
	margin-left: -12px;
	border-color: transparent;
    border-top-color: inherit;
}
/* smart tooltip */

/* promo code */
.promo-dialog-hide {
	left: calc(100% - 64px) !important;
    top: 165px !important;
	background-color: transparent !important;
	width: 40px !important;
	height: 40px !important;
	opacity: 0 !important;
	overflow: hidden !important;

	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

@-webkit-keyframes promo_icon {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes promo_icon {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.promo-icon {
    position: absolute;
    right: 15px;
    top: 165px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center center;
    background-color: #102a44;
    background-image: url(../images/icon-promo.png?v8);
    cursor: pointer;
	z-index: +1;

	-webkit-animation: promo_icon 2s infinite alternate;
    animation: promo_icon 2s infinite alternate;

    -webkit-border-radius: 50%;
    border-radius: 50%;
}

@-webkit-keyframes promo_code_text {
	from {
		color: #000000;
	}

	to {
		color: #cbc825;
	}
}

@keyframes promo_code_text {
	from {
		color: #000000;
	}

	to {
		color: #cbc825;
	}
}

.promo-code-text {
	-webkit-animation: promo_code_text 1s infinite alternate;
    animation: promo_code_text 1s infinite alternate;
}

.promo-share-button {
	background-color: #3f51b5 !important;
}
/* promo code */

/* auth */
.auth-otp-button {
	display: inline-block;
	width: 100%;
	padding: 3px;
	padding-left: 5px;
	padding-right: 5px;
	border: none;
	font-size: 13px;
	background-color: #3f51b5;
	color: #ffffff;
	cursor: pointer;
	
	-webkit-border-radius: 7px;
    border-radius: 7px;
}

.auth-otp-button:hover {
	opacity: 0.7;
}

/* profile */
.big-dialog[data-gender="female"] .big-dialog-content {
	border-top: 6px solid #ff00ad;
}

.big-dialog[data-gender="male"] .big-dialog-content {
	border-top: 6px solid #217af3;
}