.hidden {
  overflow: hidden;
  border: 0;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.hidden_inline {
  overflow: hidden;
  display: inline-block;
  border: 0;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

/* 장바구니 */
.buy_cart {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFE851;
}
.buy_cart::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/asset/images/ico_shopping_cart_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}

/* 수량증감 */
.control_quantity {
  display: inline-block;
  width: 75px;
  height: 25px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
}
.control_quantity .quantity {
  display: block;
  width: 33.3333333333%;
  height: 100%;
  font-size: 0.875rem;
  text-align: center;
  line-height: 23px;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.control_quantity a {
  display: block;
  width: 33.3333333333%;
  height: 100%;
  position: absolute;
  top: 0px;
}
.control_quantity a.decrease_quantity {
  left: 0px;
}
.control_quantity a.decrease_quantity::before {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background: #8f8f8f;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.control_quantity a.increase_quantity {
  right: 0px;
}
.control_quantity a.increase_quantity::before, .control_quantity a.increase_quantity::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background: #8f8f8f;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.control_quantity a.increase_quantity::after {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  -o-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 빈 화면 */
.empty .inner {
  width:100%!important;
}

.empty .no_cont {
  padding-block: 80px;
  text-align: center;
  line-height: 1.5;
}
.empty .no_cont p {
  color: #8f8f8f;
}
.empty .no_cont .icon {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-color: #ebebeb;
  position: relative;
}
.empty .no_cont .icon:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  filter: brightness(0) saturate(100%) invert(62%) sepia(0%) saturate(3121%) hue-rotate(1deg) brightness(92%) contrast(89%);
}
.empty .no_cont .icon.icon_review:after {
  background-image: url(/asset/images/ico_review.svg);
}
.empty .no_cont .icon.icon_recruit:after {
  background-image: url(/asset/images/ico_recruit.svg);
}
.empty .no_cont .icon.icon_search:after {
  background-image: url(/asset/images/ico_search.svg);
}
.empty .no_cont .icon.icon_cart:after {
  background-image: url(/asset/images/ico_cart.svg);
}
.empty .no_cont.small {
  padding-block: 40px;
}


/* 알림톡 미리보기 */
#alarm_preview_modal section {
  padding: 0;
}

#alarm_preview_modal h3 {
  font-size:1rem;
  font-weight: normal;
}
#alarm_preview_modal .txt_datail .inner {
  padding: 0;
}

/* 알림톡 미리보기-더보기 */
.txt_datail h2 {
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 20px;
}
.txt_datail h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.txt_datail span {
  display: block;
  font-size: 0.875rem;
  color: #8f8f8f;
  margin-bottom: 20px;
}
.txt_datail p {
  font-size: 1rem;
  padding-top: 16px;
  padding-bottom: 87px;
}
.txt_datail .btn_link {
  position: absolute;
  top: 0;
  right: 16px;
}
.txt_datail .save {
  position: absolute;
  top: 0;
  right: 16px;
}
.txt_datail img {
  width: 100%;
}
/* .txt_datail img:nth-last-of-type(1) {
  margin-bottom: 16px;
} */

.txt_datail.font_large .conts {
  font-size: 1.125rem;
}

.txt_datail.font_bold .conts {
  font-weight: bold;
}

/* 알림톡 미리보기-상품 */
.shop_category {
  width: 100%;
  padding: 20px 0px;
  border-bottom: 9px solid #f9f9f9;
}
.shop_category .shop_category_list {
  overflow-x: auto;
  white-space: nowrap;
}
.shop_category .shop_category_list::-webkit-scrollbar {
  display: none;
}
.shop_category .shop_category_list li {
  display: inline-block;
  margin-right: 12px;
}
.shop_category .shop_category_list li a {
  display: block;
  color: #1e1e1e;
  font-size: 0.875rem;
  text-align: center;
  position: relative;
}
.shop_category .shop_category_list li a img {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 4px;
}
.shop_category .shop_category_list li.active a {
  font-weight: bold;
}
.shop_category .shop_category_list li.active a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFE851;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}

#shop_list.all_view .title {
  padding: 12px 20px;
  box-sizing: border-box;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #FFE851;
}
#shop_list.all_view .title > img {
  display: none !important;
  width: 24px;
  height: 24px;
  vertical-align: top;
  margin-left: 4px;
}
#shop_list.all_view .img_list > li {
  position: relative;
}
#shop_list.all_view .img_list > li .txt_area {
  width: 100%;
}
#shop_list.all_view .img_list > li .txt_area .name_area span {
  display: block;
}
#shop_list.all_view .img_list > li .txt_area .price_area p {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 4px;
}
#shop_list.all_view .img_list > li .txt_area .price_area .control_quantity {
  float: left;
}
#shop_list.all_view .img_list > li .buy_cart {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
#shop_list.all_view.img_col_1 > .category > .img_list > li {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  border-bottom: 1px solid #ebebeb;
}
#shop_list.all_view.img_col_1 > .category > .img_list > li .img_area {
  width: 100px;
  height: 100px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
  margin-right: 20px;
}
#shop_list.all_view.img_col_1 > .category > .img_list > li .img_area img.img_goods {
  width: 100%;
  height: 100%;
}
#shop_list.all_view.img_col_1 > .category > .img_list > li .img_area img.ico_sale {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 2px;
  right: 2px;
  z-index: 1;
}
#shop_list.all_view.img_col_2 > .category > .img_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #ebebeb;
}
#shop_list.all_view.img_col_2 > .category > .img_list > li .img_area {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}
#shop_list.all_view.img_col_2 > .category > .img_list > li .img_area img.img_goods {
  width: 100%;
  height: 100%;
}
#shop_list.all_view.img_col_2 > .category > .img_list > li .img_area img.ico_sale {
  position: absolute;
  width: 25%;
  height: 25%;
  top: 2px;
  right: 2px;
  z-index: 1;
}
#shop_list.all_view.img_col_2 > .category > .img_list > li .buy_cart {
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
#shop_list.all_view .txt_list > li {
  width: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  display: flex;
}
#shop_list.all_view .txt_list > li .txt_area {
  display: flex;
  width: 100%;
}
#shop_list.all_view .txt_list > li .txt_area > * {
  flex: 1 1 50%;
}
#shop_list.all_view .txt_list > li .txt_area .name_area {
  margin-right: 10px;
}
#shop_list.all_view .txt_list > li .txt_area .price_area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#shop_list.all_view .txt_list > li .txt_area .price_area p {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: right;
  margin-bottom: 4px;
}
#shop_list.all_view .txt_list > li .buy_cart {
  flex-shrink: 0;
  margin-left: 20px;
}
#shop_list.all_view .all_list .img_list {
  position: relative;
}
#shop_list.all_view .all_list .img_list .txt_area {
  width: 100%;
}
#shop_list.all_view .all_list .img_list .txt_area .name_area span {
  display: block;
}
#shop_list.all_view .all_list .img_list .txt_area .price_area p {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 4px;
}
#shop_list.all_view .all_list .img_list .txt_area .price_area .control_quantity {
  float: left;
}
#shop_list.all_view .all_list .img_list .buy_cart {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
#shop_list.all_view .all_list .txt_list {
  width: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  display: flex;
}
#shop_list.all_view .all_list .txt_list .txt_area {
  display: flex;
  width: 100%;
}
#shop_list.all_view .all_list .txt_list .txt_area > * {
  flex: 1 1 50%;
}
#shop_list.all_view .all_list .txt_list .txt_area .name_area {
  margin-right: 10px;
}
#shop_list.all_view .all_list .txt_list .txt_area .price_area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#shop_list.all_view .all_list .txt_list .txt_area .price_area p {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: right;
  margin-bottom: 4px;
}
#shop_list.all_view .all_list .txt_list .buy_cart {
  flex-shrink: 0;
  margin-left: 20px;
}
#shop_list.all_view.img_col_1 .all_list .img_list {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  border-bottom: 1px solid #ebebeb;
}
#shop_list.all_view.img_col_1 .all_list .img_list .img_area {
  width: 100px;
  height: 100px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
  margin-right: 20px;
}
#shop_list.all_view.img_col_1 .all_list .img_list .img_area img.img_goods {
  width: 100%;
  height: 100%;
}
#shop_list.all_view.img_col_1 .all_list .img_list .img_area img.ico_sale {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 2px;
  right: 2px;
  z-index: 1;
}
#shop_list.all_view.img_col_2 .all_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
#shop_list.all_view.img_col_2 .all_list .img_list {
  padding: 20px;
  padding-bottom: 0;
  box-sizing: border-box;
  position: relative;
}
#shop_list.all_view.img_col_2 .all_list .img_list:nth-child(odd) {
  padding-right: 0px;
}
#shop_list.all_view.img_col_2 .all_list .img_list:nth-child(even) {
  padding-left: 0px;
}
#shop_list.all_view.img_col_2 .all_list .img_list:nth-child(even) .buy_cart {
  right: 20px;
}
#shop_list.all_view.img_col_2 .all_list .img_list .img_area {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}
#shop_list.all_view.img_col_2 .all_list .img_list .img_area img.img_goods {
  width: 100%;
  height: 100%;
}
#shop_list.all_view.img_col_2 .all_list .img_list .img_area img.ico_sale {
  position: absolute;
  width: 25%;
  height: 25%;
  top: 2px;
  right: 2px;
  z-index: 1;
}
#shop_list.all_view.img_col_2 .all_list .img_list .buy_cart {
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
#shop_list.all_view.img_col_2 .all_list .txt_list {
  grid-column: 1/span 2;
  padding-top: 0;
}
#shop_list.all_view.price_color_bk .price_area p {
  color: #1e1e1e;
}
#shop_list.all_view.price_color_red .price_area p {
  color: #FB4659;
}


/* 템플릿 제작전송 미리보기 */
.appview.survey .h2 {
  text-align: left;
}

.appview.survey .content {
  padding-top: 10px;
}


.appview .radio_area {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.appview .radio_area>* {
  cursor:pointer;
}

.appview .radio_area>input[type=radio]+label>.ico {
  top: 0px;
  left: 0px;
}

.appview .radio_area>input[type=radio] {
  position: absolute;
  top: 17px;
  left: 16px;
  overflow: hidden;
  display: inline-block;
  border: 0;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.appview input[type="radio"]+label .ico {
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  border: 0;
  background-image: url(/asset/images/ico_radio.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.appview input[type="radio"]:checked+label .ico {
  background-image: url(/asset/images/ico_radio_checked.svg);
}

.appview input[type="radio"]:checked+label.color_active {
  border: 1px solid #FFE851;
  font-weight: bold;
  color: #FFE851;
}

.appview input[type="radio"]:disabled+label {
  color: #ebebeb;
}

.appview .input_box {
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  color: #1e1e1e;
  box-sizing: border-box;
  padding: 0px 16px;
  font-size: 1rem;
  line-height: 56px;
  position: relative;
  border-radius: 4px;
}

.appview .input_box:not(:last-child) {
  margin-bottom: 10px;
}

.appview .input_btn {
  display: flex;
  width: 100%;
  height: 56px;
}


.appview .input_btn input {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  color: #1e1e1e;
  border-radius: 4px 0px 0px 4px;
  box-sizing: border-box;
  padding: 0px 16px;
  font-size: 1rem;
  line-height: 56px;
  margin-bottom: 0px;
}


.appview .input_btn button {
  flex-shrink: 0;
  height: 100%;
  padding: 0 16px;
  border: 1px solid #d5d5d5;
  border-radius: 0px 4px 4px 0px;
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: bold;
  line-height: 56px;
  background: #f9f9f9;
}

.appview .input_btn:not(:last-child) {
  margin-bottom: 10px;
}

.appview .list {
  font-size: 0.875rem;
  color: #8f8f8f;
  margin-bottom: 8px;
  padding-left: 12px;
  box-sizing: border-box;
  position: relative;

}

.appview .list::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #8f8f8f;
  border-radius: 2px;
  position: absolute;
  left: 0px;
  top: 8px;
}

.appview .list:not(:last-child) {
  margin-bottom: 8px;
}

.appview .title_label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.appview .input_box~.input_box {
  margin-bottom: 8px;
}

.appview .btn_active {
  display: block;
  width: 100%;
  background: #FFE851;
  color: #1e1e1e;
  border-radius: 4px;
  height: 56px;
  line-height: 56px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.appview .btn_area {
  padding:24px;
  margin-bottom: 40px;
}


.appview .booking_wrap .h2{
  text-align: left!important;
}
.appview .booking_wrap>p {
  margin-bottom: 8px;
}

.appview .booking_input .input_btn button{
  background:#FFFCE8;
  border-color:#ffe851;
}

/* 템플릿 예약 */
.booking_wrap .h2{
  text-align: left!important;
}

.booking_wrap p {
  margin-bottom: 10px;
}

.booking_wrap .list {
  color:gray;
  padding-block:10px;
}

.booking_wrap .input_box {
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  color: #1e1e1e;
  box-sizing: border-box;
  padding: 0px 16px;
  font-size: 1rem;
  line-height: 56px;
  position: relative;
  border-radius: 4px;
  margin-bottom: 10px;
}

.booking_wrap .input_btn {
  display: flex;
  width: 100%;
  height: 56px;
}


.booking_wrap .input_btn input {
  margin-bottom: 0;
}

.booking_wrap .input_btn button {
  flex-shrink: 0;
  height: 100%;
  padding: 0 16px;
  border: 1px solid #d5d5d5;
  border-radius: 0px 4px 4px 0px;
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: bold;
  line-height: 56px;
  background: #f9f9f9;
}