.bodyWrapper{
	overflow: hidden;
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.modalWrapper{
	overflow: auto;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
}
.lyteModal{
	background-color: #fff;
    border: 1px solid #f7f7f7;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.4);
	position: absolute;
	z-index: 10001;
    opacity: 0;
    box-sizing: border-box;
    overflow: hidden;
}
lyte-modal-header{
	display: block;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 30px;
	border-bottom: 1px solid rgba(34,36,38,.15);
}
lyte-modal-content{
	display: block;
	padding: 20px 30px;
	box-sizing: border-box;
}
lyte-modal-footer{
	display: block;
	padding: 10px 30px;
	border-top: 1px solid rgba(34,36,38,.15);
}

.modalWrapper.scrollable{
	overflow: hidden;
}
.modalWrapper.scrollable lyte-modal-content{
	overflow: auto;
}


lyte-modal-freeze{ 
	width:100%;
	position:fixed;
	top:0px;
	left:0px;
	right:0;
	bottom:0;
	z-index:10000;
	height:auto;
	background:#000; 
	display: block;
	opacity: 0;
	transition-property: opacity;
	transition-timing-function: ease;
	transition-duration:.15s;
}
.lyteModalClose{
	background: url(../images/lyte_ui_sprite.6ac550920e8d3792b5be0dc23b6e822c.svg) no-repeat -14px -1px;
	width: 12px;
	height: 11px;
	opacity: .5;
	cursor: pointer;
	position: absolute;
    top: 20px;
    right: 30px;
    z-index:10001;
}
.lyteModalClose:hover {
    opacity: 1;
}
lyte-modal-header.draggable{
	cursor: move;
}
lyte-modal-footer.left{
	text-align: left;
}
lyte-modal-footer.center{
	text-align: center;
}
lyte-modal-footer.right{
	text-align: right;
}
lyte-modal-footer lyte-button {
	margin-left: 7px;
}
lyte-modal-footer lyte-button:first-child{
	margin-left: 0px;	
}
/*------- transition styles starts ------*/
.lyteModalFromTop{
	opacity: 1;
	/*transition-property: top;*/
	transition-timing-function: ease;
}
.lyteModalFromBottom {
	opacity: 1;
	/*transition-property: top;*/
	transition-timing-function: ease;
}
.lyteModalFromLeft {
	opacity: 1;
	/*transition-property: left;*/
	transition-timing-function: ease;
}
.lyteModalFromRight {
	opacity: 1;
	/*transition-property: left;*/
	transition-timing-function: ease;
}
.lyteModalFadeIn {
	opacity: 0;
	transition-property: opacity;
	transition-timing-function: ease;
}
/*------- transition styles starts ------*/
