:root {
    --page-bg: #F8F6F4;
}
html.dark body,
body.dark {
    --page-bg: #131313;
}
body {
    background-color: var(--page-bg);
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
body.dark .quick .h_ham {
 background: var(--white-200);
}


/*-- 스타일 강제 막기 --*/
.success {
    width: auto !important;
    height: auto !important;
    border: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    margin: 0 !important;
}


.page_wrap {
    min-height: 100vh;
    padding: 86px 20px 20px 80px;
    background-color: var(--page-bg);
    display: flex;
    justify-content: start;
    gap: 16px;
    overflow-x: clip;
}
.playlog_page {
    margin: 0;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/*-- user_box --*/
.user_box {
    display: flex;
    align-items: center;
    gap: 2px;
}
.user {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.user_thumb {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}
.user_thumb img {
    border-radius: var(--radius-xs);
    overflow: hidden;
}
.user_nickname {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
}
.user_level {
    width: fit-content;
    height: 24px;
    position: relative;
}
.user_level span {
    display: block;
    font-size: 11px;
    font-style: italic;
    font-weight: var(--semi-bold);
    color: white;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    z-index: 1;
}

.user_box .date {
    font-size: var(--ft14);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}
.user_box .date::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--gray-300);
}


/*-- chip_list --*/
.chip_list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.chip_btn {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
    cursor: pointer;
}
.chip_btn:hover {
    background-color: var(--gray-100);
}
.chip_btn p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
}
.chip_list li input:checked ~ .chip_btn {
    background-color: var(--primary);
    border-color: var(--primary);
}
.chip_list li input:checked ~ .chip_btn p {
    font-weight: var(--semi-bold);
    color: white;
}

.select_list {
    max-height: calc((32px * 5) + 8px);
    overflow-y: auto;
}
.select_list::-webkit-scrollbar {
    width: 4px;
}
.select_btn {
    height: 32px;
}
.img_select .select_btn {
    height: 40px;
}


/*-- page_chip --*/
.page_chip {
    width: 100%;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(var(--grid, 3), 1fr);
    border-bottom: 1px solid var(--dark-line);
}
.page_chip li {
    width: 100%;
}
.page_chip_btn {
    display: block;
    padding: 10px 16px;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_chip_btn p {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-300);
}
.page_chip li input:checked ~ .page_chip_btn {
    border-bottom: 1px solid var(--gray-700);
}
.page_chip li input:checked ~ .page_chip_btn p {
    color: var(--gray-700);
}



/*-- img_expand --*/
.style_list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.style_list li {
    display: flex;
    gap: 8px;
}
.style_list li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-top: 8px;
    background-color: var(--gray-400);
    flex-shrink: 0;
}

/*--------------------------- form_list ---------------------------*/
.form_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.form_box_r {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form_box {
    min-width: 0;
}


/*--------------------------- header ---------------------------*/

.m_nav {
    display: none;
}
/*-------- h_top --------*/
.h_top {
    width: calc(100% - 60px - 40px);
    height: 50px;
    padding: 0 20px;
    margin: 0;
    border-radius: 50%;
    position: fixed;
    top: 20px;
    left: 80px;
    z-index: 10;
}
.h_top .menu {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h_top .menu > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.h_top .menu a {
    padding: 6px 12px;
    border-radius: var(--radius-lg);
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
    transition: background .4s ease;
    position: relative;
}
a.new_dot {
    position: relative;
}
a.new_dot::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--error);
    position: absolute;
    top: 2px;
    right: 2px;
}
.h_top .menu a:hover {
    background-color: var(--primary-bg);
}
.h_top .menu .active a {
    background-color: var(--primary);
    font-weight: var(--semi-bold);
    color: white;
}

.h_top .menu_game {
    padding-right: 12px;
    margin-right: 2px;
    position: relative;
}
.h_top .menu_game::after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background-color: var(--dark-line);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.h_top .menu_game .select_main {
    border: none;
    padding: 6px 16px;
}
.h_top .menu_game .select_text p {
    font-size: var(--ft16);
}
.h_top .menu_game .select_list {
    right: auto;
}
.h_top .select_list label p {
    text-wrap: nowrap;
}

/*-------- quick --------*/
.quick {
    width: 60px;
    height: 100dvh;
    padding: 20px 0;
    border-radius: 0;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    transform: translateY(0);
    z-index: 10;
}
/* .quick_menu .quick_my {
    background-color: var(--white-400);
    border-radius: var(--radius-sm);
    border: 1px solid var(--white-100);
} */
.menu_hover {
    right: auto;
    left: calc(100% + 20px);
    transform: translateY(-50%) translateX(-4px);
}
.menu_hover::after {
    border-left: none;
    border-right: 12px solid var(--primary);
    position: absolute;
    right: auto;
    left: -8px;
}
.h_logo img {
    width: 32px;
    height: 32px;
}

.h_ham {
    background-color: var(--white-200);
}
.h_ham img {
    width: 22px;
    height: 22px;
}

.quick_list li:hover {
    background-color: var(--white-200);
}
.quick_list li:hover .h_menu_icon {
    transform: scale(.9);
}
.quick_list li:hover .menu_hover {
    opacity: 1;
    transform: translateY(-50%);
}



/*--------------------------- popup ---------------------------*/
/*-- follow_popup --*/
.follow_tab_menu {
    display: flex;
    align-items: center;
    gap: 18px;
}
.follow_tab {
    opacity: .4;
    cursor: pointer;
}
.follow_tab.active {
    opacity: 1;
}
.follow_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.follow_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.follow_list .follow_btn {
    margin-top: 0;
    width: 64px;
    height: 30px;
    font-size: var(--ft12);
    color: var(--white);
    background-color: var(--primary);
}
.follow_list .follow_btn.is-follow {
    background-color: var(--gray-100);
    color: var(--gray-400);
}
.follow_list .follow_btn.is-follow::before {
    display: none;
}

/*-- game_popup --*/
.game_serach {
    margin-bottom: 24px;
}
.game_serach .search_box {
    border: 1px solid var(--dark-line);
    background: none;
}
.game_serach .search_box input {
    padding: 0 16px;
}
.game_search_list  {
    padding: 6px;
}
.game_search_list .select_btn {
    height: auto;
}
.game_search_list label {
    padding: 6px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.game_thumb {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.game_search_list label p {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
}
.search_null {
    padding: 10px 6px;
}

.game_menu_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.game_menu_list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.game_item_box {
    width: 100%;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.game_menu_list div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.game_menu_list img {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-xs);
}
.game_menu_list p {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
}
.game_menu_list .drag_img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: opacity .2s ease, transform .2s ease;
}

.drag_icon {
    width: 20px;
    height: 20px;
    background: var(--gray-300);
    mask: url(/images/icon/change_order.svg) no-repeat center / contain;
    -webkit-mask: url(/images/icon/change_order.svg) no-repeat center / contain;
    transition: background .4s ease;
    cursor: pointer;
    flex-shrink: 0;
}
.drag_icon.primary {
    background-color: var(--primary);
}
.delete_icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
    background: var(--gray-300);
    mask: url(/images/icon/delete_g.svg) no-repeat center / contain;
    -webkit-mask: url(/images/icon/delete_g.svg) no-repeat center / contain;
    transition: background .4s ease;
}

.drag_box .drag_icon {
    background-color: var(--primary);
}
.game_item.drag .drag_img {
    opacity: 1;
    transform: scale(1);
}

/*-- verify_popup --*/
.verify_status {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.verify_item {
    padding: 10px 10px 10px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.verify_name {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}
.verify_name::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--error);
}
.verify_text {
    margin-top: 10px;
    font-size: var(--ft13);
    color: var(--gray-500);
}
.verify_badge {
    width: 90px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-100);
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.verify_badge.cursor {
    cursor: pointer;
    transition: border .4s ease;
}
.verify_badge.cursor:hover {
    border-color: var(--gray-200);
}

.verify_item.complete {
    border-color: var(--primary-bg-light);
    background-color: var(--primary-bg-light);
}
.verify_item.complete .verify_name::before {
    background-color: var(--success);
}
.verify_item.complete .verify_badge {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.verify_phone {
    padding: 30px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.verify_phone img {
    width: 60px;
    height: 60px;
}
.verify_phone p {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
    text-align: center;
}

.verify_id {
    border-radius: var(--radius-sm);
    border: 1px dashed var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border .4s ease;
    position: relative;
}
.verify_id:hover {
    border-color: var(--primary);
}
.verify_id > div {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.verify_id_before img {
    width: 60px;
    height: 60px;
}
.verify_id_before p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-500);
}
.popup_notice {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.popup_notice li {
    font-size: var(--ft14);
    color: var(--gray-500);
    display: flex;
    gap: 4px;
}
.popup_notice li::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-top: 6px;
    background-color: var(--gray-400);
    flex-shrink: 0;
}

.verify_id_edit {
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    background-color: var(--gray-400);
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--white);
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}
.verify_id_after img {
    height: fit-content;
    max-height: 200px;
    object-fit: contain;
}

/*-- badge_popup --*/
.badge_popup .popup_box {
    padding: 10px;
    display: flex;
    align-items: start;
    flex-direction: row;
}
.badge_popup_l {
    width: 280px;
    height: 100%;
    flex-shrink: 0;
    padding: 60px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-line);
}
.badge_slot_h {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: var(--ft13);
    font-weight: var(--medium);
    color: var(--gray-400);
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge_slot_h::before,
.badge_slot_h::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--dark-line);
}
.badge_slots {
    display: flex;
    align-items: center;
    gap: 12px;
}
.badge_slot {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .4s ease;
}
.badge_slot img {
    width: 32px;
    height: 32px;
    transition: transform .4s ease;
}
.badge_slot:hover {
    background-color: var(--primary-bg-light);
}
.badge_slot:hover img {
    transform: scale(.9);
}
.badge_slot.is-selected {
    border-color: var(--primary);
    box-shadow: 0 3px 10px 0 rgba(249, 150, 52, 0.60);
    transform: scale(1.15);
}
.badge_slot.is-selected:hover img {
    transform: scale(1);
}

.badge_popup_r {
    width: 100%;
    height: 100%;
    padding: 20px 40px 0;
    display: flex;
    flex-direction: column;
}
.badge_popup_r .popup_h {
    border-bottom: none;
    padding: 0;
    position: static;
}
.badge_form {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.badge_wrap {
    height: 100%;
    margin-top: 16px;
    padding: 10px;
}
.badge_collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.badge_item {
    width: 100%;
    padding: 20px 10px;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all .4s ease;
}
.badge_thumb {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.badge_thumb .badge_percent {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
    position: absolute;
}
.badge_name {
    margin-top: 14px;
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    text-align: center;
}
.badge_desc {
    margin-top: 6px;
    font-size: var(--ft12);
    color: var(--gray-500);
    text-align: center;
}
.badge_percent_bar {
    width: 50px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--gray-200);
    position: absolute;
    top: 10px;
}
.badge_percent_bar .percent_bar {
    display: block;
    height: 100%;
    background-color: var(--success);
    border-radius: 1px;
}
.badge_detail {
    width: 90%;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: rgba(30, 30, 30, 0.70);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(7.5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    opacity: 0;
    z-index: 1;
    transition: opacity .4s ease;
}
.badge_detail * {
    font-size: var(--ft12);
    font-weight: var(--medium);
    color: white;
    text-align: center;
}
.badge_detail time {
    font-size: 10px;
}


.badge_item:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
}
.badge_item:hover .badge_detail {
    opacity: 1;
    transition-delay: .4s;
}
.badge_item:hover .badge_thumb {
    transform: scale(.9);
}

.badge_item.is-locked:hover {
    box-shadow: none;
}
.badge_item.is-locked .badge_thumb img {
    opacity: .4;
    filter: grayscale(1);
}
.badge_item.is-locked .badge_name,
.badge_item.is-locked .badge_desc {
    opacity: .6;
}
.badge_lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-100);
}
.badge_lock .icon {
    width: 20px;
    height: 20px;
    background: url(/images/icon/lock.svg) no-repeat center / contain;
}

.badge_item.is-active:hover {
    box-shadow: 0 3px 10px rgba(249, 150, 52, 0.6);
}
.badge_item.is-active .badge_thumb {
    filter: drop-shadow(0 3px 10px rgba(249, 150, 52, 0.6));
}
.badge_item.is-active:hover .badge_thumb {
    filter: unset;
}
.badge_item.is-active .badge_name {
    font-weight: var(--semi-bold);
    color: var(--primary);
}

/*-- comment_popup --*/
.comment_text {
    margin-top: 12px;
    padding-left: 34px;
    font-size: var(--ft14);
    position: relative;
}
.comment_text::before,
.comment_textarea::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--dark-line);
    position: absolute;
    top: 1px;
    left: 14px;
}
.comment_textarea {
    padding-left: 34px;
    padding-top: 28px;
    position: relative;
}
.textarea_h {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.textarea {
    margin-top: 20px;
    width: 100%;
    height: 120px;
    resize: none;
}
.textarea::-webkit-scrollbar {
    width: 6px;
}
.textarea::placeholder {
    color: var(--gray-400);
}

.profile_card_popup  {
    z-index: 21;
}

.report_popup {
    z-index: 40;
}



/*-- guestbook_popup --*/
.guestbook_user_box {
    padding: 10px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-bg);
    margin-bottom: 24px;
}

.upload_img_wrap {
    margin-top: 40px;
    margin-bottom: 20px;
    overflow: hidden;
}
.upload_img_btn {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--dark-line);
    background-color: var(--gray-100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.upload_img_btn img {
    width: 24px;
    height: 24px;
}
.upload_img_btn p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-600);
    text-align: center;
}
.upload_img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-line);
    overflow: hidden;
    position: relative;
}
.upload_img .img_remove {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
}
.upload_img .img_remove img {
    width: 12px;
    height: 12px;
}

/*-- block_user_popup --*/
.block_user_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.block_user_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block_user_list .user {
    display: flex;
    align-items: start;
    gap: 10px;
}
.block_date {
    margin-top: 4px;
    font-size: var(--ft14);
    color: var(--gray-400);
}
.block_btn {
    width: 64px;
    height: 30px;
    margin-top: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft12);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    cursor: pointer;
}
.block_btn.is-blocked {
    border: none;
    background-color: var(--primary);
    color: white;
}

/*--------------------------- profile_box ---------------------------*/
.profile_box {
    width: 300px;
    height: calc(100dvh - 86px - 20px);
    padding: 30px 20px 0;
    flex-shrink: 0;
    position: sticky;
    top: 86px;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    /* overflow-y: auto; */
}
.m_h_top,
.m_profile_box {
    display: none;
}
.m_h_top .profile_thumb {
    pointer-events: none;
}

.profile_box .no-scrollbar {
    overflow-y: auto;
    padding-bottom: 50px;
}

/*-------- aisde_h --------*/
.aisde_h {
    margin-top: 40px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aisde_title {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
}
.aisde_btn {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
    cursor: pointer;
    transition: color .4s ease;
}
.aisde_btn:hover {
    color: var(--primary);
}


/*-------- profile_card --------*/
.profile_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    position: relative;
}

.playlog_profile_refresh {
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
}

.profile_card .profile_thumb {
    width: 100px;
    height: 100px;
    position: relative;
}
.profile_card .profile_thumb img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--gray-100);
}
.profile_membership_badge {
    padding: 5px 10px;
    border-radius: var(--radius-lg);
    font-size: var(--ft12);
    font-weight: var(--semi-bold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(40%, -40%);
}
.profile_membership_badge.plus {
    background: linear-gradient(160deg, var(--primary-gradient));
    cursor: pointer;
}
.profile_membership_badge.pro {
    background: linear-gradient(142deg, #3490F9 0%, #F934BE 100%), #FFF;
    cursor: pointer;
}
.profile_membership_badge::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(/images/membership.svg) no-repeat center/contain;
}

.profile_card .profile_membership_badge::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    mask: url(/images/icon/right.svg) no-repeat center / contain;
    -webkit-mask: url(/images/icon/right.svg) no-repeat center / contain;
}
.profile_card .profile_membership_badge.none {
    pointer-events: none;
}
.profile_card .profile_membership_badge.none::after {
    display: none;
}


.profile_card .profile_membership_badge:hover ~ .membership_box,
.membership_box:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/*-- membership_box --*/
.membership_popup {
    z-index: 22;
}
.membership_box {
    padding-left: 40px;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .4s ease;
}
.membership_box_inner {
    width: 400px;
    padding: 30px 30px 40px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.10));
}
.membership_title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.membership_title p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}
.membership_popup .membership_badge  {
    --size: auto;
    padding: 5px 10px;
    border-radius: var(--radius-lg);
    font-size: var(--ft12);
    font-weight: var(--semi-bold);
    color: white;
    gap: 4px;
    transform: unset;
    position: static;
}

.membership_popup .membership_badge::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(/images/membership.svg) no-repeat center / contain;
}

.membership_date {
    margin-top: 16px;
    color: var(--gray-500);
}
.membership_dday {
    margin-top: 6px;
    font-weight: var(--semi-bold);
    color: var(--gray-500);
    margin-bottom: 20px;
}
.membership_link {
    font-size: var(--ft14);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.membership_link::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--gray-400);
    mask: url(/images/icon/right.svg) no-repeat center / contain;
    -webkit-mask: url(/images/icon/right.svg) no-repeat center / contain;
}

.profile_card .profile_info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.profile_card .profile_nickname {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
}
.profile_card .profile_info .user_level {
    height: 28px;
}
.profile_card .profile_info .user_level span {
    left: 26px;
}
.profile_card .profile_bio {
    margin-top: 10px;
    font-size: var(--ft14);
    color: var(--gray-600);
    text-align: center;
}

.profile_follow {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.profile_follow li {
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.profile_follow li:first-child {
    margin-right: 24px;
}
.profile_follow li:first-child::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background-color: var(--dark-line);
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}
.follow_count {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
    text-align: center;
}
.follow_label {
    font-size: var(--ft14);
    color: var(--gray-600);
}
.today_box {
    width: 100%;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.today_label {
    font-size: var(--ft14);
    color: var(--gray-600);
}
.today_count {
    font-size: var(--ft14);
    color: var(--gray-700);
}
.today_count .today {
    font-weight: var(--medium);
    color: var(--gray-700);
    margin-right: 4px;
}

.profile_point_box {
    width: 100%;
    margin-top: 20px;
    padding: 9px 12px 9px 14px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    color: var(--gray-700);
    transition: background-color .2s ease;
}
.profile_point_box:hover {
    background-color: var(--primary-bg-light);
}
.profile_point_label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--ft14);
    color: var(--gray-600);
}
.profile_point_label img {
    width: 18px;
    height: 18px;
}
.profile_point_value {
    margin-left: auto;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}
.profile_point_arrow {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-color: var(--gray-400);
    mask: url(/images/icon/right.svg) no-repeat center / contain;
    -webkit-mask: url(/images/icon/right.svg) no-repeat center / contain;
}

.profile_box .follow_btn,
.m_profile_box .follow_btn {
    width: 100%;
    height: 40px;
    margin-top: 8px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: white;
    cursor: pointer;
}
.profile_box .follow_btn.is-follow,
.m_profile_box .follow_btn.is-follow {
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    background-color: var(--gray-100);
    color: var(--gray-400);
}
.profile_box .follow_btn.is-follow::before,
.m_profile_box .follow_btn.is-follow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--gray-400);
    mask: url(/images/icon/check.svg) no-repeat center/contain;
    -webkit-mask: url(/images/icon/check.svg) no-repeat center/contain;
}

.profile_card .badge_list {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.profile_card .badge_list li {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: transform .4s ease;
}
.profile_card .badge_list img {
    width: 24px;
    height: 24px;
}
.profile_card .badge_list .badge_hover {
    width: fit-content;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-500);
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--white);
    text-wrap: nowrap;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .4s ease;
}
.profile_card .badge_list .badge_hover::before {
    content: '';
    display: block;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 7px solid var(--gray-500);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-90%);
}

.profile_card .badge_list li:hover {
    transform: translateY(-3px);
}
.profile_card .badge_list li:hover .badge_hover {
    opacity: 1;
    transform: translateX(-50%);
}

.badge_null {
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 40px;
    background-color: var(--gray-500);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform .4s ease;
}
.badge_null:hover {
    transform: translateY(-2px);
}
.badge_null img {
    width: 14px;
    height: 14px;
}
.badge_null p {
    font-size: var(--ft12);
    font-weight: var(--semi-bold);
    color: var(--white);
}

/*-------- profile_verify --------*/
.profile_verify .verify_list {
    width: 100%;
    display: flex;
    gap: 4px;
    flex-wrap: nowrap !important;
}
.verify {
    width: 100%;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
}
.verify_list.business-seller-verify-list .verify {
    min-width: auto !important;
    flex: auto !important;
}
.verify.is-active {
    background-color: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
}

/*-------- profile_game --------*/
.game_list {
    height: calc(46px * 3 + 8px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.game_list::-webkit-scrollbar {
    width: 4px;
}
.game_list li {
    border-radius: var(--radius-sm);
    border: 1px solid var(--white);
    transition: border .4s ease;
}
.game_list a {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.game_list img {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-xs);
    overflow: hidden;
}
.game_list p {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
}
.game_list li.active {
    background-color: var(--primary-bg);
    border: none;
}
.game_list li:hover {
    border-color: var(--dark-line);
}

/*--------------------------- box ---------------------------*/
.box {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.04);
    background-color: var(--white);
    border-radius: var(--radius-lg);
}
.wrap_box {
    padding: 40px 50px;
}
.page_title_wrap {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page_title_wrap .page_title {
    margin-bottom: 0;
}
.page_title {
    margin-bottom: 24px;
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 12px;
}
.page_title,
.page_title p {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    display: flex;
    align-items: center;
    gap: 12px;
}
.page_title p::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: var(--gray-400);
    mask: url(/images/icon/right.svg) no-repeat center/contain;
    -webkit-mask: url(/images/icon/right.svg) no-repeat center/contain;
}
.page_title p:first-child {
    font-weight: var(--normal);
}
.page_title p:last-child::after {
    display: none;
}
.page_title span {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
}
.page_title_wrap .btn_shrink {
    padding: 10px 20px;
}
.page_title_wrap a.btn_shrink {
    width: fit-content;
}
.btn_shrink_wrap {
    display: flex;
    gap: 10px;
}
.btn_shrink_wrap .btn_shrink p {
    font-size: var(--ft14);
}
.box_list_form {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px 40px;
    flex-wrap: wrap;
}
.box_list_form > *,
.form_l_box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.form_r:has(.form_reset) {
    flex-wrap: unset;
}
.form_r .form_reset {
    flex-shrink: 0;
}
.form_l_box.select_l_box {
    flex-wrap: nowrap;
}
.box_list_form input {
    transform: scale(0.875);
    transform-origin: left;
}
.box_list_form .select_main {
    height: 100%;
}

.box_list_form.end {
    align-items: end;
}
.form_l.column {
    flex-direction: column;
}

/*-- date_input_wrap --*/
.date_input_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.date_input_box {
    width: 170px;
    height: 45px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
    position: relative;
    cursor: pointer;
}
.date_input_box::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: var(--gray-400);
    mask: url(/images/icon/date.svg) no-repeat center/contain;
    -webkit-mask: url(/images/icon/date.svg) no-repeat center/contain;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.date_input_box input {
    width: 100%;
    height: 100%;
    padding-left: 42px !important;
}

.box_list_form .search_box {
    width: 200px;
    height: 45px;
    padding: 0 16px;
    background: none;
    border: 1px solid var(--dark-line);
}
.box_list_form .search_btn::after {
    width: 16px;
    height: 16px;
}

.form_reset {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-line);
}
.form_reset a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.form_reset img {
    width: 20px;
    height: 20px;
}
.form_reset:hover img {
    transition: transform .4s ease;
    transform: rotate(360deg);
}

/*--------------------------- stat_card_list ---------------------------*/
.stat_card_list {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(var(--grid), 1fr);
    gap: 10px;
}
.stat_card_list.mb0 {
    margin-bottom: 0;
}
.stat_card {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    background-color: var(--gray-100);
}
.stat_card.flex {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.stat_card_label {
    margin-bottom: 10px;
    font-size: var(--ft14);
    color: var(--gray-600);
}
.stat_card_value {
    display: flex;
    align-items: center;
    gap: 8px;
}
.stat_card_value,
.stat_card_value p {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.review_average {
    display: flex;
    align-items: center;
    gap: 2px;
}
.review_average img {
    width: 18px;
    height: 18px;
}

/*-- chat_btn --*/
.stat_card .chat_btn {
    width: fit-content;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
}
.stat_card .chat_btn a {
    padding: 10px 16px;
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.stat_card .chat_btn a::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(/images/icon/chat.svg) no-repeat center/contain;
}
.stat_card .chat_btn img {
    width: 16px;
    height: 16px;
}

/*-- more --*/
.stat_card .more a {
    font-size: var(--ft14);
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}
.stat_card .more a::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--gray-400);
    mask: url(/images/icon/right.svg) no-repeat center/contain;
    -webkit-mask: url(/images/icon/right.svg) no-repeat center/contain;
}

/*-- shop_btn --*/
.stat_card .shop_btn {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: white;
}

/*--------------------------- review_list ---------------------------*/
.review_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.review_box {
    display: flex;
    gap: 40px;
    position: relative;
    padding-right: 40px;
}
.review_box .option_btn {
    position: absolute;
    right: 0;
    top: 0;
}
.review_l {
    width: 320px;
    flex-shrink: 0;
    position: relative;
}
.review_star {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.review_star img {
    width: 16px;
    height: 16px;
}
.review_r {
    min-width: 0;
}
.review_text {
    font-size: var(--ft16);
    color: var(--gray-600);
    font-weight: var(--medium);
}
.review_item {
    width: fit-content;
    margin-top: 14px;
    /* cursor: pointer; */
}
.review_item,
.review_item a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review_item_thumb {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    background-color: var(--gray-200);
}
.review_item_name {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-700);
}
.review_item_category {
    margin-top: 2px;
    font-size: var(--ft12);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.review_item_category span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.review_item_category span:not(:first-child)::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gray-300);
}
/*--------------------------- store_list ---------------------------*/
.store_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.store_card {
    border: 1px solid var(--dark-line);
    border-radius: var(--radius-md);
    transition: background .4s ease, border-color .4s ease;
}
.store_card.plus:not(.pro),
.store_card.premium:not(.pro) {
    background-color: var(--primary-bg-light);
}
.store_card.pro {
    background-color: var(--pro-bg);
}
.store_card.highlight {
    border-color: var(--primary);
}
.store_card.highlight.pro {
    border-color: #F934BE;
}
.store_card .item_emergency_badge {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    justify-content: center;
    position: absolute;
    background: linear-gradient(142deg, var(--primary-gradient)), #FFF;
    top: 16px;
    right: 16px;
}
.store_card .item_emergency_badge img {
    width: 16px;
    height: 16px;
}
.store_card .item_emergency_badge .txt {
    color: white;
    font-size: var(--ft14);
    font-weight: var(--bold);
}
.store_card.pro .item_emergency_badge {
    background: linear-gradient(142deg, var(--pro-gradient)), #FFF;
}


.store_card:hover {
    background-color: var(--primary-bg);
}
.store_card.pro:hover {
    background-color: var(--pro-bg);
    box-shadow: var(--shadow);
}
.store_card a {
    padding: 28px;
    position: relative;
}
.store_item_top {
    display: flex;
    align-items: center;
    gap: 16px;
}
.store_card.emergency .store_item_top {
    padding-right: 60px;
}
.store_item_game,
.store_item_game li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-600);
}
.store_item_game li::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(/images/icon/right.svg) no-repeat center / contain;
    opacity: .3;
}
.store_item_game li:last-child::after {
    display: none;
}
.store_item_game li img {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-xs);
}
.store_item_count {
    font-size: var(--ft14);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 16px;
}
.store_item_count::before {
    content: '';
    width: 1px;
    height: 10px;
    background-color: var(--dark-line);
}
.store_title {
    margin-top: 16px;
    font-size: var(--ft16);
    font-weight: var(--medium);
}


/*--------------------------- item_list ---------------------------*/
.item_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.item_card {
    transition: background .4s ease;
}
.item_card:hover {
    background-color: var(--primary-bg);
    box-shadow: none;
}

/*--------------------------- feed_list ---------------------------*/
.feed_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}
.feed_list .feed_box {
    width: 100%;
    min-width: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-line);
}
.feed_h {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.feed_body {
    margin-top: 18px;
    padding-left: 34px;
    cursor: pointer;
}
.feed_img_list {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}
.feed_img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    margin-right: 10px;
    overflow: hidden;
}
.feed_img:last-child {
    margin-right: 0;
}
.feed_text {
    font-size: var(--ft16);
    color: var(--gray-600);
}
.feed_meta {
    margin-top: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.feed_meta li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feed_meta li.feed_game p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-700);
}
.feed_meta li.feed_game::after {
    content: '';
    display: block;
    width: 1px;
    height: 17px;
    background-color: var(--dark-line);
    margin-left: 12px;
}
.feed_meta li.feed_game img {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
}
.feed_meta li.cursor {
    position: relative;
    cursor: pointer;
}
.feed_meta li.cursor::before {
    content: '';
    display: block;
    width: calc(100% + 20px);
    height: 100%;
    border-radius: var(--radius-lg);
    background-color: var(--gray-100);
    transform: scale(0);
    transform-origin: center center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: -10px;
    transition: opacity .2s ease, transform .3s ease;
}
.feed_meta li.cursor:hover::before {
    transform: scale(1);
    opacity: 1;
}
.feed_meta img {
    width: 16px;
    height: 16px;
    z-index: 1;
    position: relative;
}
.feed_meta_count {
    font-size: var(--ft14);
    color: var(--gray-600);
    line-height: 1;
    z-index: 1;
    position: relative;
}

.like_icon {
    width: 16px;
    height: 16px;
    position: relative;
}
.like_icon .line_icon {
    opacity: 1;
    transition: opacity .2s ease, transform .3s ease;
}
.like_icon .fill_icon {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: scale(0);
    transition: opacity .2s ease, transform .3s cubic-bezier(.17,.67,.73,1.33);
}
.complete .like_icon .fill_icon {
    opacity: 1;
    transform: scale(1);
}
.complete .like_icon .line_icon {
    opacity: 0;
    transform: scale(0);
}


/*-- feed_popup --*/
.feed_write_popup .textarea_box {
    margin-top: 24px;
}

.feed_popup .popup_box {
    padding: 10px;
    flex-direction: row;
    align-items: start;
    gap: 10px;
}
.popup_feed_l {
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 40px;
    display: flex;
    flex-direction: column;
}
.popup_feed_top {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup_feed_body {
    margin-top: 40px;
    overflow-y: auto;
}
.popup_feed_img_swiper {
    overflow: hidden;
    margin-bottom: 32px;
}
.popup_feed_img {
    width: 240px;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-right: 10px;
    cursor: pointer;
}
.popup_feed_img:last-child {
    margin-right: 0;
}
.feed_popup .feed_meta {
    margin-top: 60px;
}

.popup_feed_r {
    width: 450px;
    height: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--dark-line);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.popup_feed_chat {
    height: 100%;
    padding: 10px 20px 20px;
    overflow-y: auto;
}
.popup_feed_chat .list_null {
    height: 100%;
}
.feed_chat_box {
    padding-top: 20px;
}
.feed_chat_h {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.feed_chat_body {
    margin-top: 8px;
    padding-left: 34px;
    padding-bottom: 12px;
    position: relative;
}
.feed_chat_text {
    font-size: var(--ft14);
    color: var(--gray-600);
    word-wrap: break-word;
    word-break: break-all;
    max-width: none !important;
    width: auto;
    min-width: 100%;
}
.feed_chat_box .feed_meta {
    margin-top: 16px;
}
.feed_chat_box .feed_meta img {
    width: 14px;
    height: 14px;
}
.feed_chat_box .feed_meta_count {
    font-size: var(--ft12);
}
.replay_box {
    padding-left: 34px;
    position: relative;
}
.feed_chat_body::before,
.replay_box::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--dark-line);
    position: absolute;
    top: 1px;
    left: 14px;
}
.replay_box .feed_chat_body::before {
    display: none;
}

.popup_feed_r .chat_input {
    margin-top: 10px;
    align-items: center;
}

/*--------------------------- guestbook_list ---------------------------*/
.guestbook_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}
.guestbook_list .guestbook_box {
    border-bottom: 1px solid var(--dark-line);
    padding-bottom: 40px;
}
.guestbook_h {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.guestbook_body {
    margin-top: 18px;
    padding-left: 34px;
}
.guestbook_text {
    font-size: var(--ft16);
    color: var(--gray-600);
}
.chat_input {
    width: 100%;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-bg);
    border: 1px solid var(--primary-bg);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    cursor: text;
    transition: border .4s ease;
}
.chat_input > p,
.chat_input_l > p {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: var(--gray-500);
    line-height: 1;
}
.chat_send_btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.chat_send_btn img {
    width: 16px;
    height: 16px;
    transition: transform .4s ease;
}
.chat_input:hover {
    border-color: var(--primary);
}
.chat_input:hover .chat_send_btn img {
    transform: scale(.8);
}

.chat_input_l {
    display: flex;
    align-items: center;
    gap: 20px;
}
.chat_input_l .user {
    padding: 4px 20px 4px 4px;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    flex-shrink: 0;
    position: relative;
    pointer-events: none;
}
.chat_input_l .user::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--white);
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}


/*--------------------------- table_list ---------------------------*/
.table_list {
    width: 100%;
    margin-top: 32px;
}
.table_list th {
    height: 50px;
    padding: 0 10px;
    background-color: var(--gray-100);
    font-size: var(--ft15);
    font-weight: var(--medium);
    color: var(--gray-600);
    text-align: left;
}
.table_list th.text-center {
    text-align: center;
}
.table_list th:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.table_list th:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.table_list td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--dark-line);
    font-size: var(--ft14);
    color: var(--gray-700);
    transition: background .2s ease;
}
.table_list p {
    font-size: var(--ft14);
}
.table_list tr:hover td {
    background-color: var(--primary-bg-light);
}

.table_list .chk_box {
    margin: 0 auto;
}
.table_list .option_btn_td {
    position: relative;
}
.table_list .option_btn {
    width: fit-content;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    right: 20px;
}

.table_list .date {
    text-align: center;
}
.table_list .date p:first-child {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.table_list .date p:last-child {
    margin-top: 2px;
    font-size: var(--ft13);
    color: var(--gray-400);
}

.moblie_wrap {
    display: none;
}


/*----------------- service_pay_popup -----------------*/
.popup_wrap_grid {
    padding: 0;
    display: flex;
    align-items: stretch;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.popup_grid {
    width: 50%;
    padding: 30px 30px 40px;
    flex-shrink: 0;
    background-color: var(--white);
}
.popup_label_h {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.log_open_btn,
.log_close_btn {
    width: fit-content;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    cursor: pointer;
}
.log_open_btn {
    background-color: var(--gray-500);
    color: var(--white);
}
.log_close_btn {
    background-color: var(--gray-100);
    color: var(--gray-400);
}


.popup_item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.popup_item_thumb {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.popup_item_name {
    font-size: var(--ft16);
    font-weight: var(--medium);
}
.popup_label {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
}
.dead_line {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    margin-top: 30px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.dead_line p:first-child {
    font-weight: var(--semi-bold);
}
.popup_point_item.point_have {
    margin-top: 10px;
}

.playlog-paid-service-balance-list .popup_point_item {
    min-width: 0;
    gap: 8px;
}
.playlog-paid-service-balance-list .point_value {
    white-space: nowrap;
}
@media all and (max-width: 400px) {
    .playlog-paid-service-balance-list {
        grid-template-columns: minmax(0, 1fr);
    }
}
.service_pay_h {
    margin-top: 32px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service_pay_title {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}
.service_pay_price {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.service_pay_price strong {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-600);
}
.service_pay_popup .select_list_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.service_pay_popup .select_main {
    height: 50px;
}
.service_pay_popup .select_text p {
    font-size: var(--ft16);
}
.coupon_usage {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.coupon_usage * {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.coupon_usage strong {
    font-weight: var(--medium);
    color: var(--gray-600);
}

.total_price_box {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total_price_box p {
    font-size: var(--ft16);
    font-weight: var(--medium);
}
.total_price_box p.total_price {
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}


.game_serach_box .select {
    position: absolute;
    top: 100%;
}
.popup_log {
    padding-right: 0;
    height: 100%;
    border-left: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.popup_log .popup_label_h {
    padding-right: 30px;
}
.popup_log_list {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
}
.popup_log_list li {
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}
.popup_log_list p {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.popup_log_list .popup_state {
    font-weight: var(--medium);
}
.popup_log_list .popup_state.success {
    color: var(--success);
}


.popup_log_close .popup_box {
    max-width: 400px;
}
.popup_log_close .popup_log {
    display: none;
}
.popup_log_close .popup_grid {
    width: 100%;
}



.feed_scroll_sentinel{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:80px;
    padding:20px 0;
}









@media all and (max-width: 1600px) {

    /*-- wrap_box --*/
    .wrap_box {
        padding: 30px;
    }

    /*-- reivew_list --*/
    .review_box {
        flex-direction: column;
        gap: 20px;
        padding-right: 0;
    }
    .review_l::after {
        display: none;
    }
    .review_item {
        margin-top: 20px;
    }


    /*-- feed_popup --*/
    .feed_popup .popup_box {
        max-width: 1000px;
        height: 600px;
    }
    .popup_feed_img {
        width: 200px;
        height: 200px;
    }
    .popup_feed_r {
        width: 400px;
    }

    /*-- badge_popup --*/
    .badge_popup_l {
        width: 250px;
        padding: 60px 20px;
    }
}

@media all and (max-width: 1400px) {
    /*-- header --*/
    .h_top .menu_game {
        padding-right: 0;
    }
    .h_top .menu_game .select_text p {
        font-size: var(--ft14);
    }
    .h_top .menu > ul {
        gap: 4px;
    }
    .h_top .menu a {
        font-size: var(--ft14);
    }

    /*-- page_title_wrap --*/
    .page_title,
    .page_title p {
        font-size: var(--ft20);
    }
    .page_title_wrap .btn_shrink p {
        font-size: var(--ft14);
    }

    /*-- stat_card_list --*/
    .stat_card_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat_card {
        padding: 18px;
    }
}

@media all and (max-width: 1200px) {
    /*-- profile_box --*/
    .profile_box {
        width: 250px;
    }
    .profile_card .profile_thumb {
        width: 80px;
        height: 80px;
    }

    /*-- item_list --*/
    .item_list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media all and (max-width: 1024px) {
    .page_wrap {
        padding: 20px 16px;
        flex-direction: column;
        gap: 0;
    }
    .h_top.pc_h {
        display: none;
    }
    .m_nav {
        display: block;
        margin: 70px 0 0px;
        padding: 0 10px;
    }
    .nav_tab {
        margin-bottom: 12px;
        display: flex;
        gap: 10px;
        border-bottom: 1px solid var(--dark-line);
    }
    .nav_tab li {
        width: 100%;
        text-align: center;
        font-size: var(--ft16);
        font-weight: var(--medium);
        color: var(--gray-300);
        padding-bottom: 8px;
    }
    .nav_tab li.active {
        font-weight: var(--semi-bold);
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-700);
    }
    .m_nav_inner {
        display: flex;
        align-items: center;
    }
    .m_nav .select {
        width: fit-content;
        margin-right: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
    }
    .m_nav .select::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        background-color: var(--dark-line);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .m_nav .select_main {
        padding: 0;
        border: none;
    }
    .m_nav .select_list {
        background-color: var(--white);
        right: auto;
        left: 0;
    }
    .m_nav .select_list label p {
        text-wrap: nowrap;
    }
    .m_nav .menu {
        overflow: hidden;
    }
    .m_nav .menu .swiper-slide {
        width: fit-content;
    }
    .m_nav .menu .swiper-slide a {
        padding: 6px 13px;
        border-radius: var(--radius-lg);
        font-size: var(--ft15);
        font-weight: var(--medium);
        text-wrap: nowrap;
    }
    .m_nav .menu .swiper-slide.active a {
        color: white;
        background-color: var(--primary);
    }
    a.new_dot::after {
        width: 4px;
        height: 4px;
        top: 4px;
        right: 4px;
    }

    /*-- profile_box --*/
    .profile_box {
        display: none;
    }
    .m_profile_box {
        display: block;
    }
    .m_h_top {
        width: 100%;
        padding: 10px 16px;
        background-color: var(--white);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
    }
    .m_h_top .profile_info {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .m_h_top .profile_thumb {
        width: 22px;
        height: 22px;
        position: relative;
    }
    .m_h_top .profile_thumb img {
        border-radius: var(--radius-xs);
    }
    .m_h_top .profile_membership_badge {
        width: 12px;
        height: 12px;
        padding: 0;
    }
    .m_h_top .profile_membership_badge::before {
        width: 6px;
        height: 6px;
    }
    .m_h_top .profile_nickname {
        font-size: var(--ft16);
        font-weight: var(--semi-bold);
    }
    .h_ham {
        width: 32px;
        height: 32px;
        background-color: var(--gray-500);
        border-radius: 10px;
    }
    .h_ham .icon {
        width: 18px;
        height: 18px;
    }
    .h_ham img {
        width: 100%;
        height: 100%;
    }

    .m_profile_box .profile_card {
        padding: 20px;
        align-items: start;
    }
    .m_profile_box .playlog_profile_refresh {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    .m_profile_box .profile_card .flex {
        align-items: center;
        gap: 24px;
    }
    .m_profile_box .profile_thumb {
        width: 60px;
        height: 60px;
    }
    .m_profile_box .profile_thumb.none {
        pointer-events: none;
    }
    .m_profile_box .profile_membership_badge {
        width: 20px;
        height: 20px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .m_profile_box .profile_membership_badge::before {
        width: 10px;
        height: 10px;
    }
    .m_profile_box .profile_membership_badge::after {
        display: none;
    }
    .profile_follow {
        margin-top: 0;
    }
    .m_profile_box .profile_point_box {
        margin-top: 12px;
    }
    .profile_box .follow_btn,
    .m_profile_box .follow_btn {
        height: 32px;
    }

    .profile_verify,
    .profile_game {
        margin: 10px 0;
        padding: 20px;
    }
    .aisde_h {
        margin-top: 0;
    }
    .game_list {
        flex-direction: row;
        height: auto;
        overflow-x: scroll;
    }

    /*-- stat_card_list --*/
    .stat_card_list {
        margin-bottom: 24px;
        grid-template-columns: repeat(1, 1fr);
    }
    .stat_card {
        padding: 16px;
    }
    .stat_card_value,
    .stat_card_value p {
        font-size: var(--ft18);
    }

    /*-- store_list --*/
    .store_card a {
        padding: 20px;
    }
    .store_item_top {
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }
    .store_item_count::before {
        display: none;
    }
    .store_title {
        margin-top: 8px;
    }

    .item_thumb {
        width: 45px;
        height: 45px;
    }

    /*-- feed_popup --*/
    .feed_popup .popup_box {
        height: auto;
        flex-direction: column;
    }
    .popup_feed_r {
        width: 100%;
    }
    .feed_meta li.cursor::before {
        display: none;
    }

    /*-- badge_popup --*/
    .badge_popup .popup_box {
        height: auto;
        flex-direction: column;
    }
    .badge_popup_l {
        width: 100%;
        padding: 20px;
        height: auto;
    }
    .badge_popup_l .profile_info,
    .badge_popup_l .profile_bio {
        display: none;
    }
    .badge_slot_h {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .badge_popup_r {
        padding: 20px 0;
    }
}

@media all and (max-width : 768px) {
    .page_wrap {
        padding: 16px 10px;
    }
    .m_profile_box .profile_card {
        padding: 12px;
    }
    .profile_verify,
    .profile_game {
        padding: 12px;
    }

    /*-- box --*/
    .wrap_box {
        padding: 20px 12px;
    }
    .page_title,
    .page_title_wrap {
        margin-bottom: 16px;
    }
    .page_title_wrap .btn_shrink {
        padding: 8px 14px;
    }
    .page_title_wrap .btn_shrink p {
        font-size: var(--ft12);
    }
    .page_title,
    .page_title p {
        font-size: var(--ft18);
        gap: 5px;
    }
    .page_title p::after {
        width: 14px;
        height: 14px;
    }
    .pagination {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    /*-- stat_card_list --*/
    .stat_card_list {
        gap: 4px;
    }
    .stat_card {
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* flex-direction: column; */
        gap: 6px;
    }

    .stat_card.flex {
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }
    .stat_card.flex > div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .stat_card_label {
        margin-bottom: 0;
        font-size: var(--ft13);
    }
    .stat_card:has(.review_average) .stat_card_value::before {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        background: url('/images/icon/star_fill.svg') no-repeat center / cover;
    }
    .stat_card .review_average {
        display: none;
    }
    .stat_card_value,
    .stat_card_value p {
        font-size: var(--ft16);
    }
    .stat_card .more a {
        font-size: var(--ft12);
        gap: 3px;
    }
    .stat_card .more a::after {
        width: 11px;
        height: 11px;
    }
    .review_average img {
        width: 14px;
        height: 14px;
    }
    .stat_card .shop_btn {
        width: fit-content !important;
        padding: 8px 14px;
        text-align: center;
        font-size: var(--ft12);
    }
    .stat_card .chat_btn {
        width: fit-content !important;
    }
    .stat_card .chat_btn a {
        padding: 8px 14px;
        font-size: var(--ft12);
    }

    .stat_card_value p {
        order: 2;
    }

    /*-- user_box --*/
    .user_box {
        gap: 0;
    }
    .user_thumb {
        width: 24px;
        height: 24px;
    }
    .user_level {
        height: 20px;
    }
    .user_level span {
        font-size: 10px;
        left: 18px;
    }
    .user_box .date {
        gap: 4px;
    }
    .user_box .date {
        font-size: var(--ft12);
    }

    /*-- box_list_form --*/
    .box_list_form {
        margin-bottom: 28px;
        flex-direction: column;
        align-items: start;
        gap: 14px;
    }
    .box_list_form.end {
        width: 100%;
        align-items: start;
    }
    .box_list_form > *, .form_l_box {
        width: 100%;
    }
    .box_list_form .column {
        flex-direction: column;
    }
    .box_list_form .column .select {
        width: 100%;
    }
    .box_list_form .search_box {
        width: 100%;
    }
    .date_input_wrap {
        gap: 6px;
    }
    .date_input_wrap p {
        font-size: var(--ft12);
    }
    .date_input_box {
        width: 100%;
    }
    .date_input_box input {
        padding-left: 38px !important;
    }
    .date_input_box::before {
        width: 14px;
        height: 14px;
    }

    .chip_btn {
        padding: 8px 12px;
    }

    .page_chip {
        margin-bottom: 24px;
    }
    .page_chip_btn {
        padding: 8px;
    }
    .page_chip_btn p {
        font-size: var(--ft15);
    }

    .page_chip.flex {
        display: flex;
        flex-wrap: wrap;
    }
    .page_chip.flex li {
        width: fit-content;
    }

    /*-- chat_input --*/
    .chat_input {
        height: auto;
    }
    .chat_input_l .user {
        display: none;
    }
    .chat_send_btn {
        width: 32px;
        height: 32px;
    }
    .chat_send_btn img {
        width: 14px;
        height: 14px;
    }

    /*-- store_list --*/
    .store_card a {
        padding: 16px;
    }

    /*-- review_list --*/
    .review_list {
        gap: 20px;
    }

    /*-- feed_list --*/
    .feed_list {
        gap: 20px;
    }
    .feed_list .feed_box {
        padding-bottom: 20px;
    }
    .feed_body {
        padding-left: 0;
    }
    .feed_img {
        width: 120px;
        height: 120px;
    }
    .feed_meta {
        margin-top: 16px;
        gap: 14px;
    }
    .feed_meta li {
        gap: 4px;
    }
    .feed_meta li.feed_game img {
        width: 18px;
        height: 18px;
    }
    .feed_meta li.feed_game p {
        display: none;
    }
    .feed_meta li.feed_game::after {
        height: 10px;
        margin-left: 8px;
    }
    .feed_meta img {
        width: 13px;
        height: 13px;
    }
    .feed_meta_count {
        font-size: var(--ft12);
    }

    /*-- guestbook_list --*/
    .guestbook_list {
        gap: 20px;
    }
    .guestbook_list .guestbook_box {
        padding-bottom: 20px;
    }
    .guestbook_h {
        align-items: start;
    }
    .guestbook_body {
        margin-top: 12px;
    }
    .option_btn_img {
        width: 28px;
        height: 28px;
    }
    .option_btn_img img {
        width: 14px;
        height: 14px;
    }
    .guestbook_body {
        padding-left: 0;
    }


    /*-- feed_popup --*/
    .popup_feed_img {
        width: 170px;
        height: 170px;
    }
    .popup_feed_l {
        padding: 10px;
    }
    .popup_feed_top {
        padding-bottom: 10px;
    }
    .popup_feed_body {
        margin-top: 20px;
    }
    .feed_popup .feed_meta {
        margin-top: 24px;
    }
    .popup_feed_chat {
        padding: 0;
    }
    .feed_chat_box {
        padding-top: 10px;
    }
    .feed_chat_box .feed_meta {
        margin-top: 10px;
    }
    .replay_box .feed_chat_body {
        padding-left: 0;
    }

    /*-- badge_popup --*/
    .badge_collection {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .badge_thumb {
        width: 50px;
        height: 50px;
    }
    .badge_form {
        margin-top: 16px;
        flex-direction: column;
        align-items: end;
        gap: 10px;
    }
    .badge_wrap {
        margin-top: 0;
    }
    .badge_popup .popup_h .popup_text {
        margin-top: 8px;
    }


    .popup_wrap_grid {
        display: block;
    }
    .popup_grid {
        width: 100%;
        padding: 20px;
    }
    .service_pay_popup .popup_box {
        max-width: 400px;
    }
    .popup_log {
        padding-right: 0;
        border: none;
    }
    .popup_log_close .popup_log {
        display: none;
    }
    .popup_log .popup_label_h,
    .popup_log_list {
        padding-right: 20px;
    }

}
