@charset "utf-8";

/*팝업 전체를 감싸는 요소*/
#hd_pop { 
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 2147483645;
}

/*각 팝업*/
.hd_pops {
    position: absolute;
    padding: 0 0 4px 0;
    border: 8px solid #eee;
    background: #ffffff;
	border-radius: 5px;
}

/*팝업 반응형*/

@media screen and (max-width:1200px) {
  #hd_pop {
  	display: none;
  }
}

/*버튼정렬*/
.hd_pops_footer {text-align: right;}

/*버튼색상*/
.hd_pops_footer .hd_pops_reject,
.hd_pops_footer .hd_pops_close  
 {color: #555; background: #ffffff; margin:0; margin-top:5px; margin-right: 5px; font-family:맑은 고딕; font-size:12px;padding:5px 17px; transition: all 0.5s linear;} 
/*버튼색상-마우스오버*/

.hd_pops_footer .hd_pops_reject:hover,
.hd_pops_footer .hd_pops_close:hover  {

    background-color: #424242;
    color: rgba( 255, 255, 255, 1.0 );
    box-shadow: none;
    border-color: initial;
}
 

