@charset "utf-8";
/**
 * dasion - 팝업 전용 CSS
 * 그누보드 #hd_pop 팝업레이어 + 모달/오버레이 보강
 */

/* ===== 그누보드 팝업레이어 (newwin.inc.php) ===== */


/* 팝업레이어 */
/* #hd_pop {
  z-index: 1000;
  position: relative;
  margin: 0 auto;
  height: 0;
}
#hd_pop h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.hd_pops {
  position: absolute;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.hd_pops img {
  max-width: 100%;
}
.hd_pops_con {
}
.hd_pops_footer {
  padding: 0;
  background: #000;
  color: #fff;
  text-align: left;
  position: relative;
}
.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: #000;
  text-align: left;
  width: 100%;
}
.hd_pops_footer .hd_pops_close {
  background: #393939;
  position: absolute;
  top: 0;
  right: 0;
} */

/* 팝업레이어 */
#hd_pop {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1000;
    width: 100%;
    height: 0;
}

#hd_pop h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.hd_pops {
    position: absolute;
    border: 1px solid #666;
    background: #fff;
    max-width: 90%;
    box-shadow:
        0px 0px 10px rgba(0, 0, 0, 0.2),
        0px 0px 7px rgba(0, 0, 0, 0.5),
        0px 0px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.6s;
    -webkit-transition-timing-function: ease;
    transition-duration: 0.6s;
    transition-timing-function: ease;
}

.hd_pops img {
    max-width: 100%;
}

.hd_pops_con {
    max-width: 100%;
}

.hd_pops_footer {
    height: 50px;
    padding: 0;
    background: #000;
    color: #fff;
    text-align: left;
    position: relative;
}

.hd_pops_footer:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.hd_pops_footer button {
    height: 50px;
    line-height: 30px;
    padding: 0;
    border: 0;
    color: #fff;
}

.hd_pops_footer .hd_pops_reject {
    background: #222;
    text-align: left;
    margin: 0;
    color: #c1ad9a;
}

.hd_pops_footer .hd_pops_reject strong {
    color: #fff;
    font-size: 1.4em;
    display: inline-block;
    padding-right: 3px;
}

.hd_pops_footer .hd_pops_reject strong:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background: URL(../img/ico_eye_slash.png) no-repeat center center;
    background-size: 100% auto;
    margin-right: 6px;
}

.hd_pops_footer .hd_pops_close {
    background: #393939;
    color: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd_pops_footer .hd_pops_close .fa-times {
    font-size: 1.5em;
}

.hd_pops_footer button:hover {
    background: #333;
}

.hd_pops_footer button:hover.hd_pops_close {
    background: #666;
}

@media all and (max-width: 980px) {
    #hd_pop .hd_pops {
        left: 5% !important;
        top: 70px !important;
        max-width: 90% !important;
    }

    .hd_pops_con {
        height: auto !important;
    }

    .hd_pops_footer {
        font-size: 11px;
        letter-spacing: -0.05px;
    }
}