
/*
	[디자인팀 맞춤제작 및 수정 CSS]

	copyright(c) 상상너머·원데이넷 all rights reserved.
	허용된 라이센스이외 무단도용재배포를 금합니다.

	※ css 추가 시, 반드시 날짜와 작업자 이니셜을 기재바랍니다.
*/



/* 게시판상단 */
.rb_top .total {font-family: 'Poppins';}
.rb_top .total strong {font-family: 'Poppins';}




/* 집중형 팝업창 형태수정 */
.c_popup {position:fixed; left:0; top:0; background:transparent; box-sizing: border-box; display:flex; justify-content: flex-start; align-items: flex-start; flex-direction:column;}
.c_popup .pop_wrap {z-index:100; position:relative;}
.c_popup .img_box {border:0 !important;}
.c_popup .img_box img {max-width: 900px; max-height:700px;}
.c_popup .close_box {border:0 !important; display: flex; flex-direction: row; justify-content: space-between; align-items: center; text-align: center; position: relative;}
.c_popup .close_box:before {content: ''; position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: #e5e5e5;}
.c_popup .close_box .btn {flex: 1; position: relative; display: flex; justify-content: center; align-items: center; height: 60px !important;}
.c_popup .close_box .label {line-height: 1; float: none; padding: 0;}
.c_popup .close_box input {position: absolute; left: 0; top: 0; width: 0; height: 0; opacity: 0; filter: alpha(opacity=0); -ms-filter: alpha(opacity=0);}
.c_popup .close_box .btn_close {flex: 1; padding: 0 !important;}
.c_popup .close_box .btn .tt {font-size: 16px; color: #333; letter-spacing: -0.8px; line-height: 1;}

.c_popup_bg {background:rgba(0,0,0,0.5); position:fixed; left:0; top:0; width:100%; height:100%; z-index:10; display:none;}

@media screen and (max-width:1200px) {
    .wrap:before {content:"1200"; }

    .c_popup .close_box .btn {height: 50px !important;}
}

@media screen and (max-width:600px) {
    .wrap:before {content:"600"; }
    .c_popup {}
    .c_popup .pop_wrap {width: 100%; overflow: hidden; }
    .c_popup .img_box img {max-height: 100%;}
}

