/* subTop */
#subTop {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
#subTop .subTopBg {
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
}
#subTop .subtabs {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    border-radius: 40px 0 0 0;
    background-color: #fff;
    z-index: 5;
}
@media (min-width:767px) {
    #subTop .subtabs::before {
        position: absolute;
        content: "";
        width: 40px;
        height: 40px;
        left: 0;
        bottom: 0;
        transform: translate3d(-100%, 0%, 0);
        background: url(../img/stop_deco1.png) center center no-repeat;
    }
    #subTop .subtabs::after {
        position: absolute;
        content: "";
        width: 40px;
        height: 40px;
        left: 100%;
        top: 0;
        transform: translate3d(-100%, -100%, 0);
        background: url(../img/stop_deco1.png) center center no-repeat;
    }
}
@media (max-width:768px) {
    #subTop {
        display: block;
    }
    #subTop .subTopBg {
        height: 200px;
        border-radius: 0px;
    }
    #subTop .subtabs {
        width: 100%;
        border-radius: 0 0 0 0;
        position: relative;
        margin-top: 10px;
    }
}

/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
    border-radius: 100px;
}
#site_config .site .home {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .slashed {
    width: 2px;
    vertical-align: middle;
    background-color: #c2c2c2;
    display: inline-block;
    height: 16px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    /* transform: skewX(-15deg); */
    vertical-align: middle;
    margin: 0 5px;
}
#site_config .site .home.home2,
#site_config .site .home.home3 {
    position: relative;
}
#site_config .site .home.act:before {
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 0px;
}
#site_config .site .home .site_toggle i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home.act .site_toggle i {
    transform: rotate(180deg);
}
#site_config .site .home.home1 {
    text-align: center;
}
#site_config .site .home > span {
    display: inline-block;
    line-height: 1em;
    padding: 0px 10px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    color: #999;
}
#site_config .site .home.home3 > span {
    color: #333;
    font-weight: 800;
}
#site_config .site .home > ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 0px;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translateY(10px);
}
#site_config .site .home > ul li a {
    display: block;
    text-decoration: none;
    font-size: 17px;
    line-height: 1em;
    padding: 10px;
    color: #666;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home > ul li a.act {
    color: #333;
}
#site_config .site .home > ul li a:hover{
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
#site_config .site .home > ul li:hover a:after {
    width: 100%;
    left: 0%;
}
@media (max-width:992px) {
    #site_config .site .home {
        line-height: 50px;
        font-size: 15px;
    }
}
@media (max-width:768px) {
    #site_config .site .home {
        line-height: 40px;
        font-size: 12px;
    }
    #site_config .site .home.home2:after,
    #site_config .site .home.home3:after {
        right: 10px;
        width: 10px;
        background-size: 100%;
    }
    #site_config .site .home > span {
        padding: 0px 5px;
    }
}
/* sitecon */
.sitecon .dashed {
    height: 14px;
    width: 2px;
    background-color: rgba(255,255,255,.5);
    transform: skew(15deg);
    margin: 0 8px;
    display: inline-block;
}
/* subtabs */
.subtabs ul {
    display: flex;
    gap: 3vw;
    padding: 20px 4vw;
}
.subtabs ul a {
    font-size: 18px;
    text-decoration: none;
    display: block;
    color: #aaa;
    padding: 0 0 10px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transform: translateY(1px);
}
.subtabs ul a.act {
    color: #e1172a;
    border-color: #e1172a;
    font-weight: 700;
}
@media (max-width:768px){
    .subtabs {
        border-bottom: 0px;
    }
    .subtabs ul {
        gap: 20px;
        row-gap: 5px;
        flex-wrap: wrap;
        padding: 10px 0px;
        justify-content: center;
    }
    .subtabs ul a {
        font-size: 15px;
        padding: 4px 0;
    }
}


/* company1 */
#company1 .sec1 .dft .lg {
    font-size: 1.4em;
}


/* mapbox */
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 500px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}

/* comInfos */
.comInfos .ifItem {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.comInfos .ifItem .cc {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f7f7f7;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #111;
}
@media (max-width:768px) {
    .comInfos .ifItem {
        border-radius: 10px;
        padding: 20px;
    }
    .comInfos .ifItem .cc {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


/* formTop */
.formTop {
    padding: 50px;
    background-color: #fcfcfc;
    border: 2px solid #eee;
    border-radius: 20px;
}
.formTop .f-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
}
.formTop .f-item .dvdForm {
    display: flex;
    align-items: center;
}
.formTop .f-item .dvdForm .tx {
    width: 25px;
    text-align: center;
}
.formTop .f-item .dvdForm .form-control {
    width: calc(50% - 25px);
}
.formTop .f-item label {
    font-size: 17px;
    line-height: 1em;
    margin: 0px;
    width: 130px;
    font-weight: 500;
    color: #222;
}
.formTop .f-item .dvdForm,
.formTop .f-item .form-control {
    width: calc(100% - 130px);
}
.formTop .f-item .form-control {
    border: 1px solid #ddd;
    box-shadow: 0 0 0;
    height: 45px;
    font-size: 17px;
}
@media (max-width:768px){
    .formTop {
        padding: 30px 15px;
        border-radius: 5px;
    }
    .formTop > ul {
        margin-top: 15px !important;
    }
    .formTop .f-item label {
        font-size: 14px;
        width: 80px;
    }
    .formTop .f-item .dvdForm,
    .formTop .f-item .form-control {
        width: calc(100% - 80px);
    }
    .formTop .f-item .form-control {
        height: 40px;
        font-size: 15px;
    }
}

/* searchTop */
#searchTop + #prdList {
    margin-top: -30px;
}
#searchTop .sch-form {
	box-shadow: 0 0 0;
}
#searchTop .rt {
	display: flex;
	gap: 10px;
	align-items: center;
}
#searchTop .rt .schFtem {
	position: relative;
}
#searchTop .rt .schFtem .form-control  {
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 50px;
	border: 0px;
	background-color: rgba(0,0,0,0.035);
	border-radius: 100px;
	padding: 0 25px;
	font-size: 17px;
	padding-right: 65px;
	z-index: 4;
	position: relative;
}
#searchTop .rt .schFtem.schFtem1 {
	position: relative;
}
#searchTop .rt .schFtem.schFtem2 {
	position: relative;
}
#searchTop .rt .sch-arr,
#searchTop .rt .sch-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 5px;
	top: 5px;
	background: url(../img/search-line.svg) center center no-repeat;
	background-size: 23px;
	background-color: #1ea244;
	color: #fff;
	border: 0px;
	border-radius: 50%;
}
#searchTop .rt .sch-submit {
	z-index: 6;
}
#searchTop .rt .sch-arr {
	background: url(../img/arrow-down-s-line.svg) center center no-repeat;
	background-size: 25px;
	background-color: #d3a14f;
	z-index: 2
}
@media (max-width:992px){
	#searchTop {
		flex-wrap: wrap;
	}
	#searchTop > div {
		width: 100%;
	}
	#searchTop .rt .schFtem .form-control  {
		height: 50px;
		border: 0px;
		border-radius: 100px;
		padding: 0 35px;
		font-size: 17px;
		padding-right: 75px;
	}
	#searchTop .rt .schFtem.schFtem1 {
		position: relative;
	}
	#searchTop .rt .schFtem.schFtem2 {
		position: relative;
	}
	#searchTop .rt .schFtem .form-control  {
		height: 35px;
		border: 0px;
		padding: 0 15px;
		padding-right: 50px
	}
	#searchTop .rt .sch-arr,
	#searchTop .rt .sch-submit {
		top: 3px;
		right: 3px;
		width: 29px;
		height: 29px;
		background-size: 16px;
	}
}
@media (max-width:768px){
    #searchTop + #prdList {
        margin-top: 0;
    }
	#searchTop .rt {
		flex-wrap: wrap;
		margin-top: 5px;
	}
	#searchTop .rt .schFtem.schFtem1 {
		width: 200px;
	}
	#searchTop .rt .schFtem.schFtem2 {
		width: 100%;
	}
	#searchTop .rt .schFtem .form-control  {
		font-size: 15px;
	}
}

/* prdList */
@media (max-width:500px){
    #prdList > li {
        width: 100%;
    }
}

/* prdDetail */
.prdDetail .thum img {
    width: 100%;
}
.prdDetail .img img {
    position: relative;
    z-index: 1;
}
.prdDetail .img .bestItem {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #f29318;
    font-weight: 500;
    letter-spacing: -0.02em;
    z-index: 5;
    font-size: 14px;
}
.prdDetail .img .soldoutItem {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    z-index: 5;
    transition: background-color 0.4s, transform 0.4s 0.2s;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.prdDetail .img .soldoutItem + img {
    filter: grayscale(1);
}
.prdDetail .txt .md {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin: 20px 0;
    padding: 20px 15px;
}
.prdDetail .txt .info,
.prdDetail .txt .subject {
   /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
    color: #444;
	font-size: 4.0rem;
}
.prdDetail .txt .cate {
    color: #969696;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 5px 8px;
    line-height: 1em;
}
.prdDetail .txt .cost ,
.prdDetail .txt .cost .lft {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prdDetail .txt .cost .rt {
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}
.prdDetail .txt .cost .rt:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #ddd;
}
.prdDetail .txt .cost .lft {
    justify-content: flex-start;
    gap: 8px;
}
.prdDetail .txt .cost .lft .state {
    display: inline-block;
    padding: 5px 15px;
    line-height: 1em;
    background-color: #07a957;
    color: #fff;
    border-radius: 80px;
    font-size: .75em;
}
.prdDetail .txt .cost .rt a {
    text-decoration: none;
    display: inline-block;
    margin: 0 2px;
    text-decoration: none;
    color: #bebebe;
    font-weight: 500;
}
.prdDetail .txt .cost .rt a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 17px;
}
.prdDetail .txt .cost .rt a [class*="ri-whatsapp"] {
    /* background-color: #24cc63; */
    color: transparent;
    background: url(../img/wapp.png) center center no-repeat;
    background-size: 100%;
}
.prdDetail .txt .cost .rt a [class*="ri-telegram"] {
    /* background-color: #27a3e2; */
    color: transparent;
    background: url(../img/tapp.png) center center no-repeat;
    background-size: 100%;
}
@media (max-width:768px) {
    .prdDetail > div {
        width: 100%;
    }
    .prdDetail > .img {
        order: 1;
    }
    .prdDetail > .txt {
        margin-top: 20px;
        order: 2;
    }
    .prdDetail .txt .md {
        margin: 10px 0;
        padding: 10px 8px;
    }
	.prdDetail .txt .info,
	.prdDetail .txt .subject {
		font-size: 4.0rem;
	}
}
/* ifList */
.ifList li {
    margin: 7px 0;
    padding: 7px 0;
}
.ifList li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.ifList .if {
    display: flex;
}
.ifList .if .hd {
    width: 100px;
    color: #999;
}
.ifList .if .cc {
    width: calc(100% - 100px);
}
.ifList.mini .if .hd {
    width: 70px;
}
.ifList.mini .if .cc {
    width: calc(100% - 70px);
}
@media (max-width:768px) {
    .ifList .if .hd {
        width: 80px;
    }
    .ifList .if .cc {
        width: calc(100% - 80px);
    }
    .ifList.mini .if .hd {
        width: 50px;
    }
    .ifList.mini .if .cc {
        width: calc(100% - 50px);
    }
}

/* profile */
.profile {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
}
.profile .ifList li {
    margin: 4px 0;
    padding: 4px 0;
    border-bottom: 0px solid #eee !important;
}
.profile .i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
}
.profile .ifList {
    padding-left: 15px;
}
@media (max-width:768px) {
    .profile .i {
        width: 50px;
        height: 50px;
    }
}
/* dagim */
.dagim {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(18, 141, 255, 0.05);
    color: #128dff;
}
.dagim .safe {
    width: 50px;
    margin-bottom: 8px;
}
@media (max-width:768px) {
    .dagim {
        padding: 10px;
        border-radius: 5px;
    }
    .dagim .safe {
        width: 30px;
    }
}

/* btDetail */
.btDetail {
    border-bottom: 1px solid #ddd;
}
.btDetail .btDetailTit {
    border: 1px solid #ddd;
    border-bottom-color: #fff !important;
    display: inline-block;
    border-top: 1px solid #111;
    padding: 20px 40px;
    text-align: center;
    margin-bottom: -1px !important;
}

@media (max-width:768px) {
    .btDetail .btDetailTit {
        padding: 10px 20px;
    }
}
/* prThum-nav */
.prThum-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 14px;
}
.prThum-nav .prThum-item {
    width: calc(20% - 7px);
}
#prThumWrp {
    position: relative;
}
#prThumWrp #prThum {
    border-radius: 10px;
    transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.prThum-nav .prThum-item img {
    border-radius: 10px;
    cursor: pointer;
}