/* ========== 오디션 메인 ========== */
:root {
    --line-clamp: 2; /* 변경값 */
}

.container {
    justify-content: start;
}

.inBox {
    text-align: center;
    width: calc(100%);
}

.audiList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audiList > .audiListBox {
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    background-color: var(--white);
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
}

.audiList > .audiListBox:nth-child(3n) {
    margin-right: 0px;
}

.audiListBox .audiImage {
    width: 100%;
    height: 390px;
    border-radius: 10px;

    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.audiListBox .sContent {
    position: relative;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.audiListBox .sContent .lTitle {
    font-size: var(--text-large-medium);
    color: #1f1f1f;
    font-weight: 600;
    width: 100%;
    text-align: left;
}

.audiListBox .sContent .lAppel {
    font-size: var(--text-normal);
    color: #1f1f1f;
}

.audiListBox .sContent .endDate {
    padding-top: 8px;
    font-size: var(--text-normal);
    color: #959595;
    text-align: left;
}

.audiListBox .sContent .pickBtn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* ========== side floating button ========== */
.web-float-button-container{
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    right: calc(50% - 664px);
    z-index: 100;
}


.showFloatingBtnWeb.writeBtn,
.showFloatingBtnWeb.topBtn{
    display: flex;
    cursor: pointer;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.07);
    padding: 0;
    border: none;
}
@media (max-width: 767px) {
    .showFloatingBtnWeb {
        display: none;
    }
}

/* 오디션공고 작성하기 */
.showFloatingBtnWeb.writeBtn{
    position: unset;
    border: 1px solid #FF2186;
}

/* scroll top */
.topBtn .icon{
    width: 60px;
    height: 60px;
    background-size: cover;
    background-image: url("../image/goTop_round.png");
}

.float-button-container {
    display: none;
}



/* ========== 오디션 상세 ========== */
.content {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid #DFDFDF;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.btnBox div.shareBtn {
    background-image: url("../image/web/share.png");
}

.content .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-large);
    line-height: 30px;
    font-weight: 600;
    color: #1f1f1f;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d7d7d7;
}

.content .title .right{
    display: flex;
    gap: 10px;
}

.content .title .shareBtn {
    width: 30px;
    height: 30px;
}

.content .title .pickBtn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-position: center;
    background-size: cover;
}


.content .conditionBox .condiList {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}


.content .conditionBox .condiList .condiTitle {
    display: inline-block;
    width: 80px;
    vertical-align: top;
    font-size: var(--text-medium);
    color: #959595;
}


.content .conditionBox .condiList .condiContent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-medium);
    color: #1f1f1f;
}

.content .conditionBox .condiList .condiContent span {
    
    font-weight: normal;
    color: var(--new-pink);
}

.content .conditionBox .condiList .condiContent span.nonBold {
    font-weight: normal !important;
}

.content .imageBox {
    text-align: center;
    padding: 6px 0px 0px;
}

.content .imageBox img {
    width: 600px;
}

.btnBox {
    box-sizing: border-box;
    text-align: center;
}

.supportBtn, .supportBtn_end {
    display: inline-block;
    width: 500px;
    height: 60px;
    border-radius: 10px;
    margin-top: 120px;
    line-height: 60px;
    cursor: pointer;
    font-size: var(--text-normal);
}

.supportBtn {
    color: var(--white);
    background-color: var(--new-pink);
}


.supportBtn_end {
    color: var(--white);
    background-color: #959595;
}


.audiApplyBack {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(84, 84, 84, 0.7);
    display: none;

}

.audiApplyBack .audiApplyPopup {
    position: absolute;
    width: 800px;
    height: 520px;
    padding: 40px 90px;
    border-radius: 20px;
    background-color: var(--white);
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    margin-top: -260px;
    margin-left: -400px;
}

.aTitle {
    font-size: var(--text-large);
    font-weight: normal;
    text-align: center;
    color: #1f1f1f;
    margin-bottom: 35px;
}

.profileList {
    overflow: hidden;
    height: 270px;
    overflow-y: auto;
    margin-bottom: 50px;
}

.aBtnBox {
    text-align: center;
}

.sendProfile {
    display: inline-block;
    width: 240px;
    height: 60px;
    border-radius: 20px;
    line-height: 60px;
    background-color: var(--new-pink);
    cursor: pointer;

    font-size: 18px;
    font-weight: normal;
    text-align: center;
    color: var(--white);
}


.myProfile {
    position: relative;
    display: inline-block;
    width: 590px;
    height: 270px;
    border-radius: 20px;
    border: solid 1px #c0c0c0;
    background-color: var(--white);
    box-sizing: border-box;
    overflow: hidden;
    margin: 10px;

    cursor: pointer;
}

.myProfile .btnBox {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
}

.myProfile .btnBox input[type=radio] {
    display: none;
}

.myProfile .btnBox input[type=radio] + label {
    display: inline-block;
    cursor: pointer;

    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.myProfile .btnBox input[type=radio] + label {
    background-image: url("../image/web/check_off.png");
}

.myProfile .btnBox input[type=radio]:checked + label {
    background-image: url("../image/web/check_on.png");
}


input[type="radio"] {
    display: inline-block; /* 보이도록 설정 */
    pointer-events: auto; /* 클릭 가능하게 설정 */
}

.myProfile .userImage {
    position: absolute;
    top: 0px;
    left: 0px;
    display: inline-block;
    width: 240px;
    height: 100%;

    background-position: top center;
    background-repeat: no-repeat;
    background-size: 120%;
}

.myProfile .userInfoBox {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-left: 260px;
    box-sizing: border-box;
}

.myProfile .userInfoBox .userName {
    padding-top: 30px;
    font-size: 18px;
    font-weight: normal;
    color: #454545;
    margin-bottom: 18px;
}

.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%;
}

.myProfile .userInfoBox .pUInfo {
    font-size: var(--text-normal);
    line-height: 1.5;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.myProfile .userInfoBox .proComplete {
    font-size: 15px;
    font-weight: normal;
    color: var(--new-pink);
    margin-bottom: 6px;
}

.myProfile .userInfoBox .progress {
    position: absolute;
    width: 200px;
    bottom: 20px;
    right: 20px;
}

.myProfile .userInfoBox .proProgressBox {
    width: 200px;
    height: 22px;
    border-radius: 20px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.myProfile .userInfoBox .proProgressBox .progressBar {
    width: 70%;
    height: 22px;
    border-radius: 20px;
    background-color: var(--new-pink);
}

.myProfile .comment {
    font-size: 18px;
    color: #1f1f1f;
}

.viewBox {
    position: absolute;
    bottom: 20px;
    left: 260px;
    width: 90px;
    font-size: 0px;
}

.contentBox .viewBox {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 90px;
    font-size: 0px;
}

.viewBox .countBox {
    display: inline-block;
    height: 43px;
    width: 28px;
    margin-right: 3px;
}

.viewBox .countBox:nth-child(3) {
    margin-right: 0px;
}

.viewBox .countBox span {
    display: inline-block;
    width: 28px;
    height: 28px;

    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;
    font-weight: 500;
    text-align: center;
    color: var(--new-pink);
}

.closeSPopup {
    position: absolute;
    right: 40px;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;

    background-image: url("../image/web/closeIcon.png");
}


.btnBox2 {
    font-size: 0px;
    text-align: right;
    margin-bottom: 60px;
}

.btnBox2 .editBtn {
    display: inline-block;
    width: 150px;
    height: 60px;
    border: 1px solid var(--new-pink);
    background-color: var(--white);
    line-height: 60px;
    border-radius: 10px;

    text-align: center;
    font-size: var(--text-normal);
    color: var(--new-pink);
    cursor: pointer;
}

.btnBox2 .editBtn span {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-bottom: 6px;
    margin-right: 5px;

    background-position: center;
    background-image: url("../image/web_v2/edit.png");
    background-size: cover;
}


.btnBox2 .delBtn {
    display: inline-block;
    width: 100px;
    height: 60px;
    border: 1px solid #d7d7d7;
    background-color: var(--white);
    line-height: 60px;
    border-radius: 10px;
    margin-left: 10px;

    text-align: center;
    font-size: var(--text-normal);
    color: #595959;
    cursor: pointer;
}

.btnBox2 .delBtn span {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-bottom: 6px;
    margin-right: 5px;

    background-position: center;
    background-image: url("../image/web_v2/trash.png");
    background-size: cover;
}

.mTitle {
    font-size: var(--text-large);
    color: #1f1f1f;
    font-weight: 600;
    margin-bottom: 17px;
}

.content2 {
    background-color: var(--white);
    border: 1px solid #DFDFDF;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content2 .logo {
    width: 150px;
    height: 100px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.content2 .companyName {
    font-size: var(--text-medium);
    font-weight: normal;
    color: #1f1f1f;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content2 .companyName span {
    display: inline-block;
    width: 160px;
    height: 20px;
    line-height: 20px;
    text-align: center;

    font-size: 12px;
    color: #4e7eff;
    font-weight: normal;
    border-radius: 50px;
    background-color: #e9efff;
}

.content2 .companyUrl {
    font-size: 15px;
    color: #1f1f1f;
    cursor: pointer;
}



@media (max-width: 992px) {
    /* 오디션 메인 */
    .audiList{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* 오디션 상세 */

}

@media (max-width: 767px) {
    /* 오디션 메인 */
    .audiList{
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    .audiListBox .sContent .lTitle,
    .audiListBox .sContent .lAppel{
        height: auto;
    }

    /* 오디션 상세 */
    .content{
        padding: 15px;
        margin-bottom: 20px;
    }
    .content .title{
        font-size: var(--text-large-medium);
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .content .title .left{
        order: 2;
        width: 100%;
    }
    .content .title .right{
        order: 1;
        width: 100%;
        justify-content: flex-end;
    }
    .content .title .pickBtn{
        width: 22px;
        height: 22px;
    }
    .content .title .shareBtn{
        width: 22px;
        height: 22px;
        background-size: cover;
    }

    .content .conditionBox .condiList .condiTitle{
        font-size: var(--text-normal);
    }
    .content .conditionBox .condiList .condiContent{
        width: calc(100% - 80px);
        font-size: var(--text-normal);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .supportBtn,
    .supportBtn_end{
        width: 100%;
        height: 50px;
        line-height: 50px;
        margin-top: 50px;
    }

    .content2{
        /* flex-direction: column; */
        height: auto;
        padding: 15px;
        gap: 10px;
        overflow: hidden;
    }
    .content2 .logo{
        width: 100px;
        height: 80px;
    }
    .content2 .companyName{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        width: calc(100% - 110px);
    }
    .content2 .companyUrl{
        padding: 0;
        word-wrap: break-word;
        width: 100%;
    }

    .btnBox2{
        width: 100%;
        display: flex;
        gap: 12px;
        margin-bottom: 40px
    }
    .btnBox2 .editBtn, .btnBox2 .delBtn{
        margin: 0;
        height: 50px;
        line-height: 50px;
        flex: 1;
    }

}

/* 390px 이하 작은 모바일 */
@media (max-width: 390px) {
    /* 오디션 메인 */

    /* 오디션 상세 */

}













