.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 .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 .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;
  }
}

