.Popup{
    position: fixed;
    z-index: 1000;
    top: 110px; left: 10px;
    width: 500px; 
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    animation: fadeIn .5s;
}
/* layerPop1 */
#layerPop{
    top: 110px; left: 10px;
    width: 450px; 
}

/* popup addclass */
.popOn{
    display: block;
}
.popOff{
    display: none;
}

/* 팝업창 이미지 영역 */
.Popup .popArea{
    width: 100%; 
    font-size: 0;   
}
.Popup .popArea>a{ 
}



/* 팝업창 닫기 영역 */
.Popup .popX{
    width: 100%;
    background: #b60a0a;
    /*border-top: 1px solid #ddd;*/
    padding: 0 15px 10px 15px;
}
.popX .popBtn{
    float: right;
}
.popBtn .btn{
    color: #fff;
    letter-spacing: 0.02em;
    font-size: 13px;
    text-align: right;
    cursor: pointer;
    padding-top: 4px;
}


/* 오늘하루보지않기 */
.popX .InputWrap{
    float: left;
}
.popX .InputWrap label{
    background: none;
    font-size: 13px;
    color: #eee;
}
.popX .InputWrap input[type='checkbox'], 
.popX .InputWrap input[type='checkbox']:checked{
    background: none !important;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 12px; height: 12px;
}
.popX .InputWrap input[type='checkbox']:checked:after{
    width: 6px; height: 6px;
    border-radius: 50%;
    top: 2px; left: 2px;
    background: #eee;
}



