
/* Basic overlay styles, we are using the table-cell layout hack to center the content */
.video-js .vjs-sharing-overlay {
	background: rgba( 0, 0, 0, 0.6 );
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: .75s all;
	transition: .75s all;
	
	z-index: 100;
	
	/* Root "Table" element for hack */
	display: table;
	height: 100%;
	width: 100%;
}



/* Styling for the icons */
.vjs-sharing-container {
	/* The table-cell of the hack */
	display: table-cell;
	height: 100%;
	width: 100%;
	
	vertical-align: middle;
	text-align: center;
}

/* Icon body */
.vjs-sharing-container .vjs-share-icon {
	font-size: 7em;
	margin: .2em;
	cursor: pointer;
	position: relative;
}

.vjs-sharing-container .footer-button {
  width: 54px;
  height: 54px;
  border-radius: 32px;
  border: 2px solid #fff;
  cursor: pointer;
  margin-left: 20px;
  margin-right: 20px;
  background: no-repeat center center;
  background-size: 32px 32px;
  outline: none !important;
}

.vjs-sharing-container .btn-tw {background-image: url(/images/x2/icon_social_twitter.png?4213407617);}
.vjs-sharing-container .btn-gp {background-image: url(/images/x2/icon_social_google.png?8830209715);}
.vjs-sharing-container .btn-em {background-image: url(/images/x2/icon_social_mail.png?6046075763); background-size: 32px 24px;}

.vjs-sharing-container .footer-button:hover, .vjs-sharing-container .footer-button:focus{
  border-color: #3e464e;
}

/* The actual Icon */
.vjs-sharing-container .vjs-share-icon:hover:before {
	color: #fff;
	text-shadow: 0 0 .5em rgba(255,255,255,0.5);
}

/* Show the text that is usually hidden in a videojs.Button */
.vjs-sharing-container .vjs-share-icon .vjs-control-text {
	position: absolute;
	width: 100%;
	font-size: .15em;
	font-weight: 700;
	text-align: center;
	left: 0;
	bottom: -1em;
	
	clip: initial;
	height: initial;
	margin: 0;
}
.vjs-sharing-container .vjs-share-icon a.vjs-control-text {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  bottom: 0;
  clip: initial;
  margin: 0;
}
/* To show/hide the onscreen button.  Duplicate the showing / hiding of the control bar */


/* Icon for our initial button */
.vjs-control.vjs-share-button {
  cursor: pointer;
  height: 40px;
}

/* The styles for an on-screen button */
.video-js > .vjs-control.vjs-share-button {
  position: absolute;
  top: 0;
  right: 0;
}


/* The styles for the button on a control bar */
.vjs-control-bar .vjs-control.vjs-share-button {
  float: right;
}

.vjs-has-started.vjs-user-inactive.vjs-playing > .vjs-control.vjs-share-button,
.video-js > .vjs-control.vjs-share-button {
	display: block;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility 1s, opacity 1s;
	-moz-transition: visibility 1s, opacity 1s;
	-o-transition: visibility 1s, opacity 1s;
	transition: visibility 1s, opacity 1s;
}

.vjs-has-started  > .vjs-control.vjs-share-button {
  background: url(/images/x2/icon_social_share.png?7084548039) no-repeat center 10px;
  background-size: 22px 16px;
	display: block;
	visibility: visible;
	opacity: 1;
	-webkit-transition: visibility 0.1s, opacity 0.1s;
	-moz-transition: visibility 0.1s, opacity 0.1s;
	-o-transition: visibility 0.1s, opacity 0.1s;
	transition: visibility 0.1s, opacity 0.1s;
}



.vjs-embedCode-container th {
  text-align: left;
  font-weight: bold;
}
.vjs-embedCode-container td input {
  width: 300px;
}