html,body {
	height: 100%;
}


/*AUTH*/
.auth-bg-image {
	background-image: url('../image/bg-auth.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
}

.auth-bg-color {
	/*background-color: rgba(172,215,47, 0.4);*/
	height: 100%;
	overflow-y: auto;
	/*width: 100%;*/
}


.auth-title {
	color: #FFF;
	padding-top: 50px;
	padding-bottom: 30px;
}

.auth-title span {
	font-weight: 200
}

.auth-container {
	margin: 0 auto;
	width: 480px;
	max-width: 100%;
	padding-top: 75px;
	padding-bottom: 30px;
}

.auth-box {
	position: relative;
	display: block;
	background-color: #FFF;
	border-radius: 15px;
	margin-left: 10px;
	margin-right: 10px;
	
	/*margin-top: 50px;*/
}

.auth-icon-container {
	position: absolute;
	top: -60px;
	width: 100%;
}

.auth-icon {
	background-color: #FFF;
	height: 120px;
	width:130px;
	margin: 0 auto;
	border-radius: 100px;
	padding: 5px;
	line-height: 90px;
	text-align: center;
}
.auth-form {
	padding-top: 60px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}



/*CHAT*/
.chat-container {
	position: relative;
	display: block;
	height: 100%;
	margin: 0 auto;
	width: 860px;
	max-width: 100%;
	background-color: #FFF;
	overflow-y: auto;
}

.chat-navbar {
	margin: 0 auto;
	width: 860px;
	max-width: 100%;
}

.chat-toolbar {
	width: 100%;
	height: 60px;
	background-color: #62B7DE;
}

.toolbar-action {
	cursor: pointer;
}

.chat-toolbar-avatar {
	/*float: left;*/
	width: 30px;
	height: 30px;
	border-radius: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #EFEFEF;
	margin-right: 5px
}

.chat-title {
	color: #FFF;
	font-size: 1.2rem
}

.chat-title small {
	font-size: 12px;
    line-height: 1px;
    display: inherit;
    height: 10px;
    font-weight: 300
}

/* .chat-list {
	padding-top: 60px;
} */

.chat-list-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	color: #212529;
	text-decoration: none !important; 
}

.chat-list-item .badge {
	color: #FFF !important;
	font-size: 0.65rem !important;
	vertical-align: text-top;
}

.chat-list-no-item {
	text-align: center;
	margin-top: 50px;
	font-weight: 300
}

.chat-list-item:hover {
	color: #212529;
}

.chat-list-item .list-name {
	padding: 10px 15px 10px 75px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.3rem;
    border-bottom: .7px solid #EFEFEF;
}



.chat-list-item .list-name span {
	font-size: 0.8rem;
	font-weight: 300;
	color: #999999
}


.chat-list-item-avatar {
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #EFEFEF
}

.chat-conversation {
	position: absolute;
	width: 100%;
	top: 55px;
	bottom: 60px;
	background: url(../image/doodle.png), linear-gradient(to bottom, #bce1f6 0%,#a1d4f1 23%,#59b5dd 71%,#49aed9 84%,#3aa8d5 100%);
	overflow-y: auto;
}

.chat-conversation-item-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 10px 10px 0 10px;
}

.chat-conversation-item-wrap.me {
	justify-content: flex-end;
}

.chat-conversation-item {
	max-width: 80%;
	padding:10px;
	/*margin: 0 10px;*/
	background: #FFF;
	border-radius: 5px;
	white-space: pre-wrap;
}

.chat-conversation-item-wrap.me .chat-conversation-item {
	display: block;
	background: #E8F5E9;
}

.chat-conversation-item-title {
	font-size: 16px;
	font-weight: bold;
}

.chat-conversation-item-message {
	font-size: 13px;
	font-weight: 400;
	color: #666
}

.chat-conversation-item-message img {
	cursor: pointer;
}

.chat-modal-preview .modal-content {
	background-color: transparent;
	border: none;
}

.chat-time {
	font-size: 12px;
	font-weight: 300;
}


.chat-input-form {
	padding: 10px;
	background: #FFF;
	bottom: 0;
	/* left: 0;
	right: 0; */
	margin: 0 auto;
	width: 860px;
	max-width: 100%;
	position: fixed;
	box-shadow: 0 -2px 5px -3px #333;
}

.chat-input-form textarea {
	resize: none;
}

.chat-input-form .input-group-append ,.chat-input-form .input-group-prepend {
	flex-direction: column-reverse;
}
.chat-input-form .input-group-prepend button {
	border-radius: 5px !important;
	margin-right: 10px
}


.chat-input-form .input-group-append button {
	border-radius: 5px !important;
	margin-left: 10px
}

.chat-connection {
	border-radius: 5px;
	position: absolute;
	left: 10px;
	bottom: 70px;
	padding: 5px;
	font-size: 10px;
	font-weight: 300;
	color: #FFF
}

.chat-timmer {
	position: absolute;
	right: 15px;
	top: 70px;
	color: #FFF;
	padding: 5px;
	font-size: 14px;
	border-radius: 5px;
	background: #f44336;
}

.chat-connection.connecting {
	background: #f44336;
}

.chat-connection.connected {
	background: #43a047;
}
.chat-connection.none {
	display: none;
}
.img-icon {
	height: 20px;
	
}

.img-icon.invert {
	filter: invert(1);
}


/*COLORING*/
.bg-grey {
	background-color: #E8E8E8;
}

.bg-blue-light {
	background-color: #62B7DE;
	color: #FFF;
}


/*BUTTON*/
.btn-block {
	width: 100%;
}



/*SPACE*/
.flex-break {
  flex-basis: 100%;
  height: 0;
}

.mt1 {
	margin-top: 10px
}