.zs-container {
	position: fixed;
	bottom: 15px;
	left: 10px;
	right: auto;
	z-index: 999999;
}

.zs-container .zs-ico {
	display: block;
	position: relative;
	margin-top: -30px;
	cursor: pointer;
	box-sizing: border-box;
}

.zs-container .zs-ico.zs-has-notify:before {
	left: 36px !important;
	background-color: #ff5d5d;
}

.zs-container .zs-ico .zs-ico-main {
	display: block;
	position: relative;
	z-index: 9999999;
	background: url(../images/zalo-icon.png) 0 0 no-repeat;
	background-size: cover;
	width: 58px;
	height: 58px;
}

.zs-container .zs-ico.zs-has-notify em {
	position: absolute;
	top: 7px;
	left: 17px;
}

.zs-container .zs-ico.zs-has-notify em:after,
.zs-container .zs-ico.zs-has-notify em:before {
	position: absolute;
	left: -4px;
	top: 2px;
	content: "";
	width: 32px;
	height: 32px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-animation-name: Grow;
	-moz-animation-name: Grow;
	animation-name: Grow;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-timing-function: linear;
}

.zs-container .zs-ico.zs-has-notify em:before {
	-webkit-box-shadow: 0 0 8px 4px #ff5d5d;
	box-shadow: 0 0 8px 4px #ff5d5d;
}

.zs-container .zs-ico.zs-has-notify em:after {
	-webkit-box-shadow: inset 0 0 6px 2px #ff5d5d;
	box-shadow: inset 0 0 6px 2px #ff5d5d;
}

.scrollup {
	bottom: 100px;
	left: 20px;
	right: unset;
}

@-webkit-keyframes Grow {
	0% {
		transform: scale(.1);
		-ms-transform: scale(.1);
		-webkit-transform: scale(.1);
		opacity: 0;
		filter: alpha(opacity=0)
	}

	50% {
		opacity: 1;
		filter: alpha(opacity=100)
	}

	to {
		transform: scale(1.8);
		-ms-transform: scale(1.8);
		-webkit-transform: scale(1.8);
		opacity: 0;
		filter: alpha(opacity=0)
	}
}

@-moz-keyframes Grow {
	0% {
		transform: scale(.1);
		-ms-transform: scale(.1);
		-webkit-transform: scale(.1);
		opacity: 0;
		filter: alpha(opacity=0)
	}

	50% {
		opacity: 1;
		filter: alpha(opacity=100)
	}

	to {
		transform: scale(1.8);
		-ms-transform: scale(1.8);
		-webkit-transform: scale(1.8);
		opacity: 0;
		filter: alpha(opacity=0)
	}
}

@keyframes Grow {
	0% {
		transform: scale(.1);
		-ms-transform: scale(.1);
		-webkit-transform: scale(.1);
		opacity: 0;
		filter: alpha(opacity=0)
	}

	50% {
		opacity: 1;
		filter: alpha(opacity=100)
	}

	to {
		transform: scale(1.8);
		-ms-transform: scale(1.8);
		-webkit-transform: scale(1.8);
		opacity: 0;
		filter: alpha(opacity=0)
	}
}

@media (min-width:768px) {}

@media (min-width:1200px) {
	.zs-container {
		bottom: 10px;
	}

	.scrollup {
		bottom: 20px;
	}
}