@import url(./font.css);
* {
    position: absolute;
    margin: 0;
    padding: 0;
    font-family: "GmarketSansMedium";
    /* pointer-events: auto; */
    letter-spacing: -1px;
    color: #2f2f2f;
    -webkit-tap-highlight-color: transparent;
}
html,
body {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
img {
    position: relative;
}
div[click-able="disable"] {
    pointer-events: none !important;
}
div[click-able="able"] {
    pointer-events: auto !important;
}
button {
    background: none;
    border: 0;
    cursor: pointer;
}
.bold {
    position: relative;
    display: inline-block;
    font-family: "GmarketSansBold";
}
.blue {
    position: relative;
    display: inline-block;
    color: #0276fe !important;
}
.red {
    position: relative;
    display: inline-block;
    color: #ff291e !important;
}
.gray {
    position: relative;
    display: inline-block;
    color: #767f88 !important;
}
.orange {
    position: relative;
    display: inline-block;
    color: #ff7e00 !important;
}
.button {
    cursor: pointer;
}
.box {
    border: 1px rgb(201, 201, 201) solid;
    border-radius: 10px;
    box-shadow: 0px 3px #a3a3a3;
}
.direction_cursor_2 {
    background: url(../img/cursor/cursor2.png) no-repeat;
    width: 109px;
    height: 109px;
    margin-top: 0px;
    margin-left: 0px;
    animation: direction_2 0.9s ease-out infinite;
    transform-origin: bottom right;
    z-index: 9;
}
@keyframes direction_2 {
    to {
        margin-top: -20px;
        margin-left: -20px;
    }
}

.button_flash {
    transform: scale(1);
    transform-origin: center;
    animation: button_flash 0.9s ease infinite;
}
@keyframes button_flash {
    to {
        transform: scale(1.2);
    }
}

.text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* 기본 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 14px; /* 스크롤바 너비 */
}

::-webkit-scrollbar-thumb {
    background-color: #afafaf; /* 스크롤바 색상 */
    border-radius: 15px; /* 둥근 모서리 */
}

::-webkit-scrollbar-track {
    background: #ffffff; /* 스크롤바 트랙 색상 */
}

#narration {
    display: none;
}
#bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/ui/common/bg2.png) no-repeat;
    background-color: #2f2f2f;
    background-position: center;
}

#kiosk_wrap {
    width: 816px;
    height: 1900px;
    background: #000;
    background: url(../img/ui/common/kiosk_wrap.png) no-repeat;
    background-size: 100% 100%;
    transform-origin: 0 0;
    transform: scale(0.8) translateX(-50%);
    left: 50%;
    transition-duration: 1s;
}

#kiosk_wrap > .view_wrap {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 1052px;
    overflow: hidden;
    background: #fff;
    border: 15px solid #000;
}

.test_screen {
    background: url(../img/ui/test_screen.png);
    width: 750px;
    height: 1082px;
    z-index: -1;
    left: -15px;
    top: -15px;
    display: none;
}
#kiosk_wrap > .home_button {
    background: url(../img/ui/common/home_button.png);
    width: 137px;
    height: 30px;
    top: 70px;
    left: 61px;
    z-index: 99;
    cursor: pointer;
    text-indent: -99999px;
}
#kiosk_wrap > .help_button {
    background: url(../img/ui/common/help_button.png);
    width: 120px;
    height: 40px;
    top: 62px;
    right: 188px;
    z-index: 99;
    cursor: pointer;
    text-indent: -99999px;
}
#kiosk_wrap > .exit_button {
    background: url(../img/ui/common/exit_button.png);
    width: 108px;
    height: 30px;
    top: 68px;
    right: 58px;
    z-index: 99;
    cursor: pointer;
    text-indent: -99999px;
}
.view_wrap > .start_page {
    background: url(../img/ui/common/start_page.png);
    width: 720px;
    height: 1052px;
    z-index: 11;
    cursor: pointer;
    /* display: none; */
}
.view_wrap > .start_page > .text {
    text-indent: -99999px;
}
.view_wrap > .side_menu {
    top: 70px;
    left: 1px;
    width: 218px;
    height: 671px;
    background: #e9e9e9;
}
.side_menu > .category_button {
    position: relative;
    width: 182px;
    height: 100px;
    left: 36px;
    border-radius: 13px 0px 0px 13px;
    background: #fff;
    margin-bottom: 12px;
    font-size: 33px;
    line-height: 330%;
    text-align: center;
}
.side_menu > .category_button[data-state="toggle"] {
    background: #ff8e88;
}

.view_wrap > .main_screen {
    width: 480px;
    height: 670px;
    top: 70px;
    left: 219px;
    overflow-x: hidden;
    overflow-y: auto;
}
.main_screen > .category_layer {
    width: 100%;
    height: max-content;
    min-height: 100%;
    background: #fff;
    display: none;
}
.main_screen > .category_layer:first-child {
    display: block;
}
.category_layer > .layer_wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.category_layer > .layer_wrap > .menu_item {
    position: relative;
    width: 188px;
    height: 218px;
    margin: 2px 5px 2px 28px;
    z-index: 1;
}
.menu_item > .menu_img {
    position: relative;
    width: 188px;
    height: 161px;
    left: 50%;
    transform: translateX(-50%);
}
.menu_item[data-set="0"] > .menu_img {
    background: url(../img/menu/r1.png);
}
.menu_item[data-set="1"] > .menu_img {
    background: url(../img/menu/r2.png);
}
.menu_item[data-set="2"] > .menu_img {
    background: url(../img/menu/r3.png);
}
.menu_item[data-set="3"] > .menu_img {
    background: url(../img/menu/r4.png);
}
.menu_item[data-set="4"] > .menu_img {
    background: url(../img/menu/r5.png);
}
.menu_item[data-set="5"] > .menu_img {
    background: url(../img/menu/r6.png);
}
.menu_item[data-set="6"] > .menu_img {
    background: url(../img/menu/r7.png);
}
.menu_item[data-set="7"] > .menu_img {
    background: url(../img/menu/r8.png);
}
.menu_item[data-set="8"] > .menu_img {
    background: url(../img/menu/r9.png);
}
.menu_item[data-set="9"] > .menu_img {
    background: url(../img/menu/r10.png);
}
.menu_item[data-set="10"] > .menu_img {
    background: url(../img/menu/b1.png);
}
.menu_item[data-set="11"] > .menu_img {
    background: url(../img/menu/b2.png);
}
.menu_item[data-set="12"] > .menu_img {
    background: url(../img/menu/b3.png);
}
.menu_item[data-set="13"] > .menu_img {
    background: url(../img/menu/b4.png);
}
.menu_item[data-set="14"] > .menu_img {
    background: url(../img/menu/b5.png);
}
.menu_item[data-set="15"] > .menu_img {
    background: url(../img/menu/b6.png);
}
.menu_item[data-set="16"] > .menu_img {
    background: url(../img/menu/c1.png);
}
.menu_item[data-set="17"] > .menu_img {
    background: url(../img/menu/c2.png);
}
.menu_item[data-set="18"] > .menu_img {
    background: url(../img/menu/c3.png);
}
.menu_item[data-set="19"] > .menu_img {
    background: url(../img/menu/c4.png);
}
.menu_item[data-set="20"] > .menu_img {
    background: url(../img/menu/c5.png);
}
.menu_item[data-set="21"] > .menu_img {
    background: url(../img/menu/c6.png);
}
.menu_item[data-set="22"] > .menu_img {
    background: url(../img/menu/s1.png);
}
.menu_item[data-set="23"] > .menu_img {
    background: url(../img/menu/s2.png);
}
.menu_item[data-set="24"] > .menu_img {
    background: url(../img/menu/s3.png);
}
.menu_item[data-set="25"] > .menu_img {
    background: url(../img/menu/s4.png);
}
.menu_item[data-set="26"] > .menu_img {
    background: url(../img/menu/s5.png);
}
.menu_item[data-set="27"] > .menu_img {
    background: url(../img/menu/s6.png);
}
.menu_item[data-set="28"] > .menu_img {
    background: url(../img/menu/s7.png);
}
.menu_item[data-set="29"] > .menu_img {
    background: url(../img/menu/s8.png);
}
.menu_item[data-set="30"] > .menu_img {
    background: url(../img/menu/s9.png);
}
.menu_item[data-set="31"] > .menu_img {
    background: url(../img/menu/d1.png);
}
.menu_item[data-set="32"] > .menu_img {
    background: url(../img/menu/d2.png);
}
.menu_item[data-set="33"] > .menu_img {
    background: url(../img/menu/d3.png);
}
.menu_item[data-set="34"] > .menu_img {
    background: url(../img/menu/d4.png);
}
.menu_item[data-set="35"] > .menu_img {
    background: url(../img/menu/d5.png);
}
.menu_item[data-set="36"] > .menu_img {
    background: url(../img/menu/d6.png);
}
.menu_item[data-set="37"] > .menu_img {
    background: url(../img/menu/d7.png);
}
.menu_item[data-set="38"] > .menu_img {
    background: url(../img/menu/d8.png);
}
.menu_item[data-set="39"] > .menu_img {
    background: url(../img/menu/d9.png);
}
.menu_item[data-set="40"] > .menu_img {
    background: url(../img/menu/d10.png);
}
.menu_item[data-set="41"] > .menu_img {
    background: url(../img/menu/d11.png);
}
.menu_item[data-set="42"] > .menu_img {
    background: url(../img/menu/d12.png);
}

.menu_item > .menu_name {
    position: relative;
    font-size: 27px;
    letter-spacing: -1px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu_item > .menu_price {
    position: relative;
    width: 100%;
    font-size: 27px;
    text-align: center;
    color: #b40404;
}

.view_wrap > .bottom_basket {
    top: 742px;
    width: 100%;
    height: 205px;
}

.bottom_basket > .top {
    position: relative;
    width: 100%;
    height: 50px;
    background: #d0d0d0;
}
.bottom_basket > .top > div {
    position: absolute;
    float: left;
    font-size: 25px;
    top: 13px;
    text-align: center;
}
.bottom_basket > .top > .top_name {
    width: 142px;
}
.bottom_basket > .top > .top_quantity_1 {
    left: 180px;
}
.bottom_basket > .top > .top_quantity_2 {
    width: 63px;
    left: 231px;
}
.bottom_basket > .top > .top_quantity_3 {
    left: 302px;
}
.bottom_basket > .top > .top_price_1 {
    left: 444px;
}
.bottom_basket > .top > .top_price_2 {
    right: 79px;
    text-align: right;
    color: #b40404;
    width: 150px;
}
.bottom_basket > .top > .top_price_3 {
    left: 644px;
}
.bottom_basket > .basket {
    position: relative;
    width: 100%;
    height: 155px;
    overflow-y: auto;
}
.view_wrap > .bottom_button_wrap {
    top: 946px;
    width: 100%;
    height: 107px;
    border-top: 1px solid #a9a9a9ad;
}

.bottom_button_wrap > .button {
    position: relative;
    height: 60px;
    top: 25px;
    color: #000;
    float: left;
    border-radius: 10px;
    font-size: 31px;
    line-height: 219%;
    text-align: center;
}
.bottom_button_wrap > .back_button::before {
    content: "< ";
    /* background-color: #a3a3a3; */
    /* border-radius: 20px; */
    position: relative;
}
.bottom_button_wrap > .back_button {
    width: 140px;
    margin-left: 10px;
}
.bottom_button_wrap > .coupon_button {
    width: 190px;
    margin: 0 10px 0 20px;
    background-color: #ffd43c;
    box-shadow: 1px 1px #000;
    box-shadow: 1px 1px #a7a7a7;
}
.bottom_button_wrap > .cancel_button {
    width: 165px;
    background-color: #fff;
    border: 1px solid #979797;
    box-shadow: 1px 1px #a7a7a7;
}
.bottom_button_wrap > .payment_button {
    width: 165px;
    margin-left: 10px;
    background-color: #c03535;
    color: #fff;
    box-shadow: 1px 1px #a7a7a7;
}

.view_wrap > .set_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .set_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .set_layer > .layer_wrap {
    width: 550px;
    height: 400px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.view_wrap > .set_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .set_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
}
.set_layer > .layer_wrap > .middle_section {
    width: 88%;
    left: 6%;
    top: 20px;
    height: 280px;
    overflow-y: auto;
}

.set_layer > .layer_wrap > .middle_section > .button {
    position: relative;
    width: 160px;
    height: 240px;
    float: left;
    margin: 10px 37px;
}
.set_layer > .layer_wrap > .middle_section > .button > div {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.set_layer > .layer_wrap > .middle_section > .button > .text_1 {
    font-size: 30px;
    width: 100%;
    top: 150px;
}
.set_layer > .layer_wrap > .middle_section > .button > .text_2 {
    font-size: 30px;
    width: 100%;
    color: #b40404;
    top: 180px;
}
.set_layer > .layer_wrap > .middle_section > .burger_button > .icon {
    background: url(../img/ui/common/burger_icon.png);
    width: 197px;
    height: 197px;
}
.set_layer > .layer_wrap > .middle_section > .set_button > .icon {
    background: url(../img/ui/common/set_icon.png);
    width: 197px;
    height: 197px;
}

.view_wrap > .add_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .add_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .add_layer > .layer_wrap {
    width: 626px;
    height: 694px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.view_wrap > .add_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .add_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ffcec3;
    font-size: 38px;
}
.view_wrap > .add_layer > .layer_wrap > .top_section {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
}
.add_layer > .layer_wrap > .top_section > .button {
    position: relative;
    font-size: 30px;
    float: left;
    line-height: 230%;
    padding: 0px 20px;
    border-radius: 20px 20px 0px 0px;
    background: none;
    height: 90%;
    top: 10%;
}
.add_layer > .layer_wrap > .top_section > .button[data-state="toggle"] {
    background: #fff;
}
.add_layer > .layer_wrap > .top_section > .side_button {
    margin-left: 38px;
}
.add_layer > .layer_wrap > .top_section > .drink_button {
    margin-left: 15px;
}
.add_layer > .layer_wrap > .middle_section {
    width: 88%;
    left: 6%;
    top: 20px;
    height: 510px;
    overflow-y: auto;
}
.add_layer > .layer_wrap > .middle_section > .category_layer {
    width: 100%;
    height: fit-content;
    display: none;
}
.add_layer > .layer_wrap > .middle_section > .side_layer {
    display: block;
}


.view_wrap > .option_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .option_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .option_layer > .layer_wrap {
    width: 626px;
    height: 814px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.view_wrap > .option_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .option_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ffcec3;
    font-size: 38px;
}
.view_wrap > .option_layer > .layer_wrap > .top_section {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
}
.option_layer > .layer_wrap > .top_section > .button {
    position: relative;
    font-size: 30px;
    float: left;
    line-height: 230%;
    padding: 0px 20px;
    border-radius: 20px 20px 0px 0px;
    background: none;
    height: 90%;
    top: 10%;
}
.option_layer > .layer_wrap > .top_section > .button[data-state="toggle"] {
    background: #fff;
}
.option_layer > .layer_wrap > .top_section > .side_button {
    margin-left: 38px;
}
.option_layer > .layer_wrap > .top_section > .drink_button {
    margin-left: 15px;
}
.option_layer > .layer_wrap > .middle_section {
    width: 88%;
    left: 6%;
    top: 20px;
    height: 510px;
    overflow-y: auto;
}
.option_layer > .layer_wrap > .middle_section > .category_layer {
    width: 100%;
    height: fit-content;
    display: none;
}
.option_layer > .layer_wrap > .middle_section > .side_layer {
    display: block;
}

.option_layer > .layer_wrap > .button_section {
    width: 100%;
    height: 100px;
    top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.option_layer > .layer_wrap > .button_section > .button {
    position: relative;
    width: 200px;
    height: 62px;
    float: left;
    font-size: 32px;
    line-height: 210%;
    border-radius: 11px;
    margin: 0 12px;
    box-shadow: -1px 1px 0px 0px #a7a7a7;
}
.option_layer > .layer_wrap > .button_section > .cancel_button {
    border: 2px solid #9b9b9b;
}
.option_layer > .layer_wrap > .button_section > .confirm_button {
    background: #ff9103;
    border: 2px solid #9b9b9b;
}


.view_wrap > .topping_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .topping_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .topping_layer > .layer_wrap {
    width: 666px;
    height: 464px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.view_wrap > .topping_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    text-align: center;
    line-height: 200%;
}

.topping_layer > .layer_wrap > .m {
    width: 100%;
    left: 0;
    top: 90px;
    height: 360px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.topping_layer > .layer_wrap > .m > .t {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}
.topping_layer > .layer_wrap > .m > .t > .button {
    position: relative;
    float: left;
    width: 140px;
    height: 240px;
    margin: 0 10px;
}

.topping_layer > .layer_wrap > .m > .t > .button[data-state="toggle"]::before {
    border: 6px solid #ffb100;
    content: "";
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-sizing: border-box; 
    z-index: 9;
}
.topping_layer > .layer_wrap > .m > .t > .button > .img {
    transform: translateX(-50%);
    left: 50%;
    top: 20px;
    width: 118px;
    height: 96px;
}
.topping_layer > .layer_wrap > .m > .t > .topping_1 > .img {
    background: url(../img/ui/common/topping_icon_1.png) no-repeat;
    background-position: center;
}
.topping_layer > .layer_wrap > .m > .t > .topping_2 > .img {
    background: url(../img/ui/common/topping_icon_2.png) no-repeat;
    background-position: center;
}
.topping_layer > .layer_wrap > .m > .t > .topping_3 > .img {
    background: url(../img/ui/common/topping_icon_3.png) no-repeat;
    background-position: center;
}
.topping_layer > .layer_wrap > .m > .t > .topping_4 > .img {
    background: url(../img/ui/common/topping_icon_4.png) no-repeat;
    background-position: center;
}
.topping_layer > .layer_wrap > .m > .t > .button > .text_1 {
    font-size: 27px;
    top: 140px;
    width: 100%;
    text-align: center;
}
.topping_layer > .layer_wrap > .m > .t > .button > .text_2 {
    font-size: 27px;
    top: 180px;
    width: 100%;
    text-align: center;
}

.topping_layer > .l > .m > .topping_bottom_wrap {
    bottom: 10px;
}
.topping_layer > .l > .m > .topping_bottom_wrap > .button {
    position: relative;
    margin: 15px 15px;
    width: 200px;
    height: 70px;
    float: left;
    border-radius: 10px;
    font-size: 33px;
    line-height: 130%;
    text-align: center;
    line-height: 230%;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
}
.topping_layer > .l > .m > .topping_bottom_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.topping_layer > .l > .m > .topping_bottom_wrap > .confirm_button {
    background: #ff9103;
}

.category_layer > .category_wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.category_layer > .category_wrap > .menu_item {
    position: relative;
    margin: 9px 27px;
    padding: 5px;
    /* width: 201px;
    height: 250px; */
}

.category_layer > .category_wrap > .menu_item[data-state="toggle"]::before {
    border: 6px solid #ffb100;
    content: "";
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-sizing: border-box; 
    z-index: 9;
}

.view_wrap > .recommend_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .recommend_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .recommend_layer > .layer_wrap {
    width: 626px;
    height: 524px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .recommend_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .recommend_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
}
.recommend_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 40px;
    height: 280px;
}

.recommend_item_wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.recommend_item_wrap > .menu_item {
    position: relative;
    margin: 9px 27px;
    padding: 5px;
}
.recommend_item_wrap > .menu_item[data-state="toggle"]::before {
    border: 6px solid #ffb100;
    content: "";
    position: absolute; /* 부모 요소를 기준으로 위치 설정 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none; /* 클릭 이벤트를 차단 */
    box-sizing: border-box; /* 테두리 포함 크기 설정 */
    z-index: 9;
}
.recommend_item_wrap > .menu_item {
    width: 144px;
}
.recommend_item_wrap > .menu_item > .menu_img {
    width: 138px;
    height: 111px;
    background-size: 100% 100%;
}
.recommend_item_wrap > .menu_item > .menu_name {
    font-size: 22px;
    height: 60px;
    white-space: normal;
    word-break: keep-all;
    text-overflow: clip;
    line-height: 140%;
}

.recommend_layer > .layer_wrap > .button_section {
    width: 100%;
    height: 100px;
    top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.recommend_layer > .layer_wrap > .button_section > .button {
    position: relative;
    width: 200px;
    height: 62px;
    float: left;
    font-size: 32px;
    line-height: 210%;
    border-radius: 11px;
    margin: 0 12px;
    box-shadow: -1px 1px 0px 0px #a7a7a7;
}
.recommend_layer > .layer_wrap > .button_section > .cancel_button {
    border: 2px solid #9b9b9b;
}
.recommend_layer > .layer_wrap > .button_section > .add_button {
    background: #ff9103;
    border: 2px solid #9b9b9b;
}

.view_wrap > .prod_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .prod_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .prod_layer > .layer_wrap {
    width: 626px;
    height: 524px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.prod_layer > .layer_wrap > .prod_img {
    width: 188px;
    height: 161px;
    top: 50px;
    left: 60px;
}

.prod_img[data-set="0"] {
    background: url(../img/menu/r1.png);
}
.prod_img[data-set="1"] {
    background: url(../img/menu/r2.png);
}
.prod_img[data-set="2"] {
    background: url(../img/menu/r3.png);
}
.prod_img[data-set="3"] {
    background: url(../img/menu/r4.png);
}
.prod_img[data-set="4"] {
    background: url(../img/menu/r5.png);
}
.prod_img[data-set="5"] {
    background: url(../img/menu/r6.png);
}
.prod_img[data-set="6"] {
    background: url(../img/menu/r7.png);
}
.prod_img[data-set="7"] {
    background: url(../img/menu/r8.png);
}
.prod_img[data-set="8"] {
    background: url(../img/menu/r9.png);
}
.prod_img[data-set="9"] {
    background: url(../img/menu/r10.png);
}
.prod_img[data-set="10"] {
    background: url(../img/menu/b1.png);
}
.prod_img[data-set="11"] {
    background: url(../img/menu/b2.png);
}
.prod_img[data-set="12"] {
    background: url(../img/menu/b3.png);
}
.prod_img[data-set="13"] {
    background: url(../img/menu/b4.png);
}
.prod_img[data-set="14"] {
    background: url(../img/menu/b5.png);
}
.prod_img[data-set="15"] {
    background: url(../img/menu/b6.png);
}
.prod_img[data-set="16"] {
    background: url(../img/menu/c1.png);
}
.prod_img[data-set="17"] {
    background: url(../img/menu/c2.png);
}
.prod_img[data-set="18"] {
    background: url(../img/menu/c3.png);
}
.prod_img[data-set="19"] {
    background: url(../img/menu/c4.png);
}
.prod_img[data-set="20"] {
    background: url(../img/menu/c5.png);
}
.prod_img[data-set="21"] {
    background: url(../img/menu/c6.png);
}
.prod_img[data-set="22"] {
    background: url(../img/menu/s1.png);
}
.prod_img[data-set="23"] {
    background: url(../img/menu/s2.png);
}
.prod_img[data-set="24"] {
    background: url(../img/menu/s3.png);
}
.prod_img[data-set="25"] {
    background: url(../img/menu/s4.png);
}
.prod_img[data-set="26"] {
    background: url(../img/menu/s5.png);
}
.prod_img[data-set="27"] {
    background: url(../img/menu/s6.png);
}
.prod_img[data-set="28"] {
    background: url(../img/menu/s7.png);
}
.prod_img[data-set="29"] {
    background: url(../img/menu/s8.png);
}
.prod_img[data-set="30"] {
    background: url(../img/menu/s9.png);
}
.prod_img[data-set="31"] {
    background: url(../img/menu/d1.png);
}
.prod_img[data-set="32"] {
    background: url(../img/menu/d2.png);
}
.prod_img[data-set="33"] {
    background: url(../img/menu/d3.png);
}
.prod_img[data-set="34"] {
    background: url(../img/menu/d4.png);
}
.prod_img[data-set="35"] {
    background: url(../img/menu/d5.png);
}
.prod_img[data-set="36"] {
    background: url(../img/menu/d6.png);
}
.prod_img[data-set="37"] {
    background: url(../img/menu/d7.png);
}
.prod_img[data-set="38"] {
    background: url(../img/menu/d8.png);
}
.prod_img[data-set="39"] {
    background: url(../img/menu/d9.png);
}
.prod_img[data-set="40"] {
    background: url(../img/menu/d10.png);
}
.prod_img[data-set="41"] {
    background: url(../img/menu/d11.png);
}
.prod_img[data-set="42"] {
    background: url(../img/menu/d12.png);
}

.prod_layer > .layer_wrap > .prod_name_1 {
    top: 80px;
    left: 280px;
    width: 310px;
    height: 100px;
    word-break: keep-all;
    font-size: 46px;
}
.prod_layer > .layer_wrap > .prod_name_2 {
    top: 260px;
    left: 43px;
    width: 200px;
    height: 100px;
    word-break: keep-all;
    font-size: 31px;
}
.prod_layer > .layer_wrap > .prod_price {
    top: 260px;
    left: 250px;
    font-size: 33px;
    width: 150px;
}
.prod_layer > .layer_wrap > .prod_price > .number {
    float: left;
    text-align: right;
    width: 110px;
    color: #b40404;
}
.prod_layer > .layer_wrap > .prod_price > .text {
    left: 5px;
}
.prod_layer > .layer_wrap > .quantity_wrap {
    top: 260px;
    left: 430px;
    font-size: 33px;
    width: 160px;
}
.prod_layer > .layer_wrap > .quantity_wrap > .plus_button {
    left: 110px;
    top: -3px;
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 140%;
}
.prod_layer > .layer_wrap > .quantity_wrap > .quantity {
    left: 44px;
    top: 0px;
    width: 63px;
    color: #b40404;
    text-align: center;
}
.prod_layer > .layer_wrap > .quantity_wrap > .minus_button {
    top: -3px;
    left: 0;
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 140%;
}
.prod_layer > .layer_wrap > .div_line {
    top: 311px;
    left: 260px;
    width: 332px;
    height: 0px;
    border: 1px solid #8f8f8f;
    border-bottom: none;
}
.prod_layer > .layer_wrap > .total_text {
    font-size: 40px;
    top: 340px;
    left: 271px;
}
.prod_layer > .layer_wrap > .total_price {
    top: 338px;
    left: 350px;
    width: 160px;
    font-size: 34px;
}
.prod_layer > .layer_wrap > .total_price > .number {
    color: #b40404;
    top: 0;
    font-size: 40px;
    width: 200px;
    text-align: right;
}
.prod_layer > .layer_wrap > .total_price > .text {
    top: 8px;
    position: absolute;
    left: 203px;
    font-size: 30px;
}
.prod_layer > .layer_wrap > .add_button {
    width: 250px;
    height: 70px;
    font-size: 40px;
    top: 420px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    border-radius: 10px;
    line-height: 190%;
    background: #ff9103;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
}

.view_wrap > .prod_chicken_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .prod_chicken_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .prod_chicken_layer > .layer_wrap {
    width: 626px;
    height: 825px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.prod_chicken_layer > .l > .prod_name_1{
    top: 28px;
    left: 20px;
    width: 310px;
    height: 90px;
    word-break: keep-all;
    font-size: 46px;
}
.prod_chicken_layer > .l > .div_line{
    position: relative;
    top: 0;
    left: 10px;
    width: 592px;
    height: 0px;
    border: 1px solid #8f8f8f78;
    border-bottom: none;
    margin: 6px 0;
}
.prod_chicken_layer > .l > .s{
    position: relative;
    width: 100%;
    height: 161px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}
.prod_chicken_layer > .l > .s > .prod_img{
    position: relative;
    width: 188px;
    height: 161px;
    margin-left: 20px;
}
.prod_chicken_layer > .l > .s > .prod_name{
    position: relative;
    width: 200px;
    height: fit-content;
    word-break: keep-all;
    margin: 0 13px;
    font-size: 31px;
}
.prod_chicken_layer > .l > .s > .prod_price{
    font-size: 33px;
    width: 150px;
    position: relative;
}
.prod_chicken_layer > .l > .s > .prod_price > .number{
    float: left;
    text-align: right;
    width: 110px;
    color: #b40404;   
}
.prod_chicken_layer > .l > .s > .prod_price > .text{
    
    left: 5px;
}
.prod_layer > .layer_wrap > .prod_img {
    width: 188px;
    height: 161px;
    top: 50px;
    left: 60px;
}

.bottom_basket > .basket > .basket_item {
    position: relative;
    width: calc(100% - 26px);
    height: 34px;
    font-size: 25px;
    margin: 16px 0px 16px 26px;
}
.basket_item > div {
    position: relative;
    float: left;
}
.basket_item > .prod_name {
    width: 174px;
    top: 2px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.basket_item > .quantity_wrap {
    width: 130px;
}
.basket_item > .quantity_wrap > div {
    position: relative;
    float: left;
}
.basket_item > .quantity_wrap > .plus_button {
    top: 0px;
    left: 0;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 140%;
}
.basket_item > .quantity_wrap > .quantity {
    width: 60px;
    text-align: center;
}
.basket_item > .quantity_wrap > .minus_button {
    top: 0px;
    left: 0;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 140%;
}
.basket_item > .topping_button {
    padding: 8px 9px 3px 9px;
    background: #ff9103;
    border-radius: 10px;
    margin-left: 10px;
    top: -3px;
    font-size: 22px;
    visibility: hidden;
    pointer-events: none;
}
.basket_item[data-type="burger"] > .topping_button {
    visibility: visible;
    pointer-events: auto;
}
.basket_item > .option_button {
    padding: 8px 9px 3px 9px;
    background: #ff9103;
    border-radius: 10px;
    margin-left: 10px;
    top: -3px;
    font-size: 22px;
    visibility: hidden;
    pointer-events: none;
}
.basket_item > .option_button[data-state="toggle"] {
    visibility: visible;
    pointer-events: auto;
}
.basket_item > .total_price {
    width: 150px;
    margin-left: 25px;
    position: absolute;
    right: 53px;
}
.basket_item > .total_price > .number {
    text-align: right;
    width: 84%;
}
.basket_item > .total_price > .text {
    position: absolute;
    top: 0;
    right: 0;
}
.basket_item > .cancel_button {
    top: -2px;
    right: 16px;
    position: absolute;
    border: 1px solid #000;
    width: 26px;
    height: 28px;
    padding-right: 2px;
    text-align: center;
    line-height: 109%;
    background: #000;
    color: #fff;
    font-family: "GmarketSanslight";
}

.view_wrap > .takeout_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .takeout_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .takeout_layer > .layer_wrap {
    width: 586px;
    height: 384px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .takeout_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .takeout_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .takeout_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.takeout_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 50px;
    height: 260px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.takeout_layer > .layer_wrap > .middle_section > .button {
    position: relative;
    margin: 0 15px;
    width: 200px;
    height: 260px;
    float: left;
}
.takeout_layer > .layer_wrap > .middle_section > .button > .icon {
    left: 50%;
    transform: translateX(-50%);
}
.middle_section > .togo_button > .icon {
    background: url(../img/ui/common/togo_icon.png);
    width: 81px;
    height: 90px;
}
.middle_section > .forhere_button > .icon {
    background: url(../img/ui/common/forhere_icon.png);
    width: 94px;
    height: 86px;
}

.takeout_layer > .layer_wrap > .middle_section > .button > .text_1 {
    font-size: 33px;
    text-align: center;
    width: 100%;
    top: 120px;
}
.takeout_layer > .layer_wrap > .middle_section > .button > .text_2 {
    font-size: 25px;
    text-align: center;
    width: 100%;
    top: 120px;
}

.view_wrap > .point_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .point_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .point_layer > .layer_wrap {
    width: 586px;
    height: 384px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .point_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .point_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .point_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.point_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 50px;
    height: 260px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.point_layer > .layer_wrap > .middle_section > .button {
    position: relative;
    margin: 0 15px;
    width: 210px;
    height: 190px;
    float: left;
    border: 4px solid #d1d1d1;
    border-radius: 15px;
    font-size: 37px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.view_wrap > .point_input_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .point_input_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .point_input_layer > .layer_wrap {
    width: 666px;
    height: 604px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .point_input_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .point_input_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .point_input_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.point_input_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 20px;
    height: 410px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.point_input_layer > .l > .m > .top_text {
    font-size: 30px;
    width: 100%;
    text-align: center;
    top: 10px;
}
.point_input_layer > .l > .m > .line {
    width: 98%;
    margin: 0 1%;
    top: 60px;
    border: 1px solid #d7d7d7a6;
}
.point_input_layer > .l > .m > .phone_text {
    top: 100px;
    left: 20px;
    width: 310px;
    font-size: 30px;
}
.point_input_layer > .l > .m > .phone_input {
    top: 170px;
    left: 20px;
    width: 310px;
    font-size: 30px;
}
.point_input_layer > .l > .m > .numberpad_wrap {
    top: 90px;
    width: 320px;
    left: 310px;
    height: 280px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.point_input_layer > .l > .m > .numberpad_wrap > .number {
    position: relative;
    width: 70px;
    height: 60px;
    margin: 6px;
    background: #dfdfdf;
    font-size: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.point_input_layer > .l > .m > .numberpad_wrap > .number_c {
    width: 155px;
}
.point_input_layer > .l > .m > .numberpad_wrap > .number > .direction_cursor_2 {
    top: 30px;
    left: 50px;
    opacity: 0;
    display: none;
}
.point_input_layer > .l > .m > .numberpad_wrap > .number[click-able="able"] > .direction_cursor_2{
    opacity: 1;
    display: block;
}
.point_input_layer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 400px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.point_input_layer > .l > .m > .b_button_wrap > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
}
.point_input_layer > .l > .m > .b_button_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.point_input_layer > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}

.view_wrap > .point_state_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .point_state_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .point_state_layer > .layer_wrap {
    width: 566px;
    height: 414px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .point_state_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .point_state_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .point_state_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.point_state_layer > .layer_wrap > .m {
    width: 100%;
    left: 0;
    top: 20px;
    height: 200px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.point_state_layer > .layer_wrap > .m > .text {
    width: 100%;
    word-break: keep-all;
    text-align: center;
    font-size: 33px;
    top: 12px;
    line-height: 130%;
}

.point_state_layer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 210px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.point_state_layer > .l > .m > .b_button_wrap > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
}
.point_state_layer > .l > .m > .b_button_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.point_state_layer > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}

.view_wrap > .point_confirm_layer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .point_confirm_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .point_confirm_layer > .layer_wrap {
    width: 416px;
    height: 294px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .point_confirm_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .point_confirm_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .point_confirm_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.point_confirm_layer > .layer_wrap > .m {
    width: 100%;
    left: 0;
    top: 20px;
    height: 200px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.point_confirm_layer > .layer_wrap > .m > .text {
    width: 100%;
    word-break: keep-all;
    text-align: center;
    font-size: 33px;
    top: 12px;
    line-height: 130%;
}

.point_confirm_layer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 90px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.point_confirm_layer > .l > .m > .b_button_wrap > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
}
.point_confirm_layer > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}

.view_wrap > .add_point_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .add_point_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .add_point_layer > .layer_wrap {
    width: 586px;
    height: 604px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .add_point_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .add_point_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .add_point_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.add_point_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 50px;
    height: 260px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.add_point_layer > .l > .m > .text_1{
    top: 30px;
    font-size: 28px;
}
.add_point_layer > .l > .m > .text_2{
    font-size: 28px;
    top: 130px;
}
.add_point_layer > .l > .m > .text_3{
    font-size: 19px;
    top: 210px;
}
.add_point_layer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 340px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.add_point_layer > .l > .m > .b_button_wrap > .button {
    width: 250px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 28px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 240%;
}
.add_point_layer > .l > .m > .b_button_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.add_point_layer > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}


.view_wrap > .payment_method_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .payment_method_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .payment_method_layer > .layer_wrap {
    width: 586px;
    height: 534px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .payment_method_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .payment_method_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .payment_method_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.payment_method_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 10px;
    height: 430px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.payment_method_layer > .layer_wrap > .middle_section > .button {
    position: relative;
    margin: 15px 15px;
    width: 230px;
    height: 150px;
    float: left;
    border: 4px solid #d1d1d1;
    border-radius: 30px;
    font-size: 33px;
    line-height: 130%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.view_wrap > .credit_card_explain_layer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .credit_card_explain_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .credit_card_explain_layer > .layer_wrap {
    width: 656px;
    height: 794px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .credit_card_explain_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .credit_card_explain_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}
.view_wrap > .credit_card_explain_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.credit_card_explain_layer > .layer_wrap > .m {
    width: 100%;
    left: 0;
    top: 20px;
    height: 660px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.credit_card_explain_layer > .layer_wrap > .m > .text_1 {
    width: 100%;
    word-break: keep-all;
    text-align: center;
    font-size: 30px;
    top: 27px;
    line-height: 130%;
}
.credit_card_explain_layer > .layer_wrap > .m > .text_2 {
    width: 100%;
    word-break: keep-all;
    text-align: center;
    font-size: 30px;
    top: 172px;
    line-height: 130%;
}
.credit_card_explain_layer > .layer_wrap > .m > .img {
    background: url(../img/ui/common/credit_card_explain_img.png);
    width: 515px;
    height: 341px;
    top: 230px;
}
.credit_card_explain_layer > .layer_wrap > .m > .cancel_button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    line-height: 210%;
    border: 1px solid #9d9d9d;
    bottom: 0;
}

.view_wrap > .receipt_status_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .receipt_status_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .receipt_status_layer > .layer_wrap {
    width: 586px;
    height: 224px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.view_wrap > .receipt_status_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .receipt_status_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}
.receipt_status_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 10px;
    height: 120px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.receipt_status_layer > .layer_wrap > .middle_section > .button {
    position: relative;
    margin: 15px 15px;
    width: 200px;
    height: 70px;
    float: left;
    border-radius: 10px;
    font-size: 33px;
    line-height: 130%;
    text-align: center;
    line-height: 230%;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
}
.receipt_status_layer > .l > .m > .cancel_button {
    border: 1px solid #9d9d9d;
}
.receipt_status_layer > .l > .m > .confirm_button {
    background: #ff9103;
}


#kiosk_wrap > .credit_card_wrap {
    width: 420px;
    height: 460px;
    top: 1322px;
    left: 390px;
    cursor: grab;
    overflow: hidden;
    display: none;
}
#kiosk_wrap > .credit_card_wrap > .credit_card{
    background: url('../img/ui/card.png'); /* 이미지 경로 확인 필요 */
    width: 280px;
    height: 177px;
    transform: rotate(0deg);
    top: 70px;
    left: 30px;
}

#kiosk_wrap > .credit_card_wrap > .direction_cursor_1{
    top: 140px;
    left: 70px;
    animation: direction_card_1 1.2s ease infinite normal;
    transform-origin: bottom right;
    /* display: none; */
}
@keyframes direction_card_1 {
    40%{
        margin-top: 4px;
        margin-left: 0;
    }
    100% {
        margin-left: 150px;
    }
}

#kiosk_wrap > .credit_card_wrap > .direction_cursor_2{
    top: 140px;
    left: 70px;
    animation: direction_card_2 0.9s ease-out infinite;
    display: none;
}
@keyframes direction_card_2 {
    40%{
        margin-top: 4px;
        margin-left: 0;
    }
    100% {
        margin-top: -50px;
    }
}



#kiosk_wrap > .receipt_top_wrap {
    width: 530px;
    height: 590px;
    top: 180px;
    left: 190px;
    display: none;
}
.receipt_top_wrap > .receipt{
    background: url(../img/ui/common/receipt_screen.png);
    width: 481px;
    height: 572px;
}
#kiosk_wrap > .number_tag_wrap {
    width: 530px;
    height: 590px;
    top: 180px;
    left: 190px;
    display: none;
}
.number_tag_wrap > .number_tag{
    background: url(../img/ui/common/number_tag_top.png);
    width: 474px;
    height: 378px;
}

#kiosk_wrap > .receipt_bottom_wrap {
    width: 280px;
    height: 460px;
    top: 1328px;
    left: 50px;
    overflow: hidden;
    display: none;
}
.receipt_bottom_wrap > .receipt{
    background: url(../img/ui/common/receipt_bottom.png);
    width: 203px;
    height: 292px;
    left: 34px;
    top: -150px;
    transition-duration: 1.3s;
}
.receipt_bottom_wrap > .receipt[data-state="in"]{
    top: -150px;
}
.receipt_bottom_wrap > .receipt[data-state="out"]{
    top: -20px;
}


#kiosk_wrap > .number_tag_bottom {
    width: 280px;
    height: 460px;
    top: 1328px;
    left: 50px;
    overflow: hidden;
    display: none;
}
.number_tag_bottom > .number_tag{
    background: url(../img/ui/common/number_tag_bottom.png);
    width: 203px;
    height: 176px;
    left: 34px;
    top: -150px;
    transition-duration: 1.3s;
}
.number_tag_bottom > .number_tag[data-state="in"]{
    top: -150px;
}
.number_tag_bottom > .number_tag[data-state="out"]{
    top: -20px;
}


.view_wrap > .receipt_done_layer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .receipt_done_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .receipt_done_layer > .l {
    width: 366px;
    height: 244px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.receipt_done_layer > .l > .m{
    width: 100%;
    height: 100%;
}
.receipt_done_layer > .l > .m > .text_1{
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 41px;
    top: 60px;
    line-height: 130%;
}

.view_wrap > .number_tag_layer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .number_tag_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .number_tag_layer > .l {
    width: 366px;
    height: 244px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.number_tag_layer > .l > .m{
    width: 100%;
    height: 100%;
}
.number_tag_layer > .l > .m > .text_1{
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 41px;
    top: 60px;
    line-height: 130%;
}

.view_wrap > .payment_done_layer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .payment_done_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .payment_done_layer > .l {
    width: 586px;
    height: 404px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.payment_done_layer > .l > .m{
    width: 100%;
    height: 100%;
}
.payment_done_layer > .l > .m > .text_1{
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 41px;
    top: 60px;
}
.payment_done_layer > .l > .m > .text_2{
    width: 100%;
    top: 140px;
    font-size: 30px;
    text-align: center;
    line-height: 130%;
}
.payment_done_layer > .l > .m > .text_3{
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
    top: 220px;
    font-size: 40px;
    text-align: center;
    padding: 20px 10px 15px 10px;
    border-radius: 10px;
    background: #ff4747;
    color: #fff;
}




.view_wrap > .coupon_exchange_wrap {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .coupon_exchange_wrap > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .coupon_exchange_wrap > .l {
    width: 666px;
    height: 944px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .coupon_exchange_wrap > .l > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .coupon_exchange_wrap > .l > .t {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .coupon_exchange_wrap > .l > .t > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.coupon_exchange_wrap > .l > .m {
    width: 100%;
    left: 0;
    top: 20px;
    height: auto;
    display: flex;
    align-content: center;
    justify-content: center;
}
.coupon_exchange_wrap > .l > .m > .top_text {
    font-size: 30px;
    width: 100%;
    text-align: center;
    top: 10px;
}
.coupon_exchange_wrap > .l > .m > .line {
    width: 98%;
    margin: 0 1%;
    top: 60px;
    border: 1px solid #d7d7d7a6;
}
.coupon_exchange_wrap > .l > .m > .phone_text {
    top: 100px;
    left: 20px;
    width: 310px;
    font-size: 30px;
}
.coupon_exchange_wrap > .l > .m > .phone_input {
    top: 170px;
    left: 20px;
    width: 310px;
    font-size: 30px;
}
.coupon_exchange_wrap > .l > .m > .text_1{
    font-size: 30px;
    width: 73%;
    top: 10px;
}
.coupon_exchange_wrap > .l > .m > .img{
    background: url(../img/ui/common/barcode_img.png);
    width: 478px;
    height: 317px;
    top: 130px;
}
.coupon_exchange_wrap > .l > .m > .barcode_text{
    top: 480px;
    width: 190px;
    left: 90px;
    font-size: 30px;
}
.coupon_exchange_wrap > .l > .m > .barcode_input_wrap{
    top: 530px;
    left: 50px;
    width: 270px;
    height: 210px;
    border: 2px solid #d3d3d3;
}
.barcode_input_wrap > .barcode{
    width: 100%;
    font-size: 25px;
    top: 16px;
    display: none;
}
.barcode_input_wrap > .menu_name{
    width: 90%;
    left: 5%;
    font-size: 20px;
    top: 62px;
    text-align: left;
    display: none;
}
.coupon_exchange_wrap > .l > .m > .numberpad_wrap {
    top: 470px;
    width: 320px;
    left: 310px;
    height: 280px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.coupon_exchange_wrap > .l > .m > .numberpad_wrap > .number {
    position: relative;
    width: 70px;
    height: 60px;
    margin: 6px;
    background: #dfdfdf;
    font-size: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.coupon_exchange_wrap > .l > .m > .numberpad_wrap > .number_c {
    width: 155px;
}
.coupon_exchange_wrap > .l > .m > .numberpad_wrap > .number > .direction_cursor_2 {
    top: 30px;
    left: 50px;
    opacity: 0;
    display: none;
}
.coupon_exchange_wrap > .l > .m > .numberpad_wrap > .number[click-able="able"] > .direction_cursor_2{
    opacity: 1;
    display: block;
}
.coupon_exchange_wrap > .l > .m > .b_button_wrap {
    width: 100%;
    top: 760px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.coupon_exchange_wrap > .l > .m > .b_button_wrap > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
}
.coupon_exchange_wrap > .l > .m > .b_button_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.coupon_exchange_wrap > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}




#kiosk_wrap > .coupon_paper{
    background: url(../img/ui/common/coupon_1.png);
    width: 295px;
    height: 471px;
    top: 1230px;
    left: 390px;
    display: none;
}
#kiosk_wrap > .coupon_paper[data-state="click"]{
    animation: billSmallClick 1.5s ease normal forwards;
}
@keyframes billSmallClick {
    0% {
        transform: rotateY( 0 );
    }
    50%{
        background: url(../img/ui/common/coupon_back.png);
    }
    100% {
        background: url(../img/ui/common/coupon_back.png);
        transform: rotateY( 180deg );
        left: 40px;
    }
}


#kiosk_wrap > .kpay_wrap {
    width: 660px;
    height: 520px;
    top: 1322px;
    left: 70px;
    cursor: grab;
    overflow: hidden;
    display: none;
}
#kiosk_wrap > .kpay_wrap > .kpay{
    background: url('../img/ui/common/pay_phone.png'); /* 이미지 경로 확인 필요 */
    width: 288px;
    height: 413px;
    transform: rotate(0deg);
    top: 70px;
    left: 30px;
}

#kiosk_wrap > .kpay_wrap > .direction_cursor_1{
    top: 140px;
    left: 120px;
    animation: direction_card_1 1.2s ease infinite normal;
    transform-origin: bottom right;
}
@keyframes direction_card_1 {
    40%{
        margin-top: 4px;
        margin-left: 0;
    }
    100% {
        margin-left: 250px;
    }
}

#kiosk_wrap > .kpay_wrap[data-state="recognize"] > .kpay{
    animation: dpayMove 0.7s forwards ease-out;
    transform: translate3d(0, 0, 0); 
}

#kiosk_wrap > .kpay_wrap[data-state="recognize"] > .direction_cursor_1{
    display: none;
}

@keyframes dpayMove {
    to {
        left: 340px;
    }
}



.view_wrap > .cash_receipt_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .cash_receipt_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .cash_receipt_layer > .layer_wrap {
    width: 666px;
    height: 694px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .cash_receipt_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .cash_receipt_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .cash_receipt_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.cash_receipt_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 20px;
    height: 410px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.cash_receipt_layer > .l > .m > .top_text {
    font-size: 30px;
    width: 100%;
    text-align: center;
    top: 10px;
}
.cash_receipt_layer > .l > .m > .line {
    width: 98%;
    margin: 0 1%;
    top: 60px;
    border: 1px solid #d7d7d7a6;
}
.cash_receipt_layer > .l > .m > .phone_text {
    top: 170px;
    left: 20px;
    width: 310px;
    font-size: 30px;
}
.cash_receipt_layer > .l > .m > .phone_input {
    top: 230px;
    left: 20px;
    width: 310px;
    font-size: 30px;
}
.cash_receipt_layer > .l > .m > .numberpad_wrap {
    top: 170px;
    width: 320px;
    left: 310px;
    height: 280px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.cash_receipt_layer > .l > .m > .numberpad_wrap > .number {
    position: relative;
    width: 70px;
    height: 60px;
    margin: 6px;
    background: #dfdfdf;
    font-size: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.cash_receipt_layer > .l > .m > .numberpad_wrap > .number_c {
    width: 155px;
}
.cash_receipt_layer > .l > .m > .numberpad_wrap > .number > .direction_cursor_2 {
    top: 30px;
    left: 50px;
    opacity: 0;
    display: none;
}
.cash_receipt_layer > .l > .m > .numberpad_wrap > .number[click-able="able"] > .direction_cursor_2{
    opacity: 1;
    display: block;
}
.cash_receipt_layer > .l > .m > .type_wrap{
    top: 100px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}
.cash_receipt_layer > .l > .m > .type_wrap > .radio-group{
    width: 190px;
    position: relative;
    float: left;
    height: 30px;
    font-size: 24px;
    text-align: center;
}
.cash_receipt_layer > .l > .m > .type_wrap > .radio-group > input{
    left: 18px;
    top: 8px;
}
.cash_receipt_layer > .l > .m > .type_wrap > .radio-group > label{
    left: 40px;
}
.cash_receipt_layer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 480px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.cash_receipt_layer > .l > .m > .b_button_wrap > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
}
.cash_receipt_layer > .l > .m > .b_button_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.cash_receipt_layer > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}


.coupon_1_sample{
    background: url(../img/ui/common/coupon_1.png);
    width: 295px;
    height: 471px;
    top: 250px;
    left: 50%;
    transform: translateX(-50%) scale(1.4);
    display: none;
}



.view_wrap > .coupon_add_layer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .coupon_add_layer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .coupon_add_layer > .layer_wrap {
    width: 566px;
    height: 384px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .coupon_add_layer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .coupon_add_layer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .coupon_add_layer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.coupon_add_layer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 20px;
    height: 410px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.coupon_add_layer > .l > .m > .text_1 {
    font-size: 30px;
    line-height: 140%;
    top: 30px;
}

.coupon_add_layer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 180px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.coupon_add_layer > .l > .m > .b_button_wrap > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
}
.coupon_add_layer > .l > .m > .b_button_wrap > .cancel_button {
    border: 1px solid #9d9d9d;
}
.coupon_add_layer > .l > .m > .b_button_wrap > .add_button {
    background: #ff9103;
}





.view_wrap > .kPayPaymentLayer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .kPayPaymentLayer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .kPayPaymentLayer > .layer_wrap {
    width: 656px;
    height: 534px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .kPayPaymentLayer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .kPayPaymentLayer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}
.view_wrap > .kPayPaymentLayer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.kPayPaymentLayer > .layer_wrap > .m {
    width: 100%;
    height: 510px;
    left: 0;
    top: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.kPayPaymentLayer > .layer_wrap > .m_1{

}
.kPayPaymentLayer > .l > .m > .button {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 30px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 210%;
    top: 350px;
}
.kPayPaymentLayer > .l > .m > .cancel_button {
    border: 1px solid #9d9d9d;
}
.kPayPaymentLayer > .l > .m > .confirm_button {
    background: #ff9103;
}
.kPayPaymentLayer > .layer_wrap > .m_1 > .text_1{
    font-size: 40px;
    top: 80px;
    left: 110px;
    font-family: "GmarketSansBold";
}
.kPayPaymentLayer > .layer_wrap > .m_1 > .text_2{
    font-size: 40px;
    top: 80px;
    left: 300px;
    width: 310px;
    text-align: center;
    color: #ef0000;
    font-family: "GmarketSansBold";
}
.kPayPaymentLayer > .layer_wrap > .m_2{
    display: none;
}
.kPayPaymentLayer > .layer_wrap > .m_2 > .text_1{
    font-size: 40px;
    top: 10px;
    left: 110px;
    font-family: "GmarketSansBold";

}
.kPayPaymentLayer > .layer_wrap > .m_2 > .img{
    background: url(../img/ui/common/kpay_img.png);
    width: 600px;
    height: 261px;
    top: 70px;
    left: 27px;

}
.kPayPaymentLayer > .layer_wrap > .m_2 > .border_line{
    border: 6px #ff0000 dotted;
    width: 140px;
    top: 90px;
    left: 80px;
    height: 70px;
}
.kPayPaymentLayer > .layer_wrap > .m_2 > .cancel_button{
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
}


#kiosk_wrap > .kpay_bar_wrap {
    width: 750px;
    height: 520px;
    top: 1462px;
    left: 20px;
    overflow: hidden;
    display: none;
}
#kiosk_wrap > .kpay_bar_wrap > .kpay_bar{
    background: url('../img/ui/common/kpay_phone.png'); /* 이미지 경로 확인 필요 */
    width: 337px;
    height: 178px;
    transform: rotate(0deg);
    top: 70px;
    left: 290px;
}

#kiosk_wrap > .kpay_bar_wrap > .direction_cursor_1{
    top: 170px;
    left: 430px;
    animation: direction_card_1 1.2s ease infinite normal;
    transform-origin: bottom right;
}
@keyframes direction_card_1 {
    40%{
        margin-top: 4px;
        margin-left: 0;
    }
}

#kiosk_wrap > .kpay_bar_wrap[data-state="recognize"] > .kpay_bar{
    animation: kpayMove 1.5s ease normal forwards;
}

#kiosk_wrap > .kpay_bar_wrap[data-state="recognize"] > .direction_cursor_1{
    display: none;
}

@keyframes kpayMove {
    0% {
        transform: rotateY( 0 );
    }
    50%{
        background: url('../img/ui/common/kpay_phone_back.png');
    }
    100% {
        background: url('../img/ui/common/kpay_phone_back.png');
        transform: rotateY( 180deg );
        left: 1px;
    }
}




.view_wrap > .cashPaymentLayer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .cashPaymentLayer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .cashPaymentLayer > .layer_wrap {
    width: 656px;
    height: 414px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .cashPaymentLayer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .cashPaymentLayer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}
.view_wrap > .cashPaymentLayer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.cashPaymentLayer > .layer_wrap > .m {
    width: 100%;
    height: 510px;
    left: 0;
    top: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.cashPaymentLayer > .layer_wrap > .m > .text_1{
    font-size: 37px;
    line-height: 140%;
    top: 30px;
}
.cashPaymentLayer > .layer_wrap > .m > .confirm_button{
    position: relative;
    width: 200px;
    height: 62px;
    font-size: 32px;
    line-height: 210%;
    border-radius: 11px;
    margin: 0 12px;
    box-shadow: -1px 1px 0px 0px #a7a7a7;
    top: 220px;
    background: #ff9103;
}



.view_wrap > .orderMonitorLayer {
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.view_wrap > .orderMonitorLayer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .orderMonitorLayer > .layer_wrap {
    width: 656px;
    height: 414px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .orderMonitorLayer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .orderMonitorLayer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}
.view_wrap > .orderMonitorLayer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.orderMonitorLayer > .layer_wrap > .m {
    width: 100%;
    height: 380px;
    left: 0;
    top: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.orderMonitorLayer > .l > .m > .monitor_wrap{
    position: absolute;
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.orderMonitorLayer > .l > .m > .monitor_wrap > .monitor{
    width: 50%;
    height: 100%;
    position: relative;
}
.orderMonitorLayer > .l > .m > .monitor_wrap > .monitor > .top_text{
    position: relative;
    width: 310px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 30px;
    /* margin-top: 30px; */
    padding: 10px;
    background: #4b4b4b;
    color: #fff;
}
.orderMonitorLayer > .l > .m > .monitor_wrap > .monitor > .item{
    width: 90px;
    font-size: 30px;
    color: #fff;
    background: #4b4b4b;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    margin: 20px 0;
    margin-left: 20px;
}
.orderMonitorLayer > .l > .m > .monitor_wrap > .right_monitor > .item{
    width: 90px;
    font-size: 30px;
    color: #fff;
    background: #c0504d;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    margin: 20px 0;
    margin-left: 20px;
}
.orderMonitorLayer > .l > .m > .monitor_wrap > .right_monitor > .top_text{
    background: #ed8300;
}

.orderMonitorLayer > .l > .m > .bottom_text{
    background: #858585;
    color: #fff;
    font-size: 30px;
    bottom: 0px;
    padding: 20px 10px;
    border-radius: 10px;
    width: 100%;
}



.view_wrap > .addPointConfirmLayer {
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.view_wrap > .addPointConfirmLayer > .dim {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.8);
}
.view_wrap > .addPointConfirmLayer > .layer_wrap {
    width: 586px;
    height: 424px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.view_wrap > .addPointConfirmLayer > .layer_wrap > div {
    position: relative;
    text-align: center;
    line-height: 230%;
}
.view_wrap > .addPointConfirmLayer > .layer_wrap > .top {
    width: 100%;
    height: 75px;
    background-color: #ff8e88;
    font-size: 38px;
    display: flex;
    justify-content: center;
}

.view_wrap > .addPointConfirmLayer > .layer_wrap > .top > div {
    float: left;
    position: relative;
    margin: 0 6px;
}
.addPointConfirmLayer > .layer_wrap > .middle_section {
    width: 100%;
    left: 0;
    top: 50px;
    height: 260px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.addPointConfirmLayer > .l > .m > .text_1{
    top: 30px;
    font-size: 28px;
    width: 480px;
    word-break: keep-all;
}

.addPointConfirmLayer > .l > .m > .b_button_wrap {
    width: 100%;
    top: 200px;
    display: flex;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.addPointConfirmLayer > .l > .m > .b_button_wrap > .button {
    width: 250px;
    height: 60px;
    border-radius: 6px;
    position: relative;
    font-size: 28px;
    box-shadow: -2px 2px 2px 0px #9d9d9d;
    margin: 0 10px;
    line-height: 240%;
}
.addPointConfirmLayer > .l > .m > .b_button_wrap > .cancel_button {
    background: #cecece;
}
.addPointConfirmLayer > .l > .m > .b_button_wrap > .confirm_button {
    background: #ff9103;
}
