@charset "utf-8";

html {
	background-color: #000;
}

* {
	margin: 0;
	padding: 0;
	/* font-family: Proxima Nova Rg, Neo Sans Pro, Arial, Helvetica, FreeSans, "Liberation Sans"; */
	font-family: Arial, Helvetica, FreeSans, "Liberation Sans";
	font-size: 13px;
}

div {
	box-sizing: border-box;
}

body {
	position: relative;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-position: 50% 0%;
	background-size: cover;
	background-repeat: repeat;
	/* background-image: url('../image/flag_1600x900.jpg'); */
	/* background-image: url('../image/bg-main.jpg'); */
	/* background: url('../image/bg-main.jpg') 50% 0% / cover repeat fixed; */
}

::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-thumb{
    border-width:1px 1px 1px 2px;
    border-color: #777;
    background-color: #2f4785;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    border-width: 1px 1px 1px 2px;
    border-color: #555;
    background-color: #0086ff;
}
::-webkit-scrollbar-track{
    border-width:0;
	background-color: #eee;
	border-radius: 4px;
}
::-webkit-scrollbar-track:hover{
    border-left: solid 1px #aaa;
    background-color: #ddd;
}

#blur {
	z-index: -1;
	background-color: transparent;
	background-image: url(../image/flag_1600x900.jpg);
	background-size: cover;
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}
/* @media (max-width: 610px) { */
	/* #blur { */
		/* background-size: 100%; */
	/* } */
/* } */
/* Canonical */
.aiv * {
	color: #FFFFFF;
}

h1 {
	font-size: 1.4em;
	margin-bottom: 10px;
}

h2 {
	font-size: 1.3em;
	margin-bottom: 5px;
}

h3 {
	font-size: 1.1em;
	margin-bottom: 5px;
}

hr {
	border: 0;
	border-top: 1px solid #eee;
	margin: 10px 0;
}

.aiv a {
	font-size: inherit;
	color: #4579ff;
}
.aiv a:hover {
	color: #7098ff;
}

p {
	font-size: inherit;
	margin: 0 0 5px;
}

.notice-title {
	text-align: center;
	font-size: 1.4em;
}

.notice-title span {
	display: inline-block;
	color: #ff4f4f; /* fallback */

	background: linear-gradient(
		110deg,
		#ff4f4f 20%,
		#ffd166 40%,
		#ffffff 50%,
		#ffd166 60%,
		#ff4f4f 80%
	);
	background-size: 250% 100%;
	background-position: 200% center;

	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;

	animation: notice-shimmer 2.2s linear infinite;
}

@keyframes notice-shimmer {
	to {
		background-position: -50% center;
	}
}

.aiv span {
    font-size: inherit;
	color: inherit;
}

input[type=text], input[type=email], input[type=password], input[type=button], input[type=submit], select, textarea, button.btn {
	outline: none;
	background-color: rgba(111, 111, 111, 0.5);
	border: 0px solid #ffffff2b;
	border-radius: 3px;
	padding: 5px;
}

input[type=text].error, input[type=email].error, input[type=password].error, input[type=button].error, input[type=submit].error, select.error, textarea.error {
	border: 1px solid #ff00007a;
}

input[type=button], input[type=submit], button.btn {
	outline: none;
	cursor: pointer;
}
input[type=button]:disabled, input[type=submit]:disabled, button.btn:disabled {
	background-color: rgba(64, 64, 64, 0.5) !important;
	color: #afafaf !important;
}
input[type=button]:hover, input[type=submit]:hover, button.btn:hover {
	background-color:  rgba(255, 255, 255, 0.5);
	color: #ffffff;
}
input[type=button]:active, input[type=submit]:active, button.btn:active {
	background-color:  rgba(18, 48, 116, 0.5);
	color:  #ffffff;
}
.custom-control {
	position: relative;
	display: block;
	min-height: 1.5rem;
	padding-left: 1.5rem;
}
input[type=checkbox], input[type=radio] {
	box-sizing: border-box;
	padding: 0;
}
.custom-control-input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.custom-control-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
}
.custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: #2f4785;
	background-color: #3b5fbd;
}
.custom-control-label::before {
	position: absolute;
	top: .25rem;
	left: -1.5rem;
	display: block;
	width: 1rem;
	height: 1rem;
	pointer-events: none;
	content: "";
	background-color: #fff;
	border: #adb5bd solid 1px;
}
.custom-checkbox .custom-control-label::before {
	border-radius: .25rem;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-control-label::after {
	position: absolute;
	top: .25rem;
	left: -1.4rem;
	display: block;
	width: 1rem;
	height: 1rem;
	content: "";
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 10px;
}
.block {width: 100%;}
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-right {text-align: right;}
.float-left {float: left!important;}
.float-right {float: right!important;}

.form-group {
	box-sizing: border-box;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 5px;
	overflow: hidden;
}
	.form-group label {
		box-sizing: inherit;
		display: inline-block;
		max-width: 100%;
		padding-top: 3px;
		margin-bottom: 5px;
		font-weight: 600;
	}
	.form-group label.right {
		text-align: right;
	}
	.form-group .form-group__input {
		
	}
	.form-group .form-group__input .help {
		font-size: 0.85em;
		color: #d8d8d8;
		padding: 0 5px;
	}
	.form-group .form-group__control {
		display: block;
		box-sizing: inherit;
		width: 100%;
	}
	.form-group textarea.form-group__control {
		resize: vertical;
	}
	
	.form-group p {
		margin-left: 5px;
	}

.container:before, .form-group:before {
    display: table;
    content: " ";
}

.button-group {
	
}

.button-group-right {
	text-align: right;
}

.aiv .btn {
    background-color: #3a77ae;
    padding: 5px 10px;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    outline: none;
    border: 0;
    border-radius: 3px;
    margin-bottom: 5px;
	text-decoration: none;
}
.aiv .btn:hover {
	background-color: #2c578c;
	color: #ffffff;
}
.aiv .btn-danger {
	background-color: #e61818;
}
.aiv .btn-danger:hover {
	background-color: #f34e4e;
	color: #ffffff;
}

.aiv .btn-default, .aiv .btn-close {
    background-color: #3a77ae;
    padding: 5px 10px;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    outline: none;
    border: 0;
    border-radius: 3px;
    margin-bottom: 5px;
	text-decoration: none;
	box-sizing: border-box;
}

.aiv .btn-default:hover {
	background-color: #2c578c;
	color: #ffffff;
}

.aiv .btn-close {
	margin-bottom: 10px;
    background-color: #e61818;
	font-weight: bold;
}

.aiv .btn-close:hover {
	background-color: #f34e4e;
	color: #ffffff;
}

.max700 {
	max-width: 700px;
}

.btn-pull {
	width: 100%;
	/* height: 30px; */
}

.btn-right {
	float: right;
}

.btn-left {
	float: left;
}

/* Canonical */

.aiv .wr {
    position: relative;
    width: 880px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 50px;
}

@media (max-width: 800px) {
	.aiv .wr {
		width: 100%;
		/* margin-top: 5px; */
	}
}

.aiv .wr .header {
	width: 100%;
	margin-bottom: 5px;
}

.aiv .wr .header.v1 .circle {
	/* background-color: #3a77ae; */
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 140px 140px 0 0;
	width: 120px;
	height: 60px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.aiv .wr .header.v2 .circle {
	display: block;
	width: 120px;
	height: 60px;
}

.aiv .wr .header.v1 .logo {
    position: absolute;
    top: 35px;
    left: calc(50% - 55px);
    border-radius: 132px;
    width: 110px;
    height: 110px;
    z-index: 7;
	background-color: #2f4785;
}
.aiv .wr .header.v1 .logo.ua {
	background-image: url(../image/ua.jpg);
	background-size: 172px;
	background-color: #fed501;
}

.aiv .wr .header.v1 .logo > div {
    border-radius: inherit;
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../image/logo_big_t_72.png);
    /* background-color: #2f4785; */
    background-repeat: no-repeat;
    background-size: 72px;
    background-position: center center;
}

.aiv .wr .header.v2 .logo {
    position: absolute;
    top: 35px;
    left: calc(50% - 55px);
    background-color: #333d4c;
    background-image: url(../image/logo_big_t_72.png);
    background-repeat: no-repeat;
    background-size: 72px;
    background-position: center center;
    border-radius: 132px;
    width: 110px;
    height: 110px;
    z-index: 7;
}

.aiv .wr .header.v3 .circle {
	display: block;
	width: 120px;
	height: 60px;
}

.aiv .wr .header.v3 .logo {
	position: absolute;
	top: 35px;
	left: calc(50% - 55px);
	background-color: #2f4785;
	background-image: url(../image/logo_big_t_72.png);
	background-repeat: no-repeat;
	background-size: 72px;
	background-position: center center;
	border-radius: 132px;
	width: 110px;
	height: 110px;
	z-index: 7;
	border: 5px solid #ffffff;
}

.aiv .wr .header.v3 .top-menu {
	border-top: 5px solid #ffffff;
	border-radius: 10px 10px 0 0;
}

.aiv .wr .header .top-menu {
	display: flex;
	background-color: rgba(0, 0, 0, 0.75);
	position: relative;
	overflow: visible;
	padding: 3px;
	border-radius: 5px 5px 0 0;
	/* border-top: 5px solid #3a77ae; */
}

.aiv .wr > .main {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
}

.aiv .wr > .main .sidebar__wrapper {
	width: 180px;
	/* float: left; */
	position: relative;
}

.aiv .wr > .main .sidebar__wrapper .sb-block {
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	min-height: 32px;
	/* border-top: 5px solid #3a77ae; */
	margin-bottom: 5px;
}

.auth-block {
	padding-top: 5px;
	overflow: hidden;
}

.auth-block .avatar {
	background-size: 168px;
	background-repeat: no-repeat;
	width: 170px;
	height: 170px;
	border: 1px solid #3a77ae;
	margin-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
}

.aiv .content__wrapper {
	width: calc(100% - 185px);
}

.aiv .content__wrapper-full {
	width: 100%;
}

@media (max-width: 880px) {
	.aiv .wr .main {
		flex-wrap: wrap;
	}
	.aiv .wr .main .sidebar__wrapper {
		width: 100%;
		/* float: left; */
		position: relative;
	}
	.aiv .content__wrapper {
		width: 100%;
	}
}

.aiv .article__wrapper {
	background-color: rgba(0, 0, 0, 0.75);
	min-height: 1px;
	width: 100%;
	float: right;
	padding-top: 10px;
	/* border-top: 5px solid #3a77ae; */
	margin-bottom: 5px;
	overflow: hidden;
}

.aiv .footer {
	width: 100%;
	border-radius: 0 0 5px 5px;
}

.aiv .footer .ft-body {
	display: flex;
	justify-content: space-between;
	background-color: rgba(0, 0, 0, 0.75);
	min-height: 32px;
	width: 100%;
	padding: 5px;
	/* border-top: 5px solid #3a77ae; */
	border-radius: 0 0 5px 5px;
}
.aiv .footer .ft-body .col {
	margin: 0 10px;
}

.aiv .footer .ft-body .col.fk {
	display: flex;
	align-items: center;
}
.aiv .footer .ft-body .col.fk img {
	width: 75px;
}

.top-menu ul.menu {
	display: flex;
	flex-wrap: wrap;
	align-self: flex-end;
}
.top-menu .top-allow {
	width: 100%;
	padding-top: 60px;
}
.top-menu ul.menu li {
	list-style: none;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 3px;
	font-weight: 600;
	color: #ffffff;
}

.top-menu ul.menu li:hover {
	background-color: #3a77ae;
	color: #ffffff;
	border-radius: 3px;
}

.aiv .top-menu ul.menu li a {
	display: block;
	padding: 5px;
	text-decoration:none;
	color: #ffffff;
}
		
/* .aiv .wr .header .top-menu ul.menu .item { */
	/* display: inline-block; */
	/* text-transform: uppercase; */
	/* font-size: 12px; */
	/* text-decoration: none; */
	/* color: #1f1f1f; */
	/* margin-left: 3px; */
	/* border-radius: 3px 3px 3px 3px; */
	/* -moz-border-radius: 3px 3px 3px 3px; */
	/* -webkit-border-radius: 3px 3px 3px 3px; */
	/* padding: 5px; */
	/* font-weight: 600; */
/* } */

/* .aiv .wr .header .top-menu ul.menu .item:hover { */
	/* background-color: #3a77ae; */
	/* color: #ffffff; */
/* } */

/* Cols */
.row {
	margin-left: -5px;
	margin-right: -5px;
	display: flex;
	flex-wrap: wrap;
}

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
	float: left;
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
}

.col-lg-1 {
	width: 8.33%;
}
.col-lg-2 {
	width: 16.66%;
}
.col-lg-3 {
	width: 25%;
}
.col-lg-4 {
	width: 33.33%;
}
.col-lg-5 {
	width: 41.66%;
}
.col-lg-6 {
	width: 50%;
}
.col-lg-7 {
	width: 58.33%;
}
.col-lg-8 {
	width: 66.66%;
}
.col-lg-9 {
	width: 75%;
}
.col-lg-10 {
	width: 83.33%;
}
.col-lg-11 {
	width: 91.66%;
}
.col-lg-12 {
	width: 100%;
}

.offset-lg-1 {
	margin-left: 8.33%;
}
.offset-lg-2 {
	margin-left: 16.66%;
}
.offset-lg-3 {
	margin-left: 25%;
}
.offset-lg-4 {
	margin-left: 33.33%;
}
.offset-lg-5 {
	margin-left: 41.66%;
}
.offset-lg-6 {
	margin-left: 50%;
}
.offset-lg-7 {
	margin-left: 58.33%;
}
.offset-lg-8 {
	margin-left: 66.66%;
}
.offset-lg-9 {
	margin-left: 75%;
}
.offset-lg-10 {
	margin-left: 83.33%;
}
.offset-lg-11 {
	margin-left: 91.66%;
}
.offset-lg-12 {
	margin-left: 100%;
}

.alert {
	padding: 3px;
	border-radius: 3px;
	margin-bottom: 5px;
	text-align: center;
}

.alert-error {
	background-color: #ff0000;
	color: #ffffff;
}

.alert-success {
	background-color: #50bb2d;
	color: #ffffff;
}
	.success a {color: #9dff34;}
	.success a:hover {color: #84ff00;}

.content {
    font-size: inherit;
    border-radius: inherit;
    padding: 5px;
}

.art-content {
    font-size: inherit;
    border-radius: inherit;
    padding: 5px 10px;
}

/* Cols */

/* Rooms */
.room-members {
	background-color: rgba(58, 58, 58, 0.5);
}
.rooms {
	width: 100%;
	min-height: 30px;
	border-radius: inherit;
}

.rooms-control .description {
	font-size: 0.95em;
	color: #ffffffad;
	margin-bottom: 10px;
}

	.rooms .room, #roomslist .room, .rooms .room-members, #roomslist .room-members {
		background-size: cover;
		border-radius: 3px;
		width: 100%;
		min-height: 50px;
		margin-bottom: 15px;
	}	
	.rooms .room, #roomslist .room {
		background-color: rgba(0, 0, 0, 0.5);
	}	
	.rooms .room-members, #roomslist .room-members {
		background-color: rgba(58, 58, 58, 0.5);
	}
		.rooms .room .room_users, #roomslist .room .room_users, .rooms .room-members .room_users, #roomslist .room-members .room_users {
			display: flex;
			flex-wrap: wrap;
			justify-content: flex-start;
			padding: 5px;
		}

		.rooms .room .room_name, #roomslist .room .room_name, .rooms .room-members .room_name, #roomslist .room-members .room_name {
			display: flex;
			justify-content: center;
			background-color: rgba(0, 0, 0, 0.5);
			padding: 5px;
			border-radius: 3px 3px 0 0;
			text-align: center;
			font-size: 1.1em;
			font-weight: bold;
			text-shadow: 0 -1px 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000, 0 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
		}
		
		.rooms .room .room_name > div, #roomslist .room .room_name > div, .rooms .room-members .room_name > div, #roomslist .room-members .room_name > div {
			margin-right: 5px;
		}
		
		.rooms .room .room_name > div.marks, #roomslist .room .room_name > div.marks, .rooms .room-members .room_name > div.marks, #roomslist .room-members .room_name > div.marks {
			margin-right: 0;
			position: relative;
		}
		
		.rooms .room .room_name > div.marks > i, #roomslist .room .room_name > div.marks > i, .rooms .room-members .room_name > div.marks > i, #roomslist .room-members .room_name > div.marks > i {
			width: 20px;
			height: 20px;
			display: flex;
			background-repeat: no-repeat;
			background-size: 100%;
			background-position: 50%;
			position: absolute;
			top: -2px;
		}
		
		.room_name > div.marks > i.check-mark {
			background-image: url(/image/system_icons/check-mark.svg);
		}

		.rooms .room .room_desc, #roomslist .room .room_desc, .rooms .room-members .room_desc, #roomslist .room-members .room_desc {
			background-color: rgba(0, 0, 0, 0.5);
			padding-right: 5px;
			padding-left: 5px;
			padding-bottom: 5px;
			text-align: center;
			color: #71a1cc;
			font-size: 0.85em;
			text-shadow: 0 -1px 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000, 0 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
		}

		.rooms .room .user, #roomslist .room .user, .rooms .room-members .user, #roomslist .room-members .user {
			cursor: pointer;
			background-color: rgba(0, 0, 0, 0.5);
			/* border-radius: 50px 50px 20px 20px; */
			border-radius: 3px;
			padding: 10px;
			width: 90px;
			margin-right: 5px;
			margin-bottom: 5px;
			vertical-align: top;
			text-align: center;
			border-top: 2px solid #000000;
			border-bottom: 2px solid #000000;
		}
		.rooms .room .user.friend, #roomslist .room .user.friend, .rooms .room-members .user.friend, #roomslist .room-members .user.friend {
			border-top: 2px solid #00b500;
			border-bottom: 2px solid #00b500;
		}
		.rooms .room .user.enemy, #roomslist .room .user.enemy, .rooms .room-members .user.enemy, #roomslist .room-members .user.enemy {
			border-top: 2px solid #ff0000;
			border-bottom: 2px solid #ff0000;
		}
		.rooms .room .user:hover, #roomslist .room .user:hover, .rooms .room-members .user:hover, #roomslist .room-members .user:hover {
			background-color: rgba(255, 255, 255, 0.5);
		}
		.rooms .room .user:hover .head .icon, #roomslist .room .user:hover .head .icon, .rooms .room-members .user:hover .head .icon, #roomslist .room-members .user:hover .head .icon {
			background-size: 80px;
			background-position: 50%;
		}
		
			.rooms .room .user .head, 
			#roomslist .room .user .head, 
			.rooms .room-members .user .head, 
			#roomslist .room-members .user .head {
				height: 76px;
			}		
				.rooms .room .user .head .icon, 
				#roomslist .room .user .head .icon, 
				.rooms .room-members .user .head .icon, 
				#roomslist .room-members .user .head .icon {
					background-size: 70px;
					background-repeat: no-repeat;
					height: 70px;
					width: 70px;
					/* border-radius: 100px; */
					border-radius: 3px;
				}
				
				.rooms .room .user .head .sign, 
				#roomslist .room .user .head .sign, 
				.rooms .room-members .user .head .sign, 
				#roomslist .room-members .user .head .sign {
					display: none;
					position: absolute;
					float: right;
					margin-top: -20px;
					margin-left: 50px;
					width: 26px;
					height: 26px;
					background-color: #000000;
					border: 2px solid #ffffff;
					border-radius: 30px;
				}		
			
			.rooms .room .user span, 
			#roomslist .room .user span, 
			.rooms .room-members .user span, 
			#roomslist .room-members .user span {
				word-break: break-all;
				font-size: 0.8em;
				text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5), -1px -1px 1px rgba(0, 0, 0, 0.5), 1px -1px 1px rgba(0, 0, 0, 0.5), -1px 1px 1px rgba(0, 0, 0, 0.5);
			}			
			.rooms .room .user .status, 
			#roomslist .room .user .status, 
			.rooms .room-members .user .status, 
			#roomslist .room-members .user .status {
				display: inline-block;
				height: 6px;
				width: 6px;
				border-radius: 100px;
				background-color: transparent;
			}
			.rooms .room-members .user .status, 
			#roomslist .room-members .user .status {
				margin-right: 3px;
			}			
			.rooms .room .user .status.online, 
			#roomslist .room .user .status.online, 
			.rooms .room-members .user .status.online, 
			#roomslist .room-members .user .status.online {
				background-color: #00c700;
			}
			.rooms .room-members .user {
				cursor: pointer;
			}
			.rooms .room-members .user:hover {
				background-color: #525252cc;
			}
			.rooms .room .user span.state, 
			#roomslist .room .user span.state,
			.rooms .room-members .user span.state, 
			#roomslist .room-members .user span.state, 
			.rooms .room .user span.ctitle, 
			#roomslist .room .user span.ctitle,
			.rooms .room-members .user span.ctitle, 
			#roomslist .room-members .user span.ctitle {
				display: block;
			}
			.rooms .room .user span.ctitle, 
			#roomslist .room .user span.ctitle, 
			.rooms .room-members .user span.ctitle, 
			#roomslist .room-members .user span.ctitle {
				color: #90c8e3;
			}
			.rooms .room .user.host span.state, 
			#roomslist .room .user.host span.state, 
			.rooms .room-members .user.host span.state, 
			#roomslist .room-members .user.host span.state {
				color: #fff700;
			}
			.rooms .room .user.owner span.state, 
			#roomslist .room .user.owner span.state, 
			.rooms .room-members .user.owner span.state, 
			#roomslist .room-members .user.owner span.state {
				color: #fff700;
			}
			.rooms .room .user.admin span.state, 
			#roomslist .room .user.admin span.state, 
			.rooms .room-members .user.admin span.state, 
			#roomslist .room-members .user.admin span.state {
				color: #ff4d4d;
			}
			.rooms .room .user.voice span.state, 
			#roomslist .room .user.voice span.state, 
			.rooms .room-members .user.voice span.state, 
			#roomslist .room-members .user.voice span.state {
				color: #00b8ff;
			}
			.rooms .room .user.police span.state, 
			#roomslist .room .user.police span.state, 
			.rooms .room-members .user.police span.state, 
			#roomslist .room-members .user.police span.state {
				color: #0585f9;
			}
			.rooms .room .user.gprosecutor span.state, 
			#roomslist .room .user.gprosecutor span.state, 
			.rooms .room-members .user.gprosecutor span.state, 
			#roomslist .room-members .user.gprosecutor span.state {
				color: #0585f9;
			}
		
		.rooms .room .room_foot, #roomslist .room .room_foot, .rooms .room-members .room_foot, #roomslist .room-members .room_foot {
			background-color: rgba(0, 0, 0, 0.5);
			height: 30px;
			border-radius: 0 0 3px 3px;
			text-align: center;
			text-shadow: 0 -1px 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000, 0 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
		}
		.rooms .room .room_foot p, #roomslist .room .room_foot p, .rooms .room-members .room_foot p, #roomslist .room-members .room_foot p {
			padding: 8px;
			margin: 0;
		}
		
		.rooms .room .in, #roomslist .room .in, .rooms .room-members .in, #roomslist .room-members .in {
			outline: none;
			background-color: transparent;
			border: 0;
			border-radius: 0 0 3px 3px;
			height: 30px;
			width: 100%;
			cursor: pointer;
			text-shadow: 0 -1px 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000, 0 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
		}
		
		.rooms .room .in:hover, #roomslist .room .in:hover, .rooms .room-members .in:hover, #roomslist .room-members .in:hover {
			background-color: rgba(255, 255, 255, 0.5);
		}
img.key {
	width: 12px;
}
.char-info {}
.char-info .name {
	font-weight: bold;
	color: #ff8f00;
	text-align: center;
	display: block;
}
.char-info img {
	display: block;
	max-width: 150px;
	margin: 0 auto;
	margin-bottom: 5px;
}
.char-info span.min {
	font-size: 0.85em;
}
/* Rooms */	

/* Room */
.roomBox {
	padding-top: 46px;
}


#talkline {
	position: relative;
	background-color: rgba(0, 0, 0, 0.5);
	margin: 0 auto;
	width: 600px;
	border-radius: 3px;
	box-shadow: 0px 0px 15px 5px #000000, inset 0 3px 18px rgba(100, 100, 100, .25);
}

#talkline .talkline_body {
	position: relative;
	padding: 5px;
	border-radius: inherit;
	z-index: 130;
}
#talkline .ghostline {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: 128;
}

#roomstat {
	width: 100%;
}
.message_box ul.menu {
    display: block;
    float: left;
    height: 30px;
    list-style: none;
    line-height: 30px;
}
.message_box ul.menu li {
	display: list-item;
	cursor: pointer;
	border-radius: 3px;
	width: 30px;
	float: left;
	margin-right: 5px;
}
.message_box ul.menu li.setting {
    background: rgba(0, 0, 0, 0.5) url(../image/system_icons/setting.png) left top no-repeat;
}
.message_box ul.menu li.setting:hover {
    background: rgba(255, 255, 255, 0.5) url(../image/system_icons/settingh.png) left top no-repeat;
}
.message_box ul.menu li.sound_on {
    background: rgba(0, 0, 0, 0.5) url(../image/system_icons/soundon.png) left top no-repeat;
}
.message_box ul.menu li.sound_on:hover {
    background: rgba(255, 255, 255, 0.5) url(../image/system_icons/soundoff.png) left top no-repeat;
}
.message_box ul.menu li.sound_off {
    background: rgba(255, 255, 255, 0.5) url(../image/system_icons/soundoff.png) left top no-repeat;
}
.message_box ul.menu li.sound_off:hover {
    background: rgba(0, 0, 0, 0.5) url(../image/system_icons/soundon.png) left top no-repeat;
}
.message_box ul.menu li.member_off {
    background: rgba(0, 0, 0, 0.5) url(../image/system_icons/memberoff.png) left top no-repeat;
}
.message_box ul.menu li.member_off:hover {
    background: rgba(255, 255, 255, 0.5) url(../image/system_icons/memberon.png) left top no-repeat;
}
.message_box ul.menu li.member_on {
	background: rgba(255, 255, 255, 0.5) url(../image/system_icons/memberon.png) left top no-repeat;
}
.message_box ul.menu li.member_on:hover {
	background: rgba(0, 0, 0, 0.5) url(../image/system_icons/memberoff.png) left top no-repeat;
}
#room_name {
	text-align: center;
	font-size: 12px;
	float: left;
	padding: 8px;
}

.create_room {
	outline: none;
	float: left;
	height: 30px;
	width: 440px;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.5);
	background-size: 30px 30px;
	border: 0;
	cursor: pointer;
	list-style-type: none;
	overflow: hidden;
}
.exit {
	outline: none;
	float: right;
	height: 30px;
	width: 30px;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url(../image/system_icons/roomenter_x.png);
	background-size: 30px 30px;
	border: 0;
	cursor: pointer;
	list-style-type: none;
	overflow: hidden;
}
.exit:hover {
	background-color: rgba(255, 255, 255, 0.5);
}
#room_description {
	background-color: rgba(0, 0, 0, 0.5);
	color: #829CFF;
	border-radius: 3px;
	margin-top: 3px;
	margin-bottom: 3px;
	padding: 2px;
	font-size: 0.8em;
}
.message_box {
	margin-bottom: 15px;
}
#roomstock {
	width: 100%;
	height: 67px;
}
	#roomstock .profilestat {
		background-size: 67px;
		background-repeat: no-repeat;
		opacity: 0.6;
		float: left;
		cursor: pointer;
		outline: none;
		background-color: rgba(0, 0, 0, 0.5);
		height: 100%;
		width: 67px;
		border: 0px solid rgba(0,0,0,0.2);
		border-right: 0;
		border-radius: 3px 0 0 3px;
	}
	#roomstock .profilestat:hover {
		background-color: rgba(255, 255, 255, 0.5);
		border-radius: 3px 0 0 3px;
		opacity: 1;
	}
	#roomstock .post {
		background-position: center center;
		background-repeat: no-repeat;
		float: left;
		cursor: pointer;
		outline: none;
		background-color: rgba(0, 0, 0, 0.5);
		height: 100%;
		width: 67px;
		border: 0px solid rgba(0,0,0,0.2);
		border-left: 0;
	}
	#roomstock .post.send {
		background-image: url('../image/system_icons/send2-white.svg');
		border-radius: 0 3px 3px 0;
		background-size: 36px;
	}
	#roomstock .post.send:hover {
		background-image: url('../image/system_icons/send2.svg');
		background-position: center center;
		background-repeat: no-repeat;
		background-color: rgba(255, 255, 255, 0.5);
	}
	#roomstock .post.send:active {
		background-image: url('../image/system_icons/send2.svg');
		background-position: center center;
		background-repeat: no-repeat;
		background-color: rgba(18, 48, 116, 0.5);;
	}
	#roomstock .post.send.sending {
		background-image: url('../image/system_icons/sending-white.svg');
		border-radius: 0 3px 3px 0;
		background-size: 36px;
	}
	#roomstock .post.send.sending:hover {
		background-image: url('../image/system_icons/sending.svg');
		background-position: center center;
		background-repeat: no-repeat;
		background-color: rgba(255, 255, 255, 0.5);
	}
	#roomstock .post.prepost {
		background-image: url('../image/system_icons/more-three-dots-grey.svg');
		background-size: 30px;
		width: 40px;
	}
	#roomstock .post.prepost:hover {
		background-image: url('../image/system_icons/more-three-dots.svg');
		background-position: center center;
		background-repeat: no-repeat;
		background-color: rgba(255, 255, 255, 0.5);
	}
	#roomstock #message {
		box-sizing: border-box;
		outline: none;
		background: rgba(0, 0, 0, 0.5);
		color: #ffffff;
		resize: none;
		display: block;
		float: left;
		height: 100%;
		width: calc(100% - 174px);
		/* width: calc(100% - 201px); */
		/* width: calc(100% - 134px); */
		font-size: 12px;
		letter-spacing: 1px;
		padding: 10px;
		border: 0px solid rgba(0,0,0,0.2);
		border-radius: 0;
		overflow-y: hidden;
	}
	#roomstock-adv {
		display: block;
		width: 100%;
		padding-top: 5px;
	}
		#roomstock-adv #secondary {
			margin-bottom: 5px;
			width: 100%;
			box-sizing: border-box;
			outline: none;
			background: rgba(0, 0, 0, 0.5);
			color: #ffffff;
			resize: none;
			padding: 5px;
			height: 3em;
		}
		#roomstock-adv .adv-items {
			display: flex;
			background-color: rgba(0, 0, 0, 0.5);
			width: 100%;
			height: 28px;
			border-radius: 3px;
			/* padding: 3px; */
		}	
			#roomstock-adv .adv-items .adv-btn {
				cursor: pointer;
				height: 28px;
				width: 36px;
				background-size: 26px;
				outline: none;
				background-color: rgba(0, 0, 0, 0.5);
				border: 0px solid #ffffff2b;
				/* border-radius: 3px; */
				padding: 3px;
				background-size: 20px;
				background-position: 50%;
				background-repeat: no-repeat;
			}
			#roomstock-adv .adv-items .adv-btn:first-child {
				border-radius: 3px 0 0 3px;
			}
			#roomstock-adv .adv-items .adv-btn:active,
			#roomstock-adv .adv-items .adv-btn:hover {
				background-color: rgba(111, 111, 111, 0.5);
			}
			#roomstock-adv .adv-items .adv-btn.i-act {background-image:url(../image/system_icons/drama-white.svg);}
			#roomstock-adv .adv-items .adv-btn.i-image {background-image:url(../image/system_icons/image-white.svg);}
			#roomstock-adv .adv-items .adv-btn.i-video {background-image:url(../image/system_icons/video-white.svg);}
			#roomstock-adv .adv-items .adv-btn.i-music {background-image:url(../image/system_icons/disco-white.svg);}
			#roomstock-adv .adv-items .adv-btn.i-dice {background-image:url(../image/game-dice/system-dice-white.svg);}
			/* #roomstock-adv .adv-items .adv-btn.i-act:active, #roomstock-adv .adv-items .adv-btn.i-act:hover {background-image:url(../image/system_icons/act.svg);} */
@media (max-width: 610px) {
	#roomstock {
		height: 46px;
	}
	#roomstock .profilestat {
		background-size: 46px;
		width: 46px;
	}
	#roomstock .post {
		background-size: 36px;
		width: 46px;
	}
	#roomstock #message {
		width: calc(100% - 138px);
		overflow-y: auto;
		/* width: calc(100% - 92px); */
	}
	#roomstock .post.prepost {
		background-size: 32px;
	}
}
#setting_pannel {
	text-align: left;
	clear: both;
	padding: 5px;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.5);
}
	#setting_pannel > table {
		width: 100%;
	}
		#setting_pannel > table td {
			padding: 3px;
		}
ul#members {
	width: 580px;
	margin: 5px;
	list-style-type: none;
	text-align: left;
	clear: both;
}
	ul#members li {
		display: inline;
	}
.hide {
	display: none;
}
#setting_pannel ul#user_list {
	list-style: none;
}
#setting_pannel ul#user_list li {
	min-height: 20px;
	width: 80px;
	padding-top: 72px;
	text-align: center;
	display: block;
	float: left;
	line-height: 20px;
	font-size: 0.7em;
	margin: 10px;
	border: 2px solid transparent;
}
#setting_pannel ul#user_list li.select {
	border: 2px solid #ff6600;
}
.pb-list {
	
}
.pb-list .item {
	cursor: pointer;
	display: flex;
	margin: 3px 0;
	padding: 3px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 3px;
}
.pb-list .item:hover {
	background-color: rgba(255, 255, 255, 0.5);
}
.pb-list .item .icon {
    width: 32px;
    height: 32px;
    border-radius: 3px;
}
.pb-list .item .icon img {
    width: 32px;
    height: 32px;
    border-radius: 3px;
}
.pb-list .item .body {
	width: 100%;
	margin-left: 5px;
	align-self: center;
}
.pb-list .item .body .name {
	font-weight: bold;
	color: #ff2f2f;
}
.pb-list .item .body .reason {
	margin-left: 5px;
	color: #ffffffa8;
}
/* Talks */
.preview-talks .talks {
	max-width: 590px;
    margin: 0 auto;
}
#talks, .talks {
	margin-top: 5px;
}

#talks, .talks .t .content p.gen a {
	line-break: anywhere;
}

#talks, .talks .t .content p.gen, 
#talks, .talks .t .content font.gen {
	line-break: normal;
}


/* Talk AIV  */
.talks .t.aiv {
	flex-flow: column;
}
.talks .t.aiv .head {
	
}
.talks .t.aiv .head .name {
	background-color: rgba(0, 0, 0, 0.5) !important;
	border-radius: 5px 5px 0 0 !important;
	padding: 5px 7px !important;
	color: #ffffff !important;
	font-weight: bold !important;
}
.talks .t.aiv .body .content {
	display: block !important;
	padding: 7px !important;
	background-color: rgba(0, 0, 0, 0.5) !important;
	border-radius: 0 5px 5px 5px !important;
	min-height: auto !important;
}
.talks .t.aiv .body .content:after {
	display: block;
	content: 'Это системное сообщение. Оно было отправлено через раздел оповещений. Не отвечайте на него.';
	color: #808080;
	margin-top: 5px;
	font-size: 0.7em;
}
@media (max-width: 610px) {
	
}

/* Auto и Max */
.talks .t,
.talks.th-auto .t,
.talks.th-max .t {
	display: flex;
	margin-bottom: 5px;
} 
	.talks .t > .head,
	.talks.th-auto .t > .head,
	.talks.th-max .t > .head {
		width: 70px;
	}	
		.talks .t > .head .icon,
		.talks.th-auto .t > .head .icon,
		.talks.th-max .t > .head .icon {
			background-image: url(/media/no_avatar.png);
			cursor: pointer;
			background-color: transparent;
			background-repeat: no-repeat;
			background-position: 50%;
			background-size: 70px;
			width: 70px;
			height: 70px;
			border-width: 0;
			border-style: solid;
			border-color: transparent;
		}
		.talks .t > .head .name,
		.talks.th-auto .t > .head .name,
		.talks.th-max .t > .head .name {
			cursor: pointer;
			word-break: break-word;
			display: flex;
			justify-content: center;
			text-align: center;
			text-shadow: 
				-0   -1px 0   #000000,
				 0   -1px 0   #000000,
				-0    1px 0   #000000,
				 0    1px 0   #000000,
				-1px -0   0   #000000,
				 1px -0   0   #000000,
				-1px  0   0   #000000,
				 1px  0   0   #000000,
				-1px -1px 0   #000000,
				 1px -1px 0   #000000,
				-1px  1px 0   #000000,
				 1px  1px 0   #000000,
				-1px -1px 0   #000000,
				 1px -1px 0   #000000,
				-1px  1px 0   #000000,
				 1px  1px 0   #000000;
		}
		.talks .t > .head .time,
		.talks.th-auto .t > .head .time,
		.talks.th-max .t > .head .time {
			cursor: pointer;
			display: none;
			justify-content: flex-end;
		}
		.talks .t > .head .time font,
		.talks.th-auto .t > .head .time font,
		.talks.th-max .t > .head .time font {
			margin: 2px 4px;
			font-size: 0.8em;
			color: #c3c3c3;
			background-color: #000000ad;
			border-radius: 5px;
			padding: 3px 5px;
		}
	.talks .t > .body,
	.talks.th-auto .t > .body,
	.talks.th-max .t > .body {
		
	}	
	.talks .t > .body.full,
	.talks.th-auto .t > .body.full,
	.talks.th-max .t > .body.full {
		width: 100%;
	}
	.talks .t > .body.full .gen,
	.talks.th-auto .t > .body.full .gen,
	.talks.th-max .t > .body.full .gen {
		width: 100%;
	}
		.talks .t > .body .content .under-box {
			width: 100%;
			background-color: rgba(0, 0, 0, 0.75);
			padding: 5px;
			border-radius: 3px;
			margin-top: 3px;
		}
			.talks .t > .body .content .under-box a {
				text-decoration: none;
			}
		.talks .t > .body .content .thumb-wrap {
			position: relative;
			padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
			height: 0;
			overflow: hidden;
		}		
		.talks .t > .body .content .thumb-wrap-m {
			position: relative;
			/* padding-bottom: 37.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */ */
			height: auto;
			overflow: hidden;
		}
		.talks .t > .body .content .thumb-wrap iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border-width: 0;
			outline-width: 0;
		}	
		.talks .t > .body .content .message-image {
			
		}
		.talks .t > .body .content .message-image img {
			max-width: 100%;
			max-height: 300px;
		}
		.talks .t.changed > .body .above,
		.talks.th-auto .t.changed > .body .above,
		.talks.th-max .t.changed > .body .above {
			/* border-radius: 0 5px 5px 0; */
		}	
		.talks .t > .body .content,
		.talks.th-auto .t > .body .content,
		.talks.th-max .t > .body .content {
			background-color: #000000;
			color: #ffffff;
			display: flex;
			flex-wrap: wrap;
			min-height: 70px;
			padding: 10px 20px;
			align-items: center;
			font-size: 1.2em;
			border-style: solid;
			border-width: 0;
		}
		.talks .t.changed > .body .content:after,
		.talks.th-auto .t.changed > .body .content:after,
		.talks.th-max .t.changed > .body .content:after {
			content: "(изм.)";
			color: inherit;
			opacity: 0.4;
			font-size: 0.8em;
			margin-left: 5px;
		}
		.talks .t.system,
		.talks.th-auto .t.system,
		.talks.th-max .t.system {
			font-size: 0.95em;
			margin: 10px 0 10px 10px;
			letter-spacing: 3px;
			clear: left;
			line-height: 1.8em;
			text-shadow: -1px 0px #000, 0px -1px #000, 1px 0px #000, 0px 1px #000, -1px -1px #000, 1px 1px #000, -1px 1px #000, 1px -1px #000;
		}
		.talks .t.dice,
		.talks.th-auto .t.dice,
		.talks.th-max .t.dice,
		.talks .t.act,
		.talks.th-auto .t.act,
		.talks.th-max .t.act {
			font-size: 0.95em;
			margin: 10px 0 10px 10px;
			letter-spacing: 3px;
			clear: left;
			line-height: 1.8em;
			text-shadow: -1px 0px #000, 0px -1px #000, 1px 0px #000, 0px 1px #000, -1px -1px #000, 1px 1px #000, -1px 1px #000, 1px -1px #000;
		}
		.talks .t.act .target, .talks.th-auto .t.act .target, .talks.th-max .t.act .target {font-size: inherit;color: #ff3c3c;cursor:pointer}
		.talks .t.dice .target, .talks.th-auto .t.dice .target, .talks.th-max .t.dice .target {font-size: inherit;color: #ffbc00;cursor:pointer}
		.talks .t.act span.i-act,
		.talks.th-auto .t.act  span.i-act,
		.talks.th-max .t.act  span.i-act,
		.talks .t.dice span.i-dice,
		.talks.th-auto .t.dice  span.i-dice,
		.talks.th-max .t.dice  span.i-dice,
		.talks .t.system span.i-system,
		.talks.th-auto .t.system  span.i-system,
		.talks.th-max .t.system  span.i-system {
			cursor: pointer;
			display: block;
			background-size: 18px;
			background-repeat: no-repeat;
			background-position: 40% 50%;
			margin-right: 10px;
			float: left;
			height: 22px;
			width: 22px;
		}
		.talks .t.act span.i-act,
		.talks.th-auto .t.act  span.i-act,
		.talks.th-max .t.act  span.i-act {
			background-image: url(/image/system_icons/drama-white.svg);
		}
		.talks .t.dice span.i-dice,
		.talks.th-auto .t.dice  span.i-dice,
		.talks.th-max .t.dice  span.i-dice {
			background-image: url(/image/game-dice/system-dice-white.svg);
		}
		.talks .t.dice .gen .g-dices {
			
		}
		.talks .t.dice .gen .g-dices .g-dice {
			margin-bottom: -3px;
			background-size: 100%;
			background-position: 50%;
			background-repeat: no-repeat;
			width: 16px;
			height: 16px;
			margin-right: 5px;
			display: inline-block;
		}
		.talks .t.dice .gen .g-dices .g-dice-1 {background-image:url(/image/game-dice/gd-1-white.svg)}
		.talks .t.dice .gen .g-dices .g-dice-2 {background-image:url(/image/game-dice/gd-2-white.svg)}
		.talks .t.dice .gen .g-dices .g-dice-3 {background-image:url(/image/game-dice/gd-3-white.svg)}
		.talks .t.dice .gen .g-dices .g-dice-4 {background-image:url(/image/game-dice/gd-4-white.svg)}
		.talks .t.dice .gen .g-dices .g-dice-5 {background-image:url(/image/game-dice/gd-5-white.svg)}
		.talks .t.dice .gen .g-dices .g-dice-6 {background-image:url(/image/game-dice/gd-6-white.svg)}
		.talks .t.system span.i-system,
		.talks.th-auto .t.system  span.i-system,
		.talks.th-max .t.system  span.i-system {
			background-image: url(/image/system_icons/saturn-white.svg);
		}
		/* разные размеры для системных сообщений */
		.talks.fs-m .t.system, .talks.fs-m .t.act {font-size: 0.95em;}
		.talks.fs-xs .t.system, .talks.fs-xs .t.act {font-size: 0.80em;}
		.talks.fs-s .t.system, .talks.fs-s .t.act {font-size: 0.88em;}
		.talks.fs-l .t.system, .talks.fs-l .t.act {font-size: 1.02em;}
		.talks.fs-xl .t.system, .talks.fs-xl .t.act {font-size: 1.10em;}
		/* разные размеры для контента */
		.talks.fs-m .t > .body .content {font-size: 1.2em;}
		.talks.fs-xs .t > .body .content {font-size: 1em;}
		.talks.fs-s .t > .body .content {font-size: 1.1em;}
		.talks.fs-l .t > .body .content {font-size: 1.3em;}
		.talks.fs-xl .t > .body .content {font-size: 1.4em;}		
		/* разные размеры для аватаров */
		.talks.avs-m .t > .head .icon {background-size: 70px;width: 70px;height: 70px;}
		.talks.avs-m .t > .head {width: 70px}
		.talks.avs-m .t > .body .content {min-height: 70px}
		.talks.avs-m .t > .head .name {font-size: 0.7em}
		.talks.avs-s .t > .head .icon {background-size: 50px;width: 50px;height: 50px;}
		.talks.avs-s .t > .head {width: 50px}
		.talks.avs-s .t > .body .content {min-height: 50px}
		.talks.avs-s .t > .head .name {font-size: 0.7em}
		.talks.avs-l .t > .head .icon {background-size: 90px;width: 90px;height: 90px;}
		.talks.avs-l .t > .head {width: 90px}
		.talks.avs-l .t > .body .content {min-height: 90px}
		.talks.avs-m .t > .head .name {font-size: 1em}
		.talks .t > .body .content .reply {
			background-color: #0000005c;
			border-radius: 0 3px 3px 0;
			width: 100%;
			color: inherit;
			font-size: 0.8em;
			opacity: 0.7;
			border-left: 2px;
			/* padding-left: 5px; */
			padding: 3px 3px 3px 5px;
			border-top: 0;
			border-bottom: 0;
			border-right: 0;
			border-style: solid;
			cursor: pointer;
			margin-bottom: 5px;
			text-decoration: unset;
		}
		.talks .t > .body .content .reply span.name,
		.talks.th-auto .t > .body .content .reply span.name,
		.talks.th-max .t > .body .content .reply span.name {
			
		}
		.talks .t > .body .content .reply p.text,
		.talks.th-auto .t > .body .content .reply p.text,
		.talks.th-max .t > .body .content .reply p.text {
			
		}
		.talks .t > .body .content p,
		.talks.th-auto .t > .body .content p,
		.talks.th-max .t > .body .content p {
			color: inherit;
			margin: 0;
		}
		.talks .t:hover > .body .time,
		.talks.th-auto .t:hover > .body .time,
		.talks.th-max .t:hover > .body .time {
			opacity: 1;
		}
		.talks .t > .body .time,
		.talks.th-auto .t > .body .time,
		.talks.th-max .t > .body .time {
			cursor: pointer;
			display: flex;
			opacity: 0;
			justify-content: flex-end;
			transition: 0.5s;
		}
		.talks .t > .body .time font,
		.talks.th-auto .t > .body .time font,
		.talks.th-max .t > .body .time font {
			margin: 2px 4px;
			font-size: 0.8em;
			color: #c3c3c3;
			background-color: #000000ad;
			border-radius: 5px;
			padding: 3px 5px;
		}
	.talks .t .target,
	.talks.th-auto .t .target,
	.talks.th-max .t .target {
		font-size: inherit;
		color: #90c8e3;
		cursor: pointer;
	}
		.talks .t .target p,
		.talks.th-auto .t .target p,
		.talks.th-max .t .target p {
			font-size: inherit;
			color: inherit;
			margin: 0;
		}

/* <Принудительно минимальный */
.talks.th-min .t {
	display: flex;
	margin-bottom: 5px;
	flex-flow: column;
}
	.talks.th-min .t > .head {
		width: auto;
		display: flex;
	}	
		.talks.th-min .t > .head .icon {
			cursor: pointer;
			background-color: transparent;
			background-repeat: no-repeat;
			background-size: 32px;
			width: 32px;
			height: 32px;
			border-radius: 3px 3px 0 0;
		}
		.talks.th-min .t > .head .name {
			padding: 5px;
			border-radius: 3px 3px 0 0;
			word-break: break-all;
			display: flex;
			align-items: center;
			border-radius: 0 3px 0 0;
		}
		.talks.th-min .t > .head .time {
			display: flex;
			justify-content: flex-start;
			align-self: center;
			flex-grow: 1;
		}
		.talks.th-min .t > .head .time font {
			margin: 2px 4px;
			font-size: 0.8em;
			color: #c3c3c3;
			background-color: #000000ad;
			border-radius: 5px;
			padding: 3px 5px;
		}
	.talks.th-min .t > .body {
		
	}
		.talks.th-auto .t > .body .above {
			border-radius: 0 5px 5px 0;
		}
		.talks.th-min .t > .body .content {
			background-color: #000000;
			color: #ffffff;
			display: flex;
			padding: 10px 20px;
			align-items: center;
			font-size: 1.15em;
			min-height: auto;
		}
		.talks.th-min .t > .body .content p {
			color: inherit;
			margin: 0;
		}
		.talks.th-min .t > .body .time {
			display: none;
			justify-content: flex-end;
		}
		.talks.th-min .t > .body .time font {
			margin: 2px 4px;
			font-size: 0.8em;
			color: #c3c3c3;
			background-color: #000000ad;
			border-radius: 5px;
			padding: 3px 5px;
		}
	.talks.th-min .t .target {
		color: #90c8e3;
	}
		.talks.th-min .t .target p {
			color: inherit;
			margin: 0;
		}
	/* Медиа - настройки чата - размеры аватара */
	.talks.th-min.avs-m .t > .head .icon {background-size: 32px;width: 32px;height: 32px;}
	.talks.th-min.avs-m .t > .head {width: 100%}
	.talks.th-min.avs-m .t > .body .content {min-height: 32px}
	.talks.th-min.avs-m .t > .head .name {font-size: 0.7em}
	.talks.th-min.avs-s .t > .head .icon {background-size: 32px;width: 32px;height: 32px;}
	.talks.th-min.avs-s .t > .head {width: 100%}
	.talks.th-min.avs-s .t > .body .content {min-height: 32px}
	.talks.th-min.avs-s .t > .head .name {font-size: 0.7em}
	.talks.th-min.avs-l .t > .head .icon {background-size: 50px;width: 50px;height: 50px;}
	.talks.th-min.avs-l .t > .head {width: 100%}
	.talks.th-min.avs-l .t > .body .content {min-height: 50px}
	.talks.th-min.avs-m .t > .head .name {font-size: 1em}
/* Принудительно минимальный> */

/* <Только Auto при узком экране */
@media (max-width: 610px) {
	#talkline {
		width: 100%;
	}
	.talks.th-auto .t {
		display: flex;
		margin-bottom: 5px;
		flex-flow: column;
	}
		.talks.th-auto .t > .head {
			width: auto;
			display: flex;
		}	
			.talks.th-auto .t > .head .icon {
				cursor: pointer;
				background-color: transparent;
				background-repeat: no-repeat;
				background-size: 32px;
				width: 32px;
				height: 32px;
				border-radius: 3px 3px 0 0;
			}
			.talks.th-auto .t > .head .name {
				padding: 5px;
				border-radius: 3px 3px 0 0;
				word-break: break-all;
				display: flex;
				align-items: center;
				border-radius: 0 3px 0 0;
			}
			.talks.th-auto .t > .head .time {
				display: flex;
				justify-content: flex-start;
				align-self: center;
				flex-grow: 1;
			}
			.talks.th-auto .t > .head .time font {
				margin: 2px 4px;
				font-size: 0.8em;
				color: #c3c3c3;
				background-color: #000000ad;
				border-radius: 5px;
				padding: 3px 5px;
			}
		.talks.th-auto .t > .body {
			
		}
			.talks.th-auto .t > .body .above {
				border-radius: 0 5px 5px 0;
			}
			.talks.th-auto .t > .body .content {
				background-color: #000000;
				color: #ffffff;
				display: flex;
				padding: 10px 20px;
				align-items: center;
				font-size: 1.15em;
				min-height: auto;
			}
			.talks.th-auto .t > .body .content p {
				color: inherit;
				margin: 0;
			}
			.talks.th-auto .t > .body .time {
				display: none;
				justify-content: flex-end;
			}
			.talks.th-auto .t > .body .time font {
				margin: 2px 4px;
				font-size: 0.8em;
				color: #c3c3c3;
				background-color: #000000ad;
				border-radius: 5px;
				padding: 3px 5px;
			}
		.talks.th-auto .t .target {
			color: #90c8e3;
		}
			.talks.th-auto .t .target p {
				color: inherit;
				margin: 0;
			}
		/* Медиа - настройки чата - размеры аватара */
		.talks.th-auto.avs-m .t > .head .icon {background-size: 32px;width: 32px;height: 32px;}
		.talks.th-auto.avs-m .t > .head {width: 100%}
		.talks.th-auto.avs-m .t > .body .content {min-height: 32px}
		.talks.th-auto.avs-m .t > .head .name {font-size: 0.7em}
		.talks.th-auto.avs-s .t > .head .icon {background-size: 32px;width: 32px;height: 32px;}
		.talks.th-auto.avs-s .t > .head {width: 100%}
		.talks.th-auto.avs-s .t > .body .content {min-height: 32px}
		.talks.th-auto.avs-s .t > .head .name {font-size: 0.7em}
		.talks.th-auto.avs-l .t > .head .icon {background-size: 50px;width: 50px;height: 50px;}
		.talks.th-auto.avs-l .t > .head {width: 100%}
		.talks.th-auto.avs-l .t > .body .content {min-height: 50px}
		.talks.th-auto.avs-m .t > .head .name {font-size: 1em}
}
/* Auto при узком экране > */
	
/* Talks */
/* Room */
.g-target {
	font-size: inherit;
	color: #90c8e3;
	cursor: pointer;
}
/* Modal */
#modal_bg {
	display: none;
	background-color: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	overflow-y: auto !important;
	z-index: 100;
}
.modal_block {
	background-color: rgba(0, 0, 0, 0.5);
	width: 600px;
	border-radius: 3px;
	margin: 10px auto;
	overflow: hidden;
	z-index: 150;
}
.inline_set {
	width: 100%;
	padding: 5px;
	overflow: hidden;
	margin-bottom: 5px;
}
/* Modal */

/* Chips */
.container:before, .form-group:before {
	display: table;
	content: " ";
}
.container:after, .form-group:after {
    clear: both;
}
/* Chips */

/* popup */
#contextmenu {
	top: 234px;
	left: 100px;
	display: none;
	position: absolute;
	min-height: 10px;
	min-width: 150px;
	background-color: #000000c9;
	padding: 5px;
	border-radius: 3px;
	z-index: 1911;
}
	#contextmenu .cm-title {
		font-weight: 700;
		font-size: 1.05em;
		padding: 5px;
		border-bottom: solid #ffffff2e 1px;
		color: #ff8f00;
	}
	#contextmenu .cm-select {
		font-size: 0.85em;
	}
		#contextmenu .cm-select .option {
			display: block;
			padding: 5px;
			cursor: pointer;
			text-decoration: none;
			font-size: 1.1em;
			color: #fff;
		}
		#contextmenu .cm-select .option:hover {
			background-color: #829CFF;
			border-radius: 3px;
			cursor: pointer;
		}
.popup {
position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -140px;
    width: 300px;
    min-height: 60px;
    background-color: rgba(0,0,0,0.75);
    color: #FFF;
    z-index: 9999;
    padding: 10px;
    border-radius: 3px;
    font-size: 15px;
    display: none;
}
.popup-message {
	margin-top: 10px;
	color: #CFCFCF;
	font-size: 0.8em;
	max-width: 300px
}
.block-loader {
	display: flex;
	justify-content: center;
}
.block-loader i {
	background-image: url(/media/loader.svg);
	width: 64px;
	height: 64px;
	background-size: 100%;
}
.ax-loader {
	width: 100%;
	height: 100%;
	background-color: rgba(42, 42, 42, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	display: none;
}

	.ax-loader .load {
		width: 128px;
		height: 128px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -64px;
		margin-top: -64px;
	}

.box-alert .alert {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.box-alert {
	position: fixed;
	bottom: 15px;
	right: 10px;
	max-width: 400px;
	min-width: 300px;
	z-index: 9999999
}

.box-alert .alert-enter-active,
.box-alert .alert-leave-active {
	-webkit-transition: opacity .25s linear;
	transition: opacity .25s linear
}

.box-alert .alert {
	cursor: pointer;
	width: 100%;
	position: relative;
	z-index: 9999999;
	margin-top: 10px;
	padding: 15px 18px;
	font-size: 16px;
	margin-left: 5px;
	-webkit-box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, .35);
	box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, .35);
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.box-alert .alert:hover {
	-webkit-transform: scale(1.01);
	transform: scale(1.01)
}

.box-alert .alert.alert-1, .box-alert .alert.alert-success {
	background: #6bcc1c
}

.box-alert .alert.alert-1 .icon, .box-alert .alert.alert-success .icon {
	background: url(/image/alerts/1.png) center no-repeat;
	background-size: 100%
}

.box-alert .alert.alert-2, .box-alert .alert.alert-warning {
	background: #d3c81e
}

.box-alert .alert.alert-2 .icon, .box-alert .alert.alert-warning .icon {
	background: url(/image/alerts/2.png) center no-repeat;
	background-size: 100%
}

.box-alert .alert.alert-3, .box-alert .alert.alert-error {
	background: #ff3b3b
}

.box-alert .alert.alert-3 .icon, .box-alert .alert.alert-error .icon {
	background: url(/image/alerts/3.png) center no-repeat;
	background-size: 100%
}

.box-alert .alert .icon {
	width: 45px;
	height: 45px;
	margin-right: 10px
}

.g-alert-enter-active, .g-alert-leave-active {
  transition: opacity .5s;
}
.g-alert-enter, .g-alert-leave-to {
  opacity: 0;
}

.hidecontent {
	display: none;
}

#modalsBox {
	display: none;
}

#aiv-modals {
	background: #000000bb;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 110;
	overflow-y: auto
}
	#aiv-modals .modal {
		display: flex;
		max-width: 700px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
		#aiv-modals .modal .modal-box {
			display: flex;
			width: 700px;
			margin-top: 30px;
			margin-bottom: 30px;
		}
		@media (max-width: 700px) {
			#aiv-modals .modal {
				width: 100%;
			}
			#aiv-modals .modal .modal-box {
				width: 100%;
			}
		}
#modalPanels {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.75);
}
	#modalPanels .modal-panels {
		max-width: 600px;
		margin: 3% auto;
	}
		#modalPanels .modal-panels .panels-box {
			background-color: rgba(0, 0, 0, 0.75);
			border-radius: 3px;
		}		
		#modalPanels .modal-panels .panels-box > .head {
			background-size: cover;
			display: block;
			border-radius: 3px 3px 0 0;
			width: 100%;
			position: relative;
			min-height: 40px;
		}
		#modalPanels .modal-panels .panels-box > .head .close-box {
			position: absolute;
			top: 0;
			right: 0;
			padding: 10px;
			font-size: 1em;
			z-index: 15;
			cursor: pointer;
		}
		#modalPanels .modal-panels .panels-box > .head .close-box .close {
			display: block;
			background-image: url('/image/system_icons/cross-white.svg');
			background-size: 18px;
			background-repeat: no-repeat;
			background-position: 50%;
			width: 20px;
			height: 20px;
		}
#modalLoadImage {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.75);
}
	#modalLoadImage .modal-li {
		max-width: 600px;
		margin: 3% auto;
	}
	#modalLoadImage .modal-li .cropBox {
		display: block;
		margin: 10px auto;
		width: 100%;
	}
	#modalLoadImage .modal-li .cropBox #li-image {
		display: block;
		margin: 0 auto;
		width: 100%;
	}
		#modalLoadImage .modal-li .li-box {
			background-color: rgba(0, 0, 0, 0.75);
			border-radius: 3px;
			flex-flow: column;
		}		
		#modalLoadImage .modal-li .li-box .head {
			background-size: cover;
			display: block;
			border-radius: 3px 3px 0 0;
			width: 100%;
			position: relative;
			min-height: 40px;
		}
		#modalLoadImage .modal-li .li-box .head .close-box {
			position: absolute;
			top: 0;
			right: 0;
			padding: 10px;
			font-size: 1em;
			z-index: 15;
			cursor: pointer;
		}
		#modalLoadImage .modal-li .li-box .head .close-box .close {
			display: block;
			background-image: url('/image/system_icons/cross-white.svg');
			background-size: 18px;
			background-repeat: no-repeat;
			background-position: 50%;
			width: 20px;
			height: 20px;
		}
#modalAdv {
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.75);
}
	#modalAdv .modal-advance {
		/* width: 100%; */
		max-width: 600px;
		margin: 3% auto;
	}
		#modalAdv .modal-advance .advance-box {
			background-color: rgba(0, 0, 0, 0.75);
			border-radius: 3px;
			width: 550px;
		}		
		#modalAdv .modal-advance .advance-box .head {
			background-size: cover;
			display: block;
			border-radius: 3px 3px 0 0;
			width: 100%;
			position: relative;
			min-height: 40px;
		}
		#modalAdv .modal-advance .advance-box .head .close-box {
			position: absolute;
			top: 0;
			right: 0;
			padding: 10px;
			font-size: 1em;
			z-index: 15;
			cursor: pointer;
		}
		#modalAdv .modal-advance .advance-box .head .close-box .close {
			display: block;
			background-image: url('/image/system_icons/cross-white.svg');
			background-size: 18px;
			background-repeat: no-repeat;
			background-position: 50%;
			width: 20px;
			height: 20px;
		}
		#modalAdv .modal-advance .advance-box .body .madv-item {
			padding: 0 10px;
			padding-bottom: 10px;
		}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box {
			display: flex;
			flex-flow: row;
		}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item {}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item {
			margin-left: 5px;
		}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item:first-child {
			margin-left: 0;
		}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item i {
			display: block;
			width: 48px;
			height: 48px;
			background-color: rgba(80, 80, 80, 0.75);
			background-size: 80%;
			background-position: 50%;
			background-repeat: no-repeat;
			border-radius: 3px;
			cursor: pointer;
		}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item:hover i {
			background-color: rgba(177, 177, 177, 0.75);
		}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-dices i {background-image: url('/image/game-dice/system-dice-white.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-dices:hover i {background-image: url('/image/game-dice/system-dice.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-roll i {background-image: url('/image/game-dice/jackpot-white.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-roll:hover i {background-image: url('/image/game-dice/jackpot.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-randmember i {background-image: url('/image/game-dice/person-white.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-randmember:hover i {background-image: url('/image/game-dice/person.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-truthoraction i {background-image: url('/image/game-dice/random-white.svg');}
		#modalAdv .modal-advance .advance-box .body .madv-item .random-select-box .rs-item.rs-truthoraction:hover i {background-image: url('/image/game-dice/random.svg');}
		
		#modalAdv .modal-advance .advance-box .body .madv-pastepicture .pasteimage-box {
			padding: 10px 30px;
		}
		#modalAdv .modal-advance .advance-box .body .madv-pastepicture .pasteimage-box img {
			width: 50%;
			margin: 0 auto;
			display: block;
		}
@media (max-width: 570px) {
	#modalAdv .modal-advance .advance-box {
		width: 100%;
	}	
}
.pid-item, .pids-item {
	display: none;
	padding: 5px;
}
.pid-item.active, .pids-item.active {
	display: block;
}

/* Flex-additional */
.flex-col-arround {
	display: flex;
	flex-flow: column;
	justify-content: space-around;
}
/* Chars Main */
.charsBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.charsBox .char, .charsBox .char-disable {
	border-color: #ffffff00;
	border-width: 2px;
	border-style: solid;
	cursor: pointer;
	background-color: #00000078;
	/* border-radius: 50px 50px 10px 10px; */
	border-radius: 3px;
	display: flex;
	width: 100px;
	padding: 10px;
	flex-flow: column;
	align-items: center;
	margin-bottom: 10px;
	text-decoration: none;
}
.charsBox .char.active {
	border-color: #ffb100;
} 
.charsBox .char:hover {
	background-color: #9e9e9e78;
}
.charsBox .char:hover .head {
	background-size: 80px;
	background-position: -5px -5px;
}

.charsBox .char .head, .charsBox .char-disable .head {
	/* border-radius: 50px; */
	border-radius: 3px;
	background-size: 70px;
	background-repeat: no-repeat;
	width: 70px;
	height: 70px;
}
.charsBox .char .name, .charsBox .char-disable .name {
	padding: 5px 0;
	font-size: 10px;
	text-decoration: none;
}

/* <achivs */
.achivs-box {
	
}
.achiv-box {
	display: flex;
	box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
	border-radius: .25rem;
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid #000000;
	min-height: 80px;
	padding: .5rem;
	position: relative;
	margin-bottom: 5px;
}
	.achiv-box .achiv-box-icon {
		width: 64px;
		height: 64px;
		background-image: url(/media/achivs/ach10.jpg);
		background-size: 100%;
		border-radius: .25rem;
	}
	.achiv-box .achiv-box-content {
		flex: 1;
		padding: 5px 10px;
	}
		.achiv-box .achiv-box-content .achiv-box-label {
			display: block;
			font-weight: 700;
		}
		.achiv-box .achiv-box-content .achiv-box-desc {
			display: block;
			margin: 3px 0;
		}
		.achiv-box .achiv-box-content .achiv-box-actions {
			display: block;
			text-overflow: ellipsis;
		}
.char-achivs {
	display: flex;
	flex-flow: wrap;
}
	.char-achivs .char-achiv {
		width: 64px;
		height: 64px;
		margin: 3px;
		border-radius: 3px;
		cursor: pointer;
	}
		.char-achivs .char-achiv .image {
			width: 100%;
			height: 100%;
			background-size: 100%;
			border-radius: inherit;
		}
/* achivs> */

/* Tooltips */
#tTooltip {
	z-index: 9999;
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	font-size: 14px;
	max-width: 300px;
	border-width: 2px;
	border-color: #4579ff;
	border-style: solid;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 5px 10px;
	color: white;
	text-align: center;
	/*opacity: 0.6;*/
	border-radius: 3px; 
}
#tTooltip:after{
	content: '';
	display: block;
	position: absolute;
	bottom: -10px;
	left: calc(50% - 5px);
	border: 5px solid transparent;
	border-top: 5px solid #4579ff;
}
#cTooltip {
	z-index: 9999;
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	font-size: 14px;
	max-width: 300px;
	border-width: 2px;
	border-color: #4579ff;
	border-style: solid;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 5px 10px;
	color: white;
	text-align: center;
	border-radius: 3px; 
}

/* Bits */
.bit {
	display: block;
	padding: 5px;
	border-radius: 3px;
	overflow: hidden;
}

.bit.bit-warning .bit-icon {
	background-image: url(/image/bits/bit-warning.png);
	background-size: 26px;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	margin-right: 5px;
	float: left;
}

.bit.bit-warning {
	/* background-color: #85b1c175; */
	background-color: #af000070;
}
#understock .bit {
	margin-top: 10px;
}
#understock .bit .bit-icon {
    background-size: 18px;
    width: 18px;
    height: 18px;
}

.preJoinData {
	margin-top: 10px;
	margin-bottom: 10px;
}

.top-bar {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	top: 0;
	width: 100%;
	position: fixed;
	padding: 3px;
	background-color: rgba(0, 0, 0, 0.5);
	/* border-bottom: 2px solid #0000007a; */
	box-shadow: 0px 0px 2px 1px #000000, inset 0 3px 18px rgba(100, 100, 100, .25);
}

.top-bar .panel {
	display: flex;
}

.top-bar .roomstat {
	display: flex;
	flex-flow: row;
	padding-top: 5px;
}
	.top-bar .roomstat .roomstat-key {
		display: flex;
		margin-right: 5px;
		align-items: center;
	}	
	.top-bar .roomstat .roomstat-key img.key {
		width: 16px;
		margin-bottom: 3px;
	}
	.top-bar .roomstat .roomstat-name {
		display: flex;
		margin-right: 5px;
		align-items: center;
	}
	.top-bar .roomstat .roomstat-count {
		display: flex;
		align-items: center;
	}

.top-bar-btn {
	box-sizing: border-box;
	cursor: pointer;
	height: 26px;
	width: 26px;
	background-size: 20px;
	background-position: 50%;
	background-repeat: no-repeat;
	outline: none;
	background-color: rgba(0, 0, 0, 0.5);
	border: 0px solid #ffffff2b;
	border-radius: 3px;
	padding: 5px;
	margin: 0 2px;
}
.top-bar-btn:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

	.top-bar-btn.menu 					{background-image: url(../image/system_icons/menu-white.svg);}
	.top-bar-btn.menu:hover 			{background-image: url(../image/system_icons/menu.svg);}	
	.top-bar-btn.stock 					{background-image: url(../image/system_icons/sound-waves-white.svg);}
	.top-bar-btn.stock:hover 			{background-image: url(../image/system_icons/sound-waves.svg);}
	.top-bar-btn.members 				{background-image: url(../image/system_icons/members-white.svg);}
	.top-bar-btn.members:hover 			{background-image: url(../image/system_icons/members.svg)}
		.top-bar-btn.sounds.on 			{background-image: url(../image/system_icons/sounds-on-white.svg)}
		.top-bar-btn.sounds.on:hover 	{background-image: url(../image/system_icons/sounds-on.svg)}
		.top-bar-btn.sounds.off 		{background-image: url(../image/system_icons/sounds-off-white.svg);}
		.top-bar-btn.sounds.off:hover 	{background-image: url(../image/system_icons/sounds-off.svg);}
	.top-bar-btn.home 					{background-image:url(../image/system_icons/home-white.svg);}
	.top-bar-btn.musicplayer			{background-image:url(../image/system_icons/sound-white.svg);}
	.top-bar-btn.musicplayer:hover 		{background-image: rgba(255, 255, 255, 0.5) url(../image/system_icons/sound.svg)}
	.top-bar-btn.home 					{background-image:url(../image/system_icons/home-white.svg);}
	.top-bar-btn.home:hover 			{background-image: rgba(255, 255, 255, 0.5) url(../image/system_icons/home.svg)}

.top-bar .left {
	float: left;
}

.top-bar .right {
	float: right;
}

/* <404 */
#capsule {
	margin: 0 auto;
	max-width: 600px;
	border-radius: 3px;
}
.page404 {
	padding-top: 30px;
}
.page404 .board {
	background-image: url(/image/404/404-board.png);
	background-repeat: no-repeat;
	margin: 0 auto;
	width: 500px;
	height: 507px;
	padding-top: 150px;
	padding-left: 25px;
	padding-right: 24px;
	padding-bottom: 23px;
}
.page404 .board .content {
	background-color: #fff;
	width: 100%;
	height: 100%;
	display: block;
	padding: 5px;
}
.page404 .board .content .pic {
	position: relative;
	width: 100%;
	height: 250px;
	text-align: center;
}
.page404 .board .content .title {
	text-align: center;
	color: #000000;
	font-size: 1.3em;
	padding: 10px;
	width: 100%;
	height: 75px;
}
.page404 .board .content .pic img {
	max-width: 230px;
	max-height: 230px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	moz-transform: translate(-50%, -50%);
	webkit-transform: translate(-50%, -50%);
}
/* 404> */

/* <Pay */
.animate-link {
	-webkit-animation: animate-link 2s linear infinite;
	animation: animate-link 2s linear infinite;
}
@-webkit-keyframes animate-link {
	0% {color: #ffffff;}
	50% {color: #7098ff;}
	100% {color: #ffffff;}
}
@keyframes animate-link {
	0% {color: #ffffff;}
	50% {color: #7098ff;}
	100% {color: #ffffff;}
}
.balance-block {
	padding-top: 5px;
	overflow: hidden;
}
.balance-block .balance-link {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}
.balance-block .balance-link:hover {
	color: #7098ff;
}
.pay-box {
	display: flex;
}
.pay-box-balance {
	display: flex;
	justify-content: center;
	align-items: center;
}
	.pay-box-balance font {
		margin-right: 5px;
	}
.pay-box i.coin {
	width: 18px;
	height: 18px;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url(/image/balance/coin2.svg);
}
.pay-box i.crystal {
	width: 18px;
	height: 18px;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url(/image/balance/crystal.svg);
}
.pay-box i.cookie {
	width: 18px;
	height: 18px;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url(/image/balance/cookie.svg);
}
.gold-coin-tip {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	max-width: 200px;
}
	.gold-coin-tip i.coin {
		margin: 5px;
		width: 64px;
		height: 64px;
		background-size: 64px;
		background-repeat: no-repeat;
		background-image: url(/image/balance/coin.svg);
	}	
	.gold-coin-tip i.crystal {
		margin: 5px;
		width: 64px;
		height: 64px;
		background-size: 64px;
		background-repeat: no-repeat;
		background-image: url(/image/balance/crystal.svg);
	}
	.gold-coin-tip i.cookie {
		margin: 5px;
		width: 64px;
		height: 64px;
		background-size: 64px;
		background-repeat: no-repeat;
		background-image: url(/image/balance/cookie.svg);
	}
	.gold-coin-tip small {
		display: block;
		color: #b5b5b5;
		font-size: 0.9em;
		line-height: 1.1em;
	}
	
.balance-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row;
	margin-top: 10px;
	margin-bottom: 10px;
}
	.balance-box .currency {
		display: flex;
		width: 200px;
		flex-flow: column;
		align-items: center;
	}
	.balance-box .currency i {
		display: flex;
		margin: 5px;
		width: 64px;
		height: 64px;
		background-size: 64px;
		background-position: 50%;
		background-repeat: no-repeat;
	}
	.balance-box .currency i.crystals {
		/* background-image: url(/image/balance/crystal.svg); */
		background-image: url(/image/balance/crystals.png);
	}
	.balance-box .currency i.coins {
		background-image: url(/image/balance/coins.png);
	}
	.balance-box .currency i.cookies {
		background-image: url(/image/balance/cookie.svg);
	}
		.balance-box .currency .balance {
			padding: 5px;
			font-size: 1.5em;
			text-align: center;
		}
		
.oth-cookies {
	display: block;
	overflow: hidden;
}
	.oth-cookies i {
		display: inline-block;
		background-image: url(/image/balance/cookies.png);
		background-size: 100px;
		background-repeat: no-repeat;
		height: 100px;
		width: 100px;
		/* transform: scale(-1, 1) */
	}
	.oth-cookies .text {
		text-align: right;
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: calc(100% - 100px);
		float: left;
	}
.oth-crystals {
	display: block;
	overflow: hidden;
}
	.oth-crystals i {
		display: inline-block;
		background-image: url(/image/balance/crystals.png);
		background-size: 100px;
		background-repeat: no-repeat;
		height: 100px;
		width: 100px;
	}
	.oth-crystals .text {
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: calc(100% - 100px);
		float: right;
	}
/* Pay> */
/* <Main */
.online-list {
	display: flex;
	flex-wrap: wrap;
}
.online-list .online-list__item {}
.online-list .online-list__item {}
.online-list .online-list__item .head {}
.online-list .online-list__item .head .icon {
	background-size: 60px;
	width: 60px;
	height: 60px;
}
/* Main> */
/* <Faq */
ul.q-list {
	margin-bottom: 15px;
}
ul.q-list li {
	padding: 5px 0;
	list-style-type: none;
}
ul.q-list li a {
	text-decoration: none;
}
ul.disc-list {
	padding-left: 20px;
	margin-bottom: 15px;
}
ul.disc-list li {
	padding: 5px 0;
	list-style-type: disc;
}
ul.disc-list li a {
	text-decoration: none;
}
.q-box {
	
}
.q-box .q-item {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}
.q-box .q-item .head {
	width: 100%;
	padding: 5px;
	background-color: #2f4785;
	border-radius: 5px 5px 0 0;
}
.q-box .q-item .body {
	width: 100%;
    padding: 5px;
    background-color: #00000094;
    border-radius: 0 0 5px 5px;
}
/* Faq> */
/* <Plyr */
.plyr.plyr--audio .plyr__controls{
	background-color: #2f4785;
}
.plyr .plyr__menu__container [role=menu],
.plyr .plyr__menu__container>div {
	background-color: #2f4785;
}
/* Plyr> */
table.balance-logs {
	width: 100%;
	border-spacing: unset;
	border: 1px solid #ffffff61;
}
table.balance-logs tr {
	text-align: left;
}
table.balance-logs tr th, table.balance-logs tr td {
	padding: 3px;
	border: 1px solid #ffffff61;
}
table.balance-logs tr th {
	background-color: #2f4785;
	text-align: left;
}
table.balance-logs tr td {
	text-align: left;
}

.tabs-rooms {
	margin: 15px 0;
}

ul.contacts {
	display: flex;
	flex-flow: column;
	margin: 15px 0;
}
ul.contacts li {
	list-style: none;
	border-radius: 5px 5px 0 0;
	padding: 5px 10px;
}
ul.contacts li a {
	text-decoration: none;
}
ul.contacts li:hover {
	
}
.present-box {
	margin: 20px auto;
	max-width: 200px;
}
form#feedback {
	margin-top: 15px;
	padding: 10px;
	border: 2px solid #3a77ae;
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 3px;
}

.post-block .image {
	background-image: url(/image/logo_big_t_72.png);
	background-size: 20px;
	background-position: 50%;
	background-repeat: no-repeat;
	float: left;
	height: 38px;
	width: 38px;
	background-color: #2f4785;
}
.img-circle {
	border-radius: 50%;
}
.img-bordered-sm {
	padding: 2px;
}
.news {
	padding-top: 10px;
}
.news .post {
	margin-bottom: 10px;
}
.news .post-block {
	overflow: hidden;
}
.news .post .content {
	margin-top: 5px;
	padding: 5px;
}
.news .post-above {
	display: flex;
	flex-flow: row;
}
.news .post-above .post-image {
	width: 150px;
}
.news .post-above .content {
	margin: 0;
	padding: 15px;
	width: calc(100% - 150px);
}
.news .post-block .title {
	font-size: 16px;
	font-weight: 600;
	margin-top: -1px;
}
.news .post-block .title .title-link {
	text-decoration: none;
}
.news .btn-tool {
	background: 0 0;
	color: #adb5bd;
	font-size: .875rem;
	margin: -.75rem 0;
	padding: .25rem .5rem;
}
.news .post-block .description {
	color: #c7c7c7;
	font-size: 13px;
}
.news .post-block .description .i {
	margin-left: 10px;
	display: inline-block;
	width: 12px;
	height: 10px;
	background-size: 12px;
	background-position: 0;
	background-repeat: no-repeat;
}
.news .post-block .description .i.i-comments {
	background-image: url(/image/system_icons/comment-white.svg);
}
.news .post-block .description .i.i-views {
	background-image: url(/image/system_icons/eye-white.svg);
}
.news .post-block .comment, .post-block .description, .post-block .title {
	display: block;
	margin-left: 50px;
}

.news .post .foot {
	padding-right: 5px;
	display: flex;
	justify-content: flex-end;
}
.news .post .foot a {
	padding: 0;
}
.post-image {
	display: flex;
	padding: 15px 0;
}
.post-image .image {
	width: 100%;
	padding-bottom: 66%;
}
.post-image img {
	width: 100%;
}
@media (max-width: 610px) {
	.news .post-above {
		display: flex;
		flex-flow: column;
	}
	.news .post-above .post-image {
		width: 100%;
	}
	.news .post-above .content {
		margin-top: 5px;
		padding: 5px;
		width: 100%;
	}
}
.post-box {
	
}
.post-box .post-content {
	
}
.post-box .post-content p {
	text-indent: 26px;
	margin: 0 0 10px;
}
.pagination-box {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.pagination-box .pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: .25rem;
}
.pagination-box .pagination .page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: rgba(0, 0, 0, 0.75);
	border-color: #2f478582;
}
.pagination-box .pagination .page-link {
	text-decoration: none;
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
	background-color: rgba(0, 0, 0, 0.75);
	border-color: #2f478582;
}
.pagination-box .pagination .page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
}
.pagination-box .pagination .page-item:last-child .page-link {
	border-top-right-radius: .25rem;
	border-bottom-right-radius: .25rem;
}
.pagination-box .pagination .page-link:hover {
	z-index: 2;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}
/* <comments */
.comments {
	margin-top: 15px;
}
.comments .comment-group {
	padding-right: 5px;
	border-right: 2px solid #5f7bfb;
	margin-bottom: 10px;
}
.comments .comment-group .subcomments, .add-subcomments {
	margin-left: 65px;
}
	.comments .comment {
		display: block;
		margin-bottom: 10px;
		overflow: hidden;
	}
		.comments .comment .comment-info {
			display: block;
			font-size: .875rem;
			margin-bottom: 5px;
			overflow: hidden;
		}
			.comments .comment .comment-info .comment-name {
				font-weight: 600;
			}
			.comments .comment .comment-info .comment-timestamp {
				color: #cacaca;
			}
		.comments .comment .comment-body {
			display: flex;
		}		
		.comments .comment .comment-foot {
			display: flex;
			padding: 0 5px;
			justify-content: flex-end;
		}
			.comments .comment .comment-body .comment-img {
				border-radius: 5px;
				height: 50px;
				width: 50px;
			}
			.comments .comment .comment-body .comment-text {
				width: calc(100% - 65px);
				border-radius: .3rem;
				background: rgb(95, 123, 252);
				border: 1px solid rgb(95, 123, 252);
				color: #ffffff;
				margin-left: 15px;
				padding: 5px 10px;
				position: relative;
			}
			.comments .comment .comment-body .comment-text::after, .comments .comment .comment-body .comment-text::before {
				border: solid transparent;
				border-right-color: rgb(95, 123, 252);
				content: ' ';
				height: 0;
				pointer-events: none;
				position: absolute;
				right: 100%;
				top: 15px;
				width: 0;
			}
			.comments .comment .comment-body .comment-text::before {
				border-width: 6px;
				margin-top: -6px;
			}
			
.add-comment {
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
}
	.add-comment .comment-info {
		display: block;
		font-size: .875rem;
		margin-bottom: 5px;
		overflow: hidden;
	}
		.add-comment .comment-info .comment-name {
			font-weight: 600;
		}
		.add-comment .comment-info .comment-timestamp {
			color: #cacaca;
		}
	.add-comment .comment-body {
		display: flex;
	}		
	.add-comment .comment-foot {
		margin-top: 5px;
		display: flex;
		padding: 0 5px;
		justify-content: flex-end;
	}
	.add-comment .comment-foot .btn-send {
		padding: 3px 5px;
		background-color: #5f7bfc;
		font-size: 13px;
		cursor: pointer;
		display: inline-block;
		color: #ffffff;
		outline: none;
		border: 0;
		border-radius: 3px;
		margin-bottom: 5px;
		text-decoration: none;
	}
	.add-comment .comment-foot .btn-send:hover {
		background-color: #2f4785;
	}
		.add-comment .comment-body .comment-img {
			border-radius: 5px;
			height: 50px;
			width: 50px;
		}
		.add-comment .comment-body .comment-text {
			width: calc(100% - 65px);
			border-radius: .3rem;
			background: rgb(95, 123, 252);
			border: 1px solid rgb(95, 123, 252);
			color: #ffffff;
			margin-left: 15px;
			padding: 5px 10px;
			position: relative;
		}
		.add-comment .comment-body .comment-text .comment-msg {
			padding: 0px;
			width: 100%;
			overflow: hidden;
			min-height: 35px;
			background-color: transparent;
			border-radius: inherit;
			resize: vertical;
		}
		.add-comment .comment-body .comment-text .comment-msg::-webkit-input-placeholder {color:#ffffffb8;}
		.add-comment .comment-body .comment-text .comment-msg::-moz-placeholder          {color:#ffffffb8;}/* Firefox 19+ */
		.add-comment .comment-body .comment-text .comment-msg:-moz-placeholder           {color:#ffffffb8;}/* Firefox 18- */
		.add-comment .comment-body .comment-text .comment-msg:-ms-input-placeholder      {color:#ffffffb8;}
		.add-comment .comment-body .comment-text::after, .add-comment .comment-body .comment-text::before {
			border: solid transparent;
			border-right-color: rgb(95, 123, 252);
			content: ' ';
			height: 0;
			pointer-events: none;
			position: absolute;
			right: 100%;
			top: 15px;
			width: 0;
		}
		.add-comment .comment-body .comment-text::before {
			border-width: 6px;
			margin-top: -6px;
		}
.addComment {
	padding: 10px 0;
}
/* comments> */
/* <soc-buttons */
.socButtons {
	width: 100%;
	display: flex;
	justify-content: space-around;
}
.socButtons .btn-soc {
	
}
.socButtons .btn-soc button,
.socButtons .btn-soc a {
	background-color: transparent;
	outline: none;
	border: 0;
	cursor: pointer;
}
.socButtons .btn-soc button i,
.socButtons .btn-soc a i {
	display: block;
	height: 32px;
	background-size: 100%;
	width: 32px;
}
.socButtons .btn-soc:hover button i,
.socButtons .btn-soc:hover a i {
	opacity: 0.8;
}
.socButtons .btn-soc.vk button i,
.socButtons .btn-soc.vk a i {
	background-image: url(/image/soc_icons/vk.svg);
}
/* soc-buttons> */
/* <totop */
.toTop {
	opacity: 0.5;
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-image: url(../image/system_icons/top.svg);
	background-color: #ffffff;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.75);
	background-size: 105%;
	background-repeat: no-repeat;
	background-position: 50%;
	display: none;
	cursor: pointer;
	text-align: center;
	z-index: 5123;
}
.toTop:hover {
	opacity: 0.75;
}
/* totop> */