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

a:link {
    color: pink;
    text-decoration: none;
    font-weight: normal;
}

a:visited {
    color: pink;
    text-decoration: none;
    font-weight: normal;
}

a:hover {
    color: pink;
    text-decoration: none;
    font-weight: normal;
}

a:active {
    color: pink;
    text-decoration: none;
    font-weight: normal;
}

/* ===== 로딩 화면 스타일 시작 ===== */
/* 전체 화면을 가리는 로딩 컨테이너 */
#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 배경 */
    display: flex; /* 기본적으로 flex로 설정 */
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    z-index: 9999;
    opacity: 0; /* 처음에는 투명하게 숨김 */
    pointer-events: none; /* 클릭을 무시하여 화면 조작 불가 */
    transition: opacity 0.5s ease-in-out; /* 부드럽게 페이드 인/아웃 */
}

/* SVG 로딩 애니메이션 */
.spinner_OSmW {
    transform-origin: center;
    animation: spinner_T6mA 0.75s step-end infinite;
}

@keyframes spinner_T6mA {
    8.3% {
        transform: rotate(30deg);
    }
    16.6% {
        transform: rotate(60deg);
    }
    25% {
        transform: rotate(90deg);
    }
    33.3% {
        transform: rotate(120deg);
    }
    41.6% {
        transform: rotate(150deg);
    }
    50% {
        transform: rotate(180deg);
    }
    58.3% {
        transform: rotate(210deg);
    }
    66.6% {
        transform: rotate(240deg);
    }
    75% {
        transform: rotate(270deg);
    }
    83.3% {
        transform: rotate(300deg);
    }
    91.6% {
        transform: rotate(330deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== 로딩 화면 스타일 끝 ===== */


.mTtitle {
    /*position: relative;*/
    font-size: 15px;
    font-weight: normal;
    color: var(--text-darker-gray);
    margin-bottom: 10px;
}

.topMargin {
    margin-top: 20px;
}

.mTitleOuterBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mTitleOuterBox > .mTtitle {
    margin-bottom: 0px;
    font-size: 20px;
}

.mTitleOuterBox > button {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding-right: 20px;
    padding-left: 20px;
    color: white !important;
    background-color: var(--main-color);
    border: solid 1px var(--line-color);
    box-shadow: 0px 1px 5px var(--line-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.mTitleInnerBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mTtitle span {
    width: 67px;
    height: 14px;

    color: var(--white);
    cursor: pointer;
    text-align: right;
}

.txtBold {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-darker-gray);
}


.showAllTxtBox, .showAllAlbaTxtBox, .showAllCastingTxtBox {
    display: flex;
    color: var(--line-color) !important;
    font-size: 20px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.showAllTxt, .goToAllTxt {
    color: var(--line-color) !important;
    font-size: 14px;
}

.audiEnrollBtn {
    display: inline-block;
    text-align: center;
    width: 60px;
    padding-right: 10px;
    padding-left: 10px;
    height: 35px;
    line-height: 35px;
    color: white !important;
    background-color: var(--main-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
    margin-left: 10px;
}

.audiEnrollBtn a {
    color: white !important;
}

.userInfo {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    background-color: var(--white);

    padding: 15px 18px;
    border-radius: 20px;
    border: solid 1px var(--line-color);
    box-sizing: border-box;
}

.userInfo .userName {
    font-size: 14px;
    font-weight: normal;
    /*font-stretch: normal;*/
    color: var(--text-black);
    margin-bottom: 10px;

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

.userInfo .userName span {
    margin-left: 10px;
}

.verifiedBtn {
    display: inline-block;
    width: 100px;
    height: 35px;
    line-height: 35px;

    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    cursor: pointer;
}

.verifiedBtn.disabled {
    pointer-events: none; /* 클릭 이벤트를 막음 */
    opacity: 0.5; /* 비활성화된 상태처럼 보이게 함 */
}

.verifiedText {
    color: var(--text-light-gray);
}

.userInfo .uInfo {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-top: 10px;
    font-size: 13px;
    text-align: left;
}

.userInfo .editBtn {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 12px;
    right: 12px;
    cursor: pointer;
    margin-right: 0px !important;

    background-image: url("../../../image/web/update.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*
* ========================================
* 내 프로필 영역 START
* ========================================
*/

.myProfile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0px;
    width: 100%;
    max-width: 545px;
    height: 270px;
    border-radius: 20px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    vertical-align: top;
}


.myProfile .userImage {
    width: 100%;
    height: 100%;
    border-radius: 20px 0px 0px 20px;
    background-color: #aaaaaa;

    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 프로필 첫번째라인
==================== */
.default-profile-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px; /* 텍스트와 이미지 사이 간격 */
    font-size: 12px;
}

.default-profile-btn p {
    color: #959595; /* 기본 상태 */
}

.default-profile-btn p.active {
    color: var(--main-color); /* active 상태 */
}


.myProfile .userInfoBox .userName {
    display: flex;
    align-items: center;

    font-size: 14px;
    font-weight: bold;
    color: var(--text-darker-gray);

    margin-top: 12px;
    margin-bottom: 12px;
}


.myProfile .userInfoBox .pUInfo {
    font-size: 14px;
    line-height: 1.5;
    color: #4d4d4d;
}


.myProfile .userInfoBox .proComplete {
    font-size: 14px;
    font-weight: normal;
    color: var(--main-color);
    margin-bottom: 4px;
}

.myProfile .userInfoBox .proProgressBox {
    width: 100%;
    height: 22px;
    border-radius: 20px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.myProfile .userInfoBox .proProgressBox .progressBar {
    width: 70%;
    height: 22px;
    border-radius: 20px;
    background-color: var(--main-color);
}


/*
* ========================================
* END 내 프로필 스타일
* ========================================
*/

.myProfile {
    position: relative;
    display: inline-block;
    width: 100%;
    /*height: 80%;*/
    /*padding-bottom: 55%;*/
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: var(--white);
    border: solid 1px var(--line-color);
    overflow: hidden;
    cursor: pointer;
    min-height: 186px;
    box-sizing: border-box;
}

.btnBox {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 10;
}

.editBtn {
    display: inline-block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-right: 10px;
    cursor: pointer;
    z-index: 10;

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

.delBtn {
    display: inline-block;
    width: 18px;
    height: 18px;
    cursor: pointer;

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


.myProfile .userImage {
    position: absolute;
    width: 44%;
    height: 100%;
    top: 0px;
    left: 0px;

    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

.myProfile .userInfoBox {
    display: flex;
    flex-direction: column;

    position: absolute;
    width: 56%;
    height: 100%;
    box-sizing: border-box;

    top: 0px;
    right: 0px;
    padding: 14px 10px;
}

.myProfile .userInfoBox .pUInfo {
    font-size: 12px;
    line-height: 1.8;
    color: #4d4d4d;
}

.myProfile .userInfoBox .progre {
    margin-top: 12px;
}


.myProfile .userInfoBox .proComplete {
    font-size: 9px;
    font-weight: normal;
    color: var(--main-color);
    margin-bottom: 4px;
}

.myProfile .userInfoBox .proProgressBox {
    width: 100%;
    height: 11px;
    border-radius: 20px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.myProfile .userInfoBox .proProgressBox .progressBar {
    width: 70%;
    height: 11px;
    border-radius: 20px;
    background-color: var(--main-color);
}

.myProfile .comment {
    font-size: 18px;
    color: var(--text-black);
}

.viewBox {
    position: absolute;
    bottom: 12px;
    left: 120px;
    width: 90px;
    font-size: 0px;
}

.btnBox_suggest_profile {
    display: flex;
    justify-content: flex-end;
}

.contentBox .viewBox {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 90px;
    font-size: 0px;
}

.viewBox .countBox {
    display: inline-block;
    height: 43px;
    width: 24px;
    margin-right: 3px;
}

.viewBox .countBox:nth-child(3) {
    margin-right: 0px;
}

.viewBox .countBox span {
    display: inline-block;
    width: 18px;
    height: 18px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.viewBox .countBox span.viewCount {
    background-image: url("../../../image/web/viewCount.png")
}

.viewBox .countBox span.pickCount {
    background-image: url("../../../image/web/pickCount.png")
}

.viewBox .countBox span.comViewCount {
    background-image: url("../../../image/web/companyView.png")
}

.viewBox .countBox p {
    margin: 0px;
    padding: 0px;

    font-size: 12px;
    text-align: center;
    color: var(--main-color);
}

.noneProfile {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 15px;
    color: var(--line-color);
}

/*.auditionList .audiList {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    padding: 20px;*/
/*    border-radius: 20px;*/
/*    border: solid 1px var(--line-color);*/
/*    background-color: var(--white);*/
/*    box-sizing: border-box;*/
/*    margin-bottom: 10px;*/
/*    margin-top: 10px;*/
/*}*/

/*.auditionList .audiList .logo {*/
/*    !*position: absolute;*!*/
/*    width: 150px;*/
/*    height: 54px;*/
/*    !*left: 20px;*!*/
/*    !*top: 20px;*!*/
/*    background-color: #aaaaaa;*/

/*    background-repeat: no-repeat;*/
/*    background-size: 100% 100%;*/
/*}*/

/*.auditionList .audiList .content {*/
/*    !*padding-top: 90px;*!*/
/*}*/

/*.auditionList .audiList .content .audiTitle {*/
/*    font-size: 12px;*/
/*    color: var(--text-darker-gray);*/
/*    margin-bottom: 10px;*/
/*}*/

/*.auditionList .audiList .content .comment {*/
/*    font-size: 11px;*/
/*    color: var(--text-black);*/
/*}*/

.auditionList .audiList .audiBtn {
    position: absolute;
    right: 20px;
    top: 30px;
    width: 130px;
    height: 40px;
    border-radius: 10px;
    border: solid 1px var(--main-color);
    line-height: 40px;
    text-align: center;
    cursor: pointer;

    font-size: 14px;
    font-weight: bold;
    color: var(--main-color);
}

/* 내가 픽한 아르바이트 시작 */
.mypickAlbaList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.mypickAlbaOneOnly {
    grid-template-columns: repeat(1, 1fr);
}

.mypickAlba {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    box-sizing: border-box;
}

.mypickAlbaList .mypickAlba .content {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.mypickAlbaList .mypickAlba .content .albaTitle {
    font-size: 14px;
    color: var(--text-black);
    font-weight: normal;
    margin-bottom: 10px;
}

.lAppel {
    font-size: 12px;
    color: #4d4d4d;
    /*margin-bottom: 10px;*/
}

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

.mypickAlbaList .content .bottomBox .endDate {
    font-size: 12px;
    color: #959595;
    text-align: left;
}

.mypickAlbaList .mypickAlba .content .pickBtn {
    width: 20px;
    height: 20px;
    cursor: pointer;

    background-image: url("../../../image/heart.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mypickAlbaList .mypickAlba .content .pickBtn.pickOn {
    background-image: url("../../../image/full_heart.png");
}

/* 내가 픽한 아르바이트 끝 */


.inBox {
    position: relative;
    font-size: 0px;
}

.myPickAuditionBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}


.inBox .audition {
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 140px;
    /*position: relative;*/
    /*display: inline-block;*/
    /*width: calc(50% - 5.5px);*/
    /*padding-bottom: calc(50% - 5.5px);*/
    /*margin-right: 11px;*/
    /*margin-bottom: 10px;*/
    box-sizing: border-box;
    overflow: hidden;

    border-radius: 15px;
    border: solid 1px var(--line-color);
    background-color: var(--white);

    padding: 10px;
}

/*.inBox .audition:nth-child(2n) {*/
/*    margin-right: 0px;*/
/*}*/

.inBox .audition .audiLogo {
    /*position: absolute;*/
    /*top: 12px;*/
    /*left: 6px;*/
    /*width: calc(100% - 12px);*/
    padding-bottom: 36%;
    background-color: var(--white);

    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.inBox .audition .audiContentBox {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.inBox .audition .audiTitle {
    /*position: absolute;*/
    /*width: calc(100% - 12px);*/
    margin-top: 10px;
    /*height: 40px;*/
    /*top: calc(36% + 20px);*/
    /*left: 6px;*/
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-darker-gray);
    box-sizing: border-box;

    /* 2줄 이상일 경우 ... 처리 */
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.inBox .audition .audiTerm {
    display: flex;
    justify-content: space-between;

    /*position: absolute;*/
    /*left: 10px;*/
    /*bottom: 10px;*/
    padding-left: 4px;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-black);
}


.audition .pickBtn {
    /*position: absolute;*/
    /*bottom: 20px;*/
    /*right: 18px;*/
    width: 20px;
    height: 20px;
    cursor: pointer;

    background-image: url("../../../image/heart.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.audition .pickBtn.pickOn {
    background-image: url("../../../image/full_heart.png");
}

.myArtistBox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    border-radius: 10px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    row-gap: 15px;
    min-width: 330px;
}

.myArtistBox .name {
    text-align: center;
}

.myArtistBox .artistProfile {
    text-align: center;
    cursor: pointer;
}

.myArtistBoxNone, .noneProfileBox {
    width: 100%;
    border-radius: 20px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    margin-bottom: 20px;
}


/* 공지사항, 원픽매거진 */
.notiBox {
    box-sizing: border-box;
    width: 100%;
    padding: 0px 10px;
    border-radius: 20px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    /*font-size: 0px;*/
    cursor: pointer;
    /*margin-left: 10px;*/
}

.notiBox .notiList {
    position: relative;
    padding: 20px 7px 10px;
    border-top: 1px solid var(--line-color);
}

.notiBox .notiList:first-child {
    border: 0px;
}

.notiBox .notiList .title {
    display: inline-block;
    width: 100%;
    /*margin-right: 60px;*/
    box-sizing: border-box;

    font-size: 14px;
    /*font-weight: normal;*/
    color: var(--text-black);
}

.notiBox .notiList .title span {
    color: var(--main-color);
}

.notiBox .notiList .date {
    display: inline-block;
    width: 100%;
    height: 18px;

    font-size: 14px;
    /*font-weight: normal;*/
    text-align: right;
    color: var(--text-black);
    padding-right: 18px;
}


/* 기업회원 */
.regiAudiInBox, .regiAlbaInBox {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    gap: 20px;
}


.regAudi, .regAlba {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    box-sizing: border-box;
}

.regAudi:nth-child(2n) {
    margin-right: 0px;
}

.regAudi .audiTitle, .regAlba .albaTitle {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-darker-gray);
}

.regAudi .audiTerm, .regAlba .albaTerm, .cate {
    display: flex;
    font-size: 14px;
    color: var(--text-black);
    margin-top: 10px;
    margin-bottom: 5px;
}

.regAudi .cTitle, .regAlba .cTitle {
    display: inline-block;
    width: 55px;
    height: 18px;

    font-size: 14px;
    font-weight: normal;
    color: #959595;
    vertical-align: top;
    margin-right: 10px;
}

.regAudi .cate .cContent {
    width: 150px;
    vertical-align: top;
    display: inline-block;
    font-size: 14px;
    text-align: left;
    color: var(--text-black);
    margin-bottom: 20px;
}

.volunteerBox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.regAudi .volunteer, .regAlba .volunteer {
    right: 154px;
    bottom: 22px;

    font-size: 13px;
    font-weight: normal;
    color: var(--main-color);
}

.regAudi .audiVolunteer, .regAlba .albaVolunteer {
    margin-left: 10px;
    right: 10px;
    bottom: 10px;
    width: 130px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    border: solid 1px var(--main-color);
    cursor: pointer;

    font-size: 14px;
    font-weight: normal;
    text-align: center;
    color: var(--main-color);
}

.hideHere,.hideHereAlba {
    display: none;
}

/* ------------- 프로필 리스트 ---------------- */

.inBox .profile {
    position: relative;
    display: inline-block;
    width: 100%;
    /*margin-right: 20px;*/
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    border: solid 1px var(--line-color);
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    /*padding-bottom: 80px;*/
}


.inBox .profile .imageBox {
    position: absolute;
    display: inline-block;
    width: 100px;
    margin-right: 20px;
    box-sizing: border-box;
    vertical-align: top;
}

.inBox .profile .imageBox {
    text-align: center;
}

.inBox .profile .imageBox .profileImage {
    width: 100px;
    height: 113px;
    border-radius: 10px;
    margin-bottom: 10px;

    background-size: 120% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.inBox .profile .imageBox .youtube {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.inBox .profile .imageBox .youtube iframe {
    width: 100%;
    height: 100%;
}

.myArtistBox .profile .name {
    text-align: center;
}

.inBox .profile .contentBox {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    vertical-align: top;
    text-align: left;
    padding-left: 110px;
    padding-top: 5px;
}

.inBox .profile .contentBox .name {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-darker-gray);
    margin-bottom: 10px;
}


.inBox .profile .contentBox .detailInfo {
    height: 82px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-black);

    /* 4줄 이상일 경우 ... 처리 */
    white-space: normal;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    /*margin-bottom: 10px;*/
}

.inBox .profile .contentBox .career {
    line-height: 1.5;
}

.inBox .profile .contentBox .career .careerTitle,
.inBox .profile .contentBox .career .careerContent {
    font-size: 12px;
    font-weight: normal;
    color: #4d4d4d;
}

.inBox .profile .contentBox .career .careerTitle {
    color: var(--main-color);
}

.inBox .profile .contentBox .career .introduction {
    height: 71px;
    font-size: 12px;
    /*font-weight: normal;*/
    color: #4d4d4d;
    word-break: break-all;

    /* 4줄 이상일 경우 ... 처리 */
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.inBox .profile .comment {
    font-size: 11px;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.inBox .blank {
    /*height: 55px;*/
}

.inBox .profile .pickBtn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;

    background-image: url("../../../image/heart.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inBox .profile .pickBtn.pickOn {
    background-image: url("../../../image/full_heart.png");
}

.page {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0px;
    text-align: center;
}

.pageBox {
    display: inline-block;
}

.pages {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #959595;
    margin-left: 10px;
    cursor: pointer;
    height: 25px;
    line-height: 25px;
    vertical-align: top;
}

.pages.nowPage {
    /*color: var(--main-color);*/
}

.pages:nth-child(1) {
    margin-left: 0px;
}

/*.leftPage, .rightPage {*/
/*    display: inline-block;*/
/*    border: 1px solid var(--line-color);*/
/*    border-radius: 50px;*/
/*    vertical-align: top;*/
/*    width: 25px;*/
/*    height: 25px;*/
/*    background-color: var(--white);*/

/*    background-size: 30%;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    cursor: pointer;*/
/*}*/

/*.leftPage {*/
/*    margin-right: 15px;*/
/*    background-image: url("../../../image/web/left_off.png");*/
/*}*/

/*.rightPage {*/
/*    margin-left: 15px;*/
/*    background-image: url("../../../image/web/right_off.png");*/
/*}*/

.writeBtnBox {
    display: flex;
}

.addQandA {
    margin: 0 auto;
    width: 150px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    background-color: var(--main-color);
    margin-top: 30px;

    font-size: 14px;
    /*font-weight: bold;*/
    text-align: center;
    color: var(--white);
}

.apply {
    width: 100px !important;
}

.apply p {
    display: inline-block;
    padding: 0px;
    margin: 0px;
}


.passBtn {
    z-index: 5;
    position: absolute;
    border: 1px solid #e1e1e1;
    right: 8px;
    top: 8px;
    width: 80px;
    height: 30px;
    border-radius: 20px;
    line-height: 28px;
    cursor: pointer;

    font-size: 10px;
    font-weight: bold;
    color: #e1e1e1;
    padding-left: 10px;
    box-sizing: border-box;
}

.passBtn span {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;

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

.passBtn.passOn {
    border: 1px solid #ff8aae;
    color: #ff8aae;
}

.passBtn.passOn span {
    background-image: url("../../../image/web/check_on.png");
}

.filterBox {
    position: absolute;
    right: 0px;
    top: -40px;
}

.filterBox #listView {
    width: 100px;
    height: 30px;
    border-radius: 10px;
    padding: 0px 12px;
    box-sizing: border-box;
    border: 1px solid var(--line-color);

    font-size: 10px;
    color: var(--text-black);
    background: url('../../../image/web/arrow.png') no-repeat right 16px center;
    background-color: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
}


select:focus {
    outline: none;
}

.popupBack {
    z-index: 10;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popupBack .popupBox {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -175px;
    margin-left: -160px;
    padding: 20px 8px 14px;
    box-sizing: border-box;

    width: 350px;
    height: 320px;
    background-color: var(--white);
    border-radius: 20px;
}

.popupBack .popupBox .popupTitle {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: var(--text-black);
    margin-bottom: 25px;
}

.popupBack .popupBox .popupClose {
    position: absolute;
    right: 27px;
    top: 20px;

    width: 18px;
    height: 18px;

    background-position: center;
    background-image: url("../../../image/web/closeIcon.png");
    background-repeat: no-repeat;
    background-size: 90%;
    cursor: pointer;
}

.popupBack .popupBox .profileBox {
    position: relative;
    width: 335px;
    height: 186px;
    border-radius: 20px;

    padding-left: 155px;
    border: 1px solid var(--line-color);
    box-sizing: border-box;
}

.popupBack .popupBox .profileBox .image {
    position: absolute;
    left: -1px;
    top: -1px;

    width: 151px;
    height: 187px;
    border-radius: 20px 0px 0px 20px;

    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.popupBack .popupBox .profileBox .profileName {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-darker-gray);
}

.popupBack .popupBox .profileBox #comment {
    font-size: 15px;
    border-radius: 11px;
    background-color: var(--white);
    border: 1px solid var(--line-color);
    box-sizing: border-box;
    color: var(--text-black);

    padding: 20px;
    line-height: 1.5em;
    width: 170px;
    height: 130px;
    outline: none;

    resize: none;
    font-family: 'Noto Sans KR', sans-serif;
}

.popupBack .popupBox .profileBox .checkView {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
    right: 10px;

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

.popupBack .popupBox .profileBox .checkView.on {
    background-image: url("../../../image/web/check_on.png");
}

.popupBack .popupBox .popupBtnBox {
    text-align: center;
    font-size: 0px;
    margin-top: 10px;
}

.popupBack .popupBox .popupBtnBox div {
    display: inline-block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;

    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    border-radius: 10px;
    cursor: pointer;
}

.popupBack .popupBox .popupBtnBox div.prePassBtn {
    background-color: #ff8aae;
}

.popupBack .popupBox .popupBtnBox div.cancelPassBtn {
    background-color: var(--line-color);
    margin-left: 14px;
}

.textCheck {
    position: relative;
    font-size: 13px;
    /*font-weight: bold;*/
    color: var(--line-color);
    cursor: pointer;
    margin-left: 10px;
}

.textCheck input {
    display: none;
}

.textCheck .check {
    position: absolute;
    top: 50%;
    margin-top: -11.5px;
    display: inline-block;
    margin-left: 5px;

    height: 18px;
    width: 18px;

    background-position: center;
    background-image: url("../../../image/web/textCheck_off.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.textCheck .check.on {
    background-image: url("../../../image/web/textCheck_on.png");
}

/* 내 프로필 관리 > 프로필 등록 - 드롭다운 메뉴 */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn_icon {
    /*font-family : 'Material Icons';*/
}

.dropbtn {
    border: 1px solid transparent;
    /*text-align: left;*/
    cursor: pointer;

    display: inline-block;
    text-align: center;
    width: 60px;
    padding-right: 10px;
    padding-left: 10px;
    height: 35px;
    line-height: 35px;
    color: white !important;
    background-color: var(--main-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
    margin-left: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1; /*다른 요소들보다 앞에 배치*/
    font-weight: 400;
    background-color: #f9f9f9;
    min-width: 145px;
}

.dropdown-content a {
    display: block;
    text-decoration: none;
    color: var(--text-darker-gray);
    font-size: 12px;
    padding: 12px 20px;
}

.dropdown-content a:hover {
    background-color: #ececec
}

.dropdown:hover .dropdown-content {
    display: block;
}

.profile-type {
    width: 110px;
    height: 36px;
    border-radius: 10px;
    box-sizing: border-box;
    outline: none;
    border: solid 1px var(--line-color);
    padding: 0px 12px;


    font-size: 12px;
    color: var(--line-color);
    background: url('../../../image/web/arrow.png') no-repeat right 14px center;
    background-color: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
}