	/*20190411 그룹PR팝업*/
.moviepop-dim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 999999;
    overflow: hidden;
} 
.moviepop-warap {
    position: absolute;
    z-index: 9999999999;
    width: 1170px;
    padding: 80px 93px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.moviepop-warap h3 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    font-family: 'Noto Sans KR', sans-serif;
}
.moviepop-warap h3:before {
    /* position: absolute; */
    vertical-align: middle;
    display: inline-block;
    content: '';
    padding-left: 10px;
    width: 59px;
    height: 59px;
    background: url(http://adventure.lotteworld.com//common/images/icon/lotte_logo.png)no-repeat;
}
.moviepop-warap ul {
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}  
.moviepop-warap ul li {
    float: left;
    width: calc(33.33% - 30px);
    margin: 0 15px;
}

.moviepop-warap .lottemovie {
    position: relative;
    width: 100%;
    height: 175px;
    margin-bottom: 15px;
    background: #ddd;
    cursor: pointer;
}
.moviepop-warap .lottemovie .play-btn {
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border: 2px solid #fff;
    border-radius: 50px;
    -ms-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.moviepop-warap .lottemovie .play-btn:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 16px;
    display: block;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;

}

.moviepop-warap .lottemovie .play-btn:hover{
    border: 2px solid #da291c;
    -ms-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.moviepop-warap .lottemovie .play-btn:hover::before{
    border-left: 15px solid #da291c;
    -ms-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;

}

.moviepop-warap .lottemovie .back-img.one{background: url(http://adventure.lotteworld.com//common/images/icon/pr_img_1.png);}
.moviepop-warap .lottemovie .back-img.two{background: url(http://adventure.lotteworld.com//common/images/icon/pr_img_2.png);}
.moviepop-warap .lottemovie .back-img.three{background: url(http://adventure.lotteworld.com//common/images/icon/pr_img_3.png);}
.moviepop-warap .lottemovie .back-img.four{background: url(http://adventure.lotteworld.com//common/images/icon/pr_img_4.png);}

.moviepop-warap .lottemovie .back-img {
    width: 100%;
    height: 100%;
    background-size: cover!important;
    background-position: center center!important;
}

.moviepop-warap .movie-link p{
    font-size: 16px;
    color: #54585a;
    word-break: keep-all;
    white-space: pre-line;
    line-height: 1.5;
    font-family: 'Noto Sans KR', sans-serif;
}
.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    
}

/*medeaquery*/
@media (max-width:1200px){
    .moviepop-warap{width:95%;}
}
@media (max-width:768px){
	.moviepop-dim{
		overflow: auto;
	}
    .moviepop-warap{
        padding: 5% 5%;
		    top: 5%;
		    left: 50%;
		    transform: translateX(-50%);
    }
    .moviepop-warap ul li {
    float: none;
    width: 100%;
    margin: 5% 0;
}
.moviepop-warap h3:before {
    vertical-align: middle;
    display: block;
    margin: 0 auto;
    content: '';
    width: 59px;
    height: 59px;
    padding: 0;
    padding-bottom: 3%;
    
}
.moviepop-warap h3{
    margin: 0;
    font-size: 5vw;
}
.close-btn {
    top: 2%;
    right: 3%;
}
}

@media (max-width:450px){
.close-btn img {
    width: 80%;
}
.moviepop-warap h3:before {
    
    width: 40px;
    height: 40px;
   background-size: 40px;
    
}
}

/* //20190411 그룹PR팝업*/