.help_disk_sec {
	bottom: 70px;
	position: fixed;
	margin: 1em;
	right: 0;
	z-index: 998;
}

.zmdi-comment-outline {
	background-image: url("../images/help_disk.png");
	width: 50px;
	height: 50px;
	padding: 25px;
	background-repeat: no-repeat;
	background-position: center;
}

.zmdi-close {
	background-image: url("../images/cancle_help.png");
	width: 50px;
	height: 50px;
	padding: 25px;
	background-repeat: no-repeat;
	background-position: center;
}

.help_disk_in {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	text-align: center;
	color: #f0f0f0;
	margin: 25px auto 0;
	box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
	cursor: pointer;
	-webkit-transition: all .1s ease-out;
	transition: all .1s ease-out;
	position: relative;
	z-index: 998;
	overflow: hidden;
	background: #1090cf;
}

.help_disk_in>i {
	font-size: 2em;
	line-height: 55px;
	-webkit-transition: all .2s ease-out;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

/*Chatbox*/
.chat {
	position: fixed;
	right: 85px;
	bottom: 20px;
	width: 400px;
	font-size: 12px;
	line-height: 22px;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	opacity: 0;
	box-shadow: 1px 1px 100px 2px rgba(0, 0, 0, 0.22);
	border-radius: 10px;
	-webkit-transition: all .2s ease-out;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	display: none;
}

.chat_header {
	/* margin: 10px; */
	font-size: 13px;
	font-weight: 500;
	color: #f3f3f3;
	height: 0;
	background: #42a5f5;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding-top: 0px;
}

.chat.is-visible .chat_header {
	height: 46px;
	padding-top: 8px;
}

.chat_header .span {
	float: right;
}

.chat.is-visible {
	opacity: 1;
	-webkit-animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);
	animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);
	display: block;
}

.is-hide {
	opacity: 0
}

.chat_option {
	float: left;
	font-size: 20px;
	list-style: none;
	position: relative;
	height: 100%;
	width: 100%;
	margin-right: 10px;
	letter-spacing: 0.5px;
	font-weight: 400;
	line-height: 26px;
}

.chat_option img {
	border-radius: 50%;
	width: 55px;
	float: left;
	margin: -30px 20px 10px 20px;
	border: 4px solid rgba(0, 0, 0, 0.21);
}

.chat_body {
	background: #fff;
	width: 100%;
	padding: 8px;
	display: inline-block;
	text-align: center;
	overflow-y: auto;
	border: 2px solid #42a5f5;
}

.chat_list p {
	font-size: 14px;
	line-height: 22px;
}

.chat_list p span {
	font-size: 22px;
	color: #b20501;
}

/*Element state*/
.is-active {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.is-float {
	box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

.is-loading {
	display: block;
	-webkit-animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
	animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
}

/* SMARTPHONES PORTRAIT */
@media only screen and (min-width: 300px) {
	.chat {
		width: 250px;
	}
}

/* SMARTPHONES LANDSCAPE */
@media only screen and (min-width: 480px) {
	.chat {
		width: 300px;
	}
	.chat_field {
		width: 65%;
	}
}

/* TABLETS PORTRAIT */
@media only screen and (min-width: 768px) {
	.chat {
		width: 300px;
	}
	.chat_field {
		width: 65%;
	}
}

/* TABLET LANDSCAPE / DESKTOP */
@media only screen and (min-width: 1024px) {
	.chat {
		width: 712px;
	}
	.chat_field {
		width: 65%;
	}
}