/*
 * jQuery fxBox v.1.0.0
 * Thickbox Alternative.
 * Author: David Chandra
 * Copyright 2016 Genbu Media
 * @link http://html.shellcreeper.com/layout-collection/fx-box/
 */
#fx-box-overlay{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 100050;
	background: rgba(0,0,0,0.7);
}
	.fx-box-stop-scoll{
		overflow: hidden;
		height: 100%;
	}
#fx-box{
	font-size: 14px;
	position: fixed;
	left: 50%;
	top: 50%;
	max-width: 100%;
	max-height: 100%;
	border: none;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	z-index: 100100;
	overflow: visible;
	background: #fff;
	transform: translate(-50%, -50%);
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
#fx-box *,#fx-box *:before,#fx-box *:after {
	-moz-box-sizing:inherit;
	-webkit-box-sizing:inherit;
	box-sizing:inherit;
}
#fx-box-title{
	position: relative;
	display: block;
	padding: 10px 36px 10px 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1em;
	font-weight: 600;
	border: none;
	border-bottom: 1px solid #dfdfdf;
	background: #fcfcfc;
}
	.fx-box-close{
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		padding: 0;
		margin: 0;
		border: none;
		cursor: pointer;
		color: #666;
	}
	.fx-box-close:hover{
		color: #00a0d2;
	}
	.fx-box-close:before{
		content: "\f158";
		font: 20px/29px "dashicons";
		display: block;
		padding: 3px 8px;
		margin: 0;
		border: none;
		vertical-align: top;
		-webkit-font-smoothing: antialiased;
	}
#fx-box-content{
	position: relative;
	display: block;
	padding: 5px 15px 15px;
	border: none;
	margin: 0;
	overflow: auto;
}