@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src: url('../fonts/AppleSDGothicNeoL.eot?#iefix') format('embedded-opentype');
    src: /*url('../fonts/AppleSDGothicNeoL.otf?#iefix'),*/
			url('../fonts/AppleSDGothicNeoL.ttf') format('truetype'),
			local(※), url('../fonts/AppleSDGothicNeoL.woff') format('woff');
    font-weight: 300;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
	src: url('../fonts/AppleSDGothicNeoR.eot?#iefix') format('embedded-opentype');
    src: /*url('../fonts/AppleSDGothicNeoR.otf?#iefix'),*/
			url('../fonts/AppleSDGothicNeoR.ttf') format('truetype'),
			local(※), url('../fonts/AppleSDGothicNeoR.woff') format('woff');
    font-weight: 400;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src: url('../fonts/AppleSDGothicNeoM.eot?#iefix');
    src: 	/*url('../fonts/AppleSDGothicNeoM.otf?#iefix') format('embedded-opentype'),*/
			url('../fonts/AppleSDGothicNeoM.ttf') format('truetype'),
			local(※), url('../fonts/AppleSDGothicNeoM.woff') format('woff');
    font-weight: 500;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
    src: url('../fonts/AppleSDGothicNeoB.eot?#iefix') format('embedded-opentype');
    src: /*url('../fonts/AppleSDGothicNeoB.otf?#iefix'),*/
			url('../fonts/AppleSDGothicNeoB.ttf') format('truetype'),
			local(※), url('../fonts/AppleSDGothicNeoB.woff') format('woff');
    font-weight: 600;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src:url('../fonts/AppleSDGothicNeoEB.eot?#iefix') format('embedded-opentype');
    src: /*url('../fonts/AppleSDGothicNeoEB.otf?#iefix'),*/
		   url('../fonts/AppleSDGothicNeoEB.ttf') format('truetype'),
	       local(※), url('../fonts/AppleSDGothicNeoEB.woff') format('woff');
    font-weight: 700;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src:url('../fonts/AppleSDGothicNeoH.eot?#iefix') format('embedded-opentype');
    src: /*url('../fonts/AppleSDGothicNeoH.otf?#iefix'),*/
			url('../fonts/AppleSDGothicNeoH.ttf') format('truetype'),
			local(※), url('../fonts/AppleSDGothicNeoH.woff') format('woff');
    font-weight: 800;
}
/*gmarket*/
@font-face {
 font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansLight.otf');
    src: url('../fonts/GmarketSansLight.otf?#iefix') format('embedded-opentype');
    src: url('../fonts/GmarketSansTTFLight.ttf') format('truetype');
	src: url('../fonts/GmarketSansTTFLight.eot?#iefix');
	src:local(※), url('../fonts/GmarketSansTTFLight.woff') format('woff');
    font-weight: 400;
}
@font-face {
 font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansMedium.otf');
    src: url('../fonts/GmarketSansMedium.otf?#iefix') format('embedded-opentype');
    src: url('../fonts/GmarketSansTTFMedium.ttf') format('truetype');
	src: url('../fonts/GmarketSansTTFMedium.eot?#iefix');
	src: local(※), url('../fonts/GmarketSansTTFMedium.woff') format('woff');
    font-weight: 500;
}
@font-face {
 font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansBold.otf');
    src: url('../fonts/GmarketSansBold.otf?#iefix') format('embedded-opentype');
    src:url('../fonts/GmarketSansTTFBold.ttf') format('truetype');
	src:url('../fonts/GmarketSansTTFBold.eot?#iefix');
	src: local(※), url('../fonts/GmarketSansTTFBold.woff') format('woff');
    font-weight: 600;
}

*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
	font-weight:500;
}
ul,li,dl,dt,dd,ol{
	list-style:none;
}
a{
	text-decoration:none;
}	
body,a,input,textarea{
	font-family:'Roboto','AppleSDGothicNeo',sans-serif !important;
	font-size:14px;
	font-weight:400;
	letter-spacing: -0.024em;
    font-style: normal;
    line-height: 1.3;
	color:#222;
}
.gma{
	font-family:'GmarketSans',sans-serif !important; 
	color:#100f12;
}
#loading {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #000;
    z-index: 99;
    text-align: center;
    /* margin-left: -50px;
    margin-top: -50px; */
	transform:translate(-50%,-50%);
    border-radius: 10px;
    overflow: hidden;
}

#loadingmodal {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: none;
    opacity: 1;
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    margin-left: -32px;
    margin-top: -32px;
}

#loading-image {
    -webkit-animation: spin 1000ms infinite linear;
    -moz-animation: spin 1000ms infinite linear;
    -ms-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
}



@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-ms-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
img{
	border:0;
	vertical-align:top;
}
table{
	border-collapse: collapse;
	width:100%;
}
/*이미지맵*/
img[usemap] {
  border: none;
  height: auto;
  max-width: 100%;
  width: auto;
}
@media (max-width: 991px) {
	img[usemap] {
		  border: none;
		  height: auto !important;
		  max-width: 100%;
		  width: 100% !important;
   }
}
.ellipsis{
	display:block;
	overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.inner{
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
}
input,input[type="submit"]{
   appearance: none;
   border-radius: 0;
   -webkit-appearance: none;
   -webkit-border-radius: 0;
}
input[type="radio"],
input[type="checkbox"]{
	appearance: auto;
	-webkit-appearance: auto;
}
input:focus,
textarea:focus,
select:focus,
button:focus{ outline: none;}
button{ cursor:pointer}
b{font-weight:600;}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.main_wrap {
	display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.log_box {
  flex: 1;
}

#top {
	position:fixed;
	right: 3%;
	bottom: 11%;
	border-radius:50%;
	width: 45px;
	height: 45px;
	background:#f19722;
	text-align: center;
	font-size:22px;
	padding: 5px 0;
	cursor:pointer;
	z-index: 100;
}

/*main_common*/

header {
	display: block;
	width: 100%;
	position:relative;
	transition:0.5s
}
header.on {
	position:fixed;
	top:0;
	left:0;
	background:#fff;
	z-index: 10;
	box-shadow:5px 0 13px #ddd
}

.con{
	max-width:1220px;
	padding:0 15px;
	width:100%;
	margin:0 auto;
	flex:1;
}
.god_c{
	color:#f18d22 !important;
}
.god_bg{
	background:#f18d22;
}
.clear:after{
	content:"";
	display:block;
	clear:both;
}
.sl_bt{
	position:absolute;
	top:60%;
	left:50%;
	transform:translateX(-50%);
	z-index:3;
	display:none;
}
.sl_bt > div{
	background:url(../images/sl_bt.png)no-repeat center;
	width:46px;
	height:46px;
	transform:translateY(-50%)
}
.sl_bt > div.swiper-button-next,.sl_bt2 > div.swiper-button-next{
	transform: rotateY(180deg) translateY(-50%);
}
.sl_bt > div:after,.sl_bt2 > div:after{
	content:"";
}
.swiper1 .swiper-pagination{
	bottom:45px;
	display:none;
}
.swiper1 .swiper-pagination-bullet{
	width:25px;
	height:25px;
	border-radius:50%;
	background:transparent;
	margin:0 10px 0 0 !important;
	border:1px solid #fff;
	opacity:1;
}
.swiper1 .swiper-pagination-bullet-active{
	background:#fff;
}
.swiper1 img.banner_bg{
	display:block;
	margin:0 auto;
	max-width:100%;
}
.top_nav {
	background: #092648;
    padding: 6px 0;
}
.top_nav .con:after {content:"";display:block;clear:both}
.top_nav ul{
	text-align:right;
}
.top_nav ul li{
	display:inline-block;
	padding-left:15px;
	color: #fff;
    font-size: 14px;
}
.top_nav ul li:first-child{
	padding-left:0;
}
.top_nav a {
	color: #fff;
    font-size: 14px;
	display: block;
}
.top_nav a img{
	display:inline-block;
	margin-right:5px;
}
.top_nav ul li span{
	color:#f18d22;
	display:inline-block;
	text-underline-offset: 3px;
    text-decoration: underline 1px #f18d22; 
	font-weight:600;
	margin-right:2px;
}
.nav > .nav_left{
	/* float:left; */
	float:right;
}
/* .nav{
	padding-top:20px;
} */
.nav > .nav_left ul.nav_gnb > li{
	float:left;
	position:relative;
	padding: 0 30px;
}
.nav > .nav_left ul.nav_gnb > li:last-child{
	padding-right:0;
}
.nav > .nav_left ul.nav_gnb > li > a{
	display:block;
	font-size:22px;
	color:#222;
	line-height:80px;
}
.nav > .nav_left ul.nav_gnb > li > a span{
	display:inline-block;
	border-bottom:6px solid transparent;
	padding: 0px 35px 21px;
    line-height: normal;
}
.nav > .nav_left ul.nav_gnb > li.active > a span,
.nav > .nav_left ul.nav_gnb > li.on > a span,
.nav > .nav_left ul.nav_gnb > li > a:hover span{
	border-bottom:6px solid #f18d22;
	font-weight:500;
	position:relative;
	/* transition:0.5s */
}
.sellser_header .nav_left ul.nav_gnb li.active a span, .sellser_header .nav_left ul.nav_gnb li.on a span {
border-bottom:6px solid #f18d22;
}
/* .nav > .nav_left ul.nav_gnb > li > a span:after {
	content:"";
	display: inline-block;
	background:#f18d22;
	width: 0%;
	height: 6px;
	position:absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	transition:0.3s
}
.nav > .nav_left ul.nav_gnb > li.on > a span:after,
.nav > .nav_left ul.nav_gnb > li > a:hover span:after {
	width: 100%;
	height: 6px;
	bottom:-6px;
} */


.nav > .nav_left .sub_menu{
	position:absolute;
	top:100%;
	width:100%;
	z-index:2;
	background:#fff;
	padding:30px 0px;
	border-radius:0 0 5px 5px;
	display:none;
	left: 50%;
    transform: translateX(-50%);
}
.nav > .nav_left ul.nav_gnb > li:hover .sub_menu{
	display:block;
}
.nav > .nav_left .sub_menu ul li{
	padding-bottom:15px;
}
.nav > .nav_left .sub_menu ul li:last-child{
	padding-bottom:0;
}
.nav > .nav_left .sub_menu ul li a{
	display:block;
	text-align:center;
	font-size:18px;
	color:#222;
	letter-spacing:-0.024em;
}
.nav > .nav_left .sub_menu ul li.on a,
.nav > .nav_left .sub_menu ul li a:hover{
	font-weight:600;
}
.nav > .nav_right{
	/* float:right; */
	float:left;
}
.nav .nav_lnb li{
	display:table-cell;
	vertical-align:middle;
	padding-right:35px;
}
.nav .nav_lnb li img{
	vertical-align:middle;	
}
.nav .nav_lnb li:last-child{
	padding-right:0;
}
.nav .nav_lnb li a{
	display: block;
	font-size:22px;
	color:#9696b1;
	letter-spacing:-0.024em;
	line-height:80px;
}
.nav > .nav_left ul.nav_gnb > li.ps_icon > a{
	padding:0 15px;
	background:#f8df00;
	color:#3d1b1a;
	font-weight:600;
	font-size:16px;
}
.ps_icon a img{
	vertical-align: -5px;
	display:inline-block;
	margin-right:5px;
}
.con01 .banner_txt{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:2;
	text-align:center;
}
.con01 .banner_txt01{
	font-weight:600;
	color:#fff;
	font-size:60px;
}
.con01 .banner_txt02{
	font-weight:400;
	color:#dbdad8;
	font-size:32px;
}
.con01 .banner_txt03{
	margin-top:65px;
}
.con01 .banner_bt{
	margin:0 -10px;
}
.con01 .banner_bt li{
	display:inline-block;
	padding:0 10px;
}
.con01 .banner_bt li a{
	display:inline-block;
	font-size:22px;
	font-weight:600;
	width:200px;
	border-radius:5px;
	overflow:hidden;
	color:#fff;
	padding:15px 0;
}
.con01 .banner_bt li:first-child a{
	border:1px solid #9f9da7;
}
.con02{
	background:url(../images/con02_bg.png)no-repeat center;
	padding:135px 0 80px;
	background-size:100% 100%;
}
.con02 > div{
	background:url(../images/con02.png)no-repeat right bottom;	
    background-size: contain;
}
.index_box h2.con_tit{
	font-size:42px;
	color:#2a2b42;
	font-weight:600;
}
.con02 .real_con{
	padding-bottom:70px;
	padding-top:10px;
}
.con02 .real_con ul li{
	font-size:22px;
	color:#9696b1;
}
.con03{
	padding:100px 0 160px;
	text-align:center;
}
.index_box .con03 h2.con_tit .tit_desc{
	font-size:22px;
	color:#9696b1;
	font-weight:300;
	padding-bottom:50px;
}
.con03 .real_con ul li{
	float:left;
	width:33.33%;
}
.con03 .real_con ul li img{
	max-width:100%;
}
.con03 .real_con .con_txt{
	font-size:32px;
	color:#2a2b42;
	display:inline-block;
	position:relative;
	font-weight:600;
	padding-top:10px;
}
.con03 .real_con .con_txt span{
	display:inline-block;
}
.con03 .real_con .con_txt span:after{
	content:"";
	display:inline-block;
	width:100%;
	height:25px;
	 background:#f18d22;
	 opacity:0.15;
	 position:absolute;
	 bottom:0;
	 left:50%;
	 transform:translateX(-50%);
	 z-index:-1;
    padding: 0 25px;
}
.con04{
	background:url(../images/con04_bg.png)no-repeat center;
	padding:30px 0;
	background-size:100% 100%;
}
.con04 .con{
	display:table;
	width:100%;
}
.con04 .con_left{
/* 	float:left; */
	display:table-cell;
	width:calc(100% - 245px);
	padding:30px 0
}
.con04 .con_left h3{
	font-size:38px;
	color:#fff;
	font-weight:500;
}
.con04 .con_left p{
	font-size:22px;
	color:rgba(255,255,255,0.85);
}
.con04 .con_right{
	/* float:right; */
	display:table-cell;
	text-align:right;
	width:245px;
	vertical-align:middle;
}
.con04 .con_right a{
	display:block;
	font-size:22px;
	color:#fff;
	font-weight:600;
	width:100%;
	text-align:center;
	background:#ffe0b8;
	border-radius:10px;
	height:70px;
	line-height:70px;
/* 	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	padding-left:40px; */
	color:#373737;
}
.con04 .con_right a img{
	display:inline-block;
	margin-left:10px;
	vertical-align:1px;
}
.con05{
	padding:80px 0 110px;
}
.con05 .con_top{
	padding-bottom:25px;
	margin-bottom:35px;
	border-bottom:1px solid #e4e3e8;
}
.con05 .con_top h3{
	float:left;
	font-size:32px;
	color:#2a2b42;
	font-weight:600;
}
.con05 .con_top a.more_bt{
	float:right;
	font-size:18px;
	font-weight:600;
	display:inline-block;
	border:1px solid rgba(241,141,34,0.3);
	border-radius:20px;
	margin-top:5px;
	padding:0 25px;
	height:40px;
	line-height:40px;
}
.con05 .con_top a img{
	display:inline-block;
	margin-left:10px;
	vertical-align:0;
}
.con05 .con_bot ul li{
	padding-bottom:20px;
}
.con05 .con_bot ul li > div{
	float:left;
	vertical-align:middle;
}
.con05 .con_bot .noti_d,
.con05 .con_bot .noti_ca{
	font-size:18px;
	color:#9696b1;
}
.con05 .con_bot .noti_d{
	width:100px;
}
.con05 .con_bot .noti_ca{
	/* border-left:1px solid #9696b1; */
	padding-left:10px;
	width:120px;
}
.con05 .con_bot .noti_ca:before {
	content:"";
	display: inline-block;
	width: 1px;
	height: 20px;
	vertical-align: -4px;
	background:#9696b1;
	margin-right:10px
}

.con05 .noti_tit{
	width:calc(100% - 220px);
}
.con05 .noti_tit a{
	color:#2a2b42;
	font-size:18px;
}
footer{
	background:#1a1a2e;
	padding:15px 0;
	text-align:center;
}
footer .foot_top ul li{
	display:inline-block;
}
footer .foot_top ul li  a{
	color:#fff;
	/* font-size:18px; */
	font-size:14px;
}
footer .foot_top ul li:after{
	content:"|";
	display:inline-block;
	margin:0 20px;
	color:#fff;
}
footer .foot_top ul li:last-child:after{
	display:none;
}
footer .foot_bot .foot_info{
	padding-top:10px;
}
footer .foot_bot ul li{
	display:inline-block;
	padding-right:10px;
}
footer .foot_bot ul li span{
	display:inline-block;
	font-size:13px;
	/* color:#fff; */
	color:#8f9195;
}
footer .foot_bot ul li span:last-child{
	padding-left:10px;
}
footer .foot_bot ul li span:last-child,
footer .foot_bot ul li span:last-child a{
	opacity:0.8;
	font-size:12px;
	color:#8f9195;
}
footer .foot_logo{
	margin:20px 0 10px;
}
footer .copy{
	font-size:13px;
	color:#9393a0;
	margin-top:5px;
}


/*******************login*****************/

.log_box {
	background:#eee;
	width: 100%;
	padding:70px 15px
}

.log_con {
	max-width: 800px;
	margin:0 auto;
	background:#fff;
	padding:90px;
	border-radius:9px;
}
.log_inner {
	max-width:430px;
	margin:0 auto
}
.log_con h3 {
	font-size:35px;
	font-weight:600;
	text-align: center;
	padding-bottom:40px
}

input.input_box {
	border:1px solid #e0e0e0;
	border-radius:6px;
	padding:10px 15px;
	width: 100%;
	height: 60px;
	font-size:20px
}
textarea.input_box {
	border:1px solid #e0e0e0;
	border-radius:6px;
	padding:10px 15px;
	width: 100%;
	height: auto;
	font-size:20px;
	resize:none
}
.input_box::placeholder {
	color: #757575;
	font-size:18px
}
.log_con input {
	margin-bottom:10px
}

.log_con input.submit_box {
	padding:10px 15px;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size:24px;
	height: 60px;
	border:0;
	border-radius:6px !important;
	background:#f19722;
	cursor:pointer;
	margin-bottom:25px
}

.chkbox {
	display: inline-block;
	width: 22px;
	height: 22px;
	border:1px solid #9e9e9e;
	cursor:pointer;
	border-radius:3px;
	vertical-align: middle;
	margin-right:5px
}
.chkbox i {
	font-size:22px;
	text-align: center;
	vertical-align: -1px;
	display: none;
}
input:checked + label .chkbox i {
	display: block;
}


/**************notice************/

.notice_con {
	/* padding: 100px 15px 150px; */
	padding: 60px 15px 150px;
}
.subtt_top {
	text-align: center;
	font-size:32px;
	font-weight: 600;
	color: #2a2b42;
	position:relative;
	padding-bottom:50px
}
.subtt_top:before {
	content:"";
	display: inline-block;
	text-align: center;
	background:#2a2b42;
	height: 6px;
	width: 60px;
	position:absolute;
	top:-15px;
	left:50%;
	transform:translateX(-50%)
}

.table01 {
	width: 100%;
/* 	border-top:2px solid #999; */
}
.table01 tr {
	border-bottom:1px solid #999;
}
.table01 tr td {
	/* padding:20px 15px; */
	padding:10px 5px;
	font-size:16px;
	color: #2a2b42;
}
.table01 tr td a {
	/* font-size:18px; */
	font-size:16px;
	color: #2a2b42;
	max-width: 650px;
	overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
	  display: block;
}

.table01 tr .td_date {
	text-align: center;
	color: #9696b1;
	width: 150px !important
}


/*page*/

.page {
	/* padding-top:80px; */
	padding:15px 0;
	display: inline-block;
	text-align: center;
	margin:0 auto;
	position:relative;
	left:50%;
	transform:translateX(-50%)
}
.page:after {content:"";display:block;clear:both}
.page>div {
	display: inline-block;
}
.page ul li {
	display: inline-block;
	vertical-align: middle;
}
.page .page02 ul li a {
	padding:0 15px;
	font-size:22px;
	color: #9e9e9e;
	display: block;
	cursor:pointer
}
.page .page02 ul li:hover a{
	color: #f18d22
}
.page span:hover {
	border:1px solid #f18d22
}
.page span a {
	display: block;
}
.page span {
	display: inline-block;
	border:1px solid #9e9e9e;
	border-radius:6px;
	width: 30px;
	height: 30px;
	text-align: center;
	vertical-align: middle;
	margin:0 5px;
	background:#fff;
	line-height:30px;
}
.page span a {
	display: block;
	/* padding:5px 0; */;
	cursor:pointer
}
.page .page03 img {
	transform:rotate(180deg);
}
.page span a img{
	vertical-align:-4px;
}


/*sub tt*/

.subtt {
	background-size:cover;
	width: 100%;
	height: 320px;
	color: #fff;
	text-align: center;
	padding:70px 0;
	background-position:center !important;
}
.subtt01 {
	width: 100%;
	background:url(../images/sub_banner.png) no-repeat;
	background-size: cover;
}
.subttp{
	width: 100%;
	background:url(../images/sub_banner01.png) no-repeat;
	background-size: cover;
}
.subttp h2{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.subtt02 {
	width: 100%;
    background: url(../images/sub_banner02.png) no-repeat;
    background-size: cover;
}
.subtt h2 {
	font-size:48px;
	font-weight: 600;
}

.subtt p {
	font-size:32px;
	color: #dbdad8;
	font-weight: 300;
	letter-spacing: -0.024em;
}

.real_mob_tt{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:100%;
	text-align:center;
}
.sub_con {
	position:relative;
	height: 320px;
}
.sub_con .sec_nav {
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	bottom:-40px;
	width: 100%;
/* 	height: 80px; */
}
.sub_con .sec_nav ul {
	width: 100%;
	height: 100%;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.1);
}
.sub_con .sec_nav ul:after {content:"";display:block;clear:both}
.sub_con .sec_nav ul li {
	float:left;
	width: 20%;
	height: 100%;
	background:#fff;
	text-align: center;
	color: #222;
	font-size:22px
}
.sub_con .sec_nav2 ul li {
	/* width: 14.2857%; */
	width:16.667%;
}
.sub_con .sec_nav3 ul li {
	width:50%;
}
.sub_con .sec_nav ul li a {
	display: block;
	color: #222;
	font-size:22px;
	padding:26px 10px;
}
.sub_con .sec_nav ul li.on {
	background:#f19722;
}
.sub_con .sec_nav ul li.on a{
	color: #fff;
	font-weight: 500;
}
.sub_con .sec_nav ul li a.on {
	background:#f19722;
}
.sub_con .sec_nav ul li a.on{
	color: #fff;
	font-weight: 500;
}

/*************section01***********/




.sec_con {
	padding:100px 15px 
}
.sec0104_con {
	width: 100%;
	padding:70px 10px;
	background:#f5f5f5;
	border-radius:6px
}
.sec0104_con h4,
h2.sec_tit{
	color: #2a2b42;
	font-weight: 600;
	font-size:38px;
	text-align: center;
	padding-bottom:50px
}
h2.sec_tit{
	padding-bottom:0 !important;
}
.sec0104_con .sec0104_box {
	border:1px solid #f19722;
	border-radius:25px;
	background:#fff;
	max-width: 800px;
	width: 100%;
	margin:0 auto;
	padding:50px 15px
}
.sec0104_con .sec0104_box ul {
	max-width: 600px;
	width: 100%;
	margin:0 auto
}
.sec0104_con .sec0104_box ul li {
	padding-bottom:30px
}
.sec0104_con .sec0104_box ul li:last-child {
	padding-bottom:0
}
.sec0104_con .sec0104_box ul li:after {content:"";display:block;clear:both}
.sec0104_con .sec0104_box ul li>div {
	float:left;
	color: #2a2b42;
	font-size:22px;
	opacity:0.85;
	word-break: keep-all;
	display: inline-block;
}
.sec0104_con .sec0104_box ul li b {
	opacity:1
}
.sec0104_con .sec0104_box ul li>div {
	max-width: 438px	
}
.sec0104_con .sec0104_btn {
	text-align: center;
	padding-top:110px;
	position:relative;
}
.sec0104_con .sec0104_btn a:before {
	content:"";
	display: inline-block;
	background:url("../images/sec0104_icon.png") no-repeat;
	width: 137px;
	height: 133px;
	position:absolute;
	left:-80px;
	bottom:0
}
.sec0104_con .sec0104_btn a{
	display: inline-block;
	background:#f19722;
	border-radius:6px;
	width: 240px;
	height:70px;
	color: #fff;
	text-align: center;
	padding:17px 0;
	font-size:22px;
	position:relative;
}

.sec0104_btn i {
	padding-left:10px;
}

/*sec0102*/
.sec_inner{
	background:#f5f5f5;
	padding:60px 0;
}
.sec0102_box .sec_top,
.sec0103_box .sec_bot{
	overflow-x:auto;
	width:100%;
	margin-bottom:20px;
}
.sec0102_box .sec_bot .sec_icon{
	max-width:790px;
	margin:0 auto;
} 
.sec0102_box .sec_bot .sec_icon li{
	float:left;
	width:33.33%;
	text-align:center;
}
.sec0102_box .sec_bot .sec_icon dl dd span{
	display:block;
	line-height:normal;
	letter-spacing:-0.024em;
}
.sec0102_box .sec_bot .sec_icon dl dd:first-of-type{
	font-size:18px;
	font-weight:600;
	padding:15px 0 10px;
}
.sec0102_box .sec_bot .sec_icon dl dd:last-of-type{
	font-size:16px;
	color:#767676;
}
.sec0102_box .sec_bot .sec_icon dl dd:last-of-type span:first-child{
	width:30px;
	height:4px;
	background:#ff9c1b;
	margin:0 auto 15px;

}
/*sec0103*/
.sec_inner2{
	padding:30px 0 90px;
	background:#f9fafd;
}
.sec0103_box{
	max-width:765px;
	margin:0 auto;
}
.sec0103_box .sec_top{
	padding-bottom:50px;
}
.sec0103_box .sec_top .sec_tl{
	float:left;
}
.sec0103_box .sec_top .sec_tl ul li.tl_tit{
	font-size:16px;
	color:#fff;
	letter-spacing:-0.05em;
	background:#ff9c1b;
	border-radius:20px;
	padding:2px 10px;
	display:inline-block;
}
.sec0103_box .sec_top .sec_tl ul li.tl_tit2{
	font-size:43px;
	color:#373737;
	letter-spacing:0.15em;
	font-weight:600;
	padding:10px 0;
	line-height:normal;
}
.sec0103_box .sec_top .sec_tl ul li.tl_desc span{
	display:block;
	font-size:16px;
	letter-spacing:-0.024em;
}
.sec0103_box .sec_top .sec_tr{
	float:right;
	margin-right:35px;
	margin-top:55px;
	width:260px;
	background:#fff;
	border:1px solid #dedede;
	border-radius:10px;
	padding:15px;
}
.sec0103_box .sec_top .sec_tr .tr_tit span{
	font-size:19px;
	letter-spacing:-0.05em;
	font-weight:500;
	color:#373737;
	padding-left:5px;
}
.sec0103_box .sec_top .sec_tr .tr_desc div{
	display:inline-block;
}
.sec0103_box .sec_top .sec_tr .tr_desc div img,
.sec0103_box .sec_top .sec_tr .tr_desc div span{
	display:inline-block;
	vertical-align:middle;
}
.sec0103_box .sec_top .sec_tr .tr_desc div span{
	padding-left:5px;
	letter-spacing:-0.024em;
	font-size:16px;	
}
.sec0103_box .sec_top .sec_tr .tr_desc div:first-child{
	color:#767676;
	padding-right:8px;
}
.sec0103_box .sec_top .sec_tr .tr_desc div:last-child{
	font-weight:600;
}
.sec0103_box .sec_bot{
	margin-bottom:0;
}
/*sec0105*/

.sec0105_con {
	padding-top:70px
}
.table02 {
	border-top:2px solid #999;
	font-size:18px
}
.table02 tr {
	border-bottom:1px solid rgba(153,153,153,0.4)
}
.table02 th{
	width: 160px;
	background:#f5f5f5;
	padding:20px;
	text-align: center;
	font-size:18px;
	font-weight: 500;
}
.table02 td {
	padding:20px;
}
.table02 td input[type=text] {
	height: 55px;
/* 	font-size:18px; */
}
.table02 td input[type=text]::placeholder {
	color: rgba(34,34,34,0.3);
}
.table02 td input + label {
	color: #9696b1;
	font-size:18px;
}
.table02 td input:checked + label {
	color: #2a2b42;
}

/* input:checked + label span {
    vertical-align: -8px;
} */


.chk_btn {
	display: inline-block;
	width: 22px;
	height: 22px;
	border-radius:3px;
	border:1px solid #bdbdbd;
	text-align: center;
	padding:5px 0;
	margin-right:10px;
	margin-top:-3px;
}
.chk_btn img {
	display: none;
}
input + label span {
	vertical-align: middle;
}
input:checked + label .chk_btn img{
	display: inline-block;
}

.radio_btn {
	display: inline-block;
	width: 22px;
	height: 22px;
	border-radius:50%;
	border:1px solid #bdbdbd;
	text-align: center;
	padding:5px 0;
	margin-right:10px
}
.radio_btn img {
	display: none;
}

input:checked + label .radio_btn img{
	display: inline-block;
}

.table02 td:after {content:"";display:block;clear:both}
.table02 td>div {
	/* float: left; */
	display:table-cell;
	vertical-align:middle;
	width: calc(100% - 200px);
	padding:8px 0
}
.table02 ul:after {content:"";display:block;clear:both}
.table02 ul li{
	float:left;
	padding-left:25px
}
.table02 ul li:first-child {
	padding-left: 0;
}
.table02 td>div ul li {
	padding-left:25px !important
}
.back_yel {
	background:rgba(241,141,34,0.15);
	padding:10px !important;
	width: 160px !important;
	text-align: center;
	font-weight: 500;
}

input + label {
	vertical-align: middle;
}

.sec0105_agree	 {
	padding:70px 0 35px;
	text-align: center;
}
.sec0105_agree:after {content:"";display:block;clear:both}
.sec0105_agree>div {
	display: inline-block;
	vertical-align: middle;
}	
.sec0105_agree>div input + label {
	color: #292929;
	font-size:20px
}
.sec0105_agree>div a {
	display: inline-block;
	border:1px solid #9e9e9e;
	padding:5px 10px;
	border-radius:6px;
	color: #9e9e9e;
	font-size:16px;
	vertical-align: middle;
	margin-left: 20px;
}

.submit_btn {
	display: block;
	max-width: 220px;
	height: 70px;
	background:#f19722;
	color: #fff;
	font-size:22px;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	padding:18px 30px;
	border-radius:	6px;
	margin:0 auto
}
.submit_btn img {
	vertical-align: middle;
	margin-left:10px
}

/*sec0101*/

.nonpost {
	border-top:1px solid #e4e3e8;
	border-bottom:1px solid #e4e3e8;
	color: #9696b1;
	text-align: center;
	font-size:32px;
	padding:250px 15px
}

.sec0101_btn .submit_btn {
	display: block;
	max-width: 100px;
	margin-top:30px
}



/************* list *************/



.list .sec_con h3 {
	color: #2a2b42;
	font-size:32px;
	text-align: center;
	position:relative;
	font-weight: 600;
	margin-top:50px
}

.list .sec_con h3:before {
	content:"";
	display: block;
	position:absolute;
	width: 60px;
	height: 6px;
	background:#2a2b42;
	top:-15px;
	left:50%;
	transform:translateX(-50%)
}
.listbox {
	border:1px solid #dedede;
	background:#f8f8f8;
	margin-top:30px
}
.listbox:after {content:"";display:block;clear:both}
.listbox>div {
	float:left;
}

.listbox1 {
	max-width: 332px;
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
	padding-bottom: 22.17%;
}
.listbox1 a {
	position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
}
.listbox1 a img {
	max-width: 100%;
	transition:0.5s;
	display:block;
	margin:0 auto;
}
/* .listbox1 a:hover img {
	transform:scale(1.1)
} */
.listbox2 {
	padding:20px 20px 0 20px;
	width: calc(100% - 559px);
	border-left:1px solid #dedede
}

.listbox2 .listbox2_up p{
	color: #373737;
	font-size:16px
}
.listbox2 .listbox2_up .listbox2_name {
	padding-bottom:20px
}
.listbox2 .listbox2_up .listbox2_name>* {
	display: inline-block;
	vertical-align: middle;
}
.listbox2 .listbox2_up .listbox2_name a {
	font-size:24px;
	color: #2a2b42;
	font-weight: 700;
	padding-right:5px
}

.listbox2 .listbox2_bottom table {
	background:#fff;
	border:1px solid #dedede;
}
.listbox2 .listbox2_bottom table tr {
	border-bottom:1px solid #dedede
}
.listbox2 .listbox2_bottom table td {
	border-right:1px solid #dedede;
	padding:8px 15px;
	font-size:14px
}
.listbox2 .listbox2_bottom table tr:last-child {
	border-bottom:0
}
.listbox2 .listbox2_bottom table td:first-child {
	width: 264px;	
}

.listbox2 .listbox2_bottom table td:last-child {
	border-right:0
}
.listbox2 .listbox2_bottom table td ul {
	padding:13px 0
}
.listbox2 .listbox2_bottom table td ul:after {content:"";display:block;clear:both}
.listbox2 .listbox2_bottom table td ul li {
	float: left;
	text-align: center;
	width: 33.333%;
}
.listbox2 .listbox2_bottom table td .red {
	font-weight: 500;
}
.red {
	color: #bd3232;
}

.listbox2 .listbox2_bottom table td .elipsis {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.4em;
    height: 5.6em;
	color: #767676;
}
.listbox2 .listbox2_bottom table td .ellipsis {
	max-width:320px;
}

.listbox3 {
	padding:20px 20px 0 20px;
	padding-left:0;
}
.listbox3>div {
	background:#fff;
	border:1px solid #dedede;
	width: 205px;
}
.listbox3 .listbox3_top {
	padding:20px;
	width: 100%;
}
.listbox3 .listbox3_top b {
	color: #373737;
	font-weight: 600;
	font-size:16px
}
.listbox3 .listbox3_top .listbox_cost {
	font-size:28px;
	font-weight: 600;
	color: #ae0000;
}
.listbox3 .listbox3_top p {
	color: #767676;
	font-size:13px
}
.listbox3 .listbox_order {
	border-top:1px solid #dedede;
}
.listbox3 .listbox_order > div{
	display:table;
	width:100%;	
}
.listbox3 .listbox_order:after {content:"";display:block;clear:both}
.listbox3 .listbox_order > div > a {
	display:table-cell;
	width: 50%;
	text-align: center;
/* 	display: block; */
	padding:18px 0;
	font-size:16px;
	color:#373737;
}
.listbox3 .listbox_order>div>a:first-child {
	border-right:1px solid #dedede
}
.listbox3 .listbox_order>div>a img {
	transition:0.3s;
	display:block;
	margin:0 auto;
}
.listbox3 .listbox_order>div>a:hover{
	background:#f19722;
	color:#fff;
}
.listbox3 .listbox_order>div>a:hover img {
	transform:scale(1.1)
}

.program .goods .hot_image {
    display: inline-block;
    width: 60px;
    vertical-align: middle;
    margin: -8px 0 0 5px;
    height: 20px;
}
 .new_img {
    background-color: #C72E45;
}
.best_img {
    background-color: #ae0000;
}
.double_img {
    background-color: #630460;
}

.medal {
    position: relative;
    padding: 0 5px 0 27px;
    letter-spacing: -.5px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
}
.medal > img {
    position: absolute;
    top: -5px;
    left: -5px;
}
.mob_s{
	display:none !important;
}
/*modal*/
.con_box{
	width:100%;
	height:300px;
	overflow-y:scroll;
	padding:30px 15px;
	border:1px solid #e5e5e5;
	color:#666;
}
.con_box h2{
	font-size:17px;
	font-weight:500;
	padding-bottom:30px;
}
.con_box h3{
	font-size:14px;
	padding-bottom:10px;
}
.con_box > div,
.con_box > ul{
	padding-bottom:30px;
}
/*카트*/
.layer_cart_all_wrap {
    width: 100% ;bottom: 0; left: auto; right: 0px;
     /* border-top: 2px solid #242430; */
     /* background-color: rgba(255, 255, 255, 0.9); */
	 /* background:#fff; */
     z-index: 2;
	display:none;
	 position: sticky;
}
.layer_cart_all_wrap.cartlist {
	bottom:0;
	/* display:block; */
	display:none;
}
/* .layer_cart_all_wrap.cartlist.on{
	bottom:342px;
} */
.layer_cart_all_wrap:hover {
   /*  background-color:#fff; */
}
.layer_cart_all_wrap.layer_on {
	display:block
}
.layer_cart_wrap_box {
	border-top: 2px solid #242430;
	background:#fff;
	padding:30px 0;
	display:none;
}
.layer_cart_wrap {
    /* width: 100%; margin: 0 auto; max-width: 1080px; */
    
}
.layer_cart_box {
    width: 100%;
}
.layer_cart_box:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.layer_cart_box_left {
    float: left; width:65%;
}
.layer_cart_box_right {
    float: right;width: 30%;
}
.layer_cart_box_label_wrap {
    width: 100%; padding-bottom: 10px;
}
.layer_cart_box_label_wrap:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.layer_cart_box_label {
    color: #333; font-size: 18px; 
    padding-right: 15px;
}
.layer_cart_box_desc {
    font-size: 15px; color: #999
}
.layer_cart_result_wrap {
    width: 100%;
    font-size: 14px;letter-spacing: 0px;
}
.layer_cart_result_wrap > div:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.layer_cart_result_box_top {
 border-top: 1px solid #222; border-bottom: 1px solid #dedede;
 padding: 10px;
}
.layer_cart_result_dc {
    padding: 10px 5% 0;
}
.layer_cart_result_last {
    padding: 10px;
	border-bottom: 1px solid #dedede;
}
.layer_cart_result_label {
    float: left;
}
.layer_cart_result_desc {
    float: right;
	font-size:13px;
}
.layer_cart_result_last .layer_cart_result_desc {
    font-size: 16px; color: #ae0000;
}
.layer_cart_result_dc .layer_cart_result_desc b {
    text-decoration: line-through;
}
.layer_cart_payment_wrap {
    width: 100%;
	margin-top:20px;
}
.layer_cart_payment_wrap:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.layer_cart_payment_wrap a {
    display: block; height: 45px; text-align: center;
    font-size: 16px;line-height: 45px; color: #fff;
	font-weight:600;
}
.layer_cart_payment_wrap #banksmssend {
    float: left; width: 49%;
    background-color: #dedede;
	color:#373737;
}
.layer_cart_payment_wrap #cardpaymentrequest {
    float: right; width: 49%;
    background-color: #f19722
}
.layer_cart_payment_wrap #banksmssend02 {
    float: left; width: 49%;
    background-color: #242430
}
.layer_cart_payment_wrap #cardpaymentrequest02 {
    float: right; width: 49%;
    background-color: #5b44ca
}
.layer_cart_table {
    width: 100%; height: 156px;
    overflow: auto; 
}

.layer_cart_table table {
    border-top: 1px solid #222;
    font-size: 14px;
    letter-spacing: 0px;
}
.layer_cart_table table th {
    padding: 6px 0; text-align: center;color: #fff; background-color: #373737;
	font-weight:500;
}
.layer_cart_table table td {
    padding: 10px 5px;
    border-bottom: 1px solid #eee;
}
.layer_cart_td_qty:after,
.layer_cart_td_cost:after{
content: "|";
    display: inline-block;
    /* height: 0; */
    /* clear: both; */
    /* visibility: hidden; */
    color: #fff;
    float: right;
}
.layer_cart_td_qty_input {
    float: left;
}
.layer_cart_td_qty_control {
    float: left;
}
.layer_cart_td_qty_input input {
    height: 30px; width: 40px; text-align: center;
    border: 1px solid #ddd;
}
.layer_cart_td_qty_control span {
    display: block;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 15px; width: 25px;
    text-align: center;
    line-height: 15px;  cursor: pointer;
    background-color: #fefefe;
}
.layer_cart_td_qty_control span:first-child {
    border-top: 1px solid #ddd;
}
.layer_cart_td_qty {
    width:95px;
}
.layer_cart_td_cost {
    width: 95px; text-align: center;
}
.layer_cart_td_del {
    width: 95px; text-align: center;
}
.layer_cart_td_del span {
    width: 15px; height: 15px; display: inline-block;
    text-align: center; line-height: 15px;
    color: #fff; background-color: #999;
    cursor: pointer;
}
.layer_cart_td_name:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.layer_cart_td_name_01 {
    float: left; max-width: 180px;
        white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #222;
}
.layer_cart_td_name_02 {
    float: left;
    color: #999
}

.layer_cart_btn_wrap {
    /* position: absolute;top:-50px; */
	text-align:right;
	line-height:0;
  /*    background: #dd2c63;
	background: linear-gradient(230deg, #dd2c63, #288fcf, #dd2c63, #288fcf);
    background: -moz-linear-gradient(230deg, #dd2c63, #288fcf, #dd2c63, #288fcf);
    background: -webkit-linear-gradient(230deg, #dd2c63, #288fcf, #dd2c63, #288fcf);
    background: linear-gradient(230deg, #dd2c63, #288fcf, #dd2c63, #288fcf);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd2c63', endColorstr='#288fcf',GradientType=1 );
    background-size: 600% 600%;
    -webkit-animation: AnimationName 3s ease infinite;
    -moz-animation: AnimationName 3s ease infinite;
    -o-animation: AnimationName 3s ease infinite;
    animation: AnimationName 3s ease infinite;*/
}

.w_layer_on .layer_cart_btn_wrap {
    background: #555;
}

.layer_cart_btn_wrap .layer_cart_btn {
    display: inline-block; width: 220px; /* height: 50px; */
    color: #fff; font-size: 18px;
	text-align:left;
	padding:10px 15px;
  /*   padding-left: 30px; */
   /*  line-height: 50px; */
	background:#f19722;
}
.layer_cart_btn_wrap .layer_cart_btn img{
	display:inline-block;
	float:right;
	margin-top:9px;
}
.layer_cart_btn_wrap .layer_cart_btn.check{
	background:#555;
}
.layer_cart_btn_wrap .layer_cart_btn.check img {
transform: rotateX(180deg);
}
/*notice_view*/
.notice_view{
	letter-spacing:-0.05em;
}
.notice_view .notice_vt{
	border-top:2px solid #373737;
}
.notice_view .notice_vt .notice_vtt{
	background:#f8f8f8;
}
.notice_view .notice_vt > div{
	padding: 15px 20px;
}
.notice_view .notice_vt .notice_vtt h5{
	font-size:18px;
	color:#373737;
	padding-bottom:5px;
    font-weight: 600;
}
.notice_view .notice_vt .notice_vtt ul li{
	display:inline-block;
}
.notice_view .notice_vt .notice_vtt ul li:first-child{
	padding-right:10px;
}
.notice_view .notice_vt .notice_vtt ul li span{
	display:inline-block;
	font-size:14px;
}
.notice_view .notice_vt .notice_vtt ul li span:first-child{
	color:#373737;
	padding-right:5px;
    font-weight: 600;
}
.notice_view .notice_vt .notice_vtt ul li span:last-child{
	color:#767676;
}
.notice_view .notice_vt .notice_vtb{
	border:1px solid #dedede;
	font-size:14px;
	color:#767676;
}
.notice_view .notice_vb{
	text-align:right;
	margin-top:20px;
}
.notice_view .notice_vb a{
	display:inline-block;
	border:1px solid #dedede;
	border-radius:5px;
	width:80px;
	text-align:center;
	font-size:16px;
	color:#767676;
	padding:5px 0;
	background:#f8f8f8;
	overflow:hidden;
}
.notice_view .notice_vb a img{
	display:inline-block;
	vertical-align:1px;
	margin-right:5px;
}
.notice_view .board_view_info{
	padding-top:5px;
}
/*mypage*/
.sub_tit{
	text-align:center;
	margin-bottom:30px;
}
.sub_tit h2{
	font-size:35px;
	color:#292929;
	font-weight:600;
}
.sub_tit p{
	font-size:16px;
	color:#767676;
}

.my_home_all_wrap {
    width: 100%;
}
.my_home_in {
    width: 100%; padding-bottom: 45px;
}
.my_home_box_wrap {
    width: 100%;
    border: 1px solid #dedede;
    padding: 20px 0;
	background:#f8f8f8;
	border-radius:5px;
}
.my_home_box_wrap:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


.my_home_box_left {
    float: left;width:50%; border-right: 1px solid #ddd;
}
.my_home_box_right {
    float: right;width:50%;
}
.my_home_box_in {
    padding-left: 45px;
}
.my_home_box_in:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.my_home_box_img {
    float: left;
	margin-left:20px;
}
.my_home_box_label_wrap {
    float: left;
}

.my_home_box_img_circle {
    width: 115px; height: 115px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url(../images/my_home_box_img_circle.png);
    background-repeat: no-repeat;
    background-position: center center;
	border:1px solid #dedede;
	display:none;
}

.my_home_box_txt_wrap {
    width: 100%;
}
.my_home_box_txt_wrap:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.my_home_box_txt {
   /*   width: 100%; font-size: 18px; */
     padding: 5px 0
}
.my_home_box_txt > div {
    display: inline-block;
}
.my_home_box_txt_label {
    color: #373737;
	font-size:18px;
	font-weight:600;
}
.my_home_box_txt_desc {
    padding-left: 15px;
    color: #767676;
	font-size:16px;
}
.my_home_box_txt_info {
    padding-left: 15px;
}
.my_home_box_auth_yes {
    font-size:13px; border: 1px solid #e83837;
    color: #e83837;
    height: 25px; line-height: 25px; border-radius: 3px;
    display: inline-block;
    padding: 0 10px;
}

.my_home_box_label_wrap {
	/* padding-left: 45px; */
	font-size: 20px; color: #373737;
	padding-top: 27px;
}

.my_home_box_label span {
    color: #f19722;
	font-weight:600;
}
.my_home_box_edit_wrap {
/*     padding-top: 5px; */
}
.my_home_box_edit_btn {
     font-size:13px; border: 1px solid #dedede;
    color: #767676;
    height: 25px; line-height: 25px; border-radius: 3px;
    display: inline-block;
    padding: 0 10px;
	background:#fff;
}
.total_label_all_wrap {
    width: 100%;
}
.total_label_wrap {
   
}
.total_label_wrap:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.total_label {
    float: left;
    font-size: 18px;
    color: #333;
	font-weight:600;
	padding-bottom:5px;
}
.total_label_link {
    float: right;
	margin-top:5px;
}
.total_label_link_btn {
   display: inline-block;
}
.total_label_link_btn span {
    font-size: 14px;
    color: rgba(55,55,55,0.6);
    display: inline-block;
	font-weight:500;
}
.total_label_link_btn span img{
	display:inline-block;
	margin-left:5px;
	vertical-align:1px;
}
.board_all_wrap {
    width: 100%; padding-bottom: 25px;
}
.board_wrap {
 /*    width: 100%; max-width: 1080px; margin: 0 auto; */
}
.board_con {
    width: 100%; position: relative;top: 0px; left: 0px;
}
.board_con .main_board_line {
    padding: 0px; border-bottom: none;
}
.board_list th {
    background-color: #373737;
    color: #fff;
    padding: 6px 0px;
    font-size: 14px;
	font-weight:600;
}
.board_list th:after{
	content:"|";
	float:right;
	display:inline-block;
	color:#9b9b9b;
}
.board_list th:last-child:after{
	display:none;
}
.board_list th{
	width:13.33%;
}
.board_list th:nth-child(2){
	width:20%;
}
.board_list td {
    border-bottom: 1px solid #ddd;
    text-align: center; font-weight: normal;
    color: #666;
    padding: 10px 5px 15px;
    font-size: 14px;
	background:#fff;
}
.board_list tr:hover {
    background-color: #f7f7f7;
}
.box_bg{
	background:#fff;
	border-radius:10px;
	padding:25px 20px;
	border:1px solid #dedede;
}
.box_bg.box_bg2{
	max-width:800px;
	width:100%;
	margin:0 auto;
}
.board_right_btn{
	text-align:right;
    margin-top: 20px;
}
.board_right_btn a{
	display:inline-block;
	border-radius: 5px;
	width: 80px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    padding: 5px 0;
    background: #f18d22;
    overflow: hidden;
}
.log_box .log_bot .log_bl{
	float:left;
}
.log_box .log_bot .log_br{
	float:right;
}
.log_box .log_bot .log_br ul li{
	display:inline-block;
}
.log_box .log_bot .log_br ul li a{
	color:#767676;
	font-size:14px;
}
.pdt_wrap:after {content:"";display:block;clear:both}
.pdt_wrap>div {
	float: left;
}

.pdt_wrap .pdt_img_wrap a{
	width: 150px;
	display: block;
}

.pdt_wrap .pdt_img_wrap a img {
	width: 100%;
}
.pdt_wrap {
	text-align: center;
	display: inline-block;
}
.pdt_wrap .pdt_box_wrap {
	padding: 0 0 0 10px;
	/* text-align: left */	
	text-align: center;
}
.pdt_wrap .pdt_box_wrap>div {
	display: inline-block;
	text-align: center;
}

.pdt_box_label a {
	font-weight: 600;	
	/* font-size:16px;
	line-height: 1.2em; */
}
/* .pdt_box_txt a {
	color: #999;
} */

.board_buyhistory_wrap {
	overflow-x:auto;
}
.board_buyhistory_wrap table {
	min-width: 1000px;
}
.board_buyhistory_wrap table th{
	width:calc(calc(100% - 800px) / 2);
}
.board_buyhistory_wrap table td{
	padding:10px 5px;
}
.board_buyhistory_wrap table .td_date{
	width:100px;
}
.board_buyhistory_wrap table .td_pdt_name{
	width:250px;
}
.board_buyhistory_wrap table td.td_pdt_name{
	text-align:left;
}

/*아이디 비번찾기*/
.frm_box .frm_top{
	border-bottom:1px solid #dedede;
}
.frm_box .frm_top .frm_td{
	display:table;
	width:100%;
	padding-bottom:15px;
}
.frm_box .frm_top .frm_td > div{
	display:table-cell;
	vertical-align:top;
}
.frm_box .frm_top .frm_td > div.frm_tdl{
	width:115px;
	padding-top:5px;
}
.frm_box .frm_top .frm_td > div.frm_tdl label{
	font-size:16px;
	color:#373737;
	font-weight:600;
}
.frm_box .frm_top .frm_td > div.frm_tdr{
	width:calc(100% - 115px);
}
.frm_box .frm_top .frm_td > div.frm_tdr .input_s,
.frm_box .frm_top .frm_td > div.frm_tdr select{
	width:100%;
	border-radius:5px;
	border:1px solid #dedede;
	padding:0 15px;
	height:35px;
}
.frm_box .frm_top .frm_td > div.frm_tdr select{
    -webkit-appearance: none;  /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    background: url(../images/sel_arrow.png) no-repeat;  /* 화살표 모양의 이미지 */
	 background-position: right 12px center;
	border:1px solid #e6e6e6;
	padding:0 24px 0 12px;
	bottom:8px;
}
.frm_box .frm_top .frm_td > div.frm_tdr input::placehodler{
	font-size:14px;
	color:rgba(118,118,118,0.6);
}
.frm_box .frm_top .frm_td > div.frm_tdr p{
	padding-top:10px;
	font-size:13px;
	color:#ff0000;
	font-weight:500;
}
.frm_box .frm_bot{
	padding-top:30px;
	margin:0 -5px;
}
.frm_box .frm_bot ul{
	margin:0 auto;
	max-width:210px;
	width:100%;
}
.frm_box .frm_bot ul li{
	float:left;
	width:50%;
	padding:0 5px;
}
.frm_box .frm_bot ul li a{
	display:block;
	font-size:16px;
	padding:5px 0;
	text-align:center;
	border-radius:5px;
	font-weight:500;
}
.frm_box .frm_bot ul li:first-child a{
	color:#767676;
	border:1px solid #dedede;
	background:#f8f8f8;
}
.frm_box .frm_bot ul li:last-child a{
	color:#fff;
	border:1px solid #f18d22;
	background:#f18d22;
}
/*회원가입*/
.join_box:not(.join_box2) .frm_box .frm_top{
	border:0;
}
.join_box .frm_wrap{
	padding-bottom:30px;
}
.join_box .frm_tit{
	margin-bottom:5px;
}
.join_box .frm_tit h3{
	float:left;
	font-size:16px;
	color:#373737;
}
.join_box .frm_tit .nessesary{
	color:#ff0000;
}
.join_box .frm_tit > div{
	float:right;
	margin-top:2px;
}
.join_box .chk_btn{
	width:15px;
	height:15px;
	margin-right:5px;
	padding:2px 0;
	margin-top:-2px;
}
.join_box .frm_txt textarea{
	border:1px solid #dedede;
	background:#f8f8f8;
	border-radius:5px;
	width:100%;
	height:140px;
	padding:12px 15px;
	color:#767676;
}
.join_box .tab_num_box{
	width:100%;
	display:table;
	border-bottom:1px solid #dedede;
	border-radius:5px 5px 0 0;
	overflow:hidden;
	background:#fff;
}
.join_box .tab_num_box li{
	display:table-cell;
	width:33.33%;
	border-right:1px solid #dedede;
}
.join_box .tab_num_box li:last-child{
	border:0
}
.join_box .tab_num_box li a{
	display:block;
	text-align:center;
	color:#373737;
	font-weight:600;
	padding:9px 0;
}
.join_box .tab_num_box li.on a{
	background:#555;
	color:#fff;
}
.join_box .frm_txt2{
	border: 1px solid #dedede;
    background: #f8f8f8;
    border-radius: 5px;
    width: 100%;
    color: #767676;
}
.join_box .frm_txt .tab_cbox textarea{
	border:0;
}
.join_box .tab_content{
	display:none;
}
.join_box .tab_content.on{
	display:block;
}
.join_box:not(.join_box2) .frm_box .frm_bot{
	padding-top:0;
}
.join_box .frm_box .frm_bot .indi_check{
	text-align:center;
	padding-bottom:20px;
}
.join_box .frm_box .frm_bot ul{
	max-width:405px;
}
.join_box .frm_box .frm_bot ul li a{
	padding:11px 0;
	font-size:18px;
}
/*회원가입*/
.join_box .input_bt_box{
	overflow:hidden;
}
.join_box .input_bt_box > *{
	float:left;
}
.join_box .input_bt_box button{
	width:110px;
	height:35px;
	font-weight:600;
	color:#fff;
	font-size:14px;
	border-radius:5px;
	background:#555;
	box-shadow:none;
	border:1px solid #555;
	margin-left:10px;
}
.join_box .input_bt_box > div{
	width:calc(100% - 120px);
}
.join_box .input_cell > div{
	overflow:hidden;
	margin:0 -5px;
}
.join_box .input_cell > div > div{
	float:left;
	padding:0 5px;
}
.join_box .input_cell > div.email_box > div{
	width: calc(calc(100% - 24px) / 3);
}
.join_box .input_cell > div.email_box > div.gol_s{
	width:24px;
	line-height:34px;
}
.join_box .input_cell > div.hp_box >div{
	width:33.33%;
}
/*detail*/

a {
	color:#111;
}

b {
   /*font-family: NanumGothicBold;*/
}
/*update note*/


.up_note_all_wrap {
    width: 100%;
}
.up_note_box_wrap {
   padding: 0 10px 10px 0
}

.up_note_box_in {
    background-color: #d1d1d1;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    -moz-box-shadow: 10px 10px 0px 0px rgba(100, 100, 100, 0.1);
    -webkit-box-shadow: 10px 10px 0px 0px rgba(100, 100, 100, 0.1);
    box-shadow: 10px 10px 0px 0px rgba(100, 100, 100, 0.1);
}
.up_note_box {
    background-color: #fff;
    padding: 15px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    background-image: url(/image/up_note_box.jpg);
}
.up_note_box_label {
    font-weight: bold;
    font-size: 25px;
    color: #333;
    padding: 10px 0;
    display: inline-block;
    position: relative;top: 0px;
    left: 0px;
}
.up_note_box_label span {
    position: relative;top: 0px; left: 0px;
    z-index: 9;
}
.up_note_box_label:after {
    content: "";
    position: absolute;
    width: 105%;
    top: 46%;
    left: 0px;
    bottom: 14%;
    background-color: #f0d9fa;
    z-index: 8;
}
.up_note_box_desc {
    padding: 5px 0
}
.up_note_box_desc_in {
    position: relative;top: 0px; left: 0px;
    padding-left: 60px;
}
.up_note_box_desc_date {
    position: absolute;top: 0px;
    left: 0px;
    display: inline-block;
    padding: 2px 10px;
    background-color: #c584e4;
    color: #fff;
    border-radius: 100px;
}
.up_note_box_bt_wrap {
    text-align: center;
    color: #5d5858;
    font-size: 18px;
}

.up_note_box_bt b {
    color: #bc2727
}
.up_note_box_bt {
    padding-top: 10px;
}

.up_note_box_bt span {
    -webkit-text-emphasis-style: dot;
    -webkit-text-emphasis-position: over left;
    -webkit-text-emphasis-color: #bc2727;
    -webkit-text-emphasis-style: dot;
    -webkit-text-emphasis-position: over;
    -webkit-text-emphasis-color: #bc2727;
}


/* container */
.container {
    width: 100%;
}
.continer_inner {
    width: 1000px;
    margin: auto;
    background: #fff;
    padding-top: 55px;
}
.continer_inner:after {
    content: "";
    clear: both;
    display: block;
}
/* anydesk */
.anydesk_popup {
    width: 750px;
    background: #fff;
    color: #3c3c3c;
    display: none;
    font-size: 14px;
    letter-spacing: -1px;
    text-align: center;
}
.anydesk_popup .title {
    max-width: 100%;
    color: #fff;
    position: relative;
    background: #d71c28;
    padding: 15px;
}
.anydesk_popup .title img.logo {
    vertical-align: middle;
    margin-top: 0;
}
.anydesk_popup .title img.b-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.anydesk_popup .content {
    padding: 23px;
}
.anydesk_popup .content dl {
    margin-bottom: 5px;
}
.anydesk_popup .content dt {
    float: left;
}
.anydesk_popup .content dd {
    float: right;
}
.anydesk_popup .content dd img {
    margin-left: 5px;
}
.anydesk_popup .workstation img {
    !width: 100%;
}
.anydesk_popup .btn_box {
    margin-top: 15px;
}
.anydesk_popup .btn_box a {
    font-size: 14px;
	letter-spacing:-1px;
    display: inline-block;
    padding: 7px 25px;
    border-radius: 3px;
    margin: 3px 0;
}
.anydesk_popup .btn_box a.down {
    border: 1px solid #d71c28;
    background: #d71c28;
    color: #fff;
}

.anydesk_popup .btn_box a.down:hover {
	background:#fff;
	color:#d71c28;
}

.anydesk_popup .btn_box a.copy {
    border: 1px solid #b7b7b7;
    cursor: pointer;
}

.anydesk_popup .btn_box a.copy:hover {
	background:#b7b7b7;
	color:#fff;
}

/* .anydesk_popup .workstation.cpID {} */
/* right - banner */
.continer_inner > .menu_banner {
    width: 180px;
    position: fixed;
    top: 135px;
    margin-left: 1020px;
    font-size: 12px;
	letter-spacing:-1px;
    text-align: center;
   /*font-family: NanumGothicBold;*/
    color: #393536;
}
.continer_inner > .menu_banner .anydesk {
    background: url('/img/sub/img_Benner_ContactBG.png');
    padding-top: 20px;
}
.continer_inner > .menu_banner .anydesk img {
    width: 160px;
}
.continer_inner > .menu_banner .anydesk p {
    margin-bottom: 20px;
}
.continer_inner > .menu_banner .anydesk .ad_btn {
    background: #e01c27;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid #e01c27;
    transition: all 0.3s;
}
.continer_inner > .menu_banner .anydesk .ad_btn:hover {
    background: #fff;
    color: #e01c27;
}
.continer_inner > .menu_banner > img {
    margin-top: 10px;
}
.continer_inner > .menu_banner > .kakao_banner {
    margin-top: 10px;
    background: #fbee16;
    padding: 7px 0 5px 5px;
    text-align: left;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 0;
    transition: all 0.3s;
    display: none;
}
.continer_inner > .menu_banner > .kakao_banner:hover {
    box-shadow: inset 0 0 10px 0 #a39b12;
}
.continer_inner > .menu_banner > .kakao_banner span {
    background: #ed1c24;
    color: #fff;
    padding: 0 3px 1px;
}
.continer_inner > .menu_banner > .kakao_banner p {
    color: #432928;
    font-size: 20px;
   /*font-family: NanumGothicBold;*/
    padding-bottom: 1px;
    border-bottom: 1px solid #432928;
    display: inline-block;
    margin: 2px 0;
    letter-spacing: -2px;
}
.continer_inner > .menu_banner > .kakao_banner img {
    position: absolute;
    right: 5px;
    top: 5px;
}
.continer_inner > .menu_banner > .kakao_text {
    background: #432928;
    padding: 5px;
    width: 100%;
    margin-top: 5px;
    color: #fff;
    display: none;
}
/* content */
.contain {
    width: 100%;
}
.contain .purchase_contain::after {
    content: "";
    clear: both;
    display: block;
}
.contain .img_section {
    width: 60%;
    float: left;
    letter-spacing: -0.5px;
}
.contain .img_section > img {
    width: 100%;
    !height: 460px;
}
.contain .img_section .thumnail {
    width: 100%;
	border:1px solid #dedede;
}
.contain .img_section .thumnail > img {
    max-width: 100%;
	display:block;
	margin:0 auto;
}
.contain .img_section .thumnail .title {
    position: relative;
	padding-bottom:10px;
}
.contain .img_section .thumnail .title span {
    font-weight: Lighter;
}
.contain .img_section .thumnail .title img.icon {
    margin: 10px 5px 0 10px;
    height: 60px;
}
.contain .img_section .thumnail .title img {
    vertical-align: middle;
    margin-top: 10px;
}

.contain .img_section .thumnail .title .thumb {
    position: absolute;
    top: 5px;
    right: 20px;
}
.contain .img_section .thumnail .content {
    height: 320px;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    /* margin-top: 10px; */
    padding-top: 30px;
}
.contain .img_section .thumnail .content:after {
    content: "";
    clear: both;
    display: block;
}
.contain .img_section .thumnail .content .inner {
    width: 85%;
    margin: auto;
}
.contain .img_section .thumnail .content .inner::after {
    content: '';
    clear: both;
    display: block;
}
.contain .img_section .thumnail .content img {
    width: 200px;
    float: left;
}
.contain .img_section .thumnail .content .text_box {
    float: left;
    color: #f5f5f5;
	padding-left:15px;
    margin-top: 30px;
}
.contain .img_section .thumnail .content .text_box b {
    color: #fff;
}
.contain .img_section .thumnail .content .text_box p span {
    background: #fff;
    color: #252525;
   /*font-family: NanumGothicBold;*/
    padding: 0 3px 2px;
}
.contain .img_section table {
    width: 100%;
	margin: 10px 0;
}
.contain .img_section table th {
    width: 80px;
    padding-bottom: 3px;
    text-align: left;
 /*    padding-left: 10px; */
   font-size:16px;
   color:#373737;
    font-weight: 600;
}
.contain .img_section table td {
    color: #767676;
}
.contain .img_section .tel_info a {
	display:block;
    width: 100%;
    background: #f8f8f8;
    color: #767676;
	border:1px solid #dedede;
    border-radius: 10px;
    text-align: center;
    padding: 3px 0;
	font-size:12px;
}
.contain .img_section .tel_info img{
	vertical-align:-2px;
}
/* 프로그램 외 다른 페이지 이미지 */
.AllImage_box {
    width: 100%;
}
.AllImage_box img {
    width: 100%;
}
.contain .payment {
    width: 37%;
    float: right;
    /*/*font-family: NanumGothicBold;*/ */
	letter-spaicng:
}
.contain .payment .title {
    font-size: 24px;
    padding-bottom: 15px;
    color: #373737;
    letter-spacing: -1.5px;
	font-weight:600;
	line-height:1;
}
.contain .payment .title img {
    height: 25px;
}

.contain .payment .title.n_title img {
    width: 120px;
    margin-top: -7px;
}

/* 구매창 */
/* kmong 영역 */
.contain .kmong_price {
    text-align: center;
    margin-top: 65px;
}
.contain .kmong_price img {
    max-width: 350px;
    width: 90%;
    margin-bottom: 20px;
}
.contain .kmong_price p {
    font-size: 22px;
    line-height: 1.6em;
    color: #3c3c3c;
    border: 2px solid #3c3c3c;
    border-radius: 5px;
    padding: 9px;
}
.kmong_QNA .tel_info {
    display: none;
}
/* landingZone */
.optionZone {
    letter-spacing: -2px;
    font-family: NanumGothic;
}

.optionZone th {
	font-family: NanumGothicBold;
}

.Sfont,
.optionZone .Rule {
    letter-spacing: -0.5px;
}
.optionZone .btn_box a {
    width: 100%;
    height: 50px;
    line-height: 47px;
    border-radius: 5px;
    text-align: center;
    display: block;
    font-size: 20px;
   /*font-family: NanumGothicBold;*/
    cursor: pointer;
    transition: all 300ms;
}
.optionZone .btn_box a.pay_btn {
    border: 2px solid #df1d26;
    background-color: #df1d26;
    color: #fff;
}
.optionZone .btn_box a.pay_btn:hover {
    background-color: #fff;
    color: #df1d26;
}
.optionZone .btn_box a.kakao_btn {
    border: 2px solid #fae100;
    background-color: #fae100;
    color: #371d1e;
}
.optionZone .btn_box a.kakao_btn:hover {
    background-color: #fff;
}
.optionZone .btn_box a.kakao_btn img {
    vertical-align: middle;
    margin: -5px 5px 0 0;
}
.optionZone .Rule {
    border: 2px solid #c1c1c1;
    border-radius: 5px;
    padding: 10px;
    position: relative;
	margin-top: 10px;
}
.optionZone .Rule .Rtitle {
    font-size: 14px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #dfdfdf;
   /*font-family: NanumGothicBold;*/
}
.optionZone .Rule .Rtitle img {
    vertical-align: middle;
    margin: -4px 5px 0 0;
}
.optionZone .Rule .Rtitle span {
    color: #ed1c24;
}
.optionZone .Rule .Rcontent {
    line-height: 19px;
    font-size: 12px;
}
.optionZone .Rule .Rcontent a {
    color: #0072bc;
}
.optionZone .Rule_popup {
    position: absolute;
    right: 0;
    width: 90%;
    max-width: 500px;
    margin-top: 10px;
    display: none;
}
.optionZone .Rule_popup .Ptitle {
    padding: 15px;
    font-size: 20px;
   /*font-family: NanumGothicBold;*/
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
}
.optionZone .Rule_popup .Ptitle .close_btn {
    position: absolute;
    font-size: 25px;
    top: 5px;
    right: 10px;
    color: #fff;
    cursor: pointer;
}
.optionZone .Rule_popup .Pcontent {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
    line-height: 1.4em;
}
.optionZone .Rule_popup .Pcontent .kind {
    margin-bottom: 15px;
}
.optionZone .Rule_popup .Pcontent .kind:last-child {
    margin-bottom: 0;
}
.optionZone .Rule .Rcontent b,
.optionZone .Rule .Rule_popup .Pcontent h4 {
   /*font-family: NanumGothicBold;*/
}
.optionZone .Rule .Rcontent ins {
    color: #0060ef;
   /*font-family: NanumGothicBold;*/
    cursor: pointer;
}
.mainImage img {
    width: 100%;
}
.linkZone {
    overflow: hidden;
    margin-top: 20px;
}
.cp_phra {
    font-size: 18px;
   /*font-family: NanumGothicBold;*/
    text-align: center;
    letter-spacing: -1px;
    margin: 30px 0;
}
.questionZone {
    margin: 30px 0;
}
.questionZone .Qtitle {
    font-size: 28px;
    text-align: center;
   /*font-family: NanumGothicBold;*/
}
.questionZone .Qtitle span {
    background: #fff;
    padding: 0 5px;
    color: #4f4f4f;
}
.questionZone hr {
    border: 1px dashed #dfdfdf;
    vertical-align: top;
    margin: -15px 0 40px;
}
.questionZone .phra {
    font-size: 14px;
   /*font-family: NanumGothicBold;*/
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.5em;
    text-align: center;
}
.questionZone .phra span {
    font-size: 18px;
    margin-top: 5px;
    display: block !important;
}
.questionZone .formZone {
    border-top: 1px solid #828282;
    padding: 30px;
    background-color: #f8f8f8;
}
.questionZone .form_group > div {
    width: 49%;
}
.questionZone .formZone dl {
    overflow: hidden;
    margin-bottom: 15px;
}
.questionZone .flot-left {
    float: left;
}
.questionZone .flot-right {
    float: right;
}
.questionZone .formZone dt {
    float: left;
    font-size: 14px;
	letter-spacing:-1px;
    color: #4f4f4f;
   /*font-family: NanumGothicBold;*/
    width: 110px;
    text-align: right;
    height: 40px;
    line-height: 40px;
}
.questionZone .formZone dt b {
    color: #ed1c24;
}
.questionZone .formZone dd {
    float: right;
    position: relative;
}
.questionZone .formZone dd span {
    font-size: 12px;
    color: #666;
    letter-spacing: 0;
}
.questionZone .form_group dd {
    width: 320px;
}
.questionZone .form_group02 dd {
    width: 800px;
}
.questionZone .formZone dd input[type='text'],
.questionZone .formZone dd input[type='tel'],
.questionZone .formZone dd select {
    width: 100%;
    height: 40px;
    border: 1px solid #eee;
    padding: 10px;
    font-family: NanumGothic;
	background-color:#fff;
}
.questionZone .formZone dd input[type='file'] {
    height: 40px;
    padding: 10px 0;
    width: 180px;
}
.questionZone .formZone dd textarea {
    width: 100%;
    resize: none;
    height: 100px;
    padding: 10px;
    border: 1px solid #eee;
    font-family: NanumGothic;
}
.questionZone .formZone .btn_box {
    text-align: center;
    margin: 20px 0 10px;
}
.questionZone .formZone .btn_box a {
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 30px;
    cursor: pointer;
}
.contain .payment .info_box {
    display: block;
    !text-align: Center;
    margin-top: 15px;
}
.contain .payment .info_box:after {
    content: "";
    clear: both;
    display: block;
}
.contain .payment .info_box .info {
    !float: left;
    padding: 3px 10px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    letter-spacing: -0.05em;
    display: inline-block;
    margin: 0 5px;
	border-radius:15px;
}
.contain .payment .info_box .info:before{
	content:"#";
	display:inline-block;
}
.contain .payment .info_box .info:first-child {
    background: #be3333;
    !width: 13%;
    margin-left: 0;
}
.contain .payment .info_box .info:nth-child(2) {
    background: #f3ad33;
    !width: 19%;
}
.contain .payment .info_box .info:nth-child(3) {
    background: #3db39e;
    !width: 26%;
}
.contain .payment .info_box .info:last-child {
    background: #a1ba62;
    !width: 36%;
    margin-right: 0;
}
.contain .payment .info_box .info.new {
    background: #ec644b;
    margin-left: 0;
    width: 13%;
}
.contain .payment .info_box .info.famous {
    background: #3498db;
    width: 19%;
}
.contain .payment .info_box .info.cost {
    background: #3db39e;
    width: 26%;
}
.contain .payment .info_box .info.upgrade {
    background: #428bca;
    width: 36%;
}

.contain .payment .update_phrases {
	font-size:16px;
	color:#767676;
	/* text-align:center; */
	margin: 5px 0 15px;
	letter-spacing:-0.05em;
}

.contain .payment table {
    margin-bottom:5px;
    width: 100%;
    font-size: 16px;
    color: #767676;
}
.contain .payment .table-phra {
   /*  text-align: center; */
    margin-bottom: 15px;
   /*  font-family: Nanumgothic; */
    font-size: 13px;
    color: #767676;
    letter-spacing: -0.05em;
	overflow:hidden;
}
.contain .payment .table-phra > *{
	float:left;
}
.contain .payment .table-phra img{
	display:inline-block;
	width:20px;
}
.contain .payment .table-phra span{
	width:calc(100% - 20px);
	padding-left:5px;
}
.max-991 {
    display: none;
}
.contain .payment table tr .sell_price {
   /*  text-decoration: line-through;
    text-decoration-color: #ed1c24; */
}
.contain .payment table td,
.contain .payment table th {
	padding-bottom:5px;
}
.contain .payment table th {
    text-align: left;
    width: 150px;
	font-size:17px;
	color:#373737;
}
.contain .payment table th::before {
  /*   content: '';
    display: inline-block;
    background: #4a4a4a;
    width: 5px;
    height: 18px;
    vertical-align: middle;
    margin: -2px 8px 0 0; */
}
.contain .payment table td {
   /*  font-size: 20px; */
}
.contain .payment table td img {
    vertical-align: middle;
    height: 20px;
}
.contain .payment table td b {
    color: #ae0000;
    font-size: 22px;
   /*  margin-right: 10px; */
}
.contain .payment table td .days{
	font-size:18px;
	color:#373737;
	font-weight:600;
}

.contain .payment table td span.vat {
	font-size:12px;
	letter-spacing:-.5px;
}

.contain .payment table.free {
    margin: 105px 0;
}
.contain .payment .freephra {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
}
.contain .payment table td select{
	border:1px solid #dedede;
	height:30px;
	/* padding:0 15px; */
	padding: 0 5px;
	width:90%;
	font-size:14px;
	/* text-align:center; */
}
.contain .payment .btn_box:after {
    content: "";
    clear: both;
    display: block;
}
.contain .payment .btn_box a {
	display:block;
    color: #fff;
    text-align: center;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
	font-size:18px;
	height: 50px;
    line-height: 47px;
}
.contain .payment .btn_box .down_btn {
    width: 100%;
    background: #f18d22;
    border: 2px solid #f18d22;
}
.contain .payment .btn_box2 .down_btn {
	margin-top: 10px;
	font-size:24px
}
.contain .payment .btn_box .down_btn:hover {
    background: none;
    color: #f18d22;
}
.contain .payment .btn_box .payment_type {
    width: 49%;
    float: left;
    background: #555;
    margin-top: 10px;
    border: 2px solid #555;
   /*  font-size: 22px; */
   height:45px;
    line-height: 43px;
}
.contain .payment .btn_box .payment_type:hover {
    background: none;
    color: #333;
}
.contain .payment .btn_box .payment_type:last-child {
	float: right;
}

/* .contain .payment .btn_box .payment_type:last-child {
    float: right;
    background: #ae0000;
    border: 2px solid #ae0000;
}
.contain .payment .btn_box .payment_type:last-child:hover {
    background: none;
    color: #ae0000;
} */
/*상담신청하기 버튼*/
.contain .payment .btn_box:after {
    content: "";
    clear: both;
    display: block;
}
.contain .payment .btn_box > .pay_btn {
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    background: #ea2d2e;
}
.contain .payment .btn_box > .pay_btn:hover {
    color: #ea2d2e !important;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.contain .payment .btn_box .pay_btn:hover {
    background: none;
    color: #ea2d2e;
}
/*카카오상담*/
.contain .payment .btn_box .kakao_btn {
    margin-top: 10px;
    border: 2px solid #fae100;
    background-color: #fae100;
    color: #371d1e;
}
.contain .payment .btn_box .kakao_btn:hover {
    border: 2px solid #fae100;
    background: none;
    color: #371d1e;
}
.optionZone .btn_box a.kakao_btn img {
    width: 35px;
    padding-right: 5px;
    vertical-align: middle;
    margin-top: -5px;
}
.contain .payment .addtion {
    border: 1px solid #dedede;
/*     border-radius: 5px; */
    !padding: 21px 0;
    margin-top: 25px;
	background:#f8f8f8;
}
.contain .payment .addtion:after {
    content: "";
    clear: both;
    display: block;
}
.contain .payment .addtion .addition_type {
    /* width: 50%;
    float: left; */
    /* text-align: center; */
    font-size: 12px;
    transition: all 0.3s;
    margin: 10px 0;
	padding:0 15px;
	text-align: center;
}
.contain .payment .addtion .addition_type.add-first {
    cursor: pointer;
}
.contain .payment .addtion .addition_type a {
    transition: all 0.3s;
	text-align: center;
}
.contain .payment .addtion .addition_type a:hover {
    color: #777;
}
.contain .payment .addtion .addition_type p {
    font-size:16px;
	color:#767676;
	letter-spacing: -0.05em;
	font-weight:500;
}
.contain .payment .addtion .add-first:hover {
    color: #777;
}
.contain .payment .addtion .addition_type h5 {
    font-size: 18px;
	color:#373737;
	font-weight:600;
    margin-bottom: 8px;
    /* height: 32px; */
}
.contain .payment .addtion .addition_type h5 img {
    display:inline-block;
	vertical-align: middle;
    margin-top: -3px;
	margin-right:5px;
}
p.max929 {
    display: none;
}
.free-phra {
    text-align: center;
    font-size: 18px;
    margin: 35px 0 37px 0;
}

/* 프로그램 효과설명 */
.NeedsZone {
	background:#f8f8f8;
	border:1px solid #dedede;
	text-align:center;
	padding: 40px 10px;
	margin: 30px 0;
}

.NeedsZone .NZ_title {
	padding-bottom:25px;
}

.NeedsZone .NZ_title h1 {
	font-size:24px;
	display:inline-block;
	position:relative;
	color:#373737;
	font-weight:600;
}

.NeedsZone .NZ_title h1 > img.stars {
	width: 75px;
	height: 70px;
	position:absolute;
	left: -80px;
	top: -30px;
}

.NeedsZone .NZ_title h1 img.logo {
	vertical-align:middle;
	margin: -7px 5px 0 0;
	height: 35px;
}
.NeedsZone .NZ_title h1 .logo_line,
.NeedsZone .NZ_title h1 .txt_line{
	position:relative;
}
.NeedsZone .NZ_title h1 .logo_txt,
.NeedsZone .NZ_title h1 .txt_line span{
	position:relative;
	z-index:3;
}
.NeedsZone .NZ_title h1 .logo_line:after{
	content:"";
	display:none;
	background:url(/img/logo_line.png);
	width:100%;
	height:23px;
	position:absolute;
	bottom:-7px;
	z-index:2;
}
.NeedsZone .NZ_title h1 .txt_line:after{
	content:"";
	display:none;
	background:url(/img/line_star.png)no-repeat 0 0;
	width:120%;
	height:58px;
	position:absolute;
	z-index:2;
	left:-10px;
	top:-8px;
	background-size:contain;
}
.NeedsZone .NZ_line {
	margin-bottom: 20px;
	display:none;
}

.NeedsZone .NZ_line img {
	max-width:95%;
}

.NeedsZone .NZ_type_box {
	text-align:center;
}

.NeedsZone .NZ_type_box .inner {
	display:inline-block;
	text-align:left;
}

.NeedsZone .NZ_type_box p {
	font-size:16px;
	margin-bottom: 10px;
	display:inline-block;
	color:#767676;
}

.NeedsZone .NZ_type_box p:last-child {
	margin-bottom: 0;
}

.NeedsZone .NZ_type_box p b {
	color:#f18d22 !important;
}

.NeedsZone .NZ_type_box p img {
	vertical-align:middle;
	margin: -5px 3px 0 0;
}

.NeedsZone .NZ_type_box p.phrases {
	border-top:1px solid #888;
	padding-top: 20px;
	font-size:16px; 
	margin-top:20px; 
	display:block; 
	letter-spacing:-1px;
	line-height:180%
}

.NeedsZone .NZ_type_box p.phrases b {
	color:#ea2d2e
}





/* 제품설명서 */
.contain .goods_Explanation {
    margin-top: 40px;
    color: #111111;
}
.contain .goods_Explanation .tabs {
    width: 100%;
    margin-bottom: 20px;
	border:1px solid #dedede;
	overflow:hidden;
}
.contain .goods_Explanation .tabs:after {
    content: "";
    clear: both;
    display: block;
}
.contain .goods_Explanation .tabs li {
    float: left;
  /*   width: 25%; */
	width:33.33%;
    text-align: center;
    font-size: 18px;
	padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s;
   border-right:1px solid #dedede;
    background: #f8f8f8;
    color: #767676;
}
.contain .goods_Explanation .tabs li:last-child{
	border-right:0;
}
.contain .goods_Explanation .tabs.SMS li {
	width: 14%;
	height: 45px;
	line-height:42px;
	padding: 0;
}

.contain .goods_Explanation .tabs.SMS li.first {
	width: 16%;
}

.contain .goods_Explanation .tabs.SMS li img {
	width: 20px;
	vertical-align:middle;
	margin: -3px 3px 0 0;
}

.contain .goods_Explanation .tabs li.active {
}
.contain .utube_icon{
	padding-bottom:15px;
}
.contain .tab_content .ex_title {
    text-align: center;
    padding: 30px 0 20px;
}
.contain .tab_content .ex_title h4 {
    font-size: 22px;
    color: #373737;
	font-weight: 600;
}
.contain .tab_content .ex_title h4 img {
    vertical-align: middle;
    margin-top: -5px;
    width: 25px;
}
.contain .tab_content .ex_title p {
    color: #767676;
    margin-top: 10px;
    letter-spacing: 0px;
	font-size:16px;
}
.contain .tab_content .Explanation > img {
    width: 100%;
}
.proof {
    /* margin-top: 30px; */
    background: #f3f3f3;
}
.proof .title {
    background: #242424;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    line-height: 25px;
}
.proof .title b {
   /*font-family: NanumGothicBold;*/
    font-size: 19px;
}
.proof .content {
    padding: 15px;
	overflow:hidden;
}
.proof .text-box {
    float: left;
   /*  width: 65%; */
    /* line-height: 30px; */
    font-size: 14px;
	line-height: 24px;
    letter-spacing: -1px;
}
.proof .text-box b {
	font-size:15px;
   /*font-family: NanumGothicBold;*/
}


.proof .produce {
    /* font-size: 18px; */
	font-size:16px;
    margin-bottom: 10px;
}

.proof .produce:nth-of-type(2) {
	margin-bottom: 20px;
}

.proof .produce label {
    min-width: 200px;
    display: inline-block;
}
.proof .produce .name {
    color: #0094a6;
   /*font-family: NanumGothicBold;*/
}
.proof .emphasis {
    color: #ed1c24;
   /*font-family: NanumGothicBold;*/
}
.proof .img-box {
    float: right;
    /* width: 30%; */
}
.proof .img-box img {
    width: 250px;
}
/* 1번탭 */
.contain .Explanation .Img_Section {
    width: 100%;
    background: url('/img/sub/DBmaker/img_mainImg_BG.png');
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
	overflow:hidden;
}
.contain .Explanation .Img_Section {
    height: 490px;
    overflow: hidden;
}
.contain .Explanation .Img_Section > img {
    width: 100%;
}
.contain .Explanation .Img_Section .product {
    width: 100%;
    padding:0 30px;
}
.contain .Explanation_insta .Img_Section .product {
    width: 100%;
    padding:30px 30px 0 30px;
}
.contain .tab_content .Explanation .NimgS .product {
    width: 90%;
    margin-left: 10%;
    margin-right: 0;
}

.contain .Explanation .Img_Section .product>div {
	 float: left;
    width: 50%
}
.contain .Explanation .Img_Section .product:after {
    content: "";
    clear: both;
    display: block;
}
.contain .Explanation .Img_Section .product img {
    float: left;
    width: 440px;
}
.contain .Explanation .Img_Section .product .text_box {
    float: left;
    font-size: 25px;
    color: #fff;
   margin-top:30px
}

.contain .Explanation .Img_Section .product .text_box p span {
    background: #fff;
    color: #252525;
   /*font-family: NanumGothicBold;*/
    padding: 0 3px;
}
/* == */
.contain .Explanation .goods img {
    width: 100%;
}
.contain .Explanation .goods .goods_title {
    font-size: 25px;
    margin-bottom: 10px;
}
.contain .Explanation .goods .goods_title a {
    font-size: 14px;
    border: 1px solid #999;
    !background: #999;
    padding: 3px 10px;
    float: right;
    margin-top: 5px;
    color: #999;
    transition: all 0.3s;
}
.contain .Explanation .goods .goods_title a:hover {
    background: #999;
    color: #fff;
}
.contain .Explanation .goods .goods_title::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 25px;
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 7px;
}
.contain .Explanation .goods .goods_title span {
   /*font-family: NanumGothicBold;*/
}
.contain .Explanation .goods .goods_title span b {
    font-family: NanumExtraBold;
}
.contain .Explanation .goods > p {
    margin-top: 7px;
    font-size: 14px;
    letter-spacing: -1px;
}
/* .contain .Explanation .goods > p span {
   /*font-family: NanumGothicBold;*/
} */
.contain .Explanation .goods > p::before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    margin: 0 5px 4px 10px;
}
/* 2번탭 */
.contain .tab_content .ex_text {
    width: 90%;
    margin: 50px auto auto;
    height: 400px;
    overflow: hidden;
}
.contain .tab_content .Explanation_insta .ex_text {
    width: 90%;
    margin: 50px auto auto;
    height: 550px;
    overflow: hidden;
}
.contain .tab_content .ex_text:after {
    content: "";
    clear: both;
    display: block;
}
.contain .tab_content .ex_text img {
  /*   width: 500px; */
	max-width:100%;
    float: left;
}
.contain .tab_content .ex_text>div {
	float:left;
	width:50%
}

.contain .tab_content .ex_text img {
    width: 500px;
    float: left;
}
.contain .tab_content .Explanation_insta .ex_text img {
    width: 450px;
    float: left;
    margin-left: 0;
    margin-top:20px;
}
.contain .tab_content .ex_text .text_box {
    float: right;
	padding-left:30px;
    font-size: 25px;
	line-height:35px;
    letter-spacing: -3px;
}
.contain .tab_content .Explanation_insta .ex_text .text_box {
    float: left;
    padding-left: 30px;
    padding-right: 0;
    font-size: 30px;
	line-height:40px;
    margin-top: 70px;
   /*  letter-spacing: -3px; */
}
.contain .tab_content .ex_text .text_box span {
  /*  /*font-family: NanumGothicBold;*/ */
}
/* == */

.contain .tab_content .step .title:first-child {
	margin-top: 0;
}
.contain #tab4{
	border-top:1px solid #dedede;
}
.contain .tab_content .step .title {
    font-size: 18px;
    color: #373737;
    margin: 30px 0 15px;
	letter-spacing:-0.05em;
}
.contain .tab_content .step .title b {
    font-size: 40px;
    margin-right: 5px;
	position:relative;
	display:block;
}
.contain .tab_content .step .title b::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
	border-radius:50%;
    vertical-align:middle;
	margin: -7px 10px 0 0;
}
.contain .tab_content .step .title b::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
	border-radius:50%;
    /* vertical-align:middle; */
	/* margin: -1px 10px 0 0; */
	position:absolute;
	transform:translateY(0);
	left:2px;
	top:50%;
	z-index:1;
	background:#fff;
}
.contain .tab_content .step > img {
    width: 100%;
}
/* 3번탭 */
/* .contain .tab_content .video .title { margin: 10px 0!important;} */
#tab1 .video .iframewrap{
	margin-top:15px;
	position:relative;
	padding-bottom:55%;
}
#tab1 .video .iframewrap iframe {
   /*  margin-top: 10px; */
  /*   height: 650px; */
    border: none !important;
	position:absolute;
	width:100% !important;
	height:100% !important;
}

.paymentcontent iframe {
    height: 100%!important; 
}


.contain .tab_content .video .title b {
    font-size: 20px;
	letter-spacing:-1px;
}
.contain .tab_content .video .title b::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
	border-radius:50%;
	margin: -3px 10px 0 0;
    vertical-align: middle;
}
.contain .tab_content .preparing {
    width: 100%;
    text-align: center;
}
.contain .tab_content .preparing h4 {
    font-size: 30px;
    margin-bottom: 10px;
}
.contain .tab_content .preparing p {
    font-size: 18px;
    color: #999;
   /*font-family: NanumGothicBold;*/
}
/* 4번탭 */
.QNA {
    width: 80%;
    margin: auto auto 5px;
}
.QNA_inner {
    width: 100%;
    padding-bottom: 40px;
    padding-top: 40px;
    background: #a0c0d7;
    font-size: 14px;
    letter-spacing: -1px;
}
.QNA_inner span.phra {
    display: none;
}
.QNA_title img {
    width: 100%;
    margin-bottom: 40px;
}
/* .QNA .QNA_inner img {margin-bottom: 30px;} */
.QNA .QNA_inner .A_section,
.QNA .QNA_inner .Q_section {
    margin-bottom: 20px;
	overflow:hidden;
}
.QNA .QNA_inner .Q_section > div{
	float:left;
}
.QNA .QNA_inner .Q_section > div:first-child{
	width:71px;
}
.QNA .QNA_inner .A_section > div{
	float:right;
}
.QNA .QNA_inner .A_section .a_simbol_tit{
	font-size:22px;
	font-weight:600;
	color:#373737;
	padding-right:12px;
}
.QNA .QNA_inner .A_section .a_simbol{
	width:71px;
	height:71px;
	border-radius:50%;
	text-align:center;
	background:#fff;
	line-height:77px;
}
.QNA .QNA_inner .A_section .a_simbol_txt{
	width:calc(100% - 71px);
}
.QNA .QNA_inner .A_section .a_simbol img{
	display:inline-block;
	width:40px;
	height:40px;
	vertical-align:middle;
}
.QNA .QNA_inner .A_section .A_text a {
	text-decoration: underline;
    color: #4b70fd;
}
.QNA .QNA_inner .A_section .A_text,
.QNA .QNA_inner .Q_section .Q_text {
    padding: 10px;
    display: inline-block;
/*     font-family: malgun; */
    border-radius: 15px;
    position: relative;
	margin-bottom:10px;
	/* line-height:24px; */
}
.QNA .QNA_inner .Q_section .Q_text {
    background: #fff;
	 margin-left: 15px;
    box-shadow: 5px 8px 0px 0px rgb(0 0 0 / 20%);
	margin-top:35px;
}
.QNA .QNA_inner .Q_section .Q_text img {
    position: absolute;
    top: 10px;
    left: -10px;
}

.QNA .QNA_inner .A_section > img {
	width: auto !important;
	height: 25px;
}

.QNA .QNA_inner .A_section .A_text {
    background: #ffec42;
    text-align: left;
	margin-right: 15px;
	box-shadow: 5px 8px 0px 0px rgb(0 0 0 / 20%);
}
.QNA .QNA_inner .A_section .A_text img {
    position: absolute;
    top: 10px;
    right: -10px;
}
.QNA .QNA_inner .A_section .A_text span {
	color:red !important;
}

.QNA .QNA_inner .Q_section {
    padding-left: 20px;
}
.QNA .QNA_inner .A_section {
    text-align: right;
    padding-right: 20px;
}
.QNA .QNA_inner .A_section img,
.QNA .QNA_inner .Q_section img {
    margin-bottom: 10px;
}
/* RIVIEW 후기 ===================================================================================
================================================================================================*/
.contain .review_section {
    margin-top: 40px;
    letter-spacing: -1px;
}

.contain .review_section .phra {
    font-size: 16px;
   /*font-family: NanumGothicBold;*/
   color:#767676;
    margin: 5px 0 30px;
    letter-spacing: -1px;
	text-align:center;
}
.contain .cs_center .title {
    text-align: center;
   /*font-family: NanumGothicBold;*/
	letter-spacing:-1px;
	border-top:1px solid #dedede;
	padding-top:40px;
}
.contain .cs_center .title span {
	color:#373737;
    font-size: 22px;
    padding: 0 5px;
	font-weight:600;
}
.contain .cs_center hr {
    border: 1px dashed #dfdfdf;
    vertical-align: top;
    margin: -18px 0 40px;
}
.contain .review_section table {
    width: 100%;
    font-size: 12px !important;
	letter-spacing:-1px !important;
    border-collapse: collapse;
    color: #4f4f4f;
}

.contain .review_section table p,
.contain .review_section table span {
	font-size: 12px !important;
}

.contain .review_section table tr.review_content th,
.contain .review_section table tr.review_content td {
	background-color:#fbfbfb;
	
}

.contain .review_section table tr th {
    background: #f8f8f8;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 8px 0;
	/* font-family: NanumGothicBold; */
	letter-spacing:-.5px !important;
	font-size:13px;
}
.contain .review_section table tr td {
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #e7e7e7;
}
.contain .review_section table tr:nth-last-child(2) td {
    border-bottom: 1px solid #606060;
}
.contain .review_section table tr:nth-last-child(2) td.active {
    border-bottom: 1px solid #e7e7e7;
}
.contain .review_section table tr:last-child td {
    border-bottom: 1px solid #606060;
}
.contain .review_section table tr td span.hit {
    background: #419cff;
    color: #fff;
    padding: 0 5px;
    margin-left: 5px;
    letter-spacing: 0.5px;
}
.contain .review_section table tr td.Lookup,
.contain .review_section table tr td.number {
    width: 8%;
}
.contain .review_section table tr td.name {
    width: 60%;
    text-align: left;
}
.contain .review_section table tr td.writer {
    width: 10%;
}
.contain .review_section table tr.review_title td.name {
    cursor: pointer;
}
.contain .review_section table tr.review_title td.name:hover {
    color: #000;
}
/* .contain .review_section table tr td:last-child {width: 100px;} */
.contain .review_section table tr td:last-child img {
    height: 15px;
}
.contain .review_section table tr.review_content td:last-child {
    line-height:18px;
}
.contain .review_section table tr td .modified {
    background: #e58553;
    color: #fff;
    width: 100px;
    margin: auto;
    padding: 5px 0;
    cursor: pointer;
    border: 2px solid #e58553;
    transition: all 0.3s;
}
.contain .review_section table tr td .modified:hover {
    background: none;
    color: #e58553;
}
.contain .review_section .indicator {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 40px 0 55px;
    color: #4f4f4f;
   /*font-family: NanumGothicBold;*/
}
.contain .review_section .indicator .page{
	position:static;
	transform:translateX(0);
}
.contain .review_section .indicator span {
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s;
	padding:3px 8px;
	color:#767676;
	font-size:13px;
}
.contain .review_section .indicator span:hover {
    color: #fa0000;
}
.contain .review_section .indicator span.active {
    color: #373737;
	background:#f8f8f8;
	border:1px solid #dedede;
	border-radius:3px;
}
.contain .review_section .indicator span.arrow {
   /*  border: 1px solid #d9d9d9; */
/*     margin: 0; */
    transition: all 0.3s;
}
.contain .review_section .indicator span.arrow:hover {
    opacity: 0.7;
}
.contain .review_section .indicator span.arrow img {
    vertical-align: middle;
    margin-top: -3px;
}
.contain .review_section .indicator .review_w_btn {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    background: #5d8ae9;
    transition: all 0.3s;
    color: #fff;
    padding: 7px;
    font-size: 13px;
    width: 100px;
    border: 2px solid #5d8ae9;
}
.contain .review_section .indicator .review_w_btn:hover {
    background: none;
    color: #5d8ae9;
}
/* Related item ================================================================================================= */
.contain .r_inner,
.contain .r_inner .title,
.contain .r_inner > img {
    width: 100%;
}
.contain .r_inner {
    margin-bottom: 40px
}
.contain .r_inner .goods_list {
    margin-top: 20px;
}
.contain .r_inner .goods_list:after {
    content: "";
    clear: both;
    display: block;
}
.contain .r_inner .goods_list .goods_box {
    float: left;
    width: 25%;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.contain .r_inner .goods_list .goods_box > a {
	display:block;
}

/* .contain .r_inner .goods_list .goods_box.goods_box_vmachine img {
    margin: 42px 0;
} */
.contain .r_inner .goods_list .goods_box img {
    width: 60%;
}
.contain .r_inner .goods_list .goods_box:hover {
    opacity: 0.7;
}
.contain .r_inner .goods_list .line {
    width: 0.1%;
    height: 150px;
    margin-top: 60px;
    float: left;
    background: #dfdfdf;
}
.contain .r_inner .goods_box .text_box {
    text-align: left;
    font-size: 13px;
    margin-left: 20px;
    margin-top: 10px;
    color: #4f4f4f;
   /*font-family: NanumGothicBold;*/
}
.contain .r_inner .goods_box .text_box p {
    display: inline-block;
}
.contain .r_inner .goods_box .text_box span {
    font-size: 15px;
    display: inline-block;
    letter-spacing: -1px;
}
/* .contain .r_inner .goods_box .text_box::before {
    width: 5px;
    height: 30px;
    content: "";
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
    margin-right: 5px;
} */
.contain .r_inner .goods_box .text_box.DBPro::before {
    background: #91ca00;
}
.contain .r_inner .goods_box .text_box.DBRoyal::before {
    background: #f5a804;
}
.contain .r_inner .goods_box .text_box.nsearcher::before {
    background: #956bff;
}
.contain .r_inner .goods_box .text_box.ce::before {
    background: #41ae2e;
}
.contain .r_inner .goods_box .text_box.NRanker::before {
    background: #00c3cd;
}
.contain .r_inner .goods_box .text_box.DBcorp::before {
    background: #16b0f3;
}
.contain .r_inner .goods_box .text_box.instalike::before {
    background: #0094a6;
}
.contain .r_inner .goods_box .text_box.facebooklike::before {
    background: #3f579e;
}
.contain .r_inner .goods_box .text_box.vmachine::before {
    background: #e13643;
}
.contain .r_inner .goods_box .text_box.monsterip::before {
    background: #bd3a6e;
}
.contain .r_inner .goods_box .text_box.filemonster::before {
    background: #f25e3e;
}
.contain .r_inner .goods_box .text_box.KWMonster::before {
    background: #956bff;
}
.contain .r_inner .goods_box .text_box.oneclick_tethering::before {
    background: #0094a6;
}
.contain .r_inner .goods_box .text_box.rankingmanager::before {
    background: #e25030;
}
.contain .r_inner .goods_box .text_box.AutoTethering::before {
    background: #0094a6;
}
.contain .r_inner .goods_box .text_box.ncafemaster::before {
    background: #159f56;
}
.contain .r_inner .goods_box .text_box.kakaoaf::before {
    background: #ffec42;
}
.contain .r_inner .goods_box .text_box.kakaosender::before {
    background: #ffec42;
}
.contain .r_inner .goods_box .text_box.kakaomarketer_marketingmonster::before {
    background: #ffec42;
}
.contain .r_inner .goods_box .text_box.DSearcher::before {
    background: #f25e3e;
}
.contain .r_inner .goods_box .text_box.SearcherPro::before {
    background: #0a7a88;
}
.contain .r_inner .goods_box .text_box.Nplace::before {
    background: #252f3d;
}
.contain .r_inner .goods_box .text_box.landingpage::before {
    background: #4ca8ff;
}
.contain .r_inner .goods_box .text_box.orderProgram::before {
    background: #252f3d;
}
.contain .r_inner .goods_box .text_box.helloWeb::before {
    background: #77bdb2;
}
.contain .r_inner .goods_box .text_box.appDownload::before {
    background: #f25e3e;
}
.contain .r_inner .goods_box .text_box.apporder::before {
    background: #f2503b;
}
.contain .r_inner .goods_box .text_box.contentApp::before {
    background: #58cb6b;
}
.contain .r_inner .goods_box .text_box.normalchat::before {
    background: #f9aa33;
}
.contain .r_inner .goods_box .text_box.randomchat::before {
    background: #4ecd00;
}
.contain .r_inner .goods_box .text_box.videochat::before {
    background: #f26858;
}
.contain .r_inner .goods_box .text_box.instaRelease::before {
    background: #0094a6;
}
.contain .r_inner .goods_box .text_box.blogAds::before {
    background: #f26d7d;
}
.contain .r_inner .goods_box .text_box.ncafepost::before {
    background: #4aa896;
}
.contain .r_inner .goods_box .text_box.ncafecommenter::before {
    background: #c8263a;
}
.contain .r_inner .goods_box .text_box.Alrigo::before {
    background: #f54045;
}
.contain .r_inner .goods_box .text_box.smscert::before {
    background: #05bcc5;
}




/* 리뷰창 ======================================================= */
.Review_popup {
    width: 450px;
    background: #fff;
    color: #111;
    display: none;
}
.Review_popup input,
.Review_popup select {
    font-family: NanumGothic;
    height: 25px;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
    margin-top: -2px;
}
.Review_popup select {
    color: #f5a804;
    font-size: 16px;
    padding: 0 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}
.Review_popup label {
    padding-right: 10px;
}
.Review_popup .title {
    position: relative;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: #252525;
}
.Review_popup .title .b-close {
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 25px;
}
.Review_popup .content {
    padding: 10px;
}
.Review_popup .content .form01 {
    float: left;
    width: 63%;
}
.Review_popup .content .form01 input {
    width: 100%;
}
.Review_popup .content .form02 {
    float: right;
    width: 35%;
}
.Review_popup .content .form02 label {
    float: right;
}
.Review_popup .content .form02 select {
    float: right;
}
.Review_popup .content textarea {
    width: 100%;
    height: 250px;
    resize: none;
    padding: 5px;
    font-family: NanumGothic;
    border: 1px solid #e0e0e0;
    margin-top: 10px;
}
.Review_popup .btn_box {
    width: 60%;
    margin: 10px auto;
}
.Review_popup .btn {
    width: 49%;
    background: #252525;
    text-align: center;
    color: #fff;
    padding: 5px 0;
    cursor: pointer;
}
.Review_popup .btn:hover {
    background: #444;
}
.Review_popup .btn.cancle {
    float: left;
}
.Review_popup .btn.submit {
    float: right;
}
.max_676 {
    display: none;
}
/* 네이버 블로그 예시=====================*/


.navertop {
	width:100%;
	height:40px;
	line-height:40px;
	border-bottom:1px solid #ccc;
	background:white;
	letter-spacing:-0.5px
}
.navertop:after {content: "";display: block;clear: both}
.navertop>div {
	float:left;
}
.navertop>div i {
	font-size:20px
}
.navertop .top01 {
	width:115px;
	padding:0 7px
}
.navertop .top01 i {
	padding:0 5px
}

.navertop .top01 .xi-arrow-right {
	color:#ccc
}
.navertop .top01 .xi-refresh {
	font-size:18px
}
.navertop .top02 {
	border-radius:15px;
	background:#fafafa;
	width:calc(100% - 190px);
	height:30px;
	margin:5px 0;
	padding:0 15px;
	font-size:12px;
}
.navertop .top02:after {content: "";display: block;clear: both}
.navertop .top02 .fa {
	float:left;
	line-height:30px;
	font-size:16px;
	padding-right:10px
}
.navertop .top02 div {
	float:left;
	line-height:30px;
	font-weight:lighter
}
.navertop .top02 .xi-star-o {
	float:right;
	line-height:30px;
	font-size:16px;
}
.navertop .top03 {
	padding:0 0 0 15px 
}
 .navertop .top03 .xi-profile {
	font-size: 24px;
	line-height:40px
 }




#naverblog {
	text-align:center;
	font-family: 'no300';
	max-width:1080px;
	margin:0 auto 150px
}


#naverblog header {
	padding:40px;
	border-bottom:1px solid #eee
}
#naverblog header p {
	font-size:16px;
	color:#ccc;
	font-weight:300
}
#naverblog header h1 {
	padding:20px 0 40px;
	font-size:24px;
	color:#333
}
#naverblog .title:after {content: "";display: block;clear: both}
#naverblog .title_left {
	float:left;
	color:#999;
}
#naverblog .title_right {
	float:right
}

#naverblog .title>div:after {content: "";display: block;clear: both}
#naverblog .title>div>div {
	float:left;
	display:inline-block;
	vertical-align:middle;
	margin-right:5px;
}
#naverblog .title_img {
	width:22px;
	display:inline-block;
	vertical-align:middle;
}
#naverblog .title_img img {
	width:100%;
}

#naverblog .title_light {
	color:#ccc;
	font-family: 'no200';
}
#naverblog .title_btn {
	border:1px solid #999;
	padding:2px 5px;
	font-size:12px;
	color:#999;
	margin:0 5px;
}

#naverblog .xi-ellipsis-v {
	line-height:22px;
	color:#999
}

#naverblog .content {
	padding:30px 0
}
#naverblog .content .content_img01 {
	margin-bottom:40px
}
#naverblog .content_sub01 {
	line-height:30px;
	color:#444;
	padding-bottom:100px
}
#naverblog .line {
	text-decoration:underline
}
#naverblog .red {
	color: #e55d5d;
	background: #ffe8e8;
	font-weight:600
}
#naverblog .bold {
	font-weight:bold
}


#naverblog .content_sub02 .red {
	font-size:16px;
	font-weight:600;
	margin:0 auto 40px;
	width:190px

}
#naverblog .content_sub02 a {
	display:block;
	line-height:30px
}
#naverblog .xi-caret-up {
	font-size: 12pt;
	color: #009e25;
}
#naverblog .xi-caret-down {
	font-size: 12pt;
	color: #009e25;
}

#naverblog .content_sub03 {
	padding: 40px 0 150px;
	font-size:16px;
	line-height:30px;
	color:#333;
	letter-spacing:1px
}
#naverblog .content_sub03 .redred {
	color: #d52d2d;
}

#naverblog .content_sub04 {
	font-size:16px;
	line-height:50px;
	color:#333;
	font-weight:lighter
}

#naverblog .content_img02 {
	padding:30px 0
}
#naverblog .content_sub05 {
	font-size:16px;
	line-height:50px;
	color:#333;
	font-weight:lighter
}



#naverblog .tag a {
	color: #387cbb;
    text-decoration: none;
	padding:0 5px;
	font-size:16px
}

#naverblog .map {
	margin-bottom:30px
}


#naverblog .bottom {
	display:none
}






/* 미디어쿼리 ==================================================================== */
@media (max-width:1409px) {
    .continer_inner > .side_nav {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        margin-left: 0;
    }
    .continer_inner > .side_nav ul:after,
    .continer_inner > .side_nav:after {
        content: "";
        clear: both;
        display: block;
    }
    .continer_inner > .side_nav .title {
        padding: 8px 15px;
    }
    .continer_inner > .side_nav .title:after {
        content: "";
        display: inline-block;
        width: 2px;
        background: #fff;
        height: 16px;
        margin: -5px -10px 0 20px;
        vertical-align: middle;
    }
    .continer_inner > .side_nav .title,
    .continer_inner > .side_nav ul,
    .continer_inner > .side_nav ul li {
        float: left;
        border-bottom: 0;
    }
    .continer_inner > .menu_banner {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        margin-left: 0;
		display:none
    }
    .continer_inner > .menu_banner .anydesk {
        background: none;
        padding-top: 0;
        float: left;
    }
    .continer_inner > .menu_banner .anydesk:after,
    .continer_inner > .menu_banner:after {
        content: "";
        clear: both;
        display: block;
    }
    .continer_inner > .menu_banner .anydesk img {
        width: 200px;
        float: left;
    }
    .continer_inner > .menu_banner .anydesk p {
        float: left;
        margin: 0 20px;
        font-size: 16px;
        text-align: left;
    }
    .continer_inner > .menu_banner .anydesk .ad_btn {
        float: left;
        padding: 10px;
    }
    .continer_inner > .menu_banner > .kakao_banner {
        float: right;
        margin-top: -5px;
        display: inline;
        width: 165px;
    }
    .continer_inner > .menu_banner > .kakao_banner img {
        width: 45px;
    }
    .continer_inner > .menu_banner > .kakao_banner span {
        font-size: 12px;
    }
    .continer_inner > .menu_banner > .kakao_banner p {
        font-size: 18px;
    }
    .continer_inner > .menu_banner > .kakao_text {
        display: none;
    }
}
@media (max-width:1023px) {
    .continer_inner {
        max-width: 910px;
    }

	.contain .img_section .thumnail .content .inner {
		width: 92%;
	}

	.contain .payment {
		width: 38%;
	}

    .contain .tab_content .ex_text {
        width: 90%;
    }
    .contain .r_inner .goods_box .text_box {
        margin: 10px 0 0 5px;
    }
    

    .proof .title {
        text-align: Center;
    }
    .proof .content {
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
    }
    .proof .img-box,
    .proof .text-box {
        float: none;
        width: 100%;
    }
    .proof .img-box {
        text-align: center;
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        box-ordinal-group: 1;
        margin-bottom: 30px;
    }
    .proof .text-box {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        box-ordinal-group: 2;
        text-align: Center;
    }
    /* .proof .text-box p {display:inline-block; margin: auto;} */
    .proof .img-box img {
        /* width: 25; */
    }
    .optionZone .btn_box a {
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    /* .optionZone .btn_box a.kakao_btn img {
		height: 25px;
	} */
    .optionZone .Rule .Rcontent br {
        display: none;
    }
    .questionZone .formZone {
        padding: 15px;
    }
    .questionZone .form_group dd {
        width: 290px;
    }
    .questionZone .form_group02 dd {
        width: 740px;
    }
    .contain .payment table td span.days {
        display: none;
    }
    iframe {
       /*  height: 550px; */
    }
}
@media (max-width:991px) {
    .continer_inner {
		width:100%;
		padding:50px 15px;
    }
   /*  .backtop .kakao {
        display: block;
    } */
    .contain .Explanation .Img_Section .product {
        width: 85%;
    }
    .contain .tab_content .Explanation .NimgS .product {
        width: 95%;
        margin-left: 5%;
    }
	
	 .continer_inner > .menu_banner {
		display:none;
	 }
   /*  .continer_inner > .menu_banner > .kakao_banner {
        display: none;
    }
    .continer_inner > .menu_banner .anydesk {
        display: none;
    }
    .contain .payment .title span {
        display: none;
    } */

	.contain .goods_Explanation .tabs.SMS li.top {
		width: 24%;
	}

	.contain .goods_Explanation .tabs.SMS li.first {
		width: 28%;
	}

	.contain .goods_Explanation .tabs.SMS li.bottom {
		width: 33.3333%;
	}

    .contain .payment .title .goods_title,
    .contain .payment .title .goods_title .g_t {
        display: inline-block;
    }
    .contain .r_inner .goods_list .goods_box {
        width: 50%;
    }
	
	.contain .r_inner .goods_list .goods_box{
		margin-bottom: 10px;
	 }
	 .contain .r_inner .goods_list .goods_box:last-child{
		margin-bottom:0;
	 }

    .contain .r_inner .goods_list .line:nth-child(4) {
        display: none;
    }
    .contain .r_inner .goods_box .text_box {
        font-size: 16px;
        display: inline-block;
        padding-right: 30px;
        margin: auto;
    }
    .contain .r_inner .goods_box .text_box span {
        font-size: 18px;
    }
    .contain .payment .addtion .addition_type:first-child {
       /*  display: none; */
    }
    .contain .payment .addtion .addition_type {
        width: 100%;
        text-align: center;
        float: none;
    }
    /* thumnail */
    .contain .img_section .thumnail .title {
        height: 70px;
    }
    .contain .img_section .thumnail .title .thumb {
        width: 70px;
        top: 15px;
    }
    .contain .img_section .thumnail .content .inner {
        width: 90%;
    }
    .contain .payment .info_box .info {
        font-size: 13px;
    }
    .max-991 {
        display: block;
    }
    .contain .payment .table-phra {
        margin-bottom: 12px;
    }
   /*  .contain .r_inner .goods_list .goods_box.goods_box_vmachine img {
        margin: 60px auto;
        height: 150px;
    } */

	.contain .r_inner {
		margin-bottom: 20px;
	}

    .contain .r_inner .goods_list .goods_box img {
        width: auto;
        max-width: 100%;
        height: 250px;
        margin: auto auto 20px;
        display: block;
    }

}
@media (max-width:991px) {
	.navertop {
		display:none
	} 
	#naverblog {
		padding:0 10px
	}

	/* 프로그램 효과설명 */
	.NeedsZone {
		padding: 20px 10px;
	}

	.NeedsZone .NZ_title h1 {
		font-size:18px;
	}

	.NeedsZone .NZ_title h1 > img.stars {
		width: 45px;
		height: 40px;
		left: -30px;
		top: -20px;
	}

	.NeedsZone .NZ_title h1 > img.logo {
		height: 30px;
	}

	.NeedsZone .NZ_line {
		margin-bottom: 0;
	}

	.NeedsZone .NZ_type_box p {
		font-size:15px;
		letter-spacing:-1px;
	}

	.NeedsZone .NZ_type_box p img {
		height: 20px;
	}

	.proof .img-box {
		margin-bottom: 15px;
	}

	.proof .img-box img {
		width: 200px;
	}

	.proof .title {
		font-size:16px;
	}

	.proof .title b {
		font-size:17px;
	}

	.proof .produce {
		font-size:14px;
		margin-bottom: 5px;
	}

	.proof .produce:nth-of-type(2) {
		margin-bottom: 10px;
	}

	.proof .text-box {
		font-size:12px;
		line-height:19px;
	}

	.proof .text-box b {
		font-size:13px;
	}

/*     .continer_inner {
        max-width: 730px;
    } */
    .contain .img_section table th {
        padding-left: 5px;
        width: 17%;
    }
    .contain .img_section > img {
        height: 400px;
    }
    
    .contain .payment .info_box .info {
        font-size: 12px;
    }
    .contain .payment table {
        margin: 10px 0;
    }
  /*   .contain .payment table td,
    .contain .payment table th {
        padding: 10px 0;
    } */
   .contain .payment .btn_box a {
        font-size: 20px;
        height: 40px;
        padding: 0 5px;
        line-height: 38px;
    }
    .contain .payment table.free {
        margin: 80px 0;
    }


	 .min_676 {
        display: none;
    }
    .max_676 {
        display: inline-block;
        padding-left: 10px;
    }

	.contain .tab_content .f_type .content br.br676 {
		display:none;
	}

    /* thumnail */
    .contain .img_section .thumnail .content {
        height: 320px;
    }
    .contain .img_section .thumnail .content .inner {
        max-width: 420px;
    }
    .contain .img_section .thumnail .content img {
        width: 160px;
    }
    .contain .img_section .thumnail .title img.icon {
        height: 50px;
    }
   
   
    .contain .Explanation .Img_Section .product .text_box {
        font-size: 21px;
		margin: 30px 0 0 0px;
    }
    .contain .payment .addtion .addition_type {
        margin: 24px 0;
    }
    .contain .payment .addtion .addition_type h5 {
        font-size: 18px;
    }
    p.max929 {
        display: block;
    }
    p.min929 {
        display: none;
    }
    .contain .Explanation .goods .goods_title::before {
        width: 5px;
        margin-right: 3px;
    }
    .contain .Explanation .goods .goods_title a {
        margin-top: 0;
        padding: 3px 8px;
    }
    /* 사용설명서 */
    .contain .tab_content .ex_text {
        max-width: 640px;
        /* height: auto; */
		height: 250px;
    }
	
    .contain .tab_content .ex_text img {
        width: 300px;
    }
    .contain .tab_content .ex_text .text_box {
		padding-left:0;
        font-size: 18px;
		letter-spacing:-1px;
		line-height:27px;
    }
    .contain .Explanation .goods .goods_title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .contain .Explanation .goods > p {
        font-size: 14px;
    }
    .contain .tab_content .ex_text .text_box img {
        height: 30px;
    }
    .contain .kmong_price {
        margin-top: 48px;
    }
    .contain .img_section,
    .contain .payment {
        width: 100%;
        margin-bottom: 20px;
        float: none;
    }
    
    .contain .img_section .thumnail .content .inner {
        max-width: 600px;
    }
    .contain .img_section .thumnail .content img {
        width: 200px;
    }

    
    .contain .payment .addtion .addition_type {
        margin: 20px 0;
    }
    .contain .payment table td span.days {
        display: inline-block;
    }
    /* 메뉴탭 */
    .contain .goods_Explanation {
        margin-top: 0;
    }
    .contain .goods_Explanation .tabs li {
        font-size: 18px;
    }
    /* 프로그램 정보 */
   /*  .contain .Explanation .Img_Section {
        height: auto;
    		text-align:center;
    		padding-bottom: 30px;
    }
    .contain .Explanation .Img_Section .product {
        max-width: 650px;
        width: 95%;
        margin: 10px auto auto;
    } */

	.contain .Explanation .Img_Section {
		height: auto;
	}
   
  
    .contain .Explanation .Img_Section .product img {
		width: 300px;
    }

    /* 2, 3, 4번탭*/

    .contain .tab_content .step .title,
    .contain .tab_content .video .title b {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .contain .tab_content .step .title b {
        font-size: 35px;
    }
    .contain .tab_content .step .title b::before {
       /*  width: 5px;
        height: 30px; */
        margin-right: 5px;
        vertical-align: middle;
        margin-top: -8px;
    }
    /* 4번탭 */
    iframe {
       /*  height: 450px; */
    }
    .QNA {
        width: 90%;
    }
    .optionZone .btn_box a {
        letter-spacing: -1px;
    }
    .optionZone .btn_box a.pay_btn {
        float: left;
        width: 49%;
    }
    .contain .payment .btn_box .kakao_btn {
        float: right;
        width: 49%;
        margin-top: 0;
    }
    .optionZone .Rule_popup {
        left: 0;
    }
    .questionZone .formZone {
        padding: 15px;
    }
    .questionZone .formZone dt {
        font-size: 15px;
        width: 80px;
    }
    .questionZone .form_group dd {
        width: 200px;
    }
    .questionZone .form_group02 dd {
        width: 515px;
    }
    .questionZone .phra br {
        display: none;
    }
    .free-phra {
        margin: 20px 0;
        font-size: 15px;
        letter-spacing: -1px;
    }

	.proof {
		margin-bottom: 30px;
	}

	.QNA .QNA_inner .A_section .A_text, 
	.QNA .QNA_inner .Q_section .Q_text {
		/* max-width:70%; */
	}

	.contain .tab_content .Explanation_insta .ex_text .text_box {
		margin-top:0 !important
	}
	.contain .tab_content .Explanation_insta .ex_text {
		height: auto;
		margin: 0 auto
	}
}


@media (max-width:767px) {

	/* 프로그램 효과설명 */

	.NeedsZone .NZ_title h1 {
		font-size:18px;
	}

	.NeedsZone .NZ_title h1 > img.stars {
		width: 25px;
		height: 20px;
		top: -10px;
		left: -10px;
	}

	.NeedsZone .NZ_title h1 > img.logo {
		height: 25px;
	}

	.NeedsZone .NZ_type_box p {
		font-size:14px;
	}

    .continer_inner {
        /* max-width: 540px; */
    }
    .continer_inner > .side_nav .title,
    .continer_inner > .side_nav ul,
    .continer_inner > .side_nav ul li {
        width: 100%;
        float: none;
    }
    .continer_inner > .side_nav .title {
        border-bottom: 1px solid #fff;
        padding: 15px;
    }
    .continer_inner > .side_nav .title:after {
        content: none;
        margin: 0;
    }
    .continer_inner > .side_nav ul li a {
        border-bottom: 1px solid #555;
    }
    .continer_inner > .side_nav ul li:last-child a {
        border-bottom: 0;
    }

	.contain .payment .btn_box a {
		font-size:18px;
	}

    .contain .img_section .thumnail .content .inner {
        max-width: 470px;
    }

	
    .contain .img_section .thumnail .content {
        height: 250px;
    }

	.contain .img_section .thumnail .content .text_box {
		margin-top: 20px;
	}

    .contain .img_section .thumnail .content img {
        width: 150px;
    }
 .contain .Explanation .Img_Section .product>div {
	float:none;
	width:100%
	}
    /* 프로그램정보 */
   
    .contain .tab_content .ex_title h4 {
        font-size: 18px;
    }
    .contain .tab_content .ex_title p {
        font-size: 14px;
    }
    .contain .Explanation .Img_Section {
        height: auto;
        padding-bottom: 30px;
    }

	.contain .Explanation .Img_Section .product .text_box,
	.contain .Explanation .Img_Section .product img,
	.contain .tab_content .ex_text .text_box,
	.contain .tab_content .ex_text img {
		float: none;
		margin: auto;
	}

	.contain .Explanation .Img_Section .product .text_box,
	.contain .tab_content .ex_text .text_box {
		margin-top: -40px;
	}


    .contain .Explanation .Img_Section,
    .contain .tab_content .ex_text {
        text-align: center;
        height: auto;
    }
   
   
    .contain .tab_content .step .title b,
    .contain .tab_content .step .title p {
        display: inline !important;
        float: none !important;
        margin-top: 0 !important;
    }
    .contain .tab_content .step .title p br {
        display: none;
    }
    .contain .r_inner > img,
    .contain .review_section > img {
        display: none;
    }
    .contain .r_inner .title,
    .contain .review_section .title {
        display: block;
    }
    .contain .review_section .indicator {
        margin-bottom: 65px;
    }
    .contain .review_section .indicator .review_w_btn {
        margin-top: 37px;
    }
    .contain .r_inner .goods_box .text_box {
        font-size: 12px;
        display: block;
        padding-right: 0;
        padding-left: 10px;
        margin: 0;
    }
    .contain .r_inner .goods_box .text_box span {
        font-size: 15px;
    }
    iframe {
       /*  height: 350px; */
    }
    .QNA {
        width: 100%;
    }
    .contain .review_section table tr td.grade img {
        width: 80px;
    }
    .contain .review_section table tr td.Lookup,
    .contain .review_section table tr td.number {
        width: 12%;
    }
    .contain .review_section table tr td.name {
        width: 48%;
        text-align: left;
    }
    .contain .review_section table tr td.writer {
        width: 14%;
    }
   
   
    .proof .text-box {
        text-align: left;
    }
    .max-991 {
        display: none;
    }
    .contain .payment .table-phra {
        margin-bottom: 25px;
    }
    .optionZone .btn_box a {
        font-size: 17px;
        line-height: 35px;
    }
    .optionZone .btn_box a.kakao_btn img {
        width: 25px;
        padding-right: 3px;
        margin-top: 0;
    }
    .questionZone .formZone .form_group > div {
        float: none;
        width: 100%;
    }
    .questionZone .formZone dt {
        font-size: 12px;
        letter-spacing: -0.5px;
        width: 60px;
    }
    .questionZone .form_group dd,
    .questionZone .form_group02 dd {
        width: 380px;
    }
    .questionZone .formZone .btn_box a {
        font-size: 16px;
        padding: 8px 25px;
    }
    .contain .cs_center .title,
    .questionZone .Qtitle {
        font-size: 22px;
    }
    .questionZone .phra {
        font-size: 12px;
    }
.contain .tab_content .ex_text>div {
	float:none;
	width:100%
	}
	
}

@media (max-width:575px) {

	.contain .goods_Explanation .tabs.SMS li {
		height: 25px;
		line-height:22px;
		padding: 0;
	}

	.contain .goods_Explanation .tabs.SMS li img {
		width: 14px;
	}

	.month {
		font-size:12px !important;
	}

	.contain .goods_Explanation .tabs {
		margin-bottom: 5px;
	}

	.contain .payment .title {
		padding-bottom: 5px;
		font-size:18px
	}

	.contain .payment .info_box {
		margin-top: 5px;
	}

	.contain .payment .btn_box a {
		height: 35px !important;
		line-height: 30px !important;
		font-size: 14px !important;
	}
	.contain .payment .btn_box2 a {
		font-size: 20px !important;
	}

	/* 프로그램 사용효과 */

	.NeedsZone {
		padding: 10px 5px;
		margin: 20px 0;
	}

	.NeedsZone .NZ_line {
		margin-bottom:0px;
	}
	
	.NeedsZone .NZ_title h1 {
		font-size:14px;
	}

	.NeedsZone .NZ_title h1 > img.stars {
		left: 10px;
	}

	.NeedsZone .NZ_title h1 > img.logo {
		height:15px;
		margin: -1px 3px 0 0;
	}

	.NeedsZone .NZ_type_box p {
		font-size:11px;
		margin-bottom: 5px;
	}

	.NeedsZone .NZ_type_box p img {
		height: 15px;
		/* margin: -7px 1px 0 0; */
	}

	.NeedsZone .NZ_type_box p.phrases {
		font-size:13px;
		margin-top: 10px;
		padding-top: 10px
	}

	.NeedsZone .NZ_type_box p.phrases br {
		display:none
	}

	.contain .Explanation .Img_Section > img {
		width: 550px;
	}

	.contain .payment table {
		margin-top: 20px;
	}

    .contain .payment table,
    .contain .payment table td {
        font-size: 16px;
    }
   
    .contain .payment table td,
    .contain .payment table th {
      /*   padding: 5px 0; */
		font-size:14px !important;
		letter-spacing:-1px;
    }
    .continer_inner {
      /*   max-width: 340px; */
    }
    .contain .payment .title img {
        height: 20px;
    }
    .contain .img_section .thumnail .title {
        height: auto;
    }
    .contain .img_section .thumnail .title img.icon {
        height: 40px;
    }

    .contain .img_section .thumnail .title .thumb {
        width: 50px;
    }
    .contain .img_section .thumnail .content {
        height: auto;
        text-align: center;
        background-position: 50% 60% !important;
		padding: 20px 0;
    }

    .contain .img_section .thumnail .content img {
        float: none;
    }
	.contain .img_section .thumnail .content .text_box {
        float:none;
        margin-top: 10px;
    }
    .contain .tab_content .Explanation .NimgS .product .text_box h6 {
        font-size: 20px;
    }

   
	.contain .payment .addtion .addition_type {
		margin: 10px 0;
	}

	 .contain .review_section table tr .Lookup, 
	 .contain .review_section table tr .number {
		display:none;
	 }

	 .contain .review_section table tr td.name {
		width: 60%;
		padding-left: 5px;
	 }

	 .contain .tab_content .ex_title {
		padding: 20px 5px 10px 5px;
	 }

	 .contain .Explanation .goods .goods_title::before {
		width: 3px;
		height: 14px;
		margin: -3px 5px 0 0;
	 }

	 .contain .payment .addtion .addition_type h5 img {
		width: 25px;
	 }

	
	 .contain .Explanation .goods .goods_title,
	 .contain .payment .addtion .addition_type h5 {
		font-size:14px !important;
		letter-spacing:-1px;
	 }

	 .contain .tab_content .ex_title h4 {
		font-size:16px;
	 }

	 .contain .payment .addtion .addition_type h5 {
		height: 20px;
	 }

	.contain .payment .addtion .addition_type,
	 .contain .payment .table-phra {
		font-size:11px;
	 }

	 .contain .payment .table-phra {
		margin-bottom: 15px;
	 }

	 .contain .tab_content .ex_title p {
		font-size:11px;
		margin-top: 5px;
		letter-spacing:-.5px;
	 }

	 .contain .tab_content .video {
		margin-bottom: 20px;
	 }

	 .contain .tab_content .video .title {
		margin-top: 5px !important;
	 }

	 .contain .tab_content .video .title b::before {
/* 		width: 3px;
		height: 14px;
		margin: -3px 5px 0 0; */
	 }

	 .contain .tab_content .video .title b {
		font-size:14px;
		letter-spacing:-1px;
	 }

	 .contain .r_inner {
		margin-bottom: 0;
	 }

	 /* 리뷰창 */
    .Review_popup {
        font-size: 14px;
		width: 95%;
    }
    .Review_popup .content .form01 {
        width: 55%;
    }
    .Review_popup .content .form02 {
        width: 44%;
    }
    .proof .img-box img {
        width: 90%;
    }

    .contain .img_section .thumnail .content img {
        width: 120px;
    }
    .contain .img_section .thumnail .content .text_box {
        margin-top: 20px;
    }
	
	.contain .Explanation .Img_Section .product .text_box,
	.contain .tab_content .ex_text .text_box {
		margin-top: -30px;
	}



	.contain .img_section table {
		font-size:11px !important;
		margin: 4px 0;
	}

	.contain .img_section .tel_info a {
		font-size:12px;
	}

   .contain .payment .btn_box a {
        font-size: 14px;
        letter-spacing: -1px;
    }

	.contain .payment .btn_box .payment_type {
		margin-top: 5px;
	}

	.contain .tab_content .ex_text {
		margin-bottom: 20px;
	}

    .contain .tab_content .step .title {
        font-size: 14px;
		letter-spacing:-1px;
		margin: 0 0 5px 0;
		line-height:20px !important;
    }

	 .contain .tab_content .step .title p {
		line-height:20px !important;
	 }
    .contain .tab_content .step .title b {
        font-size: 20px;
    }
    .contain .tab_content .step .title b::before {
       /*  height: 18px; */
        margin-top: -3px;
    }

	.contain .tab_content .step > img {
		display:block;
		/* margin-bottom: 5px; */
	}

	.contain .tab_content .step > img:last-child,
	.contain .tab_content .step .texr-box:last-child {
		margin-bottom: 0 !important;
	}


	.QNA_title img {
		margin-bottom: 20px;
	}

    .QNA_inner {
        font-size: 11px;
		letter-spacing:-0.5px;
		/* line-height:16px; */
		padding-bottom: 20px;
    }

	.QNA .QNA_inner .A_section, 
	.QNA .QNA_inner .Q_section {
		margin-bottom: 10px;
	}

    .QNA .QNA_inner .A_section .A_text,
    .QNA .QNA_inner .Q_section .Q_text {
        max-width: 70%;
    }
    .QNA .QNA_inner .A_section .A_text br {
        display: none;
    }
    .QNA .QNA_inner .A_section .A_text br.br450 {
       /*  display: block !important; */
    }

	.QNA .QNA_inner .A_section:last-child {
		margin-bottom: 0;
	}

	.QNA .QNA_inner .Q_section img {
	/* 	width: 30px; */
		margin-bottom: 0;
	}

	.QNA .QNA_inner .A_section .A_text {
		/* padding: 7px; */
	}

	.QNA .QNA_inner .Q_section {
		padding-left: 7px;
	}

	.QNA .QNA_inner .A_section {
		padding-right: 7px;
	}

	.QNA .QNA_inner .Q_section .Q_text img {
		width: 10px;
	}

    .contain .review_section table tr td:last-child img {
        width: 70px;
    }
    .continer_inner > .menu_banner .anydesk img {
        width: 160px;
        margin-top: 3px;
    }
    .continer_inner > .menu_banner .anydesk .ad_btn {
        font-size: 14px;
    }
   /*  .contain .r_inner .goods_list .goods_box {
        width: 100%;
    } */
    .contain .r_inner .goods_list .line {
        display: none;
    }
    .contain .r_inner .goods_box .text_box::before {
        content:none;
    }

	.contain .r_inner .goods_box .text_box.DBPro span {
		color: #91ca00;
	}
	.contain .r_inner .goods_box .text_box.DBRoyal span {
		color: #f5a804;
	}
	.contain .r_inner .goods_box .text_box.nsearcher span {
		color: #956bff;
	}
	.contain .r_inner .goods_box .text_box.ce span {
		color: #41ae2e;
	}
	.contain .r_inner .goods_box .text_box.NRanker span {
		color: #00c3cd;
	}
	.contain .r_inner .goods_box .text_box.DBcorp span {
		color: #16b0f3;
	}
	.contain .r_inner .goods_box .text_box.instalike span {
		color: #0094a6;
	}
	.contain .r_inner .goods_box .text_box.facebooklike span {
		color: #3f579e;
	}
	.contain .r_inner .goods_box .text_box.vmachine span {
		color: #e13643;
	}
	.contain .r_inner .goods_box .text_box.monsterip span {
		color: #bd3a6e;
	}
	.contain .r_inner .goods_box .text_box.filemonster span {
		color: #f25e3e;
	}
	.contain .r_inner .goods_box .text_box.KWMonster span {
		color: #956bff;
	}
	.contain .r_inner .goods_box .text_box.oneclick_tethering span {
		color: #0094a6;
	}
	.contain .r_inner .goods_box .text_box.rankingmanager span {
		color: #e25030;
	}
	.contain .r_inner .goods_box .text_box.AutoTethering span {
		color: #0094a6;
	}
	.contain .r_inner .goods_box .text_box.ncafemaster span {
		color: #159f56;
	}
	.contain .r_inner .goods_box .text_box.kakaoaf span {
		color: #ffc742;
	}
	.contain .r_inner .goods_box .text_box.kakaosender span {
		color: #ffc742;
	}
	.contain .r_inner .goods_box .text_box.kakaomarketer_marketingmonster span {
		color: #ffc742;
	}
	.contain .r_inner .goods_box .text_box.DSearcher span {
		color: #f25e3e;
	}
	.contain .r_inner .goods_box .text_box.SearcherPro span {
		color: #0a7a88;
	}
	.contain .r_inner .goods_box .text_box.Nplace span {
		color: #252f3d;
	}
	.contain .r_inner .goods_box .text_box.landingpage span {
		color: #4ca8ff;
	}
	.contain .r_inner .goods_box .text_box.orderProgram span {
		color: #252f3d;
	}
	.contain .r_inner .goods_box .text_box.helloWeb span {
		color: #77bdb2;
	}
	.contain .r_inner .goods_box .text_box.appDownload span {
		color: #f25e3e;
	}
	.contain .r_inner .goods_box .text_box.apporder span {
		color: #f2503b;
	}
	.contain .r_inner .goods_box .text_box.contentApp span {
		color: #58cb6b;
	}
	.contain .r_inner .goods_box .text_box.normalchat span {
		color: #f9aa33;
	}
	.contain .r_inner .goods_box .text_box.randomchat span {
		color: #4ecd00;
	}
	.contain .r_inner .goods_box .text_box.videochat span {
		color: #f26858;
	}
	.contain .r_inner .goods_box .text_box.instaRelease span {
		color: #0094a6;
	}
	.contain .r_inner .goods_box .text_box.blogAds span {
		color: #f26d7d;
	}
	.contain .r_inner .goods_box .text_box.ncafepost span {
		color: #4aa896;
	}
	.contain .r_inner .goods_box .text_box.ncafecommenter span {
		color: #c8263a;
	}
	.contain .r_inner .goods_box .text_box.Alrigo span {
		color: #f54045;
	}

	.contain .r_inner .goods_box .text_box p {
		width: 100%;
		padding-right: 5px;
		line-height:15px;
		height: 50px;
	}

	 .contain .r_inner .goods_box .text_box {
        font-size: 10px;
		letter-spacing:-.5px;
		padding-left: 0;
    }
    .contain .r_inner .goods_box .text_box span {
        font-size: 13px;
		letter-spacing:-.5px;
		margin-bottom: 5px;
    }

/* 	.contain .r_inner .goods_list .goods_box {
		margin-bottom: 10px;
	} */

    .contain .r_inner .goods_list .goods_box img {
        width: 50%;
    }
	
	.proof {
		margin: 20px 0;
	}

    .proof .text-box {
        font-size: 11px;
        line-height: 16px;
		letter-spacing:-0.5px;
    }
    .proof .produce {
        font-size: 12px;
		letter-spacing:-1px;
		margin-bottom: 5px;
    }
    .proof .produce label {
        min-width: 130px;
    }
 
    .contain .r_inner .goods_list .goods_box img {
        max-width: 250px;
        height: auto;
        display: block;
		margin-bottom: 10px;
    }

    .contain .tab_content .ex_text .text_box {
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: -1px !important;
    }
    .contain .tab_content .ex_text .text_box b {
        letter-spacing: -0.5px !important;
    }

	 .contain .tab_content .ex_text .text_box br {
		/* line-height:10% !important; */
	 }

    .contain .kmong_price p {
        font-size: 20px;
    }
    .proof .title {
        font-size: 14px;
		line-height:24px;
		letter-spacing:-1px;
		padding: 7px;
    }
    .proof .title b {
        font-size: 15px;
    }

	.proof .content {
		padding: 7px;
	}

    .optionZone .btn_box a {
        font-size: 15px;
    }
    .optionZone .Rule_popup .Ptitle {
        font-size: 17px;
    }
    .optionZone .Rule_popup .Pcontent {
        font-size: 12px;
    }
    .questionZone .form_group dd,
    .questionZone .form_group02 dd {
        width: 230px;
    }
    .free-phra {
        font-size: 14px;
    }

	.contain .Explanation .Img_Section {
		padding-bottom: 20px;
	}

	.contain .Explanation .Img_Section .product {
		margin-top: 10px;
	}

    .contain .payment .title .goods_title {
        font-size: 25px;
    }
    .contain .img_section table th {
        width: 23%;
    }
 

	.contain .payment .info_box .info {
		font-size:11px;
		letter-spacing: -0.5px;
	}

    .contain .payment .addtion .addition_type h5,
    .contain .payment table,
    .contain .payment table td {
        font-size: 16px;
    }
    .contain .payment table td b {
        font-size: 20px;
		margin-right: 2px;
    }
	
	.contain .payment .addtion {
		margin-top: 5px;
	}

    .contain .img_section table,
    .contain .payment .addtion .addition_type {
        !font-size: 11px;
    }
    .contain .goods_Explanation .tabs li {
       font-size:12px;
        padding: 5px;
		letter-spacing:-1px;
    }
    .contain .goods_Explanation .tabs li.active {
    }
    .contain .Explanation .Img_Section .product img,
    .contain .tab_content .ex_text img {
        width: 200px;
    }
    .QNA .QNA_inner .Q_section .Q_text br {
        display: none;
    }
    iframe {
        /* height: 200px; */
    }
    /* .backtop {
        width: 40px;
    }
    .backtop .top_btn {
    		width: 40px;
        height: 40px;
        font-size: 12px;
        line-height: 40px;
    }
    .backtop .kakao,
    	.backtop .tel {
        height: 38px;
    } */

   
    .contain .review_section table tr td.grade img {
        width: 90%;
		max-width:75px;
    }

	.contain .cs_center .title, .questionZone .Qtitle {
		font-size:20px;
		letter-spacing:-1px;
	}

	.questionZone .phra span,
	.questionZone .formZone .btn_box a,
	.contain .review_section .phra {
		font-size:14px !important;
		letter-spacing:-1px;
	}

	.questionZone .formZone dd input[type='text'], 
	.questionZone .formZone dd input[type='tel'], 
	.questionZone .formZone dd select,
	.questionZone .formZone dd input[type='file'],
	.questionZone .formZone dd textarea {
		font-size:11px !important;	
		letter-spacing:-.5px !important;
	}

	.questionZone .formZone dd span {
		display:block;
	}

	.optionZone .Rule .Rtitle {
		font-size:13px;
	}

	.optionZone .Rule .Rcontent {
		font-size:11px;
	}
   
}
@media (max-width:359px) {
    .continer_inner {
       /*  max-width: 300px; */
    }
    .Review_popup .content .form01 {
        width: 50%;
    }
    .Review_popup .content .form02 {
        width: 49%;
    }
    .questionZone .form_group dd,
    .questionZone .form_group02 dd {
        width: 190px;
    }

	.contain .Explanation .goods .goods_title {
		font-size:13px !important;
	}


}
.log_box2 textarea.input_box{
	height:165px;
	font-size:14px;
}
.log_box2 textarea.input_box::placeholder{
	color:rgba(118,118,118,0.6);
	font-size:14px;
}
/* .questionZone .formZone .btn_box a {
    background-color: #252f3d;
} */


.review_section{
	display:none;
}

.sec_mimg{
	display:block;
	max-width:100%;
	margin:0 auto;
}
.table01 tr td a.real_notice{
	color:#f19722;
}
.real_notice span{
	display:inline-block;
	color:#fff;
	background:#f19722;
	font-size:14px;
	width:40px;
	padding:2px 0;
	text-align:center;
	border-radius:3px;
	margin-right:8px;
}
.td_arrow{
	width:100px;
	text-align:center;
}
.td_arrow img{
	vertical-align:middle;
}
.faq_ta .answer_tr{
	display:none;
}

.faq_ta .title_tr.on img{
	transform:rotateX(180deg);
}
.faq_ta .title_tr{
	cursor:pointer;
}
.faq_ta .title_tr td{
	color:#373737;
	font-weight:600;
}
.faq_ta .answer_tr.on {
	display:table-row;
}
.faq_ta .answer_tr td{
	background:#eee;
	color:#767676;
	font-size:14px;
}

/*notice_tab @mi_suuun @20211221*/
.notice_tab{
	max-width:240px;
	margin:0 auto;
}
.notice_tab ul{
	overflow:hidden;
}
.notice_tab ul li{
	float:left;
	width:50%;
}
.notice_tab ul li a{
	display:block;
	text-align:center;
    background: #666;
    color: #fff;
    transition: all 0.3s;
    border-right: 1px solid #333;
    width: 100%;
    font-size: 16px;
    letter-spacing: -1px;
	padding: 10px;
    line-height: normal;
}
.notice_tab ul li:last-child a{
	border-right:0;
}
.notice_tab ul li.on a{
	background:#f19722;
	border-right:1px solid #f19722;
	color:#fff;
}
.table01 th{
	background: #f7f7f7;
    border-top: 1px solid #333;
    padding: 10px 5px;
    color: #666;
}
/* search */
.search td {
    padding: 8px 5px;
    background: #f7f7f7;
    border-top: 1px solid #333;
    border-bottom: 1px solid #999;
	text-align:center;
}
.search td select {
    width: 40%;
}
.search td input {
    width: 70%;
}
.search td.name {
    width: 15%;
}
.search td.select {
    width: 27%;
    text-align: right;
}
.search td.input {
    width: 40%;
    text-align: left;
}
.search td input,.search td select{
	box-shadow:none;
	height:25px;
	border:1px solid #999;
}
.search td.search_btn {
    width: 8%;
}
.search input {
    width: 250px;
}
.search span {
    background: #6f6f6f;
    border: 1px solid #5b5b5b;
    color: #fff;
    padding: 0 15px;
    height: 25px;
    line-height: 23px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: lighter;
    font-family: NanumGothic;
}
.search span:hover {
    background: #5b5b5b;
}


/************* 추가 ****************/

.tab1_img img{
	max-width:100%;
}
.thumnail_img {
	position:relative
}
 .thumnail_img img.thumb {
	position: absolute;
    top: 5px;
    right: 20px;
	vertical-align: middle;
    margin-top: 10px;
}
.contain .img_section .thumnail .thumnail_img {
	text-align: center;
	margin:0 auto
}
.thumnail_imgtitle {
	position:relative
}
.contain .img_section .thumnail .thumnail_img .title {
    background: #fff;
    position: absolute;
    width: 100%;
    height: 80px;
	text-align: left	
}

.contain .img_section .thumnail .thumnail_img> img {
	width: 100%;
}
.NeedsZone .NZ_type_box p {
	width: auto;
	display: block;
}
.NeedsZone .NZ_type_box p > span {
	display: table-cell;
	width: calc(100% - 30px);
}
.NeedsZone .NZ_type_box p span.nz_chk {
	width: 30px;
	vertical-align: top;
}

.contain .goods_Explanation .tab_content .step .step_text ul li:after {content:"";display:block;clear:both}
.contain .goods_Explanation .tab_content .step .texr-box ul li:after {content:"";display:block;clear:both}
.contain .goods_Explanation .tab_content .step .step_text ul li>div ,
.contain .goods_Explanation .tab_content .step .texr-box ul li>div {
	float:left;
	width: calc(100% - 25px);
	letter-spacing: -1px;
    line-height: 26px;
    margin-bottom: 0 !important;
	padding-left:5px
}

.contain .goods_Explanation .tab_content .step .step_text ul li>div.pnum ,
.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum {
	width: 25px;
	height: 25px;
	padding-left:0
}
.contain .goods_Explanation .tab_content .step .step_text ul li>div.pnum2,
.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum2 {
	width: 40px;
	height: 25px;
	padding-left:0
}
.contain .goods_Explanation .tab_content .step .step_text ul li>div.pnum2_r ,
.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum2_r {
	width: calc(100% - 40px);
}

.contain .goods_Explanation .tab_content .step .step_text ul li>div.pnum3 ,
.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum3{
	width:15px;
}
.contain .goods_Explanation .tab_content .step .step_text ul li>div.pnum3_r ,
.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum3_r{
	width: calc(100% - 15px);
}
.contain .goods_Explanation .tab_content .step .texr-box ul li>div b {
	color: #c33;
}

.contain .goods_Explanation .tab_content .step .texr-box2 ul li>div b{
	color: #000;
}

.contain .goods_Explanation .tab_content .step .texr-box2 ul li:not(:first-child) {
	padding-left: 10px;
}

	
.pb{
	padding-bottom:10px
}

.mtab300 , .mtab900 , .mtab700 , .mtab500 , .mtab400 {
	color: #4f4f4f !important
}


.Explanation .tab2_img {
	text-align:left	;
	
}

.Explanation .tab2_img img {
	max-width: 100%;
}

.contain .goods_Explanation .tab_content .Explanation .Img_Section {
    background: none
}
.contain .Explanation .Img_Section {
    padding-bottom: 0;
}


@media (max-width:991px) { 
	.mtab900 {
		display: block;
		color: #4f4f4f !important
	}
	.contain .goods_Explanation .tab_content .step .texr-box .mtab900 {
		margin-left:28px
	}
	.contain .img_section .thumnail .thumnail_img .title {
		height: 97px;
		padding:15px 0
	}
	 .NeedsZone .NZ_type_box p span {
		width: calc(100% - 20px);
	}
	.NeedsZone .NZ_type_box p span.nz_chk {
		width: 20px;
	} 
}

@media (max-width:767px) { 
	.mtab700 {
		display:block;
		color: #4f4f4f !important
	}
	.contain .goods_Explanation .tab_content .step .texr-box .mtab700 {
		margin-left:28px
	}
	.tab_content .ex_text .text_box {
		max-width: 320px;
	}
	.contain .img_section .thumnail .thumnail_img .title {
		height: 72px;
		padding: 5px 0;
	}
	.contain .img_section .thumnail .title .thumb {
		width: 70px;
		top: 20px;
	}

}

@media (max-width: 575px) {
	.Explanation .tab2_img {
		/* padding-right: 20px; */
		
	}
	/* .contain .goods_Explanation .tab_content .step .texr-box .mtab900 {
		margin-left:23px
	}
	.contain .goods_Explanation .tab_content .step .texr-box .mtab700 {
		margin-left:23px
	} */
 	.contain .tab_content .f_type .content br {
		display: none
	}
	.mtab700 {
		display: inline-block;
	}

	.contain .goods_Explanation .tab_content .step .texr-box ul li>div {
		 width: calc(100% - 20px);
	}
	.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum {
		width: 20px;
		height: 20px;
	}
	.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum2 {
		width: 32px;
		height: 20px;
	}
	.contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum2_r {
		width: calc(100% - 32px);
	}

	.contain .goods_Explanation .tab_content .step .step_text div ,
	.contain .goods_Explanation .tab_content .step .texr-box div {
		font-size: 11px !important;
		letter-spacing: -.5px !important;
		line-height: 16px !important;
	}
	.contain .goods_Explanation .tab_content .step .texr-box ul li {
		margin-bottom:2px
	}
	.contain .goods_Explanation .tab_content .step ul li.nopb {
		margin-bottom:0 !important
	}
	.contain .goods_Explanation .tab_content .step .texr-box ul li:last-child {
		margin-bottom:0
	}
	.mtab500 {
		display: block;
		color: #4f4f4f !important
	}
	.contain .img_section .thumnail .thumnail_imgtitle {
		position:absolute;
		width: 100%;
		padding-bottom:13%;
	}
	.contain .img_section .thumnail .thumnail_img .title {
		position:absolute;
		width: 100%;
		height: 100%;
	}
	.contain .img_section .thumnail .title .thumb {
		width: 50px;
	}
	/* .NeedsZone .NZ_type_box p span {
		width: calc(100% - 22px);
	}
	.NeedsZone .NZ_type_box p span.nz_chk {
		width: 12px;
	} */
	.contain .goods_Explanation .tab_content .step .step_text ul li {
		padding-bottom: 2px;
	}
	.contain .goods_Explanation .tab_content .step .step_text ul li>div.pnum, .contain .goods_Explanation .tab_content .step .texr-box ul li>div.pnum {
		width: 20px;
		height: 20px;
		padding-left: 0;
	}

}

@media (max-width: 500px) {
	.mtab400 {
		display: block;
		color: #4f4f4f !important
	}
	.contain .img_section .thumnail .title img.icon {
		height: 30px;
	}
	.contain .img_section .thumnail .title .thumb {
		top:auto;
		bottom:-50%
	}

}

@media (max-width: 400px) {
	.contain .img_section .thumnail .thumnail_img .title {
		padding:0;
	}
	.contain .img_section .thumnail .title img.icon {
		height: 25px;
	}
	.contain .img_section .thumnail .title img.goods_name {
		height: 15px!important;
		margin-top: 10px;
	}
	.contain .img_section .thumnail .title .thumb {
		width: 40px;
	}
	.mtab300 {
		display: block;
		color: #4f4f4f !important
	}


}
.contain .goods_Explanation .tab_content .step .texr-box span.pattern {
    color: #fff !important;
    font-size: 13px;
    vertical-align: top;
    margin: 0px;
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 100px;
}
@media screen and  (max-width:575px)  { 
    .contain .tab_content .step .texr-box span.pattern {
        font-size: 11px !important;
        margin: -2px 0 0 0 !important;
        width: 20px!important;
        height: 20px!important;
        line-height: 20px!important;
    }
	.text_box_free div br{
		display:none;
	}
}


.red {
	color: #ca1313 !important
}
.red span{
	color: #ca1313 !important
}

.mtab300 , .mtab900 , .mtab700 , .mtab500 , .mtab400 {
	display: inline !important
}

/* @media screen and  (max-width:400px)  { 
.mtab300 , .mtab900 , .mtab700 , .mtab500 , .mtab400 {
	display: inline !important
}

} */

.marketing_c a{
	display:block;
	/* text-align:center; */
	color:#f19722;
	font-weight:500;
	font-size:16px;
	padding-left:13px;
}
div.listbox:first-of-type{
	margin-top:0;
}
.grade_price_chk {
	border-bottom: 1px solid;
}
.seller_top ul {
    display: flex;
}
.seller_top ul li {
	cursor:pointer;
	margin-right: 15px;
    font-size: 18px;
}
.seller_mid_box_left {
    float: left;
    width: 549px;
}
.seller_mid_box_right {
	float: left;
    width: calc(100% - 549px);
    padding-left: 15px;
}
.seller_top {
	display: flex;
    align-items: center;
}
.seller_mid_sell_left {
    width: 130px;
    float: left;
    font-size: 16px;
}
.seller_mid_sell_right {
	width: calc(100% - 130px);
}
.seller_mid_sell_right:not(first-child) {
    width: calc(100% - 180px);
    float: left;
}
.seller_mid_sell::after {content:"";display:block;clear:both}
.seller_mid_box::after {content:"";display:block;clear:both}
.won_box {
	width:50px;
	float:left;
	text-align:center;
font-size: 16px;
    padding: 10px 0;
}
.seller_mid_sell_right input {
	width:100%;
	background: #FFFFFF;
    border-radius: 5px;
    padding: 10px 15px;
	border: 0.5px solid #F18D22;
}
.seller_mid_sell_right input::placeholder {
	font-size:17px;
	color:#F18D22;
}
.seller_mid_sell {
	margin-bottom: 15px;
}
.seller_mid_box_left02 {
    display: flex;
    justify-content: space-between;
}
.seller_mid_box_left02 div {
    width: 100%;
    text-align: center;
	    background: #F18D22;
    border-radius: 10px;
}
.seller_mid_box_left02 div:first-child {
	margin-right:10px;
}
.seller_mid_box_left02 div a {
	display:block;
	width:100%;
	padding: 15px 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
.seller_mid_box_left02 div a img {
    margin-right: 5px;
}
.seller_mid_box {
	display:none;
}
.seller_mid_box:first-child {
	display:block;
}
.seller_mid_box_wrap {
    display: flex;
}
.last_seller {
	width:50%;
}
.color_gray {
border: 0.5px solid #8D8D8D !important;
}
input..color_gray::placeholder {
color: #000 !importaant;
font-size:17px !importaant;
}
.sec_con22 {
	background: #FAFAFA;
    max-width: none;
}
.seller_mid_box_right_top {
	margin-bottom: 15px;
}
.seller_wrap {
    max-width: 1220px;
	margin:0 auto;
padding: 0 15px;
}
.seller_wrap2 {
max-width: 580px;
	margin:0 auto;
padding: 0 15px;
}
.display_none {
	display:none;
}
.seller_header {
background: #3F3F3F;
padding:20px 0;
}
.seller_header_container {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    align-items: center;
	
}
.seller_header_container div ul {
    display: flex;
	
}
.seller_header_container div ul li a {
	color: #fff;
    font-size: 17px;
    display: block;
    width: 100%;

}
.seller_header_container div ul li {
    margin-right: 35px;
}
.seller_img_box .seller_m a {
	display: block;
	/* position: absolute;
    top: 25%;
    left: 23%; */
    padding: 55px 0;
    width: 100%;
}
.seller_m .seller_top1{
	background: #F18D22;
    border-radius: 20px 20px 0px 0px;
    color: #fff;
    height: 70px;
    font-size: 28px;
    text-align: center;
    line-height: 70px;
    font-weight: 600;
}
.seller_m a span{
	display: block;
	background: #f18d22;
    border-radius: 5px;
	/* margin-top: 47px; */
    /* height: 58px; */
    height: 58px;
    text-align: center;
    line-height: 58px;
    font-size: 26px;
    color: #fff;
    max-width: 210px;
    width: 100%;
    margin: 40px auto 0;
}


.seller_img_box1 {
	display: flex;
    justify-content: space-around;
}
.seller_img_box1 {
	margin-bottom: 50px;
}
.seller_img_box1::after {content:"";display:block;clear:both}
.seller_img_box1 .seller_m {
    float: left;
    width: 30%;
    margin-right: 1%;
	background: #FAFAFA;
    border-radius: 20px;
    position: relative;
    height: 512px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 25%), 0 4px 15px rgb(0 0 0 / 25%), 0 4px 8px rgb(0 0 0 / 7%), 0 8px 16px rgb(0 0 0 / 7%), 0 7px 0px rgb(255 255 255 / 25%), 0 0px 15px rgb(255 255 255 / 25%);
text-align: center;
}
.seller_img_box1 .seller_m:last-child {
	margin-right: 0;
}
.seller_img_box1 div a img {
	max-width:100%;
}
.seller_t_box {
    width: 330px;
    background: #efefef;
	border: 3px solid #f18d22;
    border-radius: 20px;
	overflow: hidden;
}
.seller_t_box div:first-child {
	background: #F18D22;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.seller_t_box div:last-child {
	padding: 13px 25px;
}
.seller_t_box div:last-child ul li {
	color:#3f3f3f;
	font-size: 16px;
    margin-bottom: 10px;
}
.seller_t_box div:last-child ul li:last-child {
	margin-bottom: 0;
}
.seller_mid_box_left01 {
    padding: 30px 20px;
	color: #222;
    margin-bottom: 15px;
    background: #FAFAFA;
    box-shadow: 0px 4px 30px rgb(0 0 0 / 50%);
    border-radius: 20px;
	font-weight: 600;
}
.seller_mid_box_tt {
    text-align: center;
    font-size: 25px;
    margin-bottom: 25px;
}
.ps_icon2 {
	padding: 0 !important;
}
.seller_top_nav {
	background: #F18D22;
	padding: 0 15px !important;
}
.seller_top_nav > a {
	font-size:16px !important;
    font-weight: 600;
}
.seller_top_nav > a > img {
	vertical-align: middle;
    margin-right: 5px;
}
.sellser_header {
	display:none;
}
/* .header_index .top_nav {
	display:none;
} */
/* .header_index .nav_gnb {
	display:none;
} */
.header_index .sellser_header {
	display:block;
}
.sellser_header li a {
    font-size: 20px !important;
}
.sellser_header li {
    padding: 0 25px !important;
}
.sellser_header > li > a span {
    padding: 0 0 21px !important;
}
.mmenu_bot2 {
	display:none;
}
.seller_index .mmenu_bot {
	display:none;
}
.seller_index .mmenu_bot2 {
	display:block;
    padding: 0 !important;
}
/* .mmenu_wrap .mmenu_bot2 .sub_menu ul li {
	float: none !important;
    width: auto !important;
} */
.seller_top_img {
position: relative;
}
.seller_top_img img {
    object-fit: cover;
    width: 100%;
    height: 320px;
}
.seller_top_img div {
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.seller_top_img .subtt {
	height:auto;
}
.seller_top_img + .sub_con {
height:auto;
}
.seller_top_img + .sub_con .sec_nav ul li {
width: 33.3333%;
}
.seller_top_mobnav {
        background: #F18D22;
    margin-top: -7px;
    border-radius: 5px;
    overflow: hidden;
	display:none !important;
}
.seller_top_mobnav a {
    line-height: 0 !important;
    font-size: 14px !important;
    font-weight: 600;
    padding: 6px 10px;
    color: #222 !important;
}
.seller_top_mobnav a img {
    margin-right: 5px;
}
.point_txt > a {
	color:#f18d22 !important;
	font-weight: 600;
    letter-spacing: 0;
}