.headerMo {
  display: none;
}

.u-mt-8 {
  margin-top: 8px;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mt-24 {
  margin-top: 24px;
}




/* 화면이 768px 이하일 때 width를 auto로 변경 */
@media screen and (max-width: 768px) {
  .headerMo {
    display: inline-block;
  }

  .headerMo .subBrands {
    height: 32px;
    border-bottom: 1px solid #F5F5F5;
    display: flex;
    align-items: center;
  }

  .headerMo .headerTopArea {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    padding: 16.5px 20px 14.5px;
    background: white;
  }

  .headerMo .headerTopRight {
    display: flex;
    gap: 10px;
  }

  .headerMo .cartCount {
    background-color: #fff;
    font-size: 11px;
    line-height: 11px;
    color: #e83535;
    font-weight: 700;
    bottom: -1px;
    right: 2px;
  }

  .headerGnbArea {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 0px;
    padding: 10px 10px 0px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE, Edge */
    border-radius: 0px;
    background: #fff;
    width: auto;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    justify-content: flex-start;
    border-bottom: 1px solid #DEE4ED;
  }

  .headerGnbArea::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .headerGnbArea .gnbMenuMo {
    font-size: 13px;
    font-weight: 700;
    color: black;
    padding: 0px 10px 9px;
    border-bottom: 3px solid white;
    cursor: pointer;
  }

  .headerGnbArea .gnbMenuMo:hover {
    border-bottom: 3px solid black;
  }

  /* 모달 처리 */
  /* 공통 오버레이 */
  .headerMo #modalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 998;
  }

  /* 바텀 모달 */
  .headerMo #bottomModal,
  .headerMo #bottomModal_depth1,
  .headerMo #bottomModal_depth2_i,
  .headerMo #bottomModal_depth2_p,
  .headerMo #bottomModal_search {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    min-height: 370px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s ease-out;
    z-index: 999;
    /* padding: 16px 0px; */
  }

  /* 사이드 모달 (검색, 햄버거 메뉴) */
  .headerMo .sideModal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /* max-width: 100%; */
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-out;
    z-index: 1001;
    /* bottom flt 가 1000 */
    /* padding: 16px; */
  }

  /* 모달 헤더 */
  .headerMo .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #eee; */
    padding: 24px 24px 12px 24px;
  }

  .headerMo .modal-header .title {
    font-weight: bold;
    font-size: 16px;
    color: #66768F;
  }

  .headerMo .modal-header .closeBtn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  .headerMo .modal-header .closeBtns {
    cursor: pointer;
  }

  /* 리스트 스타일 */
  .headerMo .modal-list {
    /* margin-top: 16px; */
    list-style: none;
    padding: 0;
    overflow-y: auto;
    min-height: 250px;
    max-height: calc(100% - 110px);
    /* background: #EFF2F6; */
  }

  .headerMo .modal-list li {
    padding: 13px 24px;
    /* border-bottom: 1px solid #eee; */
    cursor: pointer;
  }

  .modal-bottom-depth2-box-title-area {
    display: flex;
  }

  .modal-bottom-depth2-box-title {
    font-size: 13px;
    font-weight: 700;
    color: #191919;
  }

  .modal-bottom-depth2-box-title span {
    color: #2754E7;
  }

  .modal-bottom-depth2-box-cnt {
    font-size: 13px;
    font-weight: 700;
    color: #8898AF;
    margin-left: 8px;
  }

  .modal-bottom-depth2-box ._m_item_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    column-gap: 14px;
    row-gap: 8px;
    MAX-HEIGHT: 88px;
    overflow-y: auto;
  }

  .modal-bottom-depth2-box ._m_item_list._m_item_list_I::-webkit-scrollbar {
    width: 5px;
    /* 세로 스크롤바 두께 */
  }

  .modal-bottom-depth2-box ._m_item_list._m_item_list_I::-webkit-scrollbar-track {
    background: #ffffff;
    /* 트랙(배경)을 흰색으로 고정 */
    border-radius: 6px;
  }

  .modal-bottom-depth2-box ._m_item_list._m_item_list._m_item_list_I::-webkit-scrollbar-thumb {
    /* background: #ffffff; */
    /* 스크롤바(썸) 색상 (원하시면 변경) */
    /* border-radius: 6px; */
    border: 0px;
    /* 썸 주변에 트랙과 같은 색 테두리(선택사항) */
  }

  .modal-bottom-depth2-box ._m_item_list ._m_item {
    display: flex;
    align-items: center;
    column-gap: 8px;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .modal-bottom-depth2-box ._m_item_list ._m_item .dep1 {
    background: #50ABF2;
    border-radius: 90px;
    font-size: 12px;
    font-weight: 400;
    color: white;
    padding: 2px 8px;
    display: inline-block;
    float: left;
    display: flex;
    column-gap: 3.5px;
    cursor: pointer;
  }

  .modal-bottom-depth2-box ._m_item_list ._m_item .dep1 img,
  .modal-bottom-depth2-box ._m_item_list ._m_item .dep2 img {
    margin-top: 3px;
  }

  .modal-bottom-depth2-box ._m_item_list ._m_item span {
    display: inline-block;
    float: left;
  }

  .modal-bottom-depth2-box ._m_item_list ._m_item .dep2 {
    border: 1px solid #B8DDFA;
    background: #F1F8FE;
    font-size: 12px;
    font-weight: 400;
    border-radius: 90px;
    color: #0E71BE;
    padding: 2px 8px;
    display: inline-block;
    float: left;
    display: flex;
    column-gap: 3.5px;
    cursor: pointer;
  }

  .modal-bottom-depth2-box ._m_btns {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    column-gap: 14px;
    row-gap: 8px;
  }


  .modal-bottom-depth2-box ._m_btn1 {
    font-size: 14px;
    font-weight: 700;
    color: #4A5668;
    border: 1px solid #A6B2C4;
    border-radius: 8px;
    width: 100px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3px;
    cursor: pointer;
  }


  .modal-bottom-depth2-box ._m_btn2 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: #2754E7;
    border-radius: 8px;
    width: calc(100% - 114px);
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }


  #header-mo-modal-list_depth2 {
    border-top: 1px solid #DEE4ED;
    display: flex;
    /* margin-left: 7px; */
    max-height: 362px;
  }

  .modal-searchbar {
    width: calc(100% - 32px);
    height: 44px;
    border: 1px solid #A6B2C4;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 12px;
    border-radius: 41px;
    display: flex;
    column-gap: 12px;
  }

  #header-mo-modal-list_search {
    border-top: 1px solid #DEE4ED;
    height: 290px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #header-mo-modal-list_search .search_no_data {
    font-size: 13px;
    font-weight: 400;
    color: #4A5668;
    width: 100%;
    height: 100%;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    align-content: center;
    justify-content: center;
    cursor: auto;
    text-align: center;
  }

  #header-mo-modal-list_search .search_no_data span {
    color: #2754E7;
  }

  #header-mo-modal-list_search .search_no_data .search_no_data_btn {
    font-size: 13px;
    display: inline-block;
    font-weight: 700;
    color: #4A5668;
    border: 1px solid #A6B2C4;
    border-radius: 8px;
    padding: 7px 30px;
    cursor: pointer;
  }


  #modal-searchbar-input {
    font-size: 14px;
    font-weight: 400;
    border-radius: 41px;
    color: #040404;
    border: 0px;
    width: calc(100% - 85px);
  }

  #modal-searchbar-input::placeholder {
    color: #8898AF;
  }

  #header-mo-modal-list_search li {
    text-align: left;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 400;
    color: #040404;
    border-bottom: 1px solid #EFF2F6;
    cursor: pointer;
    background: #fff url(/assets/img/classList/modal/dep2_uncheck.svg) right 16px center no-repeat;
  }

  #header-mo-modal-list_search li.active {
    color: #1082DA;
    background: #fff url(/assets/img/classList/modal/dep2_check.svg) right 16px center no-repeat;
  }

  .searchmodal_close {
    cursor: pointer;
    width: 20px;
  }

  .searchmodal_search {
    cursor: pointer;
    width: 24px;
  }

  #header-mo-modal-list_depth2 .modal-list-left {
    width: 160px;
    border-right: 1px solid #DEE4ED;
    max-height: 362px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox: 스크롤바 숨김 */
    -ms-overflow-style: none;
    /* IE, Edge(구버전)에서 스크롤바 숨김 */
    background: #EFF2F6;
  }

  #header-mo-modal-list_depth2 .modal-list-left::-webkit-scrollbar {
    display: none;
    /* WebKit 브라우저에서 스크롤바 숨김 */
  }

  #header-mo-modal-list_depth2 .modal-list-left li {
    text-align: left;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 400;
    color: #040404;
    background: #EFF2F6;
    cursor: pointer;
  }

  #header-mo-modal-list_depth2 .modal-list-left .active {
    background: #fff url(/assets/img/classList/modal/dep1_active_arrow.svg) right 16px center no-repeat;
    /* background img */
  }

  #header-mo-modal-list_depth2 .modal-list-right {
    width: calc(100% - 160px);
    max-height: 362px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox: 스크롤바 숨김 */
    -ms-overflow-style: none;
    /* IE, Edge(구버전)에서 스크롤바 숨김 */
  }

  #header-mo-modal-list_depth2 .modal-list-right::-webkit-scrollbar {
    display: none;
    /* WebKit 브라우저에서 스크롤바 숨김 */
  }

  #header-mo-modal-list_depth2 .modal-list-right li {
    text-align: left;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 400;
    color: #040404;
    /* 렌더링 이슈로 shadow로 변경 */
    /* border-bottom: 1px solid #EFF2F6; */
    box-shadow: inset 0 -1px #EFF2F6;
    cursor: pointer;
    background: #fff url(/assets/img/classList/modal/dep2_uncheck.svg) right 16px center no-repeat;
  }

  #header-mo-modal-list_depth2 .modal-list-right li.active {
    color: #1082DA;
    background: #fff url(/assets/img/classList/modal/dep2_check.svg) right 16px center no-repeat;
  }

  #header-mo-modal-list_depth1 {
    padding: 20px;
    border-top: 1px solid #DEE4ED;
  }

  /* ul 취업과정*/
  #header-mo-modal-list_depth1 .modal-list-J {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  #header-mo-modal-list_depth1 .modal-list-J li {
    cursor: pointer;
    width: calc(50% - 10px);
    border: 1px solid #C6CFDC;
    color: #2F3642;
    font-size: 13px;
    font-weight: 400;
    padding: 13px 16px;
    border-radius: 8px;
    background: #fff url(/assets/img/classList/modal/dep2_uncheck.svg) right 16px center no-repeat;
  }

  #header-mo-modal-list_depth1 .modal-list-J li.active {
    background: #F1F8FE;
    color: #1082DA;
    border: 1px solid #7FC2F5;
    background: #fff url(/assets/img/classList/modal/dep2_check.svg) right 16px center no-repeat;
  }

  /* 기업 직무명 전공 검색 */
  #header-mo-modal-list_search .loading {
    /* background: #ebebeb; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  #header-mo-modal-list_search .loading span {
    width: 8px;
    height: 8px;
    background: #e2e2e2;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite both;
  }

  #header-mo-modal-list_search .loading span:nth-child(2) {
    animation-delay: 0.2s;
  }

  #header-mo-modal-list_search .loading span:nth-child(3) {
    animation-delay: 0.4s;
  }


  /* n개 보기 버튼 */
  ._m_btn2 .loading {
    /* background: #ebebeb; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  ._m_btn2 .loading span {
    width: 8px;
    height: 8px;
    background: #e2e2e2;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite both;
  }

  ._m_btn2 .loading span:nth-child(2) {
    animation-delay: 0.2s;
  }

  ._m_btn2 .loading span:nth-child(3) {
    animation-delay: 0.4s;
  }


  .modal-list-right .loading {
    background: #ebebeb;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .modal-list-right .loading span {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite both;
  }

  .modal-list-right .loading span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .modal-list-right .loading span:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes blink_modal {

    0%,
    80%,
    100% {
      opacity: 0;
    }

    40% {
      opacity: 1;
    }
  }


  .modal-bottom-depth2-box {
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0px -1px 9px 4px #7586AA57;
    padding: 16px 20px 30px 20px;
  }

  .modal-bottom {
    border: 1px solid #163FC5;
    color: #2754E7;
    text-align: center;
    padding: 9px 0px;
    display: inline-block;
    font-family: Pretendard;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: -2%;
    width: calc(100% - 40px);
    margin: 10px 20px 10px 20px;
    border-radius: 8px;
    cursor: pointer;
  }


  .headerMo .modal-list li.selected {
    background: #F1F4FD;
    font-weight: 700;
    color: #2754E7;
  }

  /* 
  .headerMo .modal-list li:hover {
    background: #F1F4FD;
    font-weight: 700;
    color: #2754E7;
  } */

  /* 여기까지 모달 */

  /* 햄버거 메뉴 */
  .headerMo .user-info {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    font-weight: 400;
    font-size: 13px;
    color: #163FC5;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }

  .headerMo .header-icons {
    display: flex;
    gap: 8px;
  }

  .headerMo .icon-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
  }

  .headerMo .closeBtn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  /* 서비스 아이콘 */
  .headerMo .service-icons {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    padding: 0px 16px 15px;
    border-bottom: 1px solid #DEE4ED;
  }

  .headerMo .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 400;
    color: #4A5668;
    cursor: pointer;
  }

  .headerMo .service-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 2px;
  }

  /* .headerMo .service-item.active {
    color: #007bff;
    font-weight: 600;
  } */

  /* 하위 탭바 */
  .headerMo .sub-tabs {
    display: inline-block;
    border-bottom: 1px solid #DEE4ED;
    padding-left: 20px;
    width: calc(100% - 20px);
  }

  ._flR {
    float: right;
  }

  .headerMo .egongmo {
    font-size: 11px;
  }

  .headerMo .naildo {
    font-size: 11px;
  }

  .headerMo .sub-tab {
    flex: 1;
    text-align: center;
    padding: 13px 0 9px;
    font-size: 13px;
    color: #191E24;
    cursor: pointer;
    position: relative;
    border-bottom: 4px solid white;
    display: inline-block;
  }


  /* .headerMo .sub-tab:hover {
    font-weight: 600;
    color: #000;
    border-bottom: 4px solid black;
  } */

  .headerMo .sub-tab.active {
    font-weight: 600;
    color: #000;
    border-bottom: 4px solid black;
  }

  .headerMo .menu-container {
    height: 100%;
  }

  /* 콘텐츠 */
  .headerMo .menu-content {
    /* padding: 16px; */
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    /* height: 100%; */
    height: calc(100% - 184px);
  }

  .headerMo .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .headerMo .menu-list li {
    padding: 10px 0;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    padding: 14px 0px 14px 20px;
    color: #2F3642;

  }

  .headerMo .menu-list li.active {
    background: white;
    font-weight: 700;
  }

  .headerMo .menu-list li:hover {
    background: white;
    font-weight: 700;
  }

  .headerMo .menu-content-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .headerMo .menu-content-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
  }

  .headerMo .menu-content-list li img {
    width: 20px;
    height: 20px;
  }

  .headerMo .menu-list-area {
    width: 100px;
    background: #EFF2F6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .headerMo .menu-logout {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #4A5668;
    cursor: pointer;
    padding: 14px 20px;
  }

  .headerMo .sub-tab-edu {
    display: flex;
    height: 19px;
    align-items: center;
    border-bottom: 0px;
    padding-bottom: 13px;
  }

  .username_mypage {
    color: #191E24;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  /* 검색 모달 영역 시작 */
  #searchModal ._hrArea {
    background: #EFF2F6;
    width: 100%;
    height: 8px;
  }

  #searchModal .content-body {
    overflow-y: auto;
    height: calc(100% - 80px);
  }

  #searchModal .search-btn-search {
    position: absolute;
    top: 26px;
    right: 16px;
    cursor: pointer;
  }

  #searchModal .search-btn-close {
    position: absolute;
    top: 31px;
    right: 62px;
  }

  #searchModal .search-box {
    position: relative;
    /* display: flex; */
    align-items: center;
  }

  .header_go_tomorrow {
    display: flex;
    align-items: center;
    margin-top: 18px;
  }

  #searchModal .search-box input {
    width: calc(100% - 100px);
    padding: 10px 40px 10px 12px;
    border: 1px solid #A6B2C4;
    border-radius: 41px;
    font-size: 14px;
    color: #040404;
    font-weight: 400;
    margin: 20px 52px 20px 48px;
  }

  #searchModal .search-btn-search-back {
    position: absolute;
    top: 26px;
    left: 16px;
    cursor: pointer;
  }

  #searchModal .search-box input::placeholder {
    color: #8898AF !important;
    opacity: 1;
    /* 일부 브라우저는 기본 투명도 있음 */
  }

  /* .search-box .search-btn {
            position: absolute;
            right: 10px;
            background: none;
            border: none;
            color: #555;
            cursor: pointer;
        } */

  #searchModal .suggestions .section {
    /* padding: 0px 20px;
            width: calc(100% - 40px); */
  }

  #searchModal .section-title {
    font-size: 13px;
    font-weight: 700;
    color: #2F3642;
    /* margin-bottom: 8px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
  }

  #searchModal .section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  #searchModal .section ul li {
    /* padding: 6px 0; */
    font-size: 14px;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #searchModal .section ul li a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #2F3642;
  }

  #searchModal .section ul li a span {
    color: #2754E7;
  }

  #searchModal .section ul li a:hover {
    /* text-decoration: underline; */
  }

  #searchModal .recent-keywords .keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-bottom: 26px;
  }

  #searchModal .recent-keywords .keywords li {
    /* background: #f5f5f5; */
    /* border-radius: 20px; */
    padding: 0px 20px;
    font-size: 14px;
    margin-top: 16px;
  }

  #searchModal .recent-keywords .keywords li .remove {
    background: none;
    border: none;
    margin-left: 4px;
    font-size: 14px;
    cursor: pointer;
  }

  #searchModal .clear-all {
    background: none;
    border: none;
    font-size: 12px;
    color: #66768F;
    cursor: pointer;
  }

  #searchModal .nullDataKeyword {
    width: calc(100% - 40px);
    height: 100px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #2F3642;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .content-body {
    position: relative;
    /* 오버레이 위치기준 */
  }

  /* 오버레이 기본 숨김 */
  .content-body .loading-overlay {
    display: none;
    /* JS에서 on/off */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* 가운데 텍스트/스피너 */
  .content-body .loading-text {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }

  /* 점점점 애니메이션 */
  .content-body .loading-dots {
    display: flex;
    gap: 6px;
  }

  .content-body .loading-dots span {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    opacity: 0.2;
    animation: blink 1.4s infinite;
  }

  .content-body .loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .content-body .loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes blink {
    0% {
      opacity: 0.2;
      transform: translateY(0);
    }

    20% {
      opacity: 1;
      transform: translateY(-3px);
    }

    100% {
      opacity: 0.2;
      transform: translateY(0);
    }
  }

  /* 여기까지 검색 모달 */
}