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 */

@-webkit-keyframes play-btn-glow {
	0%, 100% { -webkit-box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4), 0 0 25px rgba(76, 175, 80, 0.12); }
	50% { -webkit-box-shadow: 0 4px 25px rgba(76, 175, 80, 0.55), 0 0 45px rgba(76, 175, 80, 0.2); }
}
@keyframes play-btn-glow {
	0%, 100% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4), 0 0 25px rgba(76, 175, 80, 0.12); }
	50% { box-shadow: 0 4px 25px rgba(76, 175, 80, 0.55), 0 0 45px rgba(76, 175, 80, 0.2); }
}

@-webkit-keyframes play-btn-streak {
	0%, 70%, 100% { left: -100%; }
	85% { left: 150%; }
}
@keyframes play-btn-streak {
	0%, 70%, 100% { left: -100%; }
	85% { left: 150%; }
}

@-webkit-keyframes play-btn-ring1 {
	0% { -webkit-transform: scale(1); opacity: 0.5; }
	100% { -webkit-transform: scale(1.5); opacity: 0; }
}
@keyframes play-btn-ring1 {
	0% { transform: scale(1); opacity: 0.5; }
	100% { transform: scale(1.5); opacity: 0; }
}

@-webkit-keyframes play-btn-ring2 {
	0% { -webkit-transform: scale(1); opacity: 0.3; }
	100% { -webkit-transform: scale(1.8); opacity: 0; }
}
@keyframes play-btn-ring2 {
	0% { transform: scale(1); opacity: 0.3; }
	100% { transform: scale(1.8); opacity: 0; }
}

/* rising sparkle paths - born at button, float up with S-curve, shrink and vanish */
@keyframes pf-rise-a {
	0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	12%  { transform: translateY(-6px) translateX(3px) scale(1); opacity: 0.9; }
	40%  { transform: translateY(-22px) translateX(-5px) scale(0.85); opacity: 0.7; }
	70%  { transform: translateY(-38px) translateX(4px) scale(0.5); opacity: 0.35; }
	100% { transform: translateY(-52px) translateX(-1px) scale(0); opacity: 0; }
}

@keyframes pf-rise-b {
	0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	10%  { transform: translateY(-5px) translateX(-4px) scale(1); opacity: 0.8; }
	35%  { transform: translateY(-18px) translateX(6px) scale(0.9); opacity: 0.6; }
	65%  { transform: translateY(-34px) translateX(-3px) scale(0.45); opacity: 0.3; }
	100% { transform: translateY(-48px) translateX(2px) scale(0); opacity: 0; }
}

@keyframes pf-rise-c {
	0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	15%  { transform: translateY(-8px) translateX(5px) scale(1); opacity: 1; }
	45%  { transform: translateY(-24px) translateX(-4px) scale(0.7); opacity: 0.5; }
	75%  { transform: translateY(-40px) translateX(2px) scale(0.3); opacity: 0.2; }
	100% { transform: translateY(-55px) translateX(-2px) scale(0); opacity: 0; }
}

@keyframes pf-rise-d {
	0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	8%   { transform: translateY(-4px) translateX(-3px) scale(1); opacity: 0.7; }
	30%  { transform: translateY(-15px) translateX(5px) scale(0.8); opacity: 0.55; }
	60%  { transform: translateY(-30px) translateX(-6px) scale(0.4); opacity: 0.25; }
	100% { transform: translateY(-46px) translateX(1px) scale(0); opacity: 0; }
}

@keyframes pf-rise-e {
	0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	14%  { transform: translateY(-7px) translateX(-5px) scale(1); opacity: 0.85; }
	50%  { transform: translateY(-26px) translateX(3px) scale(0.65); opacity: 0.45; }
	80%  { transform: translateY(-42px) translateX(-4px) scale(0.25); opacity: 0.15; }
	100% { transform: translateY(-50px) translateX(1px) scale(0); opacity: 0; }
}

@keyframes pf-rise-f {
	0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	10%  { transform: translateY(-6px) translateX(4px) scale(1); opacity: 0.9; }
	38%  { transform: translateY(-20px) translateX(-6px) scale(0.75); opacity: 0.5; }
	68%  { transform: translateY(-36px) translateX(5px) scale(0.35); opacity: 0.2; }
	100% { transform: translateY(-50px) translateX(0px) scale(0); opacity: 0; }
}

/* --- wrapper --- */
.play-button-wrap {
	position: relative;
	display: inline-block;
	padding: 20px 10px 10px 10px;
}

/* ripple ring */
.play-button-wrap::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border: 2px solid rgba(76, 175, 80, 0.25);
	pointer-events: none;

	-webkit-border-radius: 28px;
	border-radius: 28px;

	-webkit-animation: play-btn-ring1 3s ease-out infinite;
	animation: play-btn-ring1 3s ease-out infinite;
}

/* ripple ring 2 */
.play-button-wrap::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border: 1px solid rgba(76, 175, 80, 0.12);
	pointer-events: none;

	-webkit-border-radius: 28px;
	border-radius: 28px;

	-webkit-animation: play-btn-ring2 3s ease-out 1.5s infinite;
	animation: play-btn-ring2 3s ease-out 1.5s infinite;
}

/* --- particle base --- */
.play-particles {
	position: absolute;
	top: 20px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	pointer-events: none;
	overflow: visible;
}

/* sparkle 1 - left side, green, 4s cycle */
.play-particles-1::before {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 18%;
	width: 5px;
	height: 5px;
	background-color: #4caf50;
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 6px 1px rgba(76, 175, 80, 0.6);
	box-shadow: 0 0 6px 1px rgba(76, 175, 80, 0.6);

	animation: pf-rise-a 4s ease-out infinite;
}

/* sparkle 2 - center-left, light green, 4.5s cycle, delayed */
.play-particles-1::after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 38%;
	width: 4px;
	height: 4px;
	background-color: #81c784;
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 5px 1px rgba(129, 199, 132, 0.5);
	box-shadow: 0 0 5px 1px rgba(129, 199, 132, 0.5);

	animation: pf-rise-b 4.5s ease-out 0.8s infinite;
}

/* sparkle 3 - center, white, 3.8s cycle, delayed */
.play-particles-2::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 52%;
	width: 3px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.85);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.4);
	box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.4);

	animation: pf-rise-c 3.8s ease-out 1.6s infinite;
}

/* sparkle 4 - center-right, green, 4.2s cycle, delayed */
.play-particles-2::after {
	content: "";
	position: absolute;
	bottom: 6px;
	left: 65%;
	width: 4px;
	height: 4px;
	background-color: #66bb6a;
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 5px 1px rgba(102, 187, 106, 0.5);
	box-shadow: 0 0 5px 1px rgba(102, 187, 106, 0.5);

	animation: pf-rise-d 4.2s ease-out 2.4s infinite;
}

/* sparkle 5 - right side, pale green, 4.8s cycle, delayed */
.play-particles-3::before {
	content: "";
	position: absolute;
	bottom: 3px;
	left: 80%;
	width: 3px;
	height: 3px;
	background-color: #a5d6a7;
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 4px 1px rgba(165, 214, 167, 0.5);
	box-shadow: 0 0 4px 1px rgba(165, 214, 167, 0.5);

	animation: pf-rise-e 4.8s ease-out 3.2s infinite;
}

/* sparkle 6 - far left, white sparkle, 5s cycle, delayed */
.play-particles-3::after {
	content: "";
	position: absolute;
	bottom: 12px;
	left: 8%;
	width: 3px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.7);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.35);
	box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.35);

	animation: pf-rise-f 5s ease-out 0.4s infinite;
}

/* --- floating dots that gently drift around the button --- */
@keyframes pf-orbit-slow {
	0%   { transform: translate(0, 0); }
	25%  { transform: translate(6px, -8px); }
	50%  { transform: translate(-4px, -5px); }
	75%  { transform: translate(-7px, 6px); }
	100% { transform: translate(0, 0); }
}

@keyframes pf-orbit-slow2 {
	0%   { transform: translate(0, 0); }
	25%  { transform: translate(-8px, 4px); }
	50%  { transform: translate(5px, 7px); }
	75%  { transform: translate(6px, -6px); }
	100% { transform: translate(0, 0); }
}

@keyframes pf-dot-pulse {
	0%, 100% { opacity: 0.35; }
	50% { opacity: 0.85; }
}

.play-dots {
	position: absolute;
	top: 20px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	pointer-events: none;
}

/* dot group 1: green tones, slow drift */
.play-dots-1::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 30%;
	width: 4px;
	height: 4px;
	background-color: rgba(76, 175, 80, 0.6);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow:
		0 0 4px rgba(76, 175, 80, 0.3),
		70px 4px 0 -1px rgba(129, 199, 132, 0.5),
		155px -2px 0 0 rgba(76, 175, 80, 0.45);
	box-shadow:
		0 0 4px rgba(76, 175, 80, 0.3),
		70px 4px 0 -1px rgba(129, 199, 132, 0.5),
		155px -2px 0 0 rgba(76, 175, 80, 0.45);

	animation: pf-orbit-slow 8s ease-in-out infinite, pf-dot-pulse 4s ease-in-out infinite;
}

.play-dots-1::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 20%;
	width: 3px;
	height: 3px;
	background-color: rgba(102, 187, 106, 0.5);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow:
		0 0 3px rgba(102, 187, 106, 0.3),
		90px 3px 0 0 rgba(76, 175, 80, 0.4),
		180px -1px 0 -1px rgba(165, 214, 167, 0.45);
	box-shadow:
		0 0 3px rgba(102, 187, 106, 0.3),
		90px 3px 0 0 rgba(76, 175, 80, 0.4),
		180px -1px 0 -1px rgba(165, 214, 167, 0.45);

	animation: pf-orbit-slow2 10s ease-in-out infinite, pf-dot-pulse 5s ease-in-out 1s infinite;
}

/* dot group 2: white sparkle tones, different timing */
.play-dots-2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -5px;
	margin-top: -2px;
	width: 3px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.45);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 3px rgba(255, 255, 255, 0.25);
	box-shadow: 0 0 3px rgba(255, 255, 255, 0.25);

	animation: pf-orbit-slow 12s ease-in-out infinite, pf-dot-pulse 3s ease-in-out 0.5s infinite;
}

.play-dots-2::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -5px;
	margin-top: -2px;
	width: 3px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.4);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 3px rgba(255, 255, 255, 0.2);

	animation: pf-orbit-slow2 11s ease-in-out infinite, pf-dot-pulse 3.5s ease-in-out 2s infinite;
}

/* --- button itself --- */
.play-button {
	position: relative;
	background-color: #4caf50;
	background-image: url(../images/icon-joystick.svg);
	background-repeat: no-repeat;
	background-position: 14px center;
	background-size: 30px 30px;
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	border: none;
	padding: 14px 10px;
	width: 270px;
	cursor: pointer;
	text-align: center;
	overflow: hidden;

	-webkit-border-radius: 28px;
	border-radius: 28px;

	-webkit-box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4), 0 0 25px rgba(76, 175, 80, 0.12);
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4), 0 0 25px rgba(76, 175, 80, 0.12);

	-webkit-animation: play-btn-glow 3s ease-in-out infinite;
	animation: play-btn-glow 3s ease-in-out infinite;

	-webkit-transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* shimmer streak */
.play-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
	pointer-events: none;

	-webkit-transform: skewX(-20deg);
	transform: skewX(-20deg);

	-webkit-animation: play-btn-streak 4s ease-in-out infinite;
	animation: play-btn-streak 4s ease-in-out infinite;
}

/* inner glow line */
.play-button::after {
	content: "";
	position: absolute;
	top: 1px;
	left: 15%;
	right: 15%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	pointer-events: none;
}

.play-button:hover {
	background-color: #43a047;

	-webkit-transform: scale(1.04);
	transform: scale(1.04);

	-webkit-box-shadow: 0 6px 30px rgba(76, 175, 80, 0.5), 0 0 60px rgba(76, 175, 80, 0.2);
	box-shadow: 0 6px 30px rgba(76, 175, 80, 0.5), 0 0 60px rgba(76, 175, 80, 0.2);
}

.play-button:active {
	-webkit-transform: scale(0.97);
	transform: scale(0.97);

	-webkit-box-shadow: 0 2px 10px rgba(76, 175, 80, 0.4);
	box-shadow: 0 2px 10px rgba(76, 175, 80, 0.4);
}

/* 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 {
	overflow: hidden;

	-webkit-border-radius: 10px;
	border-radius: 10px;

	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.game-p2p-header {
	padding: 6px 8px;
	font-size: 14px;
	color: #ffffff;
}

.game-p2p-item[item-type="friend"] {
	border: 1px solid rgba(37, 211, 102, 0.3);
}

.game-p2p-item[item-type="friend"] .game-p2p-header {
	background-color: #25d366;
}

.game-p2p-item[item-type="tournament"] {
	border: 1px solid rgba(23, 138, 228, 0.3);
}

.game-p2p-item[item-type="tournament"] .game-p2p-header {
	background-color: #178ae4;
}

.game-p2p-item[item-type="random"] {
	border: 1px solid rgba(253, 180, 45, 0.3);
}

.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 */

/* --- profile dialog shell --- */
.profile-dialog .big-dialog-inner {
	width: 320px;
	max-width: 96%;
	background-color: #ffffff;

	-webkit-border-radius: 14px;
	border-radius: 14px;

	-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.profile-dialog .big-dialog-content {
	background-color: #fafafa;
}

.profile-dialog .big-dialog-footer {
	background-color: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.profile-dialog .big-dialog-button[button-style="light"] {
	background-color: #f0f0f0 !important;
	color: #444444 !important;
}

.profile-dialog .profile-photo {
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* --- status badge --- */
.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;
}

/* --- likes pill --- */
.user-likes {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin-top: 18px;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	width: 140px;
	padding: 6px 20px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.04);

	-webkit-border-radius: 20px;
	border-radius: 20px;

	-webkit-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
}

.user-likes img {
	height: 28px;
	vertical-align: middle;
}

.user-likes span {
	margin-left: 6px;
	font-weight: bold;
	color: #333;
}

.user-likes table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.user-likes table td {
	width: 50%;
	text-align: center;
}

/* --- action icons --- */
.user-actions {
	width: 260px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 22px;
}

.user-actions table {
	width: 100%;
}

.user-actions table td {
	width: 25%;
	text-align: center;
}

.user-actions-icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #f2f3f5;
	background-size: 20px;
	cursor: pointer;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.user-actions-icon:hover {
	background-color: #e8e9ec;

	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);

	-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-actions-icon:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.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);
}

/* --- ratings section --- */
.user-ratings {
	width: 270px;
	margin-left: auto;
	margin-right: auto;
}

/* --- rating tabs (pill style) --- */
.user-rating-switch {
	display: inline-block;
	cursor: pointer;
	padding: 5px 8px;
	font-size: 15px;
	color: #666;
	background-color: transparent;

	-webkit-border-radius: 16px;
	border-radius: 16px;

	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.user-rating-switch:hover {
	background-color: rgba(33, 150, 243, 0.06);
	color: #2196f3;
}

.user-rating-switch[item-selected="yes"] {
	padding: 5px 8px;
	color: #ffffff;
	background-color: #2196f3;
	border-bottom: none;

	-webkit-box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
	box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* 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 */

/* --- keyframes --- */
@-webkit-keyframes roulette-ring-glow {
	0%, 100% { -webkit-box-shadow: 0 0 16px rgba(255, 215, 0, 0.3), 0 0 32px rgba(255, 140, 0, 0.12); }
	50% { -webkit-box-shadow: 0 0 26px rgba(255, 215, 0, 0.5), 0 0 52px rgba(255, 140, 0, 0.22); }
}
@keyframes roulette-ring-glow {
	0%, 100% { box-shadow: 0 0 16px rgba(255, 215, 0, 0.3), 0 0 32px rgba(255, 140, 0, 0.12); }
	50% { box-shadow: 0 0 26px rgba(255, 215, 0, 0.5), 0 0 52px rgba(255, 140, 0, 0.22); }
}

@-webkit-keyframes spin-btn-pulse {
	0%, 100% { -webkit-transform: scale(1); -webkit-box-shadow: 0 0 10px rgba(255, 215, 0, 0.35), inset 0 0 8px rgba(255, 215, 0, 0.06); }
	50% { -webkit-transform: scale(1.04); -webkit-box-shadow: 0 0 20px rgba(255, 215, 0, 0.65), inset 0 0 12px rgba(255, 215, 0, 0.12); }
}
@keyframes spin-btn-pulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 215, 0, 0.35), inset 0 0 8px rgba(255, 215, 0, 0.06); }
	50% { transform: scale(1.04); box-shadow: 0 0 20px rgba(255, 215, 0, 0.65), inset 0 0 12px rgba(255, 215, 0, 0.12); }
}

@-webkit-keyframes roulette-dots-orbit {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes roulette-dots-orbit {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@-webkit-keyframes progress-shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}
@keyframes progress-shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

@-webkit-keyframes lastwin-fadein {
	0% { opacity: 0; -webkit-transform: translateY(6px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes lastwin-fadein {
	0% { opacity: 0; transform: translateY(6px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* --- dialog shell (dark theme, scoped) --- */
.roulette-dialog .big-dialog-inner {
	width: 380px;
	max-width: 96%;
	background-color: #0f1923;

	-webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.roulette-dialog .big-dialog-header {
	border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.roulette-dialog .big-dialog-title {
	color: #ffd700;
}

.roulette-dialog .big-dialog-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background-color: rgba(0, 0, 0, 0.15);
}

.roulette-dialog .big-dialog-button {
	background-color: #ffd700;
	color: #0f1923;
	font-weight: bold;
}

.roulette-dialog .big-dialog-button:hover {
	opacity: 0.85;
}

.roulette-dialog .big-dialog-button[button-style="light"] {
	background-color: rgba(255, 255, 255, 0.08) !important;
	color: rgba(255, 255, 255, 0.7) !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- wheel wrapper (gold ring) --- */
.roulette-wrapper {
	display: inline-block;
	position: relative;
	padding: 10px;
	background: linear-gradient(160deg, #ffd700 0%, #ff8c00 25%, #ffc107 50%, #ff6347 75%, #ffd700 100%);

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-animation: roulette-ring-glow 3s ease-in-out infinite;
	animation: roulette-ring-glow 3s ease-in-out infinite;
}

.roulette-wrapper::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	bottom: 4px;
	background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,215,0,0.1) 100%);
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;
}

/* --- pointer --- */
.roulette-pointer {
	position: absolute;
	top: -4px;
	left: 50%;
	margin-left: -15px;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 28px solid #ffd700;
	z-index: 10;

	-webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
}

.roulette-pointer::after {
	content: "";
	position: absolute;
	top: -32px;
	left: -11px;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-top: 9px solid #fffde7;
}

/* --- orbiting dots --- */
.roulette-dots {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-animation: roulette-dots-orbit 25s linear infinite;
	animation: roulette-dots-orbit 25s linear infinite;
}

.roulette-dots::before,
.roulette-dots::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	background-color: #ffd700;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 6px rgba(255, 215, 0, 0.9);
	box-shadow: 0 0 6px rgba(255, 215, 0, 0.9);
}

.roulette-dots::before {
	top: 50%;
	left: -1px;
	margin-top: -3px;
}

.roulette-dots::after {
	top: 50%;
	right: -1px;
	margin-top: -3px;
}

/* --- wheel core --- */
.roulette {
	display: inline-block;
	position: relative;
	overflow: hidden;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.roulette canvas {
	display: block;

	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

/* --- spin button --- */
.roulette span {
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	height: 30%;
	margin: -15%;
	background: linear-gradient(150deg, #1a1a2e, #16213e);
	color: #ffd700;
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #ffd700;
	z-index: 5;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 10px rgba(255, 215, 0, 0.35), inset 0 0 8px rgba(255, 215, 0, 0.06);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.35), inset 0 0 8px rgba(255, 215, 0, 0.06);

	-webkit-animation: spin-btn-pulse 2s ease-in-out infinite;
	animation: spin-btn-pulse 2s ease-in-out infinite;

	-webkit-transition: background 0.3s ease, box-shadow 0.3s ease;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.roulette span:hover {
	background: linear-gradient(150deg, #16213e, #0f3460);

	-webkit-box-shadow: 0 0 28px rgba(255, 215, 0, 0.75), inset 0 0 14px rgba(255, 215, 0, 0.15);
	box-shadow: 0 0 28px rgba(255, 215, 0, 0.75), inset 0 0 14px rgba(255, 215, 0, 0.15);
}

.roulette span[item-loading="yes"] {
	-webkit-animation: none;
	animation: none;
}

.roulette span::after {
	content: "";
	position: absolute;
	top: -12px;
	border: 10px solid transparent;
	border-bottom-color: #ffd700;
	border-top: none;

	-webkit-filter: drop-shadow(0 -2px 3px rgba(255, 215, 0, 0.3));
	filter: drop-shadow(0 -2px 3px rgba(255, 215, 0, 0.3));
}

/* --- play icon inside spin button --- */
.spin-icon {
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid #ffd700;
	margin-left: 4px;

	-webkit-filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.45));
	filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.45));
}

/* --- stats area --- */
.roulette-stats {
	margin-top: 20px;
}

.roulette-stats-card {
	background: #162033;
	padding: 20px;
	border-top: 2px solid rgba(255, 215, 0, 0.25);

	-webkit-border-radius: 14px;
	border-radius: 14px;

	-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* --- total label --- */
.roulette-total-label {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 6px;
}

/* --- total row --- */
.roulette-total-row {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.roulette-total-row .roulette-coin-img {
	width: 30px;
	height: 30px;
	margin-right: 10px;

	-webkit-filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.45));
	filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.45));
}

.roulette-total-row .roulette-total {
	font-size: 30px;
	font-weight: bold;
	color: #ffd700;
	letter-spacing: 1px;

	text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
	-webkit-text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

/* --- last win badge --- */
.roulette-last-win {
	text-align: center;
	margin-top: 10px;
	min-height: 22px;
}

.roulette-last-win span {
	display: inline-block;
	font-size: 13px;
	color: #34d058;
	background-color: rgba(52, 208, 88, 0.1);
	padding: 3px 14px;
	letter-spacing: 0.5px;

	-webkit-border-radius: 12px;
	border-radius: 12px;

	-webkit-animation: lastwin-fadein 0.4s ease;
	animation: lastwin-fadein 0.4s ease;
}

/* --- progress bar --- */
.roulette-progress-container {
	margin-top: 16px;
}

.roulette-progress-track {
	position: relative;
	width: 100%;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.07);
	overflow: hidden;

	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.roulette-progress-track .progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #ffd700, #ffab00, #ffd700, #ffab00, #ffd700);
	background-size: 200% 100%;

	-webkit-border-radius: 4px;
	border-radius: 4px;

	-webkit-box-shadow: 0 0 6px rgba(255, 215, 0, 0.35);
	box-shadow: 0 0 6px rgba(255, 215, 0, 0.35);

	-webkit-animation: progress-shimmer 2.5s linear infinite;
	animation: progress-shimmer 2.5s linear infinite;

	-webkit-transition: width 0.6s ease;
	transition: width 0.6s ease;
}

.roulette-progress-labels {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	margin-top: 5px;
}

/* --- logo row --- */
.roulette-logo-row {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 13px;
}

.roulette-logo-row img {
	width: 24px;
	height: 24px;
	margin-right: 8px;

	-webkit-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
	box-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
}

.roulette-logo-row span {
	color: rgba(255, 255, 255, 0.35);
}

/* 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: 3px solid #ff4da6;
}

.big-dialog[data-gender="male"] .big-dialog-content {
	border-top: 3px solid #4a90d9;
}