body {
	position: relative;
}
.lsr_review-button {
	display: block;
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 999;
	width: 120px;
	transition: all 0.4s;
}
.lsr_review-button:hover {
	transform: scale(1.15);
}
.lsr_review-button img {
	display: block;
	max-width: 100%;
	height: auto;
}

@keyframes lsr_zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
.lsr_dialog-window {
	display:none; 
	position: fixed; 
	left:50%; 
	z-index: 999999;
	max-width: 100%;
	max-height: 100%;
	padding: 15px;
	box-sizing: border-box;
	overflow: auto;
}
.lsr_dialog-window.show-dialog {
	display: block !important;
	animation: lsr_zoomIn 0.8s;
}
.lsr_dialog-window .lsr_inside {
	background: #f7f7f7;
	color: #333;
	box-shadow: 0 2px 20px #0a0a0a;
	text-align: center;
	padding: 35px;
	width: 750px;
	max-width: 100%;
	position: relative;
	overflow: auto;
	box-sizing: border-box;
	overflow: auto;
}
.lsr_close-btn { 
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: 10px;
	border-radius: 50%;
	color: #fff;
	background: #000;
	transition: all 0.3s;
}
.lsr_close-btn:before, 
.lsr_close-btn:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 20px;
	width: 2px;
	top: 5px;
	background-color: #fff;
	transform-origin: center;
}
.lsr_close-btn:before {
	transform: rotate(45deg);
}
.lsr_close-btn:after {
	transform: rotate(-45deg);
}

.lsr_close-btn:hover {
	transform: rotate(180deg);
}
.lsr_pw-body { 
	display:none; 
	background:#000; 
	left:0; 
	top:0; 
	position:fixed; 
	width:100%; 
	height:100%; 
	opacity:0.5; 
	z-index: 999990;
}

.lsr_dialog-step {
	position: relative;
	animation: lsr_zoomIn 0.8s;
}
.lsr_dialog-step.hidden-step {
	display: none;
}

.lsr_dialog-window .lsr_to-start-step {
	position: absolute;
	top: 50px;
	right: 35px;
	z-index: 20;
	display: none;
	animation-fill-mode: backwards;
	width: 55px;
	height: 26px;
	background: url('../images/back.png') no-repeat center;
	background-size: contain;
	text-decoration: none;
}
.lsr_dialog-window.on-next .lsr_to-start-step {
	display: block;
	animation: lsr_zoomIn 0.8s 1s;
	animation-fill-mode: backwards; 
}

.lsr_dialog-step p {
	margin-bottom: 10px;
}

.lsr_dialog-title {
	text-align: center;
	font-size: 34px;
	padding: 0;
	margin-bottom: 30px;
	color: #000;
}
.lsr_smiles-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.lsr_smiles-list .smile-item {
	display: inline-block;
	vertical-align: top;
	width: 28%;
	margin: 0 2% 30px 2%;
	position: relative;
}
.lsr_smiles-list .smile-item:after {
	content: '';
	display: block;
	width: 70%;
	height: 15px;
	margin: 20px auto 0 auto;
	background: url('../images/oval-shadow.png') no-repeat center;
	background-size: contain; 
	transition: all 0.3s;
}
.lsr_smiles-list .smile-item .lsr_select-smile {
	display: block;
	transition: all 0.3s;
}
.lsr_smiles-list .smile-item:hover .lsr_select-smile {
	transform: translate(0, -15px);
}
.lsr_smiles-list .smile-item:hover:after {
	width: 55%;
}

.lsr_step-title {
	font-size: 20px;
	padding: 0;
	margin-bottom: 30px;
	color: #696262;
	text-transform: none;
}
.lsr_step-title img {
	vertical-align: baseline;
}

.lsr_social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	-webkit-display: flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.lsr_social-list .social-item {
	display: inline-block;
	vertical-align: top;
/*	width: 28%; */
	margin: 0 2% 30px 2%;
	position: relative;
}
.lsr_social-list .social-item img {
	width: 120px;
	height: auto;
	transition: all 0.3s;
}
.lsr_social-list .social-item:hover img {
	transform: scale(1.1);
}

.lsr_dialog-window form textarea {
	height: 100px;
}

/** Responsive */
@media only screen and (max-width: 640px) {
	.lsr_dialog-window {
		padding: 15px;
	}
	.lsr_dialog-window .lsr_inside {
		padding: 30px 20px;
	}
	.lsr_smiles-list .smile-item,
	.lsr_social-list .social-item {
		width: 27%;
	}
	.lsr_dialog-title {
		font-size: 28px;
	}
	.lsr_dialog-title {
		padding: 0 45px;
	}
	.lsr_dialog-window .lsr_to-start-step {
		width: 40px;
		top: 43px;
	}
}
@media only screen and (max-width: 480px) {
	.lsr_dialog-title {
		padding: 0;
	}
	.lsr_dialog-window .lsr_to-start-step {
		position: relative;
		top: auto;
		right: auto;
		margin: 0 auto 10px auto;
	}
	.lsr_review-button {
		width: 80px;
		left: 5px;
		bottom: 5px;
	}
}