.gift_wrap .top{
  text-align: center;
  background: #fffaeb;
}
.gift_wrap .top img{
  max-width: 960px;
  width: 100%;
}
.gift_wrap .bottom{
  padding: 6rem 0;
  background: #fff;
}
.gift_wrap .bottom .inner{
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
}
.gift_wrap .bottom .title{
  max-width: 840px;
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
}
.gift_wrap .bottom ul{
  padding-top: 5.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* border-bottom: 1px solid #d1d1d1; */
}
.gift_wrap .bottom ul li{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49%;
}
.gift_wrap .bottom ul li .img_box{
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0);
  display:block;
}
.gift_wrap .bottom ul li .img_box p{
  display:flex;
  position:relative;
  background:#eeeeee;
  font-size:2.4rem;
  color:#666;
  height:6rem;
  align-items: center;
  justify-content: center;
}
.gift_wrap .bottom ul li .img_box::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 1.5rem;
  z-index:2;
}
.gift_wrap .bottom ul li .img_box img{
  width: 100%;
}
.gift_wrap .bottom ul li .text_box{
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  display: flex;
}
.gift_wrap .bottom ul li .text_box > div{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-6px);
  padding-left: 10px;
}
.gift_wrap .bottom ul li .text_box input{
  vertical-align: middle;
  flex-shrink: 0;
  appearance: none;
  border: max(1px, 0.1rem) solid gray;
  border-radius: 10px;
  width: 5.4rem;
  height: 5.4rem;
  opacity:0;
  position:absolute;
  width:0;
  height:0;
}

.gift_wrap .bottom ul li .text_box input + p{
  border:1px solid red;
  width: 5.4rem;
  height: 5.4rem;
  border:1px solid #666;
  border-radius:8px;
  position:relative;
  flex-shrink: 0;
  margin-top: 0 !important;
}
.gift_wrap .bottom ul li .text_box input:checked + p{
  background:#0176fc;
  border:1px solid #0176fc;
}
.gift_wrap .bottom ul li .text_box input:checked + p::after{
  content:"\e92a";
  font-family: "xeicon";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  color:#fff;
}

.gift_wrap .bottom ul li .text_box label{
  font-size: 3.5rem;
  /* font-size: 4rem; */
}
.gift_wrap .bottom ul li:first-of-type .text_box label{
  font-size: 3rem;
}
.gift_wrap .bottom ul li .text_box p{
  margin-top: 1.5rem;
  font-size: 4rem;
  font-weight: 500;
  color: #ff0038;
}
.gift_wrap .bottom ul li .text_box p strong{
  color: #FF7F00;
  font-weight: 600;
}
.gift_wrap .bottom ul li .text_box p span{
  font-weight: 400;
  font-size: 3rem;
  color: #555;
  text-decoration: line-through;
}
/* 230926 수정 */
.gift_wrap .bottom ul li .text_box p.percent{
  margin-top: 0;
  /* font-weight: 600; */
  font-size: 2.2rem;
  color: #000;
  text-decoration: line-through;
}
/* 230906추가 */
.gift_wrap .bottom .search{
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gift_wrap .bottom .search p:last-child{
  font-weight: 500;
}
.gift_wrap .bottom .search p input{
  max-width: 180px;
  height: 8rem;
  border: 1px solid #d1d1d1;
  border-radius: 1.5rem;
  text-align: center;
}
.gift_wrap .bottom .btn{
	width: 100%;
	height: 15rem;
	font-size: 5rem;
	font-weight: 600;
	color: #fff;
	border-radius: 1.5rem;
  line-height:14rem;
  border: none;
  outline: none;
	background: rgb(66,133,236);
	background: -moz-linear-gradient(0deg, rgba(66,133,236,1) 0%, rgba(12,185,251,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(66,133,236,1) 0%, rgba(12,185,251,1) 100%);
	background: linear-gradient(0deg, rgba(66,133,236,1) 0%, rgba(12,185,251,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4285ec",endColorstr="#0cb9fb",GradientType=1);
}
.gift_wrap .bottom .btn.btn-gray{
	width: 100%;
	height: 15rem;
	font-size: 5rem;
	font-weight: 600;
	color: #fff;
	border-radius: 1.5rem;
  line-height:14rem;
  border: none;
  outline: none;
	background: rgb(160,160,160);
	background: -moz-linear-gradient(0deg, rgb(130, 130, 130) 0%, rgb(160, 160, 160) 100%);
	background: -webkit-linear-gradient(0deg, rgb(130, 130, 130) 0%, rgb(160, 160, 160) 100%);
	background: linear-gradient(0deg, rgb(130, 130, 130) 0%, rgb(160, 160, 160) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4285ec",endColorstr="#0cb9fb",GradientType=1);
}
/* seclect_active */
.active{
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1) !important;
}
.active::before{
  border: 3px solid #0176fc !important;
}
@media (max-width:991.98px) {
  .gift_wrap .bottom ul li .text_box input + p{
    width: 3.6rem;
    height: 3.6rem;
    border-radius:4px;
    font-size:3.2rem;
    flex-shrink: 0;
  }

  .gift_wrap .bottom ul li .text_box label{
    font-size: 3rem;
  }
  .gift_wrap .bottom ul li:first-of-type .text_box label{
    font-size: 2.5rem;
  }
  .gift_wrap .bottom ul li .text_box p{
    font-size: 3rem;
  }
  .gift_wrap .bottom ul li .text_box p span{
    font-size: 2rem;
  }
  .gift_wrap .bottom .search p input {
    max-width: 150px;
    height: 6rem;
  }
  .gift_wrap .bottom .btn,
  .gift_wrap .bottom .btn.btn-gray{
		height: 10rem;
		font-size: 3rem;
		line-height:10rem;
	}
}
@media (max-width:767.98px) {
  .gift_wrap .bottom{
    padding: 3rem 0 5rem 0;
  }
  .gift_wrap .bottom ul{
    padding-top:3rem;
  }
  .gift_wrap .bottom ul li .img_box p{
    font-size:2.2rem;
  }
  .gift_wrap .bottom ul li .text_box > div {
    transform: translateY(-3px);
    padding-left: 5px;
  }
  .gift_wrap .bottom ul li .text_box input{
    width: 2.5rem;
    height: 2.5rem;
  }

  .gift_wrap .bottom ul li .text_box label{
    font-size: 1.8rem;
  }
  .gift_wrap .bottom ul li:first-of-type .text_box label{
    font-size: 1.8rem;
  }
  /* 2309006변경 */
  .gift_wrap .bottom ul li .text_box p{
    font-size: 2.2rem;
  }
  .gift_wrap .bottom ul li .text_box p span{
    font-size: 1.6rem;
  }

  /* 230906추가 */
  .gift_wrap .bottom ul li .text_box p.percent{
    font-size: 2rem;
  }
  .gift_wrap .bottom ul li .text_box p.percent span {
    font-size: 1.8rem;
  }

  .gift_wrap .bottom .search p input {
    max-width: 8rem;
    height: 5rem;
  }
  .gift_wrap .bottom .btn,
  .gift_wrap .bottom .btn.btn-gray{
		height: 8rem;
		font-size: 1.9rem;
		line-height:7rem;
		letter-spacing: -0.02em;
	}
  
}
@media (max-width:575.98px){
  .gift_wrap .bottom .inner {
    padding: 0 15px;
  }
}


.gift_wrap_2{
  position:relative; z-index:1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.gift_wrap_2::after{
  content:""; 
  z-index:-1;
  position:absolute;
  top:0; left:50%; right:50%;
  margin-left:-50vw; margin-right:-50vw; 
  height:100%;
  background:#fffaeb;
}
.gift_wrap_2 .top{
  text-align: center;
}
.gift_wrap_2 .top img{
  max-width: 960px;
  width: 100%;
}
.gift_wrap_2 p{
  margin: 0 auto;
  max-width: 840px;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  text-align: center;
  font-weight: 500;
}
.gift_wrap_2 p strong{
  position: relative;
}
.gift_wrap_2 p strong::after{
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0; left: 0;
  width: 100%;
  height: 50%;
  background: #ffefab;
}
.gift_wrap_2 .btn_box{
  text-align: center;
}
.gift_wrap_2 .btn_2{
  margin-bottom: 8rem;
  max-width: 960px;
  height: 15rem;
  width: 100%;
  border-radius: 1.5rem;
  font-size: 5rem;
	font-weight: 600;
	color: #fff;
  border: none;
  outline: none;
  background: rgb(19,19,28);
  background: -moz-linear-gradient(0deg, rgba(19,19,28,1) 0%, rgba(61,62,90,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(19,19,28,1) 0%, rgba(61,62,90,1) 100%);
  background: linear-gradient(0deg, rgba(19,19,28,1) 0%, rgba(61,62,90,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#13131c",endColorstr="#3d3e5a",GradientType=1);
}
@media (max-width:991.98px) {
  .gift_wrap_2 .btn_2{
		height: 10rem;
		font-size: 3rem;
	}
}
@media (max-width:767.98px) {
  .gift_wrap_2 .btn_2{
		height: 8rem;
		font-size: 2rem;
	}
}



/**/
#gift_detail_pop .pop_contents .inner{
  background:#f8f8f8;
}
#gift_detail_pop .pop_contents .inner .title{
  justify-content: center;
}
#gift_detail_pop{
  overflow-y: hidden !important;
}
#gift_detail_pop .gift_detail{
  position: relative;
  max-height: 450px;
  overflow-y: scroll;
  padding:3rem 2rem 0rem 2rem;
}
#gift_detail_pop .gift_detail .expiration_date{
  position: absolute;
  top: calc(50% + 95px); left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 600;
  color: #FF7F00;
}
#gift_detail_pop .gift_detail .thum{
  border:1px solid #ddd;
  overflow:hidden;
  border-radius:1rem;
  max-width:26rem;
  margin:0 auto;
  margin-bottom:3rem;
}
#gift_detail_pop .gift_detail .thum img{
  width:100%;
}
#gift_detail_pop .gift_detail .notice{
  margin-top: 6rem;
  color:#ff0038;
  font-size:1.8rem;
  font-weight:500;
  display:flex;
}
#gift_detail_pop .gift_detail .notice span{
  width:10px;
  flex-shrink: 0;
}
#gift_detail_pop .gift_detail dl{
  margin-top:2rem;
}
#gift_detail_pop .gift_detail dl dt{
  font-size:1.8rem;
  font-weight:500;
  color:#222;
  margin-bottom:.5rem;
}
#gift_detail_pop .gift_detail dl dd{
  display:flex;
  font-size:1.6rem;
  color:#666;
  line-height:1.6;
}
#gift_detail_pop .gift_detail dl dd::before{
  content:"-";
  flex-shrink: 0;
  width:10px;
}
@media (max-width:1199.98px) {
  #gift_detail_pop .gift_detail .expiration_date{
    top: calc(50% + 85px);
  }
}
@media (max-width:991.98px) {
  #gift_detail_pop .gift_detail .expiration_date{
    top: calc(50% + 65px);
  }
}
@media (max-width:767.98px) {
  #gift_detail_pop .gift_detail .expiration_date{
    top: calc(50% + 50px);
  }
}



.gift_btn_box{
  display:flex;
  margin-left:-5px;
  margin-right:-5px;
}
.gift_btn_box > p{
  width:100% !important;
  padding:0px 5px;
}
.gift_btn_box > p .btn-gray{

}




/* 답례품 신청 - 주문 폼 선택 */
.order_select_wrap .inner{
  padding: 5rem 3rem;
  background:#f0ede8;
}
.order_select_wrap .inner > .title{
  text-align: center;
}
.order_select_wrap .select_product .title{
  display: flex;
  align-items: center;
}
.order_select_wrap .select_product .title img{
  max-width: 4rem;
  width: 100%;
  margin-right: 10px;
  flex-shrink: 0;
}
.order_select_wrap .select_product .notice_box{
	color:#e7841a;
	margin-bottom:15px;
	font-size:2.4rem;
}
.order_select_wrap .select_product .list{
  padding: 5rem 3rem;
  background: #fff;
}
.order_select_wrap .select_product .list p{
  position: relative;
  padding-left: 2rem;
  font-size: 3.8rem;
}
.order_select_wrap .select_product .list p::before{
  content: '';
  position: absolute;
  left: 0; top: 2.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #bba780;
}

.order_select_wrap .btns .button{
  display: flex;
  justify-content: space-between;
}
.order_select_wrap .btns a,
.order_select_wrap .btns button{
  outline: none;
  border: none;
  display: inline-block;
  width: 48.8%;
  padding: 3rem 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
  border-radius: 2rem;
}
.order_select_wrap .btns a:first-of-type,
.order_select_wrap .btns button:first-of-type{
  background: #1f5b3f;
}
.order_select_wrap .btns a:last-of-type,
.order_select_wrap .btns button:last-of-type{
  background: #59308c;
}

.order_select_wrap .btns .info{
  padding: 0 3rem;
}
.order_select_wrap .btns .info p{
  position: relative;
  padding: 3rem 0;
  padding-left: 5rem;
  font-size: 3.4rem;
  color: #555555;
  letter-spacing: -.5px;
}
.order_select_wrap .btns .info p:first-child{
  border-bottom: 1px solid #c5c5c5;
}
.order_select_wrap .btns .info p strong{
  display: block;
  margin-bottom: 5px;
  color: #000;
  font-size: 3.8rem;
}
.order_select_wrap .btns .info p::before{
  content: '';
  position: absolute;
  left: 0; top: 4rem;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 4rem 4rem;
}
.order_select_wrap .btns .info p:first-child::before{
  background-image: url(../_img/gift/order_select_icon2.png);
}
.order_select_wrap .btns .info p:last-child::before{
  background-image: url(../_img/gift/order_select_icon3.png);
}
@media (max-width:991.98px) {
  .order_select_wrap .select_product .title img{
    max-width: 3.5rem;
  }
  .order_select_wrap .select_product .list p,
  .order_select_wrap .btns .info p strong{
    font-size: 3rem;
  }
  .order_select_wrap .select_product .list p::before{
    top: 1.6rem;
    width: .8rem;
    height: .8rem;
  }
  .order_select_wrap .btns .info p{
    padding-left: 4rem;
    font-size: 2.5rem;
  }
  .order_select_wrap .btns .info p::before{
    top: 3.5rem;
    width: 3rem;
    height: 3rem;
    background-size: 3rem 3rem;
  }

  .order_select_wrap .btns a,
  .order_select_wrap .btns button{
    padding: 2rem 0;
  }
}
@media (max-width:767.98px) {
  .order_select_wrap .inner{
    padding: 3rem;
  }

  .order_select_wrap .select_product .title img{
    max-width: 3rem;
    margin-top: 2px;
    margin-right: 5px;
  }
    .order_select_wrap .select_product .notice_box{
		font-size:1.8rem;
	}
  .order_select_wrap .select_product .list{
    padding: 3rem;
  }
  .order_select_wrap .select_product .list p,
  .order_select_wrap .btns .info p strong{
    font-size: 2.5rem;
  }
  .order_select_wrap .select_product .list p::before{
    top: 1.5rem;
    width: .6rem;
    height: .6rem;
  }
  
  .order_select_wrap .btns .info p{
    padding: 2.5rem 0;
    padding-left: 4rem;
    font-size: 2.2rem;
  }
  .order_select_wrap .btns .info p::before{
    top: 3rem;
  }

  .order_select_wrap .btns a,
  .order_select_wrap .btns button{
    padding: 1.5rem 0;
  }
}
@media (max-width:575.98px) {
  .order_select_wrap .select_product .title img{
    max-width: 2.5rem;
    margin-right: 5px;
  }
  .order_select_wrap .select_product .list p,
  .order_select_wrap .btns .info p strong{
    padding-left: 1.5rem;
    font-size: 2rem;
  }
  .order_select_wrap .select_product .list p::before{
    top: 1.2rem;
    width: 5px;
    height: 5px;
  }
  .order_select_wrap .btns .info p{
    padding-left: 3rem;
    font-size: 1.8rem;
  }
  .order_select_wrap .btns .info p::before{
    width:2.5rem ;
    height:2.5rem ;
    background-size:2.5rem 2.5rem ;
  }
}




/* 직접주문 & 상담주문 공통 */
#order_list,
.order_info_wrap .infomation{
  position: relative;
  padding: 0 30px;
  background: #fff;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
}
#order_list > li,
.order_info_wrap .infomation > div{
  padding: 5rem 0;
}
#order_list > li + li,
.order_info_wrap .infomation > div+ div{
  border-top: 1px solid #ddd;
}
#order_list .headcount .productName{
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
  font-size: 3.8rem;
}
#order_list .headcount .productName::before{
  content: '';
  position: absolute;
  left: 0; top: 2.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #bba780;
}
#order_list li .headcount div{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#order_list li .headcount div p{
  width: 50%;
  text-align: right;
}
#order_list li .headcount .title{
  text-align: left;
}
#order_list li .headcount .title{
  font-size: 4rem;
  font-weight: 600;
}
#order_list li .headcount .num input{
  max-width: 42.85%;
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  padding: 5px;
  margin-right: 1rem;
  text-align:right;
}

#order_list li .headcount .num .noneborder{
  border:0 !important;
  outline:none;
}

#order_list li .headcount .desc{
  font-size: 4.4rem;
  font-weight: 500;
}
#order_list li .headcount p span{
  margin-right: 1rem;
  font-weight: 600;
}
#order_list li .headcount .price{
  margin-top: 5px;
  color: #0175fc;
}

#order_list li.total,
.order_info_wrap .pay_info{
  padding-bottom: 11rem;
}
#order_list li.total .total_price,
.order_info_wrap .infomation .total_price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 5rem;
  font-weight: 600;
}
#order_list li.total .info,
.order_info_wrap .infomation .info{
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  background: #000;
}
#order_list li.total .info i,
.order_info_wrap .infomation .info i{
  margin-right: 10px;
}

#order_btn_box{
  display: flex;
  margin-top: 7rem;
  margin-left: -5px;
  margin-right: -5px;
}
#order_btn_box > p {
  width: 100% !important;
  padding: 0px 5px;
}
#order_btn_box .btn {
  width: 100%;
  height: 15rem;
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
  border-radius: 1.5rem;
  line-height: 14rem;
  border: none;
  outline: none;
  background: rgb(66,133,236);
  background: -moz-linear-gradient(0deg, rgba(66,133,236,1) 0%, rgba(12,185,251,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(66,133,236,1) 0%, rgba(12,185,251,1) 100%);
  background: linear-gradient(0deg, rgba(66,133,236,1) 0%, rgba(12,185,251,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4285ec",endColorstr="#0cb9fb",GradientType=1);
}
#order_btn_box .btn.btn-gray {
  background: rgb(160,160,160);
  background: -moz-linear-gradient(0deg, rgb(130, 130, 130) 0%, rgb(160, 160, 160) 100%);
  background: -webkit-linear-gradient(0deg, rgb(130, 130, 130) 0%, rgb(160, 160, 160) 100%);
  background: linear-gradient(0deg, rgb(130, 130, 130) 0%, rgb(160, 160, 160) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4285ec",endColorstr="#0cb9fb",GradientType=1);
}
@media (max-width:991.98px) {
  #order_list .headcount .productName{
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  #order_list .headcount .productName::before{
    top: 1.6rem;
    width: .8rem;
    height: .8rem;
  }
  #order_list li .headcount .title{
    font-size: 3rem;
  }
  #order_list li .headcount .desc{
    font-size: 3.5rem;
  }

  #order_list li.total .total_price,
  .order_info_wrap .infomation .total_price{
    font-size: 4rem;
  }
  #order_list li.total .info,
  .order_info_wrap .infomation .info{
    font-size: 3rem;
  }

  #order_btn_box{
    margin-top: 5rem;
  }
  #order_btn_box .btn, 
  #order_btn_box .btn.btn-gray {
    height: 10rem;
    font-size: 3rem;
    line-height: 10rem;
  }
}
@media (max-width:767.98px) {
  #order_list > li {
    padding: 3.5rem 0;
  }
  #order_list .headcount .productName,
  #order_list li .headcount .title,
  #order_list li .headcount p span{
    font-size: 2.5rem;
  }
  #order_list .headcount .productName{
    margin-bottom: 1.5rem;
  }
  #order_list .headcount .productName::before{
    top: 1.5rem;
    width: .6rem;
    height: .6rem;
  }
  #order_list li .headcount .desc{
    font-size: 3rem;
  }

  #order_list li.total,
  .order_info_wrap .infomation .pay_info{
    padding-bottom: 10rem;
  }
  #order_list li.total .total_price,
  .order_info_wrap .infomation .total_price{
    font-size: 3rem;
  }
  #order_list li.total .info,
  .order_info_wrap .infomation .info{
    font-size: 2.5rem;
  }
  #order_list li.total .info i,
  .order_info_wrap .infomation .info i{
    margin-right: 10px;
  }

  #order_btn_box{
    margin-top: 3rem;
  }
  #order_btn_box .btn, 
  #order_btn_box .btn.btn-gray {
    height: 8rem;
    font-size: 1.9rem;
    line-height: 7rem;
    letter-spacing: -0.02em;
  }
}
@media (max-width:575.98px) {
  #order_list > li ,
  .order_info_wrap .infomation > div {
    padding: 2.5rem 0;
  }
  #order_list .headcount .productName{
    padding-left: 1.5rem;
    font-size: 2rem;
  }
  #order_list .headcount .productName::before{
    top: 1.2rem;
    width: 5px;
    height: 5px;
  }
  #order_list li .headcount .title{
    font-size: 2rem;
  }
  #order_list li .headcount .desc{
    font-size: 2.5rem;
  }

  #order_list li.total,
  .order_info_wrap .infomation .pay_info{
    padding-bottom: 8rem;
  }
  #order_list li.total .total_price,
  .order_info_wrap .infomation .total_price{
    font-size: 2.5rem;
  }
  #order_list li.total .info,
  .order_info_wrap .infomation .info{
    font-size: 2rem;
  }
  #order_list li.total .info i,
  .order_info_wrap .infomation .info i{
    margin-right: 5px;
  }
}
@media (max-width:440px) {
  #order_list li .headcount .desc {
    width: 47%;
    letter-spacing: -.5px;
    font-size: 2.2rem;
  }
  #order_list li .headcount .title {
    width: 53%;
    letter-spacing: -.5px;
  }
  #order_list li .headcount .num input {
    max-width: 50%;
    margin-right: 5px;
  }
  #order_list li .headcount p span {
    margin-right: 5px;
    font-size: 2.2rem;
    letter-spacing: -.5px;
  }

  #order_list li.total .total_price,
  .order_info_wrap .infomation .total_price{
    font-size: 2rem;
  }
  #order_list li.total .info,
  .order_info_wrap .infomation .info{
    font-size: 1.8rem;
  }
}


/* 직접주문 */
.order_direct_wrap .inner,
.order_info_wrap .inner{
  padding-top: 5.5rem;
  padding-bottom: 8.5rem;
  background: #f0ede8;
}
.order_direct_wrap .inner > p.title,
.order_info_wrap .inner > p.title{
  padding: 0 30px;
  text-align: center;
  font-weight: 500;
}
.order_direct_wrap .inner > p.title strong{
  display: block;
  margin-bottom: 2rem;
  font-size: 5.4rem;
}
.order_direct_wrap .contact_list{
  margin-top: 2.5rem;
}
.order_direct_wrap .contact_list p.title,
.order_info_wrap .infomation .pay_info p.title{
  font-size: 4.4rem;
  font-weight: 500;
  font-weight: bold;
}
.order_direct_wrap .contact_list p.title img,
.order_info_wrap .infomation .pay_info p.title img{
  max-width: 3.8rem;
  margin-top: -5px;
}
.order_direct_wrap .contact_list .contact_btn{
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}
.order_direct_wrap .contact_list .contact_btn button{
  outline: none;
  border: none;
  display: inline-block;
  width: 48.8%;
  padding: 3rem 0;
  text-align: center;
  font-size: 3.8rem;
  color: #fff;
  border-radius: 2rem;
}
.order_direct_wrap .contact_list .contact_btn .input{
  background: #ca9a28;
}
.order_direct_wrap .contact_list .contact_btn .file{
  background: #224070;
}
.order_direct_wrap .contact_list .contact_btn button i{
  margin-right: 5px;
}

.order_direct_wrap section{
  display: none;
}
.order_direct_wrap .input_sec li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order_direct_wrap .input_sec li + li{
  margin-top: 8px;
}
.order_direct_wrap .input_sec li div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 76.2%;
  font-size: 3.4rem;
  color: #666666;
}

.order_direct_wrap .input_sec li select,
.order_direct_wrap .input_sec li input,
.order_direct_wrap .input_sec li button{
  height: 8rem;
  border-radius: 1rem;
}
.order_direct_wrap .input_sec li select,
.order_direct_wrap .input_sec li input{
  text-align: center;
  border: 1px solid #ddd;
  color: #666666;
}
.order_direct_wrap .input_sec li select{
  padding: 1rem;
  min-width: 8rem;
  width: 9.375%;
  background:#fff;
}
.order_direct_wrap .input_sec li input{
  padding: 1.5rem;
  width: 39%;
  background: #f6f6f6;
}
.order_direct_wrap .input_sec li button{
  width: 21.42%;
  outline: none;
  border: none;
  font-size: 2.8rem;
  color: #fff;
}
.order_direct_wrap .input_sec li .add{
  background: #000f39;
}
.order_direct_wrap .input_sec li .delete{
  background: #888888;
}

.order_direct_wrap .file_sec > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.order_direct_wrap .file_sec .file_name_gift{
  width: 87.14%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order_direct_wrap .file_sec .delete,
.order_direct_wrap .file_sec .file_name_gift span,
.order_direct_wrap .file_sec .file_name_gift label{
  display: inline-block;
  padding: 1rem;
  height: 8rem;
  line-height: 5.5rem;
  font-size: 2.8rem;
  border-radius: 1rem;
}
.order_direct_wrap .file_sec .file_name_gift span{
  width: 68.3%;
  color:#666666;
  background: #f6f6f6;
  border: 1px solid #ddd;
  word-wrap: break-word; 
	display: -webkit-box; 
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
  line-height: 1.9 !important;
}
.order_direct_wrap .file_sec .file_name_gift label{
  width: 30.05%;
  font-weight: 500;
  text-align: center;
  color:#2e2e2e;
  border: 1px solid #2e2e2e;
  letter-spacing: -1px;
}
.order_direct_wrap .file_sec .xi-attachment{
  transform: rotate(-45deg);
}
.order_direct_wrap .file_sec .delete{
  width: 11.9%;
  outline: none;
  border: none;
  color: #fff;
  background: #888888;
}
.order_direct_wrap .file_sec .input-file{
  display: none;
}
@media (max-width:991.98px) {
  .order_direct_wrap .contact_list .contact_btn button{
    font-size: 3rem;
  }
  .order_direct_wrap .contact_list p.title,
  .order_info_wrap .infomation .pay_info p.title{
    font-size: 3.5rem;
  }
  .order_direct_wrap .contact_list p.title img,
  .order_info_wrap .infomation .pay_info p.title img{
    max-width: 3.5rem;
  }
}
@media (max-width:767.98px) {
  .order_direct_wrap .contact_list p.title,
  .order_info_wrap .infomation .pay_info p.title{
    font-size: 3rem;
  }
  .order_direct_wrap .contact_list p.title img,
  .order_info_wrap .infomation .pay_info p.title img{
    max-width: 3rem;
  }
  .order_direct_wrap .contact_list .contact_btn{
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  .order_direct_wrap .contact_list .contact_btn button{
    font-size: 2.5rem;
    padding: 2rem 0;
  }

  .order_direct_wrap .input_sec li div{
    font-size: 2.2rem;
  }
  .order_direct_wrap .input_sec li select,
  .order_direct_wrap .input_sec li input,
  .order_direct_wrap .input_sec li button{
    height: 6rem;
  }
  .order_direct_wrap .input_sec li select{
    min-width: 6rem;
  }
  .order_direct_wrap .input_sec li button{
    width: 21%;
    font-size: 2rem;
  }

  .order_direct_wrap .file_sec .delete,
  .order_direct_wrap .file_sec .file_name_gift span,
  .order_direct_wrap .file_sec .file_name_gift label{
    height: 6rem;
    line-height: 3.5rem;
    font-size: 2.3rem;
  }
  .order_direct_wrap .file_sec .file_name_gift span{
    line-height: 1.7 !important;
  }
}
@media (max-width:575.98px) {
  .order_direct_wrap .inner,
  .order_info_wrap .inner{
    padding-top: 4rem;
    padding-bottom: 7rem;
  }

  .order_direct_wrap .contact_list p.title,
  .order_info_wrap .infomation .pay_info p.title{
    font-size: 2.5rem;
  }
  .order_direct_wrap .contact_list p.title img,
  .order_info_wrap .infomation .pay_info p.title img{
    max-width: 2.5rem;
  }
  .order_direct_wrap .contact_list .contact_btn{
    margin-bottom: 1.5rem;
  }
  .order_direct_wrap .contact_list .contact_btn button{
    font-size: 2rem;
    padding: 1.5rem 0;
    border-radius: 1rem;
  }
  .order_direct_wrap .input_sec li div{
    width: 75%;
    font-size: 2rem;
  }
  .order_direct_wrap .input_sec li select,
  .order_direct_wrap .input_sec li input,
  .order_direct_wrap .input_sec li button{
    height: 4.5rem;
  }
  .order_direct_wrap .input_sec li select{
    padding: 5px;
  }
  .order_direct_wrap .input_sec li input {
    padding: 1rem;

  }
  .order_direct_wrap .input_sec li button{
    font-size: 1.8rem;
  }

  .order_direct_wrap .file_sec .delete,
  .order_direct_wrap .file_sec .file_name_gift span,
  .order_direct_wrap .file_sec .file_name_gift label{
    padding: 5px;
    height: 4.5rem;
    line-height: 3rem;
    font-size: 1.8rem;
  }
}
@media (max-width:440px) {
  .order_direct_wrap .inner > p.title br{
    display: none;
  }
  .order_direct_wrap .contact_list p.title ,
  .order_info_wrap .infomation .pay_info p.title {
    font-size: 2.3rem;
  }
  .order_direct_wrap .contact_list .contact_btn button {
    padding: 1rem;
    font-size: 1.8rem;
    border-radius: 1rem;
  }
  .order_direct_wrap .input_sec li div{
    font-size: 1.8rem;
  }
  .order_direct_wrap .input_sec li input {
    max-width: 35%;
    padding: 5px;
  }

  .order_direct_wrap .file_sec .delete,
  .order_direct_wrap .file_sec .file_name_gift span,
  .order_direct_wrap .file_sec .file_name_gift label{
    padding: 2px;
    line-height: 3.5rem;
    font-size: 1.6rem;
  }
  .order_direct_wrap .file_sec .file_name_gift span{
    line-height: 2.2 !important;
  }
}



/* 직접 주문 답례품 결제 정보 */
.order_info_wrap .infomation .total_price p:last-child{
  color: #0176fa;
}
.order_info_wrap .pay_info {
  padding-bottom: 17rem !important;
}
.order_info_wrap .infomation .pay_info .bank,
.order_info_wrap .infomation .pay_info .number{
  position: relative;
  padding-left: 2rem;
  margin-top: 1rem;
  font-size: 4rem;
  font-weight: 500;
  color: #a48240;
}
.order_info_wrap .infomation .pay_info .bank::before,
.order_info_wrap .infomation .pay_info .number::before{
  content: '';
  position: absolute;
  top: 2.5rem; left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #a48240;
}
.order_info_wrap .infomation .pay_info .number button{
  outline: none;
  border: none;
  padding: 7px 2rem;  
  color: #fff;
  border-radius: 1rem;
  background: #a48240;
}
.order_info_wrap .infomation .pay_info .modal_btn{
  display: flex;
  justify-content: space-between;
}
.order_info_wrap .infomation .pay_info .modal_btn a{
  display: inline-block;
  padding: 1.8rem;
  width: 49.4%;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 1rem;
}
.order_info_wrap .infomation .pay_info .modal_btn a:first-of-type{
  background: #203864;
}
.order_info_wrap .infomation .pay_info .modal_btn a:last-of-type{
  background: #da051e; 
}
.order_info_wrap .infomation .pay_info .modal_btn a i{
  margin-right: 7px;
}
@media (max-width:991.98px) {
  .order_info_wrap .pay_info {
    padding-bottom: 15rem !important;
  }
  .order_info_wrap .infomation .pay_info .bank,
  .order_info_wrap .infomation .pay_info .number{
    font-size: 3rem;
  }
  .order_info_wrap .infomation .pay_info .bank::before,
  .order_info_wrap .infomation .pay_info .number::before{
    top: 1.6rem;
    width: .8rem;
    height: .8rem;
  }
  .order_info_wrap .infomation .pay_info .number button{
    padding: 5px 2rem;  
  }
  .order_info_wrap .infomation .pay_info .modal_btn a{
    font-size: 2.8rem;
  }
}
@media (max-width:767.98px) {
  .order_info_wrap .pay_info {
    padding-bottom: 12.5rem !important;
  }
  .order_info_wrap .infomation .pay_info .bank,
  .order_info_wrap .infomation .pay_info .number{
    padding-left: 1.5rem;
    font-size: 2.5rem;
  }
  .order_info_wrap .infomation .pay_info .bank::before,
  .order_info_wrap .infomation .pay_info .number::before{
    top: 1.5rem;
    width: .6rem;
    height: .6rem;
  }
  .order_info_wrap .infomation .pay_info .number button{
    padding: 3px 2rem;  
  }
  .order_info_wrap .infomation .pay_info .modal_btn a{
    padding: 1.5rem;
    font-size: 2rem;
  }
}
@media (max-width:575.98px) {
  .order_info_wrap .pay_info {
    padding-bottom: 11rem !important;
  }
  .order_info_wrap .infomation .pay_info .bank,
  .order_info_wrap .infomation .pay_info .number{
    font-size: 2rem;
  }
  .order_info_wrap .infomation .pay_info .bank::before,
  .order_info_wrap .infomation .pay_info .number::before{
    top: 1.2rem;
    width: 5px;
    height: 5px;
  }
  .order_info_wrap .infomation .pay_info .number button{
    padding: 3px 1.5rem;  
  }
  .order_info_wrap .infomation .pay_info .modal_btn a{
    padding: 1.5rem 5px;
    font-size: 1.8rem;
  }
}
@media (max-width:470px) {
  .order_info_wrap .infomation .pay_info .number button{
    font-size: 1.6rem !important;
    padding: 3px 1rem;  
    border-radius: 5px;
  }
  .order_info_wrap .infomation .pay_info .modal_btn {
    display: block;
  }
  .order_info_wrap .infomation .pay_info .modal_btn a{
    width: 100%;
  }
  .order_info_wrap .infomation .pay_info .modal_btn a:last-of-type{
    margin-top: 5px;
  }
}




/* 상담주문 */
.order_indirect_wrap .inner{
  padding-top: 5.5rem;
  padding-bottom: 8.5rem;
  background: #f0ede8;
}
.order_indirect_wrap .inner > p.title{
  padding: 0 30px;
  text-align: center;
  font-weight: 500;
}
.order_indirect_wrap .inner > p.title strong{
  display: block;
  margin-bottom: 2rem;
  font-size: 5.4rem;
}
@media (max-width:575.98px) {
  .order_direct_wrap .inner{
    padding-top: 4rem;
    padding-bottom: 7rem;
  }
}
@media (max-width:440px) {
  .order_direct_wrap .inner > p.title br{
    display: none;
  }
}



/* 신청완료 */
.order_finish_wrap .inner{
  padding: 0 30px;
  padding-bottom: 8rem;
  background: #fffaeb;
}
.order_finish_wrap .btn {
  width: 100%;
  height: 15rem;
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
  border-radius: 1.5rem;
  line-height: 14rem;
  border: none;
  outline: none;
  background: rgb(62,64,91);
  background: linear-gradient(180deg, rgba(62,64,91,1) 0%, rgba(19,19,28,1) 100%);
}
.order_finish_wrap .info{
  padding: 4rem 0;
  text-align: center;
  font-weight: 500;
}
.order_finish_wrap .info strong{
  z-index: 1;
  position: relative;
  font-weight: 600;
}
.order_finish_wrap .info strong::after{
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 47%;
  bottom: 0; left: 0;
  background: #ffefab;
}
@media (max-width:991.98px) {
  .order_finish_wrap .btn {
    height: 10rem;
    font-size: 3rem;
    line-height: 10rem;
  }
}
@media (max-width:767.98px) {
  .order_finish_wrap .inner{
    padding-bottom: 6rem;
  }
  .order_finish_wrap .btn{
    height: 8rem;
    font-size: 1.9rem;
    line-height: 7rem;
    letter-spacing: -0.02em;
  }
}
@media (max-width:575.98px) {
  .order_finish_wrap .info{
    padding: 3rem 0;
  }
}
@media (max-width:420px) {
  .order_finish_wrap .info br{
    display: none;
  }
}


/* 답례품 이미지 확인 , 유의사항 모달 공통 */
#imgCheck_modal .modal-content ,
#notice_modal .modal-content {
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%) !important;
  overflow: unset;
}
#imgCheck_modal .inner,
#notice_modal .inner{
  padding: 7rem 3rem;
  text-align: center;
  color: #000;
  background: #f8f8f8;
  border-radius: 4rem;
}
#imgCheck_modal .inner h4,
#notice_modal .inner h4{
  position: relative;
  border-bottom: 1px solid #dfdfdf;
}
#imgCheck_modal .inner .close,
#notice_modal .inner .close{
  position: absolute;
  top: -4.6rem; right: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 50%;
  color: #fff;
  background: #374c47;
  opacity: 1;
}
@media (min-width: 576px){
  #imgCheck_modal .modal-dialog ,
  #notice_modal .modal-dialog {
    max-width: 920px;
  }
}
@media (max-width: 991.98px){
  #imgCheck_modal .inner,
  #notice_modal .inner{
    padding: 5rem 3rem;
  }
  #imgCheck_modal .inner .close,
  #notice_modal .inner .close{
    top: -4.25rem;
    width: 8.5rem;
    height: 8.5rem;
  }
}
@media (max-width: 767.98px){
  #imgCheck_modal .inner,
  #notice_modal .inner{
    padding: 3rem;
  }
  #imgCheck_modal .inner .close,
  #notice_modal .inner .close{
    top: -3.5rem;
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 575.98px){
  #imgCheck_modal .inner .close,
  #notice_modal .inner .close{
    top: -2.5rem;
    width: 5rem;
    height: 5rem;
  }
}


/* 답례품 이미지 확인 모달 */
#imgCheck_modal .inner h4 p{
  width: 100%;
  position: absolute;
  bottom: -4.5rem; 
  text-align: center;
  color: #222;
}
#imgCheck_modal .inner .img_con{
  margin: 0 auto;
  max-width: 700px;
  width: 80%;
  overflow-y: auto;
  height: 700px;
}
#imgCheck_modal .inner .img{
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
}

.cnt_txt {
  display:none; 
  border-radius:2rem;
  font-size:4rem;
  font-weight:500;
  text-align:center;
  background:#eaeaea;
  padding:3rem;
  margin-top:1rem;
}

@media (max-width: 991.98px){
  #imgCheck_modal .inner .img_con{
    height: 500px;
  }
}
@media (max-width: 767.98px){
  #imgCheck_modal .inner h4 p {
    bottom: -4.2rem;
  }
}
@media (max-width: 575.98px){
  #imgCheck_modal .inner h4 p {
    bottom: -4.2rem;
  }
  #imgCheck_modal .inner .img_con{
    width: 100%;
    height: 450px;
  }
}


/* 유의사항 모달 */
#notice_modal .inner p{
  line-height: 1.4;
  text-align: center;
}
#notice_modal .inner .txt1 img{
  max-width: 5.5rem;
}
#notice_modal .inner .txt1 strong{
  display: block;
  text-decoration: underline;
}
#notice_modal .inner .txt2 span{
  z-index: 1;
  position: relative;
  display: inline-block;
}
#notice_modal .inner .txt2 span::after{
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0; left: 0;
  height: 50%; width: 100%;
  background: #fceeb2;
}
@media (max-width:767.98px) {
  #notice_modal .inner .txt1 img{
    max-width: 4.5rem;
  }
  .cnt_txt {
    font-size:2.5rem;
    border-radius:2rem;
    padding:2rem;
  }
}
@media (max-width:575.98px) {
  #notice_modal .inner .txt1 img{
    max-width: 3rem;
  }

  .cnt_txt {
    border-radius:1rem;
    font-size:2rem;
    font-weight:500;
    padding:2rem;
  }
}

/* 답례품 발송 예시 이미지 모달 */
#exampleModal .modal-content{
	top: 50%;
	margin: 0 auto;
	transform: translateY(-50%) !important;
	overflow: unset;
}
#exampleModal .inner{
	border-radius: 2rem;
	overflow: hidden;
	background: #fff;
}
#exampleModal .inner .top{
	display: flex;
	align-items: center;
	border-bottom: 2px solid #e5e5e5;
}
#exampleModal .inner .top h4{
	padding-left: 3rem;
	width: calc(100% - 10rem);
	font-size: 3rem;
	font-weight: bold;
}
#exampleModal .inner .top .close{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10rem; height: 10rem;
	flex-shrink: 0;
	font-size: 7rem;
	color: #999999;
	border-left: 2px solid #e5e5e5;
}
#exampleModal .inner .img_con{padding: 3rem;}
#exampleModal .inner .img_con p{
	margin: 0 auto;
	padding: 2.5rem;
	max-width: 600px;
	background: #fcfcfc;
	border: 1px solid #d1d1d1;
}
@media (min-width: 576px){
	#exampleModal .modal-dialog{max-width: 650px;}
}
@media (max-width:991.98px) {
	#exampleModal .inner {border-radius: 1rem;}
	#exampleModal .inner .top h4{
		padding-left: 2rem;
		width: calc(100% - 8rem);
		font-size: 2.5rem;
	}
	#exampleModal .inner .top .close{
		width: 8rem; height: 8rem;
		font-size: 4rem;
	}
	#exampleModal .inner .img_con{padding: 2rem;}
	#exampleModal .inner .img_con p{
		padding: 2rem;
		max-width: 550px;
	}
}
@media (max-width:575.98px) {
	#exampleModal .inner{border-radius: 8px;}
	#exampleModal .inner .top h4{
		padding-left: 1.5rem;
		width: calc(100% - 5rem);
		font-size: 1.7rem;
	}
	#exampleModal .inner .top .close{
		width: 5rem; height: 5rem;
		font-size: 3.5rem;
	}
	#exampleModal .inner .img_con{padding: 1rem;}
	#exampleModal .inner .img_con p{
		padding:1rem;
		max-width: 450px;
	}
}




/*20240313*/
.gift_new_wrap{
	max-width:640px;
	margin:0 auto;
}
.gift_new_wrap.white{
	position:relative;
	z-index:1;
}
.gift_new_wrap.white::before{
	content:"";
	position:absolute;
	left:50%;
	right:50%;
	top:0;
	bottom:0;
	margin-left:-50vw;
	margin-right:-50vw;
	background:#fff;
	z-index:-1;
}

.gift_new_wrap hr.line_dot{
	margin:2rem 0;
	border-top:1px dashed #ddd;
}
.gift_new_title{
	text-align:center;
	padding:4rem 15px 2.5rem 15px;
	font-size:3.4rem;
}
.gift_new_title h4{
	font-size:1em;
	margin-bottom:2rem;
	font-weight:600;
}
.gift_new_title p{
	font-size:.8em;
	font-weight:500;
}

.gift_new_contents{
	padding:0;
}
.gift_new_wrap > .top{
	margin-left:-15px;
	margin-right:-15px;
}
.gift_new_contents > .inner{
	padding:15px;
	border-radius:1rem;
	margin-bottom:15px;
	overflow:hidden;
}
.gift_new_contents > .inner.white{
	background:#fff;
}
.gift_new_contents .title_dot{
	font-size:2rem;
	font-weight:500;
	color:#222;
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom:1rem;
}
.gift_new_contents .title_dot::before{
	content:"·";
	color:#bba780;
	width:10px;
	transform: scale(1.5);
}
.gift_new_contents .title_dot small{
	color:#ec2b2b;
	font-size:1.4rem;
	margin-left:5px;
}
.gift_new_contents .title_dot small.desc{
	color:#777;
	width:100%;
	margin-top:5px;
	padding-left:5px;
	font-size:1.5rem;
}

.gift_new_contents .text_cont1{
	font-size:2rem;
	color:#666;
}
.gift_new_contents .text_cont1.in{
	padding-left:10px;
}
.gift_new_contents .btns,
.gift_pop_btn .btns{
	display:flex;
	align-items: center;
	justify-content: center;
	height:7rem;
	font-size:2rem;
	border-radius:1rem;
	gap:0 5px;
}

.gift_new_contents .btns.btn_type1,
.gift_pop_btn .btns.btn_type1{
	background:#224170;
	color:#fff;
}
.gift_new_contents .btns.btn_type2,
.gift_new_contents .btns.btn_type2{
	background:#293f3a;
	color:#fff;
}
.gift_new_contents .btns.disabled{
	background:#999 !important;
	opacity:.8;
}

.gift_new_contents .gift_btn_box{
	margin-left:-15px;
	margin-right:-15px;
	margin-bottom:-15px;
}
.gift_new_contents  .gift_btn_box > p{
	padding:0;
}
.gift_new_contents .gift_btn_box a{
	display:flex;
	background:#0175fc;
	color:#fff;
	font-size:2.2rem;
	height:7rem;
	border-radius:0;
	font-weight:600;
}
.gift_new_contents .gift_btn_box a.gray{
	background:#919191;
}
.gift_new_contents .gift_btn_box a.black{
	background:#000;
}


.gift_apply_wrap {padding-bottom: 7rem;}
.gift_apply_wrap .gift_btn_box{
	z-index: 10;
	position: fixed;
	bottom: 0; left: 50%;
	display: flex;
	margin: 0;
	max-width: 650px;
	width: 100%;
	transform: translateX(-50%);
}
.gift_apply_wrap .gift_btn_box p{width: 50%;}
.gift_apply_wrap .gift_btn_box a.gray{
	color: #000000;
	background: #e7e7e7;
}
.gift_apply_wrap .gift_btn_box a.navy{
	background: #001a38;
}
@media (max-width:767.98px) {
	.gift_apply_wrap .gift_btn_box{
		max-width: 510px;
	}
}
@media(max-width:576.98px){
	.gift_new_contents .title_dot{
		font-size:1.6rem;
	}
	.gift_new_contents .text_cont1{
		font-size:1.6rem;
	}
	.gift_new_contents .btns,
	.gift_pop_btn .btns{
		height:5rem;
		font-size:1.6rem;
	}
	.gift_new_title {
		font-size: 2.6rem;
	}
}
@media(max-width:360px){
	.gift_new_title p br{
		display:none;
	}
}



.gift_new_contents .big_thumb{
	border:1px solid #ddd;
	border-radius:1.2rem;
	overflow:hidden;
	position:relative;
	margin-bottom:3rem;
}
.gift_new_contents .big_thumb img{
	width:100%;
}

.gift_new_contents .product_price_info{}
.gift_new_contents .product_price_info .name{
	font-size:2.4rem;
}
.gift_new_contents .product_price_info .name small{
	display:block;
	font-size:0.7em;
	color:#888;
	padding-bottom:2px;
}
.gift_new_contents .product_price_info .price{
	font-size:2.2rem;
	display:flex;
	gap:0 5px;
	align-items: flex-end;
}
.gift_new_contents .product_price_info .price strong{
	color:#0175fc;
}
.gift_new_contents .product_price_info .price span{
	text-decoration: line-through;
	color:#222;
	font-size:.8em;
	transform: translateY(-1px);
}
@media(max-width:576.98px){
	.gift_new_contents .product_price_info .name{
		font-size:1.6rem;
	}
	.gift_new_contents .product_price_info .price{
		font-size:1.5rem;
	}
}


.gift_new_contents  .product_info_type1{
	list-style:none;
	padding:0;
}
.gift_new_contents  .product_info_type1 li{
	display:flex;
	font-size:2rem;
}
.gift_new_contents  .product_info_type1 li + li{
	margin-top:5px;
}
.gift_new_contents  .product_info_type1 li strong{
	font-weight:500;
	width:13rem;
	flex-shrink: 0;
}
.gift_new_contents  .product_info_type1 li p{
	width:100%;
	font-weight:500;
	color:#666;
}
@media(max-width:576.98px){
	.gift_new_contents  .product_info_type1 li{
		font-size:1.6rem;
	}
	.gift_new_contents  .product_info_type1 li strong{
		width:9rem;
	}
}

.gift_new_contents .product_box{
	display:flex;
	align-items: center;
}
.gift_new_contents .product_box > .thumb{
	border:1px solid #ddd;
	border-radius:.7rem;
	width:18rem;
	flex-shrink: 0;
	margin-right:2rem;
	overflow:hidden;
}
.gift_new_contents .product_box > .thumb img{
	width:100%;
}
@media(max-width:576.98px){
	.gift_new_contents .product_box > .thumb{
		width:12rem;
	}
}



.gift_new_contents .form-control{
	height:5rem;
}
.gift_new_contents .formgroup{
	display:flex;
}
.gift_new_contents .formgroup .form_btn{
	flex-shrink: 0;
	margin-left:.5rem;
	height:5rem;
	display:flex;
	align-items: center;
	justify-content: center;
	color:#fff;
	background:#222;
	border-radius:1rem;
	padding:0 2rem;
	font-size:1.8rem;
	gap:0 5px;
	position:relative;
}
.gift_new_contents .formgroup .form_btn i.fcYellow{
	color:#fff843;
	position:absolute;
	left:50%;
	top:0;
	transform:translate(-50%,-140%);
	color:red;
}
@media(max-width:576.98px){
	.gift_new_contents .formgroup .form_btn{
		font-size:1.5rem;
	}
}

.gift_new_contents  .scroll_box{
	border:1px solid #ddd;
	border-radius:.8rem;
	padding:2rem;
	font-size:1.8rem;
	min-height:22rem;
	overflow: auto;
}
@media(max-width:576.98px){
	.gift_new_contents  .scroll_box{
		padding:1.5rem;
		font-size:1.5rem;
		min-height:18rem;
	}
}



.gift_new_contents .etc_type1{
	display:flex;
	justify-content: space-between;
	align-items: center;
	font-size:1.5rem;
	color:#777;
}
.gift_new_contents .etc_type1 a{
	border:1px solid #222;
	border-radius:.8rem;
	padding:5px;
	font-size:1.6rem;
	color:#222;
	background:#fff;
	font-weight:500;
	display:flex;
	justify-content: center;
	box-shadow: 1px 1px 5px rgba(0,0,0,.1);
	margin-left:1rem;
	flex-shrink: 0;
	width:10rem;
}
@media(max-width:576.98px){
	.gift_new_contents .etc_type1{
		font-size:1.3rem;
		line-height:1.2;
	}
	.gift_new_contents .etc_type1 a{
		font-size:1.4rem;
		width:8rem;
	}
}



.gift_new_contents .write_type{
	display:flex;
	gap:0 10px;
}
.gift_new_contents .write_type .btns{
	width:100%;
}







.gift_new_contents .number_list{}
.gift_new_contents .number_list p.tit{
	font-size:2rem;
	text-align:center;
	padding:1rem;
	background:#f5f5f5;
	font-weight:600;
}
.gift_new_contents .number_list table{
	width:100%;
}
.gift_new_contents .number_list table td,
.gift_new_contents .number_list table th{
	border:1px solid #ddd;
	text-align:center;
	padding:5px 15px;
	font-size:1.8rem;
	font-weight:400;
}
.gift_new_contents .number_list table td input{
	border:none;
	outline: none;
	width:100%;
	font-size:1.8rem;
	padding:5px;
}


.gift_new_contents .title_amount_group{
	display:flex;
	justify-content: space-between;
	font-size:2rem;
}
.gift_new_contents .title_amount_group > div{
	display:flex;
	align-items: center;
	gap:0 5px;
}
.gift_new_contents .title_amount_group > div input{
	width:8rem;
	text-align:right;
	font-size:1.8rem;
	font-weight:500;
}
@media(max-width:576.98px){
	.gift_new_contents .title_amount_group{
		display:flex;
		justify-content: space-between;
		font-size:1.5rem;
	}
	.gift_new_contents .title_amount_group > div input{
		width:6rem;
		font-size:1.5rem;
	}
}


.gift_new_contents .price_group{
	display:flex;
	justify-content: space-between;
	align-items: center;
	font-size:2rem;
}
.gift_new_contents .price_group .price.b{
	color:#0175fc;
}
.gift_new_contents .price_group.s .price,
.gift_new_contents .price_group span{
	font-weight:400;
	color:#666;
}


@media(max-width:576.98px){
	.gift_new_contents .price_group{
		font-size:1.6rem;
	}
	.gift_new_contents .number_list p.tit{
		font-size:1.8rem;
	}
	.gift_new_contents .number_list table td, .gift_new_contents .number_list table th{
		font-size:1.6rem;
	}
}



.gift_new_contents .file_group_box{
	display:flex;
	gap:0 5px;
}
.gift_new_contents .file_group_box input::file-selector-button {
	display: none;
}

.gift_new_contents .file_group_box label,
.gift_new_contents .file_group_box .file_delete{
	display:flex;
	align-items: center;
	justify-content: center;
	height:5rem;
	flex-shrink: 0;
	font-size:1.8rem;
	width:12rem;
	border-radius:5px;
	border:1px solid #222;
	font-weight:500;
	gap:0 5px;
	cursor: pointer;
}
.gift_new_contents .file_group_box .file_delete{
	background:#888;
	border:1px solid #888;
	color:#fff;
	width:7rem;
}
@media(max-width:576.98px){
	.gift_new_contents .file_group_box label,
	.gift_new_contents .file_group_box .file_delete{
		height:5rem;
		font-size:1.3rem;
		width:8rem;
		cursor: pointer;
	}
	.gift_new_contents .file_group_box .file_delete{
		width:4rem;
	}
	.gift_new_contents .file_group_box label img{
		max-width:1.5rem !important;
	}
}


.gift_new_contents  .bottom_notice{
	background:#000;
	text-align:center;
	padding:10px;
	color:#fff;
	font-size:1.6rem;
	display:flex;
	align-items: center;
	justify-content: center;
	gap:4px;
	margin-left:-15px;
	margin-right:-15px;
	margin-bottom:-15px;
	margin-top:3rem;
}
@media(max-width:576.98px){
	.gift_new_contents  .bottom_notice{
		padding:8px;
		font-size:1.3rem;
	}
}



.gift_new_contents .payment_type{
	display:flex;
	gap:0 8px;
}
.gift_new_contents .payment_type > p{
	position:relative;
	overflow:hidden;
	width:calc(100%/3);
}
.gift_new_contents .payment_type > p input{
	position:absolute;
	opacity:0;
	left:0;
	top:0;
}
.gift_new_contents .payment_type > p > label{
	display:flex;
	height:6rem;
	width:100%;
	align-items: center;
	justify-content: center;
	text-align:center;
	background:#fff;
	border:1px solid #293f3a;
	color:#293f3a;
	border-radius:.8rem;
	font-size:1.8rem;
	line-height:1.1;
	font-weight:500;
	cursor: pointer;
}
.gift_new_contents .payment_type > p > input:checked + label{
	background:#293f3a;
	color:#fff;
}
@media(max-width:576.98px){
	.gift_new_contents .payment_type > p > label{
		height:4.5rem;
		border-radius:.5rem;
		font-size:1.4rem;
	}
}




.gift_new_contents .agree_group{
	display:flex;
}
.gift_new_contents .agree_group > p{
	overflow:hidden;
}
.gift_new_contents .agree_group > p input{
	position:absolute;
	opacity:0;
	width:0;
	height:0;
}
.gift_new_contents .agree_group > p label{
	display:inline-block;
	position:relative;
	padding-left:30px;
	font-size:1.6rem;
	cursor: pointer;
}
.gift_new_contents .agree_group > p label::before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	height:24px;
	width:24px;
	background:#fff;
	border:1px solid #222;
	border-radius:3px;
}
.gift_new_contents .agree_group > p .privacy_detail_pop{
	font-size:1.6rem;
}
.gift_new_contents .agree_group > p input:checked + label::after{
	content:"";
	font-family: "xeicon";
	position:absolute;
	left:2px;
	top:-3px;
	font-size:20px;
	color:#0175fc;
}
@media(max-width:576.98px){
	.gift_new_contents .payment_type > p > label{
		height:4.5rem;
		border-radius:.5rem;
		font-size:1.4rem;
	}
}



.gift_new_contents .finish_notice_box{
	background:#f5f5f5;
	border-radius:.8rem;
	padding:3rem 2rem;
	text-align:center;
	margin-top:3rem;
	font-size:2rem;
}
.gift_new_contents .finish_notice_box strong{
	background: linear-gradient(to top, #faedb0 40%, transparent 40%);
}
@media(max-width:576.98px){
	.gift_new_contents .agree_group > p label{
		font-size:1.3rem;
	}
	.gift_new_contents .agree_group > p .privacy_detail_pop{
		font-size:1.3rem;
	}
	.gift_new_contents .finish_notice_box{
		padding:2rem 2rem;
		text-align:center;
		font-size:1.6rem;
	}
}


.gift_new_contents .inner_list > ul{
	list-style:none;
	padding:0;
	display:flex;
	flex-wrap:wrap;
	margin-left:-5px;
	margin-right:-5px;
}
.gift_new_contents .inner_list > ul > li{
	width:calc(100%/2);
	padding:5px;
	margin-bottom:4rem;
	overflow:hidden;
	position:relative;
}
.gift_new_contents .inner_list > ul > li input{
	position:absolute;
	width:0;
	height:0;
	opacity:0;
}
.gift_new_contents .inner_list > ul > li .box{
	display:block;
	color:#222;
}
.gift_new_contents .inner_list > ul > li .box .thumb{
	border:1px solid #ddd;
	border-radius:.8rem;
	overflow:hidden;
	margin-bottom:1.5rem;
}
.gift_new_contents .inner_list > ul > li input:checked + .box .thumb{
	border:1px solid #0175fc;
	box-shadow:1px 1px 10px rgba(0,0,0,.1)
}
.gift_new_contents .inner_list > ul > li .box .thumb img{
	width:100%;
}
.gift_new_contents .inner_list > ul > li .box .title{
	font-size:1.8rem;
	margin-bottom:1rem;
  min-height:8.4rem;
}
.gift_new_contents .inner_list > ul > li .box .price{
	font-size:2rem;
	display:flex;
	align-items: center;
	gap:0 10px;
}
.gift_new_contents .inner_list > ul > li .box .price strong{
	color:#0175fc
}
.gift_new_contents .inner_list > ul > li .box .price span{
	text-decoration: line-through;
	font-size:.8em;
}
@media(max-width:576.98px){
	.gift_new_contents .inner_list > ul > li .box .title{
		font-size:1.5rem;
	}
	.gift_new_contents .inner_list > ul > li .box .price{
		font-size:1.7rem;
	}
  .gift_new_contents .inner_list > ul > li .box .title{
		min-height:7rem;
	}
}

.gift_new_contents .inner_list > ul > li .btn_box{
	display:flex;
	margin-top:1.5rem;
	gap:0 8px;
}
.gift_new_contents .inner_list > ul > li .btn_box > label,
.gift_new_contents .inner_list > ul > li .btn_box > a,
.gift_new_contents .inner_list > ul > li .btn_box > button{
	width:100%;
	display:flex;
	font-size:1.6rem;
	align-items: center;
	justify-content: center;
	height:4.5rem;
	color:#fff;
	font-weight:500;
	border-radius:5px;
}
.gift_new_contents .inner_list > ul > li .btn_box .btn_order1{
	border:1px solid #777777;
	color:#000000;
	position:relative;
	z-index:1;
}
.gift_new_contents .inner_list > ul > li .btn_box .btn_order1:active,
.gift_new_contents .inner_list > ul > li .btn_box .btn_order1:hover{

}
.gift_new_contents .inner_list > ul > li .btn_box .btn_order2{
	border:1px solid #003e85;
	color:#fff843;
	background:#003e85;
}
.gift_new_contents .inner_list > ul > li .btn_box .btn_order2:active,
.gift_new_contents .inner_list > ul > li .btn_box .btn_order2:hover{

}


/**/
.gift_new_pop{}
.gift_new_pop > .inner {
	padding:2rem;
}
.pop_contents.gift_new_pop .inner .div-close{
	background:none;
	color:#000;
	top:20px;
	right:1.5rem;
	font-size:2.8rem;
}
@media(max-width:991.98px){
	.pop_contents.gift_new_pop .inner .div-close{
		top:23px;
	}
}

.gift_new_pop > .inner .title{
	justify-content: center !important;
}
.gift_new_pop > .inner .inner{
	padding:2rem 0 !important;
}
.gift_new_pop .tabs{
	display:flex;
	margin-left:-5px;
	margin-right:-5px;
	margin-bottom:1.5rem;
}
.gift_new_pop .tabs > p{
	width:calc(100%/3);
	padding:0px 5px;
	overflow:hidden;
}
.gift_new_pop .tabs > p input{
	position:absolute;
	left:0;
	top:0;
	opacity:0;
}
.gift_new_pop .tabs > p label{
	display:flex;
	height:4rem;
	align-items: center;
	justify-content: center;
	font-size:1.6rem;
	background:#fff;
	border:1px solid #222;
	border-radius:5px;
}
.gift_new_pop .tabs > p input:checked + label{
	background:#222;
	color:#fff;
}
.gift_new_pop .tabs_contents{
	border:1px solid #ddd;
	padding:1.5rem;
	font-size:1.6rem;
	max-height:50vh;
	overflow: auto;
}
.gift_new_pop .tabs_contents > div:not(.phrase_type1){
	display:none;
}


.gift_pop_btn{
	margin-top:2rem;
}
.gift_pop_btn .btns{
	display:flex;
	height:6rem;
	width:100%;
	align-items: center;
	justify-content: center;
	font-size:2
}
@media(max-width:576.98px){
	.gift_new_pop .tabs_contents {
		font-size: 1.4rem;
	}
	.gift_new_pop .tabs > p label {
		height: 3.6rem;
		font-size: 1.4rem;
	}
}

.gift_new_pop .icon_box{
	text-align:center;
	padding:3rem 0;
}

.gift_new_pop .info_box{
	background:#f5f5f5;
	border:1px solid #dfdfdf;
	padding:2rem;
	border-radius:1rem;
}
.gift_new_pop .info_box ul{
	list-style:none;
	padding:0;
}
.gift_new_pop .info_box ul.list_dot{}
.gift_new_pop .info_box ul.list_dot li{
	display:flex;
	gap:0 5px;
	position:relative;
	padding-left:10px;
	font-size:1.7rem;
}
.gift_new_pop .info_box ul.list_dot li::before{
	content:"";
	position:absolute;
	left:0;
	top:10px;
	width:4px;
	height:4px;
	background:#bba780;
	border-radius:100%;
}

.gift_new_pop .scroll_box{
	padding:2rem;
	border:1px solid #ddd;
	border-radius:10px;
	background:#f5f5f5;
	max-height:50vh;
	overflow:auto;
}

.gift_new_pop .coupon_detail{
	border:1px solid #ddd;
	border-radius:10px;
	padding:2rem;
}
.gift_new_pop .coupon_detail .coupon_img{
	width:100%;
	margin:5px 0;
}

.form-control-gift{
	border: 1px solid #ddd;
    border-radius: 0.8rem;
    padding: 2rem;
    font-size: 1.8rem;
    height: 22rem;
    overflow: auto;
	width:100%;
	outline:none;
}
.form-control-gift:disabled{
	background:#f2f2f2;
}

#input_phone_check{
	height:auto !important;
}
#input_phone_check textarea{
	border: 1px solid #ddd;
    border-radius: 0.8rem;
    padding: 2rem;
    font-size: 1.8rem;
    min-height: 22rem;
    overflow: auto;
	width:100%;
	outline:none;
}


.input_phone_checkButton{
	font-size:2rem;
}
.input_phone_checkButton small{
	color:#ff2d2d;
	font-weight:600;
}
@media(max-width:576.98px){
	#input_phone_check textarea{
		font-size: 1.6rem;
		min-height: 18rem;
	}
}

.number_scroll_box{
	max-height:481px;
	overflow-y: auto;
}
.number_list_detail{
	border:0 !important;
	padding:0 !important;
	border-radius:0 !important;
	overflow-y:auto;
	max-height:60vh;
}
.number_list_detail .number_table{
	width:100%;
}
.number_list_detail .number_table th,
.coupon_detail .number_table td{
	border: 1px solid #ddd;
    text-align: center;
    padding: 5px 15px;
    font-size: 1.8rem;
	background:#f5f5f5;
}
.number_list_detail .number_table th{
	font-weight:400;
}
.coupon_detail .number_table input{
	border:1px solid #ddd;
	width:100%;
	padding:3px 15px;
	outline:none;
}
.coupon_detail_btns{
	margin-top:1rem;
}
.coupon_detail_btns a{
	display:flex;
	width:100%;
	height:5rem;
	color:#fff;
	background:#0175fc;
	font-size:1.6rem;
	align-items: center;
	justify-content: center;
	border-radius:5px;
} 


.privacy_pop_container .t1{
	font-weight:600;
}
.privacy_pop_container .t2{
	font-weight:500;
	margin-bottom:1rem;
	padding-top:2rem;
}
.privacy_pop_container .desc{
	font-size:1.4rem;
	margin-bottom:1rem;
}
.privacy_pop_container .bellet_1,
.privacy_pop_container .bellet_2{
	display:flex;
	font-size:1.4rem;
	margin-bottom:5px;
}
.privacy_pop_container .bellet_1 span,
.privacy_pop_container .bellet_2 span{
	width:2rem;
	flex-shrink: 0;
}
.privacy_pop_container .bellet_2{
	padding-left:2rem;
}


.gift_new_contents .notice_dot{
	font-size:1.5rem;
	border-radius:.8rem;
	margin-bottom:1.5rem;
	color:#777;
}
.gift_new_contents .notice_dot p{
	display:flex;
	padding-left:1.3rem;
	align-items: center;
	gap:0 5px;
}
.gift_new_contents .notice_dot p i{
	color:#bba780;
}



/**/
.input_file_form{
	display:flex;
	gap:5px;
}
.input_file_form label{
	width:12rem;
	height:5rem;
	flex-shrink: 0;
	background:#000;
	display:flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
    font-size: 1.8rem;
	border-radius: 1rem;
	color:#fff;
	cursor: pointer;
}
.input_file_form input{
	width:100%;
	line-height:4.8rem;
}
.input_file_form input::file-selector-button {
	display: none !important;
}

.form-unit{
	position:relative;
}
.form-unit input{
	padding-right:3rem;
}
.form-unit span.unit{
	position:absolute;
	right:1rem;
	top:50%;
	transform:translateY(-50%);
	font-size:1.6rem;
	color:#666;
	z-index:1;
}




.tel_num_confirm{
	background:#fff;
}
.tel_num_confirm::placeholder{
	color:#ec2b2b;
}


.btn_dels {color:#ec2b2b; font-weight:800;}



.gift_new_pop > .inner .inner .notice1{
	color:#0175fc;
	font-size:2rem;
	font-weight:600;
	margin-bottom:1rem;
	margin-top:-1rem;
}
@media(max-width:767.98px){
	.gift_new_pop > .inner .inner .notice1{
		font-size:1.8rem;
	}
}