/* share button */
.shareButton {
	position: relative;
}
.shareButton > i { vertical-align: middle; }
.shareButton:hover { text-decoration: none; }
.shareButton:after {
	content: attr(data-share-tip);
	margin-left: 2px;
	font-size: 10px;
	display: none;
	position: absolute;
	white-space: nowrap;
	top: 0px;
	line-height: 13px;
}
.shareButton.shareButton-left:after{
	right: 25px;
}
.shareButton.shareGrayTip:after {
	background-color: #ddd;
	padding: 0px 3px;
	border-radius: 3px;
}
.shareButton:hover:after {
	display: inline-block;
}

/* share content (popup) */
.share-content {
	background: #222;
	color: #eee;
	display: none;
	position: absolute;
	outline:0;
	z-index: 10000;
	padding: 6px 0px 5px 0px;
	border-radius: 4px;
	box-shadow: 2px 2px 6px #333;
	width: 187px;
	height: auto;
	text-align: center;
	overflow: hidden;
	left: 0px;
	top: 17px;
}
.share-content.share-content-position-left {
    right: 0px;
    left: initial;
}

.share-content a { color: #eee; font-size: 12px}
.share-content > .mask {
	position: absolute;
	width: 100%;
	text-align: center;
	background: #222;
	z-index: 1000000;
	height: 32px;
}
.share-content > ul{
	list-style:none;
	margin: 0px;
	padding: 0px;
}
.share-content > ul > li {
	display: inline;
}

.share-content > .error {
	display: none;
	position: absolute;
	width: 100%;
	text-align: center;
	background: #222;
	z-index: 1000000;
	top: 0px;
	padding: 9px 0px;
}


.copyableInput>input[type='text'] {
	height: 20px;
	min-height: 20px;
	width: 128px;
	padding-top: 3px;
}
.copyableInput span.input-group-btn {
	width: 10px;
}
.copyableInput button {
	height: 20px;
	border-radius: 0px 3px 3px 0px;
}



/* shared content loader */
.sharedContentLoader {
	background: rgba(168, 108, 0, 0.5);
	position: absolute;
	z-index: 3000000000;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	display: none;
}
.sharedContentLoader > .well {
	width: 500px;
	height: 36px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -250px;
	margin-top: -50px;
}
