/* ========= INFORMATION ============================

- document:  Slick Modals - HTML5 and CSS3 powered modal popups
- author:    Capelle @ Codecanyon
- profile:   http://codecanyon.net/user/Capelle
- version:   3.0

==================================================== */

/* ========================
   Reset and basics
   ======================== */

/* Main wrapper */

.locm{
	left: 0px !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0px !important;
	border-radius: 0px !important;
	text-align: center !important;


}
body .locm .wrap.demo-1{
    top: 50% !important;
	text-align: center;
	width: 100%
    
}

body .locm p{
	text-align: center !important;
}
body .locm .button.b-close, .button.bClose{
right: 10px !important;
top: 10px !important;
}

body .locm .button{
background-color: #fff !important;
color: #000 !important;
}
/* Window defaults */
.popupx {
	display: inline-block;
	width: 900px;
    height: 440px;
	padding: 20px;
	position: absolute;
	margin: 60px 0px;
	background: #fff;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 2;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	opacity: 0;
	-webkit-transition-property: rotate, transform, opacity, scale, perspective;
	-moz-transition-property: rotate, transform, opacity, scale, perspective;
	-ms-transition-property: rotate, transform, opacity, scale, perspective;
	transition-property: rotate, transform, opacity, scale, perspective;
}

/* ========================
   Background defaults
   ======================== */

/* Blur */
.blurred {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);
}
/* Scale */
.scaled {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

/* ========================
   Modal window positions
   ======================== */

/* Center */
.popupx.center {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Top */
.popupx.topLeft {
	top: 0;
	left: 0;
}
.popupx.topCenter {
	top: 0;
	left: 0;
	right: 0;
}
.popupx.topRight {
	top: 0;
	right: 0;
}

/* Bottom */
.popupx.bottomLeft {
	bottom: 0;
	left: 0;
}
.popupx.bottomCenter {
	bottom: 0;
	left: 0;
	right: 0;
}
.popupx.bottomRight {
	bottom: 0;
	right: 0;
}

/* On side */
.popupx.right {
	top: 0;
	right: 0;
	bottom: 0;
}
.popupx.left {
	top: 0;
	left: 0;
	bottom: 0;
}

/* ========================
   Modal window transitions
   ======================== */

/* Fade */
.popupx.fade {
	opacity: 0;
}

/* Zoom */
.popupx.zoomIn {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}
.popupx.zoomOut {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

/* Slide */
.popupx.slideTop {
	-webkit-transform: translateY(-25%);
	-moz-transform: translateY(-25%);
	-ms-transform: translateY(-25%);
	transform: translateY(-25%);
}
.popupx.slideBottom {
	-webkit-transform: translateY(25%);
	-moz-transform: translateY(25%);
	-ms-transform: translateY(25%);
	transform: translateY(25%);
}
.popupx.slideLeft {
	-webkit-transform: translateX(-25%);
	-moz-transform: translateX(-25%);
	-ms-transform: translateX(-25%);
	transform: translateX(-25%);
}
.popupx.slideRight {
	-webkit-transform: translateX(25%);
	-moz-transform: translateX(25%);
	-ms-transform: translateX(25%);
	transform: translateX(25%);
}

/* Rotate */
.popupx.rotateIn {
	-webkit-transform: rotate(720deg) scale(0);
	-moz-transform: rotate(720deg) scale(0);
	-ms-transform: rotate(720deg) scale(0);
	transform: rotate(720deg) scale(0);
}
.popupx.rotateOut {
	-webkit-transform: rotate(720deg) scale(1.5);
	-moz-transform: rotate(720deg) scale(1.5);
	-ms-transform: rotate(720deg) scale(1.5);
	transform: rotate(720deg) scale(1.5);
}

/* Flip */
.popupx.flipHorizontal {
	-webkit-transform: rotateY(-90deg);
	-moz-transform: rotateY(-90deg);
	-ms-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
}
.popupx.flipVertical {
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	-ms-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
}

/* Perpective */
.popupx.perspectiveTop {
	-webkit-transform: perspective(300px) rotateX(-90deg);
	-moz-transform: perspective(300px) rotateX(-90deg);
	-ms-transform: perspective(300px) rotateX(-90deg);
	transform: perspective(300px) rotateX(-90deg);
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
}
.popupx.perspectiveBottom {
	-webkit-transform: perspective(300px) rotateX(90deg);
	-moz-transform: perspective(300px) rotateX(90deg);
	-ms-transform: perspective(300px) rotateX(90deg);
	transform: perspective(300px) rotateX(90deg);
	-webkit-transform-origin: bottom center;
	-moz-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	transform-origin: bottom center;
}
.popupx.perspectiveLeft {
	-webkit-transform: perspective(200px) rotateY(90deg);
	-moz-transform: perspective(200px) rotateY(90deg);
	-ms-transform: perspective(200px) rotateY(90deg);
	transform: perspective(200px) rotateY(90deg);
	-webkit-transform-origin: center left;
	-moz-transform-origin: center left;
	-ms-transform-origin: center left;
	transform-origin: center left;
}
.popupx.perspectiveRight {
	-webkit-transform: perspective(200px) rotateY(-90deg);
	-moz-transform: perspective(200px) rotateY(-90deg);
	-ms-transform: perspective(200px) rotateY(-90deg);
	transform: perspective(200px) rotateY(-90deg);
	-webkit-transform-origin: center right;
	-moz-transform-origin: center right;
	-ms-transform-origin: center right;
	transform-origin: center right;
}

/* ========================
   Transition timing defaults
   ======================== */

.slickModal .linear {
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	transition-timing-function: linear;
}
.slickModal .ease {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	transition-timing-function: ease;
}
.slickModal .ease-in {
	-webkit-transition-timing-function: ease-in;
	-moz-transition-timing-function: ease-in;
	-ms-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}
.slickModal .ease-out {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.slickModal .ease-in-out {
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

/* ========================
   Close buttons
   ======================== */

/* Basics */
.closeModal,
.openModal {
	cursor: pointer;
}
.slickModal .close {
	position: absolute;
	top: -20px;
	right: 0;
	z-index: 10;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: 700;
	transition: all 0.1s ease;
}
.slickModal .close:before {
	white-space: nowrap;
	display: block;
	position: relative;
	transition: all 0.1s ease;
}

/* Labeled button */
.slickModal .close.labeled:before {
	color: #fff;
	content: "close";
	font-size: 8px;
	text-transform: uppercase;
	background: linear-gradient(to right, #fff 50%, #000 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	padding: 6px 12px;
	margin-top: -10px;
}
.slickModal .close.labeled:hover:before {
	background-position: left bottom;
	color: #000;
}

/* Text button */
.slickModal .close.text:before {
	color: #fff;
	content: "Close";
	font-size: 9px;
	text-transform: uppercase;
}

/* Tag button */
.slickModal .close.tag:before {
	color: #fff;
	content: "\00d7";
	background: #000;
	text-align: center;
	font-size: 15px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	margin-top: 20px;
	opacity: 0.2;
}
.slickModal .close.tag:hover:before {
	opacity: 1;
}

/* Icon button */
.slickModal .close.icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	overflow: hidden;
	margin: 34px 12px 0 0;
	opacity: 0.3;
}
.slickModal .close.icon:hover:before {
	color: #fff;
}
.slickModal .close.icon:before,
.slickModal .close.icon:after {
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #fff;
}
.slickModal .close.icon:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.slickModal .close.icon:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.slickModal .close.icon:hover {
	opacity: 1;
}

/* Demo */

.popupx * {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	
}
.popupx .title {
	font-size: 40px;
	font-weight: 700;
}
.popupx .wrap.demo-1 {
	left: 0;
	width: 60%;
	height: 100%;
	background: #fff;
	text-align: left;
	padding: 30px;
	display: inline-block;
	float: left;
}
.popupx .wrap.demo-1:after {
	transform: rotateZ(-90deg);
	border-color: #fff transparent transparent transparent;
	bottom: auto;
	top: 222px;
	left: auto;
	right: -24px;
}
.popupx .wrap.demo-1 .title {
	color: #d66161;
	padding-bottom: 22px;
}
.popupx .wrap.demo-1 p {
	font-size: 17px;
	padding-bottom: 22px;
	text-align: left;
}
.popupx .wrap.demo-1 form input.field {
	background: #eee;
	padding: 12px;
	display: block;
	font-size: 11px;
	width: 100%;
	border-style: none;
	margin: 5px 0px;
}
.popupx .wrap.demo-1 input.send {
	background: #d66161;
	color: #fff;
	font-weight: 900;
	font-size: 16px;
	text-align: center;
	padding: 8px 12px;
	width: 100%;
	margin-top: 10px;
	display: block;
	cursor: pointer;
	border-style: none;
}
.popupx .wrap.demo-1 input.send:hover {
	background: #222;
}
.popupx .wrap.demo-1 .deny {
	display: block;
	font-size: 9px;
	padding-top: 14px;
	color: #000;
	font-weight: 300;
}
.popupx .cta.demo-1 {
	right: 0;
	height: 100%;
	bottom: auto;
	top: 0;
	width: 40%;
	left: auto;
	background: #222;
	display: inline-block;
	float: right;
	position: relative;
}
.popupx .cta.demo-1 span.icon {
	width: 80px;
	height: 80px;
	background: url("email.png") 0 0 no-repeat;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.popupx .cta.demo-1 p {
	position: absolute;
	bottom: 62px;
	font-size: 10px;
	color: #fff;
	left: 58px;
}
.popupx .cta.demo-1 p span {
	display: block;
	font-weight: 900;
	color: #fff;
}

