:root {
    --line-clamp: 2; /* 이 페이지에서는 2줄 제한 */
}

:root {
    --primary-color: var(--main-color);
    --primary-hover: #e51e77;
    --border-color: #E5E7EB;
    --background-color: #F9FAFB;
    --text-color: #111827;
    --gray-color: #6B7280;
}

.inner-searchBox {
    width: 100%;
}

/* 알바픽 공고글이 없을 경우 */
.noneProfileBox {
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    background-color: var(--white);
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    width: 100%;
}

.noneProfile {
    padding: 30px;
    text-align: center;
    font-size: var(--text-normal);
    color: #c0c0c0;
    width: 100%;
}

/* 알바픽 메인 페이지 */
.albaList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.albaList .albaListBox {
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    background-color: var(--white);
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    display: flex;
    overflow: hidden;
    height: 300px;
}

.albaListBox .sContent {
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.albaListBox .sContentTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #595959;
    font-size: var(--text-normal);
    font-weight: 500;
    line-height: 20px;
}

.albaListBox .sContentTop .pickBtn {
    width: 30px;
    height: 30px;
}

.lTitle {
    color: #1f1f1f;
    font-size: var(--text-large-medium);
    font-weight: 500;
    line-height: 26px;
    height: 50px;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.detailInfoBox {
    width: 100%;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.detailInfoBox .label-group {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.detail-info-label {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 5px;
    background-color: #EFEFEF;
    color: #595959;
    text-align: center;
    font-size: var(--text-normal);
    font-weight: 300;
    line-height: 14px;
}

.albaPay {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-large-medium);
    font-weight: 500;
    line-height: 22px;
    color: #1f1f1f;
}

.albaPay .active {
    font-weight: 500;
    margin-right: 5px;
}

.albaPay .price {
    font-weight: 700;
}

.bottomBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
}

.bottomBox .endDate {
    color: #959595;
    font-size: var(--text-normal);
    font-weight: 500;
    line-height: 20px;
}

.alba-status-box {
    display: flex;
    gap: 10px;
}

.alba-status {
    display: flex;
    width: 100px;
    height: 34px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: var(--text-normal);
    font-weight: 500;
    line-height: 20px;
}

.alba-status.guarantee {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.alba-status.open {
    color: var(--main-color);
    background-color: #FFE6F4;
}

.alba-status.submitted {
    color: #932EDF;
    background-color: #F4E3FF;
}

.alba-status.closed {
    color: #959595;
    background-color: #F3F3F3;
}


/* 알바픽 상세 페이지 */
.content,
.content2 {
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    background-color: #ffffff;
    gap: 20px;
}

.content .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-large);
    line-height: 30px;
    padding-bottom: 12px;
    font-weight: normal;
    color: #1f1f1f;
    border-bottom: 1px solid #DFDFDF;
}

.content .title .pickBtn {
    background-size: 26px;
}

.iconBox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iconBox .pickBtn,
.iconBox .icon-circle-share,
.iconBox .btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.content .conditionBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content .conditionBox .condiList {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.content .conditionBox .condiList .condiTitle {
    width: 120px;
    font-size: var(--text-medium);
    line-height: 24px;
    color: #959595;
}

.content .conditionBox .condiList .condiContent {
    width: calc(100% - 130px);
    font-size: var(--text-medium);
    line-height: 24px;
    color: #1f1f1f;
}

.content .conditionBox .condiList .label-group {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.content .conditionBox .condiList .condiContent .label {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 5px;
    background-color: #EFEFEF;
    color: #595959;
    text-align: center;
    font-size: var(--text-normal);
    font-weight: 300;
    line-height: 14px;
}

.content .imageBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    /*display: none;*/
}

.imageBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content .imageBox img {
    width: 50%;
}

.noticeBox {
    text-align: center;
    font-weight: normal;
}

.bottom-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bottom-btn-group .btnBox .supportBtn_end,
.bottom-btn-group .btnBox .supportBtn,
.bottom-btn-group .btnBox2 .editBtn,
.bottom-btn-group .btnBox2 .delBtn {
    display: flex;
    width: 300px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: var(--text-medium);
    font-weight: 500;
    line-height: 20px;
    border-radius: 10px;
    cursor: pointer;
    color: #ffffff;
}

.bottom-btn-group .btnBox .supportBtn {
    background-color: #FF2186;
}

.bottom-btn-group .btnBox .supportBtn_end {
    background-color: #959595;
}

.bottom-btn-group .btnBox2 {
    display: flex;
    align-items: center;
    gap: 12px;
    gap: 12px;
    right: 0;
    position: absolute;
}

.bottom-btn-group .btnBox2 .editBtn {
    border: 1px solid #ff2186;
    color: #ff2186;
}

.bottom-btn-group .btnBox2 .delBtn {
    border: 1px solid #d7d7d7;
    color: #595959;
}

.bottom-btn-group .btnBox2 .editBtn,
.bottom-btn-group .btnBox2 .delBtn {
    gap: 5px;
    width: 120px;
}

.bottom-btn-group .btnBox2 .editBtn span,
.bottom-btn-group .btnBox2 .delBtn span {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.mTitle {
    color: #1f1f1f;
    font-size: var(--text-medium);
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.content2 {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
}

.content2 .logo {
    width: 140px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.content2 .companyName {
    display: flex;
    flex-direction: column;
    font-size: var(--text-medium);
    line-height: 24px;
    color: #1f1f1f;
    gap: 5px;
}

.content2 .companyName span {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    font-size: var(--text-small);
    line-height: 16px;
    color: #4e7eff;
    font-weight: 400;
    border-radius: 50px;
    background-color: #e9efff;
}


/* 알바픽 상세 - 지원하기 팝업  */


.albaApplyBox.visible {
    display: block;
}

.albaApplyBox {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 102;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

.albaApplyBox .applyPopup {
    position: absolute;
    top: calc(50% - 262px);
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    width: 450px;
    background-color: #ffffff;
}

.applyPopup .profileSwiper {
    width: 100%;
    padding: 0 40px;
}

.applyPopup .profileSwiper .swiper-button-lock {
    display: unset;
}

.applyPopup .profileSwiper .swiper-button-prev,
.applyPopup .profileSwiper .swiper-button-next {
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.applyPopup .profileSwiper .swiper-button-prev {
    left: 0;
}

.applyPopup .profileSwiper .swiper-button-next {
    right: 0;
}

.applyPopup .profileSwiper .swiper-button-next::after,
.applyPopup .profileSwiper .swiper-button-prev::after {
    display: none;
}


.applyPopup .aBtnBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.applyPopup .aBtnBoxTxt {
    font-size: var(--text-normal);
    font-weight: 300;
    line-height: 22px;

}


.applyPopup .aBtnBoxTxt span {
    color: var(--main-color);
}

.applyPopup .profileList {
    /* overflow: hidden;
    overflow-y: auto; */
    scrollbar-width: none;
    display: flex;
    gap: 10px;
    /* padding-left: 40px; */
}

.applyPopup .myProfile {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    background-color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    height: 160px;
    margin: 0 !important;
}

.applyPopup .myProfile .userImage {
    width: 175px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.applyPopup .myProfile .userInfoBox {
    width: calc(100% - 175px);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.applyPopup .myProfile .infoBoxFstLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.applyPopup .myProfile .userInfoBox .userName {
    color: #1F1F1F;
    font-size: var(--text-large-medium);
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.applyPopup .myProfile .userInfoBox .userName .label {
    display: flex;
    padding: 0px 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #959595;
    color: #959595;
    font-size: var(--text-small);
    font-weight: 300;
    line-height: 20px;
}

.myProfile .userInfoBox .userName span {
    width: 22px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;

    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../image/web/lock.png");
    background-size: 80%;
}

.applyPopup .myProfile .btnBox input[type=radio] + label {
    display: inline-block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.applyPopup .myProfile .btnBox input[type=radio] + label {
    background-image: url('/static/image/svg/icon-check-off.svg');
}

.applyPopup .myProfile .btnBox input[type=radio]:checked + label {
    background-image: url('/static/image/svg/icon-check-on.svg');
}

.applyPopup .myProfile .userInfoBox .label-group {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 5px;
    align-self: stretch;
    flex-wrap: wrap;
}

.applyPopup .myProfile .userInfoBox .label-group span {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background: #EFEFEF;
    color: #595959;
    font-size: var(--text-small);
    font-weight: 300;
    line-height: 12px;
}


.applyPopup .popup-bottom {
    padding: 20px;
}

.sendProfile {
    width: 100%;
    height: 40px;
    padding: 0px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--main-color);
    cursor: pointer;
    font-size: var(--text-medium);
    font-weight: 300;
    color: #ffffff;
}


/* 알바픽 공고 등록 */
.container {
    /* background-color: var(--new-bg-gray); */
}

/*  CSS로 스크롤 버튼 숨기기  시작 */
/* Chrome, Safari, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Internet Explorer, Edge */
input[type="number"]::-ms-clear {
    display: none;
}

/*  CSS로 스크롤 버튼 숨기기  끝 */
.btnBox {
    /* max-width: 430px; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainTitle {
    font-size: var(--text-large-medium);
    color: var(--text-black);
    text-align: left;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 12px;
}

.winBox {
    width: 100%;
}

.winBox form {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.winBox .inTitle {
    display: flex;
    padding: 0 0 15px;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
}

.winBox .inTitle .active {
    color: var(--new-pink);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.winBox .inTitle .text-gray {
    color: var(--text-light-gray);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.winBox .section-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.winBox .section-group .mainTitle {
    margin-bottom: 0;
}

.winBox .section-box {
    font-size: var(--text-normal);
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #D5D5D5;
    background-color: var(--white);
}

.winBox .joinInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    width: 100%;
}

.winBox .joinInfo .content {
    border: none;
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.winBox .joinInfo .title,
.inTitleSub {
    display: flex;
    justify-content: space-between;
    position: relative;
    font-size: var(--text-normal);
    color: var(--text-gray);
    font-weight: 500;
    font-size: var(--text-medium);
    font-weight: 600;
    line-height: 24px;
}

.winBox .joinInfo .content select:focus {
    outline: none;
}

.winBox .joinInfo .content input::placeholder,
.winBox .joinInfo .content textarea::placeholder {
    color: var(--text-light-gray);
    font-size: var(--text-normal)
}


/* input 요소가 선택되었을 때 테두리(포커스 아웃라인) 없애기 */
.winBox .joinInfo .content input:focus,
.winBox .joinInfo .content textarea:focus {
    outline: none;
    border: 1px solid var(--text-light-gray);
    background-color: #fff;
}


.winBox .joinInfo .content #cateMain {
    background-color: #fff;
    color: var(--text-light-gray);
    border: 1px solid var(--text-light-gray);
}

.winBox .joinInfo .content input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: var(--text-normal);
    border-radius: 10px;
    border: 0px;
    padding: 0px 10px;
    box-sizing: border-box;
    color: var(--text-gray);
    background-color: var(--white);
    border: 1px solid #d5d5d5;
    font-weight: 400;
}

.winBox .joinInfo .content textarea {
    width: 100%;
    height: 480px;
    border-radius: 11px;
    border: 0px;
    box-sizing: border-box;
    color: var(--text-black);
    background-color: var(--white);
    border: 1px solid #d5d5d5;
    font-weight: 400;
    padding: 15px 20px;
    line-height: 1.5em;
    resize: none;
}

.winBox .joinInfo .content select {
    width: 180px;
    height: 40px;
    line-height: 40px;
    font-size: var(--text-normal);
    border-radius: 10px;
    border: 0px;
    padding: 0px 15px;
    box-sizing: border-box;
    color: var(--text-gray);
    background: url('../image/web/arrow.png') no-repeat right 16px center;
    background-color: var(--white);
    border: 1px solid var(--line-color);
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content span {
    height: 40px;
    line-height: 40px;
    color: var(--text-light-gray);;
}

.winBox .joinInfo .content.subCateBox {
    justify-content: flex-start;
    gap: 8px;
}

.winBox .joinInfo .content .cateExpand {
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    border-radius: 8px;
    background-color: var(--white);
    vertical-align: top;
    border: 1px solid var(--text-light-gray);
    box-sizing: border-box;
    cursor: pointer;
    font-size: var(--text-normal);
    font-weight: 400;
    text-align: center;
    color: var(--text-light-gray);
}

.winBox .joinInfo .content .cateExpand input {
    display: none;
}

#startDate, #endDate {
    width: 180px;
}

#startDate, #endDate, #interviewDate {
    text-align: center;
}

#addr_detail {
    width: calc(100% - 380px);
}

#pay {
    width: calc(100% - 190px);
}

#preparation {
    height: 300px;
    resize: vertical;
}

#email {
    width: 420px;
}

#essential {
    height: 200px;
    resize: vertical;
}

.payType {
    font-size: 14px;
}


.phone-number {
    display: flex;
    gap: 10px;
}

.phone-number input {
    width: 120px !important;
}

.phone-number .bar {
    font-size: var(--text-medium);
    font-weight: 400;
    line-height: 40px;
    color: var(--text-black);
    display: flex;
    width: 10px;
    align-items: center;
    justify-content: center;
}


.textCheck {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 20px;
    cursor: pointer;
    gap: 5px;
    font-weight: 400;
}

.textCheck input {
    display: none;
}

.form-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

#addr_depth1, #addr_depth2 {
    width: 180px;
}

.payInfoNotice {
    margin-top: 8px;
    position: relative;
    top: 1px;
    accent-color: var(--main-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: var(--text-normal);
}

.payInfoNotice a,
.law-link {
    color: #0C8AFF;
}

.payInfoNotice .checkbox-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

#age, #gender, #career {
    width: 180px;
}

.addInfo {
    margin-top: 20px;
    margin-bottom: 10px;
}


.upload-hidden {
    display: none;
}

.fileLabel,
.imageList {
    display: block;
    cursor: pointer;
}

.fileLabel .addImage {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 10px;

    background-image: url("../image/web_v2/gallery-add.png");
    background-position: center;
    background-repeat: no-repeat;
}

.upload-display {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 10px;

    background-image: url("../image/web_v2/gallery-add.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.fileLabel .imageInfo,
.imageList .imageInfo,
.imageInfoTxt {
    display: inline-block;
    vertical-align: top;

    /*line-height: 60px;*/

    padding-left: 10px;
    font-size: var(--text-normal);
    text-align: left;
    color: var(--text-light-gray);
}


.fileLabel {
    width: 100%;
}

.imageInfoTxt {
    height: 80px;
    line-height: 80px;
}

.imageList {
    display: flex;
    width: 100%;
    align-items: center;
}

.imageList .imageInfo {
    color: var(--text-black);
}

.fileLabel .delBtn {
    display: none;
    width: 20px;
    height: 80px;

    background-image: url("../image/web_v2/close-square.png");
    background-position: center;
    background-repeat: no-repeat;
}

.upload-sub, .upload-sub2 {
    display: inline-block;
    width: 30px;
    height: 30px;

    background-image: url("../image/web_v2/close-square.png");
    background-position: center;
    background-repeat: no-repeat;
}

.content .cInfo {
    font-size: var(--text-normal);
    color: var(--text-gray);
    margin-top: 10px;
}

.notice-text {
    /* display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch; */
    width: 100%;
    padding: 15px 12px;
    gap: 10px;
    border-radius: 8px;
    background: #FDEFF5;
    font-size: var(--text-medium);
    font-weight: 400;
    line-height: 26px;
    color: var(--new-pink);
    text-align: center;
}

.sendBtn {
    background-color: var(--new-pink);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 50px;
    display: flex;
    width: 240px;
    height: 50px;
    padding: 0px 12px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
}


/* 추천상품 */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    font-size: var(--text-normal);

}

.payment-option {
    cursor: pointer;
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid #D5D5D5;
}

.free-option-group {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: -webkit-fill-available;
    justify-content: space-around;
}

.free-option-group .botton {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.free-option-box,
.payment-free-option {
    display: flex;
    align-items: center;
    border: unset;
    flex-direction: row;
    justify-content: space-between;
    padding: unset
}

.option-cover {
    background-color: #f3f3f3;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.option-cover img {
    width: 100%;
}

.option-cover .cover-tit {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.option-cover .cover-tit h4 {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text-black);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.option-cover .cover-tit h4 .label {
    display: flex;
    height: 24px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    font-size: var(--text-small);
    font-weight: 500;
    letter-spacing: -0.28px;
    color: var(--new-pink);
    background-color: #FFE2EB;
    border-radius: 26px;
}

.option-cover .cover-tit .price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.option-cover .cover-tit .price p {
    color: var(--new-pink);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.option-cover .cover-tit .price p span {
    color: var(--text-darker-gray);
    font-size: var(--text-medium);
    font-weight: 500;
    line-height: 24px;
}

.option-cover ul {
    padding-left: 10px;
    list-style-position: inside;
    font-size: var(--text-medium);
    font-weight: 400;
    line-height: 28px;
    color: var(--text-gray);
}

.payment-option input[type="radio"], .payment-default input[type="radio"] {
    accent-color: var(--new-pink);
    display: none;
    background-color: var(--gray-color);
}

.payment-option.disabled input[type="radio"] {
    pointer-events: none;
}

.payment-option.disabled:hover {
    border: 1px solid var(--new-pink)
}

.payment-optio input[type="radio"]:checked + .radio-button {
    background-color: var(--new-pink);
    color: var(--white);
}

.payment-option.disabled {
    background-color: #F3F4F6;
    cursor: not-allowed;
    opacity: 0.7;
}

.payment-option.disabled input[type="radio"] {
    pointer-events: none;
}

.payment-option.disabled span {
    color: var(--gray-color);
}

.radio-button {
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    background-color: var(--text-light-gray);
    color: var(--white);
    display: flex;
    width: 120px;
    height: 40px;
    padding: 0px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--text-medium);
    font-weight: 600;
    line-height: 20px;
}

.radio-button.active {
    background-color: var(--new-pink);
    color: var(--white) !important;
}

.joinInfo .desc-info {
    width: 100%;
    text-align: center;
    font-size: var(--text-medium);
    line-height: 26px;
    font-weight: 400;
    padding: 10px 0;
}

.day-count {
    display: flex;
    padding: 15px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.day-count .before {
    color: var(--text-gray);
    font-size: var(--text-medium);
    font-weight: 400;
    line-height: 28px;
}

.day-count .after {
    color: var(--text-black);
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
}

/* datepicker */
.datepicker-top-left, .datepicker-top-right {
    border-top-color: var(--main-color) !important;
}

.datepicker-top-left:before, .datepicker-top-right:before {
    border-bottom-color: var(--main-color) !important;
}

.highlighted {
    background-color: #fff !important;
    color: var(--main-color) !important;
}

.datepicker-panel > ul > li:hover {
    background-color: rgba(255, 138, 174, 0.2) !important;
}

.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
    background-color: var(--main-color) !important;
    color: #fff !important;
    border-radius: 50%;
}

.info-box {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #D5D5D5;
    background: var(--white);
}

.info-box .bg-cover {
    background-color: #f3f3f3;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-box .bg-cover img {
    width: auto;
    height: 160px;
}

.info-box .bg-cover h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.info-box .bg-cover ul {
    list-style-position: inside;
}

.info-box .bg-cover ul li {
    color: var(--text-gray);
    font-size: var(--text-medium);
    font-weight: 400;
    line-height: 24px;
}

.checkbox-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}


/* 팝업 모달 내용 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.close-btn {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}


.highlight {
    color: #ff4444;
    font-weight: bold;
}

.law-table {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

.law-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.law-row:last-child {
    border-bottom: none;
}

.law-column {
    background-color: #f8f9fa;
    padding: 15px;
    width: 120px;
    font-weight: bold;
    color: #333;
    font-size: 13px;
    border-right: 1px solid #e0e0e0;
}

.law-content {
    flex: 1;
    padding: 15px;
    font-size: 13px;
}

.law-content ul {
    margin: 0;
    padding-left: 20px;
}

.law-content ul ul {
    margin-top: 5px;
}

.law-content li {
    margin-bottom: 8px;
}

.law-content li:last-child {
    margin-bottom: 0;
}

.penalty {
    color: #ff4444;
    font-weight: bold;
    font-size: var(--text-normal)
}

.modal-body .notice-text {
    text-align: left;
}

strong {
    color: #333;
}

.penalty-box {
    margin-top: 10px;
    line-height: 1.6;
}

.penalty-box .penalty {
    display: inline-block;
    margin-bottom: 3px;
}


/* 알바픽 공고 수정 */
.edit-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.attachImg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}


/* 알바픽 viewer */
.myProfile .btnBox input[type=radio] {
    display: none;
}

.writeBtn {
    position: fixed;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: #ff2186;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}


.writeBtn .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    left: 15px;

    background-image: url("../image/web_v2/edit.png");
}

.float-button-container {
    display: none;
}


@media (max-width: 1200px) {
    /* 알바픽 메인 페이지 */
    /* 알바픽 상세 페이지 */
    /* 알바픽 상세 - 지원하기 팝업  */
    /* 알바픽 공고등록 */
    .winBox .joinInfo .content.subCateBox {
        flex-wrap: wrap;
    }

    /* 알바픽 공고 수정 */

}


@media (max-width: 992px) {
    /* 알바픽 메인 페이지 */
    .albaList {
        grid-template-columns: repeat(2, 1fr);
    }


    /* 알바픽 상세 페이지 */
    /* 알바픽 상세 - 지원하기 팝업  */
    /* 알바픽 공고등록 */
    /* 알바픽 공고 수정 */

}

@media (max-width: 767px) {
    /* 알바픽 메인 페이지 */
    .albaList {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .albaList .albaListBox {
        height: 270px;
    }

    .albaListBox .sContentTop .pickBtn {
        width: 24px;
        height: 24px;
    }


    /* 알바픽 상세 페이지 */
    .content {
        position: relative;
    }

    .content, .content2 {
        padding: 15px;
        gap: 20px;
    }

    .content .title {
        flex-direction: column;
        position: relative;
        padding-top: 40px;
        align-items: flex-start;
        font-size: var(--text-large-medium);
        line-height: 26px;
    }

    .content .iconBox {
        position: absolute;
        right: 0;
        top: 0;
    }

    .content .conditionBox .condiList .condiTitle,
    .content .conditionBox .condiList .condiContent {
        font-size: var(--text-normal);
    }

    .content .conditionBox .condiList .condiTitle {
        width: 90px;
    }

    .content .conditionBox .condiList .condiContent {
        width: calc(100%);
    }

    .content .imageBox {
        margin: 0;
    }

    .content .imageBox img {
        width: 100%;
    }

    .bottom-btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .bottom-btn-group .btnBox,
    .bottom-btn-group .btnBox2 {
        width: 100%;
    }

    .bottom-btn-group .btnBox2 {
        position: unset;
    }

    .bottom-btn-group .btnBox .supportBtn,
    .bottom-btn-group .btnBox .supportBtn_end {
        width: 100%;
    }

    .bottom-btn-group .btnBox2 .editBtn,
    .bottom-btn-group .btnBox2 .delBtn {
        width: calc(50% - 6px);
    }

    .content2 {
        flex-direction: column;
        gap: 10px;
    }

    .content2 .logo {
        width: 100%;
    }

    .content2 .companyName {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .content2 .companyName span {
        justify-content: center;
    }


    /* 알바픽 상세 - 지원하기 팝업  */
    .albaApplyBox .applyPopup {
        width: calc(100% - 40px);
        top: calc(50% - 174px) !important;
    }

    .applyPopup .profileSwiper {
        padding: 0;
    }

    .applyPopup .myProfile .userImage,
    .applyPopup .myProfile .userInfoBox {
        width: 50%;
    }

    .applyPopup .myProfile .userInfoBox {
        padding: 15px 12px;
    }

    .applyPopup .myProfile .userInfoBox .userName {
        font-size: var(--text-medium);
    }

    .applyPopup .myProfile .userInfoBox .label-group span {
        padding: 5px;
    }

    .applyPopup .profileSwiper .swiper-button-prev,
    .applyPopup .profileSwiper .swiper-button-next {
        width: 24px;
        height: 24px;
        background-size: cover;
    }

    .applyPopup .aBtnBoxTxt {
        font-size: var(--text-small);

    }

    .applyPopup .popup-bottom {
        padding: 15px;
    }

    .albaListBox .sContent {
        padding: 15px;
    }

    .alba-status-box {
        gap: 8px;
    }

    .alba-status {
        width: auto;
        min-width: 94px;
        padding: 0 8px;
    }

    .albaListBox .sContent {
        padding: 15px;
    }

    .alba-status {
        width: auto;
        min-width: 90px;
    }


    /* 알바픽 공고등록 */
    .winBox .section-box {
        padding: 20px;
    }

    #startDate, #endDate {
        width: 100%;
    }

    .textCheck.ordinary {
        width: 100%;
        justify-content: flex-start;
    }

    .winBox .joinInfo .content.areaBox {
        flex-direction: column;
        align-items: flex-start;
    }

    #addr_depth1, #addr_depth2, #addr_detail,
    #pay, #email, #age, #gender, #career,
    .winBox .joinInfo .content select {
        width: 100%;
        padding: 0 12px;
    }

    .winBox .joinInfo .content select {
        background-position: right 12px center;
    }

    .phone-number input {
        width: calc(100% / 3 - 10px) !important;
    }

    .detailInfo #agree_contract_info {
        margin-top: 0 !important;
    }

    .detailInfo .law-link {
        letter-spacing: -0.2px;
    }

    .payType {
        flex-direction: column !important;
        width: 100%;
    }

    .textCheck {
        height: 20px;
    }

    .joinInfo .notice-text {
        line-height: 18px;
        text-align: left;
    }

    .joinInfo .notice-text br {
        display: none;
    }

    .mob-column {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .mob-row {
        display: flex;
        gap: 5px;
        justify-content: space-between;
        width: 100%;
    }

    .payInfoNotice .checkbox-group {
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .payInfoNotice .checkbox-group input {
        margin-top: 2px;
    }

    .inTitleSub {
        flex-wrap: wrap;
        justify-content: flex-start;
        column-gap: 3px;
    }

    .form-group {
        width: 100%;
    }

    .phone-number {
        gap: 5px;
    }

    .phone-number input {
        width: calc(100% / 3 - 5px) !important;
    }

    .checkbox-group {
        flex-wrap: wrap;
        gap: 10px;
    }


    .payment-methods {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .payment-option,
    .info-box {
        padding: 15px;
    }

    .payment-option .cover-tit {
        /* flex-direction: column; */
        gap: 5px;
    }

    .option-cover,
    .info-box .bg-cover {
        gap: 15px;
        padding: 15px;
    }

    .option-cover {
        gap: 5px;
        padding: 15px;
    }

    .option-cover ul {
        list-style: none;
        padding-left: 0;
    }

    .option-cover ul li {
        /* text-align: center; */
        font-size: 14px;

    }

    .option-cover .cover-tit {
        align-items: flex-end;
    }

    .option-cover .cover-tit h4 {
        font-size: var(--text-medium);
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .option-cover .cover-tit h4 .label {
        font-size: var(--text-smaller);
        padding: 0 8px;
        height: 18px;
    }

    .info-box .bg-cover {
        flex-direction: column;
    }

    .info-box .bg-cover img {
        width: 100%;
        height: auto;
    }

    .free-option-group {
        gap: 10px;
    }

    .free-option-group .botton {
        justify-content: center;
    }

    .free-option-box .payment-option {
        padding: 0;
        background-color: transparent;
    }

    .info-box .bg-cover ul li {
        font-size: 14px;
        line-height: 22px;
    }

    /* 알바픽 공고 수정 */
    .attachImg {
        gap: 5px;
        grid-template-columns: repeat(1, 1fr);
    }


    .float-button-container {
        width: auto;
        z-index: 90;
        position: fixed;
        bottom: 0;
        display: flex;
        gap: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        background: white;
        height: 40px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        border: 1px solid #e9e9e9;
        border-radius: 30px;
        text-decoration: none !important;
        transform: translate(-50%, -50%);
        left: 50%;
    }

    .float-button {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
        height: 40px;
        line-height: 40px;
        cursor: pointer;
        color: #2b2b2b !important;
        font-size: 1.41vw;
        text-decoration: none !important;
        white-space: nowrap;
        transition: 0.5s;
        border: none;
        background: transparent;
        font-size: 3vw;
        gap: 5px;
    }

    .float-button-image {
        width: 20px;
        height: 20px;
    }


}

/* 390px 이하 작은 모바일 */
@media (max-width: 390px) {
    /* 알바픽 메인 페이지 */
    .lTitle {
        font-size: var(--text-medium);
        line-height: 22px;
        height: 45px;
    }

    .detail-info-label {
        font-size: var(--text-small);
        line-height: 12px;
    }

    .albaPay {
        font-size: var(--text-medium);
    }


    /* 알바픽 상세 페이지 */
    /* 알바픽 상세 - 지원하기 팝업  */
    /* 알바픽 공고등록 */
    /* 알바픽 공고 수정 */

}