@charset "utf-8";

/* 팝업 레이어 기본 */
#hd_pop {
    z-index: 1000;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 0;
}
.hd_pops {
    position: absolute;
    border: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.hd_pops_con {
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.hd_pops_footer {
    padding: 8px 10px;
    background: #111;
    color: #fff;
    text-align: right;
    font-size: 13px;
}
.hd_pops_footer button {
    margin-left: 5px;
    padding: 5px 10px;
    border: 0;
    border-radius: 4px;
    background: #444;
    color: #fff;
    cursor: pointer;
}
.hd_pops_footer button:hover {
    background: #e60000;
}
