@charset "utf-8";


/*--------------------------------------------------------------
# 팝업레이어
--------------------------------------------------------------*/

/* 팝업레이어 */ 
#hd_pop7 {
    z-index: 1000;
    position: relative;
    margin: 0 auto;
    height: 0;
}
#hd_pop7 h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
.hd_pops {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid #e9e9e9;  
    background: transparent;
    overflow: hidden;
    border-radius: 10px;
    animation: slide_Up 0.8s ease-in-out forwards;
}
@keyframes slide_Up {
    0% { opacity: 0; transform: translate(-50%, 120%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}
.hd_pops img {
    object-fit: cover;
    display: block;
    width: 100%;
	max-width: 100%;
    height: auto;	
}
.hd_pops_con {
    width: 100% !important;
}
.hd_pops_footer {
    padding: 0;
    background-color: #000;
    color: #fff;
    text-align: left;
    position: relative; font-size: 14px;
}
.hd_pops_footer:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}
.hd_pops_footer button {
    padding: 10px;
    border: 0;
    color: #fff;
}
.hd_pops_footer .hd_pops_reject {
    background-color: #000;
    text-align: left;
}
.hd_pops_footer .hd_pops_close {
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (max-width: 580px) { 
    .hd_pops {
        width: calc(100% - 40px);
    }
}

.hd_pops_bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
}
.hd_pops_more {
    border-radius: 50%;
    background-color: var(--color-main);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: -0.1px;
    position: absolute;
    bottom: 60px;
    right: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.hd_pops_more:hover { background-color: #00000080; color: #fff;}

.up_text {
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: 78%;
    transform: translateY(-50%);
    max-width: calc(100% - 20%);
    margin: 0 auto;
}











