@charset "utf-8";

#content-tips-anchor {
	position: fixed;
	/* bottom: 0; */
	top:100%;
	bottom:auto;
	left: 0;
	right: 0;
	z-index: 32767;
}

#content-tips-wrap {
	max-width:720px;
	margin:0 auto;
	position:relative;
}

#content-tips {
	font-size:75%;
	text-decoration: none;
	display: block;
	padding: 0;
	width: 75%;
	max-width: 576px;
	
	color: black;
	border: 1px solid rgba(0,0,0,.5);
	background-color: white;
	
	border-radius: 15px;
	margin: 0 0 0 auto;
	position:relative;
	right:5px;
}

#content-tips {
	position: relative;
}

#content-tips:before {
	content: '';
	display: block;
	position: absolute;
	right: 50%;
	margin-right: -5px;
	bottom: -10px;
	border-width: 10px 10px 0 10px;
	border-color: rgba(0,0,0,.5) transparent transparent transparent;
	border-style: solid;
}

#content-tips:after {
	content: '';
	display: block;
	position: absolute;
	right: 50%;
	margin-right: -3px;
	bottom: -8px;
	border-width: 8px 8px 0 8px;
	border-color: white transparent transparent transparent;
	border-style: solid;
}

#content-tips.shown {
	bottom: 10px;
}

#content-tips {
	/*
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	*/
	-webkit-transform: translateY(0);
	transform: translateY(0);
	
	-webkit-transition: -webkit-transform 1s ease-in;
	transition: transform .5s ease-in;
}
#content-tips.shown {
	/*
	-webkit-transform: translateY(0);
	transform: translateY(0);
	*/
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	
	-webkit-transition: -webkit-transform .3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
	transition: transform .3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

#content-tips-container {
	display: block;
	padding: 1em 15px;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}

#content-tips-img {
	display: inline-block;
	margin-right: .75em;
	position: relative;
	width: 3em;
	height: 3.2em;
	margin-top: -1.5em;
	margin-bottom: -1.5em;
	vertical-align: middle;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-size: cover;
	margin-left:-15px;
	-moz-border-radius:15px 0 0 15px;
	border-radius:15px 0 0 15px;
}

#content-tips-title {
	display: inline;
	vertical-align: middle;
}

#content-tips-title:before {
	/*
	font-family:'FontAwesome';
	content:'\f103';
	font-size:2em;line-height:0.5;
	margin-top:-1em;
	margin-bottom:-1em;
	margin-right:0.25em;
	vertical-align:middle;
	*/
	content:'next: ';
}

/*
#content-tips-wrap {
	opacity:0.5;
}
*/
#content-tips {
	opacity:.5;
}
