.shared_input {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.shared_input.special {
  border-width: 3px;
	border-color: rgb(50,117,212);
}
.shared_button_option {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  outline: none;
  width: auto;
  box-sizing: border-box;
  background: rgb(255,255,255);
  padding: 6px 14px 6px 14px;
  margin: 4px 0 0 0;
  border: 1px solid rgb(50,117,212);
  border-radius: 0;
  box-shadow: none;
  font-weight: normal;
  font-family: "Open Sans";
  color: rgb(50,117,212);
  font-size: 13px;
  line-height: 16px;
  text-shadow: none;
}
.shared_checkbox {
	width: 0.9em;
	height: 0.9em;
}
#tooltip
{
	text-align: center;
	color: #fff;
	background: #111;
	position: absolute;
	z-index: 100;
	padding: 15px;
}
#tooltip:after /* triangle decoration */
{
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #111;
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
}
#tooltip.top:after
{
	border-top-color: transparent;
	border-bottom: 10px solid #111;
	top: -20px;
	bottom: auto;
}
#tooltip.left:after
{
	left: 10px;
	margin: 0;
}
#tooltip.right:after
{
	right: 10px;
	left: auto;
	margin: 0;
}
.mini_container {
  display: inline-flex;
  flex-wrap: wrap; /* enable the wrap */
  vertical-align: top;
  width: 100%;
	margin-bottom: 10px;
}
.mini_container>* {
  flex-basis: 50%; /* width = 50% */
	min-width: 280px;
  flex-grow: 1; /* grow if alone in the last row */
  border: 1px solid rgb(0,0,0,0.5);
  box-sizing: border-box;
}
.mini-title {
	width: 90%;
	margin-left:auto;
	margin-right:auto;
  text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
	background: rgb(50,50,50,0.4);
}
.mini-post {
	height: 260px;
  width: 280px;
  position: relative;
	background-color: black;
}
.mini-video {
	height: 100%;
	width: 100%;
  overflow: hidden;
  position: relative;
	background-color: black;
}
.mini-video video {
  height: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.mini-video .caption {
	position: relative;
  text-align: center;
	z-index: 2 !important;
	opacity: 0.5;
	height: 100%;
	transition: 0.3s;
}
.mini-video .caption:hover {
	opacity: 1;
	transition: 0.3s;
}
.mini-prev {
}
.mini-entry-title {
	color: var(--MiniHeading);
	margin: 0px 0px 0px 0px;
}
.mini-panel-footer {
  padding: 10px 15px;
	background-color: var(--PanelFooter);
  box-shadow: 1px 2px 3px var(--MiniBoxShadow) inset;
	color: var(--EntryContent);
	/* border-radius: 2px; */
	border-top: 0px solid #ddd;
	font-size: 14px;
	height: auto;
	width: 100%;
  position: absolute;
  bottom: -4%;
	left: 0%;
	z-index: 2 !important;
	opacity: 0.1;
	transition: 0.3s;
}
.mini-panel-footer:hover {
	opacity: 1;
	transition: 0.3s;
  bottom: 0%;
}
@media only screen and (hover: none) and (pointer: coarse){
	.mini-panel-footer {
		opacity: 1 !important;
	  bottom: 0% !important;
	}
	.mini-video .caption {
		opacity: 0.8 !important;
	}
}
