.chatContainer
{
	width: 100%;
	height: calc(100vh - 50px);
}

.seznamChatu
{
	width: 300px;
	height: calc(100vh - 50px);
	float: left;
	background-color: #EFF0F1;
	border-right: 1px solid #dadcde;
	overflow-y: auto;
	position: relative;
}

.seznamChatu .footer
{
	width: calc(100% - 30px);
	border-top: 1px solid rgb(218, 221, 225);
	padding: 20px 18px 15px 12px;
	display: table;
	position: absolute;
	bottom: 0px;
	background-color: white;
}

.seznamChatu .footer button{
    float: left;
    margin: 0px !important;
}

.seznamChatu .kontakt
{
	display: table;
	width: calc(100% - 40px);
	height: 29px;
	overflow: hidden;
	border-bottom: 1px solid #dadcde; 
	background-color: white; 
	cursor: pointer;
	padding: 20px;
	position: relative;
}

.seznamChatu .kontakt:hover {background-color: #f5f6f7;}

.seznamChatu .kontakt .jmeno 
{
	max-width: 300px;
	height: auto;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}


.seznamChatu .kontakt .jmeno span
{
	font-size: 14px;
	color: #1C1E21;
	float: left;
}

.seznamChatu .kontakt .jmeno .novaZprava
{
	width: 6px;
	height: 6px;
	background-color: #0099FF;
	border-radius: 10px;
	display: table;
	margin-left: 10px;
}


.seznamChatu .kontakt .posledniZprava
{
	font-size: 12px;
	color: rgba(0,0,0,0.35);
	max-height: 15px !important;
	max-width: 253px !important;
	display: inline-block;
	overflow: hidden;
}

.seznamChatu .kontakt form
{
	float: right;
	width: 50px;
	position: absolute;
	right: 0px;
	bottom: 20px;
	z-index: 10;
}

.seznamChatu .kontakt form .smazatBtn
{
	float: right;
	background-image: url("../images/delete.png"); 
	width: 23px;
	height: 23px;
	margin: 0px 1px;
	padding: 7px;
	background-color: #f3f4f5;
	border-color: #dadcde;
    border-style: solid;
    border-width: 1px;
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
	display: table;
	float: left;
	opacity: 0.7;
	cursor: pointer;
	outline: none;
}

.seznamChatu .kontakt form .smazatBtn:hover{
	background-color: rgba(0,0,0,0.1);
}

.obsahChatu
{
	width: calc(100% - 302px);
	height: calc(100vh - 113px);
	float: right;
	background-color: white;
	overflow-y: auto;
}

.chatForm
{
	width: calc(100% - 321px);
	height: 43px;
	background-color: white;
	padding: 10px;
	float: right;
	display: table;
}

.form
{
	display: none;
}
.form.active
{
	display: block !important;
}

.chatForm .zprava
{
	width: calc(100% - 104px);
	outline: none;
	resize: none;
	padding: 13px 18px;
	border-radius: 50px;
	height: 18px;
	margin: 0px 8px 0px 0px;
	background-color: rgba(0,0,0,0.05);
	font-family: Arial, sans-serif;
	font-size: 14px;
	border:none;
	float: left;
}

.chatForm .odeslat
{
	width: 44px;
	height: 44px;
	border-radius: 50px;
	margin: 0px 8px 0px 8px;
	background-color: rgba(0,0,0,0.05); 
	outline: none;
	float: right;
	border: none;
	background-image: url(../images/send.png);
	background-position: center center;
	background-size: 45%;
	background-repeat: no-repeat;
	cursor: pointer;
}

.chatForm .odeslat:hover
{
	background-size: 50%;
}

.obsahChatu .zadneZpravy
{
	display: table;
	margin: auto;
	padding: 20px;
	font-size: 12px;
	font-weight: bold;
	opacity: 0.5;

}

.obsahChatu .zpravaContainer
{
	width: calc(100% - 20px);
	height: auto;
	min-height: 40px;
	padding: 10px;
	display: table;
}

.obsahChatu .zpravaContainer.autor{display: table;}
.obsahChatu .zpravaContainer.autor div{float: right; background-color: #0099FF; color: white;}
.obsahChatu .zpravaContainer.autor div span{color: rgba(255,255,255,1);}
.obsahChatu .zpravaContainer.autor .cas
{
	float: right;
	margin-left: 0px;
	margin-right: 5px;
}

.obsahChatu .zpravaContainer div
{
	background-color: #F1F0F0;
	max-width: 600px;
	min-height: 40px;
	min-width: 70px;
	display: table;
	border-radius: 10px;
	padding: 12px 15px;
}


.obsahChatu .zpravaContainer div span
{
	font-size: 15px;
	color: rgba(0,0,0,1);
}

.obsahChatu .zpravaContainer .cas
{
	font-size: 11px;
	color: rgba(0,0,0,0.4);
	margin-left: 5px;
}

.obsahChatu .zpravaContainer div p
{
	max-width: 600px;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	padding: 0px;
	margin: 10px 0px 0px 0px;
	word-wrap: break-word !important;
}