@charset "utf-8";

#mypage_menu {
    position: absolute;
    top: -700px;
    right: 0;
    width: 400px;
    max-height: 80vh;
    padding: 12px 0;
    background: #FFFFFF;
    border: 1px solid #DEE2E7;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
    z-index: 1000;
}

#mypage_menu::-webkit-scrollbar {
    width: 5px;
}

#mypage_menu::-webkit-scrollbar-thumb {
    background-color: #c8c8c8;
}

#mypage_menu::-webkit-scrollbar-track {
    background-color: transparent;
}

@media screen and (max-width: 686px) {
    #mypage_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        max-height: inherit;
        padding-top: 0;
        z-index: 9999;
    }
}

/* #mymenu.hidden {
    display: none;
} */

/* 오버레이 스타일 */
#side_menu_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* 반투명 어두운 배경 */
    z-index: 100001;
    /* 사이드 메뉴 아래에 위치 */
    opacity: 0;
    pointer-events: none;
    /* 초기 상태에서 클릭 불가 */
    transition: opacity 0.2s ease;
}

/* 활성화된 오버레이 */
#side_menu_bg.active {
    opacity: 1;
    pointer-events: auto;
    /* 클릭 가능 */
}

#side_menu {
    position: fixed;
    width: 425px;
    max-width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 100002;
    background-color: #fafafa;
    transform: translateX(100%);
    /* 화면 밖으로 숨김 */
    transition: transform 0.2s ease;
    /* 슬라이드 애니메이션 */
}

#side_menu.active {
    transform: translateX(0);
    /* 화면 안으로 슬라이드 */
}

.side_menu_notifications {
    display: none;
}

.side_menu_notifications_request {
    display: none;
}

.side_menu_notifications.active {
    display: block;
}

.side_menu_notifications_request.active {
    display: block;
}

.side_menu_top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 67px;
    background-color: #fff;
}

.side_menu_close {
    padding: 16px;
}

.side_menu_close>i {
    font-size: 24px;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    transition: all 0.2s;
}

.side_menu_close>i.mob,
.side_menu_close>span.mob {
    display: none;
}

.side_menu_close:hover>i {
    transform: rotate(90deg);
}

.side_menu_close:hover>span {
    color: #2f80ed;
}

.side_menu_title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 700;
}

.side_menu_top_text_button {
    font-size: 13px;
    padding: 16px;
    cursor: pointer;
}

.side_menu_top_text_button:hover {
    color: #2f80ed;
}

.side_menu_contents_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
}

.side_menu_contents {
    position: relative;
    width: 100%;
    min-height: 100px;
    padding: 24px 16px;
    background-color: #fff;
    border-radius: 10px;
}

.side_menu_notification {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.side_menu_notification_title {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
}

.side_menu_notification_list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.side_menu_notification_inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 8px 0;
}

.side_menu_notification_icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    background-color: #fafafa;
    border-radius: 50%;
    overflow: hidden;
}

.side_menu_notification_icon>img {
    width: 24px;
    height: 24px;
}

.side_menu_notification_text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 12px;
}

.side_menu_notification_text>p {
    font-size: 14px;
    font-weight: 500;
    padding-right: 8px;
}

.side_menu_notification_text>span {
    font-size: 11px;
    color: #d1d1d1;
}

.side_menu_notification_button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    padding: 8px;
    margin-left: auto;
    border-radius: 5px;
    background-color: #008dff;
    /* 기본 색상 */
    transition: background-color 0.2s ease;
    /* 부드러운 전환 효과 */
}

.side_menu_notification_button:hover {
    background-color: #4dafff;
    /* 더 밝은 색상 */
}

.side_menu_notifications_request_list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.side_menu_notifications_request_list_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 16px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 8px;
}

.side_menu_notifications_request_list_inner>div {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 4px;
    ;
}

.side_menu_notifications_request_list_inner>div:last-of-type {
    padding-bottom: 0;
}

.side_menu_notifications_request_list_inner>div>span {
    font-size: 14px;
    font-weight: 300;
    color: #777;
    margin-right: 8px;
}

.side_menu_notifications_request_list_inner>div>p {
    font-size: 14px;
    font-weight: 500;
}

.side_menu_notification_request_button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    padding: 8px;
    margin-left: auto;
    margin-top: 12px;
    border-radius: 5px;
    background-color: #F7F8FC;
    /* 기본 색상 */
    transition: background-color 0.2s ease;
    /* 부드러운 전환 효과 */
}

.side_menu_notification_request_button:hover {
    background-color: #efefef;
}

.side_menu_notification_empty {
    padding: 40px 0;
    text-align: center;
}

.side_menu_notifications_request_empty {
    padding: 40px 0;
    text-align: center;
}

#notificationsLoadMoreButton {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    padding: 8px 32px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #F7F8FC;
    /* 기본 색상 */
    transition: background-color 0.2s ease;
    /* 부드러운 전환 효과 */
}

#notificationsLoadMoreButton:hover {
    background-color: #efefef;
}

#app_banner {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    width: 100vw;
    height: 70px;
    z-index: 104;
    background-color: #fff;
    border-bottom: 1px solid #f3f3f3;
}

#app_banner.hide {
    display: none;
}

.app_banner_container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.app_banner_close {
    padding-right: 8px;
}

.app_banner_close>i {
    font-size: 20px;
    color: #777;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24
}

.app_banner_icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.app_banner_text_wrapper {
    margin-left: 12px;
}

.app_banner_desc {
    color: #000;
    font-size: 13px;
}

.app_banner_name {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.app_banner_download {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    margin-left: auto;
    border-radius: 16px;
    background-color: #000;
}

#top_banner_container {
    /* position: relative; */
    background-color: #DC2B12;
    cursor: pointer;

    position: sticky;
    top: 0;
    z-index: 11;
}

#top_banner_container.blue {
    background-color: #386DFB;
}

.top_banner_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    color: #fff;
}

.top_banner_text_left {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.top_banner_text_left>i {
    font-size: 16px;
}

.top_banner_text_right {
    margin-left: auto;
}

body:has() .adsbymadang_top_banner_container {
    position: relative;
    width: 100%;
    max-height: 48px;
    z-index: 3;
}

.adsbymadang_top_banner_container>.swiper-wrapper {
    height: auto;
}

.adsbymadang_top_banner_slide {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    /* min-height: 48px; */
    /* padding: 12px 0; */
}

/* .adsbymadang_top_banner_slide > .inbox {
    display: flex;
    align-items: center;
} */
.adsbymadang_top_banner_text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    font-size: 16px;
    padding: 12px 0;
    margin: 0 auto;
    color: #fff;
}

#top {
    position: relative;
    top: 0;
    min-height: 86px;
    height: 86px;
    background-color: #fff;
    border-bottom: solid 1px #F3F3F3;
    z-index: 103;
}

.top_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

#main_logo {
    display: inline-flex;
    height: 100%;
}

#main_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

#main_logo img {
    width: 104px;
    vertical-align: middle;
}

.main_toggle_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_toggle {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #bbb;
    padding: 10px;
}

.main_toggle.active {
    color: #000;
}

.main_toggle:first-of-type::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 20px);
    background-color: #ccc;
}

/* .main_toggle:first-of-type {
    border-right: 1px solid red;
} */
.main_logo_dev {
    font-size: 10px;
    font-weight: 500;
    margin-left: 4px;
}

.top_right_wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: auto;
}

.sns_wrapper {
    display: inline-flex;
    height: 100%;
}

.sns_wrapper ul {
    height: 100%;
}

.sns_wrapper li {
    height: 100%;
}

.sns_wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sns_wrapper a>img {
    width: 40px;
    height: 40px;
}

.search_user_wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 9px;
}

.search_user_wrap>a {
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.top_notification {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    border: none;
    background: none;
}

.top_notification_inner {
    position: relative;
}

.top_notification_inner>small {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 6px;
    height: 6px;
    background-color: #E56D5A;
    border-radius: 50%;
}

.top_notification_inner>i {
    display: none;
}

.top_notification_inner>span {
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.top_seller_btn {
    color: #fff;
    font-size: 14px;
    padding: 4px 12px;
    background-color: #3281f9;
    border-radius: 4px;
    margin-right: 4px;
}

.search_user_wrap>.top_search {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 348px;
    height: 100%;
    margin-right: 40px;
    border: none;
    background: none;
    cursor: auto;
}

.top_contain {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    border: none;
    background: none;
}

.top_class {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: none;
    background: none;
}

/*.fvr_count {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 12px;
    right: 5px;
    width: 24px;
    font-size: 10px;
    font-weight: 200;
    line-height: 1;
    color: #fff;  
    padding: 2px 0;  
    background-color: #f05a28;
    border-radius: 8px;
}*/
.top_chat {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: none;
    background: none;
}

.top_chat.active::before {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3281f9;
}

.search_user_wrap>.top_member {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 114px;
    max-width: 114px;
    padding: 8px 0;
    margin-right: 0;
    margin-left: 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    cursor: pointer;
}

.top_mobile_member {
    display: none;
}

.case_input {
    width: 18em;
    font-size: 16px;
    border: none;
}

.case_search_window {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 414px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.case_input_container {
    position: relative;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 24px;
}

.case_input_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 7px 5px 15px;
    border: 1px solid #DEE2E7;
    border-radius: 36px;
    /*margin-right: 16px;*/
}

.case_input_close_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
}

.case_input_close_btn>img {
    width: 14px;
    height: 14px;
}

/*.reset_recent {
    font-size: 12px;
}
.recent_item,
.result_item {
    font-size: 14px;
}*/
.search_type_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.search_type_wrap>label {
    width: 50%;
    cursor: pointer;
}

.search_type_wrap>label>span {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #6D6D6D;
    padding: 18px 0;
}

.search_type_wrap>label>input:checked~span {
    color: #364653;
}

.search_type_wrap>label>input:checked~span::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #364653;
}

.total_search_radio_wrap {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.total_search_radio_wrap:first-child {
    margin-right: 8px
}

.total_search_radio_wrap label {
    padding-left: 18px !important;
}

.result_wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
}

.result_wrap.case_search_wrap {
    display: none;
}

.recent_result_title_wrap {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px;
}

.result_title_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.reset_recent {
    font-size: 12px;
    color: #acacac;
    margin-left: auto;
    cursor: pointer;
}

.result_title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #777;
}

.case_search_wrap .result_title {
    padding: 24px;
}

.result_input_title {
    color: #364653;
}

.recent_item_wrap,
.result_item_wrap {
    position: relative;
    display: block;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 0 24px;
    max-height: 400px;
    overflow-y: auto;
}

.recent_item,
.result_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    font-size: 14px;
    margin-bottom: 16px;
    cursor: pointer;
}

.recent_item>img,
.result_item>img {
    width: 14px;
    height: 14px;
    margin-top: 1px;
    margin-right: 8px;
}

.no_recent,
.no_item_no_result {
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

.no_item_no_result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.no_item_no_result>img {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}

.no_item_no_result>span {
    color: #2C2C2C;
}

.no_result_title {
    font-size: 16px;
    font-weight: 600;
}

.no_result_desc {
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}

.no_result_desc_point {
    font-weight: 600;
}

.case_addr_wrap {
    margin-top: 2px;
}

.case_addr_wrap,
.case_state_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.total_search_list_type {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    padding: 2px 4px;
    margin-right: 2px;
    border-radius: 2px;
}

.total_search_list_type[data-list-type="1"] {
    background-color: #364653;
}

.total_search_list_type[data-list-type="2"] {
    background-color: #7c56d5;
}

.total_search_rent {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    padding: 2px 4px;
    margin-right: 2px;
    background-color: #979ea9;
    border-radius: 2px;
}

.recent_item.case span.state,
.result_item.case span.state {
    font-size: 10px;
    font-weight: 400;
    padding: 2px 4px;
    margin-right: 4px;
    border-radius: 2px;
    color: #828282;
    background-color: rgba(109, 119, 132, 0.1);
}

.recent_item.case span.state[data-state-color="red"],
.result_item.case span.state[data-state-color="red"] {
    color: #ba252b;
    background-color: rgba(252, 61, 70, 0.1);
}

.recent_item.case span.state[data-state-color="blue"],
.result_item.case span.state[data-state-color="blue"] {
    color: #2f80ed;
    background-color: rgba(47, 128, 237, 0.1);
}

.recent_item.case span.state[data-state-color="gray"],
.result_item.case span.state[data-state-color="gray"] {
    color: #828282;
    background-color: rgba(109, 119, 132, 0.1);
}

.recent_item.case span.case_num,
.result_item.case span.case_num {
    position: relative;
    margin-right: 12px;
    font-weight: 500;
    padding-right: 12px;
}

.recent_item.case span.case_num::after,
.result_item.case span.case_num::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    width: 2px;
    height: 14px;
    background-color: #3a3a3a;
}

.recent_item.case span.addr,
.result_item.case span.addr {
    font-size: 12px;
    color: #777;
    padding-top: 4px;
}

.recent_item.case span.bubwon,
.result_item.case span.bubwon {
    font-weight: 500;
}

.case_search_membership_banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 4px 4px;
    margin-top: 8px;
}

.case_search_membership_banner>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    margin-right: 4px;
}

.case_search_membership_banner>p {
    font-size: 12px;
    font-weight: 300;
    color: #777;
}

.top_search>div:not(.case_search_window) {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 7px 5px 15px;
    border: 1px solid #DEE2E7;
    border-radius: 36px;
}

.top_search>div:not(.case_search_window)>span {
    font-size: 16px;
    font-weight: 400;
    color: #8080809A;
}

.top_search .top_search_img_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 28px;
    min-width: 29px;
    min-height: 28px;
    line-height: 24px;
    text-align: center;
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
}

.top_search .top_search_img_wrap>img {
    width: 17px;
    height: 17px;
    vertical-align: middle;
}

.top_contain>img {
    width: 21px;
    height: 21px;
}

.top_chat>img {
    height: 21px;
}

.top_member>img {
    width: 16px;
    height: 16px;
    margin-right: 12px;
}

#gnb {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    min-height: 60px;
    height: 60px;
    z-index: 11;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.gnb_wrap {
    position: relative;
    height: 100%;
}

.gnb_swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gnb_button {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-right: 40px;
    height: 100%;
}

.gnb_button:last-child {
    margin-right: 0;
}

.gnb_button>a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
    font-weight: 700;
}

.gnb_button.tutoring>a::before {
    content: 'EVENT';
    /*display: block;*/
    display: none;
    position: absolute;
    top: -10px;
    right: -14px;
    font-size: 10px;
    color: #ba252b;
    transform: rotate(15deg);
}

.gnb_button.e_odream>a>img {
    position: absolute;
    top: -4px;
    right: -10px;
}

.gnb_wrap .membership>a>span {
    color: #4166B9;
}

/*gnb_button.mapsearch > a::before {
    content: '';
    display: block;
    position: absolute;
    top: -3px;
    right: -12px;
    width: 18px;
    height: 7px;
    background: url(../images/icon/beta.png) no-repeat;
}*/
.now_menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
    cursor: pointer;
}

.now_menu_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.now_menu_title {
    font-size: 16px;
    white-space: nowrap;
}

.now_menu_arrow {
    font-size: 10px;
    margin-top: 3px;
    margin-left: 8px;
}

.menu_select_wrap {
    position: absolute;
    display: none;
    top: 34px;
    left: 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.menu_select_wrap a {
    display: block;
    font-size: 16px;
    color: #364653;
    padding: 12px 24px;
    white-space: nowrap;
    text-align: center;
}

.menu_select_wrap a.on {
    font-weight: 500;
    color: #3281f9;
}

.menu_select_wrap a:hover {
    background-color: #eaeaea;
}

.hidden {
    display: none;
}

.gnb_tooltip {
    position: absolute;
    top: 52px;
    left: 21%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    background-color: #3281f9;
    white-space: nowrap;
    border-radius: 4px;
    padding: 8px 12px;
    box-shadow: 1px 5px 6px rgba(0, 0, 0, 0.16);
}

.gnb_tooltip::after {
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid none;
    border-bottom: 8px solid #3281f9;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.back_button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back_button>i {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

.main_sub_navi {
    display: none;
    margin-bottom: 24px;
}

.main_sub_navi.active {
    display: block;
}

.sub_navi {
    position: sticky;
    top: 60px;
    background-color: #364653;
    z-index: 9;
}

.sub_navi_button_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.sub_navi_button {
    display: block;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    color: #eee;
    padding: 16px 0;
    margin-right: 24px;
}

.sub_navi_button:hover {
    color: #fff;
}

.sub_navi_button:hover::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.sub_navi_button.active {
    color: #fff;
    font-weight: 700;
}

.sub_navi_button.active::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.sub_navi_button.disabled {
    color: #acacac;
}

@media screen and (max-width: 1200px) {
    .adsbymadang_top_banner_text {
        padding: 12px 16px;
    }
}

@media screen and (max-width: 1024px) {
    .now_menu_arrow {
        margin-top: 1px;
    }

    .menu_select_wrap {
        top: 28px;
    }

    .gnb_tooltip {
        min-width: auto;
        font-size: 13px;
    }

    .case_input {
        width: 18em;
        font-size: 14px;
    }
}

@media screen and (max-width: 980px) {
    .top_search {
        width: 200px;
    }

    /*.fvr_count {
        right: 0;
    }*/
}

@media screen and (max-width: 840px) {
    .gnb_tooltip {
        top: 42px;
    }

    .search_user_wrap>.top_search {
        width: 280px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    #top {
        min-height: 60px;
        height: 60px;
    }

    #main_logo img {
        width: 70px;
        margin-top: 2px;
    }

    .sns_wrapper {
        display: none;
    }

    .search_user_wrap>.top_contain,
    .search_user_wrap>.top_class,
    .search_user_wrap>.top_chat {
        margin-right: 10px;
    }

    .search_user_wrap>.top_member {
        margin-left: 10px;
    }

    .gnb_button>a {
        font-size: 16px;
    }

    /*.fvr_count {
        top: 8px;
        right: 0;
    }*/
    .top_chat.active::before {
        top: 10px;
    }

    .case_input {
        width: 8em;
        font-size: 14px;
    }

    .case_search_window {
        top: 50px;
        right: 0;
        left: auto;
    }
}

@media screen and (max-width: 686px) {
    #side_menu {
        width: 100vw;
    }

    .side_menu_close>i.mob,
    .side_menu_close>span.mob {
        display: block;
    }

    .side_menu_close>i.pc,
    .side_menu_close>span.pc {
        display: none;
    }

    .top_contain,
    .top_class,
    .top_chat,
    .top_membership,
    .search_user_wrap>.top_member {
        display: none;
    }

    .top_notification_inner>i {
        display: block;
    }

    .top_notification_inner>span {
        display: none;
    }

    .top_notification_inner>small {
        top: 0;
        right: 0;
    }

    .search_user_wrap>.top_mobile_member {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 24px;
        height: 34px;
        margin-right: 0;
        cursor: pointer;
    }

    .top_mobile_member>img {
        /*width: 16px;*/
        height: 16px;
    }

    .search_user_wrap>.top_search {
        width: 10em;
        margin-right: 0;
    }

    .top_search>div:not(.case_search_window) {
        padding: 5px 8px;
    }

    .top_search>div:not(.case_search_window)>span {
        font-size: 12px;
    }

    .top_search .top_search_img_wrap {
        width: 18px;
        height: 17px;
        min-width: 18px;
        min-height: 17px;
        line-height: 14px;
    }

    .top_search .top_search_img_wrap>img {
        width: 11px;
        height: 11px;
    }

    .gnb_wrap>div {
        justify-content: space-between;
    }

    .gnb_button {
        width: fit-content;
        margin-right: 24px;
    }

    .gnb_button.study::before {
        top: 0;
    }
}

@media screen and (max-width: 600px) {
    .top_right_wrap {
        margin-left: 0;
    }

    .main_toggle_wrapper {
        margin: 0 auto;
        background-color: #DEE2E6;
        border-radius: 32px;
    }

    .main_toggle {
        width: 63px;
        font-size: 12px;
        text-align: center;
        color: #454545;
        border-radius: 32px;
        padding: 6px 10px;
    }

    .main_toggle.active {
        color: #fff;
        background-color: #000;
    }

    .top_banner_text_left {
        font-size: 14px;
    }

    .now_menu {
        margin-left: 12px;
    }

    .now_menu_title {
        font-size: 14px;
    }

    .gnb_tooltip:not(.favorite_tooltip) {
        white-space: nowrap;
        top: 40px;
        right: 0;
        left: auto;
        transform: translateX(0);
        font-size: 13px;
        word-break: keep-all;
    }

    .gnb_tooltip:not(.favorite_tooltip)::after {
        left: auto;
        right: 26px;
    }


    .case_input {
        width: 8em;
        font-size: 12px;
    }

    .case_search_window {
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        border-top: none;
        z-index: 1;
    }

    .case_input_container {
        display: flex;
        height: 59px;
        /*padding: 9px 16px;*/
        padding: 0;
    }

    .case_input_wrap {
        padding: 7px;
        margin-left: 16px;
        /*padding: 8px 16px;*/
    }

    .case_search_wrap .result_title {
        padding: 8px 16px;
    }

    .recent_result_title_wrap {
        padding: 8px 16px;
    }

    .result_title_wrap {
        padding: 8px 16px;
    }

    .recent_item_wrap,
    .result_item_wrap {
        padding: 16px;
        max-height: calc(100vh - 100px);
    }

    .case_input_copy {
        width: 80%;
    }

    .adsbymadang_top_banner_slide {
        height: 45px;
        padding: 8px 0;
    }

    .adsbymadang_top_banner_text {
        font-size: 14px;
    }

    .search_type_wrap>label>span {
        padding: 12px 0;
    }

    .recent_item.case span.state,
    .result_item.case span.state {
        font-size: 10px;
    }
}

@media screen and (max-width: 320px) {
    .gnb_button>a {
        font-size: 14px;
    }
}