@font-face {
    font-family: "Juache";
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Juache.woff') format('woff');
    /* src: url("../font/Juache-v2.0.woff") format("woff"); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Juache';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMJUA.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "GmarketSansMedium";
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    /* src: url("../font/GmarketSansMedium.woff") format("woff"); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

:root {
    --main-color: #81d8d0;
    --dark-gray: #232323;
    --light-gray: #d3d3d3;
}

html {
    font-size: 14px;
}

*,
body {
    box-sizing: border-box;
}

body {
    font-size: 14px;
}

input:focus {
    outline: none;
    background: #81d8cf11;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}
#welcomePage,
#daenakPage {
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    display: flex;
    justify-content: center;
    background: #ddd;
    font-family: "GmarketSansMedium";
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}

#daenakPage::-webkit-scrollbar {
    display: none; /* 크롬, 사파리, 오페라, 엣지 */
}

.left_side {
    position: fixed;
    top: 15px;
    left: calc(50% - 585px);
    transform: translateX(-100%);
}

.right_side {
    position: fixed;
    top: 15px;
    right: calc(50% - 585px);
    transform: translateX(100%);
}

.left_side .side_ad,
.right_side .side_ad {
    width: 300px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aplct_form {
    width: 100%;
    background: #fff;
    height: fit-content;
    min-width: 500px;
    max-width: 750px;
    z-index: 999;
    min-height: 100vh;
    background: #BFE6E3;
    padding: 50px 20px 20px;
}

.side_wrap {
    position: sticky;
    top: 0px;
    background: #BFE6E3;
    padding: 50px 20px 0 0;
    width: 380px;
}
.side_wrap .side_ad {
    width: 100%;
    height: 100px;
}
.aplct_form .chat.group,
 .aplct_form .status.group{
    display: none!important;
}
.status_area {
    background: #fff;
    border-radius: 16px;
    padding: 8px 12px;
    color: #4B4B4B;
    font-size: 0.8571rem;
    font-family: "GmarketSansMedium";
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    height: 50px;
}
.status_area > span {
    padding-left: 24px;
    position: relative;
}
.status_area > span::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.status_area > span::after {
    content: "";
    background: url(/img/refresh.svg) center/contain no-repeat;
    position: absolute;
    top: 4px;
    left: 5px;
    width: 10px;
    height: 10px;
    /* animation: spinPause 2s linear infinite;
    transform-origin: center; */
}

@keyframes spinPause {
  0% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.status_area .status_list {
    gap: 10px;
    font-weight: 700;
}
.status_area .status_list .status_item {
    gap: 4px;
    /* color: #AEAEAE; */
    color: #47BF5D;
}
.status_area .status_list .status_item > span {
    width: 16px;
    height: 16px;
    border-radius: 50px;
    /* background: #EFEFEF; */
    background: #D4FCDB;
    line-height: 18px;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    font-size: 0.7143rem;
}
.status_area .status_list .status_item.payment {
    color: #FF9523;
}
.status_area .status_list .status_item.payment > span {
    background: #FFEBD6;
}
.status_area .status_list .status_item.working {
    color: #FA83BE;
}
.status_area .status_list .status_item.working > span {
    background: #FFECF6;
}
.status_area .status_list .status_item.complete {
    color: #00A0EF;
}
.status_area .status_list .status_item.complete > span {
    background: #E4F4FF;
}
.status_area .status_list .status_item.cancel {
    color: #F03457;
}
.status_area .status_list .status_item.cancel > span {
    background: #FFE8EC;
}

.side_wrap .chat.group {
    margin: 16px 0;
}
.side_wrap .chat.group .chat_area {
    width: 360px;
    min-width: 360px;
    height: 520px;
}

.aplct_bg {
    width: 100%;
}
.aplct_bg > div:not(.group.chat, .group.status) {
    display: none;
}
.aplct_bg .group_bg {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.top_notice {
    background: #fff;
    padding: 25px;
    margin: 0;
    margin-top: 16px;
    border: 3px solid #81D8D0;
    border-radius: 20px;
    display: none;
}

.top_notice h4 {
    text-align: center;
    font-family: "Juache";
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.top_notice ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.top_notice ul li:not(:last-child) {
    margin-bottom: 10px;
}

.top_notice ul li strong {
    color: hotpink;
}

.main_title {
    font-family: "Juache";
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    height: 50px;
    line-height: 50px;
    width: 100%;
    max-width: 1130px;
    min-width: 350px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    background: #fff;
    z-index: 999;
}

.main_title .go_chat {
    position: absolute;
    top: 6px;
    right: 20px;
    width: 70px;
    height: 30px;
    background: var(--main-color);
    font-size: 0.7rem;
    color: #fff;
    line-height: 30px;
    border-radius: 50px;
    padding-top: 2px;
    animation: float 0.8s linear infinite;
    cursor: pointer;
    display: none;
}

.main_title .go_chat::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid var(--main-color);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    top: calc(100% - 5px);
    left: 80%;
    transform: rotate(-35deg);
}

.main_title .go_chat.new::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: red;
    position: absolute;
    top: -3px;
    right: 10px;
}

label.title {
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-family: "Juache";
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 15px;
    position: relative;
    height: 32px;
}

.flx {
    display: flex;
}
.flx-col {
    display: flex;
    flex-direction: column;
}

.flx.gap10 {
    gap: 10px;
}

.col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.group.ad {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 20px 0 0;
    width: 100%;
    height: 150px;
    flex: none;
    overflow: hidden;
}

.top.group, .coupon.group {
    display: none;
}

input[id="otp"] {
    display: none;
}

input[name="loginType"],
input[name="service"],
input[name="topClass"],
input[name="coupon"],
input[name="couponType"],
input[name="couponCount"],
.terms input[type="checkbox"] {
    display: block;
    height: 0;
    width: 0;
    opacity: 0;
}

.group:not(.account, .chat) input[type="text"] {
    height: 42px;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    padding: 0 10px;
    width: 100%;
}

.name_wrap.group > .flx,
.phone_wrap.group > .flx,
.price_wrap.group > .flx {
    gap: 20px;
}

.name_wrap.group > .flx > div,
.phone_wrap.group > .flx > div,
.price_wrap.group > .flx > div {
    flex: 1;
}
.price_wrap.group .final_price .charge {
    font-size: 0.825rem;
}
.price_wrap.group .final_price .total_price {
    display: none;
}
.group input[type="radio"] ~ label:not(.custom) {
    background: var(--light-gray);
    border-radius: 10px;
    height: 50px;
    text-align: center;
    padding: 0 10px;
    cursor: pointer;
    transition: 0.3s;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.group input[type="radio"]:disabled ~ label {
    background: #eee;
    color: var(--light-gray);
    cursor: default;
}

.group input[type="radio"] ~ label .price {
    display: none;
    font-weight: normal;
}

.group input[type="radio"]:checked + label:not(.custom) {
    background: var(--main-color);
    color: #fff;
    position: relative;
}

input[name="path"] {
    display: block;
    height: 0;
    width: 0;
    opacity: 0;
}

.top.group > .top_desc {
    row-gap: 10px;
    flex-wrap: wrap;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.top.group > .disc_box {
    background: #F8F8F8;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.path.group > .path_wrap {
    row-gap: 10px;
    flex-wrap: wrap;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.path.group > .path_wrap > div {
    width: 25%;
    display: flex;
    align-items: center;
}

.path.group #pathEtc {
    border: 1px solid #e1e1e1;
    background: #fff;
    height: 30px;
    margin-left: 10px;
    border-radius: 6px;
    padding: 0 5px;
}

input[name="service"]:checked + label::before,
input[name="loginType"]:checked + label::before,
input[name="topClass"]:checked + label::before,
input[name="coupon"]:checked + label::before,
input[name="couponType"]:checked + label::before,
input[id="topClassAgree"]:checked + label::before {
    content: "";
    position: absolute;
    background: url(/img/check_white_large.svg);
    width: 18px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
}

.input_wrap {
    flex: 1;
    text-align: center;
}

.input_wrap:first-child {
    text-align: left;
}

.input_wrap:last-child {
    text-align: right;
}

.loginType input[type="radio"] ~ label {
    width: 100%;
}

.logintype_btns_wrap {
    flex-wrap: wrap;
    justify-content: space-between;
}

.logintype_btns_wrap > div {
    width: calc(33.33% - 10px);
    flex: none;
    padding: 0 !important;
}

.count_wrap {
    margin-top: 30px;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(5, 1fr);
}

.count_wrap .input_wrap {
    text-align: center;
    margin-bottom: 15px;
}

.coupon_count_area {
    display: none;
}

.coupon_dt.group .disc_wrap > div {
    display: none;
    margin-top: 15px;
}

.coupon_select_list_wrap {
    background: #F8F8F8;
    border-radius: 7px;
    padding: 10px;
}

.coupon_select_list_wrap .list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coupon_select_list_wrap .list_header,
.coupon_select_list_wrap .list_item > div:first-child {
    width: calc(100% - 76px);
    gap: 10px;
}

.coupon_select_list_wrap .list_header {
    margin-bottom: 8px;
}

.coupon_select_list_wrap .list_header > div,
.coupon_select_list_wrap .list_item > div > div {
    width: 100%;
}

.coupon_select_list_wrap .list select {
    border: 2px solid #81D8D0;
    border-radius: 7px;
    padding: 5px 10px;
    height: 32px;
    box-sizing: border-box;
    outline: none;
    width: 100%;
}

.coupon_select_list_wrap .list select.warning {
    animation: warning2 0.8s linear;
}

.coupon_select_list_wrap .list .btns {
    gap: 4px;
    margin-left: 8px;
}

.coupon_select_list_wrap .list .btns button {
    width: 32px;
    height: 32px;
    border: 2px solid #4FC3D4;
    border-radius: 7px;
    box-sizing: border-box;
    background: #81D8D0;
    font-family: "Juache";
    font-size: 22px;
    color: #fff;
    padding: 0;
}

.coupon_select_list_wrap .list .btns button.delete {
    border-color: #81D8D0;
    background: #CACACA;
}

.coupon_select_list_wrap .list .btns button:disabled {
    border-color: #ddd;
    background: #eee;
    color: #ddd;
}

.coupon_select_disc_wrap .selected_coupons {
    background: #EDEDED;
    min-height: 25px;
    min-width: 75px;
    padding: 3px 10px;
    font-weight: bold;
    border-radius: 3px;
    display: inline;
    vertical-align: middle;
}

input[name="couponCount"] ~ label {
    background: #e1e1e1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    cursor: pointer;

    font-family: "Juache";
    font-weight: bold;
    font-size: 1.5rem;
    color: #777777;
    padding: 0;
    border: 3px solid transparent;
}

input[name="couponCount"]:checked + label {
    background: #fff;
    border: 3px solid #01a1bb;
    color: #01a1bb;
}

.input_wrap label {
    width: 100%;
}

.service.group .warning_message {
    color: hotpink;
}

.service_btns_wrap {
    gap: 10px;
}

.coupon_dt {
    display: none;
}

.warning_message {
    margin: 0 5px;
    margin-top: 5px;
    color: red;
    font-size: 11px;
    display: none;
}

.warning_message.fixed,
.warning_message.show {
    display: block;
}

.warning_message.fixed {
    color: hotpink;
}

.aplct_form input[type="text"].warning {
    border: 2px solid red;
}

.aplct_form input[type="radio"] ~ label.warning,
.aplct_form input[id="topClassAgree"] ~ label.warning {
    animation: warning 0.8s linear;
}

label[for='instant'] {
    line-height: 18px !important;
}

@keyframes warning {
    0% {
        border: 3px solid red;
    }
    100% {
        border: 3px solid transparent;
    }
}

@keyframes warning2 {
    0% {
        border: 2px solid red;
    }
    100% {
        border: 2px solid #81D8D0;
    }
}

label[for="otp"] {
    padding-top: 3px;
}

.radio_wrap input[type="radio"] ~ label,
.otp_wrap input[type="checkbox"] ~ label,
.disc_wrap input[type="checkbox"] ~ label {
    position: relative;
    padding-left: 20px;
    min-width: fit-content;
}

.radio_wrap input[type="radio"] ~ label::before,
.otp_wrap input[type="checkbox"] ~ label::before,
.disc_wrap input[type="checkbox"] ~ label::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background: #fff;
    top: 8px;
    left: 0;
    cursor: pointer;
}

.radio_wrap input[type="radio"] ~ label::before {
    top: 50%;
    transform: translateY(-50%);
}

.radio_wrap input[type="radio"]:checked ~ label::before,
.otp_wrap input[type="checkbox"]:checked ~ label::before,
.disc_wrap input[type="checkbox"]:checked ~ label::before {
    background: var(--main-color);
}

input[type="checkbox"] ~ label.warning {
    animation: textWarning 1.2s linear;
}

input[name="path"] ~ label.warning {
    animation: textWarning 1.2s linear !important;
}

@keyframes textWarning {
    0% {
        color: red;
    }
    100% {
        color: var(--dark-gray);
    }
}

label[for="otp"] {
    margin-right: 5px;
}

input[id="allConsent"] ~ label,
input[id="topClassAgree"] ~ label {
    position: relative;
    width: 100%;
    background: var(--light-gray);
    border-radius: 10px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    padding-top: 2px;
    cursor: pointer;
    transition: 0.3s;
}

input[id="allConsent"] ~ label::before,
input[id="topClassAgree"] ~ label::before {
    content: "";
    outline: none;
}

input[id="allConsent"]:checked ~ label,
input[id="topClassAgree"]:checked ~ label {
    background: var(--main-color);
    color: #fff;
}

.consent label {
    position: relative;
    width: calc(100% - 160px);
    margin: 0;
    text-align: start;
    padding-left: 25px;
}

.consent label::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background: #fff;
    top: 5px;
    left: 0;
    cursor: pointer;
}

.consent > .flx {
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.terms.group > div:nth-child(3) > div.flx {
    margin-top: 20px;
}

.consent > .flx > label > strong {
    font-weight: normal;
    color: #FF69B4;
}

.consent > .flx > .show_details {
    width: 160px;
    border: 1px solid #979797;
    background: #fff;
    font-size: 1rem;
    height: 32px;
    line-height: 32px;
    border-radius: 7px;
    color: var(--main-color);
    cursor: pointer;
    text-align: center;
}

.consent > .flx > .show_details.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.consent > .details {
    display: none;
}

.consent input:checked + div > label::before {
    background: var(--main-color);
}

.terms textarea {
    background: #e1e1e1;
    border-radius: 10px;
    min-height: 90px;
    max-height: 250px;
    border: none;
    padding: 10px;
    outline: none;
    color: #222;
    font-size: 12px;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.terms textarea::-webkit-scrollbar {
    width: 8px;
}

.terms textarea::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.terms textarea::-webkit-scrollbar-track {
    background: transparent;
}

.instant_id.group {
    display: none;
    margin: -20px 5px 20px 5px;
}

.compensation_price.group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.compensation_price.group label {
    margin: 0;
}

.compensation_price.group > div {
    width: 160px;
    border: 1px solid #00525B;
    background: #00525B;
    font-size: 1rem;
    height: 32px;
    line-height: 32px;
    border-radius: 7px;
    color: #fff;
    font-weight: bold;
    cursor: default;
    text-align: center;
}

.price_wrap .border_box {
    border: 2px solid var(--main-color);
    border-radius: 7px;
    padding: 15px;
    height: calc(100% - 37px);
}

.price_wrap .border_box.receipt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height:58px;
}

.price_wrap .border_box.receipt > div {
    justify-content: space-between;
    align-items: center;
    display: none;
}

.price_wrap .account > .flx {
    align-items: center;
}
.price_wrap #copy {
    position: relative;
    width: 25px;
    height: 25px;
    background: transparent;
    margin-bottom: 8px;
    border: none;
    cursor: pointer;
}
.price_wrap #copy::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/img/copy_icon.svg) center/contain no-repeat;
    transition: 0.3s;
}
.price_wrap #copy:hover::before {
    transform: scale(1.15);
}
.price_wrap .account .title {
    margin-right: 8px;
}
.bankAccountNumber {
    display: none;
    white-space: pre-line;
    width: 100%;
    resize: none;
    outline: none;
}

.chat.group {
    background: #eaedf2;
    border-radius: 10px;
    border: 3px solid var(--main-color);
}

.chat_area {
    padding: 15px;
    height: 600px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
    scroll-behavior: smooth;
    width: 100%;
}

.group_divide {
    margin: 20px 10px;
    border-top: 2px dotted #bbc0c4;
}

.chat_area .divide {
    margin: 30px 0;
    border-top: 1px solid #bbc0c4;
    position: relative;
}

.chat_area .divide::before {
    content: "이전 채팅";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    padding: 0 10px;
    background: #eaedf2;
    color: #808080;
}

.ban_sign_wrap {
    padding: 10px 0;
    background: #f9f9f9;
    display: none;
    margin-top: 16px;
    width: 100%;
}

.ban_sign_wrap .ban_sign {
    text-align: center;
    background: #f9f9f9;
    color: red;
    font-size: 1.125rem;
    border: none;
    outline: none;
    resize: none;
    height: 120px;
    width: 100%;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}

.ban_sign_wrap .ban_sign::-webkit-scrollbar {
    display: none;
}

.chat.group .bubble_wrap {
    align-items: end;
    gap: 5px;
}

.chat.group .bubble_wrap small {
    font-size: 11px;
}

/* ( 크롬, 사파리, 오페라, 엣지 ) 동작 */
.chat_area::-webkit-scrollbar {
    display: none;
}

.chat_area .icon_wrap {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    border: 1px solid #fff;
    background: var(--main-color);
}
.chat_area .icon_wrap::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(/img/staff-v2.svg) center / contain no-repeat;
}
.chat_area .greeting_chat {
    align-items: center;
    gap: 3px;
}
.chat_area .greeting_chat .bubble {
    margin-top: 0;
}

.bubble_wrap.user {
    justify-content: end;
}

.bubble {
    background: #fff;
    padding: 12px 20px 8px;
    border-radius: 15px;
    min-height: 45px;
    margin-top: 20px;
    width: fit-content;
}

.bubble_wrap.staff .bubble {
    position: relative;
    margin-left: 15px;
}

.bubble_wrap.staff .bubble::before {
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -14px;
}

.bubble_wrap.user .bubble {
    position: relative;
    margin-right: 15px;
    background: var(--main-color);
    color: #fff;
}

.bubble_wrap.user .bubble::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid var(--main-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -14px;
}

.qna_wrap {
    padding: 15px;
    /*   border: 3px solid #fff; */
    margin: 20px 0 0;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.qna_wrap button {
    border: 1px solid var(--main-color);
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    border-radius: 50px;
    background: #fff;
    color: #00525b;
    transition: 0.3s;
    font-size: 0.8rem;
}

.qna_wrap button:hover {
    background: #C4E6E6;
}

.chat_input_wrap {
    border-radius: 0 0 10px 10px;
    padding: 8px;
}

.chat_input_wrap > div {
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 2px;
    border-radius: 50px;
    border: 2px solid var(--main-color);
}

.chat_input_wrap input {
    height: 35px;
    border: none;
    background: transparent;
    padding: 0 10px;
    width: calc(100% - 97px);
}

.send_chat {
    width: 97px;
    background: var(--main-color);
    border-radius: 0 0 10px 0;
    border: none;
    height: 35px;
    outline: none;
    padding-top: 5px;
    color: #fff;
    border-radius: 50px;
}

/* #apply { */
/*   width: 100%; */
/*   max-width: 330px; */
/*   height: 70px; */
/*   text-align: center; */
/*   line-height: 70px; */
/*   background: var(--main-color); */
/*   color: var(--dark-gray); */
/*   margin: auto; */
/*   margin-bottom: 10px; */
/*   border-radius: 10px; */
/*   border: none; */
/*   font-family: "Juache"; */
/*   font-size: 1.5rem; */
/* } */
.btn_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.btn_wrap.ban_daenak {
    display: none;
    margin-top: 20px;
}

.btn_wrap button {
    border: none;
    font-family: "Juache";
    font-size: 1.4rem;
    color: #00525B;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    transition: 0.3s;
    width: 100%;
    height: 4.25rem;
}

.btn_wrap button#apply {
    background: #C4E6E6;
    display: none;
}

.btn_wrap > div {
    gap: 10px;
    width: 100%;
}

.fixed_widgets {
    position: fixed;
    bottom: 30px;
    right: 5vw;
    z-index: 999;
}

.fixed_widgets .go_top {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    opacity: 0.6;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    margin: auto;
}

.fixed_widgets .go_top::before {
    content: "";
    background: url(/img/top_white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 30px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -3px;
}

.fixed_widgets .go_chat {
    opacity: 0.6;
    transition: 0.3s;
    cursor: pointer;
    width: 110px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: var(--main-color);
    border-radius: 50px;
    font-family: "GmarketSansMedium";
    font-size: 1.1rem;
    font-weight: bold;
    padding-top: 3px;
    animation: float 0.8s linear infinite;
    position: relative;
}

.fixed_widgets .go_chat::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid var(--main-color);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.fixed_widgets .go_top:hover,
.fixed_widgets .go_chat:hover {
    opacity: 1;
}

.top_banner {
    margin: 70px auto 20px;
    display: block;
    border-radius: 10px;
}
.final_details {
    background: #F8F8F8;
    padding: 20px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.final_details .details {
    display: none;
}

.review-bubble-wrap {
    position: relative;
    font-family: "GMarketSans";
    margin-top: 20px;
}
.review-bubble-wrap .bubble-tail {
    content: "";
    position: absolute;
    left: 75%;
    top: 99%;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.reviews-carousel {
    position: relative;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 10px #67898721;
    cursor: pointer;
}
.reviews-carousel .carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.6s ease-in-out;
}

.reviews-carousel .item {
    width: calc(100% - 72px);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #4b4b4b;
    font-size: 0.8571rem;
    gap: 8px;
    box-sizing: border-box;
    align-items: center;
}
.reviews-carousel .item .placeholder {
    position: relative;
    width: 32px;
    height: 32px;
}
.reviews-carousel .item .placeholder img {
    position: absolute;
    top: -2px;
}
.reviews-carousel .item .rating {
    align-items: center;
    gap: 2px;
}
.reviews-carousel .item .rating strong {
    font-size: 1rem;
    width: 54px;
}
.reviews-carousel .item .comment {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-bubble-wrap .all-reviews-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7857rem;
    color: #A6A7AD;
    text-align: right;
    box-sizing: border-box;
    cursor: pointer;
}

/* 팝업 */
.popup_bg {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: "GmarketSansMedium";
}

.popup_bg.show {
    display: flex;
}

.popup {
    animation: zoom 0.15s linear;
    width: calc(100% - 20px);
    min-width: 300px;
    max-height: calc(100% - 40px);
    overflow-y: scroll;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}

.popupy::-webkit-scrollbar {
    display: none; /* 크롬, 사파리, 오페라, 엣지 */
}

.popup_bg.confirm .popup {
    position: relative;
    background: #fff;
    max-width: 500px;
    box-sizing: border-box;
    color: var(--dark-gray);
    border-radius: 15px;
}

.popup_bg.confirm .title {
    font-size: 1.5rem;
    font-family: "Juache";
}

.popup_bg.confirm .pop_body {
    padding: 30px 50px 0px 50px;
}

.popup_bg.confirm .pop_footer {
    padding: 0px 50px 30px 50px;
}

.popup_bg.confirm .top {
    text-align: center;
}

.popup_bg.confirm .top h4 {
    font-size: 1.5rem;
    font-family: "Juache";
    color: var(--main-color);
    margin: 15px auto;
}

.popup_bg.confirm .use_details {
    padding: 10px;
    padding-top: 15px;
    border: 2px solid var(--main-color);
    border-radius: 15px;
    text-align: center;
    font-size: 1rem;
    font-family: "GmarketSansMedium";
}

.popup_bg.confirm .disc {
    font-size: 0.8rem;
    color: #5b5b5b;
    font-weight: 300;
    font-family: "GmarketSansMedium";
}

.popup_bg.confirm .pop_footer h3 {
    font-family: "GmarketSansMedium";
    font-size: 1.2rem;
    text-align: center;
}

.popup_bg.confirm .pop_footer button {
    background: var(--light-gray);
    flex: 1;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    color: var(--dark-gray);
}

.popup_bg.confirm .pop_footer button:first-child {
    margin-right: 20px;
    background: var(--main-color);
    color: #fff;
    position: relative;
}

.popup_bg.confirm .pop_footer button:first-child::before {
    content: "";
    width: 18px;
    height: 14px;
    background: url(/img/check_white_large.svg);
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.popup_bg.confirm .pop_footer button:last-child {
    margin-left: 20px;
}

.pop_ad {
    width: 100%;
    background: lightgray;
    height: 160px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_bg.finish .popup {
    background: #fff;
    max-width: 500px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "GmarketSansMedium";
    font-size: 1.5rem;
    color: var(--main-color);
    animation: slideDown 0.35s linear;
    margin-bottom: 100px;
}

.popup_bg.notice .popup {
    max-width: 500px;
    height: calc(100% - 20px);
    max-height: 600px;
    animation: slideDown 0.35s linear;
    border-radius: 15px;
}

.popup_bg.waiting_count .popup,
.popup_bg.login_type .popup,
.popup_bg.basic_coupon_count .popup,
.popup_bg.select_coupon_count .popup,
.popup_bg.instant .popup,
.popup_bg.review_write .popup {
    max-width: 500px;
    border-radius: 15px;
    background: #fff;
}

.popup_bg.login_type .popup .disc_box,
.popup_bg.basic_coupon_count .popup .disc_box,
.popup_bg.select_coupon_count .popup .disc_box {
    margin: 15px;
    text-align: center;
    font-size: 1rem;
    padding: 15px;
    background: #F8F8F8;
}

.popup_bg.login_type .popup .bottom_wrap button,
.popup_bg.basic_coupon_count .popup .bottom_wrap button,
.popup_bg.select_coupon_count .popup .bottom_wrap button,
.popup_bg.instant .bottom_wrap button,
.popup_bg.review_write .bottom_wrap button,
.popup_bg.review_write_confirm .bottom_wrap button {
    width: 100%;
    border: none;
    height: 60px;
    text-align: center;
    font-weight: bold;
    background: #EDEDED;
    cursor: pointer;
    font-size: 1.4rem;
    font-family: "Juache";
    transition: 0.3s;
}

.popup_bg.login_type .popup .bottom_wrap button,
.popup_bg.basic_coupon_count .popup .bottom_wrap button,
.popup_bg.select_coupon_count .popup .bottom_wrap button,
.popup_bg.instant .bottom_wrap button,
.popup_bg.review_write .bottom_wrap button,
.popup_bg.review_write_confirm .bottom_wrap button {
    background: var(--main-color);
    color: #fff;
}

.popup_bg.basic_coupon_count h3,
.popup_bg.select_coupon_count h3 {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 1.4rem;
    font-family: "Juache";
    color: #438087;
}

.popup_bg.history .popup {
    max-width: 500px;
    height: fit-content;
    border-radius: 15px;
    background: #fff;
}

.popup_bg.history .popup .pop_body {
    height: calc(100% - 50px);
    position: relative;
    font-size: 0.9rem;
}

.popup_bg.history .popup .pop_body .bottom_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    /* display: none; */
}

.popup_bg.history .popup .pop_body .bottom_wrap .waiting_count {
    height: 40px;
    line-height: 40px;
    background: #ddd;
    text-align: center;
}

.popup_bg.history .popup .pop_body .bottom_wrap .waiting_count span {
    color: hotpink;
}

.popup_bg.history .popup .pop_body .bottom_wrap .refresh {
    height: 30px;
    line-height: 30px;
    text-align: end;
    padding: 0 10px;
}

.popup_bg.history .popup .pop_body .bottom_wrap .refresh span {
    font-size: 12px;
    cursor: pointer;
    position: relative;
}

.popup_bg.history .popup .pop_body .bottom_wrap .refresh span::before {
    content: "\f2f9";
    position: absolute;
    font-size: 13px;
    color: #000;
    top: -8px;
    left: -15px;
    transition: 0.5s;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.popup_bg.history .popup .pop_body .bottom_wrap .refresh_btn.clicked::before {
    color: gray;
}

.popup_bg.history .popup .pop_body .bottom_wrap .refresh_btn.rotate::before {
    animation: rotate 0.8s;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.popup_bg.history .history_list {
    display: flex;
    flex-direction: column;
    height: calc(100% - 75px);
}

.popup_bg.history .history_list::-webkit-scrollbar {
    width: 8px;
}

.popup_bg.history .history_list::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.popup_bg.history .history_list::-webkit-scrollbar-track {
    background: transparent;
}

.popup_bg.history .list_header,
.popup_bg.history .history_list .list_item {
    display: flex;
    align-items: center;
    padding: 8px;
    height: 40px;
    border-bottom: 1px solid #ddd;
}

.popup_bg.history .history_list .list_item.empty {
    justify-content: center;
}

.popup_bg.history .history_list .list_item {
    cursor: pointer;
}

.popup_bg.history .list_header > div,
.popup_bg.history .history_list .list_item > div {
    text-align: center;
}

.popup_bg.history .list_header > div:nth-child(1),
.popup_bg.history .history_list .list_item > div:nth-child(1) {
    width: 25%;
}
.popup_bg.history .list_header > div:nth-child(2),
.popup_bg.history .history_list .list_item > div:nth-child(2) {
    width: 40%;
}
.popup_bg.history .list_header > div:nth-child(3),
.popup_bg.history .history_list .list_item > div:nth-child(3) {
    width: 15%;
}
.popup_bg.history .list_header > div:nth-child(4),
.popup_bg.history .history_list .list_item > div:nth-child(4) {
    width: 15%;
}
.popup_bg.history .history_list .list_item > div:nth-child(4) {
    color: #A6A7AD;
}
.popup_bg.history .list_header > div:nth-child(5),
.popup_bg.history .history_list .list_item > div:nth-child(5) {
    width: 5%;
}
.popup_bg.history .history_list .list_item .toggle {
    position: relative;
    width: 24px;
    height: 24px;
    display: block;
}
.popup_bg.history .history_list .list_item .toggle::before {
    content: "";
    background: url(/img/expand_right_light.svg) center/contain no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    transition: 0.2s;
}
.popup_bg.history .history_list .list_item.active .toggle::before {
/*     background: url(/img/expand_down_light.svg) center/contain no-repeat; */
    transform: rotate(90deg);
}

.popup_bg.history .history_list .list_item ~ .history_details {
    padding: 16px 24px;
    border-bottom: 1px solid #ddd;
    display: none;
}
.popup_bg.history .history_list .list_item ~ .history_details > div {
    margin-bottom:  12px;
}
.popup_bg.history .history_list .list_item .history_review_write {
    border-radius: 5px;
    padding: 5px 8px 2px;
    background: #fff;
    border: 1px solid #438087;
    color: #438087;
    cursor: pointer;
    transition: 0.3s;
}
.popup_bg.history .history_list .list_item .history_review_write:hover {
    transform: scale(1.04);
}

.popup_bg .popup .pop_header {
    position: sticky;
    top: 0;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 1.4rem;
    background: var(--main-color);
    text-align: center;
    font-family: "Juache";
    z-index: 1000;
}

.popup_bg .popup .pop_header .close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
}

.popup_bg.notice .popup .pop_body {
    background: #fff;
    height: calc(100% - 50px);
    padding: 10px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}

.popup_bg.notice .popup .pop_body::-webkit-scrollbar {
    display: none; /* 크롬, 사파리, 오페라, 엣지 */
}

.popup_bg.notice .popup .pop_body .notice {
    width: 100%;
    height: 100%;
    resize: none;
    border: none;
    outline: none;
    cursor: auto;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}

.popup_bg.notice .popup .pop_body .notice::-webkit-scrollbar {
    display: none;
}

.popup_bg.instant .popup .wrap {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
}

.popup_bg.instant .popup .wrap .input_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup_bg.instant .popup .wrap .input_wrap input {
    padding: 8px 12px;
    width: 40%;
    max-width: 140px;
    border: 1px solid #b8b8b8;
    border-radius: 6px;
}

.popup_bg.instant .popup .wrap .input_wrap input.warning {
    border-color: red;
}
.popup_bg.waiting_count .pop_header {
    background: #fff;
}
.popup_bg.waiting_count .pop_header .close {
    color: #000;
}
.popup_bg.waiting_count .pop_body > div {
    text-align: center;
    margin-bottom: 50px;
}
.popup_bg.waiting_count .pop_body > div > span {
    color: hotpink;
}
.popup_bg.review_write .wrap {
    padding: 20px;
}
.popup_bg.review_write h3 {
    font-size: 1.25rem;
    color: #438087;
    font-family: "Juache";
    margin-bottom: 0;
    text-align: center;
}
.popup_bg.review_write .rating_box {
    gap: 4px;
    padding: 8px 0;
    justify-content: center;
}
.popup_bg.review_write .rating_box .emo_wrap {
    padding: 6px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #B4B5BA;
    cursor: pointer;
}
.popup_bg.review_write .rating_box .emo_wrap > input:checked ~ .icon::before,
.popup_bg.review_write .rating_box .emo_wrap:hover > input ~ .icon::before {
    transform: scale(1.05);
}
.popup_bg.review_write .rating_box .emo_wrap > input:checked ~ small {
    color: #4B4B4B;
}
.popup_bg.review_write textarea {
    background: #F4F5FC;
    border-radius: 10px;
    padding: 16px;
    font-size: 0.875rem;
    width: 100%;
    border: none;
    resize: none;
    outline: none;
    height: 80px;
    color: #4B4B4B;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.popup_bg.review_write textarea::-webkit-scrollbar {
    display: none;
}
.popup_bg.review_write textarea::placeholder {
    color: #B4B5BA;
}
.popup_bg.review_write .emo-preload {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    background:
        url(/img/emo1-large.png),
        url(/img/emo2-large.png),
        url(/img/emo3-large.png),
        url(/img/emo4-large.png),
        url(/img/emo5-large.png);
}
.popup_bg.review_write .emo_wrap input {
    display: none;
}
.popup_bg.review_write .emo_wrap input ~ .icon {
    width: 60px;
    height: 60px;
    position: relative;
}
.popup_bg.review_write .emo_wrap input ~ .icon::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
}
.popup_bg.review_write .emo_wrap:nth-child(1) > input ~ .icon::before {
    background: url(/img/emo1-large-inactive.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(2) > input ~ .icon::before {
    background: url(/img/emo2-large-inactive.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(3) > input ~ .icon::before {
    background: url(/img/emo3-large-inactive.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(4) > input ~ .icon::before {
    background: url(/img/emo4-large-inactive.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(5) > input ~ .icon::before {
    background: url(/img/emo5-large-inactive.png) center/contain no-repeat;
}

.popup_bg.review_write .emo_wrap:nth-child(1) > input:checked ~ .icon::before {
    background: url(/img/emo1-large.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(2) > input:checked ~ .icon::before {
    background: url(/img/emo2-large.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(3) > input:checked ~ .icon::before {
    background: url(/img/emo3-large.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(4) > input:checked ~ .icon::before {
    background: url(/img/emo4-large.png) center/contain no-repeat;
}
.popup_bg.review_write .emo_wrap:nth-child(5) > input:checked ~ .icon::before {
    background: url(/img/emo5-large.png) center/contain no-repeat;
}
.popup_bg.reviews .popup {
    max-width: 600px;
    border-radius: 15px;
    background: #fff;
}
.popup_bg.reviews .pop_body {
    padding: 12px 20px 20px;
}
.popup_bg.reviews .pop_body .head {
    align-items: center;
}
.popup_bg.reviews .pop_body .head h4 {
    font-family: "Juache";
    color: #6b6b6b;
    margin-bottom: 12px;
    font-size: 1.1429rem;
}
.popup_bg.reviews .pop_body .head h4 strong {
    color: var(--main-color);
}
.popup_bg.reviews .pop_body .head h4 .good {
    padding-left: 30px;
    position: relative;
}
.popup_bg.reviews .pop_body .head h4 .good::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: -6px;
    left: 0;
}
.popup_bg.reviews .pop_body .head h4 strong:nth-child(3)::before {
    background: url(/img/emo4.png) center/contain no-repeat;
}
.popup_bg.reviews .pop_body .head h4 strong:nth-child(4)::before {
    background: url(/img/emo5.png) center/contain no-repeat;
}
.popup_bg.reviews .pop_body .head small {
    color: #4B4B4B;
}
.popup_bg.reviews .reviews_list {
    gap: 8px;
}
.popup_bg.reviews .reviews_list .review_item {
    gap: 8px;
    background: #F4F5FC;
    border-radius: 20px;
    padding: 8px 12px 12px;
    color: #4B4B4B;
    font-size: 0.8571rem;
}
.popup_bg.reviews .reviews_list .review_item > div {
    gap: 8px;
}
.popup_bg.reviews .reviews_list .review_item .review_top {
    justify-content: space-between;
    align-items: center;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating {
    gap: 4px;
    align-items: center;
    font-weight: bold;
    font-size: 0.9375rem;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon {
    width: 32px;
    height: 32px;
    position: relative;
    margin-top: -2px;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating strong {
    font-family: 'GMarketSans';
    font-weight: 700;
    font-size: 1rem;
}
.popup_bg.reviews .emo-preload {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    background:
        url(/img/emo1.png),
        url(/img/emo2.png),
        url(/img/emo3.png),
        url(/img/emo4.png),
        url(/img/emo5.png);
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon.emo1::before {
    background: url(/img/emo1.png) center/contain no-repeat;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon.emo2::before {
    background: url(/img/emo2.png) center/contain no-repeat;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon.emo3::before {
    background: url(/img/emo3.png) center/contain no-repeat;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon.emo4::before {
    background: url(/img/emo4.png) center/contain no-repeat;
}
.popup_bg.reviews .reviews_list .review_item .review_top .rating .icon.emo5::before {
    background: url(/img/emo5.png) center/contain no-repeat;
}
.popup_bg.reviews .reviews_list .review_item .review_top span {
    color: #9294A1;
    font-size: 0.6875rem;
}
.popup_bg.reviews .reviews_list .review_item .content {
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; */
    line-height: 135%;
}
.popup_bg.reviews .reviews_list .review_item small {
    color: #A6A7AD;
    font-size: 0.6875rem;
    text-align: end;
}
.popup_bg.reviews .reviews_list .review_item .staff_content {
    padding-top: 8px;
    border-top: 1px solid #DFE1EF;
    color: #9294A1;
}
.popup_bg .pagination {
    justify-content: center;
    margin-top: 12px;
    gap: 4px;
    font-size: 0.875rem;
}
.popup_bg .pagination a {
    color: #9294A1;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 36px;
    text-decoration: none;
}
.popup_bg .pagination a.current {
    color: #fff;
    background: var(--main-color);
    border-radius: 50px;
}
.popup_bg .pagination a.controls {
    color: #E5E5E5;
}
.popup_bg .pagination a.controls.active {
    color: #9294A1;
}
.popup_bg.review_write_confirm .popup {
    max-width: 400px;
    border-radius: 15px;
    background: #fff;
}
.popup_bg.review_write_confirm h4 {
    font-size: 1.25rem;
    color: #438087;
    font-family: "Juache";
    margin: 2.5rem 0;
    text-align: center;
}
.popup_bg.review_write .bottom_wrap button:last-child,
.popup_bg.review_write_confirm .bottom_wrap button:last-child {
    background: #F4F5FC;
    color: #9294A1;
}


/* uikit */
.uk-notification-message-success {
    background: #32d296;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
}

.uk-notification-message-danger {
    background: #f0506e;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
}

.coupon_final .coupon_count {
    color: red;
    font-weight: bold;
}


/* keyframes */
@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    50% {
        transform: translateY(3px);
    }
}

/* responsive */
@media screen and (max-width: 899px) {
    .side_wrap {
        display: none;
    }
    .left_side,
    .right_side {
        display: none;
    }
    .aplct_form {
        min-width: 360px;
        max-width: none;
    }
    .aplct_form .chat.group,
     .aplct_form .status.group {
        display: block!important;
    }
    #daenakPage .main_title .go_chat {
        display: block;
    }
}

@media screen and (max-width: 584px) {
    .path.group > .path_wrap > div {
        width: 33.333%;
    }
    .fixed_widgets {
        left: 95%;
        bottom: 3.5%;
    }
    .price_wrap.group > div {
        flex-direction: column;
    }
    .consent > .flx > .show_details {
        width: 100px;
    }
    .consent label {
        width: calc(100% - 100px);
    }
}

@media screen and (max-width: 484px) {
    .name_wrap.group > div,
    .phone_wrap.group > div {
        flex-direction: column;
    }
    .popup_bg.confirm .pop_body {
        padding: 30px 30px 0 30px;
    }
    /* .consent > .flx {
        flex-direction: column;
        align-items: start;
        gap: 8px;
    } */
    .consent label {
        width: 100%;
    }
    .compensation_price.group {
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }
    .compensation_price.group > div {
        width: 100%;
        height: 50px;
        line-height: 50px;
    }
    .path.group > .path_wrap > div {
        width: 50%;
    }
}

@media screen and (max-width: 420px) {
    label.title {
        font-size: 1.2rem;
    }

    input[name="couponCount"] ~ label {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.3rem;
    }

    .main_title img {
        transform: scale(0.8);
    }

    #daenakPage .main_title .go_chat {
        width: 60px;
    }

    .price .event > div:nth-child(1) {
        font-size: 1.2rem;
    }

    .price .event p,
    .price .event p strong {
        font-size: 1.2rem;
    }

    .price .event > div:nth-child(2) img {
        width: 35px;
    }

    .qna_wrap button {
        padding: 0 12px;
        font-size: 0.7rem;
    }

    .fixed_widgets .go_top {
        width: 40px;
        height: 40px;
    }

    .fixed_widgets .go_top::before {
        width: 25px;
        height: 13px;
        margin-top: -2px;
    }

    .btn_wrap button {
        font-size: 1.125rem;
    }
    .popup_bg.history .popup .pop_body {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 365px) {
    input[name="couponCount"] ~ label {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
        line-height: 55px;
    }
}
