/*
  mini overlay box
*/
#bitbox-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9997;
	width: 100%;
	height: 100%;
        background-color: #fff9;
}
#bitbox-wrapper
{
	position: fixed;
	z-index: 9998;
	top: 0;
	display: table;
	width: 100%;
	height: 100%;
}
#bitbox-container
{
	position: relative;
	display: table-cell;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	vertical-align: middle;
        text-align: center;
}
#bitbox
{
	margin: 0 auto;
	padding: 0;
        position: relative;
        text-align: center;
        display: inline-block;
}
#bitbox img
{
   width: 80%;
   max-width: 800px;
}
#bitbox-closer{
    width: 40px;
    height: 40px;
    background-color: black;
    position: absolute;
    top: 0px;
  right: 7px;
  color: white;
  font-size: 21pt;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
