/* --------------------------------------------
	FULL WIDTH SCREEN MODAL
-------------------------------------------- */

.fw-screen-area {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10000;
	top: -100%;
	background: #2d2d2d;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0,0,0);
}
.fw-screen-close {
	display: none;
	position: absolute;
	right: 15px;
	top: 10px;
	width: 24px;
	text-align: center;
	cursor: pointer;
	z-index: 1001;
	color: #000;
	background: #fff;
	font-size: 18px;
	line-height: 18px;
	height: 24px;
	padding: 2px;
	opacity: 0.5;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fw-screen-close:hover {
	opacity: 1;
}
.fw-screen-close.is-open {
	display: block;
	pointer-events: auto;
}
.fw-screen-link-icon {
	font-size: 30px;
	margin: 0 10px 10px;
	background: rgba(0,0,0,0.7);
	color: #fff;
	padding: 16px 21px 15px;
	height: 70px;
	width: 70px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
}
.fw-screen-link-icon:hover {
	background: #222;
}
.fw-screen-link-icon i {
	height: 28px;
	display: inline-block;
	width: 28px;
	vertical-align: -13px;
}
.fw-screen-link-image {
	position: relative;
}
.fw-screen-link-image img {
	max-width: 100%;
	height: auto;
}
.fw-screen-link-image i {
	font-size: 30px;
	margin: 0 10px 10px;
	background: #444;
	background: rgba(0,0,0,0.7);
	color: #fff;
	padding: 16px 21px 15px;
	height: 70px;
	width: 70px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -35px;
	margin-top: -35px;
	line-height: 46px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fw-screen-link-image:hover i {
	background: #222;
}

