.popup-dialog{
	padding:15px 25px; 
	position: fixed;
	.popup-dialog-content{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		padding:0 5px 0 5px;
		margin: 0 45px 0 0;
	}
	-webkit-transition: height ease-in-out .5s, opacity ease-in-out .5s, top ease-in-out .5s;
	-o-transition: height ease-in-out .5s, opacity ease-in-out .5s, top ease-in-out .5s;
	transition: height ease-in-out .5s, opacity ease-in-out .5s, top ease-in-out .5s;
	height: 0;
	opacity: 0;
	top:100vh;
	overflow: hidden;
	display: block;
	background: rgba(0,0,0,.75);
	color:#fff;
	border-radius: 10px;
	left:10px;
	@media all and (min-width:@screen-sm) {
		left: 106px;
	}
	right: 10px;
	z-index: 501;
	&.active{
		opacity: 1;
		height: 150px;
		top:~'calc(100vh - 200px)';
	}
	.close{
		opacity: .7;
		&:hover{
			opacity: 1;
		}
		text-align: center;
		background-color: transparent;
		border:none;
		font-size: 28px;
		line-height: 40px;
		position: absolute;
		top:15px;
		right: 15px;
		width: 40px;
		height: 40px;
		z-index: 902;
		background-color: rgba(255,255,255,.5);
		border-radius: 50px;
		display: block;
		cursor: pointer;
		svg{
			width: 20px;
			height: 20px;
			fill:#fff;
		}
	}
}