:root {
    --line-clamp: 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 {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-darker-gray);
    margin-bottom: 20px;
}

.showListTitle {
    font-size: 16px;
    color: var(--text-darker-gray);
    margin-bottom: 20px;
    font-weight: bold !important;
}

.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 #c0c0c0;
    box-shadow: 0px 1px 5px #c0c0c0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

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

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

.showAllTxtBox, .showAllAlbaTxtBox, .showAllCastingTxtBox {
    display: flex;
    color: #c0c0c0 !important;
    font-size: 16px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.showAllTxt, .goToAllTxt {
    color: #c0c0c0 !important;
    cursor: pointer;
}

.audiEnrollBtn {
    display: inline-block;
    text-align: center;
    /*width: 120px;*/
    height: 40px;
    line-height: 40px;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 5px;
    color: white !important;
    background-color: var(--main-color);
    border-radius: 10px;
    font-size: 14px;
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
}

.audiEnrollBtn a {
    color: white !important;
}

@media (max-width: 768px) {
    .audiEnrollBtn {
        display: inline-block;
        text-align: center;
        width: 120px;
        height: 50px;
        line-height: 50px;
        color: white !important;
        background-color: var(--main-color);
        border-radius: 10px;
        font-size: 18px;
        color: var(--white);
        font-weight: bold;
        cursor: pointer;
    }

    .audiEnrollBtn a {
        color: white !important;
    }
}

.mTtitle span {
    cursor: pointer;
    color: var(--white);
    text-align: center;
    border-radius: 30px;
}

.mTtitle .apply {
    position: relative;
    display: inline-block;
    right: auto;
    left: auto;
    margin-top: 0px;
    width: 200px;
    height: 33px;
    font-size: 22px;
    font-weight: bold;
    color: var(--main-color);
    vertical-align: middle;
    margin-bottom: 5px;
    margin-left: 10px;
}

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

.userInfo {
    position: relative;
    width: 100%;
    /*max-width: 1100px;*/
    /*margin-left: 10px;*/
    margin-bottom: 30px;
    background-color: var(--white);

    padding: 30px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    box-sizing: border-box;
}

.userInfo .userName {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    color: var(--text-black);
    margin-bottom: 15px;
}

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

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

.icon-check-round {
    cursor: default;
}


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

.userInfo .editBtn {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 23px;
    right: 30px;
    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;
    /*display: inline-block;*/
    /*position: relative;*/
    font-size: 0px;
    width: 100%;
    /*max-width: 545px;*/
    height: 270px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    box-sizing: border-box;
    /*margin-right: 10px;*/
    /*margin-bottom: 30px;*/
    cursor: pointer;
    vertical-align: top;
}

.btnBox {
    display: flex;
    justify-content: flex-end;
    /*position: absolute;*/
    /*right: 25px;*/
    /*top: 25px;*/
    /*z-index: 10;*/
}


.myProfile .userImage {
    /*position: absolute;*/
    /*top: 0px;*/
    /*left: 0px;*/
    /*display: inline-block;*/
    width: 100%;
    height: 100%;
    border-radius: 20px 0px 0px 20px;
    background-color: #aaaaaa;

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


.myProfile .userInfoBox {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 30px;
    padding-right: 10px;
    padding-bottom: 10px;
}

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

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

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


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

    font-size: 18px;
    font-weight: bold;
    color: var(--text-darker-gray);
    margin-top: 10px;
    margin-bottom: 18px;
}

.icon-lock {
    background-size: contain;
}

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

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

.progre {
    margin-top: 10px;
}

.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 내 프로필 스타일
* ========================================
*/


.editBtn {
    display: inline-block;
    width: 20px;
    height: 20px;
    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: 20px;
    height: 20px;
    cursor: pointer;

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


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

.viewBox {
    position: absolute;
    bottom: 20px;
    left: 263px;
    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: 20px;
    margin-right: 3px;
}

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

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

    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);
}

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

.noneProfile {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    color: #c0c0c0;
}


.auditionList {
    width: 1200px;
    padding: 00px 50px;
    border-radius: 33px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-left: 10px;
}

.auditionList .audiList {
    position: relative;
    padding: 20px 0px 10px;
    border-top: solid 1px #c0c0c0;
}

.auditionList .audiList:first-child {
    border: 0px;
}

.auditionList .audiList .logo {
    position: absolute;
    width: 183px;
    height: 87px;
    left: 41px;
    top: 10px;
    background-color: #aaaaaa;

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

.auditionList .audiList .content {
    padding-left: 285px;
    padding-right: 195px;
}

.auditionList .audiList .content .audiTitle {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-darker-gray);
    margin-bottom: 10px;
}

.auditionList .audiList .content .comment {
    font-size: 14px;
    color: var(--text-black);
    min-height: 50px;
}

.auditionList .audiList .audiBtn {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -30px;
    width: 180px;
    height: 60px;
    border-radius: 20px;
    border: solid 1px var(--main-color);
    line-height: 60px;
    text-align: center;
    cursor: pointer;

    font-size: 18px;
    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 #c0c0c0;
    background-color: var(--white);
    box-sizing: border-box;

    cursor: pointer;
}

.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: flex-end;
}

.mypickAlbaList .content .bottomBox .endDate {
    font-size: 12px;
    color: var(--text-light-gray);
    text-align: left;
}

.mypickAlbaList .mypickAlba .content .pickBtn {
    width: 32px;
    height: 32px;
    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 {
    /*font-size: 0px;*/
    justify-content: center;
    align-items: center;

    margin-bottom: 20px;
}

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


.inBox .audition {
    /*position: relative;*/
    /*display: inline-block;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    width: 268px;
    height: 220px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);

    /*margin-top: 10px;*/
    /*margin-right: 20px;*/
    box-sizing: border-box;
    overflow: hidden;
    padding: 0px 10px;

    cursor: pointer;
}

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

.inBox .audition .audiLogo {
    background-color: var(--white);
    max-width: 245px;
    height: 100px;
    /*margin-bottom: 30px;*/

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

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

.inBox .audition .audiTitle {
    display: block;
    height: 40px;

    font-size: 14px;
    /*margin-top: 20px;*/
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--text-black);

    /* 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;

    padding-left: 10px;
    /*height: 19px;*/
    font-size: 14px;
    font-weight: bold;
    letter-spacing: normal;
    color: var(--text-darker-gray);
}

.audition .pickBtn {
    /*position: absolute;*/
    /*bottom: 20px;*/
    /*right: 18px;*/
    width: 32px;
    height: 32px;
    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");
}

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

/* 공지사항, 원픽매거진, 자유게시판 */
.notiBox {
    display: flex;
    flex-direction: column;
    /*position: relative;*/
    box-sizing: border-box;
    /*width: 1200px;*/
    padding: 0px 50px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    font-size: 0px;
    cursor: pointer;
    /*margin-left: 10px;*/
}

.notiBox .notiList {
    position: relative;
    padding: 30px 0px;
    border-top: 1px solid #c0c0c0;
}

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

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

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

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

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

.notiBox .notiList .title p {
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.notiBox .notiList .date {
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 26px;
    right: 10px;
    top: 30px;

    font-size: 16px;
    color: var(--text-light-gray);
}


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

.regAudi, .regAlba {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
}

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

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

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

.regAudi .cTitle, .regAlba .cTitle {
    display: inline-block;
    width: 63px;
    height: 20px;

    font-size: 14px;
    font-weight: normal;
    color: var(--text-light-gray);
    vertical-align: top;
    margin-right: 10px;
}

.regAudi .cate, .regAlba .cate {
    display: flex;
}

.regAudi .cContent, .regAlba .cContent {
    width: 100%;
    vertical-align: top;
    display: inline-block;
    font-size: 14px;
    text-align: left;
    color: var(--text-black);
}

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

.regAudi .volunteer, .regAlba .volunteer {
    right: 210px;
    bottom: 40px;

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

/*.regAudi .audiVolunteer, .regAlba .albaVolunteer {*/
/*    width: 180px;*/
/*    height: 30px;*/
/*    line-height: 30px;*/
/*    border-radius: 20px;*/
/*    border: solid 1px var(--main-color);*/
/*    cursor: pointer;*/

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

.regAudi .audiVolunteer, .regAlba .albaVolunteer {
    margin-left: 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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 10px;
    gap: 10px;
}

/*  ------------- proList page ----------------  */
.proList_profileBox {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
}

.pick_profile {
    width: 100% !important;
}

.pick_innerProfile {
    display: flex

}

/*  ------------- proList page ----------------  */

.proListBox {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}


.pickProfileInBox, .sugProfileInBox, .proListBox {
    flex-wrap: nowrap !important;
}


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

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

.myArtistBox .artistProfile {
    cursor: pointer;
}

.myArtistBoxNone {
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    margin-bottom: 20px;
    /*max-width: 1000px;*/
}

.inBox .profile {
    display: flex;

    padding: 20px;
    width: 590px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
}

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

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

.inBox .profile .imageBox .profileImage {
    width: 220px;
    height: 300px;
    border-radius: 20px;
    /*margin-bottom: 10px;*/

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

.inBox .profile .imageBox .youtube {
    width: 220px;
    height: 130px;
    border-radius: 20px;
    overflow: hidden;
}

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

.inBox .profile .contentBox {
    position: relative;
    display: inline-block;
    height: 100%;
    width: calc(100% - 272px);
    box-sizing: border-box;
    vertical-align: top;
}

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

.inBox .profile .contentBox .detailInfo {
    height: 106px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-black);

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


.inBox .profile .contentBox .comment {
    font-size: 16px;
    color: var(--text-black);
}


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


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


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


.inBox .profile .contentBox .career .introduction {
    height: 100px;
    font-size: 14px;
    /*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 .pickBtn {
    /*position: absolute;*/
    /*bottom: 28px;*/
    /*right: 20px;*/
    width: 32px;
    height: 32px;
    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: 30px;
    font-size: 0px;
    text-align: center;
}

.pageBox {
    display: inline-block;
}

.pages {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-light-gray);
    margin-left: 20px;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    vertical-align: top;
}

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

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

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

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

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

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

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

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

    font-size: 14px;
    text-align: center;
    color: var(--white);

    cursor: pointer;
}

.passBtn {
    z-index: 5;
    position: absolute;
    border: 1px solid #e1e1e1;
    right: 15px;
    top: 15px;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    line-height: 38px;
    cursor: pointer;

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

.passBtn span {
    position: absolute;
    width: 28px;
    height: 28px;
    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 var(--main-color);
    color: var(--main-color);
}

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

.filterBox {
    position: absolute;
    right: 10px;
    top: -50px;
}

.filterBox #listView {
    width: 140px;
    height: 40px;
    border-radius: 10px;
    padding: 0px 12px;
    box-sizing: border-box;
    border: 1px solid #c0c0c0;

    font-size: 15px;
    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: -260px;
    margin-left: -400px;
    padding: 40px 105px;
    box-sizing: border-box;

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

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

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

    width: 22px;
    height: 22px;

    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: 590px;
    height: 270px;
    border-radius: 20px;

    padding-left: 260px;
    border: 1px solid #c0c0c0;
    box-sizing: border-box;
}

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

    width: 241px;
    height: 271px;
    border-radius: 20px 0px 0px 20px;

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

.popupBack .popupBox .profileBox .profileName {
    margin-top: 25px;
    margin-bottom: 22px;
    font-size: 18px;
    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 #c0c0c0;
    box-sizing: border-box;
    color: var(--text-black);

    padding: 20px;
    line-height: 1.5em;
    width: 310px;
    height: 180px;
    outline: none;

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

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

    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: 50px;
}

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

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

.popupBack .popupBox .popupBtnBox div.prePassBtn {
    background-color: var(--main-color);
}

.popupBack .popupBox .popupBtnBox div.cancelPassBtn {
    background-color: #c0c0c0;
    margin-left: 20px;
}

.textCheck {
    position: relative;
    font-size: 16px;
    font-weight: normal;
    color: #c0c0c0;
    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 {
    border: 1px solid transparent;
    border-radius: 10px;
    background-color: var(--main-color);
    padding: 10px;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
}

.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 #c0c0c0;
    padding: 0px 12px;


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