
html, body {
	width:100%;
	min-width:320px;
	height:100%;
	overflow: hidden;
	/*opacity: 0;*/
}
body {
	margin:0;
}
.chat-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 320px;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	font-family: Arial, sans-serif;
	color: #000000;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
	z-index: 1000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-height: 499px) {
	.chat-container {
		overflow-x: hidden;
	}
}

.chat-container * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.chat-container * ::-webkit-scrollbar-button {
	display: none;
}

.chat-container * ::-webkit-resizer {
	display: none;
}

.chat-container * ::-webkit-scrollbar-track {
	background-color: #eeeeee;
}

.chat-container * ::-webkit-scrollbar-thumb {
	border-radius: 0;
	background-color: #aeaeae;
}

.chat-container * ::-webkit-scrollbar-thumb:hover {
	background-color: #767779;
}

.chat-container * ::-webkit-scrollbar {
	width: 8px;
}

.chat-container.js-chat {
	background-image: url(/images/background1.jpg);
}

.chat-container__top {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-bottom: 1px solid #dedede;
}

.chat-container__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 100%;
	position: relative;
}

.chat-container__left {
	width: 320px;
	height: 100%;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	/*border-right: 1px solid #dedede;*/
	margin-left: -320px;
	position: relative;
	z-index: -1;
	-webkit-transition: margin-left 0.2s;
	-o-transition: margin-left 0.2s;
	transition: margin-left 0.2s;
}

.chat-container__left.is-open {
	margin-left: 0;
	z-index: 2;
}

.is-mobile .chat-container__left {
	position: absolute;
	top: 42px;
	left: 0;
	width: 300px;
	max-width: 100%;
}

.chat-list__item.js-chat-logout {
	position: fixed;
	background: #fff;
	width: 312px;
	border:1px solid #cccccc;
	z-index:1;
}

.is-mobile .chat-list__item.js-chat-logout {
	width:292px;
}

.chat-container__top div.chat-menu__item { display:block; }
.is-mobile .chat-container__top div.chat-menu__item[data-link="contacts"] {
	 display:none;
}

.chat-container__top .chat-block__left i.fa {
	font-size:24px;
}

.chat-container__right div.chat-menu__item {
	display:none;
	font-size: 20px;
    margin-top: 12px;
    margin-left: 19px;
	position:relative;
}

.chat-container__right div.chat-menu__item i {
	position:absolute;z-index:2;
}

.is-mobile .chat-container__right div.chat-menu__item {
	display:block;
}
@media (max-width: 352px) {
	.chat-container__head .chat-user .chat-user__name {
		margin-left: 15px;
	}
	.chat-user__login.js-contact-label {
		margin-left: 0px!important;
	}
}
div.textarea-bottom {
	height:10px;
	position:relative;
	display:none;
	width:100%;
}
@media (max-width: 430px) {
	li.butt-cell.chat-user__title-user {
		display:none;
	}
	div.chat-container__username {
		display:block;
	}
	div.textarea-bottom {
		display:block;
	}
}

.chat-container__panel {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow-x: hidden;
	display: none;
	background-color: #eeeeee;
}

.chat-container__panel.is-active {
	display: block;
}

.chat-container__right {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 100%;
	z-index: 1;
	position: relative;
}

.chat-container__content {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.chat-container__content.is-active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.chat-container__head {
	padding: 9px;
	/*border-bottom: 1px solid #dedede;*/
	background:#eeeeee;
}

.chat-container__body {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: calc(100% - 50px);
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-height: 499px) {
	.chat-container__body {
		height: 100%;
	}
}

.chat-content__item.js-chat-output-item.is-left {
	text-align: left!important;
}

.chat-container--login {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: auto;
	padding: 15px 0;
}

.chat-list {
	height: 100%;
}

.chat-list__item {
	padding: 10px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s, color 0.3s;
	-o-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}

.chat-list__item:hover {
	background-color: #eeeeee;
}

.chat-list__item.is-active {
	background-color: #dedede;
}

.chat-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 10px;
}

.chat-user--right {
	text-align: right;
}

.chat-user--center {
	text-align: center;
}

.chat-user__name {
	/*font-weight: bold;*/
	font-size: 12px;
}

.chat-user__login {
	font-style: italic;
	font-size: 14px;
	color: #006ca9;
	font-weight:bold;
}

.chat-contact {
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: pointer;
	-webkit-transition: background-color 0.3s, color 0.3s;
	-o-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
	border:2px solid #dbdbdb;
	border-radius:5px;
	margin:2px 4px 0px 4px;
	position:relative;
}

.chat-contact.empty{
	font-size: 16px;
	cursor: unset;
	color: #d60202;
}

.empty-dialog-window {
	font-size: 20px;
	color: #d60202;
	margin: 20px;
}

.chat-contact__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.chat-contact__right {
	text-align: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.chat-contact__login {
	font-style: italic;
	font-size: 12px;
	color: #006ca9;
}

.chat-contact__messages {
	color: #006ca9;
	font-style: italic;
	font-weight: bold;
}

.chat-contact__status {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #b30000;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
	margin-left: 10px;
}

.chat-contact:hover {
	background-color: #eeeeee;
}

.chat-contact.linked {
	background-color: #eef9a2;
}
.chat-contact.is-active {
	background-color: #fff7da!important;
}

.chat-contact.is-active .chat-contact__name {
	font-weight: bold;
}

.chat-contact[data-status="online"] .chat-contact__status {
	background-color: #20844c;
}

.chat-login {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px;
	border: 1px solid #dedede;
	background-color: #eeeeee;
	flex-shrink: 0;
}

.chat-login__input {
	width: 304px;
	height: 30px;
	margin-bottom: 10px;
	padding: 0 10px;
	border: 1px solid #aeaeae;
	outline: none;
	-webkit-transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	transition: border-color 0.3s;
	-webkit-appearance: none;
	flex-shrink: 0;
}

.chat-login__input::-ms-clear {
	width: 0;
	height: 0;
	display: none;
}

.chat-login__input::-webkit-input-placeholder {
	color: #aeaeae;
	opacity: 1;
}

.chat-login__input:-ms-input-placeholder {
	color: #aeaeae;
	opacity: 1;
}

.chat-login__input::-ms-input-placeholder {
	color: #aeaeae;
	opacity: 1;
}

.chat-login__input::placeholder {
	color: #aeaeae;
	opacity: 1;
}

.chat-login__input:-webkit-autofill {
	-webkit-box-shadow: inset 0 0 0 40px #ffffff;
	-webkit-text-fill-color: #000000;
}

.chat-login__input:hover {
	border-color: #006ca9;
}

.chat-login__input:focus {
	outline: none;
	border-color: #006ca9;
}

.chat-login__button {
	width: 304px;
	height: 30px;
	padding: 0 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #006ca9;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: color 0.3s, background-color 0.3s;
	-o-transition: color 0.3s, background-color 0.3s;
	transition: color 0.3s, background-color 0.3s;
	border: none;
	flex-shrink: 0;
}

.chat-login__button:hover {
	background-color: #20844c;
}

.chat-login__button:focus {
	outline: none;
}

.chat-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px;
}

.chat-menu__item {
	cursor: pointer;
	width: 30px;
	height: 30px;
	color: #767779;
	-webkit-transition: fill 0.2s, background-color 0.2s;
	-o-transition: fill 0.2s, background-color 0.2s;
	transition: fill 0.2s, background-color 0.2s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
}

.chat-menu__item:hover {
	color: #006ca9;
}

.chat-menu__item:active, .chat-menu__item.is-active {
	background-color: #eeeeee;
}

.chat-menu__item + .chat-menu__item {
	margin-left: 10px;
}

.chat-image {
	height: 100%;
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.chat-image img.contact-foto {
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 1;
	display: block;
	object-fit: contain;
}

.chat-image__video {
	height: 30%;
	width: 30%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	opacity: 0.5;
}

.chat-image__video video {
	width: 100%;
	height: 100%;
}
.chat-image__parameters {
	position:absolute;
	top:10px;
	left:10px;
	width:38px;
	height:200px;
	z-index: 2;
	display:none;
}
.chat-image__parameters .js-audio, .chat-image__parameters .js-video {
	display: block;
	height: auto;
	width: inherit;
	border: 1px solid #b6b6b6;
	padding: 5px 2px 0 2px;
}

.chat-image__parameters div {
	margin-bottom: 5px;
	height:7px;
}
.chat-image__sendel, .chat-image__isreading, chat-image__correct-rate {
	height:15px;
}
.chat-image__sendel, .chat-image__isreading {
	font-size:12px;
	font-weight:bold;
	height:15px!important;
}
.chat-image__correct-rate {
	background: #ff0000;
}
.chat-image__resive {
	background: #ffffff;
	border:1px solid #888;
}
.chat-image__returnstate {
	background: #ffffff;
	border:1px solid #888;
}
.chat-image__sendel {
	background: #fff;
	border:1px solid #888;
}
.chat-image__isreading {
	background: #fff;
	height: 16px;
	border: 1px solid #888;
	overflow-x: clip;
	width: 33px!important;
	position: relative;
}
.chat-login__button--remind {
	margin-top:10px;
	background:#00a988;
}
.error_mess {
	color:red;
	padding: 5px;
}
.success_mess {
	color:green;
	padding:5px;
}
.chat-list__item ul {
	list-style:none;
	padding-left:5px;

}
.chat-list__item ul li {
	line-height:25px;
}

.chat-list__item ul li select
{
	float: right;
    margin-right: 20px;
    min-width: 60px;
}

.chat-list__item.js-chat-logout a{
	padding-left:5px; text-decoration:none;
}

.chat-list__item.js-chat-logout a span
{
	font-size: 18px;
    color: #bc525b;
}

#container img {
	/*width:480px;*/
}

#video {
	width:120px;
	height:90px;
	position:absolute;
	top:0; /*right:0;*/
	border:1px solid #888;
	display:block;
	opacity:0.4;
}

#controlls {
	padding:0;
	margin: 15px 25px;
}

#controlls li{
	list-style:none; display:inline;padding:5px;
	font-weight:bold;
}

#controlls li.radio {
	border: 1px solid black;
	border-right: none;
	border-bottom: none;
	border-top: none;
}

#controlls li.radio.first {
	border-left: 12px solid #88ffaa;
}

#counter { font-size:22px; font-weight:bold; }

#video_params ul {
	padding:0;
}

#sample_rate{
	font-size:10px;
	color:#35ac81
}

#contacts {
	padding-left:10px;
}

#contacts li {
	padding:5px 0;
	list-style:none;
}

#contacts li button {
	padding: 0px 3px;
	height: 28px;
}

#contacts .call-query {
	float:right;
}
#contacts button.del {
	float:right;
	font-size: 18px;
	color:red;
}
span.login-item{
	font-size:14px;
	color:#1b99d7;
	margin-left:5px;
	font-weight:normal;
}
.local-video {
	height:90px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.chat-user__name button i {
	font-size: 16px;
}
.chat-user__name button i span {
	margin-left:3px;
}

.you-data-left
{
	float: left;
    line-height: 30px;
    margin-right: 10px;
    font-size: 18px;
    color: green;
	font-weight:bold;
}
ul.list-errors {
	list-style:none;
	padding:0;
	margin:0;
}
ul.list-errors li {
	max-width:200px;
	border-bottom:1px solid black;
	color:#a11414;
}

/*.remote-video {
	position: relative;
    height: 480px;
    width: 640px;
    z-index: 1;
    display: block;
    !*object-fit: contain;*!
	zoom:90%;
	!*max-width: 100%;
	max-height: 100%;*!
}*/
.remote-video {
	max-height: 100%;
	max-width: 100%;
	display: none;
}

.ctrl-info {
	position: fixed;
	width: 50px;
	height: 18px;
	background: none;
	display: none;
	color: #f0f0f0;
	font-size: 12px;
	z-index: 1000;
}

.chat-contact.js-chat-contact.called {
	background: #2a85b02b;
	color: #7F00CD;
}

.chat-contact__name span.datetime {
	font-size:12px;
	color:mediumpurple;
	position:absolute;
	left: 50px;
	bottom: 0px;
}

span.name-item, span.login-item {
	display: inline-block;
	width: 100px;
	white-space: nowrap;
	overflow: hidden;
	vertical-align: bottom;
	text-overflow: ellipsis;
}

.is-mobile span.name-item, .is-mobile span.login-item {
	width: 90px;
}

#empty_last_row {
	visibility: hidden;
    min-height: 45px;
}

#empty_first_row {
	visibility: hidden;
	height: 0px;
}

#search button {
	border: none;
    background: #f4f8ff;
}

.is-min_width ._call.delete{
	/*display:none;*/
}
.is-min_width ._call.edit{
	/*display:none;*/
}

.chat-container__panel[data-panel="contacts"]{
	opacity:0.8;
	background: #ffffff;
	border-right: 1px solid #bebcbc;
}

li.butt-cell button {
	height:27px;
	outline: none;
}

._call.light-button {
	display:none;
}

._call.delete {
	background: #d51919;
	float:right; margin-right:5px;
}
.is-min_width ._call.delete {
	margin-right:0px;
}

._call.edit {
	background: #cefad9;
	float:right; margin-right:6px;
}

._call.ignore {
	background: #ffc0c0;
	float:right; margin-right:6px;
}

.fa.fa-remove {
	color:#f5fe7a;
}

.fa.fa-user-plus {
	color:#456cff;
}
.edit-form {
	width: 320px;
	height:100%;
	float:right;
	border-left:1px solid #e5dfdf;
	display: none;
	background: #eeeeee;
}

input.cancel-audio, input.play-audio, input.save-audio, input.delete-audio {
	display:none;
}

.chat-list form table td {
	min-width:30px;
}
.local-video {border:1px solid #cefad9;}

.chat-user__login.js-contact-label{
	font-style: inherit;
	font-size: 14px;
	margin-left: 7px;
	display: inline-block;
	max-width: 140px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
}
@media (max-width:372px){
	.is-mobile .chat-user__login.js-contact-label{
		max-width: 70px;
	}
}
.fa.fa-sign-out{
	margin-left: 10px;
	color: #444;
}
.chat-list__item.js-chat-logout {
	cursor:pointer;
}
.chat-list__item.js-chat-logout:hover {
	background:white;
}
#You_info table {
	margin-top:12px;
}
img.preloader {
	display:none;
	height:100px;
}
.js-chat-content video {
	display:none;
}

.js-chat-content ._call.audio {
	opacity: 0.25;
}

.js-chat-content ._call.video {
	opacity: 0.25;
}

#You_info td i.fa {
	font-size:18px;
}

#You_info i.fa.fa-eye-slash {
	display:none;
}

span.eyes {
	display:none;
}

.js-chat li.users-icon {
	display:none;
}

.js-chat.is-mobile li.users-icon {
	display:inline-grid;
}

ul.chat-user__login {
	padding-left:0px;
	height:0px;
	margin:0;
	list-style:none;
	text-align:center;
}
li.butt-cell {
	display:inline-grid;
	width:40px;
	height:16px;
	margin-bottom:8px;
}
#mess_start {
	position: fixed;
	top: 50px;
	left: 50%;
	width: 265px;
	height: 80px;
	z-index: 10000;
	background: #054fd5;
	margin-left: -160px;
	font-size: 24px;
	display: none;
	justify-content: center;
	align-items: center;
	font-family: Arial;
	color: #ffffff;
	padding:25px;
	cursor:pointer;
	/*opacity:1!important;*/
}
#mess_start.first {
	width: 340px;
	height: 210px;
	margin-left: -200px;
	cursor: default;
}

#mess_start.first a span {
	color:#ff0;
	text-decoration: underline;
}

.first-close {
	float:right;
	margin-top: -27px;
	margin-right: -18px;
	color: #ff5c5c;
	font-size: 30px;
	cursor: pointer;
}

.js-chat-link[data-link="settings"]{
	color:#008000;
}

.js-chat-link[data-link="contacts"]{
	color:#008000;
}

.js-chat-link.is-active[data-link="contacts"] {
	color:#ff0000;;
}

.js-chat-link.is-active[data-link="settings"] {
	color:#ff0000;
}

.butt-cell.users-icon i.fa {
	color:#00c500;
}

.butt-cell.users-icon i.fa.active {
	color:#ff0000;
}

.chat-user.chat-user--right.js-chat-user{
	padding-left: 30px;
	position:relative;
}

#reload-page {
	position: absolute;
	left: 0px;
	top: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-image: url(/images/reload_g.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: center;
}

.block-volume {
	position: absolute;
	top: -25px;
	right: 19px;
	width: 20px;
	height: 100%;
	list-style: none;
	display:none;
}
.item-settings {
	margin:20px 15px;
}
.item-settings form {
	position: relative;
}
.item-settings form ul {
	/*padding: 0;
	margin: -15px;
	list-style:none;*/
}
.item-settings form ul li {
	height: 20px;
	margin: 0px;
}

.item-block {
	padding: 5px 10px;
	border: 1px solid grey;
	margin: 5px 0;
	border-radius: 5px
}

.item-block hr {
	margin: 2px;
}

.title-settings {
	color: #009800;
	font-size: 16px;
	font-weight: bold;
	padding: 0 12px;
}

.title-section {
	width: 100%;
	text-align:center;
	margin-top: 2px;
	font-weight: bold;
	color: #4e4efa;
	font-size:13px;
}

.item-settings.main select{
	float:right;
	width: 48px;
}

.item-settings.main input[type="checkbox"]{
	float: right;
	width: 18px;
	height: 18px;
	margin-top: 1px;
}

.item-settings.main input[type="number"]{
	float: right;
	width: 45px;
	height: 18px;
	margin-top: 1px;
}

h1 {
	font-size: 18px;
	width: 340px;
	text-align: center;
	padding: 0;
	margin: 5px 0;
	color: #689;
}
#copy_link_window, #add_contact_window {
	position: fixed;
	top: 5px;
	left: calc(50% - 200px);
	width: 400px;
	background: #eee;
	z-index: 1003;
	display: none;
	padding: 5px;
	border: 1px solid #888;
}
#add_contact_window {
	width: 360px;
	left: calc(50% - 180px);
	top: 100px;
}
#add_contact_window table {
	width:100%;
}
#add_contact_window table td {
	width:33%;
	text-align: center;
	height: 22px;
}
#add_contact_window span {
	text-align: center;
	width: 100%;
	display: block;
	font-size: 18px;
	margin: -3px 0 2px 0;
}
#add_contact_window select option {
	text-align:center;
	font-weight:bold;
}
#add_contact_window select {
	font-weight:bold;
}
#alert_add_ok, #alert_add_cancel, #select_add_lang {
	width:75%; height:100%;
}
#alert_add_ok {
	display:none;
	margin-left:15px;
}
#copy_link_window span {
	float: right;
	display: block;
	background: #f00;
	width: 80px;
	text-align: center;
	color: #fff;
	margin-right: 75px;
	height: 25px;
	font-size: 20px;
	cursor:pointer;
}
#copy_link_window textarea, #add_contact_window textarea {
	width:100%;
	margin-top: 10px;
	resize: none;
	overflow: hidden;
}
#add_contact_window textarea {
	margin-top: 0px;
	height: 20px;
	width: 98%;
}
span[data-func="copy"] {
	background:#02a502 !important;
}
.chat-contact.js-chat-contact.online.is-active {
	border:2px solid #559eff;
	background-color: #ecffd6  !important;
}
#alert_window, #confirm_window, #prompt_window, #notify_ok_window {
	position: fixed;
	top: 100px;
	width: 360px;
	left: calc(50% - 180px);
	background: #eee;
	z-index: 1002;
	 display: none;
	padding: 5px;
	border: 1px solid #888;
}

#alert_window table,
#confirm_window table,
#prompt_window table,
#copy_link_window table,
#notify_ok_window  table {
	width:100%;
}
#alert_window table td, #notify_ok_window  table td {
	width:90%;
	text-align:center;
}
#confirm_window table td, #prompt_window table td, #copy_link_window table td {
	width:50%;
	text-align:center;
}
#prompt_window textarea {
	width:98%;
	resize: none;
	height: 20px
}
#alert_window table td button, #notify_ok_window table td button {
	width:25%;
}
#confirm_window table td button, #prompt_window table td button {
	width:75%;
}
#alert_window_content, #confirm_window_content, #prompt_window_content {
	padding: 10px;
	font-size: 18px;
}
/*#prompt_window {
	display:block;
}*/
#window_overlay {
	width:100%;
	height: 100%;
	left:0;
	top:0;
	position:fixed;
	z-index: 1001;
	background: #000;
	opacity: 0.7;
	display:none;
}
button[data-title="Input"] {
	background-image: url(/images/input_button.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50% 60%;
}
button[data-title="Remind password"] {
	background-image: url(/images/remind_pssw_button.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 65% 80%;
}
button[data-title="Registration"] {
	background-image: url(/images/registration_button.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 45% 75%;
}
div[data-title="Authorization"] {
	background-image: url(/images/authorization_title.png);
	width: 50%;
	height: 18px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 69% 100%;
	margin: 5px;
}
div[data-title="Registration"] {
	background-image: url(/images/registration_title.png);
	width: 50%;
	height: 18px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 69% 100%;
	margin: 5px;
}
.chat-container__username
{
	width: 100%;
	height: 20px;
	text-align: center;
	font-style: italic;
	font-size: 14px;
	color: #006ca9;
	font-weight: bold;
	display:none;
}
tr.audio-controll td {
	width:25%;
}
option.custom-tone {
	color:green;
}
#mypreloader {
	display:none;
	margin:40px 0 40px 0;
}
#myfoto {
	width:100%;
	margin-top:15px;
}
.you-photo-buttons li {
	list-style: none;
	margin-top: 8px;
}

.chat-contact .name-item {
	color: #5b5b5b;
}

.chat-contact.online .name-item {
	color: #000000;
}

.panel .col.audio-stop {
	position: relative;
}

.panel .col.audio-stop .timer {
	position: absolute;
	top: 3px;
	left: 32px;
	background: #e2e2e2;
	height: 16px;
	width: 36px;
}

.chat-content__item .text .duration {
	margin-left: 10px;
	margin-top: 8px;
	float: right;
	font-size: 14px;
}
.edit-form.left_block form input[type="text"] {
	width:80%;
}
.edit-form.left_block form select {
	width:80%;
}
.screen-lock {
	position: absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background: #000;
	z-index:1005;
}
#mic-check, #mic-stop {
	padding:0 3px 0 3px;
	border:1px solid #5b5b5b;
	width:24px;
	border-radius: 3px;
}
.check-microphone-btn {
	width: 15%;
}
.chat-contact__left .user-contact-photo {
	height: 50px;
	width: 50px;
	margin: -10px 10px -10px -10px;
	border-radius: 4px 0 0 4px;
}
.user-data-row {
	white-space: nowrap;
	width:inherit;
	overflow:hidden;
	height:25px;
}
form .edit-user-block {
	padding: 5px 10px;
	border: 1px solid grey;
	margin: 5px 10px 0 20px;
	border-radius: 5px;
}
.tmp-window .edit-user-block {
	display:none;
}
.tmp-window .message-container.left_block {
	/*display:none; */
}