.lo-review-popup-box{
  	background-color: #fff;
  	width: 0%;
  	margin: 0 auto;
  	position: fixed;
  	top: 20%;
  	height: 0%;
    border: 1px solid #eee;
    border-radius: 10px;
    left: 50%;
    margin-left: -25%;
	z-index: 42;
	transition: width 0.5s;
	transition: height 0.5s;
	visibility: hidden;
	overflow: auto;
}
.lo-review-popup-box.active{
	width: 50%;
	height: 60%;
	visibility: visible;
}
.lo-rpb-btn-close{
	position: absolute;
	right: 0px;
	cursor: pointer;
	padding: 10px;
	color: #666;
}
.lo-review-img-item{
	text-align: center;
}
.lo-review-mask{
	position: fixed;
	z-index: 41;
	background-color: #000;
	opacity: 0.4;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	display: none;
}
.lo-review-mask.active{
	display: block;
}
.lo-review-loading{
	background-image: url(../image/loading.gif);
	height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 40;
	width: 100%;
	display: none;
}
.lo-review-loading.active{
	display: block;
}
.lo-review-imgs img{
	width: 100%;
	object-fit: contain;
	height: 50vh;
}
.lo-rpb-inner{
	display: flex;
	padding: 10px;
	height: 100%;
}
.lo-rpb-inner .lo-left{
	width: 45%;
}
.lo-rpb-inner .lo-right{
	width: 55%;
	padding-left: 30px;
	padding-right: 10px;
	height: 90%;
	overflow: auto;
	margin-top: 20px;
}
.lo-rpb-top{
	display: flex;
	margin-bottom: 6px;
}
.lo-rpb-top > div{
	width: 50%;
}
.lo-date-box{
	text-align: right;
	color: #b0b0b0;
}
.lo-rpb-name{
	font-weight: 400;
    font-family: Montserrat-Medium;
}
.lo-rpb-title{
	font-family: Montserrat-Medium;
	margin-bottom: 10px;
}
.lo-rpb-like{
	height: 25px;
    background-size: contain;
    padding-left: 30px;
    line-height: 25px;
    margin-top: 10px;
    margin-bottom: 5px;
}
@media screen and (max-width: 768px){
	.lo-review-popup-box.active{
		width: 90%;
		left: 50%;
		margin-left: -45%;
		top: 10%;
		height: 80%;
	}
	.lo-rpb-inner{
		display: block;
		height: 98%;
		overflow: auto;
	}
	.lo-rpb-inner .lo-left{
		width: 100%;
		padding-top: 30px;
	}
	.lo-rpb-inner .lo-right{
		width: 100%;
		height: unset;
		padding-left: 0;
		padding-right: 0;
	}
	.lo-review-imgs img{
		height: 40vh;
	}
}